diff --git a/code/io/importHumanYaml.m b/code/io/importHumanYaml.m index 19eedab3..0fdc0a83 100644 --- a/code/io/importHumanYaml.m +++ b/code/io/importHumanYaml.m @@ -1,4 +1,4 @@ -function model=importHumanYaml(yamlFilename) +function model=importHumanYaml(yamlFilename, silentMode) % importHumanYaml % Imports a yaml file matching (roughly) the cobrapy yaml structure % @@ -6,17 +6,23 @@ % yamlFile a file in yaml model structure. As defined in HumanGEM, the % yaml file contains 5 sections: metaData, metabolites, % reactions, genes and compartments +% silentMode set as true to turn off notificaiton messages (opt, default +% false) % % Output: % model a model structure % -% Usage: model=importYaml(yamlFilename) +% Usage: model=importYaml(yamlFilename, silentMode) % -% Hao Wang, 2019-07-26 +% Hao Wang, 2020-05-17 % % This function is to reverse engineer the RAVEN function `writeYaml` % +if nargin < 2 + silentMode = false; +end + if ~(exist(yamlFilename,'file')==2) error('Yaml file %s cannot be found',string(yamlFilename)); end @@ -65,7 +71,9 @@ % Load Yaml format model fid = fopen(yamlFilename); -fprintf('Start importing...\n'); +if ~silentMode + fprintf('Start importing...\n'); +end section = 0; while ~feof(fid) @@ -74,7 +82,9 @@ % import metaData if isequal(tline, '- metaData:') - fprintf('\tmetaData\n'); + if ~silentMode + fprintf('\tmetaData\n'); + end section = 1; end @@ -112,19 +122,21 @@ % import metabolites: if isequal(tline, '- metabolites:') - fprintf('\tmetabolites\n'); + if ~silentMode + fprintf('\tmetabolites\n'); + end section = 2; end if section == 2 - if numel(tline) > 10 && isequal(tline(1:10),' - id: ') - model.mets = [model.mets; tline(11:end)]; + if startsWith(tline,' - id: ') + model = readFieldElement(model, tline, 'mets', ' - id: '); - elseif numel(tline) > 12 && isequal(tline(1:12),' - name: ') - model.metNames = [model.metNames; tline(14:end-1)]; + elseif startsWith(tline,' - name: ') + model = readFieldElement(model, tline, 'metNames', ' - name: '); - elseif numel(tline) > 19 && isequal(tline(1:19),' - compartment: ') - model.metComps = [model.metComps; tline(20:end)]; + elseif startsWith(tline,' - compartment: ') + model = readFieldElement(model, tline, 'metComps', ' - compartment: '); elseif startsWith(tline,' - formula: ') model = readFieldElement(model, tline, 'metFormulas',' - formula: '); @@ -144,7 +156,9 @@ % import reactions: if isequal(tline, '- reactions:') - fprintf('\treactions\n'); + if ~silentMode + fprintf('\treactions\n'); + end section = 3; readSubsystems = false; readEquation = false; @@ -153,8 +167,8 @@ if section == 3 if startsWith(tline,' - id: ') - model.rxns = [model.rxns; tline(11:end)]; - rxnId = tline(11:end); + model = readFieldElement(model, tline, 'rxns',' - id: '); + rxnId = tline(12:end-1); elseif startsWith(tline,' - name: ') model = readFieldElement(model, tline, 'rxnNames',' - name: '); @@ -198,7 +212,7 @@ rightEquation = ''; else if readSubsystems - subSystems = [subSystems; tline(11:end)]; + subSystems = [subSystems; tline(12:end-1)]; % resolve the equation elseif readEquation @@ -225,23 +239,27 @@ % import genes: if isequal(tline, '- genes:') - fprintf('\tgenes\n'); + if ~silentMode + fprintf('\tgenes\n'); + end section = 4; end - if section == 4 && numel(tline) > 10 && isequal(tline(1:10),' - id: ') - model.genes = [model.genes; tline(11:end)]; + if section == 4 && startsWith(tline,' - id: ') + model = readFieldElement(model, tline, 'genes',' - id: '); end % import compartments: if isequal(tline, '- compartments: !!omap') - fprintf('\tcompartments\n'); + if ~silentMode + fprintf('\tcompartments\n'); + end section = 5; end if section == 5 && numel(tline) > 7 && isequal(tline(1:6),' - ') - str = split(tline(7:end),': '); + str = split(tline(7:end-1),': "'); model.comps = [model.comps; str{1}]; model.compNames = [model.compNames; str{2}]; end @@ -251,7 +269,9 @@ % follow-up data processing -fprintf('\nimporting completed\nfollow-up processing...'); +if ~silentMode + fprintf('\nimporting completed\nfollow-up processing...'); +end [~, model.metComps] = ismember(model.metComps, model.comps); model.metCharges = int64(str2double(model.metCharges)); model.lb = str2double(model.lb); @@ -286,7 +306,9 @@ % dealing with the `unconstrained` field for other models! model.unconstrained = double(endsWith(model.mets, 'x')); -fprintf(' Done!\n'); +if ~silentMode + fprintf(' Done!\n'); +end end diff --git a/code/io/writeHumanYaml.m b/code/io/writeHumanYaml.m index 020ebb57..012d32a4 100755 --- a/code/io/writeHumanYaml.m +++ b/code/io/writeHumanYaml.m @@ -17,7 +17,7 @@ function writeHumanYaml(model,name) % % % Jonathan Robinson, 2019-03-14 -% Hao Wang, 2019-09-15 +% Hao Wang, 2020-05-17 % %{ @@ -220,19 +220,15 @@ function writeField(model,fid,fieldName,type,pos,name) elseif length(list) > 1 || strcmp(fieldName,'subSystems') fprintf(fid,[' ' name ':\n']); for i = 1:length(list) - fprintf(fid,[' - ' list{i} '\n']); + fprintf(fid,[' - "' list{i} '"\n']); end end elseif sum(pos) > 0 % all other fields if strcmp(type,'txt') - if strcmp(name,'- name') - % enclose all "names" in double quotes - value = ['"',field{pos},'"']; - else - value = field{pos}; - end + % enclose all string elements with double quotes + value = ['"',field{pos},'"']; elseif strcmp(type,'num') if isnan(field(pos)) value = []; diff --git a/code/test/testYamlConversion.m b/code/test/testYamlConversion.m index 86935a85..5d5ebc2e 100644 --- a/code/test/testYamlConversion.m +++ b/code/test/testYamlConversion.m @@ -1,7 +1,19 @@ -function status = testYamlConversion(model) +function status = testYamlConversion % test the functions for yaml import/export see if the conversion process % changes the model content +% +% Usage: status = testYamlConversion +% +% Hao Wang, 2020-05-17 +% +% Get model path +[ST, I]=dbstack('-completenames'); +modelPath=fileparts(fileparts(fileparts(ST(I).file))); + +% Import yaml model +ymlFile=fullfile(modelPath,'modelFiles','yml','HumanGEM.yml'); +model = importHumanYaml(ymlFile, true); % make sure there is no intermediate Yaml file under the current folder warning('off', 'MATLAB:DELETE:FileNotFound') @@ -12,7 +24,7 @@ % export to yml and then import back writeHumanYaml(model,'testYamlConversion.yml'); -importedHumanGEM = importHumanYaml('testYamlConversion.yml'); +importedHumanGEM = importHumanYaml('testYamlConversion.yml', true); % remove intermediate Yaml file delete testYamlConversion.yml; diff --git a/modelFiles/yml/HumanGEM.yml b/modelFiles/yml/HumanGEM.yml index 4a76a3bc..611b48a9 100644 --- a/modelFiles/yml/HumanGEM.yml +++ b/modelFiles/yml/HumanGEM.yml @@ -3,7 +3,7 @@ short_name : "Human-GEM" full_name : "Generic genome-scale metabolic model of Homo sapiens" version : "" - date : "2020-04-05" + date : "2020-05-17" authors : "Jonathan Robinson, Hao Wang, Pierre-Etienne Cholley, Pinar Kocabas" email : "jonrob@chalmers.se" organization: "Chalmers University of Technology" @@ -12,81088 +12,81088 @@ description : "Genome-scale metabolic models are valuable tools to study metabolism and provide a scaffold for the integrative analysis of omics data. This is the latest version of Human-GEM, which is a genome-scale metabolic model of a generic human cell. The objective of Human-GEM is to serve as a community model for enabling integrative and mechanistic studies of human metabolism." - metabolites: - !!omap - - id: m00001c + - id: "m00001c" - name: "(-)-trans-carveol" - - compartment: c - - formula: C10H16O + - compartment: "c" + - formula: "C10H16O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00001s + - id: "m00001s" - name: "(-)-trans-carveol" - - compartment: s - - formula: C10H16O + - compartment: "s" + - formula: "C10H16O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00002c + - id: "m00002c" - name: "(+)-alpha-pinene" - - compartment: c - - formula: C10H16 + - compartment: "c" + - formula: "C10H16" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00002s + - id: "m00002s" - name: "(+)-alpha-pinene" - - compartment: s - - formula: C10H16 + - compartment: "s" + - formula: "C10H16" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00003c + - id: "m00003c" - name: "(10Z)-heptadecenoic acid" - - compartment: c - - formula: C17H31O2 + - compartment: "c" + - formula: "C17H31O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00003l + - id: "m00003l" - name: "(10Z)-heptadecenoic acid" - - compartment: l - - formula: C17H31O2 + - compartment: "l" + - formula: "C17H31O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00003r + - id: "m00003r" - name: "(10Z)-heptadecenoic acid" - - compartment: r - - formula: C17H31O2 + - compartment: "r" + - formula: "C17H31O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00003s + - id: "m00003s" - name: "(10Z)-heptadecenoic acid" - - compartment: s - - formula: C17H31O2 + - compartment: "s" + - formula: "C17H31O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00004c + - id: "m00004c" - name: "(10Z)-heptadecenoyl-CoA" - - compartment: c - - formula: C38H62N7O17P3S + - compartment: "c" + - formula: "C38H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00004m + - id: "m00004m" - name: "(10Z)-heptadecenoyl-CoA" - - compartment: m - - formula: C38H62N7O17P3S + - compartment: "m" + - formula: "C38H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00004r + - id: "m00004r" - name: "(10Z)-heptadecenoyl-CoA" - - compartment: r - - formula: C38H62N7O17P3S + - compartment: "r" + - formula: "C38H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00005c + - id: "m00005c" - name: "(11R)-HPETE" - - compartment: c - - formula: C20H31O4 + - compartment: "c" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00006c + - id: "m00006c" - name: "(11Z)-docosenoyl-CoA" - - compartment: c - - formula: C43H72N7O17P3S + - compartment: "c" + - formula: "C43H72N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00006m + - id: "m00006m" - name: "(11Z)-docosenoyl-CoA" - - compartment: m - - formula: C43H72N7O17P3S + - compartment: "m" + - formula: "C43H72N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00006r + - id: "m00006r" - name: "(11Z)-docosenoyl-CoA" - - compartment: r - - formula: C43H72N7O17P3S + - compartment: "r" + - formula: "C43H72N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00007c + - id: "m00007c" - name: "(11Z)-eicosenoyl-CoA" - - compartment: c - - formula: C41H68N7O17P3S + - compartment: "c" + - formula: "C41H68N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00007m + - id: "m00007m" - name: "(11Z)-eicosenoyl-CoA" - - compartment: m - - formula: C41H68N7O17P3S + - compartment: "m" + - formula: "C41H68N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00007p + - id: "m00007p" - name: "(11Z)-eicosenoyl-CoA" - - compartment: p - - formula: C41H68N7O17P3S + - compartment: "p" + - formula: "C41H68N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00007r + - id: "m00007r" - name: "(11Z)-eicosenoyl-CoA" - - compartment: r - - formula: C41H68N7O17P3S + - compartment: "r" + - formula: "C41H68N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00008c + - id: "m00008c" - name: "(11Z,14Z)-eicosadienoic acid" - - compartment: c - - formula: C20H35O2 + - compartment: "c" + - formula: "C20H35O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00008l + - id: "m00008l" - name: "(11Z,14Z)-eicosadienoic acid" - - compartment: l - - formula: C20H35O2 + - compartment: "l" + - formula: "C20H35O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00008r + - id: "m00008r" - name: "(11Z,14Z)-eicosadienoic acid" - - compartment: r - - formula: C20H35O2 + - compartment: "r" + - formula: "C20H35O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00008s + - id: "m00008s" - name: "(11Z,14Z)-eicosadienoic acid" - - compartment: s - - formula: C20H35O2 + - compartment: "s" + - formula: "C20H35O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00009c + - id: "m00009c" - name: "(11Z,14Z)-eicosadienoyl-CoA" - - compartment: c - - formula: C41H66N7O17P3S + - compartment: "c" + - formula: "C41H66N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00009m + - id: "m00009m" - name: "(11Z,14Z)-eicosadienoyl-CoA" - - compartment: m - - formula: C41H66N7O17P3S + - compartment: "m" + - formula: "C41H66N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00009r + - id: "m00009r" - name: "(11Z,14Z)-eicosadienoyl-CoA" - - compartment: r - - formula: C41H66N7O17P3S + - compartment: "r" + - formula: "C41H66N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00010c + - id: "m00010c" - name: "(11Z,14Z,17Z)-eicosatrienoic acid" - - compartment: c - - formula: C20H33O2 + - compartment: "c" + - formula: "C20H33O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00010l + - id: "m00010l" - name: "(11Z,14Z,17Z)-eicosatrienoic acid" - - compartment: l - - formula: C20H33O2 + - compartment: "l" + - formula: "C20H33O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00010r + - id: "m00010r" - name: "(11Z,14Z,17Z)-eicosatrienoic acid" - - compartment: r - - formula: C20H33O2 + - compartment: "r" + - formula: "C20H33O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00010s + - id: "m00010s" - name: "(11Z,14Z,17Z)-eicosatrienoic acid" - - compartment: s - - formula: C20H33O2 + - compartment: "s" + - formula: "C20H33O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00011c + - id: "m00011c" - name: "(11Z,14Z,17Z)-eicosatrienoylcarnitine" - - compartment: c - - formula: C27H47NO4 + - compartment: "c" + - formula: "C27H47NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00011m + - id: "m00011m" - name: "(11Z,14Z,17Z)-eicosatrienoylcarnitine" - - compartment: m - - formula: C27H47NO4 + - compartment: "m" + - formula: "C27H47NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00011r + - id: "m00011r" - name: "(11Z,14Z,17Z)-eicosatrienoylcarnitine" - - compartment: r - - formula: C27H47NO4 + - compartment: "r" + - formula: "C27H47NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00012c + - id: "m00012c" - name: "(11Z,14Z,17Z)-eicosatrienoyl-CoA" - - compartment: c - - formula: C41H64N7O17P3S + - compartment: "c" + - formula: "C41H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00012m + - id: "m00012m" - name: "(11Z,14Z,17Z)-eicosatrienoyl-CoA" - - compartment: m - - formula: C41H64N7O17P3S + - compartment: "m" + - formula: "C41H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00012r + - id: "m00012r" - name: "(11Z,14Z,17Z)-eicosatrienoyl-CoA" - - compartment: r - - formula: C41H64N7O17P3S + - compartment: "r" + - formula: "C41H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00013c + - id: "m00013c" - name: "(13E)-11alpha-hydroxy-9,15-dioxoprost-13-enoate" - - compartment: c - - formula: C20H31O5 + - compartment: "c" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00014p + - id: "m00014p" - name: "(13E)-tetranor-16-carboxy-LTE4" - - compartment: p - - formula: C19H25NO7S + - compartment: "p" + - formula: "C19H25NO7S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00015p + - id: "m00015p" - name: "(13E)-tetranor-16-oxo-16-CoA-LTE4" - - compartment: p - - formula: C40H56N8O22P3S2 + - compartment: "p" + - formula: "C40H56N8O22P3S2" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00016c + - id: "m00016c" - name: "(13Z)-docosenoyl-CoA" - - compartment: c - - formula: C43H72N7O17P3S + - compartment: "c" + - formula: "C43H72N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00016m + - id: "m00016m" - name: "(13Z)-docosenoyl-CoA" - - compartment: m - - formula: C43H72N7O17P3S + - compartment: "m" + - formula: "C43H72N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00016p + - id: "m00016p" - name: "(13Z)-docosenoyl-CoA" - - compartment: p - - formula: C43H72N7O17P3S + - compartment: "p" + - formula: "C43H72N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00016r + - id: "m00016r" - name: "(13Z)-docosenoyl-CoA" - - compartment: r - - formula: C43H72N7O17P3S + - compartment: "r" + - formula: "C43H72N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00017c + - id: "m00017c" - name: "(13Z)-eicosenoic acid" - - compartment: c - - formula: C20H37O2 + - compartment: "c" + - formula: "C20H37O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00017l + - id: "m00017l" - name: "(13Z)-eicosenoic acid" - - compartment: l - - formula: C20H37O2 + - compartment: "l" + - formula: "C20H37O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00017r + - id: "m00017r" - name: "(13Z)-eicosenoic acid" - - compartment: r - - formula: C20H37O2 + - compartment: "r" + - formula: "C20H37O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00017s + - id: "m00017s" - name: "(13Z)-eicosenoic acid" - - compartment: s - - formula: C20H37O2 + - compartment: "s" + - formula: "C20H37O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00018c + - id: "m00018c" - name: "(13Z)-eicosenoyl-CoA" - - compartment: c - - formula: C41H68N7O17P3S + - compartment: "c" + - formula: "C41H68N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00018m + - id: "m00018m" - name: "(13Z)-eicosenoyl-CoA" - - compartment: m - - formula: C41H68N7O17P3S + - compartment: "m" + - formula: "C41H68N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00018p + - id: "m00018p" - name: "(13Z)-eicosenoyl-CoA" - - compartment: p - - formula: C41H68N7O17P3S + - compartment: "p" + - formula: "C41H68N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00018r + - id: "m00018r" - name: "(13Z)-eicosenoyl-CoA" - - compartment: r - - formula: C41H68N7O17P3S + - compartment: "r" + - formula: "C41H68N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00019c + - id: "m00019c" - name: "(13Z)-octadecenoic acid" - - compartment: c - - formula: C18H33O2 + - compartment: "c" + - formula: "C18H33O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00019l + - id: "m00019l" - name: "(13Z)-octadecenoic acid" - - compartment: l - - formula: C18H33O2 + - compartment: "l" + - formula: "C18H33O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00019r + - id: "m00019r" - name: "(13Z)-octadecenoic acid" - - compartment: r - - formula: C18H33O2 + - compartment: "r" + - formula: "C18H33O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00019s + - id: "m00019s" - name: "(13Z)-octadecenoic acid" - - compartment: s - - formula: C18H33O2 + - compartment: "s" + - formula: "C18H33O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00020c + - id: "m00020c" - name: "(13Z)-octadecenoyl-CoA" - - compartment: c - - formula: C39H64N7O17P3S + - compartment: "c" + - formula: "C39H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00020m + - id: "m00020m" - name: "(13Z)-octadecenoyl-CoA" - - compartment: m - - formula: C39H64N7O17P3S + - compartment: "m" + - formula: "C39H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00020r + - id: "m00020r" - name: "(13Z)-octadecenoyl-CoA" - - compartment: r - - formula: C39H64N7O17P3S + - compartment: "r" + - formula: "C39H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00021c + - id: "m00021c" - name: "(13Z,16Z)-docosadienoic acid" - - compartment: c - - formula: C22H39O2 + - compartment: "c" + - formula: "C22H39O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00021l + - id: "m00021l" - name: "(13Z,16Z)-docosadienoic acid" - - compartment: l - - formula: C22H39O2 + - compartment: "l" + - formula: "C22H39O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00021r + - id: "m00021r" - name: "(13Z,16Z)-docosadienoic acid" - - compartment: r - - formula: C22H39O2 + - compartment: "r" + - formula: "C22H39O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00021s + - id: "m00021s" - name: "(13Z,16Z)-docosadienoic acid" - - compartment: s - - formula: C22H39O2 + - compartment: "s" + - formula: "C22H39O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00022c + - id: "m00022c" - name: "(13Z,16Z)-docosadienoylcarnitine" - - compartment: c - - formula: C29H52NO4 + - compartment: "c" + - formula: "C29H52NO4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00022m + - id: "m00022m" - name: "(13Z,16Z)-docosadienoylcarnitine" - - compartment: m - - formula: C29H52NO4 + - compartment: "m" + - formula: "C29H52NO4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00022r + - id: "m00022r" - name: "(13Z,16Z)-docosadienoylcarnitine" - - compartment: r - - formula: C29H52NO4 + - compartment: "r" + - formula: "C29H52NO4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00023c + - id: "m00023c" - name: "(13Z,16Z)-docosadienoyl-CoA" - - compartment: c - - formula: C43H70N7O17P3S + - compartment: "c" + - formula: "C43H70N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00023m + - id: "m00023m" - name: "(13Z,16Z)-docosadienoyl-CoA" - - compartment: m - - formula: C43H70N7O17P3S + - compartment: "m" + - formula: "C43H70N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00023r + - id: "m00023r" - name: "(13Z,16Z)-docosadienoyl-CoA" - - compartment: r - - formula: C43H70N7O17P3S + - compartment: "r" + - formula: "C43H70N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00024c + - id: "m00024c" - name: "(15Z)-tetracosenoylcarnitine" - - compartment: c - - formula: C31H59NO4 + - compartment: "c" + - formula: "C31H59NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00024r + - id: "m00024r" - name: "(15Z)-tetracosenoylcarnitine" - - compartment: r - - formula: C31H59NO4 + - compartment: "r" + - formula: "C31H59NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00025c + - id: "m00025c" - name: "(15Z)-tetracosenoyl-CoA" - - compartment: c - - formula: C45H76N7O17P3S + - compartment: "c" + - formula: "C45H76N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00025p + - id: "m00025p" - name: "(15Z)-tetracosenoyl-CoA" - - compartment: p - - formula: C45H76N7O17P3S + - compartment: "p" + - formula: "C45H76N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00025r + - id: "m00025r" - name: "(15Z)-tetracosenoyl-CoA" - - compartment: r - - formula: C45H76N7O17P3S + - compartment: "r" + - formula: "C45H76N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00026m + - id: "m00026m" - name: "(18E)-20-oxo-20-CoA-LTB4" - - compartment: m - - formula: C41H57N7O21P3S + - compartment: "m" + - formula: "C41H57N7O21P3S" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00026p + - id: "m00026p" - name: "(18E)-20-oxo-20-CoA-LTB4" - - compartment: p - - formula: C41H57N7O21P3S + - compartment: "p" + - formula: "C41H57N7O21P3S" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00027p + - id: "m00027p" - name: "(18E)-20-oxo-20-CoA-LTE4" - - compartment: p - - formula: C44H62N8O22P3S2 + - compartment: "p" + - formula: "C44H62N8O22P3S2" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00028c + - id: "m00028c" - name: "(18R)-HEPE" - - compartment: c - - formula: C20H29O3 + - compartment: "c" + - formula: "C20H29O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00029c + - id: "m00029c" - name: "(18R)-hydroxy-(5Z,8Z,11Z,14Z,16E)-eicosapentaenoic acid" - - compartment: c - - formula: C20H29O3 + - compartment: "c" + - formula: "C20H29O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00030c + - id: "m00030c" - name: "(1aalpha,2beta,3alpha,11calpha)-1a,2,3,11c-tetrahydro-6,11-dimethylbenzo[6,7]phenanthro[3,4-b]oxirene-2,3-diol" - - compartment: c - - formula: C20H18O3 + - compartment: "c" + - formula: "C20H18O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00031c + - id: "m00031c" - name: "(1R)-hydroxy-(2R)-glutathionyl-1,2-dihydronaphthalene" - - compartment: c - - formula: C20H23N3O7S + - compartment: "c" + - formula: "C20H23N3O7S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00032c + - id: "m00032c" - name: "(1R,2S)-naphthalene 1,2-oxide" - - compartment: c - - formula: C10H8O + - compartment: "c" + - formula: "C10H8O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00032s + - id: "m00032s" - name: "(1R,2S)-naphthalene 1,2-oxide" - - compartment: s - - formula: C10H8O + - compartment: "s" + - formula: "C10H8O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00033c + - id: "m00033c" - name: "(1S)-hydroxy-(2S)-glutathionyl-1,2-dihydronaphthalene" - - compartment: c - - formula: C20H23N3O7S + - compartment: "c" + - formula: "C20H23N3O7S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00034c + - id: "m00034c" - name: "(1S,2R)-naphthalene 1,2-oxide" - - compartment: c - - formula: C10H8O + - compartment: "c" + - formula: "C10H8O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00035c + - id: "m00035c" - name: "(24R)-24,25-dihydroxycalciol" - - compartment: c - - formula: C27H44O3 + - compartment: "c" + - formula: "C27H44O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00035m + - id: "m00035m" - name: "(24R)-24,25-dihydroxycalciol" - - compartment: m - - formula: C27H44O3 + - compartment: "m" + - formula: "C27H44O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00035s + - id: "m00035s" - name: "(24R)-24,25-dihydroxycalciol" - - compartment: s - - formula: C27H44O3 + - compartment: "s" + - formula: "C27H44O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00036m + - id: "m00036m" - name: "(24R,25R)3alpha,7alpha,12alpha,24-tetrahydroxy-5beta-cholestanoyl-CoA" - - compartment: m - - formula: C48H76N7O21P3S + - compartment: "m" + - formula: "C48H76N7O21P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00036p + - id: "m00036p" - name: "(24R,25R)3alpha,7alpha,12alpha,24-tetrahydroxy-5beta-cholestanoyl-CoA" - - compartment: p - - formula: C48H76N7O21P3S + - compartment: "p" + - formula: "C48H76N7O21P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00037p + - id: "m00037p" - name: "(24R,25R)3alpha,7alpha,24-trihydroxy-5beta-cholestanoyl-CoA" - - compartment: p - - formula: C48H76N7O20P3S + - compartment: "p" + - formula: "C48H76N7O20P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00038c + - id: "m00038c" - name: "(2E)-decenoyl-[ACP]" - - compartment: c - - formula: C21H37N2O8PRS + - compartment: "c" + - formula: "C21H37N2O8PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00039m + - id: "m00039m" - name: "(2E)-decenoyl-CoA" - - compartment: m - - formula: C31H48N7O17P3S + - compartment: "m" + - formula: "C31H48N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00039p + - id: "m00039p" - name: "(2E)-decenoyl-CoA" - - compartment: p - - formula: C31H48N7O17P3S + - compartment: "p" + - formula: "C31H48N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00040c + - id: "m00040c" - name: "(2E)-docosenoyl-CoA" - - compartment: c - - formula: C43H72N7O17P3S + - compartment: "c" + - formula: "C43H72N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00040m + - id: "m00040m" - name: "(2E)-docosenoyl-CoA" - - compartment: m - - formula: C43H72N7O17P3S + - compartment: "m" + - formula: "C43H72N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00040p + - id: "m00040p" - name: "(2E)-docosenoyl-CoA" - - compartment: p - - formula: C43H72N7O17P3S + - compartment: "p" + - formula: "C43H72N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00041c + - id: "m00041c" - name: "(2E)-dodecenoyl-[ACP]" - - compartment: c - - formula: C23H41N2O8PRS + - compartment: "c" + - formula: "C23H41N2O8PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00042m + - id: "m00042m" - name: "(2E)-dodecenoyl-CoA" - - compartment: m - - formula: C33H52N7O17P3S + - compartment: "m" + - formula: "C33H52N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00042p + - id: "m00042p" - name: "(2E)-dodecenoyl-CoA" - - compartment: p - - formula: C33H52N7O17P3S + - compartment: "p" + - formula: "C33H52N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00043c + - id: "m00043c" - name: "(2E)-eicosenoyl-CoA" - - compartment: c - - formula: C41H68N7O17P3S + - compartment: "c" + - formula: "C41H68N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00043m + - id: "m00043m" - name: "(2E)-eicosenoyl-CoA" - - compartment: m - - formula: C41H68N7O17P3S + - compartment: "m" + - formula: "C41H68N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00043p + - id: "m00043p" - name: "(2E)-eicosenoyl-CoA" - - compartment: p - - formula: C41H68N7O17P3S + - compartment: "p" + - formula: "C41H68N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00044c + - id: "m00044c" - name: "(2E)-heneicosenoyl-CoA" - - compartment: c - - formula: C42H70N7O17P3S + - compartment: "c" + - formula: "C42H70N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00044m + - id: "m00044m" - name: "(2E)-heneicosenoyl-CoA" - - compartment: m - - formula: C42H70N7O17P3S + - compartment: "m" + - formula: "C42H70N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00045c + - id: "m00045c" - name: "(2E)-heptadecenoyl-[ACP]" - - compartment: c - - formula: C28H51N2O8PRS + - compartment: "c" + - formula: "C28H51N2O8PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00046m + - id: "m00046m" - name: "(2E)-heptadecenoyl-CoA" - - compartment: m - - formula: C38H62N7O17P3S + - compartment: "m" + - formula: "C38H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00047c + - id: "m00047c" - name: "(2E)-heptenoyl-[ACP]" - - compartment: c - - formula: C18H31N2O8PRS + - compartment: "c" + - formula: "C18H31N2O8PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00048m + - id: "m00048m" - name: "(2E)-heptenoyl-CoA" - - compartment: m - - formula: C28H42N7O17P3S + - compartment: "m" + - formula: "C28H42N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00049c + - id: "m00049c" - name: "(2E)-hexacosenoyl-CoA" - - compartment: c - - formula: C47H80N7O17P3S + - compartment: "c" + - formula: "C47H80N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00049p + - id: "m00049p" - name: "(2E)-hexacosenoyl-CoA" - - compartment: p - - formula: C47H80N7O17P3S + - compartment: "p" + - formula: "C47H80N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00050c + - id: "m00050c" - name: "(2E)-hexadecenoyl-[ACP]" - - compartment: c - - formula: C27H49N2O8PRS + - compartment: "c" + - formula: "C27H49N2O8PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00051m + - id: "m00051m" - name: "(2E)-hexadecenoyl-CoA" - - compartment: m - - formula: C37H60N7O17P3S + - compartment: "m" + - formula: "C37H60N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00051p + - id: "m00051p" - name: "(2E)-hexadecenoyl-CoA" - - compartment: p - - formula: C37H60N7O17P3S + - compartment: "p" + - formula: "C37H60N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00052c + - id: "m00052c" - name: "(2E)-hexenoyl-[ACP]" - - compartment: c - - formula: C17H29N2O8PRS + - compartment: "c" + - formula: "C17H29N2O8PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00053m + - id: "m00053m" - name: "(2E)-hexenoyl-CoA" - - compartment: m - - formula: C27H40N7O17P3S + - compartment: "m" + - formula: "C27H40N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00053p + - id: "m00053p" - name: "(2E)-hexenoyl-CoA" - - compartment: p - - formula: C27H40N7O17P3S + - compartment: "p" + - formula: "C27H40N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00054c + - id: "m00054c" - name: "(2E)-nonadecenoyl-CoA" - - compartment: c - - formula: C40H66N7O17P3S + - compartment: "c" + - formula: "C40H66N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00054m + - id: "m00054m" - name: "(2E)-nonadecenoyl-CoA" - - compartment: m - - formula: C40H66N7O17P3S + - compartment: "m" + - formula: "C40H66N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00055c + - id: "m00055c" - name: "(2E)-nonenoyl-[ACP]" - - compartment: c - - formula: C20H35N2O8PRS + - compartment: "c" + - formula: "C20H35N2O8PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00056m + - id: "m00056m" - name: "(2E)-nonenoyl-CoA" - - compartment: m - - formula: C30H46N7O17P3S + - compartment: "m" + - formula: "C30H46N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00057c + - id: "m00057c" - name: "(2E)-octadecenoyl-CoA" - - compartment: c - - formula: C39H64N7O17P3S + - compartment: "c" + - formula: "C39H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00057m + - id: "m00057m" - name: "(2E)-octadecenoyl-CoA" - - compartment: m - - formula: C39H64N7O17P3S + - compartment: "m" + - formula: "C39H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00057p + - id: "m00057p" - name: "(2E)-octadecenoyl-CoA" - - compartment: p - - formula: C39H64N7O17P3S + - compartment: "p" + - formula: "C39H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00058c + - id: "m00058c" - name: "(2E)-octenoyl-[ACP]" - - compartment: c - - formula: C19H33N2O8PRS + - compartment: "c" + - formula: "C19H33N2O8PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00059m + - id: "m00059m" - name: "(2E)-octenoyl-CoA" - - compartment: m - - formula: C29H44N7O17P3S + - compartment: "m" + - formula: "C29H44N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00059p + - id: "m00059p" - name: "(2E)-octenoyl-CoA" - - compartment: p - - formula: C29H44N7O17P3S + - compartment: "p" + - formula: "C29H44N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00060c + - id: "m00060c" - name: "(2E)-pentadecenoyl-[ACP]" - - compartment: c - - formula: C26H47N2O8PRS + - compartment: "c" + - formula: "C26H47N2O8PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00061m + - id: "m00061m" - name: "(2E)-pentadecenoyl-CoA" - - compartment: m - - formula: C36H58N7O17P3S + - compartment: "m" + - formula: "C36H58N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00062c + - id: "m00062c" - name: "(2E)-pentenoyl-[ACP]" - - compartment: c - - formula: C16H27N2O8PRS + - compartment: "c" + - formula: "C16H27N2O8PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00063m + - id: "m00063m" - name: "(2E)-pentenoyl-CoA" - - compartment: m - - formula: C26H38N7O17P3S + - compartment: "m" + - formula: "C26H38N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00064c + - id: "m00064c" - name: "(2E)-tetracosenoyl-CoA" - - compartment: c - - formula: C45H76N7O17P3S + - compartment: "c" + - formula: "C45H76N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00064p + - id: "m00064p" - name: "(2E)-tetracosenoyl-CoA" - - compartment: p - - formula: C45H76N7O17P3S + - compartment: "p" + - formula: "C45H76N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00065c + - id: "m00065c" - name: "(2E)-tetradecenoyl-[ACP]" - - compartment: c - - formula: C25H45N2O8PRS + - compartment: "c" + - formula: "C25H45N2O8PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00066m + - id: "m00066m" - name: "(2E)-tetradecenoyl-CoA" - - compartment: m - - formula: C35H56N7O17P3S + - compartment: "m" + - formula: "C35H56N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00066p + - id: "m00066p" - name: "(2E)-tetradecenoyl-CoA" - - compartment: p - - formula: C35H56N7O17P3S + - compartment: "p" + - formula: "C35H56N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00067c + - id: "m00067c" - name: "(2E)-tricosenoyl-CoA" - - compartment: c - - formula: C44H74N7O17P3S + - compartment: "c" + - formula: "C44H74N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00068c + - id: "m00068c" - name: "(2E)-tridecenoyl-[ACP]" - - compartment: c - - formula: C24H43N2O8PRS + - compartment: "c" + - formula: "C24H43N2O8PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00069m + - id: "m00069m" - name: "(2E)-tridecenoyl-CoA" - - compartment: m - - formula: C34H54N7O17P3S + - compartment: "m" + - formula: "C34H54N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00070c + - id: "m00070c" - name: "(2E)-undecenoyl-[ACP]" - - compartment: c - - formula: C22H39N2O8PRS + - compartment: "c" + - formula: "C22H39N2O8PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00071m + - id: "m00071m" - name: "(2E)-undecenoyl-CoA" - - compartment: m - - formula: C32H50N7O17P3S + - compartment: "m" + - formula: "C32H50N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00072m + - id: "m00072m" - name: "(2E,4Z,7Z,10Z)-hexadecatetraenoyl-CoA" - - compartment: m - - formula: C37H54N7O17P3S + - compartment: "m" + - formula: "C37H54N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00072p + - id: "m00072p" - name: "(2E,4Z,7Z,10Z)-hexadecatetraenoyl-CoA" - - compartment: p - - formula: C37H54N7O17P3S + - compartment: "p" + - formula: "C37H54N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00073m + - id: "m00073m" - name: "(2E,6Z,9Z,12Z)-octadecatetraenoyl-CoA" - - compartment: m - - formula: C39H58N7O17P3S + - compartment: "m" + - formula: "C39H58N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00073p + - id: "m00073p" - name: "(2E,6Z,9Z,12Z)-octadecatetraenoyl-CoA" - - compartment: p - - formula: C39H58N7O17P3S + - compartment: "p" + - formula: "C39H58N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00074c + - id: "m00074c" - name: "(2E,7Z,10Z,13Z,16Z)-docosapentaenoyl-CoA" - - compartment: c - - formula: C43H64N7O17P3S + - compartment: "c" + - formula: "C43H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00075p + - id: "m00075p" - name: "(2R)-pristanoyl-CoA" - - compartment: p - - formula: C40H68N7O17P3S + - compartment: "p" + - formula: "C40H68N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00076p + - id: "m00076p" - name: "(2R,6R,10R)-trimethyl-hendecanoyl-CoA" - - compartment: p - - formula: C35H58N7O17P3S + - compartment: "p" + - formula: "C35H58N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00077p + - id: "m00077p" - name: "(2R,6S,10S)-pristanate" - - compartment: p - - formula: C19H37O2 + - compartment: "p" + - formula: "C19H37O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00078p + - id: "m00078p" - name: "(2S)-pristanoyl-CoA" - - compartment: p - - formula: C40H68N7O17P3S + - compartment: "p" + - formula: "C40H68N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00079p + - id: "m00079p" - name: "(2S,6R,10R)-trimethyl-(2E)-hendecenoyl-CoA" - - compartment: p - - formula: C35H56N7O17P3S + - compartment: "p" + - formula: "C35H56N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00080p + - id: "m00080p" - name: "(2S,6R,10R)-trimethyl-hendecanoyl-CoA" - - compartment: p - - formula: C35H58N7O17P3S + - compartment: "p" + - formula: "C35H58N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00081m + - id: "m00081m" - name: "(3S)-3-hydroxy-cis,cis-palmito-7,10-dienoyl-CoA" - - compartment: m - - formula: C37H58N7O18P3S + - compartment: "m" + - formula: "C37H58N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00081p + - id: "m00081p" - name: "(3S)-3-hydroxy-cis,cis-palmito-7,10-dienoyl-CoA" - - compartment: p - - formula: C37H58N7O18P3S + - compartment: "p" + - formula: "C37H58N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00082m + - id: "m00082m" - name: "(3S)-3-hydroxydodec-cis-6-enoyl-CoA" - - compartment: m - - formula: C33H52N7O18P3S + - compartment: "m" + - formula: "C33H52N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00082p + - id: "m00082p" - name: "(3S)-3-hydroxydodec-cis-6-enoyl-CoA" - - compartment: p - - formula: C33H52N7O18P3S + - compartment: "p" + - formula: "C33H52N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00083m + - id: "m00083m" - name: "(3S)-3-hydroxylinoleoyl-CoA" - - compartment: m - - formula: C39H62N7O18P3S + - compartment: "m" + - formula: "C39H62N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00083p + - id: "m00083p" - name: "(3S)-3-hydroxylinoleoyl-CoA" - - compartment: p - - formula: C39H62N7O18P3S + - compartment: "p" + - formula: "C39H62N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00084m + - id: "m00084m" - name: "(3S)-citramalyl-CoA" - - compartment: m - - formula: C26H37N7O20P3S + - compartment: "m" + - formula: "C26H37N7O20P3S" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00085c + - id: "m00085c" - name: "(3S)-hydroxy-docasa-cis,cis-13,16-dienoyl-CoA" - - compartment: c - - formula: C43H70N7O18P3S + - compartment: "c" + - formula: "C43H70N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00086c + - id: "m00086c" - name: "(3S)-hydroxy-eicosa-cis,cis,cis-11,14,17-trienoyl-CoA" - - compartment: c - - formula: C41H64N7O18P3S + - compartment: "c" + - formula: "C41H64N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00087c + - id: "m00087c" - name: "(3S)-hydroxy-eicosa-cis,cis-11,14-dienoyl-CoA" - - compartment: c - - formula: C41H66N7O18P3S + - compartment: "c" + - formula: "C41H66N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00088m + - id: "m00088m" - name: "(3Z)-dodecenoyl-CoA" - - compartment: m - - formula: C33H52N7O17P3S + - compartment: "m" + - formula: "C33H52N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00088p + - id: "m00088p" - name: "(3Z)-dodecenoyl-CoA" - - compartment: p - - formula: C33H52N7O17P3S + - compartment: "p" + - formula: "C33H52N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00089m + - id: "m00089m" - name: "(3Z,7Z,10Z)-hexadecatrienoyl-CoA" - - compartment: m - - formula: C37H56N7O17P3S + - compartment: "m" + - formula: "C37H56N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00089p + - id: "m00089p" - name: "(3Z,7Z,10Z)-hexadecatrienoyl-CoA" - - compartment: p - - formula: C37H56N7O17P3S + - compartment: "p" + - formula: "C37H56N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00090p + - id: "m00090p" - name: "(4R,8R,12R)-trimethyl-(2E)-tridecenoyl-CoA" - - compartment: p - - formula: C37H60N7O17P3S + - compartment: "p" + - formula: "C37H60N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00091m + - id: "m00091m" - name: "(4Z,7Z,10Z)-hexadecatrienoyl-CoA" - - compartment: m - - formula: C37H56N7O17P3S + - compartment: "m" + - formula: "C37H56N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00091p + - id: "m00091p" - name: "(4Z,7Z,10Z)-hexadecatrienoyl-CoA" - - compartment: p - - formula: C37H56N7O17P3S + - compartment: "p" + - formula: "C37H56N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00092c + - id: "m00092c" - name: "(4Z,7Z,10Z,13Z,16Z)-docosapentaenoylcarnitine" - - compartment: c - - formula: C29H47NO4 + - compartment: "c" + - formula: "C29H47NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00092m + - id: "m00092m" - name: "(4Z,7Z,10Z,13Z,16Z)-docosapentaenoylcarnitine" - - compartment: m - - formula: C29H47NO4 + - compartment: "m" + - formula: "C29H47NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00092r + - id: "m00092r" - name: "(4Z,7Z,10Z,13Z,16Z)-docosapentaenoylcarnitine" - - compartment: r - - formula: C29H47NO4 + - compartment: "r" + - formula: "C29H47NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00093c + - id: "m00093c" - name: "(4Z,7Z,10Z,13Z,16Z)-docosapentaenoyl-CoA" - - compartment: c - - formula: C43H64N7O17P3S + - compartment: "c" + - formula: "C43H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00093m + - id: "m00093m" - name: "(4Z,7Z,10Z,13Z,16Z)-docosapentaenoyl-CoA" - - compartment: m - - formula: C43H64N7O17P3S + - compartment: "m" + - formula: "C43H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00093p + - id: "m00093p" - name: "(4Z,7Z,10Z,13Z,16Z)-docosapentaenoyl-CoA" - - compartment: p - - formula: C43H64N7O17P3S + - compartment: "p" + - formula: "C43H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00093r + - id: "m00093r" - name: "(4Z,7Z,10Z,13Z,16Z)-docosapentaenoyl-CoA" - - compartment: r - - formula: C43H64N7O17P3S + - compartment: "r" + - formula: "C43H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00094c + - id: "m00094c" - name: "(4Z,7Z,10Z,13Z,16Z)-DPA" - - compartment: c - - formula: C22H33O2 + - compartment: "c" + - formula: "C22H33O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00094l + - id: "m00094l" - name: "(4Z,7Z,10Z,13Z,16Z)-DPA" - - compartment: l - - formula: C22H33O2 + - compartment: "l" + - formula: "C22H33O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00094r + - id: "m00094r" - name: "(4Z,7Z,10Z,13Z,16Z)-DPA" - - compartment: r - - formula: C22H33O2 + - compartment: "r" + - formula: "C22H33O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00094s + - id: "m00094s" - name: "(4Z,7Z,10Z,13Z,16Z)-DPA" - - compartment: s - - formula: C22H33O2 + - compartment: "s" + - formula: "C22H33O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00095c + - id: "m00095c" - name: "(4Z,7Z,10Z,13Z,16Z,19Z)-docosahexaenoyl-CoA" - - compartment: c - - formula: C43H62N7O17P3S + - compartment: "c" + - formula: "C43H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00095m + - id: "m00095m" - name: "(4Z,7Z,10Z,13Z,16Z,19Z)-docosahexaenoyl-CoA" - - compartment: m - - formula: C43H62N7O17P3S + - compartment: "m" + - formula: "C43H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00095p + - id: "m00095p" - name: "(4Z,7Z,10Z,13Z,16Z,19Z)-docosahexaenoyl-CoA" - - compartment: p - - formula: C43H62N7O17P3S + - compartment: "p" + - formula: "C43H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00095r + - id: "m00095r" - name: "(4Z,7Z,10Z,13Z,16Z,19Z)-docosahexaenoyl-CoA" - - compartment: r - - formula: C43H62N7O17P3S + - compartment: "r" + - formula: "C43H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00096c + - id: "m00096c" - name: "(5)ppPur-mRNA" - - compartment: c - - formula: C15H23O22P4R3 + - compartment: "c" + - formula: "C15H23O22P4R3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00097s + - id: "m00097s" - name: "(5-L-glutamyl)-L-amino acid" - - compartment: s - - formula: C8H13N2O5 + - compartment: "s" + - formula: "C8H13N2O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00098c + - id: "m00098c" - name: "(5S,6S)-epoxy-(15R)-hydroxy-ETE" - - compartment: c - - formula: C20H29O4 + - compartment: "c" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00098p + - id: "m00098p" - name: "(5S,6S)-epoxy-(15R)-hydroxy-ETE" - - compartment: p - - formula: C20H29O4 + - compartment: "p" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00098r + - id: "m00098r" - name: "(5S,6S)-epoxy-(15R)-hydroxy-ETE" - - compartment: r - - formula: C20H29O4 + - compartment: "r" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00099m + - id: "m00099m" - name: "(5Z)-dodecenoyl-CoA" - - compartment: m - - formula: C33H52N7O17P3S + - compartment: "m" + - formula: "C33H52N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00099p + - id: "m00099p" - name: "(5Z)-dodecenoyl-CoA" - - compartment: p - - formula: C33H52N7O17P3S + - compartment: "p" + - formula: "C33H52N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00100c + - id: "m00100c" - name: "(5Z,8Z,11Z)-eicosatrienoylcarnitine" - - compartment: c - - formula: C27H47NO4 + - compartment: "c" + - formula: "C27H47NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00100m + - id: "m00100m" - name: "(5Z,8Z,11Z)-eicosatrienoylcarnitine" - - compartment: m - - formula: C27H47NO4 + - compartment: "m" + - formula: "C27H47NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00100r + - id: "m00100r" - name: "(5Z,8Z,11Z)-eicosatrienoylcarnitine" - - compartment: r - - formula: C27H47NO4 + - compartment: "r" + - formula: "C27H47NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00101c + - id: "m00101c" - name: "(5Z,8Z,11Z)-eicosatrienoyl-CoA" - - compartment: c - - formula: C41H64N7O17P3S + - compartment: "c" + - formula: "C41H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00101m + - id: "m00101m" - name: "(5Z,8Z,11Z)-eicosatrienoyl-CoA" - - compartment: m - - formula: C41H64N7O17P3S + - compartment: "m" + - formula: "C41H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00101r + - id: "m00101r" - name: "(5Z,8Z,11Z)-eicosatrienoyl-CoA" - - compartment: r - - formula: C41H64N7O17P3S + - compartment: "r" + - formula: "C41H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00102c + - id: "m00102c" - name: "(5Z,8Z,11Z,14Z,17Z)-eicosapentaenoylcarnitine" - - compartment: c - - formula: C27H43NO4 + - compartment: "c" + - formula: "C27H43NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00102m + - id: "m00102m" - name: "(5Z,8Z,11Z,14Z,17Z)-eicosapentaenoylcarnitine" - - compartment: m - - formula: C27H43NO4 + - compartment: "m" + - formula: "C27H43NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00102r + - id: "m00102r" - name: "(5Z,8Z,11Z,14Z,17Z)-eicosapentaenoylcarnitine" - - compartment: r - - formula: C27H43NO4 + - compartment: "r" + - formula: "C27H43NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00103c + - id: "m00103c" - name: "(5Z,8Z,11Z,14Z,17Z)-eicosapentaenoyl-CoA" - - compartment: c - - formula: C41H60N7O17P3S + - compartment: "c" + - formula: "C41H60N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00103m + - id: "m00103m" - name: "(5Z,8Z,11Z,14Z,17Z)-eicosapentaenoyl-CoA" - - compartment: m - - formula: C41H60N7O17P3S + - compartment: "m" + - formula: "C41H60N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00103r + - id: "m00103r" - name: "(5Z,8Z,11Z,14Z,17Z)-eicosapentaenoyl-CoA" - - compartment: r - - formula: C41H60N7O17P3S + - compartment: "r" + - formula: "C41H60N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00104c + - id: "m00104c" - name: "(6Z,9Z)-octadecadienoic acid" - - compartment: c - - formula: C18H31O2 + - compartment: "c" + - formula: "C18H31O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00104l + - id: "m00104l" - name: "(6Z,9Z)-octadecadienoic acid" - - compartment: l - - formula: C18H31O2 + - compartment: "l" + - formula: "C18H31O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00104r + - id: "m00104r" - name: "(6Z,9Z)-octadecadienoic acid" - - compartment: r - - formula: C18H31O2 + - compartment: "r" + - formula: "C18H31O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00104s + - id: "m00104s" - name: "(6Z,9Z)-octadecadienoic acid" - - compartment: s - - formula: C18H31O2 + - compartment: "s" + - formula: "C18H31O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00105c + - id: "m00105c" - name: "(6Z,9Z)-octadecadienoylcarnitine" - - compartment: c - - formula: C25H45NO4 + - compartment: "c" + - formula: "C25H45NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00105m + - id: "m00105m" - name: "(6Z,9Z)-octadecadienoylcarnitine" - - compartment: m - - formula: C25H45NO4 + - compartment: "m" + - formula: "C25H45NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00105r + - id: "m00105r" - name: "(6Z,9Z)-octadecadienoylcarnitine" - - compartment: r - - formula: C25H45NO4 + - compartment: "r" + - formula: "C25H45NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00106c + - id: "m00106c" - name: "(6Z,9Z)-octadecadienoyl-CoA" - - compartment: c - - formula: C39H62N7O17P3S + - compartment: "c" + - formula: "C39H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00106m + - id: "m00106m" - name: "(6Z,9Z)-octadecadienoyl-CoA" - - compartment: m - - formula: C39H62N7O17P3S + - compartment: "m" + - formula: "C39H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00106r + - id: "m00106r" - name: "(6Z,9Z)-octadecadienoyl-CoA" - - compartment: r - - formula: C39H62N7O17P3S + - compartment: "r" + - formula: "C39H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00107c + - id: "m00107c" - name: "(6Z,9Z,12Z,15Z)-octadecatetraenoylcarnitine" - - compartment: c - - formula: C25H41NO4 + - compartment: "c" + - formula: "C25H41NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00107m + - id: "m00107m" - name: "(6Z,9Z,12Z,15Z)-octadecatetraenoylcarnitine" - - compartment: m - - formula: C25H41NO4 + - compartment: "m" + - formula: "C25H41NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00107r + - id: "m00107r" - name: "(6Z,9Z,12Z,15Z)-octadecatetraenoylcarnitine" - - compartment: r - - formula: C25H41NO4 + - compartment: "r" + - formula: "C25H41NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00108c + - id: "m00108c" - name: "(6Z,9Z,12Z,15Z)-octadecatetraenoyl-CoA" - - compartment: c - - formula: C39H58N7O17P3S + - compartment: "c" + - formula: "C39H58N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00108m + - id: "m00108m" - name: "(6Z,9Z,12Z,15Z)-octadecatetraenoyl-CoA" - - compartment: m - - formula: C39H58N7O17P3S + - compartment: "m" + - formula: "C39H58N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00108r + - id: "m00108r" - name: "(6Z,9Z,12Z,15Z)-octadecatetraenoyl-CoA" - - compartment: r - - formula: C39H58N7O17P3S + - compartment: "r" + - formula: "C39H58N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00109c + - id: "m00109c" - name: "(6Z,9Z,12Z,15Z,18Z)-tetracosapentaenoylcarnitine" - - compartment: c - - formula: C31H51NO4 + - compartment: "c" + - formula: "C31H51NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00109r + - id: "m00109r" - name: "(6Z,9Z,12Z,15Z,18Z)-tetracosapentaenoylcarnitine" - - compartment: r - - formula: C31H51NO4 + - compartment: "r" + - formula: "C31H51NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00110c + - id: "m00110c" - name: "(6Z,9Z,12Z,15Z,18Z)-tetracosapentaenoyl-CoA" - - compartment: c - - formula: C45H68N7O17P3S + - compartment: "c" + - formula: "C45H68N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00110p + - id: "m00110p" - name: "(6Z,9Z,12Z,15Z,18Z)-tetracosapentaenoyl-CoA" - - compartment: p - - formula: C45H68N7O17P3S + - compartment: "p" + - formula: "C45H68N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00110r + - id: "m00110r" - name: "(6Z,9Z,12Z,15Z,18Z)-tetracosapentaenoyl-CoA" - - compartment: r - - formula: C45H68N7O17P3S + - compartment: "r" + - formula: "C45H68N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00111c + - id: "m00111c" - name: "(6Z,9Z,12Z,15Z,18Z)-TPA" - - compartment: c - - formula: C24H37O2 + - compartment: "c" + - formula: "C24H37O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00111l + - id: "m00111l" - name: "(6Z,9Z,12Z,15Z,18Z)-TPA" - - compartment: l - - formula: C24H37O2 + - compartment: "l" + - formula: "C24H37O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00111r + - id: "m00111r" - name: "(6Z,9Z,12Z,15Z,18Z)-TPA" - - compartment: r - - formula: C24H37O2 + - compartment: "r" + - formula: "C24H37O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00111s + - id: "m00111s" - name: "(6Z,9Z,12Z,15Z,18Z)-TPA" - - compartment: s - - formula: C24H37O2 + - compartment: "s" + - formula: "C24H37O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00112c + - id: "m00112c" - name: "(6Z,9Z,12Z,15Z,18Z,21Z)-tetracosahexaenoylcarnitine" - - compartment: c - - formula: C31H49NO4 + - compartment: "c" + - formula: "C31H49NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00112r + - id: "m00112r" - name: "(6Z,9Z,12Z,15Z,18Z,21Z)-tetracosahexaenoylcarnitine" - - compartment: r - - formula: C31H49NO4 + - compartment: "r" + - formula: "C31H49NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00113c + - id: "m00113c" - name: "(6Z,9Z,12Z,15Z,18Z,21Z)-tetracosahexaenoyl-CoA" - - compartment: c - - formula: C45H66N7O17P3S + - compartment: "c" + - formula: "C45H66N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00113p + - id: "m00113p" - name: "(6Z,9Z,12Z,15Z,18Z,21Z)-tetracosahexaenoyl-CoA" - - compartment: p - - formula: C45H66N7O17P3S + - compartment: "p" + - formula: "C45H66N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00113r + - id: "m00113r" - name: "(6Z,9Z,12Z,15Z,18Z,21Z)-tetracosahexaenoyl-CoA" - - compartment: r - - formula: C45H66N7O17P3S + - compartment: "r" + - formula: "C45H66N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00114c + - id: "m00114c" - name: "(6Z,9Z,12Z,15Z,18Z,21Z)-THA" - - compartment: c - - formula: C24H35O2 + - compartment: "c" + - formula: "C24H35O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00114l + - id: "m00114l" - name: "(6Z,9Z,12Z,15Z,18Z,21Z)-THA" - - compartment: l - - formula: C24H35O2 + - compartment: "l" + - formula: "C24H35O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00114r + - id: "m00114r" - name: "(6Z,9Z,12Z,15Z,18Z,21Z)-THA" - - compartment: r - - formula: C24H35O2 + - compartment: "r" + - formula: "C24H35O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00114s + - id: "m00114s" - name: "(6Z,9Z,12Z,15Z,18Z,21Z)-THA" - - compartment: s - - formula: C24H35O2 + - compartment: "s" + - formula: "C24H35O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00115c + - id: "m00115c" - name: "(7Z)-octadecenoic acid" - - compartment: c - - formula: C18H33O2 + - compartment: "c" + - formula: "C18H33O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00115l + - id: "m00115l" - name: "(7Z)-octadecenoic acid" - - compartment: l - - formula: C18H33O2 + - compartment: "l" + - formula: "C18H33O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00115r + - id: "m00115r" - name: "(7Z)-octadecenoic acid" - - compartment: r - - formula: C18H33O2 + - compartment: "r" + - formula: "C18H33O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00115s + - id: "m00115s" - name: "(7Z)-octadecenoic acid" - - compartment: s - - formula: C18H33O2 + - compartment: "s" + - formula: "C18H33O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00116c + - id: "m00116c" - name: "(7Z)-octadecenoyl-CoA" - - compartment: c - - formula: C39H64N7O17P3S + - compartment: "c" + - formula: "C39H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00116m + - id: "m00116m" - name: "(7Z)-octadecenoyl-CoA" - - compartment: m - - formula: C39H64N7O17P3S + - compartment: "m" + - formula: "C39H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00116r + - id: "m00116r" - name: "(7Z)-octadecenoyl-CoA" - - compartment: r - - formula: C39H64N7O17P3S + - compartment: "r" + - formula: "C39H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00117c + - id: "m00117c" - name: "(7Z)-tetradecenoic acid" - - compartment: c - - formula: C14H25O2 + - compartment: "c" + - formula: "C14H25O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00117l + - id: "m00117l" - name: "(7Z)-tetradecenoic acid" - - compartment: l - - formula: C14H25O2 + - compartment: "l" + - formula: "C14H25O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00117r + - id: "m00117r" - name: "(7Z)-tetradecenoic acid" - - compartment: r - - formula: C14H25O2 + - compartment: "r" + - formula: "C14H25O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00117s + - id: "m00117s" - name: "(7Z)-tetradecenoic acid" - - compartment: s - - formula: C14H25O2 + - compartment: "s" + - formula: "C14H25O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00118c + - id: "m00118c" - name: "(7Z)-tetradecenoyl-CoA" - - compartment: c - - formula: C35H56N7O17P3S + - compartment: "c" + - formula: "C35H56N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00118m + - id: "m00118m" - name: "(7Z)-tetradecenoyl-CoA" - - compartment: m - - formula: C35H56N7O17P3S + - compartment: "m" + - formula: "C35H56N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00118p + - id: "m00118p" - name: "(7Z)-tetradecenoyl-CoA" - - compartment: p - - formula: C35H56N7O17P3S + - compartment: "p" + - formula: "C35H56N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00118r + - id: "m00118r" - name: "(7Z)-tetradecenoyl-CoA" - - compartment: r - - formula: C35H56N7O17P3S + - compartment: "r" + - formula: "C35H56N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00119c + - id: "m00119c" - name: "(7Z,10Z,13Z,16Z)-docosatetraenoyl-CoA" - - compartment: c - - formula: C43H66N7O17P3S + - compartment: "c" + - formula: "C43H66N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00119m + - id: "m00119m" - name: "(7Z,10Z,13Z,16Z)-docosatetraenoyl-CoA" - - compartment: m - - formula: C43H66N7O17P3S + - compartment: "m" + - formula: "C43H66N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00119r + - id: "m00119r" - name: "(7Z,10Z,13Z,16Z)-docosatetraenoyl-CoA" - - compartment: r - - formula: C43H66N7O17P3S + - compartment: "r" + - formula: "C43H66N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00120c + - id: "m00120c" - name: "(7Z,10Z,13Z,16Z,19Z)-docosapentaenoylcarnitine" - - compartment: c - - formula: C29H47NO4 + - compartment: "c" + - formula: "C29H47NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00120m + - id: "m00120m" - name: "(7Z,10Z,13Z,16Z,19Z)-docosapentaenoylcarnitine" - - compartment: m - - formula: C29H47NO4 + - compartment: "m" + - formula: "C29H47NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00120r + - id: "m00120r" - name: "(7Z,10Z,13Z,16Z,19Z)-docosapentaenoylcarnitine" - - compartment: r - - formula: C29H47NO4 + - compartment: "r" + - formula: "C29H47NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00121c + - id: "m00121c" - name: "(7Z,10Z,13Z,16Z,19Z)-docosapentaenoyl-CoA" - - compartment: c - - formula: C43H64N7O17P3S + - compartment: "c" + - formula: "C43H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00121m + - id: "m00121m" - name: "(7Z,10Z,13Z,16Z,19Z)-docosapentaenoyl-CoA" - - compartment: m - - formula: C43H64N7O17P3S + - compartment: "m" + - formula: "C43H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00121r + - id: "m00121r" - name: "(7Z,10Z,13Z,16Z,19Z)-docosapentaenoyl-CoA" - - compartment: r - - formula: C43H64N7O17P3S + - compartment: "r" + - formula: "C43H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00122c + - id: "m00122c" - name: "(8Z,11Z)-eicosadienoylcarnitine" - - compartment: c - - formula: C27H49NO4 + - compartment: "c" + - formula: "C27H49NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00122m + - id: "m00122m" - name: "(8Z,11Z)-eicosadienoylcarnitine" - - compartment: m - - formula: C27H49NO4 + - compartment: "m" + - formula: "C27H49NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00122r + - id: "m00122r" - name: "(8Z,11Z)-eicosadienoylcarnitine" - - compartment: r - - formula: C27H49NO4 + - compartment: "r" + - formula: "C27H49NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00123c + - id: "m00123c" - name: "(8Z,11Z)-eicosadienoyl-CoA" - - compartment: c - - formula: C41H66N7O17P3S + - compartment: "c" + - formula: "C41H66N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00123m + - id: "m00123m" - name: "(8Z,11Z)-eicosadienoyl-CoA" - - compartment: m - - formula: C41H66N7O17P3S + - compartment: "m" + - formula: "C41H66N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00123r + - id: "m00123r" - name: "(8Z,11Z)-eicosadienoyl-CoA" - - compartment: r - - formula: C41H66N7O17P3S + - compartment: "r" + - formula: "C41H66N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00124c + - id: "m00124c" - name: "(8Z,11Z,14Z,17Z)-eicosatetraenoylcarnitine" - - compartment: c - - formula: C27H45NO4 + - compartment: "c" + - formula: "C27H45NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00124m + - id: "m00124m" - name: "(8Z,11Z,14Z,17Z)-eicosatetraenoylcarnitine" - - compartment: m - - formula: C27H45NO4 + - compartment: "m" + - formula: "C27H45NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00124r + - id: "m00124r" - name: "(8Z,11Z,14Z,17Z)-eicosatetraenoylcarnitine" - - compartment: r - - formula: C27H45NO4 + - compartment: "r" + - formula: "C27H45NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00125c + - id: "m00125c" - name: "(8Z,11Z,14Z,17Z)-eicosatetraenoyl-CoA" - - compartment: c - - formula: C41H62N7O17P3S + - compartment: "c" + - formula: "C41H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00125m + - id: "m00125m" - name: "(8Z,11Z,14Z,17Z)-eicosatetraenoyl-CoA" - - compartment: m - - formula: C41H62N7O17P3S + - compartment: "m" + - formula: "C41H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00125r + - id: "m00125r" - name: "(8Z,11Z,14Z,17Z)-eicosatetraenoyl-CoA" - - compartment: r - - formula: C41H62N7O17P3S + - compartment: "r" + - formula: "C41H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00126c + - id: "m00126c" - name: "(9E)-octadecenoylcarnitine" - - compartment: c - - formula: C25H47NO4 + - compartment: "c" + - formula: "C25H47NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00126m + - id: "m00126m" - name: "(9E)-octadecenoylcarnitine" - - compartment: m - - formula: C25H47NO4 + - compartment: "m" + - formula: "C25H47NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00126r + - id: "m00126r" - name: "(9E)-octadecenoylcarnitine" - - compartment: r - - formula: C25H47NO4 + - compartment: "r" + - formula: "C25H47NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00127c + - id: "m00127c" - name: "(9E)-octadecenoyl-CoA" - - compartment: c - - formula: C39H64N7O17P3S + - compartment: "c" + - formula: "C39H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00127m + - id: "m00127m" - name: "(9E)-octadecenoyl-CoA" - - compartment: m - - formula: C39H64N7O17P3S + - compartment: "m" + - formula: "C39H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00127r + - id: "m00127r" - name: "(9E)-octadecenoyl-CoA" - - compartment: r - - formula: C39H64N7O17P3S + - compartment: "r" + - formula: "C39H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00128c + - id: "m00128c" - name: "(9E)-tetradecenoic acid" - - compartment: c - - formula: C14H25O2 + - compartment: "c" + - formula: "C14H25O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00128l + - id: "m00128l" - name: "(9E)-tetradecenoic acid" - - compartment: l - - formula: C14H25O2 + - compartment: "l" + - formula: "C14H25O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00128r + - id: "m00128r" - name: "(9E)-tetradecenoic acid" - - compartment: r - - formula: C14H25O2 + - compartment: "r" + - formula: "C14H25O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00128s + - id: "m00128s" - name: "(9E)-tetradecenoic acid" - - compartment: s - - formula: C14H25O2 + - compartment: "s" + - formula: "C14H25O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00129c + - id: "m00129c" - name: "(9E)-tetradecenoyl-CoA" - - compartment: c - - formula: C35H56N7O17P3S + - compartment: "c" + - formula: "C35H56N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00129m + - id: "m00129m" - name: "(9E)-tetradecenoyl-CoA" - - compartment: m - - formula: C35H56N7O17P3S + - compartment: "m" + - formula: "C35H56N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00129r + - id: "m00129r" - name: "(9E)-tetradecenoyl-CoA" - - compartment: r - - formula: C35H56N7O17P3S + - compartment: "r" + - formula: "C35H56N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00130c + - id: "m00130c" - name: "(9Z,12Z,15Z,18Z)-tetracosatetraenoylcarnitine" - - compartment: c - - formula: C31H53NO4 + - compartment: "c" + - formula: "C31H53NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00130r + - id: "m00130r" - name: "(9Z,12Z,15Z,18Z)-tetracosatetraenoylcarnitine" - - compartment: r - - formula: C31H53NO4 + - compartment: "r" + - formula: "C31H53NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00131c + - id: "m00131c" - name: "(9Z,12Z,15Z,18Z)-tetracosatetraenoyl-CoA" - - compartment: c - - formula: C45H70N7O17P3S + - compartment: "c" + - formula: "C45H70N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00131p + - id: "m00131p" - name: "(9Z,12Z,15Z,18Z)-tetracosatetraenoyl-CoA" - - compartment: p - - formula: C45H70N7O17P3S + - compartment: "p" + - formula: "C45H70N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00131r + - id: "m00131r" - name: "(9Z,12Z,15Z,18Z)-tetracosatetraenoyl-CoA" - - compartment: r - - formula: C45H70N7O17P3S + - compartment: "r" + - formula: "C45H70N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00132c + - id: "m00132c" - name: "(9Z,12Z,15Z,18Z)-TTA" - - compartment: c - - formula: C24H39O2 + - compartment: "c" + - formula: "C24H39O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00132l + - id: "m00132l" - name: "(9Z,12Z,15Z,18Z)-TTA" - - compartment: l - - formula: C24H39O2 + - compartment: "l" + - formula: "C24H39O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00132r + - id: "m00132r" - name: "(9Z,12Z,15Z,18Z)-TTA" - - compartment: r - - formula: C24H39O2 + - compartment: "r" + - formula: "C24H39O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00132s + - id: "m00132s" - name: "(9Z,12Z,15Z,18Z)-TTA" - - compartment: s - - formula: C24H39O2 + - compartment: "s" + - formula: "C24H39O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00133c + - id: "m00133c" - name: "(9Z,12Z,15Z,18Z,21Z)-tetracosapentaenoylcarnitine" - - compartment: c - - formula: C31H51NO4 + - compartment: "c" + - formula: "C31H51NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00133r + - id: "m00133r" - name: "(9Z,12Z,15Z,18Z,21Z)-tetracosapentaenoylcarnitine" - - compartment: r - - formula: C31H51NO4 + - compartment: "r" + - formula: "C31H51NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00134c + - id: "m00134c" - name: "(9Z,12Z,15Z,18Z,21Z)-tetracosapentaenoyl-CoA" - - compartment: c - - formula: C45H68N7O17P3S + - compartment: "c" + - formula: "C45H68N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00134p + - id: "m00134p" - name: "(9Z,12Z,15Z,18Z,21Z)-tetracosapentaenoyl-CoA" - - compartment: p - - formula: C45H68N7O17P3S + - compartment: "p" + - formula: "C45H68N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00134r + - id: "m00134r" - name: "(9Z,12Z,15Z,18Z,21Z)-tetracosapentaenoyl-CoA" - - compartment: r - - formula: C45H68N7O17P3S + - compartment: "r" + - formula: "C45H68N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00135c + - id: "m00135c" - name: "(9Z,12Z,15Z,18Z,21Z)-TPA" - - compartment: c - - formula: C24H37O2 + - compartment: "c" + - formula: "C24H37O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00135l + - id: "m00135l" - name: "(9Z,12Z,15Z,18Z,21Z)-TPA" - - compartment: l - - formula: C24H37O2 + - compartment: "l" + - formula: "C24H37O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00135r + - id: "m00135r" - name: "(9Z,12Z,15Z,18Z,21Z)-TPA" - - compartment: r - - formula: C24H37O2 + - compartment: "r" + - formula: "C24H37O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00135s + - id: "m00135s" - name: "(9Z,12Z,15Z,18Z,21Z)-TPA" - - compartment: s - - formula: C24H37O2 + - compartment: "s" + - formula: "C24H37O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00136c + - id: "m00136c" - name: "(ADP-D-ribosyl)n+1-acceptor" - - compartment: c - - formula: X + - compartment: "c" + - formula: "X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00137c + - id: "m00137c" - name: "(ADP-D-ribosyl)n-acceptor" - - compartment: c - - formula: C15H19N5O13P2X + - compartment: "c" + - formula: "C15H19N5O13P2X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00138g + - id: "m00138g" - name: "(alpha-D-Glucosyl)-(alpha-D-mannosyl)8-beta-D-mannosyl-diacetylchitobiosyl-L-asparagine (protein)" - - compartment: g - - formula: C76H127N2O60X + - compartment: "g" + - formula: "C76H127N2O60X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00138r + - id: "m00138r" - name: "(alpha-D-Glucosyl)-(alpha-D-mannosyl)8-beta-D-mannosyl-diacetylchitobiosyl-L-asparagine (protein)" - - compartment: r - - formula: C76H127N2O60X + - compartment: "r" + - formula: "C76H127N2O60X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00139g + - id: "m00139g" - name: "(alpha-D-Glucosyl)2-(alpha-D-mannosyl)8-beta-D-mannosyl-diacetylchitobiosyl-L-asparagine (protein)" - - compartment: g - - formula: C82H137N2O65X + - compartment: "g" + - formula: "C82H137N2O65X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00139r + - id: "m00139r" - name: "(alpha-D-Glucosyl)2-(alpha-D-mannosyl)8-beta-D-mannosyl-diacetylchitobiosyl-L-asparagine (protein)" - - compartment: r - - formula: C82H137N2O65X + - compartment: "r" + - formula: "C82H137N2O65X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00140g + - id: "m00140g" - name: "(alpha-D-Glucosyl)3-(alpha-D-mannosyl)8-beta-D-mannosyl-diacetylchitobiosyl-L-asparagine (protein)" - - compartment: g - - formula: C88H147N2O70X + - compartment: "g" + - formula: "C88H147N2O70X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00140r + - id: "m00140r" - name: "(alpha-D-Glucosyl)3-(alpha-D-mannosyl)8-beta-D-mannosyl-diacetylchitobiosyl-L-asparagine (protein)" - - compartment: r - - formula: C88H147N2O70X + - compartment: "r" + - formula: "C88H147N2O70X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00141l + - id: "m00141l" - name: "(alpha-D-mannosyl)2-beta-D-mannosyl-N-acetylglucosamine" - - compartment: l - - formula: C26H45NO21 + - compartment: "l" + - formula: "C26H45NO21" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00142g + - id: "m00142g" - name: "(alpha-D-mannosyl)4-beta-D-mannosyl-diacetylchitobiosyl-L-asparagine (protein)" - - compartment: g - - formula: C46H77N2O35X + - compartment: "g" + - formula: "C46H77N2O35X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00143g + - id: "m00143g" - name: "(alpha-D-mannosyl)5-beta-D-mannosyl-diacetylchitobiosyl-L-asparagine (protein) (B1)" - - compartment: g - - formula: C52H87N2O40X + - compartment: "g" + - formula: "C52H87N2O40X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00144g + - id: "m00144g" - name: "(alpha-D-mannosyl)5-beta-D-mannosyl-diacetylchitobiosyl-L-asparagine (protein) (B2)" - - compartment: g - - formula: C52H87N2O40X + - compartment: "g" + - formula: "C52H87N2O40X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00145g + - id: "m00145g" - name: "(alpha-D-mannosyl)5-beta-D-mannosyl-diacetylchitobiosyl-L-asparagine (protein) (C)" - - compartment: g - - formula: C52H87N2O40X + - compartment: "g" + - formula: "C52H87N2O40X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00146g + - id: "m00146g" - name: "(alpha-D-mannosyl)6-beta-D-mannosyl-diacetylchitobiosyl-L-asparagine (protein) (A)" - - compartment: g - - formula: C58H97N2O45X + - compartment: "g" + - formula: "C58H97N2O45X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00147g + - id: "m00147g" - name: "(alpha-D-mannosyl)6-beta-D-mannosyl-diacetylchitobiosyl-L-asparagine (protein) (B1)" - - compartment: g - - formula: C58H97N2O45X + - compartment: "g" + - formula: "C58H97N2O45X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00148g + - id: "m00148g" - name: "(alpha-D-mannosyl)6-beta-D-mannosyl-diacetylchitobiosyl-L-asparagine (protein) (B2)" - - compartment: g - - formula: C58H97N2O45X + - compartment: "g" + - formula: "C58H97N2O45X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00149g + - id: "m00149g" - name: "(alpha-D-mannosyl)6-beta-D-mannosyl-diacetylchitobiosyl-L-asparagine (protein) (C)" - - compartment: g - - formula: C58H97N2O45X + - compartment: "g" + - formula: "C58H97N2O45X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00150g + - id: "m00150g" - name: "(alpha-D-mannosyl)7-beta-D-mannosyl-diacetylchitobiosyl-L-asparagine, isoform A (protein)" - - compartment: g - - formula: C64H107N2O50X + - compartment: "g" + - formula: "C64H107N2O50X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00151g + - id: "m00151g" - name: "(alpha-D-mannosyl)7-beta-D-mannosyl-diacetylchitobiosyl-L-asparagine, isoform B (protein)" - - compartment: g - - formula: C64H107N2O50X + - compartment: "g" + - formula: "C64H107N2O50X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00151r + - id: "m00151r" - name: "(alpha-D-mannosyl)7-beta-D-mannosyl-diacetylchitobiosyl-L-asparagine, isoform B (protein)" - - compartment: r - - formula: C64H107N2O50X + - compartment: "r" + - formula: "C64H107N2O50X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00152g + - id: "m00152g" - name: "(alpha-D-mannosyl)7-beta-D-mannosyl-diacetylchitobiosyl-L-asparagine, isoform C (protein)" - - compartment: g - - formula: C64H107N2O50X + - compartment: "g" + - formula: "C64H107N2O50X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00153g + - id: "m00153g" - name: "(alpha-D-mannosyl)8-beta-D-mannosyl-diacetylchitobiosyl-L-asparagine (protein)" - - compartment: g - - formula: C70H117N2O55X + - compartment: "g" + - formula: "C70H117N2O55X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00153r + - id: "m00153r" - name: "(alpha-D-mannosyl)8-beta-D-mannosyl-diacetylchitobiosyl-L-asparagine (protein)" - - compartment: r - - formula: C70H117N2O55X + - compartment: "r" + - formula: "C70H117N2O55X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00154r + - id: "m00154r" - name: "(Glc)3 (GlcNAc)2 (Man)9 (PP-Dol)1" - - compartment: r - - formula: C188H310N2O77P2 + - compartment: "r" + - formula: "C188H310N2O77P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00155c + - id: "m00155c" - name: "(indol-3-yl)acetamide" - - compartment: c - - formula: C10H10N2O + - compartment: "c" + - formula: "C10H10N2O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00156c + - id: "m00156c" - name: "(R)-1,2-dimethyl-5,6-dihydroxy-tetrahydroisoquinoline" - - compartment: c - - formula: C11H16NO2 + - compartment: "c" + - formula: "C11H16NO2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00157c + - id: "m00157c" - name: "(R)-3-hydroxybutanoate" - - compartment: c - - formula: C4H7O3 + - compartment: "c" + - formula: "C4H7O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00157m + - id: "m00157m" - name: "(R)-3-hydroxybutanoate" - - compartment: m - - formula: C4H7O3 + - compartment: "m" + - formula: "C4H7O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00157s + - id: "m00157s" - name: "(R)-3-hydroxybutanoate" - - compartment: s - - formula: C4H7O3 + - compartment: "s" + - formula: "C4H7O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00158c + - id: "m00158c" - name: "(R)-3-hydroxybutanoyl-[ACP]" - - compartment: c - - formula: C15H27N2O9PRS + - compartment: "c" + - formula: "C15H27N2O9PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00159m + - id: "m00159m" - name: "(R)-3-hydroxybutanoyl-CoA" - - compartment: m - - formula: C25H38N7O18P3S + - compartment: "m" + - formula: "C25H38N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00160c + - id: "m00160c" - name: "(R)-3-hydroxydecanoyl-[ACP]" - - compartment: c - - formula: C21H39N2O9PRS + - compartment: "c" + - formula: "C21H39N2O9PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00161c + - id: "m00161c" - name: "(R)-3-hydroxyoctanoyl-[ACP]" - - compartment: c - - formula: C19H35N2O9PRS + - compartment: "c" + - formula: "C19H35N2O9PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00162c + - id: "m00162c" - name: "(R)-3-hydroxypalmitoyl-[ACP]" - - compartment: c - - formula: C27H51N2O9PRS + - compartment: "c" + - formula: "C27H51N2O9PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00163c + - id: "m00163c" - name: "(R)-4-phosphopantothenoyl-cysteine" - - compartment: c - - formula: C12H20N2O9PS + - compartment: "c" + - formula: "C12H20N2O9PS" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00163m + - id: "m00163m" - name: "(R)-4-phosphopantothenoyl-cysteine" - - compartment: m - - formula: C12H20N2O9PS + - compartment: "m" + - formula: "C12H20N2O9PS" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00164c + - id: "m00164c" - name: "(R)-5-diphosphomevalonate" - - compartment: c - - formula: C6H10O10P2 + - compartment: "c" + - formula: "C6H10O10P2" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00165c + - id: "m00165c" - name: "(R)-5-phosphomevalonate" - - compartment: c - - formula: C6H10O7P + - compartment: "c" + - formula: "C6H10O7P" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00166m + - id: "m00166m" - name: "(R)-methylmalonyl-CoA" - - compartment: m - - formula: C25H35N7O19P3S + - compartment: "m" + - formula: "C25H35N7O19P3S" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00167c + - id: "m00167c" - name: "(R)-mevalonate" - - compartment: c - - formula: C6H11O4 + - compartment: "c" + - formula: "C6H11O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00167p + - id: "m00167p" - name: "(R)-mevalonate" - - compartment: p - - formula: C6H11O4 + - compartment: "p" + - formula: "C6H11O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00168c + - id: "m00168c" - name: "(R)-S-lactoylglutathione" - - compartment: c - - formula: C13H20N3O8S + - compartment: "c" + - formula: "C13H20N3O8S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00168m + - id: "m00168m" - name: "(R)-S-lactoylglutathione" - - compartment: m - - formula: C13H20N3O8S + - compartment: "m" + - formula: "C13H20N3O8S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00169c + - id: "m00169c" - name: "(S)-2-aminobutanoate" - - compartment: c - - formula: C4H9NO2 + - compartment: "c" + - formula: "C4H9NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00170m + - id: "m00170m" - name: "(S)-3-hydroxy-11-cis-octadecenoyl-CoA" - - compartment: m - - formula: C39H64N7O18P3S + - compartment: "m" + - formula: "C39H64N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00170p + - id: "m00170p" - name: "(S)-3-hydroxy-11-cis-octadecenoyl-CoA" - - compartment: p - - formula: C39H64N7O18P3S + - compartment: "p" + - formula: "C39H64N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00171m + - id: "m00171m" - name: "(S)-3-hydroxy-2-methylbutyryl-CoA" - - compartment: m - - formula: C26H40N7O18P3S + - compartment: "m" + - formula: "C26H40N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00172m + - id: "m00172m" - name: "(S)-3-hydroxy-7-hexadecenoyl-CoA" - - compartment: m - - formula: C37H60N7O18P3S + - compartment: "m" + - formula: "C37H60N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00172p + - id: "m00172p" - name: "(S)-3-hydroxy-7-hexadecenoyl-CoA" - - compartment: p - - formula: C37H60N7O18P3S + - compartment: "p" + - formula: "C37H60N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00173m + - id: "m00173m" - name: "(S)-3-hydroxybutyryl-CoA" - - compartment: m - - formula: C25H38N7O18P3S + - compartment: "m" + - formula: "C25H38N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00173p + - id: "m00173p" - name: "(S)-3-hydroxybutyryl-CoA" - - compartment: p - - formula: C25H38N7O18P3S + - compartment: "p" + - formula: "C25H38N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00174m + - id: "m00174m" - name: "(S)-3-hydroxydodecanoyl-CoA" - - compartment: m - - formula: C33H54N7O18P3S + - compartment: "m" + - formula: "C33H54N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00174p + - id: "m00174p" - name: "(S)-3-hydroxydodecanoyl-CoA" - - compartment: p - - formula: C33H54N7O18P3S + - compartment: "p" + - formula: "C33H54N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00175m + - id: "m00175m" - name: "(S)-3-hydroxyhexadecanoyl-CoA" - - compartment: m - - formula: C37H62N7O18P3S + - compartment: "m" + - formula: "C37H62N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00175p + - id: "m00175p" - name: "(S)-3-hydroxyhexadecanoyl-CoA" - - compartment: p - - formula: C37H62N7O18P3S + - compartment: "p" + - formula: "C37H62N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00176m + - id: "m00176m" - name: "(S)-3-hydroxyoleyleoyl-CoA" - - compartment: m - - formula: C39H64N7O18P3S + - compartment: "m" + - formula: "C39H64N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00176p + - id: "m00176p" - name: "(S)-3-hydroxyoleyleoyl-CoA" - - compartment: p - - formula: C39H64N7O18P3S + - compartment: "p" + - formula: "C39H64N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00177m + - id: "m00177m" - name: "(S)-3-hydroxypalmitoleoyl-CoA" - - compartment: m - - formula: C37H60N7O18P3S + - compartment: "m" + - formula: "C37H60N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00177p + - id: "m00177p" - name: "(S)-3-hydroxypalmitoleoyl-CoA" - - compartment: p - - formula: C37H60N7O18P3S + - compartment: "p" + - formula: "C37H60N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00178m + - id: "m00178m" - name: "(S)-3-hydroxytetradecanoyl-CoA" - - compartment: m - - formula: C35H58N7O18P3S + - compartment: "m" + - formula: "C35H58N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00178p + - id: "m00178p" - name: "(S)-3-hydroxytetradecanoyl-CoA" - - compartment: p - - formula: C35H58N7O18P3S + - compartment: "p" + - formula: "C35H58N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00179c + - id: "m00179c" - name: "(S)-3-sulfolactate" - - compartment: c - - formula: C3H4O6S + - compartment: "c" + - formula: "C3H4O6S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00179m + - id: "m00179m" - name: "(S)-3-sulfolactate" - - compartment: m - - formula: C3H4O6S + - compartment: "m" + - formula: "C3H4O6S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00179s + - id: "m00179s" - name: "(S)-3-sulfolactate" - - compartment: s - - formula: C3H4O6S + - compartment: "s" + - formula: "C3H4O6S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00180c + - id: "m00180c" - name: "(S)-dihydroorotate" - - compartment: c - - formula: C5H5N2O4 + - compartment: "c" + - formula: "C5H5N2O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00181m + - id: "m00181m" - name: "(S)-hydroxydecanoyl-CoA" - - compartment: m - - formula: C31H50N7O18P3S + - compartment: "m" + - formula: "C31H50N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00181p + - id: "m00181p" - name: "(S)-hydroxydecanoyl-CoA" - - compartment: p - - formula: C31H50N7O18P3S + - compartment: "p" + - formula: "C31H50N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00182m + - id: "m00182m" - name: "(S)-hydroxyhexanoyl-CoA" - - compartment: m - - formula: C27H42N7O18P3S + - compartment: "m" + - formula: "C27H42N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00182p + - id: "m00182p" - name: "(S)-hydroxyhexanoyl-CoA" - - compartment: p - - formula: C27H42N7O18P3S + - compartment: "p" + - formula: "C27H42N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00183m + - id: "m00183m" - name: "(S)-hydroxyoctanoyl-CoA" - - compartment: m - - formula: C29H46N7O18P3S + - compartment: "m" + - formula: "C29H46N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00183p + - id: "m00183p" - name: "(S)-hydroxyoctanoyl-CoA" - - compartment: p - - formula: C29H46N7O18P3S + - compartment: "p" + - formula: "C29H46N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00184c + - id: "m00184c" - name: "[ACP]" - - compartment: c - - formula: C11H21N2O7PRS + - compartment: "c" + - formula: "C11H21N2O7PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00185c + - id: "m00185c" - name: "[apocarboxlase]" - - compartment: c - - formula: XH + - compartment: "c" + - formula: "XH" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00186c + - id: "m00186c" - name: "[apotransferin]" - - compartment: c - - formula: C3389H5282N934O1021S50 + - compartment: "c" + - formula: "C3389H5282N934O1021S50" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00186l + - id: "m00186l" - name: "[apotransferin]" - - compartment: l - - formula: C3389H5282N934O1021S50 + - compartment: "l" + - formula: "C3389H5282N934O1021S50" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00186s + - id: "m00186s" - name: "[apotransferin]" - - compartment: s - - formula: C3389H5282N934O1021S50 + - compartment: "s" + - formula: "C3389H5282N934O1021S50" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00187c + - id: "m00187c" - name: "[beta-adrenergic-receptor]" - - compartment: c - - formula: C4H6N2O3R2 + - compartment: "c" + - formula: "C4H6N2O3R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00188c + - id: "m00188c" - name: "[methionine synthase]-cob(II)alamin" - - compartment: c - - formula: C69H97CoN17O16PR2 + - compartment: "c" + - formula: "C69H97CoN17O16PR2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00189c + - id: "m00189c" - name: "[methionine synthase]-methylcob(I)alamin" - - compartment: c - - formula: C70H100CoN17O16PR2 + - compartment: "c" + - formula: "C70H100CoN17O16PR2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00190c + - id: "m00190c" - name: "[myosin light chain]" - - compartment: c - - formula: C4H6N2O3R2 + - compartment: "c" + - formula: "C4H6N2O3R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00191c + - id: "m00191c" - name: "[myosin light chain]-phosphate" - - compartment: c - - formula: C4H6N2O6PR2 + - compartment: "c" + - formula: "C4H6N2O6PR2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00192c + - id: "m00192c" - name: "[phosphorylase A]" - - compartment: c - - formula: O12P4X2 + - compartment: "c" + - formula: "O12P4X2" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00193c + - id: "m00193c" - name: "[phosphorylase B]" - - compartment: c - - formula: X + - compartment: "c" + - formula: "X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00194c + - id: "m00194c" - name: "[protein C terminal]-S-farnesyl-L-cysteine" - - compartment: c - - formula: C19H29NO3SR + - compartment: "c" + - formula: "C19H29NO3SR" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00195c + - id: "m00195c" - name: "[protein C terminal]-S-farnesyl-L-cysteine-methyl ester" - - compartment: c - - formula: C20H32NO3SR + - compartment: "c" + - formula: "C20H32NO3SR" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00196c + - id: "m00196c" - name: "[protein]" - - compartment: c - - formula: X + - compartment: "c" + - formula: "X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00197c + - id: "m00197c" - name: "[protein]-L-arginine" - - compartment: c - - formula: C7H14N5O2R2 + - compartment: "c" + - formula: "C7H14N5O2R2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00198c + - id: "m00198c" - name: "[protein]-L-asparagine" - - compartment: c - - formula: XH + - compartment: "c" + - formula: "XH" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00198l + - id: "m00198l" - name: "[protein]-L-asparagine" - - compartment: l - - formula: XH + - compartment: "l" + - formula: "XH" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00198r + - id: "m00198r" - name: "[protein]-L-asparagine" - - compartment: r - - formula: XH + - compartment: "r" + - formula: "XH" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00199c + - id: "m00199c" - name: "[protein]-L-citrulline" - - compartment: c - - formula: C7H12N4O3R2 + - compartment: "c" + - formula: "C7H12N4O3R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00200c + - id: "m00200c" - name: "[protein]-L-cysteine" - - compartment: c - - formula: C4H6N2O2SR2 + - compartment: "c" + - formula: "C4H6N2O2SR2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00201c + - id: "m00201c" - name: "[protein]-L-glutamine" - - compartment: c - - formula: C6H9N3O3R2 + - compartment: "c" + - formula: "C6H9N3O3R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00202c + - id: "m00202c" - name: "[protein]-L-isoaspartate" - - compartment: c - - formula: C5H6N2O4R2 + - compartment: "c" + - formula: "C5H6N2O4R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00203c + - id: "m00203c" - name: "[protein]-L-isoaspartate-methyl ester" - - compartment: c - - formula: C6H8N2O4R2 + - compartment: "c" + - formula: "C6H8N2O4R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00204c + - id: "m00204c" - name: "[protein]-L-lysine" - - compartment: c - - formula: C7H14N3O2R2 + - compartment: "c" + - formula: "C7H14N3O2R2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00204n + - id: "m00204n" - name: "[protein]-L-lysine" - - compartment: n - - formula: C7H14N3O2R2 + - compartment: "n" + - formula: "C7H14N3O2R2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00204s + - id: "m00204s" - name: "[protein]-L-lysine" - - compartment: s - - formula: C7H14N3O2R2 + - compartment: "s" + - formula: "C7H14N3O2R2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00205c + - id: "m00205c" - name: "[protein]-L-serine" - - compartment: c - - formula: XH + - compartment: "c" + - formula: "XH" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00205g + - id: "m00205g" - name: "[protein]-L-serine" - - compartment: g - - formula: XH + - compartment: "g" + - formula: "XH" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00205l + - id: "m00205l" - name: "[protein]-L-serine" - - compartment: l - - formula: XH + - compartment: "l" + - formula: "XH" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00205r + - id: "m00205r" - name: "[protein]-L-serine" - - compartment: r - - formula: XH + - compartment: "r" + - formula: "XH" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00206c + - id: "m00206c" - name: "[protein]-L-tyrosine" - - compartment: c - - formula: C10H10N2O3R2 + - compartment: "c" + - formula: "C10H10N2O3R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00207c + - id: "m00207c" - name: "[protein]-N5-alkylglutamine" - - compartment: c - - formula: C6H8N3O3R3 + - compartment: "c" + - formula: "C6H8N3O3R3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00208c + - id: "m00208c" - name: "[protein]-N6-(dihydrolipoyl)lysine" - - compartment: c - - formula: C1375H2187N381O420S6 + - compartment: "c" + - formula: "C1375H2187N381O420S6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00209c + - id: "m00209c" - name: "[protein]-N6-(lipoyl)lysine" - - compartment: c - - formula: C1375H2185N381O420S6 + - compartment: "c" + - formula: "C1375H2185N381O420S6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00210c + - id: "m00210c" - name: "[protein]-N6-(octanoyl)lysine" - - compartment: c - - formula: C1375H2187N381O420S4 + - compartment: "c" + - formula: "C1375H2187N381O420S4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00211c + - id: "m00211c" - name: "[protein]-N6,N6,N6-trimethyl-L-lysine" - - compartment: c - - formula: C10H20N3O2R2 + - compartment: "c" + - formula: "C10H20N3O2R2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00211n + - id: "m00211n" - name: "[protein]-N6,N6,N6-trimethyl-L-lysine" - - compartment: n - - formula: C10H20N3O2R2 + - compartment: "n" + - formula: "C10H20N3O2R2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00211r + - id: "m00211r" - name: "[protein]-N6,N6,N6-trimethyl-L-lysine" - - compartment: r - - formula: C10H20N3O2R2 + - compartment: "r" + - formula: "C10H20N3O2R2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00212c + - id: "m00212c" - name: "[protein]-N6,N6-dimethyl-L-lysine" - - compartment: c - - formula: C9H18N3O2R2 + - compartment: "c" + - formula: "C9H18N3O2R2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00212n + - id: "m00212n" - name: "[protein]-N6,N6-dimethyl-L-lysine" - - compartment: n - - formula: C9H18N3O2R2 + - compartment: "n" + - formula: "C9H18N3O2R2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00213c + - id: "m00213c" - name: "[protein]-N6-methyl-L-lysine" - - compartment: c - - formula: C8H16N3O2R2 + - compartment: "c" + - formula: "C8H16N3O2R2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00214c + - id: "m00214c" - name: "[protein]-N-ubiquityllysine" - - compartment: c - - formula: C8H13N3O3R3 + - compartment: "c" + - formula: "C8H13N3O3R3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00215c + - id: "m00215c" - name: "[protein]-omega-N-(ADP-D-ribosyl)-L-arginine" - - compartment: c - - formula: C22H33N10O15P2R2 + - compartment: "c" + - formula: "C22H33N10O15P2R2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00216c + - id: "m00216c" - name: "[protein]-S-methyl-L-cysteine" - - compartment: c - - formula: C5H8N2O2SR2 + - compartment: "c" + - formula: "C5H8N2O2SR2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00217c + - id: "m00217c" - name: "[protein]-tyrosine-O-sulfate" - - compartment: c - - formula: C10H9N2O6R2S + - compartment: "c" + - formula: "C10H9N2O6R2S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00218c + - id: "m00218c" - name: "[protein]-tyrosine-phosphate" - - compartment: c - - formula: C10H9N2O6PR2 + - compartment: "c" + - formula: "C10H9N2O6PR2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00219c + - id: "m00219c" - name: "[pyruvate dehydrogenase (acetyl transferring)]" - - compartment: c - - formula: C4H6N2O3R2 + - compartment: "c" + - formula: "C4H6N2O3R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00220c + - id: "m00220c" - name: "[pyruvate dehydrogenase (acetyl transferring)]-phosphate" - - compartment: c - - formula: C4H5N2O6PR2 + - compartment: "c" + - formula: "C4H5N2O6PR2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00221c + - id: "m00221c" - name: "1-(1,2,3,4,5-pentahydroxypent-1-yl)-1,2,3,4-tetrahydro-beta-carboline-3-carboxylate" - - compartment: c - - formula: C17H22N2O7 + - compartment: "c" + - formula: "C17H22N2O7" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00222c + - id: "m00222c" - name: "1-(1-alkenyl)-sn-glycero-3-phosphate" - - compartment: c - - formula: C5H10O6PR + - compartment: "c" + - formula: "C5H10O6PR" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00223c + - id: "m00223c" - name: "1-(1-alkenyl)-sn-glycero-3-phosphoethanolamine" - - compartment: c - - formula: C7H15NO6PR + - compartment: "c" + - formula: "C7H15NO6PR" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00224c + - id: "m00224c" - name: "1-(1-alkenyl)-sn-glycerol" - - compartment: c - - formula: C5H9O3R + - compartment: "c" + - formula: "C5H9O3R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00225c + - id: "m00225c" - name: "1-(3-pyridinyl)-1,4-butanediol" - - compartment: c - - formula: C9H13NO2 + - compartment: "c" + - formula: "C9H13NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00226c + - id: "m00226c" - name: "1-(methylnitrosoamino)-4-(3-pyridinyl)-1,4-butanediol" - - compartment: c - - formula: C10H15N3O3 + - compartment: "c" + - formula: "C10H15N3O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00227c + - id: "m00227c" - name: "1,1-dichloroethylene epoxide" - - compartment: c - - formula: C2H2Cl2O + - compartment: "c" + - formula: "C2H2Cl2O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00228c + - id: "m00228c" - name: "1,1-dichloroethylene" - - compartment: c - - formula: C2H2Cl2 + - compartment: "c" + - formula: "C2H2Cl2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00228s + - id: "m00228s" - name: "1,1-dichloroethylene" - - compartment: s - - formula: C2H2Cl2 + - compartment: "s" + - formula: "C2H2Cl2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00229c + - id: "m00229c" - name: "1,2,3,4-tetrahydro-alpha,7-dihydroxy-beta-(hydroxymethyl)-9-methoxy-3,4-dioxocyclopenta[c][1]benzopyran-6-propanal" - - compartment: c - - formula: C17H15O8 + - compartment: "c" + - formula: "C17H15O8" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00230c + - id: "m00230c" - name: "1,2,3,4-tetrahydro-beta-carboline" - - compartment: c - - formula: C11H13N2 + - compartment: "c" + - formula: "C11H13N2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00231c + - id: "m00231c" - name: "1,2-dehydrosalsolinol" - - compartment: c - - formula: C10H11NO2 + - compartment: "c" + - formula: "C10H11NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00232c + - id: "m00232c" - name: "1,2-D-glucosyl-5-D-(galactosyloxy)-L-lysine-procollagen" - - compartment: c - - formula: C19H34N3O13R2 + - compartment: "c" + - formula: "C19H34N3O13R2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00233c + - id: "m00233c" - name: "1,2-diacylglycerol-bile-PC pool" - - compartment: c - - formula: C5H6O5R2 + - compartment: "c" + - formula: "C5H6O5R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00234s + - id: "m00234s" - name: "1,2-diacylglycerol-chylomicron pool" - - compartment: s - - formula: C5H6O5R2 + - compartment: "s" + - formula: "C5H6O5R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00235c + - id: "m00235c" - name: "1,2-diacylglycerol-LD-PC pool" - - compartment: c - - formula: C5H6O5R2 + - compartment: "c" + - formula: "C5H6O5R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00236c + - id: "m00236c" - name: "1,2-diacylglycerol-LD-PE pool" - - compartment: c - - formula: C5H6O5R2 + - compartment: "c" + - formula: "C5H6O5R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00236r + - id: "m00236r" - name: "1,2-diacylglycerol-LD-PE pool" - - compartment: r - - formula: C5H6O5R2 + - compartment: "r" + - formula: "C5H6O5R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00237c + - id: "m00237c" - name: "1,2-diacylglycerol-LD-PI pool" - - compartment: c - - formula: C5H6O5R2 + - compartment: "c" + - formula: "C5H6O5R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00238c + - id: "m00238c" - name: "1,2-diacylglycerol-LD-PS pool" - - compartment: c - - formula: C5H6O5R2 + - compartment: "c" + - formula: "C5H6O5R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00239c + - id: "m00239c" - name: "1,2-diacylglycerol-LD-SM pool" - - compartment: c - - formula: C5H6O5R2 + - compartment: "c" + - formula: "C5H6O5R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00240c + - id: "m00240c" - name: "1,2-diacylglycerol-LD-TAG pool" - - compartment: c - - formula: C5H6O5R2 + - compartment: "c" + - formula: "C5H6O5R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00240g + - id: "m00240g" - name: "1,2-diacylglycerol-LD-TAG pool" - - compartment: g - - formula: C5H6O5R2 + - compartment: "g" + - formula: "C5H6O5R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00240n + - id: "m00240n" - name: "1,2-diacylglycerol-LD-TAG pool" - - compartment: n - - formula: C5H6O5R2 + - compartment: "n" + - formula: "C5H6O5R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00241s + - id: "m00241s" - name: "1,2-diacylglycerol-VLDL pool" - - compartment: s - - formula: C5H6O5R2 + - compartment: "s" + - formula: "C5H6O5R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00242c + - id: "m00242c" - name: "1,2-dibromoethane" - - compartment: c - - formula: C2H4Br2 + - compartment: "c" + - formula: "C2H4Br2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00242s + - id: "m00242s" - name: "1,2-dibromoethane" - - compartment: s - - formula: C2H4Br2 + - compartment: "s" + - formula: "C2H4Br2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00243c + - id: "m00243c" - name: "1,2-dihydronaphthalene-1,2-diol" - - compartment: c - - formula: C10H10O2 + - compartment: "c" + - formula: "C10H10O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00244c + - id: "m00244c" - name: "1,2-dihydroxy-3,4-epoxy-1,2,3,4-tetrahydronaphthalene" - - compartment: c - - formula: C10H10O3 + - compartment: "c" + - formula: "C10H10O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00245c + - id: "m00245c" - name: "1,2-dihydroxy-5-(methylthio)pent-1-en-3-one" - - compartment: c - - formula: C6H10O3S + - compartment: "c" + - formula: "C6H10O3S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00246c + - id: "m00246c" - name: "1,2-naphthoquinone" - - compartment: c - - formula: C10H6O2 + - compartment: "c" + - formula: "C10H6O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00247c + - id: "m00247c" - name: "1,3-bisphospho-D-glycerate" - - compartment: c - - formula: C3H4O10P2 + - compartment: "c" + - formula: "C3H4O10P2" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00248c + - id: "m00248c" - name: "1,3-diaminopropane" - - compartment: c - - formula: C3H12N2 + - compartment: "c" + - formula: "C3H12N2" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00249c + - id: "m00249c" - name: "1,4-benzothiazine-O-quinonimine" - - compartment: c - - formula: C12H11N2O5S + - compartment: "c" + - formula: "C12H11N2O5S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00250c + - id: "m00250c" - name: "1,4-dihydroxynaphthalene" - - compartment: c - - formula: C10H8O2 + - compartment: "c" + - formula: "C10H8O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00251c + - id: "m00251c" - name: "1,4-naphthoquinone" - - compartment: c - - formula: C10H6O2 + - compartment: "c" + - formula: "C10H6O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00252c + - id: "m00252c" - name: "10,11-dihydro-12-epi-LTB4" - - compartment: c - - formula: C20H33O4 + - compartment: "c" + - formula: "C20H33O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00252m + - id: "m00252m" - name: "10,11-dihydro-12-epi-LTB4" - - compartment: m - - formula: C20H33O4 + - compartment: "m" + - formula: "C20H33O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00252p + - id: "m00252p" - name: "10,11-dihydro-12-epi-LTB4" - - compartment: p - - formula: C20H33O4 + - compartment: "p" + - formula: "C20H33O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00253c + - id: "m00253c" - name: "10,11-dihydro-12-oxo-LTB4" - - compartment: c - - formula: C20H31O4 + - compartment: "c" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00253m + - id: "m00253m" - name: "10,11-dihydro-12-oxo-LTB4" - - compartment: m - - formula: C20H31O4 + - compartment: "m" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00253p + - id: "m00253p" - name: "10,11-dihydro-12-oxo-LTB4" - - compartment: p - - formula: C20H31O4 + - compartment: "p" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00254c + - id: "m00254c" - name: "10,11-dihydro-12R-hydroxy-LTC4" - - compartment: c - - formula: C30H47N3O10S + - compartment: "c" + - formula: "C30H47N3O10S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00254m + - id: "m00254m" - name: "10,11-dihydro-12R-hydroxy-LTC4" - - compartment: m - - formula: C30H47N3O10S + - compartment: "m" + - formula: "C30H47N3O10S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00254p + - id: "m00254p" - name: "10,11-dihydro-12R-hydroxy-LTC4" - - compartment: p - - formula: C30H47N3O10S + - compartment: "p" + - formula: "C30H47N3O10S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00255c + - id: "m00255c" - name: "10,11-dihydro-20-dihydroxy-LTB4" - - compartment: c - - formula: C20H33O6 + - compartment: "c" + - formula: "C20H33O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00255r + - id: "m00255r" - name: "10,11-dihydro-20-dihydroxy-LTB4" - - compartment: r - - formula: C20H33O6 + - compartment: "r" + - formula: "C20H33O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00256c + - id: "m00256c" - name: "10,11-dihydro-20-trihydroxy-LTB4" - - compartment: c - - formula: C20H33O7 + - compartment: "c" + - formula: "C20H33O7" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00256r + - id: "m00256r" - name: "10,11-dihydro-20-trihydroxy-LTB4" - - compartment: r - - formula: C20H33O7 + - compartment: "r" + - formula: "C20H33O7" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00257c + - id: "m00257c" - name: "10,11-dihydro-LTB4" - - compartment: c - - formula: C20H33O4 + - compartment: "c" + - formula: "C20H33O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00257m + - id: "m00257m" - name: "10,11-dihydro-LTB4" - - compartment: m - - formula: C20H33O4 + - compartment: "m" + - formula: "C20H33O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00257p + - id: "m00257p" - name: "10,11-dihydro-LTB4" - - compartment: p - - formula: C20H33O4 + - compartment: "p" + - formula: "C20H33O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00257r + - id: "m00257r" - name: "10,11-dihydro-LTB4" - - compartment: r - - formula: C20H33O4 + - compartment: "r" + - formula: "C20H33O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00258c + - id: "m00258c" - name: "10,11-dihydro-LTB4-CoA" - - compartment: c - - formula: C41H64N7O19P3S + - compartment: "c" + - formula: "C41H64N7O19P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00258m + - id: "m00258m" - name: "10,11-dihydro-LTB4-CoA" - - compartment: m - - formula: C41H64N7O19P3S + - compartment: "m" + - formula: "C41H64N7O19P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00258p + - id: "m00258p" - name: "10,11-dihydro-LTB4-CoA" - - compartment: p - - formula: C41H64N7O19P3S + - compartment: "p" + - formula: "C41H64N7O19P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00258r + - id: "m00258r" - name: "10,11-dihydro-LTB4-CoA" - - compartment: r - - formula: C41H64N7O19P3S + - compartment: "r" + - formula: "C41H64N7O19P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00259c + - id: "m00259c" - name: "10,11-epoxy-(4Z,7Z)-hexadecadienoic acid" - - compartment: c - - formula: C16H25O3 + - compartment: "c" + - formula: "C16H25O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00260c + - id: "m00260c" - name: "10,13,16,19-docosatetraenoic acid" - - compartment: c - - formula: C22H35O2 + - compartment: "c" + - formula: "C22H35O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00260l + - id: "m00260l" - name: "10,13,16,19-docosatetraenoic acid" - - compartment: l - - formula: C22H35O2 + - compartment: "l" + - formula: "C22H35O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00260r + - id: "m00260r" - name: "10,13,16,19-docosatetraenoic acid" - - compartment: r - - formula: C22H35O2 + - compartment: "r" + - formula: "C22H35O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00260s + - id: "m00260s" - name: "10,13,16,19-docosatetraenoic acid" - - compartment: s - - formula: C22H35O2 + - compartment: "s" + - formula: "C22H35O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00261c + - id: "m00261c" - name: "10,13,16,19-docosatetraenoylcarnitine" - - compartment: c - - formula: C29H49NO4 + - compartment: "c" + - formula: "C29H49NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00261m + - id: "m00261m" - name: "10,13,16,19-docosatetraenoylcarnitine" - - compartment: m - - formula: C29H49NO4 + - compartment: "m" + - formula: "C29H49NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00261r + - id: "m00261r" - name: "10,13,16,19-docosatetraenoylcarnitine" - - compartment: r - - formula: C29H49NO4 + - compartment: "r" + - formula: "C29H49NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00262c + - id: "m00262c" - name: "10,13,16,19-docosatetraenoyl-CoA" - - compartment: c - - formula: C43H66N7O17P3S + - compartment: "c" + - formula: "C43H66N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00262m + - id: "m00262m" - name: "10,13,16,19-docosatetraenoyl-CoA" - - compartment: m - - formula: C43H66N7O17P3S + - compartment: "m" + - formula: "C43H66N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00262r + - id: "m00262r" - name: "10,13,16,19-docosatetraenoyl-CoA" - - compartment: r - - formula: C43H66N7O17P3S + - compartment: "r" + - formula: "C43H66N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00263c + - id: "m00263c" - name: "10,13,16-docosatrienoylcarnitine" - - compartment: c - - formula: C29H51NO4 + - compartment: "c" + - formula: "C29H51NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00263m + - id: "m00263m" - name: "10,13,16-docosatrienoylcarnitine" - - compartment: m - - formula: C29H51NO4 + - compartment: "m" + - formula: "C29H51NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00263r + - id: "m00263r" - name: "10,13,16-docosatrienoylcarnitine" - - compartment: r - - formula: C29H51NO4 + - compartment: "r" + - formula: "C29H51NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00264c + - id: "m00264c" - name: "10,13,16-docosatrienoyl-CoA" - - compartment: c - - formula: C43H68N7O17P3S + - compartment: "c" + - formula: "C43H68N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00264m + - id: "m00264m" - name: "10,13,16-docosatrienoyl-CoA" - - compartment: m - - formula: C43H68N7O17P3S + - compartment: "m" + - formula: "C43H68N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00264r + - id: "m00264r" - name: "10,13,16-docosatrienoyl-CoA" - - compartment: r - - formula: C43H68N7O17P3S + - compartment: "r" + - formula: "C43H68N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00265c + - id: "m00265c" - name: "10,13,16-docosatriynoic acid" - - compartment: c - - formula: C22H37O2 + - compartment: "c" + - formula: "C22H37O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00265l + - id: "m00265l" - name: "10,13,16-docosatriynoic acid" - - compartment: l - - formula: C22H37O2 + - compartment: "l" + - formula: "C22H37O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00265r + - id: "m00265r" - name: "10,13,16-docosatriynoic acid" - - compartment: r - - formula: C22H37O2 + - compartment: "r" + - formula: "C22H37O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00265s + - id: "m00265s" - name: "10,13,16-docosatriynoic acid" - - compartment: s - - formula: C22H37O2 + - compartment: "s" + - formula: "C22H37O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00266c + - id: "m00266c" - name: "10-formyl-THF" - - compartment: c - - formula: C20H21N7O7 + - compartment: "c" + - formula: "C20H21N7O7" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00266l + - id: "m00266l" - name: "10-formyl-THF" - - compartment: l - - formula: C20H21N7O7 + - compartment: "l" + - formula: "C20H21N7O7" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00266m + - id: "m00266m" - name: "10-formyl-THF" - - compartment: m - - formula: C20H21N7O7 + - compartment: "m" + - formula: "C20H21N7O7" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00266s + - id: "m00266s" - name: "10-formyl-THF" - - compartment: s - - formula: C20H21N7O7 + - compartment: "s" + - formula: "C20H21N7O7" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00267c + - id: "m00267c" - name: "10-formyl-THF-glu(5)" - - compartment: c - - formula: C40H45N11O19 + - compartment: "c" + - formula: "C40H45N11O19" - charge: -6 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00267l + - id: "m00267l" - name: "10-formyl-THF-glu(5)" - - compartment: l - - formula: C40H45N11O19 + - compartment: "l" + - formula: "C40H45N11O19" - charge: -6 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00267m + - id: "m00267m" - name: "10-formyl-THF-glu(5)" - - compartment: m - - formula: C40H45N11O19 + - compartment: "m" + - formula: "C40H45N11O19" - charge: -6 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00267s + - id: "m00267s" - name: "10-formyl-THF-glu(5)" - - compartment: s - - formula: C40H45N11O19 + - compartment: "s" + - formula: "C40H45N11O19" - charge: -6 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00268c + - id: "m00268c" - name: "10-formyl-THF-glu(6)" - - compartment: c - - formula: C45H51N12O22 + - compartment: "c" + - formula: "C45H51N12O22" - charge: -7 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00268l + - id: "m00268l" - name: "10-formyl-THF-glu(6)" - - compartment: l - - formula: C45H51N12O22 + - compartment: "l" + - formula: "C45H51N12O22" - charge: -7 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00268m + - id: "m00268m" - name: "10-formyl-THF-glu(6)" - - compartment: m - - formula: C45H51N12O22 + - compartment: "m" + - formula: "C45H51N12O22" - charge: -7 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00268s + - id: "m00268s" - name: "10-formyl-THF-glu(6)" - - compartment: s - - formula: C45H51N12O22 + - compartment: "s" + - formula: "C45H51N12O22" - charge: -7 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00269c + - id: "m00269c" - name: "10-formyl-THF-glu(7)" - - compartment: c - - formula: C50H57N13O25 + - compartment: "c" + - formula: "C50H57N13O25" - charge: -8 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00269l + - id: "m00269l" - name: "10-formyl-THF-glu(7)" - - compartment: l - - formula: C50H57N13O25 + - compartment: "l" + - formula: "C50H57N13O25" - charge: -8 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00269m + - id: "m00269m" - name: "10-formyl-THF-glu(7)" - - compartment: m - - formula: C50H57N13O25 + - compartment: "m" + - formula: "C50H57N13O25" - charge: -8 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00269s + - id: "m00269s" - name: "10-formyl-THF-glu(7)" - - compartment: s - - formula: C50H57N13O25 + - compartment: "s" + - formula: "C50H57N13O25" - charge: -8 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00270c + - id: "m00270c" - name: "10-HETE" - - compartment: c - - formula: C20H31O3 + - compartment: "c" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00270r + - id: "m00270r" - name: "10-HETE" - - compartment: r - - formula: C20H31O3 + - compartment: "r" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00271c + - id: "m00271c" - name: "10-hydroperoxy-H4-neuroprostane" - - compartment: c - - formula: C22H31O6 + - compartment: "c" + - formula: "C22H31O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00272c + - id: "m00272c" - name: "10-hydroxy-D4-neuroprostane" - - compartment: c - - formula: C22H31O5 + - compartment: "c" + - formula: "C22H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00273c + - id: "m00273c" - name: "10-hydroxy-E4-neuroprostane" - - compartment: c - - formula: C22H31O5 + - compartment: "c" + - formula: "C22H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00274c + - id: "m00274c" - name: "10-hydroxy-octadec-(12Z)-enoate-9-beta-D-glucuronide" - - compartment: c - - formula: C24H40O10 + - compartment: "c" + - formula: "C24H40O10" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00274r + - id: "m00274r" - name: "10-hydroxy-octadec-(12Z)-enoate-9-beta-D-glucuronide" - - compartment: r - - formula: C24H40O10 + - compartment: "r" + - formula: "C24H40O10" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00275c + - id: "m00275c" - name: "10-peroxy-docosahexaenoate" - - compartment: c - - formula: C22H30O4 + - compartment: "c" + - formula: "C22H30O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00276c + - id: "m00276c" - name: "11,12,15-THETA" - - compartment: c - - formula: C20H33O5 + - compartment: "c" + - formula: "C20H33O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00277c + - id: "m00277c" - name: "11,12-DHET" - - compartment: c - - formula: C20H33O4 + - compartment: "c" + - formula: "C20H33O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00278c + - id: "m00278c" - name: "11,12-dihydroxy-(5E,7E,9E,14Z)-eicosatetraenoate" - - compartment: c - - formula: C20H31O4 + - compartment: "c" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00279c + - id: "m00279c" - name: "11,12-EET" - - compartment: c - - formula: C20H31O3 + - compartment: "c" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00280c + - id: "m00280c" - name: "11,14,15-THETA" - - compartment: c - - formula: C20H33O5 + - compartment: "c" + - formula: "C20H33O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00281c + - id: "m00281c" - name: "11,15-cyclo-12,14-cycloperoxy-8-hydroperoxy-(5Z,9E)-eicosadienoate" - - compartment: c - - formula: C20H31O6 + - compartment: "c" + - formula: "C20H31O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00282c + - id: "m00282c" - name: "11,15-cyclo-8,12,14-trihydroxy-(5Z,9E)-eicosadienoic acid" - - compartment: c - - formula: C20H33O5 + - compartment: "c" + - formula: "C20H33O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00283c + - id: "m00283c" - name: "11beta,17alpha,21-trihydroxypregnenolone" - - compartment: c - - formula: C21H32O5 + - compartment: "c" + - formula: "C21H32O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00284c + - id: "m00284c" - name: "11beta-hydroxyandrost-4-ene-3,17-dione" - - compartment: c - - formula: C19H26O3 + - compartment: "c" + - formula: "C19H26O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00284m + - id: "m00284m" - name: "11beta-hydroxyandrost-4-ene-3,17-dione" - - compartment: m - - formula: C19H26O3 + - compartment: "m" + - formula: "C19H26O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00284r + - id: "m00284r" - name: "11beta-hydroxyandrost-4-ene-3,17-dione" - - compartment: r - - formula: C19H26O3 + - compartment: "r" + - formula: "C19H26O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00285c + - id: "m00285c" - name: "11beta-hydroxyprogesterone" - - compartment: c - - formula: C21H30O3 + - compartment: "c" + - formula: "C21H30O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00286m + - id: "m00286m" - name: "11-carboxy-alpha-chromanol" - - compartment: m - - formula: C26H41O4 + - compartment: "m" + - formula: "C26H41O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00287m + - id: "m00287m" - name: "11-carboxy-alpha-tocotrienol" - - compartment: m - - formula: C26H37O4 + - compartment: "m" + - formula: "C26H37O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00288m + - id: "m00288m" - name: "11-carboxy-gamma-chromanol" - - compartment: m - - formula: C25H39O4 + - compartment: "m" + - formula: "C25H39O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00289m + - id: "m00289m" - name: "11-carboxy-gamma-tocotrienol" - - compartment: m - - formula: C25H35O4 + - compartment: "m" + - formula: "C25H35O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00290c + - id: "m00290c" - name: "11-cis-retinal" - - compartment: c - - formula: C20H28O + - compartment: "c" + - formula: "C20H28O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00291c + - id: "m00291c" - name: "11-cis-retinol" - - compartment: c - - formula: C20H30O + - compartment: "c" + - formula: "C20H30O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00292c + - id: "m00292c" - name: "11-cis-retinyl-palmitate" - - compartment: c - - formula: C36H60O2 + - compartment: "c" + - formula: "C36H60O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00293c + - id: "m00293c" - name: "11-dehydro-thromboxane B2" - - compartment: c - - formula: C20H31O6 + - compartment: "c" + - formula: "C20H31O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00294c + - id: "m00294c" - name: "11-deoxycorticosterone" - - compartment: c - - formula: C21H30O3 + - compartment: "c" + - formula: "C21H30O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00294m + - id: "m00294m" - name: "11-deoxycorticosterone" - - compartment: m - - formula: C21H30O3 + - compartment: "m" + - formula: "C21H30O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00294r + - id: "m00294r" - name: "11-deoxycorticosterone" - - compartment: r - - formula: C21H30O3 + - compartment: "r" + - formula: "C21H30O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00295c + - id: "m00295c" - name: "11-deoxycortisol" - - compartment: c - - formula: C21H30O4 + - compartment: "c" + - formula: "C21H30O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00295m + - id: "m00295m" - name: "11-deoxycortisol" - - compartment: m - - formula: C21H30O4 + - compartment: "m" + - formula: "C21H30O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00295r + - id: "m00295r" - name: "11-deoxycortisol" - - compartment: r - - formula: C21H30O4 + - compartment: "r" + - formula: "C21H30O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00296c + - id: "m00296c" - name: "11h-14,15-EETA" - - compartment: c - - formula: C20H31O4 + - compartment: "c" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00297c + - id: "m00297c" - name: "11-HETE" - - compartment: c - - formula: C20H31O3 + - compartment: "c" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00298c + - id: "m00298c" - name: "11-HpODE" - - compartment: c - - formula: C18H31O4 + - compartment: "c" + - formula: "C18H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00299c + - id: "m00299c" - name: "11-hydroperoxy-H4-neuroprostane" - - compartment: c - - formula: C22H31O6 + - compartment: "c" + - formula: "C22H31O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00300c + - id: "m00300c" - name: "11-hydroxy-D4-neuroprostane" - - compartment: c - - formula: C22H31O5 + - compartment: "c" + - formula: "C22H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00301c + - id: "m00301c" - name: "11-hydroxy-E4-neuroprostane" - - compartment: c - - formula: C22H31O5 + - compartment: "c" + - formula: "C22H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00302c + - id: "m00302c" - name: "11-peroxy-(5Z,8Z,12E,14Z)-eicosatetraenoate" - - compartment: c - - formula: C20H30O4 + - compartment: "c" + - formula: "C20H30O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00303c + - id: "m00303c" - name: "11-peroxy-docosahexaenoate" - - compartment: c - - formula: C22H30O4 + - compartment: "c" + - formula: "C22H30O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00304c + - id: "m00304c" - name: "11-trans-LTE4" - - compartment: c - - formula: C23H37NO5S + - compartment: "c" + - formula: "C23H37NO5S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00305c + - id: "m00305c" - name: "12(13)-EpOME" - - compartment: c - - formula: C18H31O3 + - compartment: "c" + - formula: "C18H31O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00305r + - id: "m00305r" - name: "12(13)-EpOME" - - compartment: r - - formula: C18H31O3 + - compartment: "r" + - formula: "C18H31O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00306c + - id: "m00306c" - name: "12(R)-HPETE" - - compartment: c - - formula: C20H31O4 + - compartment: "c" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00307c + - id: "m00307c" - name: "12(S)-HETE" - - compartment: c - - formula: C20H31O3 + - compartment: "c" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00307r + - id: "m00307r" - name: "12(S)-HETE" - - compartment: r - - formula: C20H31O3 + - compartment: "r" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00308c + - id: "m00308c" - name: "12(S)-HHT" - - compartment: c - - formula: C17H27O3 + - compartment: "c" + - formula: "C17H27O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00309c + - id: "m00309c" - name: "12(S)-HPETE" - - compartment: c - - formula: C20H31O4 + - compartment: "c" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00309p + - id: "m00309p" - name: "12(S)-HPETE" - - compartment: p - - formula: C20H31O4 + - compartment: "p" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00309r + - id: "m00309r" - name: "12(S)-HPETE" - - compartment: r - - formula: C20H31O4 + - compartment: "r" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00309s + - id: "m00309s" - name: "12(S)-HPETE" - - compartment: s - - formula: C20H31O4 + - compartment: "s" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00310c + - id: "m00310c" - name: "12,13-epoxy-(6Z,9Z)-octadecadienoic acid" - - compartment: c - - formula: C18H29O3 + - compartment: "c" + - formula: "C18H29O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00311c + - id: "m00311c" - name: "12,13-epoxy-9-alkoxy-(10E)-octadecenoate" - - compartment: c - - formula: C18H30O4 + - compartment: "c" + - formula: "C18H30O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00312c + - id: "m00312c" - name: "12,13-epoxy-9-hydroperoxy-(10E)-octadecenoate" - - compartment: c - - formula: C18H31O5 + - compartment: "c" + - formula: "C18H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00313c + - id: "m00313c" - name: "12,13-epoxylinoleic acid-radical" - - compartment: c - - formula: C18H30O3 + - compartment: "c" + - formula: "C18H30O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00314c + - id: "m00314c" - name: "12,13-hydroxyoctadec-9(z)-enoate" - - compartment: c - - formula: C18H33O4 + - compartment: "c" + - formula: "C18H33O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00314r + - id: "m00314r" - name: "12,13-hydroxyoctadec-9(z)-enoate" - - compartment: r - - formula: C18H33O4 + - compartment: "r" + - formula: "C18H33O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00315c + - id: "m00315c" - name: "12,15,18,21-tetracosatetraenoic acid" - - compartment: c - - formula: C24H39O2 + - compartment: "c" + - formula: "C24H39O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00315l + - id: "m00315l" - name: "12,15,18,21-tetracosatetraenoic acid" - - compartment: l - - formula: C24H39O2 + - compartment: "l" + - formula: "C24H39O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00315r + - id: "m00315r" - name: "12,15,18,21-tetracosatetraenoic acid" - - compartment: r - - formula: C24H39O2 + - compartment: "r" + - formula: "C24H39O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00315s + - id: "m00315s" - name: "12,15,18,21-tetracosatetraenoic acid" - - compartment: s - - formula: C24H39O2 + - compartment: "s" + - formula: "C24H39O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00316c + - id: "m00316c" - name: "12,15,18,21-tetracosatetraenoylcarnitine" - - compartment: c - - formula: C31H53NO4 + - compartment: "c" + - formula: "C31H53NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00316r + - id: "m00316r" - name: "12,15,18,21-tetracosatetraenoylcarnitine" - - compartment: r - - formula: C31H53NO4 + - compartment: "r" + - formula: "C31H53NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00317c + - id: "m00317c" - name: "12,15,18,21-tetracosatetraenoyl-CoA" - - compartment: c - - formula: C45H70N7O17P3S + - compartment: "c" + - formula: "C45H70N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00317p + - id: "m00317p" - name: "12,15,18,21-tetracosatetraenoyl-CoA" - - compartment: p - - formula: C45H70N7O17P3S + - compartment: "p" + - formula: "C45H70N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00317r + - id: "m00317r" - name: "12,15,18,21-tetracosatetraenoyl-CoA" - - compartment: r - - formula: C45H70N7O17P3S + - compartment: "r" + - formula: "C45H70N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00318c + - id: "m00318c" - name: "12,20-diHETE" - - compartment: c - - formula: C20H31O4 + - compartment: "c" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00318r + - id: "m00318r" - name: "12,20-diHETE" - - compartment: r - - formula: C20H31O4 + - compartment: "r" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00319c + - id: "m00319c" - name: "12,20-dioxo-LTB4" - - compartment: c - - formula: C20H27O5 + - compartment: "c" + - formula: "C20H27O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00320c + - id: "m00320c" - name: "12-epi-LTB4" - - compartment: c - - formula: C20H31O4 + - compartment: "c" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00321c + - id: "m00321c" - name: "12-hetre" - - compartment: c - - formula: C20H33O3 + - compartment: "c" + - formula: "C20H33O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00322c + - id: "m00322c" - name: "12-hydroperoxyeicosatetraenoate-glyceryl-ester" - - compartment: c - - formula: C23H38O6 + - compartment: "c" + - formula: "C23H38O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00323c + - id: "m00323c" - name: "12-hydroxy-13-O-D-glucuronoside-octadec-(9Z)-enoate" - - compartment: c - - formula: C24H40O10 + - compartment: "c" + - formula: "C24H40O10" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00323r + - id: "m00323r" - name: "12-hydroxy-13-O-D-glucuronoside-octadec-(9Z)-enoate" - - compartment: r - - formula: C24H40O10 + - compartment: "r" + - formula: "C24H40O10" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00324r + - id: "m00324r" - name: "12-hydroxy-arachidonate" - - compartment: r - - formula: C20H31O3 + - compartment: "r" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00325c + - id: "m00325c" - name: "12-hydroxydodecanoic acid" - - compartment: c - - formula: C12H23O3 + - compartment: "c" + - formula: "C12H23O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00325s + - id: "m00325s" - name: "12-hydroxydodecanoic acid" - - compartment: s - - formula: C12H23O3 + - compartment: "s" + - formula: "C12H23O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00326c + - id: "m00326c" - name: "12-keto-LTB4" - - compartment: c - - formula: C20H29O4 + - compartment: "c" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00326m + - id: "m00326m" - name: "12-keto-LTB4" - - compartment: m - - formula: C20H29O4 + - compartment: "m" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00326p + - id: "m00326p" - name: "12-keto-LTB4" - - compartment: p - - formula: C20H29O4 + - compartment: "p" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00326r + - id: "m00326r" - name: "12-keto-LTB4" - - compartment: r - - formula: C20H29O4 + - compartment: "r" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00327c + - id: "m00327c" - name: "12-O-D-glucuronoside-13-hydroxyoctadec-(9Z)-enoate" - - compartment: c - - formula: C24H40O10 + - compartment: "c" + - formula: "C24H40O10" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00327r + - id: "m00327r" - name: "12-O-D-glucuronoside-13-hydroxyoctadec-(9Z)-enoate" - - compartment: r - - formula: C24H40O10 + - compartment: "r" + - formula: "C24H40O10" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00328c + - id: "m00328c" - name: "12-oxo-10,11-dihydro-20-COOH-LTB4" - - compartment: c - - formula: C20H28O6 + - compartment: "c" + - formula: "C20H28O6" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00328r + - id: "m00328r" - name: "12-oxo-10,11-dihydro-20-COOH-LTB4" - - compartment: r - - formula: C20H28O6 + - compartment: "r" + - formula: "C20H28O6" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00329c + - id: "m00329c" - name: "12-oxo-20-carboxy-LTB4" - - compartment: c - - formula: C20H26O6 + - compartment: "c" + - formula: "C20H26O6" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00329r + - id: "m00329r" - name: "12-oxo-20-carboxy-LTB4" - - compartment: r - - formula: C20H26O6 + - compartment: "r" + - formula: "C20H26O6" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00330c + - id: "m00330c" - name: "12-oxo-20-dihydroxy-LTB4" - - compartment: c - - formula: C20H29O6 + - compartment: "c" + - formula: "C20H29O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00330r + - id: "m00330r" - name: "12-oxo-20-dihydroxy-LTB4" - - compartment: r - - formula: C20H29O6 + - compartment: "r" + - formula: "C20H29O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00331c + - id: "m00331c" - name: "12-oxo-20-hydroxy-LTB4" - - compartment: c - - formula: C20H29O5 + - compartment: "c" + - formula: "C20H29O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00331r + - id: "m00331r" - name: "12-oxo-20-hydroxy-LTB4" - - compartment: r - - formula: C20H29O5 + - compartment: "r" + - formula: "C20H29O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00332c + - id: "m00332c" - name: "12-oxo-20-trihydroxy-LTB4" - - compartment: c - - formula: C20H29O7 + - compartment: "c" + - formula: "C20H29O7" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00332r + - id: "m00332r" - name: "12-oxo-20-trihydroxy-LTB4" - - compartment: r - - formula: C20H29O7 + - compartment: "r" + - formula: "C20H29O7" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00333c + - id: "m00333c" - name: "12-oxo-c-LTB3" - - compartment: c - - formula: C30H45N3O10S + - compartment: "c" + - formula: "C30H45N3O10S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00333m + - id: "m00333m" - name: "12-oxo-c-LTB3" - - compartment: m - - formula: C30H45N3O10S + - compartment: "m" + - formula: "C30H45N3O10S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00333p + - id: "m00333p" - name: "12-oxo-c-LTB3" - - compartment: p - - formula: C30H45N3O10S + - compartment: "p" + - formula: "C30H45N3O10S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00333r + - id: "m00333r" - name: "12-oxo-c-LTB3" - - compartment: r - - formula: C30H45N3O10S + - compartment: "r" + - formula: "C30H45N3O10S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00334c + - id: "m00334c" - name: "12-oxoETE" - - compartment: c - - formula: C20H29O3 + - compartment: "c" + - formula: "C20H29O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00335c + - id: "m00335c" - name: "12-peroxy-(5Z,8Z,10E,14Z)-eicosatetraenoate" - - compartment: c - - formula: C20H30O4 + - compartment: "c" + - formula: "C20H30O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00336c + - id: "m00336c" - name: "13(S)-HODE" - - compartment: c - - formula: C18H31O3 + - compartment: "c" + - formula: "C18H31O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00337c + - id: "m00337c" - name: "13(S)-HPODE" - - compartment: c - - formula: C18H31O4 + - compartment: "c" + - formula: "C18H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00338c + - id: "m00338c" - name: "13,14-dihydro-15-keto-PGD2" - - compartment: c - - formula: C20H31O5 + - compartment: "c" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00339c + - id: "m00339c" - name: "13,14-dihydro-15-oxo-lipoxin A4" - - compartment: c - - formula: C20H31O5 + - compartment: "c" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00340c + - id: "m00340c" - name: "13,14-dihydro-lipoxin A4" - - compartment: c - - formula: C20H33O5 + - compartment: "c" + - formula: "C20H33O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00341c + - id: "m00341c" - name: "13,16,19-docosatrienoic acid" - - compartment: c - - formula: C22H37O2 + - compartment: "c" + - formula: "C22H37O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00341l + - id: "m00341l" - name: "13,16,19-docosatrienoic acid" - - compartment: l - - formula: C22H37O2 + - compartment: "l" + - formula: "C22H37O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00341r + - id: "m00341r" - name: "13,16,19-docosatrienoic acid" - - compartment: r - - formula: C22H37O2 + - compartment: "r" + - formula: "C22H37O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00341s + - id: "m00341s" - name: "13,16,19-docosatrienoic acid" - - compartment: s - - formula: C22H37O2 + - compartment: "s" + - formula: "C22H37O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00342c + - id: "m00342c" - name: "13,16,19-docosatrienoylcarnitine" - - compartment: c - - formula: C29H51NO4 + - compartment: "c" + - formula: "C29H51NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00342m + - id: "m00342m" - name: "13,16,19-docosatrienoylcarnitine" - - compartment: m - - formula: C29H51NO4 + - compartment: "m" + - formula: "C29H51NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00342r + - id: "m00342r" - name: "13,16,19-docosatrienoylcarnitine" - - compartment: r - - formula: C29H51NO4 + - compartment: "r" + - formula: "C29H51NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00343c + - id: "m00343c" - name: "13,16,19-docosatrienoyl-CoA" - - compartment: c - - formula: C43H68N7O17P3S + - compartment: "c" + - formula: "C43H68N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00343m + - id: "m00343m" - name: "13,16,19-docosatrienoyl-CoA" - - compartment: m - - formula: C43H68N7O17P3S + - compartment: "m" + - formula: "C43H68N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00343r + - id: "m00343r" - name: "13,16,19-docosatrienoyl-CoA" - - compartment: r - - formula: C43H68N7O17P3S + - compartment: "r" + - formula: "C43H68N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00344c + - id: "m00344c" - name: "13-carboxy-alpha-tocopherol" - - compartment: c - - formula: C29H47O4 + - compartment: "c" + - formula: "C29H47O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00344m + - id: "m00344m" - name: "13-carboxy-alpha-tocopherol" - - compartment: m - - formula: C29H47O4 + - compartment: "m" + - formula: "C29H47O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00344r + - id: "m00344r" - name: "13-carboxy-alpha-tocopherol" - - compartment: r - - formula: C29H47O4 + - compartment: "r" + - formula: "C29H47O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00345c + - id: "m00345c" - name: "13-carboxy-alpha-tocotrienol" - - compartment: c - - formula: C29H41O4 + - compartment: "c" + - formula: "C29H41O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00345m + - id: "m00345m" - name: "13-carboxy-alpha-tocotrienol" - - compartment: m - - formula: C29H41O4 + - compartment: "m" + - formula: "C29H41O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00345r + - id: "m00345r" - name: "13-carboxy-alpha-tocotrienol" - - compartment: r - - formula: C29H41O4 + - compartment: "r" + - formula: "C29H41O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00346c + - id: "m00346c" - name: "13-carboxy-gamma-tocopherol" - - compartment: c - - formula: C28H45O4 + - compartment: "c" + - formula: "C28H45O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00346m + - id: "m00346m" - name: "13-carboxy-gamma-tocopherol" - - compartment: m - - formula: C28H45O4 + - compartment: "m" + - formula: "C28H45O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00346r + - id: "m00346r" - name: "13-carboxy-gamma-tocopherol" - - compartment: r - - formula: C28H45O4 + - compartment: "r" + - formula: "C28H45O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00347c + - id: "m00347c" - name: "13-carboxy-gamma-tocotrienol" - - compartment: c - - formula: C28H39O4 + - compartment: "c" + - formula: "C28H39O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00347m + - id: "m00347m" - name: "13-carboxy-gamma-tocotrienol" - - compartment: m - - formula: C28H39O4 + - compartment: "m" + - formula: "C28H39O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00347r + - id: "m00347r" - name: "13-carboxy-gamma-tocotrienol" - - compartment: r - - formula: C28H39O4 + - compartment: "r" + - formula: "C28H39O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00348c + - id: "m00348c" - name: "13-cis-oxo-retinoate" - - compartment: c - - formula: C20H27O3 + - compartment: "c" + - formula: "C20H27O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00349c + - id: "m00349c" - name: "13-cis-retinal" - - compartment: c - - formula: C20H28O + - compartment: "c" + - formula: "C20H28O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00349r + - id: "m00349r" - name: "13-cis-retinal" - - compartment: r - - formula: C20H28O + - compartment: "r" + - formula: "C20H28O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00350c + - id: "m00350c" - name: "13-cis-retinoate" - - compartment: c - - formula: C20H27O2 + - compartment: "c" + - formula: "C20H27O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00350r + - id: "m00350r" - name: "13-cis-retinoate" - - compartment: r - - formula: C20H27O2 + - compartment: "r" + - formula: "C20H27O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00351c + - id: "m00351c" - name: "13-cis-retinol" - - compartment: c - - formula: C20H30O + - compartment: "c" + - formula: "C20H30O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00352r + - id: "m00352r" - name: "13-cis-retinoyl-beta-D-glucuronide" - - compartment: r - - formula: C26H35O8 + - compartment: "r" + - formula: "C26H35O8" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00353c + - id: "m00353c" - name: "13-cis-retinoyl-glucuronide" - - compartment: c - - formula: C26H35O8 + - compartment: "c" + - formula: "C26H35O8" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00353r + - id: "m00353r" - name: "13-cis-retinoyl-glucuronide" - - compartment: r - - formula: C26H35O8 + - compartment: "r" + - formula: "C26H35O8" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00353s + - id: "m00353s" - name: "13-cis-retinoyl-glucuronide" - - compartment: s - - formula: C26H35O8 + - compartment: "s" + - formula: "C26H35O8" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00354c + - id: "m00354c" - name: "13-HETE" - - compartment: c - - formula: C20H31O3 + - compartment: "c" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00355c + - id: "m00355c" - name: "13-hydroperoxy-H4-neuroprostane" - - compartment: c - - formula: C22H31O6 + - compartment: "c" + - formula: "C22H31O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00356c + - id: "m00356c" - name: "13-hydroxy-alpha-tocopherol" - - compartment: c - - formula: C29H50O3 + - compartment: "c" + - formula: "C29H50O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00356r + - id: "m00356r" - name: "13-hydroxy-alpha-tocopherol" - - compartment: r - - formula: C29H50O3 + - compartment: "r" + - formula: "C29H50O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00357c + - id: "m00357c" - name: "13-hydroxy-alpha-tocotrienol" - - compartment: c - - formula: C29H44O3 + - compartment: "c" + - formula: "C29H44O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00357r + - id: "m00357r" - name: "13-hydroxy-alpha-tocotrienol" - - compartment: r - - formula: C29H44O3 + - compartment: "r" + - formula: "C29H44O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00358c + - id: "m00358c" - name: "13-hydroxy-D4-neuroprostane" - - compartment: c - - formula: C22H31O5 + - compartment: "c" + - formula: "C22H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00359c + - id: "m00359c" - name: "13-hydroxy-E4-neuroprostane" - - compartment: c - - formula: C22H31O5 + - compartment: "c" + - formula: "C22H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00360c + - id: "m00360c" - name: "13-hydroxy-gamma-tocopherol" - - compartment: c - - formula: C28H48O3 + - compartment: "c" + - formula: "C28H48O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00360r + - id: "m00360r" - name: "13-hydroxy-gamma-tocopherol" - - compartment: r - - formula: C28H48O3 + - compartment: "r" + - formula: "C28H48O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00361c + - id: "m00361c" - name: "13-hydroxy-gamma-tocotrienol" - - compartment: c - - formula: C28H42O3 + - compartment: "c" + - formula: "C28H42O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00361r + - id: "m00361r" - name: "13-hydroxy-gamma-tocotrienol" - - compartment: r - - formula: C28H42O3 + - compartment: "r" + - formula: "C28H42O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00362c + - id: "m00362c" - name: "13-oxo-(9Z,11E)-tridecadienoate" - - compartment: c - - formula: C13H19O3 + - compartment: "c" + - formula: "C13H19O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00363c + - id: "m00363c" - name: "13-oxy-radical-octadecadienoate" - - compartment: c - - formula: C18H30O3 + - compartment: "c" + - formula: "C18H30O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00364c + - id: "m00364c" - name: "14,15-DHET" - - compartment: c - - formula: C20H33O4 + - compartment: "c" + - formula: "C20H33O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00365c + - id: "m00365c" - name: "14,15-DiHETE" - - compartment: c - - formula: C20H31O4 + - compartment: "c" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00365n + - id: "m00365n" - name: "14,15-DiHETE" - - compartment: n - - formula: C20H31O4 + - compartment: "n" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00366c + - id: "m00366c" - name: "14,15-EET" - - compartment: c - - formula: C20H31O3 + - compartment: "c" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00366r + - id: "m00366r" - name: "14,15-EET" - - compartment: r - - formula: C20H31O3 + - compartment: "r" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00367c + - id: "m00367c" - name: "14-demethyllanosterol" - - compartment: c - - formula: C29H48O + - compartment: "c" + - formula: "C29H48O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00368c + - id: "m00368c" - name: "14-hydroperoxy-H4-neuroprostane" - - compartment: c - - formula: C22H31O6 + - compartment: "c" + - formula: "C22H31O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00369c + - id: "m00369c" - name: "14-hydroxy-D4-neuroprostane" - - compartment: c - - formula: C22H31O5 + - compartment: "c" + - formula: "C22H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00370c + - id: "m00370c" - name: "14-hydroxy-E4-neuroprostane" - - compartment: c - - formula: C22H31O5 + - compartment: "c" + - formula: "C22H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00371c + - id: "m00371c" - name: "14-hydroxytetradecanoic acid" - - compartment: c - - formula: C14H27O3 + - compartment: "c" + - formula: "C14H27O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00371s + - id: "m00371s" - name: "14-hydroxytetradecanoic acid" - - compartment: s - - formula: C14H27O3 + - compartment: "s" + - formula: "C14H27O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00372c + - id: "m00372c" - name: "14-peroxy-docosahexaenoate" - - compartment: c - - formula: C22H30O4 + - compartment: "c" + - formula: "C22H30O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00373c + - id: "m00373c" - name: "15(R)-HEPE" - - compartment: c - - formula: C20H29O3 + - compartment: "c" + - formula: "C20H29O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00373n + - id: "m00373n" - name: "15(R)-HEPE" - - compartment: n - - formula: C20H29O3 + - compartment: "n" + - formula: "C20H29O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00373p + - id: "m00373p" - name: "15(R)-HEPE" - - compartment: p - - formula: C20H29O3 + - compartment: "p" + - formula: "C20H29O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00373r + - id: "m00373r" - name: "15(R)-HEPE" - - compartment: r - - formula: C20H29O3 + - compartment: "r" + - formula: "C20H29O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00374c + - id: "m00374c" - name: "15(R)-HETE" - - compartment: c - - formula: C20H31O3 + - compartment: "c" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00374p + - id: "m00374p" - name: "15(R)-HETE" - - compartment: p - - formula: C20H31O3 + - compartment: "p" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00374r + - id: "m00374r" - name: "15(R)-HETE" - - compartment: r - - formula: C20H31O3 + - compartment: "r" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00375c + - id: "m00375c" - name: "15(R)-HpEPE" - - compartment: c - - formula: C20H29O4 + - compartment: "c" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00375n + - id: "m00375n" - name: "15(R)-HpEPE" - - compartment: n - - formula: C20H29O4 + - compartment: "n" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00375p + - id: "m00375p" - name: "15(R)-HpEPE" - - compartment: p - - formula: C20H29O4 + - compartment: "p" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00375r + - id: "m00375r" - name: "15(R)-HpEPE" - - compartment: r - - formula: C20H29O4 + - compartment: "r" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00376c + - id: "m00376c" - name: "15(S)-HEPE" - - compartment: c - - formula: C20H29O3 + - compartment: "c" + - formula: "C20H29O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00377c + - id: "m00377c" - name: "15(S)-HETE" - - compartment: c - - formula: C20H31O3 + - compartment: "c" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00378c + - id: "m00378c" - name: "15(S)-HETrE" - - compartment: c - - formula: C20H33O3 + - compartment: "c" + - formula: "C20H33O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00379c + - id: "m00379c" - name: "15(S)-HpEPE" - - compartment: c - - formula: C20H29O4 + - compartment: "c" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00380c + - id: "m00380c" - name: "15(S)-HPETE" - - compartment: c - - formula: C20H31O4 + - compartment: "c" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00380n + - id: "m00380n" - name: "15(S)-HPETE" - - compartment: n - - formula: C20H31O4 + - compartment: "n" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00380p + - id: "m00380p" - name: "15(S)-HPETE" - - compartment: p - - formula: C20H31O4 + - compartment: "p" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00380r + - id: "m00380r" - name: "15(S)-HPETE" - - compartment: r - - formula: C20H31O4 + - compartment: "r" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00381c + - id: "m00381c" - name: "15-dehydro-prostaglandin D2" - - compartment: c - - formula: C20H29O5 + - compartment: "c" + - formula: "C20H29O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00382c + - id: "m00382c" - name: "15-deoxy-delta-12,14-PGD2" - - compartment: c - - formula: C20H29O4 + - compartment: "c" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00383c + - id: "m00383c" - name: "15-deoxy-delta-12,14-PGJ2" - - compartment: c - - formula: C20H27O3 + - compartment: "c" + - formula: "C20H27O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00384c + - id: "m00384c" - name: "15-deoxy-PGD2" - - compartment: c - - formula: C20H29O4 + - compartment: "c" + - formula: "C20H29O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00385c + - id: "m00385c" - name: "15-deoxy-prostaglandin J2" - - compartment: c - - formula: C20H27O3 + - compartment: "c" + - formula: "C20H27O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00386c + - id: "m00386c" - name: "15-epi-lipoxin A4" - - compartment: c - - formula: C20H31O5 + - compartment: "c" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00386p + - id: "m00386p" - name: "15-epi-lipoxin A4" - - compartment: p - - formula: C20H31O5 + - compartment: "p" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00386r + - id: "m00386r" - name: "15-epi-lipoxin A4" - - compartment: r - - formula: C20H31O5 + - compartment: "r" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00387c + - id: "m00387c" - name: "15-epi-lipoxin A5" - - compartment: c - - formula: C20H29O5 + - compartment: "c" + - formula: "C20H29O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00387p + - id: "m00387p" - name: "15-epi-lipoxin A5" - - compartment: p - - formula: C20H29O5 + - compartment: "p" + - formula: "C20H29O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00387r + - id: "m00387r" - name: "15-epi-lipoxin A5" - - compartment: r - - formula: C20H29O5 + - compartment: "r" + - formula: "C20H29O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00388c + - id: "m00388c" - name: "15-epi-lipoxin B4" - - compartment: c - - formula: C20H31O5 + - compartment: "c" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00388p + - id: "m00388p" - name: "15-epi-lipoxin B4" - - compartment: p - - formula: C20H31O5 + - compartment: "p" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00388r + - id: "m00388r" - name: "15-epi-lipoxin B4" - - compartment: r - - formula: C20H31O5 + - compartment: "r" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00389c + - id: "m00389c" - name: "15-epi-lipoxin B5" - - compartment: c - - formula: C20H29O5 + - compartment: "c" + - formula: "C20H29O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00389p + - id: "m00389p" - name: "15-epi-lipoxin B5" - - compartment: p - - formula: C20H29O5 + - compartment: "p" + - formula: "C20H29O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00389r + - id: "m00389r" - name: "15-epi-lipoxin B5" - - compartment: r - - formula: C20H29O5 + - compartment: "r" + - formula: "C20H29O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00390c + - id: "m00390c" - name: "15H-11,12-EETA" - - compartment: c - - formula: C20H31O4 + - compartment: "c" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00391c + - id: "m00391c" - name: "15-HpETrE" - - compartment: c - - formula: C20H33O4 + - compartment: "c" + - formula: "C20H33O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00392c + - id: "m00392c" - name: "15-keto-prostaglandin F2alpha" - - compartment: c - - formula: C20H31O5 + - compartment: "c" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00393c + - id: "m00393c" - name: "15-oxoETE" - - compartment: c - - formula: C20H29O3 + - compartment: "c" + - formula: "C20H29O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00394c + - id: "m00394c" - name: "15-oxo-lipoxin A4" - - compartment: c - - formula: C20H29O5 + - compartment: "c" + - formula: "C20H29O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00395c + - id: "m00395c" - name: "15-oxo-prostaglandin E2-glyceryl ester" - - compartment: c - - formula: C23H36O7 + - compartment: "c" + - formula: "C23H36O7" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00396c + - id: "m00396c" - name: "16(R)-HETE" - - compartment: c - - formula: C20H31O3 + - compartment: "c" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00397p + - id: "m00397p" - name: "16(S)-hydroxy-18-oxo-18-CoA-LTE4" - - compartment: p - - formula: C42H62N8O23P3S2 + - compartment: "p" + - formula: "C42H62N8O23P3S2" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00398p + - id: "m00398p" - name: "16,18-oxo-18-CoA-dinor-LTE4" - - compartment: p - - formula: C42H60N8O23P3S2 + - compartment: "p" + - formula: "C42H60N8O23P3S2" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00399r + - id: "m00399r" - name: "16alpha-hydroxydehydroepiandrosterone" - - compartment: r - - formula: C19H28O3 + - compartment: "r" + - formula: "C19H28O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00400c + - id: "m00400c" - name: "16alpha-hydroxyestrone" - - compartment: c - - formula: C18H22O3 + - compartment: "c" + - formula: "C18H22O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00400r + - id: "m00400r" - name: "16alpha-hydroxyestrone" - - compartment: r - - formula: C18H22O3 + - compartment: "r" + - formula: "C18H22O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00401p + - id: "m00401p" - name: "16e-18-oxo-18-CoA-dinor-LTE4" - - compartment: p - - formula: C42H60N8O22P3S2 + - compartment: "p" + - formula: "C42H60N8O22P3S2" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00402c + - id: "m00402c" - name: "16-glucuronide-estriol" - - compartment: c - - formula: C24H32O9 + - compartment: "c" + - formula: "C24H32O9" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00402r + - id: "m00402r" - name: "16-glucuronide-estriol" - - compartment: r - - formula: C24H32O9 + - compartment: "r" + - formula: "C24H32O9" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00402s + - id: "m00402s" - name: "16-glucuronide-estriol" - - compartment: s - - formula: C24H32O9 + - compartment: "s" + - formula: "C24H32O9" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00403c + - id: "m00403c" - name: "16-hydroxyhexadecanoic acid" - - compartment: c - - formula: C16H31O3 + - compartment: "c" + - formula: "C16H31O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00403s + - id: "m00403s" - name: "16-hydroxyhexadecanoic acid" - - compartment: s - - formula: C16H31O3 + - compartment: "s" + - formula: "C16H31O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00404c + - id: "m00404c" - name: "16-peroxy-docosahexaenoate" - - compartment: c - - formula: C22H30O4 + - compartment: "c" + - formula: "C22H30O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00405c + - id: "m00405c" - name: "17alpha,20alpha-dihydroxycholesterol" - - compartment: c - - formula: C27H46O3 + - compartment: "c" + - formula: "C27H46O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00406c + - id: "m00406c" - name: "17alpha,21-dihydroxypregnenolone" - - compartment: c - - formula: C21H32O4 + - compartment: "c" + - formula: "C21H32O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00407c + - id: "m00407c" - name: "17alpha-hydroxypregnenolone sulfate" - - compartment: c - - formula: C21H31O6S + - compartment: "c" + - formula: "C21H31O6S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00408c + - id: "m00408c" - name: "17alpha-hydroxypregnenolone" - - compartment: c - - formula: C21H32O3 + - compartment: "c" + - formula: "C21H32O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00408r + - id: "m00408r" - name: "17alpha-hydroxypregnenolone" - - compartment: r - - formula: C21H32O3 + - compartment: "r" + - formula: "C21H32O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00409c + - id: "m00409c" - name: "17alpha-hydroxyprogesterone" - - compartment: c - - formula: C21H30O3 + - compartment: "c" + - formula: "C21H30O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00409r + - id: "m00409r" - name: "17alpha-hydroxyprogesterone" - - compartment: r - - formula: C21H30O3 + - compartment: "r" + - formula: "C21H30O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00410c + - id: "m00410c" - name: "17beta-estradiol-2,3-quinone" - - compartment: c - - formula: C18H22O3 + - compartment: "c" + - formula: "C18H22O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00410m + - id: "m00410m" - name: "17beta-estradiol-2,3-quinone" - - compartment: m - - formula: C18H22O3 + - compartment: "m" + - formula: "C18H22O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00410p + - id: "m00410p" - name: "17beta-estradiol-2,3-quinone" - - compartment: p - - formula: C18H22O3 + - compartment: "p" + - formula: "C18H22O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00410r + - id: "m00410r" - name: "17beta-estradiol-2,3-quinone" - - compartment: r - - formula: C18H22O3 + - compartment: "r" + - formula: "C18H22O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00411c + - id: "m00411c" - name: "17beta-estradiol-2,3-semiquinone" - - compartment: c - - formula: C18H23O3 + - compartment: "c" + - formula: "C18H23O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00411l + - id: "m00411l" - name: "17beta-estradiol-2,3-semiquinone" - - compartment: l - - formula: C18H23O3 + - compartment: "l" + - formula: "C18H23O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00412c + - id: "m00412c" - name: "17beta-estradiol-3,4-quinone" - - compartment: c - - formula: C18H22O3 + - compartment: "c" + - formula: "C18H22O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00412m + - id: "m00412m" - name: "17beta-estradiol-3,4-quinone" - - compartment: m - - formula: C18H22O3 + - compartment: "m" + - formula: "C18H22O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00412p + - id: "m00412p" - name: "17beta-estradiol-3,4-quinone" - - compartment: p - - formula: C18H22O3 + - compartment: "p" + - formula: "C18H22O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00412r + - id: "m00412r" - name: "17beta-estradiol-3,4-quinone" - - compartment: r - - formula: C18H22O3 + - compartment: "r" + - formula: "C18H22O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00413c + - id: "m00413c" - name: "17beta-estradiol-3,4-semiquinone" - - compartment: c - - formula: C18H22O3 + - compartment: "c" + - formula: "C18H22O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00413l + - id: "m00413l" - name: "17beta-estradiol-3,4-semiquinone" - - compartment: l - - formula: C18H22O3 + - compartment: "l" + - formula: "C18H22O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00414c + - id: "m00414c" - name: "17-HETE" - - compartment: c - - formula: C20H31O3 + - compartment: "c" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00415c + - id: "m00415c" - name: "17-hydroperoxy-H4-neuroprostane" - - compartment: c - - formula: C22H31O6 + - compartment: "c" + - formula: "C22H31O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00416c + - id: "m00416c" - name: "17-hydroxy-D4-neuroprostane" - - compartment: c - - formula: C22H31O5 + - compartment: "c" + - formula: "C22H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00417c + - id: "m00417c" - name: "17-hydroxy-E4-neuroprostane" - - compartment: c - - formula: C22H31O5 + - compartment: "c" + - formula: "C22H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00418c + - id: "m00418c" - name: "17-peroxy-docosahexaenoate" - - compartment: c - - formula: C22H30O4 + - compartment: "c" + - formula: "C22H30O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00419p + - id: "m00419p" - name: "18(R)-hydroxy-20-oxo-20-CoA-LTE4" - - compartment: p - - formula: C44H64N8O23P3S2 + - compartment: "p" + - formula: "C44H64N8O23P3S2" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00420m + - id: "m00420m" - name: "18,20-dioxo-20-CoA-LTB4" - - compartment: m - - formula: C41H57N7O22P3S + - compartment: "m" + - formula: "C41H57N7O22P3S" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00420p + - id: "m00420p" - name: "18,20-dioxo-20-CoA-LTB4" - - compartment: p - - formula: C41H57N7O22P3S + - compartment: "p" + - formula: "C41H57N7O22P3S" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00421m + - id: "m00421m" - name: "18-CoA-18-oxo-dinor-LTB4" - - compartment: m - - formula: C39H55N7O21P3S + - compartment: "m" + - formula: "C39H55N7O21P3S" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00421p + - id: "m00421p" - name: "18-CoA-18-oxo-dinor-LTB4" - - compartment: p - - formula: C39H55N7O21P3S + - compartment: "p" + - formula: "C39H55N7O21P3S" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00422p + - id: "m00422p" - name: "18-COOH-(15E)-dinor-LTE4-CoA" - - compartment: p - - formula: C42H60N8O22P3S2 + - compartment: "p" + - formula: "C42H60N8O22P3S2" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00423p + - id: "m00423p" - name: "18-COOH-(16E)-dinor-LTE5-CoA" - - compartment: p - - formula: C42H58N8O22P3S2 + - compartment: "p" + - formula: "C42H58N8O22P3S2" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00424m + - id: "m00424m" - name: "18-COOH-LTB4" - - compartment: m - - formula: C18H24O6 + - compartment: "m" + - formula: "C18H24O6" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00425p + - id: "m00425p" - name: "18-COOH-LTE4" - - compartment: p - - formula: C21H29NO7S + - compartment: "p" + - formula: "C21H29NO7S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00426c + - id: "m00426c" - name: "18-HETE" - - compartment: c - - formula: C20H31O3 + - compartment: "c" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00427c + - id: "m00427c" - name: "18-hydroxy-all-trans-retinoate" - - compartment: c - - formula: C20H27O3 + - compartment: "c" + - formula: "C20H27O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00427r + - id: "m00427r" - name: "18-hydroxy-all-trans-retinoate" - - compartment: r - - formula: C20H27O3 + - compartment: "r" + - formula: "C20H27O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00428r + - id: "m00428r" - name: "18-hydroxy-arachidonate" - - compartment: r - - formula: C20H31O3 + - compartment: "r" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00429m + - id: "m00429m" - name: "18-hydroxycorticosterone" - - compartment: m - - formula: C21H30O5 + - compartment: "m" + - formula: "C21H30O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00430c + - id: "m00430c" - name: "19(S)-HETE" - - compartment: c - - formula: C20H31O3 + - compartment: "c" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00431c + - id: "m00431c" - name: "19-hydroxyandrostenedione" - - compartment: c - - formula: C19H26O3 + - compartment: "c" + - formula: "C19H26O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00432c + - id: "m00432c" - name: "19-hydroxytestosterone" - - compartment: c - - formula: C19H28O3 + - compartment: "c" + - formula: "C19H28O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00432r + - id: "m00432r" - name: "19-hydroxytestosterone" - - compartment: r - - formula: C19H28O3 + - compartment: "r" + - formula: "C19H28O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00432s + - id: "m00432s" - name: "19-hydroxytestosterone" - - compartment: s - - formula: C19H28O3 + - compartment: "s" + - formula: "C19H28O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00433c + - id: "m00433c" - name: "19-oxoandrostenedione" - - compartment: c - - formula: C19H24O3 + - compartment: "c" + - formula: "C19H24O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00434c + - id: "m00434c" - name: "19-oxo-testosterone" - - compartment: c - - formula: C19H26O3 + - compartment: "c" + - formula: "C19H26O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00435c + - id: "m00435c" - name: "1a,11b-dihydro-4,9-dimethylbenz[a]anthra[3,4-b]oxirene" - - compartment: c - - formula: C20H16O + - compartment: "c" + - formula: "C20H16O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00436c + - id: "m00436c" - name: "1-acylglycerol-3P-10,13,16,19-doco" - - compartment: c - - formula: C25H41O7P + - compartment: "c" + - formula: "C25H41O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00437c + - id: "m00437c" - name: "1-acylglycerol-3P-10,13,16-docosa" - - compartment: c - - formula: C25H43O7P + - compartment: "c" + - formula: "C25H43O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00438c + - id: "m00438c" - name: "1-acylglycerol-3P-10-heptade" - - compartment: c - - formula: C20H37O7P + - compartment: "c" + - formula: "C20H37O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00439c + - id: "m00439c" - name: "1-acylglycerol-3P-11,14,17-eico" - - compartment: c - - formula: C23H39O7P + - compartment: "c" + - formula: "C23H39O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00440c + - id: "m00440c" - name: "1-acylglycerol-3P-11,14-eicosa" - - compartment: c - - formula: C23H41O7P + - compartment: "c" + - formula: "C23H41O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00441c + - id: "m00441c" - name: "1-acylglycerol-3P-11-docose" - - compartment: c - - formula: C25H47O7P + - compartment: "c" + - formula: "C25H47O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00442c + - id: "m00442c" - name: "1-acylglycerol-3P-11-eico" - - compartment: c - - formula: C23H43O7P + - compartment: "c" + - formula: "C23H43O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00443c + - id: "m00443c" - name: "1-acylglycerol-3P-12,15,18,21-tetra" - - compartment: c - - formula: C27H45O7P + - compartment: "c" + - formula: "C27H45O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00444c + - id: "m00444c" - name: "1-acylglycerol-3P-13,16,19-doco" - - compartment: c - - formula: C25H43O7P + - compartment: "c" + - formula: "C25H43O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00445c + - id: "m00445c" - name: "1-acylglycerol-3P-13,16-docosa" - - compartment: c - - formula: C25H45O7P + - compartment: "c" + - formula: "C25H45O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00446c + - id: "m00446c" - name: "1-acylglycerol-3P-13-docose" - - compartment: c - - formula: C25H47O7P + - compartment: "c" + - formula: "C25H47O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00447c + - id: "m00447c" - name: "1-acylglycerol-3P-13-eicose" - - compartment: c - - formula: C23H43O7P + - compartment: "c" + - formula: "C23H43O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00448c + - id: "m00448c" - name: "1-acylglycerol-3P-13-octade" - - compartment: c - - formula: C21H39O7P + - compartment: "c" + - formula: "C21H39O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00449c + - id: "m00449c" - name: "1-acylglycerol-3P-15-tetra" - - compartment: c - - formula: C27H51O7P + - compartment: "c" + - formula: "C27H51O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00450c + - id: "m00450c" - name: "1-acylglycerol-3P-4,7,10,13,16,19-doco" - - compartment: c - - formula: C25H37O7P + - compartment: "c" + - formula: "C25H37O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00451c + - id: "m00451c" - name: "1-acylglycerol-3P-4,7,10,13,16-docosa" - - compartment: c - - formula: C25H39O7P + - compartment: "c" + - formula: "C25H39O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00452c + - id: "m00452c" - name: "1-acylglycerol-3P-5,8,11,14,17-eico" - - compartment: c - - formula: C23H35O7P + - compartment: "c" + - formula: "C23H35O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00453c + - id: "m00453c" - name: "1-acylglycerol-3P-5,8,11-eico" - - compartment: c - - formula: C23H39O7P + - compartment: "c" + - formula: "C23H39O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00454c + - id: "m00454c" - name: "1-acylglycerol-3P-5-tetrade" - - compartment: c - - formula: C17H31O7P + - compartment: "c" + - formula: "C17H31O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00455c + - id: "m00455c" - name: "1-acylglycerol-3P-6,9,12,15,18,21-tetra" - - compartment: c - - formula: C27H41O7P + - compartment: "c" + - formula: "C27H41O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00456c + - id: "m00456c" - name: "1-acylglycerol-3P-6,9,12,15,18-tetraco" - - compartment: c - - formula: C27H43O7P + - compartment: "c" + - formula: "C27H43O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00457c + - id: "m00457c" - name: "1-acylglycerol-3P-6,9,12,15-octa" - - compartment: c - - formula: C21H33O7P + - compartment: "c" + - formula: "C21H33O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00458c + - id: "m00458c" - name: "1-acylglycerol-3P-6,9-octa" - - compartment: c - - formula: C21H37O7P + - compartment: "c" + - formula: "C21H37O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00459c + - id: "m00459c" - name: "1-acylglycerol-3P-7,10,13,16,19-docosa" - - compartment: c - - formula: C25H39O7P + - compartment: "c" + - formula: "C25H39O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00460c + - id: "m00460c" - name: "1-acylglycerol-3P-7,10,13,16-docosa" - - compartment: c - - formula: C25H41O7P + - compartment: "c" + - formula: "C25H41O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00461c + - id: "m00461c" - name: "1-acylglycerol-3P-7-hexade" - - compartment: c - - formula: C19H35O7P + - compartment: "c" + - formula: "C19H35O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00462c + - id: "m00462c" - name: "1-acylglycerol-3P-7-octade" - - compartment: c - - formula: C21H39O7P + - compartment: "c" + - formula: "C21H39O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00463c + - id: "m00463c" - name: "1-acylglycerol-3P-7-tetrade" - - compartment: c - - formula: C17H31O7P + - compartment: "c" + - formula: "C17H31O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00464c + - id: "m00464c" - name: "1-acylglycerol-3P-8,11,14,17-eico" - - compartment: c - - formula: C23H37O7P + - compartment: "c" + - formula: "C23H37O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00465c + - id: "m00465c" - name: "1-acylglycerol-3P-8,11-eico" - - compartment: c - - formula: C23H41O7P + - compartment: "c" + - formula: "C23H41O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00466c + - id: "m00466c" - name: "1-acylglycerol-3P-9,12,15,18,21-tetra" - - compartment: c - - formula: C27H43O7P + - compartment: "c" + - formula: "C27H43O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00467c + - id: "m00467c" - name: "1-acylglycerol-3P-9,12,15,18-tetraco" - - compartment: c - - formula: C27H45O7P + - compartment: "c" + - formula: "C27H45O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00468c + - id: "m00468c" - name: "1-acylglycerol-3P-9-eicose" - - compartment: c - - formula: C23H43O7P + - compartment: "c" + - formula: "C23H43O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00469c + - id: "m00469c" - name: "1-acylglycerol-3P-9-heptade" - - compartment: c - - formula: C20H37O7P + - compartment: "c" + - formula: "C20H37O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00470c + - id: "m00470c" - name: "1-acylglycerol-3P-9-octade" - - compartment: c - - formula: C21H39O7P + - compartment: "c" + - formula: "C21H39O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00471c + - id: "m00471c" - name: "1-acylglycerol-3P-9-tetrade" - - compartment: c - - formula: C17H31O7P + - compartment: "c" + - formula: "C17H31O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00472c + - id: "m00472c" - name: "1-acylglycerol-3P-arach" - - compartment: c - - formula: C23H37O7P + - compartment: "c" + - formula: "C23H37O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00473c + - id: "m00473c" - name: "1-acylglycerol-3P-bile-PC pool" - - compartment: c - - formula: C4H6O7PR + - compartment: "c" + - formula: "C4H6O7PR" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00474c + - id: "m00474c" - name: "1-acylglycerol-3P-cis-vac" - - compartment: c - - formula: C21H39O7P + - compartment: "c" + - formula: "C21H39O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00476c + - id: "m00476c" - name: "1-acylglycerol-3P-dihomo-gamma" - - compartment: c - - formula: C23H39O7P + - compartment: "c" + - formula: "C23H39O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00477c + - id: "m00477c" - name: "1-acylglycerol-3P-docosa" - - compartment: c - - formula: C25H49O7P + - compartment: "c" + - formula: "C25H49O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00478c + - id: "m00478c" - name: "1-acylglycerol-3P-eico" - - compartment: c - - formula: C23H45O7P + - compartment: "c" + - formula: "C23H45O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00479c + - id: "m00479c" - name: "1-acylglycerol-3P-gamma-lin" - - compartment: c - - formula: C21H35O7P + - compartment: "c" + - formula: "C21H35O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00480c + - id: "m00480c" - name: "1-acylglycerol-3P-heneico" - - compartment: c - - formula: C24H47O7P + - compartment: "c" + - formula: "C24H47O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00481c + - id: "m00481c" - name: "1-acylglycerol-3P-heptade" - - compartment: c - - formula: C20H39O7P + - compartment: "c" + - formula: "C20H39O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00482c + - id: "m00482c" - name: "1-acylglycerol-3P-hexacosa" - - compartment: c - - formula: C29H57O7P + - compartment: "c" + - formula: "C29H57O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00483c + - id: "m00483c" - name: "1-acylglycerol-3P-hexecose" - - compartment: c - - formula: C29H55O7P + - compartment: "c" + - formula: "C29H55O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00484c + - id: "m00484c" - name: "1-acylglycerol-3P-laur" - - compartment: c - - formula: C15H29O7P + - compartment: "c" + - formula: "C15H29O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00485c + - id: "m00485c" - name: "1-acylglycerol-3P-LD-PC pool (liver tissue)" - - compartment: c - - formula: C4H6O7PR + - compartment: "c" + - formula: "C4H6O7PR" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00486c + - id: "m00486c" - name: "1-acylglycerol-3P-LD-PE pool (liver tissue)" - - compartment: c - - formula: C4H6O7PR + - compartment: "c" + - formula: "C4H6O7PR" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00487c + - id: "m00487c" - name: "1-acylglycerol-3P-LD-PI pool (liver tissue)" - - compartment: c - - formula: C4H6O7PR + - compartment: "c" + - formula: "C4H6O7PR" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00488c + - id: "m00488c" - name: "1-acylglycerol-3P-LD-PS pool (liver tissue)" - - compartment: c - - formula: C4H6O7PR + - compartment: "c" + - formula: "C4H6O7PR" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00489c + - id: "m00489c" - name: "1-acylglycerol-3P-LD-SM pool (liver tissue)" - - compartment: c - - formula: C4H6O7PR + - compartment: "c" + - formula: "C4H6O7PR" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00490c + - id: "m00490c" - name: "1-acylglycerol-3P-LD-TG1 pool (liver tissue)" - - compartment: c - - formula: C4H6O7PR + - compartment: "c" + - formula: "C4H6O7PR" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00491c + - id: "m00491c" - name: "1-acylglycerol-3P-lin" - - compartment: c - - formula: C21H37O7P + - compartment: "c" + - formula: "C21H37O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00492c + - id: "m00492c" - name: "1-acylglycerol-3P-linolen" - - compartment: c - - formula: C21H35O7P + - compartment: "c" + - formula: "C21H35O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00493c + - id: "m00493c" - name: "1-acylglycerol-3P-myrist" - - compartment: c - - formula: C17H33O7P + - compartment: "c" + - formula: "C17H33O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00494c + - id: "m00494c" - name: "1-acylglycerol-3P-nanode" - - compartment: c - - formula: C22H43O7P + - compartment: "c" + - formula: "C22H43O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00495c + - id: "m00495c" - name: "1-acylglycerol-3P-ol" - - compartment: c - - formula: C21H39O7P + - compartment: "c" + - formula: "C21H39O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00496c + - id: "m00496c" - name: "1-acylglycerol-3P-palm" - - compartment: c - - formula: C19H37O7P + - compartment: "c" + - formula: "C19H37O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00497c + - id: "m00497c" - name: "1-acylglycerol-3P-palmn" - - compartment: c - - formula: C19H35O7P + - compartment: "c" + - formula: "C19H35O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00498c + - id: "m00498c" - name: "1-acylglycerol-3P-pentade" - - compartment: c - - formula: C18H35O7P + - compartment: "c" + - formula: "C18H35O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00499c + - id: "m00499c" - name: "1-acylglycerol-3P-stea" - - compartment: c - - formula: C21H41O7P + - compartment: "c" + - formula: "C21H41O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00500c + - id: "m00500c" - name: "1-acylglycerol-3P-tetraco" - - compartment: c - - formula: C27H53O7P + - compartment: "c" + - formula: "C27H53O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00501c + - id: "m00501c" - name: "1-acylglycerol-3P-trico" - - compartment: c - - formula: C26H51O7P + - compartment: "c" + - formula: "C26H51O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00502c + - id: "m00502c" - name: "1-acylglycerol-3P-tridec" - - compartment: c - - formula: C16H31O7P + - compartment: "c" + - formula: "C16H31O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00503c + - id: "m00503c" - name: "1-acylglycerol-chylomicron pool" - - compartment: c - - formula: C4H7O4R + - compartment: "c" + - formula: "C4H7O4R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00503s + - id: "m00503s" - name: "1-acylglycerol-chylomicron pool" - - compartment: s - - formula: C4H7O4R + - compartment: "s" + - formula: "C4H7O4R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00504c + - id: "m00504c" - name: "1-acylglycerol-LD-PC pool" - - compartment: c - - formula: C4H7O4R + - compartment: "c" + - formula: "C4H7O4R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00505c + - id: "m00505c" - name: "1-acylglycerol-LD-PE pool" - - compartment: c - - formula: C4H7O4R + - compartment: "c" + - formula: "C4H7O4R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00506c + - id: "m00506c" - name: "1-acylglycerol-LD-PI pool" - - compartment: c - - formula: C4H7O4R + - compartment: "c" + - formula: "C4H7O4R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00507c + - id: "m00507c" - name: "1-acylglycerol-LD-PS pool" - - compartment: c - - formula: C4H7O4R + - compartment: "c" + - formula: "C4H7O4R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00508c + - id: "m00508c" - name: "1-acylglycerol-LD-SM pool" - - compartment: c - - formula: C4H7O4R + - compartment: "c" + - formula: "C4H7O4R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00509c + - id: "m00509c" - name: "1-acylglycerol-LD-TG1 pool" - - compartment: c - - formula: C4H7O4R + - compartment: "c" + - formula: "C4H7O4R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00510c + - id: "m00510c" - name: "1-acylglycerol-VLDL pool" - - compartment: c - - formula: C4H7O4R + - compartment: "c" + - formula: "C4H7O4R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00510s + - id: "m00510s" - name: "1-acylglycerol-VLDL pool" - - compartment: s - - formula: C4H7O4R + - compartment: "s" + - formula: "C4H7O4R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00511c + - id: "m00511c" - name: "1-acyl-PE pool" - - compartment: c - - formula: C6H13NO7PR + - compartment: "c" + - formula: "C6H13NO7PR" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00512c + - id: "m00512c" - name: "1-alkenyl-2-acylglycerol" - - compartment: c - - formula: C6H8O4R2 + - compartment: "c" + - formula: "C6H8O4R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00513c + - id: "m00513c" - name: "1-alkyl-2-acetyl-sn-glycerol" - - compartment: c - - formula: C5H9O4R + - compartment: "c" + - formula: "C5H9O4R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00514c + - id: "m00514c" - name: "1-alkyl-2-acylglycerol" - - compartment: c - - formula: C4H6O4R2 + - compartment: "c" + - formula: "C4H6O4R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00515c + - id: "m00515c" - name: "1-alkyl-2-acylglycerophosphoethanolamine" - - compartment: c - - formula: C6H12NO7PR2 + - compartment: "c" + - formula: "C6H12NO7PR2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00516c + - id: "m00516c" - name: "1-alkyl-2-lysoglycerol-3-phosphocholine" - - compartment: c - - formula: C8H19NO6PR + - compartment: "c" + - formula: "C8H19NO6PR" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00516s + - id: "m00516s" - name: "1-alkyl-2-lysoglycerol-3-phosphocholine" - - compartment: s - - formula: C8H19NO6PR + - compartment: "s" + - formula: "C8H19NO6PR" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00518m + - id: "m00518m" - name: "1-alpha,24R,25-trihydroxyvitamin D2" - - compartment: m - - formula: C28H44O4 + - compartment: "m" + - formula: "C28H44O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00519m + - id: "m00519m" - name: "1-alpha,25-dihydroxyvitamin D2" - - compartment: m - - formula: C28H44O3 + - compartment: "m" + - formula: "C28H44O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00520c + - id: "m00520c" - name: "1-deoxy-1-(N6-lysino)-D-fructose" - - compartment: c - - formula: C12H25N2O7 + - compartment: "c" + - formula: "C12H25N2O7" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00521c + - id: "m00521c" - name: "1D-myo-inositol-1,3,4,5,6-pentakisphosphate" - - compartment: c - - formula: C6H7O21P5 + - compartment: "c" + - formula: "C6H7O21P5" - charge: -10 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00521n + - id: "m00521n" - name: "1D-myo-inositol-1,3,4,5,6-pentakisphosphate" - - compartment: n - - formula: C6H7O21P5 + - compartment: "n" + - formula: "C6H7O21P5" - charge: -10 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00522c + - id: "m00522c" - name: "1D-myo-inositol-1,3,4,5-tetrakisphosphate" - - compartment: c - - formula: C6H8O18P4 + - compartment: "c" + - formula: "C6H8O18P4" - charge: -8 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00522n + - id: "m00522n" - name: "1D-myo-inositol-1,3,4,5-tetrakisphosphate" - - compartment: n - - formula: C6H8O18P4 + - compartment: "n" + - formula: "C6H8O18P4" - charge: -8 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00523c + - id: "m00523c" - name: "1D-myo-inositol-1,3,4,6-tetrakisphosphate" - - compartment: c - - formula: C6H8O18P4 + - compartment: "c" + - formula: "C6H8O18P4" - charge: -8 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00523n + - id: "m00523n" - name: "1D-myo-inositol-1,3,4,6-tetrakisphosphate" - - compartment: n - - formula: C6H8O18P4 + - compartment: "n" + - formula: "C6H8O18P4" - charge: -8 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00524c + - id: "m00524c" - name: "1D-myo-inositol-1,3,4-trisphosphate" - - compartment: c - - formula: C6H9O15P3 + - compartment: "c" + - formula: "C6H9O15P3" - charge: -6 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00525c + - id: "m00525c" - name: "1D-myo-inositol-1,4,5,6-tetrakisphosphate" - - compartment: c - - formula: C6H8O18P4 + - compartment: "c" + - formula: "C6H8O18P4" - charge: -8 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00525n + - id: "m00525n" - name: "1D-myo-inositol-1,4,5,6-tetrakisphosphate" - - compartment: n - - formula: C6H8O18P4 + - compartment: "n" + - formula: "C6H8O18P4" - charge: -8 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00526c + - id: "m00526c" - name: "1D-myo-inositol-1,4-bisphosphate" - - compartment: c - - formula: C6H10O12P2 + - compartment: "c" + - formula: "C6H10O12P2" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00526n + - id: "m00526n" - name: "1D-myo-inositol-1,4-bisphosphate" - - compartment: n - - formula: C6H10O12P2 + - compartment: "n" + - formula: "C6H10O12P2" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00527c + - id: "m00527c" - name: "1D-myo-inositol-3,4,5,6-tetrakisphosphate" - - compartment: c - - formula: C6H8O18P4 + - compartment: "c" + - formula: "C6H8O18P4" - charge: -8 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00528c + - id: "m00528c" - name: "1D-myo-inositol-3,4-bisphosphate" - - compartment: c - - formula: C6H10O12P2 + - compartment: "c" + - formula: "C6H10O12P2" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00529c + - id: "m00529c" - name: "1D-myo-inositol-3-phosphate" - - compartment: c - - formula: C6H11O9P + - compartment: "c" + - formula: "C6H11O9P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00530c + - id: "m00530c" - name: "1D-myo-inositol-4-phosphate" - - compartment: c - - formula: C6H11O9P + - compartment: "c" + - formula: "C6H11O9P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00531c + - id: "m00531c" - name: "1D-myo-inositol-bisdiphosphate-tetrakisphosphate" - - compartment: c - - formula: C6H6O30P8 + - compartment: "c" + - formula: "C6H6O30P8" - charge: -14 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00531n + - id: "m00531n" - name: "1D-myo-inositol-bisdiphosphate-tetrakisphosphate" - - compartment: n - - formula: C6H6O30P8 + - compartment: "n" + - formula: "C6H6O30P8" - charge: -14 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00532c + - id: "m00532c" - name: "1-hexadecylglycerol-3-phosphate" - - compartment: c - - formula: C19H39O6P + - compartment: "c" + - formula: "C19H39O6P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00533c + - id: "m00533c" - name: "1-hydroperoxy-8-carboxyoctyl-3,4-epoxynon-(2E)-enyl-ether" - - compartment: c - - formula: C18H31O6 + - compartment: "c" + - formula: "C18H31O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00534c + - id: "m00534c" - name: "1-lyso-2-arachidonoyl-phosphatidate" - - compartment: c - - formula: C23H37O7P + - compartment: "c" + - formula: "C23H37O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00535c + - id: "m00535c" - name: "1-lysolecithin pool" - - compartment: c - - formula: C9H19NO7PR + - compartment: "c" + - formula: "C9H19NO7PR" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00536c + - id: "m00536c" - name: "1-methylnicotinamide" - - compartment: c - - formula: C7H9N2O + - compartment: "c" + - formula: "C7H9N2O" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00536s + - id: "m00536s" - name: "1-methylnicotinamide" - - compartment: s - - formula: C7H9N2O + - compartment: "s" + - formula: "C7H9N2O" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00537c + - id: "m00537c" - name: "1-methylpyrrolinium" - - compartment: c - - formula: C5H10N + - compartment: "c" + - formula: "C5H10N" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00538c + - id: "m00538c" - name: "1-naphthol" - - compartment: c - - formula: C10H8O + - compartment: "c" + - formula: "C10H8O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00539c + - id: "m00539c" - name: "1-naphthylamine" - - compartment: c - - formula: C10H9N + - compartment: "c" + - formula: "C10H9N" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00540c + - id: "m00540c" - name: "1-nitro-5,6-dihydroxy-dihydronaphthalene" - - compartment: c - - formula: C10H9NO4 + - compartment: "c" + - formula: "C10H9NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00541c + - id: "m00541c" - name: "1-nitro-5-glutathionyl-6-hydroxy-5,6-dihydronaphthalene" - - compartment: c - - formula: C20H24N4O9S + - compartment: "c" + - formula: "C20H24N4O9S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00542c + - id: "m00542c" - name: "1-nitro-5-hydroxy-6-glutathionyl-5,6-dihydronaphthalene" - - compartment: c - - formula: C20H24N4O9S + - compartment: "c" + - formula: "C20H24N4O9S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00543c + - id: "m00543c" - name: "1-nitro-7-glutathionyl-8-hydroxy-7,8-dihydronaphthalene" - - compartment: c - - formula: C20H24N4O9S + - compartment: "c" + - formula: "C20H24N4O9S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00544c + - id: "m00544c" - name: "1-nitro-7-hydroxy-8-glutathionyl-7,8-dihydronaphthalene" - - compartment: c - - formula: C20H24N4O9S + - compartment: "c" + - formula: "C20H24N4O9S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00545c + - id: "m00545c" - name: "1-nitronaphthalene" - - compartment: c - - formula: C10H6NO2 + - compartment: "c" + - formula: "C10H6NO2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00545s + - id: "m00545s" - name: "1-nitronaphthalene" - - compartment: s - - formula: C10H6NO2 + - compartment: "s" + - formula: "C10H6NO2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00546c + - id: "m00546c" - name: "1-nitronaphthalene-5,6-oxide" - - compartment: c - - formula: C10H7NO3 + - compartment: "c" + - formula: "C10H7NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00547c + - id: "m00547c" - name: "1-nitronaphthalene-7,8-oxide" - - compartment: c - - formula: C10H7NO3 + - compartment: "c" + - formula: "C10H7NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00548c + - id: "m00548c" - name: "1-nitrosonaphthalene" - - compartment: c - - formula: C10H7NO + - compartment: "c" + - formula: "C10H7NO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00549c + - id: "m00549c" - name: "1-organyl-2-lyso-sn-glycero-3-phosphocholine" - - compartment: c - - formula: C8H19NO6PR + - compartment: "c" + - formula: "C8H19NO6PR" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00549s + - id: "m00549s" - name: "1-organyl-2-lyso-sn-glycero-3-phosphocholine" - - compartment: s - - formula: C8H19NO6PR + - compartment: "s" + - formula: "C8H19NO6PR" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00550p + - id: "m00550p" - name: "1-palmitoyl-dihydroxyacetone-phosphate" - - compartment: p - - formula: C19H35O7P + - compartment: "p" + - formula: "C19H35O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00551c + - id: "m00551c" - name: "1-phosphatidyl-1D-myo-inositol-3,4-bisphosphate" - - compartment: c - - formula: C11H14O19P3R2 + - compartment: "c" + - formula: "C11H14O19P3R2" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00551n + - id: "m00551n" - name: "1-phosphatidyl-1D-myo-inositol-3,4-bisphosphate" - - compartment: n - - formula: C11H14O19P3R2 + - compartment: "n" + - formula: "C11H14O19P3R2" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00552c + - id: "m00552c" - name: "1-phosphatidyl-1D-myo-inositol-3-phosphate" - - compartment: c - - formula: C11H15O16P2R2 + - compartment: "c" + - formula: "C11H15O16P2R2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00552n + - id: "m00552n" - name: "1-phosphatidyl-1D-myo-inositol-3-phosphate" - - compartment: n - - formula: C11H15O16P2R2 + - compartment: "n" + - formula: "C11H15O16P2R2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00552r + - id: "m00552r" - name: "1-phosphatidyl-1D-myo-inositol-3-phosphate" - - compartment: r - - formula: C11H15O16P2R2 + - compartment: "r" + - formula: "C11H15O16P2R2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00553c + - id: "m00553c" - name: "1-phosphatidyl-1D-myo-inositol-4-phosphate" - - compartment: c - - formula: C11H15O16P2R2 + - compartment: "c" + - formula: "C11H15O16P2R2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00553n + - id: "m00553n" - name: "1-phosphatidyl-1D-myo-inositol-4-phosphate" - - compartment: n - - formula: C11H15O16P2R2 + - compartment: "n" + - formula: "C11H15O16P2R2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00554c + - id: "m00554c" - name: "1-phosphatidyl-1D-myo-inositol-5-phosphate" - - compartment: c - - formula: C11H15O16P2R2 + - compartment: "c" + - formula: "C11H15O16P2R2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00554g + - id: "m00554g" - name: "1-phosphatidyl-1D-myo-inositol-5-phosphate" - - compartment: g - - formula: C11H15O16P2R2 + - compartment: "g" + - formula: "C11H15O16P2R2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00554n + - id: "m00554n" - name: "1-phosphatidyl-1D-myo-inositol-5-phosphate" - - compartment: n - - formula: C11H15O16P2R2 + - compartment: "n" + - formula: "C11H15O16P2R2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00554r + - id: "m00554r" - name: "1-phosphatidyl-1D-myo-inositol-5-phosphate" - - compartment: r - - formula: C11H15O16P2R2 + - compartment: "r" + - formula: "C11H15O16P2R2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00555c + - id: "m00555c" - name: "1-phosphatidyl-myo-inositol-3,5-bisphosphate" - - compartment: c - - formula: C11H14O19P3R2 + - compartment: "c" + - formula: "C11H14O19P3R2" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00555g + - id: "m00555g" - name: "1-phosphatidyl-myo-inositol-3,5-bisphosphate" - - compartment: g - - formula: C11H14O19P3R2 + - compartment: "g" + - formula: "C11H14O19P3R2" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00555r + - id: "m00555r" - name: "1-phosphatidyl-myo-inositol-3,5-bisphosphate" - - compartment: r - - formula: C11H14O19P3R2 + - compartment: "r" + - formula: "C11H14O19P3R2" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00556c + - id: "m00556c" - name: "1-piperideine-6-carboxylate" - - compartment: c - - formula: C6H8NO2 + - compartment: "c" + - formula: "C6H8NO2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00556p + - id: "m00556p" - name: "1-piperideine-6-carboxylate" - - compartment: p - - formula: C6H8NO2 + - compartment: "p" + - formula: "C6H8NO2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00557c + - id: "m00557c" - name: "1-pyrroline" - - compartment: c - - formula: C4H8N + - compartment: "c" + - formula: "C4H8N" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00557m + - id: "m00557m" - name: "1-pyrroline" - - compartment: m - - formula: C4H8N + - compartment: "m" + - formula: "C4H8N" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00558c + - id: "m00558c" - name: "1-pyrroline-2-carboxylate" - - compartment: c - - formula: C5H6NO2 + - compartment: "c" + - formula: "C5H6NO2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00559c + - id: "m00559c" - name: "1-pyrroline-5-carboxylate" - - compartment: c - - formula: C5H6NO2 + - compartment: "c" + - formula: "C5H6NO2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00559m + - id: "m00559m" - name: "1-pyrroline-5-carboxylate" - - compartment: m - - formula: C5H6NO2 + - compartment: "m" + - formula: "C5H6NO2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00560c + - id: "m00560c" - name: "1-radyl-2-acyl-sn-glycero-3-phosphocholine" - - compartment: c - - formula: C9H18NO7PR2 + - compartment: "c" + - formula: "C9H18NO7PR2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00561c + - id: "m00561c" - name: "2-(alpha-hydroxyethyl)thiamine-diphosphate" - - compartment: c - - formula: C14H20N4O8P2S + - compartment: "c" + - formula: "C14H20N4O8P2S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00562m + - id: "m00562m" - name: "2(R),6-dimethyl-heptanoyl-CoA" - - compartment: m - - formula: C30H48N7O17P3S + - compartment: "m" + - formula: "C30H48N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00563c + - id: "m00563c" - name: "2(S),6-dimethyl-heptanoyl-CoA" - - compartment: c - - formula: C30H48N7O17P3S + - compartment: "c" + - formula: "C30H48N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00563m + - id: "m00563m" - name: "2(S),6-dimethyl-heptanoyl-CoA" - - compartment: m - - formula: C30H48N7O17P3S + - compartment: "m" + - formula: "C30H48N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00564p + - id: "m00564p" - name: "2(S)-pristanal" - - compartment: p - - formula: C19H38O + - compartment: "p" + - formula: "C19H38O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00565c + - id: "m00565c" - name: "2-(S-glutathionyl)acetyl chloride" - - compartment: c - - formula: C12H17ClN3O7S + - compartment: "c" + - formula: "C12H17ClN3O7S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00566c + - id: "m00566c" - name: "2-(S-glutathionyl)acetyl glutathione" - - compartment: c - - formula: C22H32N6O13S2 + - compartment: "c" + - formula: "C22H32N6O13S2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00567c + - id: "m00567c" - name: "2,2-dichloro-1,1-ethanediol" - - compartment: c - - formula: C2H4Cl2O2 + - compartment: "c" + - formula: "C2H4Cl2O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00568c + - id: "m00568c" - name: "2,2-dichloroacetaldehyde" - - compartment: c - - formula: C2H2Cl2O + - compartment: "c" + - formula: "C2H2Cl2O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00569c + - id: "m00569c" - name: "2,3-bisphospho-D-glycerate" - - compartment: c - - formula: C3H3O10P2 + - compartment: "c" + - formula: "C3H3O10P2" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00570c + - id: "m00570c" - name: "2,3-cyclic-UMP" - - compartment: c - - formula: C9H10N2O8P + - compartment: "c" + - formula: "C9H10N2O8P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00571c + - id: "m00571c" - name: "2,3-dihydro-2-S-glutathionyl-3-hydroxy bromobenzene" - - compartment: c - - formula: C16H22BrN3O7S + - compartment: "c" + - formula: "C16H22BrN3O7S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00572c + - id: "m00572c" - name: "2,3-diketo-5-methylthiopentyl-1-phosphate" - - compartment: c - - formula: C6H9O6PS + - compartment: "c" + - formula: "C6H9O6PS" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00573c + - id: "m00573c" - name: "2,3-diketo-L-gulonate" - - compartment: c - - formula: C6H7O7 + - compartment: "c" + - formula: "C6H7O7" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00574c + - id: "m00574c" - name: "2,5-diamino-6-(5-triphosphoryl-3,4-trihydroxy-2-oxopentyl)-amino-4-oxopyrimidine" - - compartment: c - - formula: C9H14N5O14P3 + - compartment: "c" + - formula: "C9H14N5O14P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00574n + - id: "m00574n" - name: "2,5-diamino-6-(5-triphosphoryl-3,4-trihydroxy-2-oxopentyl)-amino-4-oxopyrimidine" - - compartment: n - - formula: C9H14N5O14P3 + - compartment: "n" + - formula: "C9H14N5O14P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00575c + - id: "m00575c" - name: "2,5-diaminopyrimidine nucleoside triphosphate" - - compartment: c - - formula: C9H14N5O14P3 + - compartment: "c" + - formula: "C9H14N5O14P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00575n + - id: "m00575n" - name: "2,5-diaminopyrimidine nucleoside triphosphate" - - compartment: n - - formula: C9H14N5O14P3 + - compartment: "n" + - formula: "C9H14N5O14P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00576c + - id: "m00576c" - name: "2,5-dihydroxybenzoate" - - compartment: c - - formula: C7H5O4 + - compartment: "c" + - formula: "C7H5O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00577c + - id: "m00577c" - name: "2,6-dimethylheptanoyl-carnitine" - - compartment: c - - formula: C16H31NO4 + - compartment: "c" + - formula: "C16H31NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00577m + - id: "m00577m" - name: "2,6-dimethylheptanoyl-carnitine" - - compartment: m - - formula: C16H31NO4 + - compartment: "m" + - formula: "C16H31NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00577s + - id: "m00577s" - name: "2,6-dimethylheptanoyl-carnitine" - - compartment: s - - formula: C16H31NO4 + - compartment: "s" + - formula: "C16H31NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00578m + - id: "m00578m" - name: "2,6-dimethyl-trans-2-heptenoyl-CoA" - - compartment: m - - formula: C30H46N7O17P3S + - compartment: "m" + - formula: "C30H46N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00579c + - id: "m00579c" - name: "20alpha,22beta dihydroxycholesterol" - - compartment: c - - formula: C27H46O3 + - compartment: "c" + - formula: "C27H46O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00579m + - id: "m00579m" - name: "20alpha,22beta dihydroxycholesterol" - - compartment: m - - formula: C27H46O3 + - compartment: "m" + - formula: "C27H46O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00580c + - id: "m00580c" - name: "20alpha-hydroxy-4-pregnen-3-one" - - compartment: c - - formula: C21H32O2 + - compartment: "c" + - formula: "C21H32O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00580s + - id: "m00580s" - name: "20alpha-hydroxy-4-pregnen-3-one" - - compartment: s - - formula: C21H32O2 + - compartment: "s" + - formula: "C21H32O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00581m + - id: "m00581m" - name: "20-CoA-20-oxo-18r-hydroxy-LTB4" - - compartment: m - - formula: C41H59N7O22P3S + - compartment: "m" + - formula: "C41H59N7O22P3S" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00581p + - id: "m00581p" - name: "20-CoA-20-oxo-18r-hydroxy-LTB4" - - compartment: p - - formula: C41H59N7O22P3S + - compartment: "p" + - formula: "C41H59N7O22P3S" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00582c + - id: "m00582c" - name: "20-CoA-20-oxo-LTB4" - - compartment: c - - formula: C41H59N7O21P3S + - compartment: "c" + - formula: "C41H59N7O21P3S" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00582m + - id: "m00582m" - name: "20-CoA-20-oxo-LTB4" - - compartment: m - - formula: C41H59N7O21P3S + - compartment: "m" + - formula: "C41H59N7O21P3S" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00582p + - id: "m00582p" - name: "20-CoA-20-oxo-LTB4" - - compartment: p - - formula: C41H59N7O21P3S + - compartment: "p" + - formula: "C41H59N7O21P3S" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00582r + - id: "m00582r" - name: "20-CoA-20-oxo-LTB4" - - compartment: r - - formula: C41H59N7O21P3S + - compartment: "r" + - formula: "C41H59N7O21P3S" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00583c + - id: "m00583c" - name: "20-COOH-10,11-dihydro-LTB4" - - compartment: c - - formula: C20H30O6 + - compartment: "c" + - formula: "C20H30O6" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00583m + - id: "m00583m" - name: "20-COOH-10,11-dihydro-LTB4" - - compartment: m - - formula: C20H30O6 + - compartment: "m" + - formula: "C20H30O6" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00583p + - id: "m00583p" - name: "20-COOH-10,11-dihydro-LTB4" - - compartment: p - - formula: C20H30O6 + - compartment: "p" + - formula: "C20H30O6" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00584p + - id: "m00584p" - name: "20-COOH-18-oxo-LTE4-CoA" - - compartment: p - - formula: C44H62N8O23P3S2 + - compartment: "p" + - formula: "C44H62N8O23P3S2" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00585c + - id: "m00585c" - name: "20-COOH-LTB4" - - compartment: c - - formula: C20H28O6 + - compartment: "c" + - formula: "C20H28O6" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00585m + - id: "m00585m" - name: "20-COOH-LTB4" - - compartment: m - - formula: C20H28O6 + - compartment: "m" + - formula: "C20H28O6" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00585p + - id: "m00585p" - name: "20-COOH-LTB4" - - compartment: p - - formula: C20H28O6 + - compartment: "p" + - formula: "C20H28O6" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00585r + - id: "m00585r" - name: "20-COOH-LTB4" - - compartment: r - - formula: C20H28O6 + - compartment: "r" + - formula: "C20H28O6" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00586p + - id: "m00586p" - name: "20-COOH-LTE4" - - compartment: p - - formula: C23H33NO7S + - compartment: "p" + - formula: "C23H33NO7S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00587p + - id: "m00587p" - name: "20-COOH-LTE4-CoA" - - compartment: p - - formula: C44H64N8O22P3S2 + - compartment: "p" + - formula: "C44H64N8O22P3S2" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00588c + - id: "m00588c" - name: "20-dihydroxy-LTB4" - - compartment: c - - formula: C20H31O6 + - compartment: "c" + - formula: "C20H31O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00588r + - id: "m00588r" - name: "20-dihydroxy-LTB4" - - compartment: r - - formula: C20H31O6 + - compartment: "r" + - formula: "C20H31O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00589c + - id: "m00589c" - name: "20-hydroperoxy-H4-neuroprostane" - - compartment: c - - formula: C22H31O6 + - compartment: "c" + - formula: "C22H31O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00590c + - id: "m00590c" - name: "20-hydroxy-5S-HETE" - - compartment: c - - formula: C20H31O4 + - compartment: "c" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00591c + - id: "m00591c" - name: "20-hydroxy-arachidonate" - - compartment: c - - formula: C20H31O3 + - compartment: "c" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00591s + - id: "m00591s" - name: "20-hydroxy-arachidonate" - - compartment: s - - formula: C20H31O3 + - compartment: "s" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00592c + - id: "m00592c" - name: "20-hydroxycholesterol" - - compartment: c - - formula: C27H46O2 + - compartment: "c" + - formula: "C27H46O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00592r + - id: "m00592r" - name: "20-hydroxycholesterol" - - compartment: r - - formula: C27H46O2 + - compartment: "r" + - formula: "C27H46O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00593c + - id: "m00593c" - name: "20-hydroxy-D4-neuroprostane" - - compartment: c - - formula: C22H31O5 + - compartment: "c" + - formula: "C22H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00594c + - id: "m00594c" - name: "20-hydroxy-E4-neuroprostane" - - compartment: c - - formula: C22H31O5 + - compartment: "c" + - formula: "C22H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00595c + - id: "m00595c" - name: "20-hydroxy-LTB5" - - compartment: c - - formula: C20H29O5 + - compartment: "c" + - formula: "C20H29O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00595r + - id: "m00595r" - name: "20-hydroxy-LTB5" - - compartment: r - - formula: C20H29O5 + - compartment: "r" + - formula: "C20H29O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00596p + - id: "m00596p" - name: "20-hydroxy-LTE4" - - compartment: p - - formula: C23H36NO6S + - compartment: "p" + - formula: "C23H36NO6S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00597c + - id: "m00597c" - name: "20-OH-10,11-dihydro-LTB4" - - compartment: c - - formula: C20H33O5 + - compartment: "c" + - formula: "C20H33O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00597r + - id: "m00597r" - name: "20-OH-10,11-dihydro-LTB4" - - compartment: r - - formula: C20H33O5 + - compartment: "r" + - formula: "C20H33O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00598c + - id: "m00598c" - name: "20-OH-hepoxilin A3" - - compartment: c - - formula: C20H31O5 + - compartment: "c" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00598r + - id: "m00598r" - name: "20-OH-hepoxilin A3" - - compartment: r - - formula: C20H31O5 + - compartment: "r" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00599c + - id: "m00599c" - name: "20-OH-LTB4" - - compartment: c - - formula: C20H31O5 + - compartment: "c" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00599m + - id: "m00599m" - name: "20-OH-LTB4" - - compartment: m - - formula: C20H31O5 + - compartment: "m" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00599r + - id: "m00599r" - name: "20-OH-LTB4" - - compartment: r - - formula: C20H31O5 + - compartment: "r" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00600c + - id: "m00600c" - name: "20-oxo-LTB4" - - compartment: c - - formula: C20H29O5 + - compartment: "c" + - formula: "C20H29O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00600m + - id: "m00600m" - name: "20-oxo-LTB4" - - compartment: m - - formula: C20H29O5 + - compartment: "m" + - formula: "C20H29O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00600r + - id: "m00600r" - name: "20-oxo-LTB4" - - compartment: r - - formula: C20H29O5 + - compartment: "r" + - formula: "C20H29O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00601p + - id: "m00601p" - name: "20-oxo-LTE4" - - compartment: p - - formula: C23H34NO6S + - compartment: "p" + - formula: "C23H34NO6S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00602c + - id: "m00602c" - name: "20-trihydroxy-LTB4" - - compartment: c - - formula: C20H31O7 + - compartment: "c" + - formula: "C20H31O7" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00602r + - id: "m00602r" - name: "20-trihydroxy-LTB4" - - compartment: r - - formula: C20H31O7 + - compartment: "r" + - formula: "C20H31O7" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00603c + - id: "m00603c" - name: "21-deoxycortisol" - - compartment: c - - formula: C21H30O4 + - compartment: "c" + - formula: "C21H30O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00604c + - id: "m00604c" - name: "21-hydroxyallopregnanolone" - - compartment: c - - formula: C21H34O3 + - compartment: "c" + - formula: "C21H34O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00605c + - id: "m00605c" - name: "21-hydroxypregnenolone" - - compartment: c - - formula: C21H32O3 + - compartment: "c" + - formula: "C21H32O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00606m + - id: "m00606m" - name: "22beta-hydroxycholesterol" - - compartment: m - - formula: C27H46O2 + - compartment: "m" + - formula: "C27H46O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00607c + - id: "m00607c" - name: "23S,25,26-trihydroxyvitamin D3" - - compartment: c - - formula: C27H44O4 + - compartment: "c" + - formula: "C27H44O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00607m + - id: "m00607m" - name: "23S,25,26-trihydroxyvitamin D3" - - compartment: m - - formula: C27H44O4 + - compartment: "m" + - formula: "C27H44O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00608c + - id: "m00608c" - name: "23s,25-dihydroxyvitamin D3" - - compartment: c - - formula: C27H44O3 + - compartment: "c" + - formula: "C27H44O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00608m + - id: "m00608m" - name: "23s,25-dihydroxyvitamin D3" - - compartment: m - - formula: C27H44O3 + - compartment: "m" + - formula: "C27H44O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00609c + - id: "m00609c" - name: "24,25-dihydrolanosterol" - - compartment: c - - formula: C30H52O + - compartment: "c" + - formula: "C30H52O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00610c + - id: "m00610c" - name: "24-hydroxycholesterol" - - compartment: c - - formula: C27H46O2 + - compartment: "c" + - formula: "C27H46O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00611c + - id: "m00611c" - name: "24-oxo-1alpha,23,25-trihydroxyvitamin D3" - - compartment: c - - formula: C27H42O5 + - compartment: "c" + - formula: "C27H42O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00611m + - id: "m00611m" - name: "24-oxo-1alpha,23,25-trihydroxyvitamin D3" - - compartment: m - - formula: C27H42O5 + - compartment: "m" + - formula: "C27H42O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00612c + - id: "m00612c" - name: "24-oxo-1alpha,25-dihydroxyvitamin D3" - - compartment: c - - formula: C27H42O4 + - compartment: "c" + - formula: "C27H42O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00612m + - id: "m00612m" - name: "24-oxo-1alpha,25-dihydroxyvitamin D3" - - compartment: m - - formula: C27H42O4 + - compartment: "m" + - formula: "C27H42O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00613c + - id: "m00613c" - name: "24R,25-dihyoxyvitamin D2" - - compartment: c - - formula: C28H44O3 + - compartment: "c" + - formula: "C28H44O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00613m + - id: "m00613m" - name: "24R,25-dihyoxyvitamin D2" - - compartment: m - - formula: C28H44O3 + - compartment: "m" + - formula: "C28H44O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00613s + - id: "m00613s" - name: "24R,25-dihyoxyvitamin D2" - - compartment: s - - formula: C28H44O3 + - compartment: "s" + - formula: "C28H44O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00614c + - id: "m00614c" - name: "25(R)DHCA-CoA" - - compartment: c - - formula: C48H76N7O19P3S + - compartment: "c" + - formula: "C48H76N7O19P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00614p + - id: "m00614p" - name: "25(R)DHCA-CoA" - - compartment: p - - formula: C48H76N7O19P3S + - compartment: "p" + - formula: "C48H76N7O19P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00614r + - id: "m00614r" - name: "25(R)DHCA-CoA" - - compartment: r - - formula: C48H76N7O19P3S + - compartment: "r" + - formula: "C48H76N7O19P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00615c + - id: "m00615c" - name: "25(R)TetraHCA-CoA" - - compartment: c - - formula: C48H76N7O21P3S + - compartment: "c" + - formula: "C48H76N7O21P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00615p + - id: "m00615p" - name: "25(R)TetraHCA-CoA" - - compartment: p - - formula: C48H76N7O21P3S + - compartment: "p" + - formula: "C48H76N7O21P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00616c + - id: "m00616c" - name: "25(R)THCA-CoA" - - compartment: c - - formula: C48H76N7O20P3S + - compartment: "c" + - formula: "C48H76N7O20P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00616m + - id: "m00616m" - name: "25(R)THCA-CoA" - - compartment: m - - formula: C48H76N7O20P3S + - compartment: "m" + - formula: "C48H76N7O20P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00616p + - id: "m00616p" - name: "25(R)THCA-CoA" - - compartment: p - - formula: C48H76N7O20P3S + - compartment: "p" + - formula: "C48H76N7O20P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00616r + - id: "m00616r" - name: "25(R)THCA-CoA" - - compartment: r - - formula: C48H76N7O20P3S + - compartment: "r" + - formula: "C48H76N7O20P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00617p + - id: "m00617p" - name: "25(S)DHCA-CoA" - - compartment: p - - formula: C48H76N7O19P3S + - compartment: "p" + - formula: "C48H76N7O19P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00618m + - id: "m00618m" - name: "25(S)THCA-CoA" - - compartment: m - - formula: C48H76N7O20P3S + - compartment: "m" + - formula: "C48H76N7O20P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00618p + - id: "m00618p" - name: "25(S)THCA-CoA" - - compartment: p - - formula: C48H76N7O20P3S + - compartment: "p" + - formula: "C48H76N7O20P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00619r + - id: "m00619r" - name: "25-hydroxycholesterol" - - compartment: r - - formula: C27H46O2 + - compartment: "r" + - formula: "C27H46O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00620c + - id: "m00620c" - name: "25-hydroxyvitamin D2" - - compartment: c - - formula: C28H44O2 + - compartment: "c" + - formula: "C28H44O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00620m + - id: "m00620m" - name: "25-hydroxyvitamin D2" - - compartment: m - - formula: C28H44O2 + - compartment: "m" + - formula: "C28H44O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00620s + - id: "m00620s" - name: "25-hydroxyvitamin D2" - - compartment: s - - formula: C28H44O2 + - compartment: "s" + - formula: "C28H44O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00621c + - id: "m00621c" - name: "25-hydroxyvitamin D3-26,23-lactol" - - compartment: c - - formula: C27H42O4 + - compartment: "c" + - formula: "C27H42O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00621m + - id: "m00621m" - name: "25-hydroxyvitamin D3-26,23-lactol" - - compartment: m - - formula: C27H42O4 + - compartment: "m" + - formula: "C27H42O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00622c + - id: "m00622c" - name: "25-hydroxyvitamin D3-26,23-lactone" - - compartment: c - - formula: C27H40O4 + - compartment: "c" + - formula: "C27H40O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00622m + - id: "m00622m" - name: "25-hydroxyvitamin D3-26,23-lactone" - - compartment: m - - formula: C27H40O4 + - compartment: "m" + - formula: "C27H40O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00623c + - id: "m00623c" - name: "26-hydroxycholesterol" - - compartment: c - - formula: C27H46O2 + - compartment: "c" + - formula: "C27H46O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00623m + - id: "m00623m" - name: "26-hydroxycholesterol" - - compartment: m - - formula: C27H46O2 + - compartment: "m" + - formula: "C27H46O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00623r + - id: "m00623r" - name: "26-hydroxycholesterol" - - compartment: r - - formula: C27H46O2 + - compartment: "r" + - formula: "C27H46O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00624c + - id: "m00624c" - name: "27alpha-hydroxy-7-dehydrocholesterol" - - compartment: c - - formula: C27H44O2 + - compartment: "c" + - formula: "C27H44O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00625c + - id: "m00625c" - name: "27-hydroxycholesterol" - - compartment: c - - formula: C27H46O2 + - compartment: "c" + - formula: "C27H46O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00625m + - id: "m00625m" - name: "27-hydroxycholesterol" - - compartment: m - - formula: C27H46O2 + - compartment: "m" + - formula: "C27H46O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00626c + - id: "m00626c" - name: "2-acetyl-1-alkyl-sn-glycero-3-phosphocholine" - - compartment: c - - formula: C10H21NO7PR + - compartment: "c" + - formula: "C10H21NO7PR" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00626s + - id: "m00626s" - name: "2-acetyl-1-alkyl-sn-glycero-3-phosphocholine" - - compartment: s - - formula: C10H21NO7PR + - compartment: "s" + - formula: "C10H21NO7PR" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00627c + - id: "m00627c" - name: "2-acyl-1-(1-alkenyl)-sn-glycero-3-phosphate" - - compartment: c - - formula: C6H7O7PR2 + - compartment: "c" + - formula: "C6H7O7PR2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00628c + - id: "m00628c" - name: "2-acyl-1-alkyl-sn-glycero-3-phosphate" - - compartment: c - - formula: C4H5O7PR2 + - compartment: "c" + - formula: "C4H5O7PR2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00629c + - id: "m00629c" - name: "2-amino-3-carboxymuconate semialdehyde" - - compartment: c - - formula: C7H6NO5 + - compartment: "c" + - formula: "C7H6NO5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00630m + - id: "m00630m" - name: "2-amino-3-oxoadipate" - - compartment: m - - formula: C6H8NO5 + - compartment: "m" + - formula: "C6H8NO5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00631c + - id: "m00631c" - name: "2-aminoadipate 6-semialdehyde" - - compartment: c - - formula: C6H11NO3 + - compartment: "c" + - formula: "C6H11NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00631m + - id: "m00631m" - name: "2-aminoadipate 6-semialdehyde" - - compartment: m - - formula: C6H11NO3 + - compartment: "m" + - formula: "C6H11NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00632c + - id: "m00632c" - name: "2-aminoethylphosphonate" - - compartment: c - - formula: C2H7NO3P + - compartment: "c" + - formula: "C2H7NO3P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00633c + - id: "m00633c" - name: "2-aminomuconate semialdehyde" - - compartment: c - - formula: C6H7NO3 + - compartment: "c" + - formula: "C6H7NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00634c + - id: "m00634c" - name: "2-aminomuconate" - - compartment: c - - formula: C6H6NO4 + - compartment: "c" + - formula: "C6H6NO4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00635c + - id: "m00635c" - name: "2-arachidonoylglycerol" - - compartment: c - - formula: C23H38O4 + - compartment: "c" + - formula: "C23H38O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00636c + - id: "m00636c" - name: "2-bromoacetaldehyde" - - compartment: c - - formula: C2H3BrO + - compartment: "c" + - formula: "C2H3BrO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00637c + - id: "m00637c" - name: "2-bromophenol" - - compartment: c - - formula: C6H5BrO + - compartment: "c" + - formula: "C6H5BrO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00638c + - id: "m00638c" - name: "2-carboxy-2,3-dihydro-5,6-dihydroxyindole" - - compartment: c - - formula: C9H8NO4 + - compartment: "c" + - formula: "C9H8NO4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00639c + - id: "m00639c" - name: "2-deoxy-D-ribose-1-phosphate" - - compartment: c - - formula: C5H9O7P + - compartment: "c" + - formula: "C5H9O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00640c + - id: "m00640c" - name: "2-deoxy-D-ribose-5-phosphate" - - compartment: c - - formula: C5H9O7P + - compartment: "c" + - formula: "C5H9O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00641c + - id: "m00641c" - name: "2-hydroxy-17beta-estradiol-1-S-glutathione" - - compartment: c - - formula: C28H38N3O9S + - compartment: "c" + - formula: "C28H38N3O9S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00641m + - id: "m00641m" - name: "2-hydroxy-17beta-estradiol-1-S-glutathione" - - compartment: m - - formula: C28H38N3O9S + - compartment: "m" + - formula: "C28H38N3O9S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00641p + - id: "m00641p" - name: "2-hydroxy-17beta-estradiol-1-S-glutathione" - - compartment: p - - formula: C28H38N3O9S + - compartment: "p" + - formula: "C28H38N3O9S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00641r + - id: "m00641r" - name: "2-hydroxy-17beta-estradiol-1-S-glutathione" - - compartment: r - - formula: C28H38N3O9S + - compartment: "r" + - formula: "C28H38N3O9S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00642c + - id: "m00642c" - name: "2-hydroxy-17beta-estradiol-4-S-glutathione" - - compartment: c - - formula: C28H38N3O9S + - compartment: "c" + - formula: "C28H38N3O9S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00642m + - id: "m00642m" - name: "2-hydroxy-17beta-estradiol-4-S-glutathione" - - compartment: m - - formula: C28H38N3O9S + - compartment: "m" + - formula: "C28H38N3O9S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00642p + - id: "m00642p" - name: "2-hydroxy-17beta-estradiol-4-S-glutathione" - - compartment: p - - formula: C28H38N3O9S + - compartment: "p" + - formula: "C28H38N3O9S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00642r + - id: "m00642r" - name: "2-hydroxy-17beta-estradiol-4-S-glutathione" - - compartment: r - - formula: C28H38N3O9S + - compartment: "r" + - formula: "C28H38N3O9S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00643c + - id: "m00643c" - name: "2-hydroxy-3-(4-hydroxyphenyl)propenoate" - - compartment: c - - formula: C9H7O4 + - compartment: "c" + - formula: "C9H7O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00644c + - id: "m00644c" - name: "2-hydroxy-3-methoxy-17beta-estradiol" - - compartment: c - - formula: C19H26O3 + - compartment: "c" + - formula: "C19H26O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00645c + - id: "m00645c" - name: "2-hydroxy-3-methoxyestrone" - - compartment: c - - formula: C19H24O3 + - compartment: "c" + - formula: "C19H24O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00646c + - id: "m00646c" - name: "2-hydroxy-3-oxopropanoate" - - compartment: c - - formula: C3H3O4 + - compartment: "c" + - formula: "C3H3O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00647c + - id: "m00647c" - name: "2-hydroxy-3-phenylpropenoate" - - compartment: c - - formula: C9H7O3 + - compartment: "c" + - formula: "C9H7O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00648c + - id: "m00648c" - name: "2-hydroxybutyrate" - - compartment: c - - formula: C4H7O3 + - compartment: "c" + - formula: "C4H7O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00648s + - id: "m00648s" - name: "2-hydroxybutyrate" - - compartment: s - - formula: C4H7O3 + - compartment: "s" + - formula: "C4H7O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00649c + - id: "m00649c" - name: "2-hydroxyestradiol-17beta" - - compartment: c - - formula: C18H24O3 + - compartment: "c" + - formula: "C18H24O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00649l + - id: "m00649l" - name: "2-hydroxyestradiol-17beta" - - compartment: l - - formula: C18H24O3 + - compartment: "l" + - formula: "C18H24O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00649r + - id: "m00649r" - name: "2-hydroxyestradiol-17beta" - - compartment: r - - formula: C18H24O3 + - compartment: "r" + - formula: "C18H24O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00650c + - id: "m00650c" - name: "2-hydroxyestrone" - - compartment: c - - formula: C18H22O3 + - compartment: "c" + - formula: "C18H22O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00650l + - id: "m00650l" - name: "2-hydroxyestrone" - - compartment: l - - formula: C18H22O3 + - compartment: "l" + - formula: "C18H22O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00650r + - id: "m00650r" - name: "2-hydroxyestrone" - - compartment: r - - formula: C18H22O3 + - compartment: "r" + - formula: "C18H22O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00651c + - id: "m00651c" - name: "2-hydroxyestrone-1-S-glutathione" - - compartment: c - - formula: C28H36N3O9S + - compartment: "c" + - formula: "C28H36N3O9S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00651m + - id: "m00651m" - name: "2-hydroxyestrone-1-S-glutathione" - - compartment: m - - formula: C28H36N3O9S + - compartment: "m" + - formula: "C28H36N3O9S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00651p + - id: "m00651p" - name: "2-hydroxyestrone-1-S-glutathione" - - compartment: p - - formula: C28H36N3O9S + - compartment: "p" + - formula: "C28H36N3O9S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00651r + - id: "m00651r" - name: "2-hydroxyestrone-1-S-glutathione" - - compartment: r - - formula: C28H36N3O9S + - compartment: "r" + - formula: "C28H36N3O9S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00652c + - id: "m00652c" - name: "2-hydroxyestrone-4-S-glutathione" - - compartment: c - - formula: C28H36N3O9S + - compartment: "c" + - formula: "C28H36N3O9S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00652m + - id: "m00652m" - name: "2-hydroxyestrone-4-S-glutathione" - - compartment: m - - formula: C28H36N3O9S + - compartment: "m" + - formula: "C28H36N3O9S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00652p + - id: "m00652p" - name: "2-hydroxyestrone-4-S-glutathione" - - compartment: p - - formula: C28H36N3O9S + - compartment: "p" + - formula: "C28H36N3O9S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00652r + - id: "m00652r" - name: "2-hydroxyestrone-4-S-glutathione" - - compartment: r - - formula: C28H36N3O9S + - compartment: "r" + - formula: "C28H36N3O9S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00653c + - id: "m00653c" - name: "2-hydroxyglutarate" - - compartment: c - - formula: C5H6O5 + - compartment: "c" + - formula: "C5H6O5" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00654c + - id: "m00654c" - name: "2-hydroxyphenylacetate" - - compartment: c - - formula: C8H7O3 + - compartment: "c" + - formula: "C8H7O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00655p + - id: "m00655p" - name: "2-hydroxyphytanoyl-CoA" - - compartment: p - - formula: C41H70N7O18P3S + - compartment: "p" + - formula: "C41H70N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00656c + - id: "m00656c" - name: "2-lysolecithin pool" - - compartment: c - - formula: C8H19NO5PRCO2 + - compartment: "c" + - formula: "C8H19NO5PRCO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00656l + - id: "m00656l" - name: "2-lysolecithin pool" - - compartment: l - - formula: C8H19NO5PRCO2 + - compartment: "l" + - formula: "C8H19NO5PRCO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00656r + - id: "m00656r" - name: "2-lysolecithin pool" - - compartment: r - - formula: C8H19NO5PRCO2 + - compartment: "r" + - formula: "C8H19NO5PRCO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00657m + - id: "m00657m" - name: "2-methoxy-6-(all-trans-decaprenyl)phenol" - - compartment: m - - formula: C57H88O2 + - compartment: "m" + - formula: "C57H88O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00658m + - id: "m00658m" - name: "2-methoxy-6-all trans-decaprenyl-2-methoxy-1,4-benzoquinol" - - compartment: m - - formula: C57H88O3 + - compartment: "m" + - formula: "C57H88O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00659c + - id: "m00659c" - name: "2-methoxyestradiol-17beta" - - compartment: c - - formula: C19H26O3 + - compartment: "c" + - formula: "C19H26O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00660c + - id: "m00660c" - name: "2-methoxyestrone" - - compartment: c - - formula: C19H24O3 + - compartment: "c" + - formula: "C19H24O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00660r + - id: "m00660r" - name: "2-methoxyestrone" - - compartment: r - - formula: C19H24O3 + - compartment: "r" + - formula: "C19H24O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00661c + - id: "m00661c" - name: "2-methyl-3-oxopropanoate" - - compartment: c - - formula: C4H5O3 + - compartment: "c" + - formula: "C4H5O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00661m + - id: "m00661m" - name: "2-methyl-3-oxopropanoate" - - compartment: m - - formula: C4H5O3 + - compartment: "m" + - formula: "C4H5O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00662m + - id: "m00662m" - name: "2-methylacetoacetyl-CoA" - - compartment: m - - formula: C26H38N7O18P3S + - compartment: "m" + - formula: "C26H38N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00663m + - id: "m00663m" - name: "2-methylbutyryl-CoA" - - compartment: m - - formula: C26H40N7O17P3S + - compartment: "m" + - formula: "C26H40N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00664m + - id: "m00664m" - name: "2-methylbutyrylglycine" - - compartment: m - - formula: C7H12NO3 + - compartment: "m" + - formula: "C7H12NO3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00665c + - id: "m00665c" - name: "2-methylcitrate" - - compartment: c - - formula: C7H7O7 + - compartment: "c" + - formula: "C7H7O7" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00665s + - id: "m00665s" - name: "2-methylcitrate" - - compartment: s - - formula: C7H7O7 + - compartment: "s" + - formula: "C7H7O7" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00666m + - id: "m00666m" - name: "2-methylglutaconic acid" - - compartment: m - - formula: C6H6O4 + - compartment: "m" + - formula: "C6H6O4" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00667m + - id: "m00667m" - name: "2-methylglutaconyl-CoA" - - compartment: m - - formula: C27H37N7O19P3S + - compartment: "m" + - formula: "C27H37N7O19P3S" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00668c + - id: "m00668c" - name: "2-naphthol" - - compartment: c - - formula: C10H8O + - compartment: "c" + - formula: "C10H8O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00669c + - id: "m00669c" - name: "2-oxo-3-methylvalerate" - - compartment: c - - formula: C6H9O3 + - compartment: "c" + - formula: "C6H9O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00669m + - id: "m00669m" - name: "2-oxo-3-methylvalerate" - - compartment: m - - formula: C6H9O3 + - compartment: "m" + - formula: "C6H9O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00670c + - id: "m00670c" - name: "2-oxoadipate" - - compartment: c - - formula: C6H6O5 + - compartment: "c" + - formula: "C6H6O5" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00670m + - id: "m00670m" - name: "2-oxoadipate" - - compartment: m - - formula: C6H6O5 + - compartment: "m" + - formula: "C6H6O5" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00671c + - id: "m00671c" - name: "2-oxobutyrate" - - compartment: c - - formula: C4H5O3 + - compartment: "c" + - formula: "C4H5O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00671m + - id: "m00671m" - name: "2-oxobutyrate" - - compartment: m - - formula: C4H5O3 + - compartment: "m" + - formula: "C4H5O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00672c + - id: "m00672c" - name: "2-oxoglutaramate" - - compartment: c - - formula: C5H6NO4 + - compartment: "c" + - formula: "C5H6NO4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00672m + - id: "m00672m" - name: "2-oxoglutaramate" - - compartment: m - - formula: C5H6NO4 + - compartment: "m" + - formula: "C5H6NO4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00673c + - id: "m00673c" - name: "2-phenylacetamide" - - compartment: c - - formula: C8H9NO + - compartment: "c" + - formula: "C8H9NO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00674c + - id: "m00674c" - name: "2-phospho-D-glycerate" - - compartment: c - - formula: C3H4O7P + - compartment: "c" + - formula: "C3H4O7P" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00675c + - id: "m00675c" - name: "2-phosphoglycolate" - - compartment: c - - formula: C2H2O6P + - compartment: "c" + - formula: "C2H2O6P" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00676c + - id: "m00676c" - name: "2-S-glutathionyl acetate" - - compartment: c - - formula: C12H18N3O8S + - compartment: "c" + - formula: "C12H18N3O8S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00677c + - id: "m00677c" - name: "2-trans,6-trans-farnesal" - - compartment: c - - formula: C15H24O + - compartment: "c" + - formula: "C15H24O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00678m + - id: "m00678m" - name: "2-trans-4-cis-decadienoyl-CoA" - - compartment: m - - formula: C31H46N7O17P3S + - compartment: "m" + - formula: "C31H46N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00678p + - id: "m00678p" - name: "2-trans-4-cis-decadienoyl-CoA" - - compartment: p - - formula: C31H46N7O17P3S + - compartment: "p" + - formula: "C31H46N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00679c + - id: "m00679c" - name: "2-trans-7,10,13,16,19-all-cis-docosahexaenoyl-CoA" - - compartment: c - - formula: C43H62N7O17P3S + - compartment: "c" + - formula: "C43H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00680c + - id: "m00680c" - name: "2-trans-9,12,15,18,21-all-cis-tetracosahexaenoyl-CoA" - - compartment: c - - formula: C45H66N7O17P3S + - compartment: "c" + - formula: "C45H66N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00681c + - id: "m00681c" - name: "2-trans-9,12,15,18-all-cis-tetracosapentaenoyl-CoA" - - compartment: c - - formula: C45H68N7O17P3S + - compartment: "c" + - formula: "C45H68N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00682m + - id: "m00682m" - name: "2-trans-cis,cis,cis,cis-4,8,11,14-eicosapentaenoyl-CoA" - - compartment: m - - formula: C41H60N7O17P3S + - compartment: "m" + - formula: "C41H60N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00682p + - id: "m00682p" - name: "2-trans-cis,cis,cis,cis-4,8,11,14-eicosapentaenoyl-CoA" - - compartment: p - - formula: C41H60N7O17P3S + - compartment: "p" + - formula: "C41H60N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00683c + - id: "m00683c" - name: "3-(acyloxy)acyl group of bacterial toxin" - - compartment: c - - formula: C54H89N2O25P2R7 + - compartment: "c" + - formula: "C54H89N2O25P2R7" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00684c + - id: "m00684c" - name: "3-(methylthio)propionic acid" - - compartment: c - - formula: C4H7O2S + - compartment: "c" + - formula: "C4H7O2S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00685p + - id: "m00685p" - name: "3(R)-hydroxy-(2S,6R,10)-trimethyl-hendecanoyl-CoA" - - compartment: p - - formula: C35H58N7O18P3S + - compartment: "p" + - formula: "C35H58N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00686p + - id: "m00686p" - name: "3(R)-hydroxy-(4R,8R,12R)-trimethyl-tridecanoyl-CoA" - - compartment: p - - formula: C37H62N7O18P3S + - compartment: "p" + - formula: "C37H62N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00687m + - id: "m00687m" - name: "3(S),10(R)-OH-octadeca-6-trans-4,12-cis-trienoate" - - compartment: m - - formula: C18H29O4 + - compartment: "m" + - formula: "C18H29O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00687p + - id: "m00687p" - name: "3(S),10(R)-OH-octadeca-6-trans-4,12-cis-trienoate" - - compartment: p - - formula: C18H29O4 + - compartment: "p" + - formula: "C18H29O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00688m + - id: "m00688m" - name: "3(S),10(R)-OH-octadeca-6-trans-4,12-cis-trienoyl-CoA" - - compartment: m - - formula: C39H60N7O19P3S + - compartment: "m" + - formula: "C39H60N7O19P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00688p + - id: "m00688p" - name: "3(S),10(R)-OH-octadeca-6-trans-4,12-cis-trienoyl-CoA" - - compartment: p - - formula: C39H60N7O19P3S + - compartment: "p" + - formula: "C39H60N7O19P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00689m + - id: "m00689m" - name: "3(S),12(R)-dihydroxy-5-oxo-eicosa-(8E,10E,14Z)-trienoyl-CoA" - - compartment: m - - formula: C41H62N7O20P3S + - compartment: "m" + - formula: "C41H62N7O20P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00689p + - id: "m00689p" - name: "3(S),12(R)-dihydroxy-5-oxo-eicosa-(8E,10E,14Z)-trienoyl-CoA" - - compartment: p - - formula: C41H62N7O20P3S + - compartment: "p" + - formula: "C41H62N7O20P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00690m + - id: "m00690m" - name: "3(S),12(S)-dihydroxy-5-oxo-eicosa-(8E,10E,14Z)-trienoyl-CoA" - - compartment: m - - formula: C41H62N7O20P3S + - compartment: "m" + - formula: "C41H62N7O20P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00690p + - id: "m00690p" - name: "3(S),12(S)-dihydroxy-5-oxo-eicosa-(8E,10E,14Z)-trienoyl-CoA" - - compartment: p - - formula: C41H62N7O20P3S + - compartment: "p" + - formula: "C41H62N7O20P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00691m + - id: "m00691m" - name: "3(S),5(S),12(R)-trihydroxy-eicosa-8-trans-6,14-cis-trienoyl-CoA" - - compartment: m - - formula: C41H64N7O20P3S + - compartment: "m" + - formula: "C41H64N7O20P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00691p + - id: "m00691p" - name: "3(S),5(S),12(R)-trihydroxy-eicosa-8-trans-6,14-cis-trienoyl-CoA" - - compartment: p - - formula: C41H64N7O20P3S + - compartment: "p" + - formula: "C41H64N7O20P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00692m + - id: "m00692m" - name: "3(S),6(R)-dihydroxy-tetradec-(8Z)-enoate" - - compartment: m - - formula: C14H25O4 + - compartment: "m" + - formula: "C14H25O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00693m + - id: "m00693m" - name: "3(S),6(S)-dihydroxy-tetradec-(8Z)-enoate" - - compartment: m - - formula: C14H25O4 + - compartment: "m" + - formula: "C14H25O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00694m + - id: "m00694m" - name: "3(S),8(R)-dihydroxy-(6E,10Z)-hexadecadienoate" - - compartment: m - - formula: C16H27O4 + - compartment: "m" + - formula: "C16H27O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00695m + - id: "m00695m" - name: "3(S),8(S)-dihydroxy-(6E,10Z)-hexadecadienoate" - - compartment: m - - formula: C16H27O4 + - compartment: "m" + - formula: "C16H27O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00696m + - id: "m00696m" - name: "3(S)-hydroxy-(5Z,8Z)-tetradecadienoyl-CoA" - - compartment: m - - formula: C35H54N7O18P3S + - compartment: "m" + - formula: "C35H54N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00696p + - id: "m00696p" - name: "3(S)-hydroxy-(5Z,8Z)-tetradecadienoyl-CoA" - - compartment: p - - formula: C35H54N7O18P3S + - compartment: "p" + - formula: "C35H54N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00697m + - id: "m00697m" - name: "3(S)-hydroxy-(6Z,9Z,12Z)-octadecatrienoyl-CoA" - - compartment: m - - formula: C39H60N7O18P3S + - compartment: "m" + - formula: "C39H60N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00697p + - id: "m00697p" - name: "3(S)-hydroxy-(6Z,9Z,12Z)-octadecatrienoyl-CoA" - - compartment: p - - formula: C39H60N7O18P3S + - compartment: "p" + - formula: "C39H60N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00698c + - id: "m00698c" - name: "3(S)-hydroxy-10,13,16-all-cis-docosatrienoyl-CoA" - - compartment: c - - formula: C43H68N7O18P3S + - compartment: "c" + - formula: "C43H68N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00699c + - id: "m00699c" - name: "3(S)-hydroxy-11-cis-docosenoyl-CoA" - - compartment: c - - formula: C43H72N7O18P3S + - compartment: "c" + - formula: "C43H72N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00700c + - id: "m00700c" - name: "3(S)-hydroxy-11-cis-eicosenoyl-CoA" - - compartment: c - - formula: C41H68N7O18P3S + - compartment: "c" + - formula: "C41H68N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00700m + - id: "m00700m" - name: "3(S)-hydroxy-11-cis-eicosenoyl-CoA" - - compartment: m - - formula: C41H68N7O18P3S + - compartment: "m" + - formula: "C41H68N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00700p + - id: "m00700p" - name: "3(S)-hydroxy-11-cis-eicosenoyl-CoA" - - compartment: p - - formula: C41H68N7O18P3S + - compartment: "p" + - formula: "C41H68N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00701c + - id: "m00701c" - name: "3(S)-hydroxy-13-cis-docosenoyl-CoA" - - compartment: c - - formula: C43H72N7O18P3S + - compartment: "c" + - formula: "C43H72N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00701m + - id: "m00701m" - name: "3(S)-hydroxy-13-cis-docosenoyl-CoA" - - compartment: m - - formula: C43H72N7O18P3S + - compartment: "m" + - formula: "C43H72N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00701p + - id: "m00701p" - name: "3(S)-hydroxy-13-cis-docosenoyl-CoA" - - compartment: p - - formula: C43H72N7O18P3S + - compartment: "p" + - formula: "C43H72N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00702c + - id: "m00702c" - name: "3(S)-hydroxy-13-cis-eicosenoyl-CoA" - - compartment: c - - formula: C41H68N7O18P3S + - compartment: "c" + - formula: "C41H68N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00702m + - id: "m00702m" - name: "3(S)-hydroxy-13-cis-eicosenoyl-CoA" - - compartment: m - - formula: C41H68N7O18P3S + - compartment: "m" + - formula: "C41H68N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00702p + - id: "m00702p" - name: "3(S)-hydroxy-13-cis-eicosenoyl-CoA" - - compartment: p - - formula: C41H68N7O18P3S + - compartment: "p" + - formula: "C41H68N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00703m + - id: "m00703m" - name: "3(S)-hydroxy-2(S),6-dimethyl-heptanoyl-CoA" - - compartment: m - - formula: C30H48N7O18P3S + - compartment: "m" + - formula: "C30H48N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00704c + - id: "m00704c" - name: "3(S)-hydroxy-3-oxo-eicosadienoyl-CoA" - - compartment: c - - formula: C41H66N7O18P3S + - compartment: "c" + - formula: "C41H66N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00705m + - id: "m00705m" - name: "3(S)-hydroxy-4(R),8-dimethyl-nonanoyl-CoA" - - compartment: m - - formula: C32H52N7O18P3S + - compartment: "m" + - formula: "C32H52N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00706m + - id: "m00706m" - name: "3(S)-hydroxy-4-methyl-pentanoyl-CoA" - - compartment: m - - formula: C27H42N7O18P3S + - compartment: "m" + - formula: "C27H42N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00707c + - id: "m00707c" - name: "3(S)-hydroxy-9-cis-eicosenoyl-CoA" - - compartment: c - - formula: C41H68N7O18P3S + - compartment: "c" + - formula: "C41H68N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00708c + - id: "m00708c" - name: "3(S)-hydroxy-all-cis-8,11,14,17-eicosatetraenoyl-CoA" - - compartment: c - - formula: C41H62N7O18P3S + - compartment: "c" + - formula: "C41H62N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00709c + - id: "m00709c" - name: "3(S)-hydroxy-cis-15-tetracosaenoyl-CoA" - - compartment: c - - formula: C45H76N7O18P3S + - compartment: "c" + - formula: "C45H76N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00709p + - id: "m00709p" - name: "3(S)-hydroxy-cis-15-tetracosaenoyl-CoA" - - compartment: p - - formula: C45H76N7O18P3S + - compartment: "p" + - formula: "C45H76N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00710c + - id: "m00710c" - name: "3(S)-hydroxy-dihomo-gamma-linolenoyl-CoA" - - compartment: c - - formula: C41H64N7O18P3S + - compartment: "c" + - formula: "C41H64N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00710m + - id: "m00710m" - name: "3(S)-hydroxy-dihomo-gamma-linolenoyl-CoA" - - compartment: m - - formula: C41H64N7O18P3S + - compartment: "m" + - formula: "C41H64N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00710p + - id: "m00710p" - name: "3(S)-hydroxy-dihomo-gamma-linolenoyl-CoA" - - compartment: p - - formula: C41H64N7O18P3S + - compartment: "p" + - formula: "C41H64N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00711c + - id: "m00711c" - name: "3(S)-hydroxy-docosa-10,13,16,19-all-cis-tetraenoyl-CoA" - - compartment: c - - formula: C43H66N7O18P3S + - compartment: "c" + - formula: "C43H66N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00712c + - id: "m00712c" - name: "3(S)-hydroxy-docosa-13,16,19-all-cis-trienoyl-CoA" - - compartment: c - - formula: C43H68N7O18P3S + - compartment: "c" + - formula: "C43H68N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00713c + - id: "m00713c" - name: "3(S)-hydroxy-docosa-7,10,13,16,19-all-cis-pentaenoyl-CoA" - - compartment: c - - formula: C43H64N7O18P3S + - compartment: "c" + - formula: "C43H64N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00714c + - id: "m00714c" - name: "3(S)-hydroxy-docosa-7,10,13,16-all-cis-tetraenoyl-CoA" - - compartment: c - - formula: C43H66N7O18P3S + - compartment: "c" + - formula: "C43H66N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00715c + - id: "m00715c" - name: "3(S)-hydroxy-hexacosenoyl-CoA" - - compartment: c - - formula: C47H80N7O18P3S + - compartment: "c" + - formula: "C47H80N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00715p + - id: "m00715p" - name: "3(S)-hydroxy-hexacosenoyl-CoA" - - compartment: p - - formula: C47H80N7O18P3S + - compartment: "p" + - formula: "C47H80N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00716c + - id: "m00716c" - name: "3(S)-hydroxy-tetracosa-12,15,18,21-all-cis-tetraenoyl-CoA" - - compartment: c - - formula: C45H70N7O18P3S + - compartment: "c" + - formula: "C45H70N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00717p + - id: "m00717p" - name: "3(S)-hydroxy-tetracosa-6,9,12,15,18-all-cis-pentaenoyl-CoA" - - compartment: p - - formula: C45H68N7O18P3S + - compartment: "p" + - formula: "C45H68N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00718c + - id: "m00718c" - name: "3(S)-hydroxy-tetracosa-9,12,15,18,21-all-cis-pentaenoyl-CoA" - - compartment: c - - formula: C45H68N7O18P3S + - compartment: "c" + - formula: "C45H68N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00719c + - id: "m00719c" - name: "3,3,5-triiodo-L-thyronine-beta-D-glucuronoside" - - compartment: c - - formula: C21H19I3NO10 + - compartment: "c" + - formula: "C21H19I3NO10" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00719r + - id: "m00719r" - name: "3,3,5-triiodo-L-thyronine-beta-D-glucuronoside" - - compartment: r - - formula: C21H19I3NO10 + - compartment: "r" + - formula: "C21H19I3NO10" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00720c + - id: "m00720c" - name: "3,3-diiodo-L-thyronine" - - compartment: c - - formula: C15H13I2NO4 + - compartment: "c" + - formula: "C15H13I2NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00720r + - id: "m00720r" - name: "3,3-diiodo-L-thyronine" - - compartment: r - - formula: C15H13I2NO4 + - compartment: "r" + - formula: "C15H13I2NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00721c + - id: "m00721c" - name: "3,3-diiodo-L-thyronine-4-O-sulfate" - - compartment: c - - formula: C15H12I2NO7S + - compartment: "c" + - formula: "C15H12I2NO7S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00722c + - id: "m00722c" - name: "3,3-diiodo-L-thyronine-beta-D-glucuronoside" - - compartment: c - - formula: C21H20I2NO10 + - compartment: "c" + - formula: "C21H20I2NO10" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00722r + - id: "m00722r" - name: "3,3-diiodo-L-thyronine-beta-D-glucuronoside" - - compartment: r - - formula: C21H20I2NO10 + - compartment: "r" + - formula: "C21H20I2NO10" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00723c + - id: "m00723c" - name: "3,4-dihydro-1,4-benzothiazine-3-carboxylate" - - compartment: c - - formula: C12H13N2O5S + - compartment: "c" + - formula: "C12H13N2O5S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00724c + - id: "m00724c" - name: "3,4-dihydro-3-hydroxy-4-S-glutathionyl bromobenzene" - - compartment: c - - formula: C16H22BrN3O7S + - compartment: "c" + - formula: "C16H22BrN3O7S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00725m + - id: "m00725m" - name: "3,4-dihydroxy-5-all-trans-decaprenylbenzoate" - - compartment: m - - formula: C57H85O4 + - compartment: "m" + - formula: "C57H85O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00726c + - id: "m00726c" - name: "3,4-dihydroxymandelaldehyde" - - compartment: c - - formula: C8H8O4 + - compartment: "c" + - formula: "C8H8O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00727c + - id: "m00727c" - name: "3,4-dihydroxymandelate" - - compartment: c - - formula: C8H7O5 + - compartment: "c" + - formula: "C8H7O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00728c + - id: "m00728c" - name: "3,4-dihydroxyphenylacetaldehyde" - - compartment: c - - formula: C8H8O3 + - compartment: "c" + - formula: "C8H8O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00729c + - id: "m00729c" - name: "3,4-dihydroxyphenylacetate" - - compartment: c - - formula: C8H7O4 + - compartment: "c" + - formula: "C8H7O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00730c + - id: "m00730c" - name: "3,4-dihydroxyphenylethyleneglycol" - - compartment: c - - formula: C8H10O4 + - compartment: "c" + - formula: "C8H10O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00730s + - id: "m00730s" - name: "3,4-dihydroxyphenylethyleneglycol" - - compartment: s - - formula: C8H10O4 + - compartment: "s" + - formula: "C8H10O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00731c + - id: "m00731c" - name: "3,4-epoxynonanal" - - compartment: c - - formula: C9H16O2 + - compartment: "c" + - formula: "C9H16O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00732c + - id: "m00732c" - name: "3,5,3,5-tetraiodo-L-thyronine-beta-D-glucuronoside" - - compartment: c - - formula: C21H18I4NO10 + - compartment: "c" + - formula: "C21H18I4NO10" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00732r + - id: "m00732r" - name: "3,5,3,5-tetraiodo-L-thyronine-beta-D-glucuronoside" - - compartment: r - - formula: C21H18I4NO10 + - compartment: "r" + - formula: "C21H18I4NO10" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00733c + - id: "m00733c" - name: "3,5,3-triiodo-L-thyronine-beta-D-glucuronoside" - - compartment: c - - formula: C21H19I3NO10 + - compartment: "c" + - formula: "C21H19I3NO10" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00733r + - id: "m00733r" - name: "3,5,3-triiodo-L-thyronine-beta-D-glucuronoside" - - compartment: r - - formula: C21H19I3NO10 + - compartment: "r" + - formula: "C21H19I3NO10" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00734c + - id: "m00734c" - name: "3,5,3-triiodothyronine-4-sulfate" - - compartment: c - - formula: C15H11I3NO7S + - compartment: "c" + - formula: "C15H11I3NO7S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00734s + - id: "m00734s" - name: "3,5,3-triiodothyronine-4-sulfate" - - compartment: s - - formula: C15H11I3NO7S + - compartment: "s" + - formula: "C15H11I3NO7S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00735c + - id: "m00735c" - name: "3,5-dihydroxy-3,4-dihydro-1,4-benzothiazine" - - compartment: c - - formula: C11H14N2O4S + - compartment: "c" + - formula: "C11H14N2O4S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00736c + - id: "m00736c" - name: "3,5-diiodo-L-thyronine" - - compartment: c - - formula: C15H13I2NO4 + - compartment: "c" + - formula: "C15H13I2NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00736r + - id: "m00736r" - name: "3,5-diiodo-L-thyronine" - - compartment: r - - formula: C15H13I2NO4 + - compartment: "r" + - formula: "C15H13I2NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00737c + - id: "m00737c" - name: "3,5-diiodo-L-thyronine-4-O-sulfate" - - compartment: c - - formula: C15H12I2NO7S + - compartment: "c" + - formula: "C15H12I2NO7S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00738c + - id: "m00738c" - name: "3,5-diiodo-L-thyronine-beta-D-glucuronoside" - - compartment: c - - formula: C21H20I2NO10 + - compartment: "c" + - formula: "C21H20I2NO10" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00738r + - id: "m00738r" - name: "3,5-diiodo-L-thyronine-beta-D-glucuronoside" - - compartment: r - - formula: C21H20I2NO10 + - compartment: "r" + - formula: "C21H20I2NO10" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00739c + - id: "m00739c" - name: "3,5-diiodo-L-tyrosine" - - compartment: c - - formula: C9H9I2NO3 + - compartment: "c" + - formula: "C9H9I2NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00740m + - id: "m00740m" - name: "3,5-dioxo-12(R)-hydroxy-eicosa-(8E,10E,14Z)-trienoyl-CoA" - - compartment: m - - formula: C41H60N7O20P3S + - compartment: "m" + - formula: "C41H60N7O20P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00740p + - id: "m00740p" - name: "3,5-dioxo-12(R)-hydroxy-eicosa-(8E,10E,14Z)-trienoyl-CoA" - - compartment: p - - formula: C41H60N7O20P3S + - compartment: "p" + - formula: "C41H60N7O20P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00741m + - id: "m00741m" - name: "3,5-dioxo-12(S)-hydroxy-eicosa-(8E,10E,14Z)-trienoyl-CoA" - - compartment: m - - formula: C41H60N7O20P3S + - compartment: "m" + - formula: "C41H60N7O20P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00741p + - id: "m00741p" - name: "3,5-dioxo-12(S)-hydroxy-eicosa-(8E,10E,14Z)-trienoyl-CoA" - - compartment: p - - formula: C41H60N7O20P3S + - compartment: "p" + - formula: "C41H60N7O20P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00742c + - id: "m00742c" - name: "3,7,24THCA" - - compartment: c - - formula: C27H45O5 + - compartment: "c" + - formula: "C27H45O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00742m + - id: "m00742m" - name: "3,7,24THCA" - - compartment: m - - formula: C27H45O5 + - compartment: "m" + - formula: "C27H45O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00743c + - id: "m00743c" - name: "3,7,24THCA-CoA" - - compartment: c - - formula: C48H76N7O20P3S + - compartment: "c" + - formula: "C48H76N7O20P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00743p + - id: "m00743p" - name: "3,7,24THCA-CoA" - - compartment: p - - formula: C48H76N7O20P3S + - compartment: "p" + - formula: "C48H76N7O20P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00744c + - id: "m00744c" - name: "3,8-LD1" - - compartment: c - - formula: C66H111N4O38RCO + - compartment: "c" + - formula: "C66H111N4O38RCO" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00744g + - id: "m00744g" - name: "3,8-LD1" - - compartment: g - - formula: C66H111N4O38RCO + - compartment: "g" + - formula: "C66H111N4O38RCO" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00744s + - id: "m00744s" - name: "3,8-LD1" - - compartment: s - - formula: C66H111N4O38RCO + - compartment: "s" + - formula: "C66H111N4O38RCO" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00745c + - id: "m00745c" - name: "3alpha,12alpha-dihydroxy-5beta-cholanate" - - compartment: c - - formula: C24H39O4 + - compartment: "c" + - formula: "C24H39O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00745r + - id: "m00745r" - name: "3alpha,12alpha-dihydroxy-5beta-cholanate" - - compartment: r - - formula: C24H39O4 + - compartment: "r" + - formula: "C24H39O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00746m + - id: "m00746m" - name: "3alpha,7alpha,12alpha,24(S)-tetrahydroxy-5beta-cholestan-27-al" - - compartment: m - - formula: C27H46O5 + - compartment: "m" + - formula: "C27H46O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00747r + - id: "m00747r" - name: "3alpha,7alpha,12alpha,25-tetrahydroxy-5beta-cholestane-24-one" - - compartment: r - - formula: C27H46O5 + - compartment: "r" + - formula: "C27H46O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00748m + - id: "m00748m" - name: "3alpha,7alpha,12alpha-trihydroxy-5beta-24-oxocholestanoyl-CoA" - - compartment: m - - formula: C48H74N7O21P3S + - compartment: "m" + - formula: "C48H74N7O21P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00748p + - id: "m00748p" - name: "3alpha,7alpha,12alpha-trihydroxy-5beta-24-oxocholestanoyl-CoA" - - compartment: p - - formula: C48H74N7O21P3S + - compartment: "p" + - formula: "C48H74N7O21P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00749m + - id: "m00749m" - name: "3alpha,7alpha,12alpha-trihydroxy-5beta-cholest-24-enoyl-CoA" - - compartment: m - - formula: C48H74N7O20P3S + - compartment: "m" + - formula: "C48H74N7O20P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00749p + - id: "m00749p" - name: "3alpha,7alpha,12alpha-trihydroxy-5beta-cholest-24-enoyl-CoA" - - compartment: p - - formula: C48H74N7O20P3S + - compartment: "p" + - formula: "C48H74N7O20P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00750c + - id: "m00750c" - name: "3alpha,7alpha,12alpha-trihydroxy-5beta-cholestan-26-al" - - compartment: c - - formula: C27H46O4 + - compartment: "c" + - formula: "C27H46O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00750m + - id: "m00750m" - name: "3alpha,7alpha,12alpha-trihydroxy-5beta-cholestan-26-al" - - compartment: m - - formula: C27H46O4 + - compartment: "m" + - formula: "C27H46O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00751m + - id: "m00751m" - name: "3alpha,7alpha,12alpha-trihydroxy-5beta-cholestan-27-al" - - compartment: m - - formula: C27H46O4 + - compartment: "m" + - formula: "C27H46O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00752c + - id: "m00752c" - name: "3alpha,7alpha,12alpha-trihydroxy-5beta-cholestanate" - - compartment: c - - formula: C27H45O5 + - compartment: "c" + - formula: "C27H45O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00752m + - id: "m00752m" - name: "3alpha,7alpha,12alpha-trihydroxy-5beta-cholestanate" - - compartment: m - - formula: C27H45O5 + - compartment: "m" + - formula: "C27H45O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00752p + - id: "m00752p" - name: "3alpha,7alpha,12alpha-trihydroxy-5beta-cholestanate" - - compartment: p - - formula: C27H45O5 + - compartment: "p" + - formula: "C27H45O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00752r + - id: "m00752r" - name: "3alpha,7alpha,12alpha-trihydroxy-5beta-cholestanate" - - compartment: r - - formula: C27H45O5 + - compartment: "r" + - formula: "C27H45O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00753m + - id: "m00753m" - name: "3alpha,7alpha,24(S)-trihydroxy-5beta-cholestan-27-al" - - compartment: m - - formula: C27H46O4 + - compartment: "m" + - formula: "C27H46O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00754p + - id: "m00754p" - name: "3alpha,7alpha-dihydroxy-24-oxo-5beta-cholestanoyl coa" - - compartment: p - - formula: C48H74N7O20P3S + - compartment: "p" + - formula: "C48H74N7O20P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00755p + - id: "m00755p" - name: "3alpha,7alpha-dihydroxy-5beta-cholest-24-enoyl-CoA" - - compartment: p - - formula: C48H74N7O19P3S + - compartment: "p" + - formula: "C48H74N7O19P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00756c + - id: "m00756c" - name: "3alpha,7alpha-dihydroxy-5beta-cholestan-26-al" - - compartment: c - - formula: C27H46O3 + - compartment: "c" + - formula: "C27H46O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00756m + - id: "m00756m" - name: "3alpha,7alpha-dihydroxy-5beta-cholestan-26-al" - - compartment: m - - formula: C27H46O3 + - compartment: "m" + - formula: "C27H46O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00757m + - id: "m00757m" - name: "3alpha,7alpha-dihydroxy-5beta-cholestan-27-al" - - compartment: m - - formula: C27H46O3 + - compartment: "m" + - formula: "C27H46O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00758c + - id: "m00758c" - name: "3alpha,7alpha-dihydroxy-5beta-cholestanate" - - compartment: c - - formula: C27H45O4 + - compartment: "c" + - formula: "C27H45O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00758m + - id: "m00758m" - name: "3alpha,7alpha-dihydroxy-5beta-cholestanate" - - compartment: m - - formula: C27H45O4 + - compartment: "m" + - formula: "C27H45O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00758p + - id: "m00758p" - name: "3alpha,7alpha-dihydroxy-5beta-cholestanate" - - compartment: p - - formula: C27H45O4 + - compartment: "p" + - formula: "C27H45O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00758r + - id: "m00758r" - name: "3alpha,7alpha-dihydroxy-5beta-cholestanate" - - compartment: r - - formula: C27H45O4 + - compartment: "r" + - formula: "C27H45O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00759c + - id: "m00759c" - name: "3alpha-hydroxy-5alpha-pregnan-20-one" - - compartment: c - - formula: C21H34O2 + - compartment: "c" + - formula: "C21H34O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00760c + - id: "m00760c" - name: "3-amino-propanal" - - compartment: c - - formula: C3H8NO + - compartment: "c" + - formula: "C3H8NO" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00761m + - id: "m00761m" - name: "3beta,7alpha-dihydroxy-5-cholestenoate" - - compartment: m - - formula: C27H43O4 + - compartment: "m" + - formula: "C27H43O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00762g + - id: "m00762g" - name: "3-beta-D-glucuronosyl-3-beta-D-galactosyl-4-beta-D-galactosyl-O-beta-D-xylosylprotein" - - compartment: g - - formula: C23H36O20X + - compartment: "g" + - formula: "C23H36O20X" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00763m + - id: "m00763m" - name: "3beta-hydroxy-5-cholestenal" - - compartment: m - - formula: C27H44O2 + - compartment: "m" + - formula: "C27H44O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00764m + - id: "m00764m" - name: "3beta-hydroxy-5-cholestene-27-oate" - - compartment: m - - formula: C27H43O3 + - compartment: "m" + - formula: "C27H43O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00765m + - id: "m00765m" - name: "3-carboxy-1-hydroxypropyl-ThPP" - - compartment: m - - formula: C16H21N4O10P2S + - compartment: "m" + - formula: "C16H21N4O10P2S" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00766c + - id: "m00766c" - name: "3-carboxy-alpha-chromanol" - - compartment: c - - formula: C16H21O4 + - compartment: "c" + - formula: "C16H21O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00766m + - id: "m00766m" - name: "3-carboxy-alpha-chromanol" - - compartment: m - - formula: C16H21O4 + - compartment: "m" + - formula: "C16H21O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00767m + - id: "m00767m" - name: "3-decaprenyl-4-hydroxybenzoate" - - compartment: m - - formula: C57H85O3 + - compartment: "m" + - formula: "C57H85O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00768c + - id: "m00768c" - name: "3-dehydro-L-gulonate" - - compartment: c - - formula: C6H9O7 + - compartment: "c" + - formula: "C6H9O7" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00769c + - id: "m00769c" - name: "3-dehydrosphinganine" - - compartment: c - - formula: C18H38NO2 + - compartment: "c" + - formula: "C18H38NO2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00770m + - id: "m00770m" - name: "3-demethylubiquinol-10" - - compartment: m - - formula: C58H90O4 + - compartment: "m" + - formula: "C58H90O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00771c + - id: "m00771c" - name: "3-deoxy-D-glycero-D-galacto-2-nonulosonic acid" - - compartment: c - - formula: C9H15O9 + - compartment: "c" + - formula: "C9H15O9" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00771s + - id: "m00771s" - name: "3-deoxy-D-glycero-D-galacto-2-nonulosonic acid" - - compartment: s - - formula: C9H15O9 + - compartment: "s" + - formula: "C9H15O9" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00772c + - id: "m00772c" - name: "3-deoxy-D-glycero-D-galacto-2-nonulosonic acid-9-phosphate" - - compartment: c - - formula: C9H14O12P + - compartment: "c" + - formula: "C9H14O12P" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00773m + - id: "m00773m" - name: "3-hydroxy-2,6-dimethyl-5-methylene-heptanoyl-CoA" - - compartment: m - - formula: C31H48N7O18P3S + - compartment: "m" + - formula: "C31H48N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00773p + - id: "m00773p" - name: "3-hydroxy-2,6-dimethyl-5-methylene-heptanoyl-CoA" - - compartment: p - - formula: C31H48N7O18P3S + - compartment: "p" + - formula: "C31H48N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00774c + - id: "m00774c" - name: "3-hydroxyacyl group of bacterial toxin" - - compartment: c - - formula: C52H91N2O23P2R5 + - compartment: "c" + - formula: "C52H91N2O23P2R5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00775c + - id: "m00775c" - name: "3-hydroxyanthranilate" - - compartment: c - - formula: C7H7NO3 + - compartment: "c" + - formula: "C7H7NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00776c + - id: "m00776c" - name: "3-hydroxydocosanoyl-CoA" - - compartment: c - - formula: C43H74N7O18P3S + - compartment: "c" + - formula: "C43H74N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00776m + - id: "m00776m" - name: "3-hydroxydocosanoyl-CoA" - - compartment: m - - formula: C43H74N7O18P3S + - compartment: "m" + - formula: "C43H74N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00776p + - id: "m00776p" - name: "3-hydroxydocosanoyl-CoA" - - compartment: p - - formula: C43H74N7O18P3S + - compartment: "p" + - formula: "C43H74N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00777c + - id: "m00777c" - name: "3-hydroxyeicosanoyl-CoA" - - compartment: c - - formula: C41H70N7O18P3S + - compartment: "c" + - formula: "C41H70N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00777m + - id: "m00777m" - name: "3-hydroxyeicosanoyl-CoA" - - compartment: m - - formula: C41H70N7O18P3S + - compartment: "m" + - formula: "C41H70N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00777p + - id: "m00777p" - name: "3-hydroxyeicosanoyl-CoA" - - compartment: p - - formula: C41H70N7O18P3S + - compartment: "p" + - formula: "C41H70N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00778c + - id: "m00778c" - name: "3-hydroxyheneicosanoyl-CoA" - - compartment: c - - formula: C42H72N7O18P3S + - compartment: "c" + - formula: "C42H72N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00778m + - id: "m00778m" - name: "3-hydroxyheneicosanoyl-CoA" - - compartment: m - - formula: C42H72N7O18P3S + - compartment: "m" + - formula: "C42H72N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00779c + - id: "m00779c" - name: "3-hydroxyheptadecanoyl-[ACP]" - - compartment: c - - formula: C28H53N2O9PRS + - compartment: "c" + - formula: "C28H53N2O9PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00780m + - id: "m00780m" - name: "3-hydroxyheptadecanoyl-CoA" - - compartment: m - - formula: C38H64N7O18P3S + - compartment: "m" + - formula: "C38H64N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00781c + - id: "m00781c" - name: "3-hydroxyheptanoyl-[ACP]" - - compartment: c - - formula: C18H33N2O9PRS + - compartment: "c" + - formula: "C18H33N2O9PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00782m + - id: "m00782m" - name: "3-hydroxyheptanoyl-CoA" - - compartment: m - - formula: C28H44N7O18P3S + - compartment: "m" + - formula: "C28H44N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00783c + - id: "m00783c" - name: "3-hydroxyhexacosanoyl-CoA" - - compartment: c - - formula: C47H82N7O18P3S + - compartment: "c" + - formula: "C47H82N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00783p + - id: "m00783p" - name: "3-hydroxyhexacosanoyl-CoA" - - compartment: p - - formula: C47H82N7O18P3S + - compartment: "p" + - formula: "C47H82N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00784m + - id: "m00784m" - name: "3-hydroxyisobutyrate" - - compartment: m - - formula: C4H7O3 + - compartment: "m" + - formula: "C4H7O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00785m + - id: "m00785m" - name: "3-hydroxyisobutyryl-CoA" - - compartment: m - - formula: C25H38N7O18P3S + - compartment: "m" + - formula: "C25H38N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00786c + - id: "m00786c" - name: "3-hydroxykynurenamine" - - compartment: c - - formula: C9H13N2O2 + - compartment: "c" + - formula: "C9H13N2O2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00787c + - id: "m00787c" - name: "3-hydroxykynurenine-O-beta-D-glucoside" - - compartment: c - - formula: C16H22N2O9 + - compartment: "c" + - formula: "C16H22N2O9" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00788c + - id: "m00788c" - name: "3-hydroxy-L-kynurenine" - - compartment: c - - formula: C10H12N2O4 + - compartment: "c" + - formula: "C10H12N2O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00789c + - id: "m00789c" - name: "3-hydroxy-N6,N6,N6-trimethyl-L-lysine" - - compartment: c - - formula: C9H20N2O3 + - compartment: "c" + - formula: "C9H20N2O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00790c + - id: "m00790c" - name: "3-hydroxynonadecanoyl-CoA" - - compartment: c - - formula: C40H68N7O18P3S + - compartment: "c" + - formula: "C40H68N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00790m + - id: "m00790m" - name: "3-hydroxynonadecanoyl-CoA" - - compartment: m - - formula: C40H68N7O18P3S + - compartment: "m" + - formula: "C40H68N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00791c + - id: "m00791c" - name: "3-hydroxynonanoyl-[ACP]" - - compartment: c - - formula: C20H37N2O9PRS + - compartment: "c" + - formula: "C20H37N2O9PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00792m + - id: "m00792m" - name: "3-hydroxynonanoyl-CoA" - - compartment: m - - formula: C30H48N7O18P3S + - compartment: "m" + - formula: "C30H48N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00793c + - id: "m00793c" - name: "3-hydroxyoctadecanoyl-CoA" - - compartment: c - - formula: C39H66N7O18P3S + - compartment: "c" + - formula: "C39H66N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00793m + - id: "m00793m" - name: "3-hydroxyoctadecanoyl-CoA" - - compartment: m - - formula: C39H66N7O18P3S + - compartment: "m" + - formula: "C39H66N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00793p + - id: "m00793p" - name: "3-hydroxyoctadecanoyl-CoA" - - compartment: p - - formula: C39H66N7O18P3S + - compartment: "p" + - formula: "C39H66N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00794c + - id: "m00794c" - name: "3-hydroxypentadecanoyl-[ACP]" - - compartment: c - - formula: C26H49N2O9PRS + - compartment: "c" + - formula: "C26H49N2O9PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00795m + - id: "m00795m" - name: "3-hydroxypentadecanoyl-CoA" - - compartment: m - - formula: C36H60N7O18P3S + - compartment: "m" + - formula: "C36H60N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00796c + - id: "m00796c" - name: "3-hydroxypentanoyl-[ACP]" - - compartment: c - - formula: C16H29N2O9PRS + - compartment: "c" + - formula: "C16H29N2O9PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00797m + - id: "m00797m" - name: "3-hydroxypentanoyl-CoA" - - compartment: m - - formula: C26H40N7O18P3S + - compartment: "m" + - formula: "C26H40N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00798p + - id: "m00798p" - name: "3-hydroxypristanoyl-CoA" - - compartment: p - - formula: C40H68N7O18P3S + - compartment: "p" + - formula: "C40H68N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00799m + - id: "m00799m" - name: "3-hydroxypropionyl-CoA" - - compartment: m - - formula: C24H36N7O18P3S + - compartment: "m" + - formula: "C24H36N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00800c + - id: "m00800c" - name: "3-hydroxytetracosanoyl-CoA" - - compartment: c - - formula: C45H78N7O18P3S + - compartment: "c" + - formula: "C45H78N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00800p + - id: "m00800p" - name: "3-hydroxytetracosanoyl-CoA" - - compartment: p - - formula: C45H78N7O18P3S + - compartment: "p" + - formula: "C45H78N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00801p + - id: "m00801p" - name: "3-hydroxy-THA-CoA" - - compartment: p - - formula: C45H66N7O18P3S + - compartment: "p" + - formula: "C45H66N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00802c + - id: "m00802c" - name: "3-hydroxytricosanoyl-CoA" - - compartment: c - - formula: C44H76N7O18P3S + - compartment: "c" + - formula: "C44H76N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00803c + - id: "m00803c" - name: "3-hydroxytridecanoyl-[ACP]" - - compartment: c - - formula: C24H45N2O9PRS + - compartment: "c" + - formula: "C24H45N2O9PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00804m + - id: "m00804m" - name: "3-hydroxytridecanoyl-CoA" - - compartment: m - - formula: C34H56N7O18P3S + - compartment: "m" + - formula: "C34H56N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00805c + - id: "m00805c" - name: "3-hydroxyundecanoyl-[ACP]" - - compartment: c - - formula: C22H41N2O9PRS + - compartment: "c" + - formula: "C22H41N2O9PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00806m + - id: "m00806m" - name: "3-hydroxyundecanoyl-CoA" - - compartment: m - - formula: C32H52N7O18P3S + - compartment: "m" + - formula: "C32H52N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00807c + - id: "m00807c" - name: "3-iodo-L-tyrosine" - - compartment: c - - formula: C9H10INO3 + - compartment: "c" + - formula: "C9H10INO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00808c + - id: "m00808c" - name: "3-isoLM1" - - compartment: c - - formula: C56H96N3O31R + - compartment: "c" + - formula: "C56H96N3O31R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00809c + - id: "m00809c" - name: "3-keto-4-methylzymosterol" - - compartment: c - - formula: C28H44O + - compartment: "c" + - formula: "C28H44O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00810s + - id: "m00810s" - name: "3-keto-beta-D-galactose" - - compartment: s - - formula: C6H10O6 + - compartment: "s" + - formula: "C6H10O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00811c + - id: "m00811c" - name: "3-keto-eicosa-8,11,14,17-all-cis-tetraenoyl-CoA" - - compartment: c - - formula: C41H60N7O18P3S + - compartment: "c" + - formula: "C41H60N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00812s + - id: "m00812s" - name: "3-ketolactose" - - compartment: s - - formula: C12H20O11 + - compartment: "s" + - formula: "C12H20O11" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00813p + - id: "m00813p" - name: "3-ketopristanoyl-CoA" - - compartment: p - - formula: C40H66N7O18P3S + - compartment: "p" + - formula: "C40H66N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00814p + - id: "m00814p" - name: "3-keto-THA-CoA" - - compartment: p - - formula: C45H64N7O18P3S + - compartment: "p" + - formula: "C45H64N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00815c + - id: "m00815c" - name: "3-mercaptolactate" - - compartment: c - - formula: C3H5O3S + - compartment: "c" + - formula: "C3H5O3S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00816c + - id: "m00816c" - name: "3-mercaptolactate-cysteine-disulfide" - - compartment: c - - formula: C6H10O5S2N + - compartment: "c" + - formula: "C6H10O5S2N" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00816s + - id: "m00816s" - name: "3-mercaptolactate-cysteine-disulfide" - - compartment: s - - formula: C6H10O5S2N + - compartment: "s" + - formula: "C6H10O5S2N" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00817m + - id: "m00817m" - name: "3-methoxy-4-hydroxy-5-all-trans-decaprenylbenzoate" - - compartment: m - - formula: C58H87O4 + - compartment: "m" + - formula: "C58H87O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00818c + - id: "m00818c" - name: "3-methoxy-4-hydroxyphenylacetaldehyde" - - compartment: c - - formula: C9H10O3 + - compartment: "c" + - formula: "C9H10O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00819c + - id: "m00819c" - name: "3-methoxy-4-hydroxyphenylethyleneglycol" - - compartment: c - - formula: C9H12O4 + - compartment: "c" + - formula: "C9H12O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00820c + - id: "m00820c" - name: "3-methoxy-4-hydroxyphenylglycolaldehyde" - - compartment: c - - formula: C9H10O4 + - compartment: "c" + - formula: "C9H10O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00821c + - id: "m00821c" - name: "3-methoxytyramine" - - compartment: c - - formula: C9H14NO2 + - compartment: "c" + - formula: "C9H14NO2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00822c + - id: "m00822c" - name: "3-methyl-2-oxobutanoate-dehydrogenase" - - compartment: c - - formula: C4H6N2O3R2 + - compartment: "c" + - formula: "C4H6N2O3R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00823c + - id: "m00823c" - name: "3-methyl-2-oxobutanoate-dehydrogenase-phosphate" - - compartment: c - - formula: C4H7N2O6PR2 + - compartment: "c" + - formula: "C4H7N2O6PR2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00824c + - id: "m00824c" - name: "3-methyl-2-oxobutyrate" - - compartment: c - - formula: C5H7O3 + - compartment: "c" + - formula: "C5H7O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00824m + - id: "m00824m" - name: "3-methyl-2-oxobutyrate" - - compartment: m - - formula: C5H7O3 + - compartment: "m" + - formula: "C5H7O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00825m + - id: "m00825m" - name: "3-methylcrotonoylglycine" - - compartment: m - - formula: C7H10NO3 + - compartment: "m" + - formula: "C7H10NO3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00826m + - id: "m00826m" - name: "3-methylcrotonyl-CoA" - - compartment: m - - formula: C26H38N7O17P3S + - compartment: "m" + - formula: "C26H38N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00827m + - id: "m00827m" - name: "3-methylglutaconyl-CoA" - - compartment: m - - formula: C27H37N7O19P3S + - compartment: "m" + - formula: "C27H37N7O19P3S" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00828c + - id: "m00828c" - name: "3-monoiodo-L-thyronine" - - compartment: c - - formula: C15H14INO4 + - compartment: "c" + - formula: "C15H14INO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00828r + - id: "m00828r" - name: "3-monoiodo-L-thyronine" - - compartment: r - - formula: C15H14INO4 + - compartment: "r" + - formula: "C15H14INO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00829c + - id: "m00829c" - name: "3-monoiodo-L-thyronine-4-O-sulfate" - - compartment: c - - formula: C15H13INO7S + - compartment: "c" + - formula: "C15H13INO7S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00830c + - id: "m00830c" - name: "3-O-methyldopa" - - compartment: c - - formula: C10H13NO4 + - compartment: "c" + - formula: "C10H13NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00831m + - id: "m00831m" - name: "3-oxo-(2S)-methylisocapryloyl-CoA" - - compartment: m - - formula: C30H46N7O18P3S + - compartment: "m" + - formula: "C30H46N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00832p + - id: "m00832p" - name: "3-oxo-(2S,6R,10R)-trimethyl-hendecanoyl-CoA" - - compartment: p - - formula: C35H56N7O18P3S + - compartment: "p" + - formula: "C35H56N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00833p + - id: "m00833p" - name: "3-oxo-(4R,8R,12R)-trimethyl-tridecanoyl-CoA" - - compartment: p - - formula: C37H60N7O18P3S + - compartment: "p" + - formula: "C37H60N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00834m + - id: "m00834m" - name: "3-oxo-(6Z,9Z,12Z)-octadecatrienoyl-CoA" - - compartment: m - - formula: C39H58N7O18P3S + - compartment: "m" + - formula: "C39H58N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00834p + - id: "m00834p" - name: "3-oxo-(6Z,9Z,12Z)-octadecatrienoyl-CoA" - - compartment: p - - formula: C39H58N7O18P3S + - compartment: "p" + - formula: "C39H58N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00835c + - id: "m00835c" - name: "3-oxo-10(R)-hydroxy-octadeca-(6E,8E,12Z)-trienoate" - - compartment: c - - formula: C18H27O4 + - compartment: "c" + - formula: "C18H27O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00835m + - id: "m00835m" - name: "3-oxo-10(R)-hydroxy-octadeca-(6E,8E,12Z)-trienoate" - - compartment: m - - formula: C18H27O4 + - compartment: "m" + - formula: "C18H27O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00835p + - id: "m00835p" - name: "3-oxo-10(R)-hydroxy-octadeca-(6E,8E,12Z)-trienoate" - - compartment: p - - formula: C18H27O4 + - compartment: "p" + - formula: "C18H27O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00836m + - id: "m00836m" - name: "3-oxo-10(R)-hydroxy-octadeca-(6E,8E,12Z)-trienoyl-CoA" - - compartment: m - - formula: C39H58N7O19P3S + - compartment: "m" + - formula: "C39H58N7O19P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00836p + - id: "m00836p" - name: "3-oxo-10(R)-hydroxy-octadeca-(6E,8E,12Z)-trienoyl-CoA" - - compartment: p - - formula: C39H58N7O19P3S + - compartment: "p" + - formula: "C39H58N7O19P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00837c + - id: "m00837c" - name: "3-oxo-10(S)-hydroxy-octadeca-(6E,8E,12Z)-trienoate" - - compartment: c - - formula: C18H27O4 + - compartment: "c" + - formula: "C18H27O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00837m + - id: "m00837m" - name: "3-oxo-10(S)-hydroxy-octadeca-(6E,8E,12Z)-trienoate" - - compartment: m - - formula: C18H27O4 + - compartment: "m" + - formula: "C18H27O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00837p + - id: "m00837p" - name: "3-oxo-10(S)-hydroxy-octadeca-(6E,8E,12Z)-trienoate" - - compartment: p - - formula: C18H27O4 + - compartment: "p" + - formula: "C18H27O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00838m + - id: "m00838m" - name: "3-oxo-10(S)-hydroxy-octadeca-(6E,8E,12Z)-trienoyl-CoA" - - compartment: m - - formula: C39H58N7O19P3S + - compartment: "m" + - formula: "C39H58N7O19P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00838p + - id: "m00838p" - name: "3-oxo-10(S)-hydroxy-octadeca-(6E,8E,12Z)-trienoyl-CoA" - - compartment: p - - formula: C39H58N7O19P3S + - compartment: "p" + - formula: "C39H58N7O19P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00839c + - id: "m00839c" - name: "3-oxo-11cis-docosenoyl-CoA" - - compartment: c - - formula: C43H70N7O18P3S + - compartment: "c" + - formula: "C43H70N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00840c + - id: "m00840c" - name: "3-oxo-11-cis-eicosenoyl-CoA" - - compartment: c - - formula: C41H66N7O18P3S + - compartment: "c" + - formula: "C41H66N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00840m + - id: "m00840m" - name: "3-oxo-11-cis-eicosenoyl-CoA" - - compartment: m - - formula: C41H66N7O18P3S + - compartment: "m" + - formula: "C41H66N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00840p + - id: "m00840p" - name: "3-oxo-11-cis-eicosenoyl-CoA" - - compartment: p - - formula: C41H66N7O18P3S + - compartment: "p" + - formula: "C41H66N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00841m + - id: "m00841m" - name: "3-oxo-11-cis-octadecenoyl-CoA" - - compartment: m - - formula: C39H62N7O18P3S + - compartment: "m" + - formula: "C39H62N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00841p + - id: "m00841p" - name: "3-oxo-11-cis-octadecenoyl-CoA" - - compartment: p - - formula: C39H62N7O18P3S + - compartment: "p" + - formula: "C39H62N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00842c + - id: "m00842c" - name: "3-oxo-13cis-docosenoyl-CoA" - - compartment: c - - formula: C43H70N7O18P3S + - compartment: "c" + - formula: "C43H70N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00842m + - id: "m00842m" - name: "3-oxo-13cis-docosenoyl-CoA" - - compartment: m - - formula: C43H70N7O18P3S + - compartment: "m" + - formula: "C43H70N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00842p + - id: "m00842p" - name: "3-oxo-13cis-docosenoyl-CoA" - - compartment: p - - formula: C43H70N7O18P3S + - compartment: "p" + - formula: "C43H70N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00843c + - id: "m00843c" - name: "3-oxo-13-cis-eicosenoyl-CoA" - - compartment: c - - formula: C41H66N7O18P3S + - compartment: "c" + - formula: "C41H66N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00843m + - id: "m00843m" - name: "3-oxo-13-cis-eicosenoyl-CoA" - - compartment: m - - formula: C41H66N7O18P3S + - compartment: "m" + - formula: "C41H66N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00843p + - id: "m00843p" - name: "3-oxo-13-cis-eicosenoyl-CoA" - - compartment: p - - formula: C41H66N7O18P3S + - compartment: "p" + - formula: "C41H66N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00844m + - id: "m00844m" - name: "3-oxo-4(R),8-dimethyl-nonanoyl-CoA" - - compartment: m - - formula: C32H50N7O18P3S + - compartment: "m" + - formula: "C32H50N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00845m + - id: "m00845m" - name: "3-oxo-4-methyl-pentanoyl-CoA" - - compartment: m - - formula: C27H40N7O18P3S + - compartment: "m" + - formula: "C27H40N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00846m + - id: "m00846m" - name: "3-oxo-5(S),12(R)-dihydroxy-eicosa-8-trans-6,14-cis-trienoyl-CoA" - - compartment: m - - formula: C41H62N7O20P3S + - compartment: "m" + - formula: "C41H62N7O20P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00846p + - id: "m00846p" - name: "3-oxo-5(S),12(R)-dihydroxy-eicosa-8-trans-6,14-cis-trienoyl-CoA" - - compartment: p - - formula: C41H62N7O20P3S + - compartment: "p" + - formula: "C41H62N7O20P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00847m + - id: "m00847m" - name: "3-oxo-6(R)-hydroxy-tetradec-8-cis-enoate" - - compartment: m - - formula: C14H23O4 + - compartment: "m" + - formula: "C14H23O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00848m + - id: "m00848m" - name: "3-oxo-6(S)-hydroxy-tetradec-(8Z)-enoate" - - compartment: m - - formula: C14H23O4 + - compartment: "m" + - formula: "C14H23O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00849m + - id: "m00849m" - name: "3-oxo-7-hexadecenoyl-CoA" - - compartment: m - - formula: C37H58N7O18P3S + - compartment: "m" + - formula: "C37H58N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00849p + - id: "m00849p" - name: "3-oxo-7-hexadecenoyl-CoA" - - compartment: p - - formula: C37H58N7O18P3S + - compartment: "p" + - formula: "C37H58N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00850m + - id: "m00850m" - name: "3-oxo-8(R)-hydroxy-hexadeca-(6E,10Z)-dienoate" - - compartment: m - - formula: C16H25O4 + - compartment: "m" + - formula: "C16H25O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00851m + - id: "m00851m" - name: "3-oxo-8(S)-hydroxy-hexadeca-(6E,10Z)-dienoate" - - compartment: m - - formula: C16H25O4 + - compartment: "m" + - formula: "C16H25O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00852c + - id: "m00852c" - name: "3-oxo-9-cis-eicosenoyl-CoA" - - compartment: c - - formula: C41H66N7O18P3S + - compartment: "c" + - formula: "C41H66N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00853p + - id: "m00853p" - name: "3-oxo-all-cis-6,9,12,15,18-tetracosapentaenoyl-CoA" - - compartment: p - - formula: C45H66N7O18P3S + - compartment: "p" + - formula: "C45H66N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00854m + - id: "m00854m" - name: "3-oxo-cis,cis-5,8-tetradecadienoyl-CoA" - - compartment: m - - formula: C35H52N7O18P3S + - compartment: "m" + - formula: "C35H52N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00854p + - id: "m00854p" - name: "3-oxo-cis,cis-5,8-tetradecadienoyl-CoA" - - compartment: p - - formula: C35H52N7O18P3S + - compartment: "p" + - formula: "C35H52N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00855m + - id: "m00855m" - name: "3-oxo-cis,cis-7,10-hexadecadienoyl-CoA" - - compartment: m - - formula: C37H56N7O18P3S + - compartment: "m" + - formula: "C37H56N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00855p + - id: "m00855p" - name: "3-oxo-cis,cis-7,10-hexadecadienoyl-CoA" - - compartment: p - - formula: C37H56N7O18P3S + - compartment: "p" + - formula: "C37H56N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00856c + - id: "m00856c" - name: "3-oxo-cis-15-tetracosaenoyl-CoA" - - compartment: c - - formula: C45H74N7O18P3S + - compartment: "c" + - formula: "C45H74N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00856p + - id: "m00856p" - name: "3-oxo-cis-15-tetracosaenoyl-CoA" - - compartment: p - - formula: C45H74N7O18P3S + - compartment: "p" + - formula: "C45H74N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00857c + - id: "m00857c" - name: "3-oxodecanoyl-[ACP]" - - compartment: c - - formula: C21H37N2O9PRS + - compartment: "c" + - formula: "C21H37N2O9PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00858m + - id: "m00858m" - name: "3-oxodecanoyl-CoA" - - compartment: m - - formula: C31H48N7O18P3S + - compartment: "m" + - formula: "C31H48N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00858p + - id: "m00858p" - name: "3-oxodecanoyl-CoA" - - compartment: p - - formula: C31H48N7O18P3S + - compartment: "p" + - formula: "C31H48N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00859c + - id: "m00859c" - name: "3-oxo-dihomo-gamma-linolenoyl-CoA" - - compartment: c - - formula: C41H62N7O18P3S + - compartment: "c" + - formula: "C41H62N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00859m + - id: "m00859m" - name: "3-oxo-dihomo-gamma-linolenoyl-CoA" - - compartment: m - - formula: C41H62N7O18P3S + - compartment: "m" + - formula: "C41H62N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00859p + - id: "m00859p" - name: "3-oxo-dihomo-gamma-linolenoyl-CoA" - - compartment: p - - formula: C41H62N7O18P3S + - compartment: "p" + - formula: "C41H62N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00860c + - id: "m00860c" - name: "3-oxodocasa-cis,cis-13,16-dienoyl-CoA" - - compartment: c - - formula: C43H68N7O18P3S + - compartment: "c" + - formula: "C43H68N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00861c + - id: "m00861c" - name: "3-oxo-docosa-10,13,16,19-all-cis-tetraenoyl-CoA" - - compartment: c - - formula: C43H64N7O18P3S + - compartment: "c" + - formula: "C43H64N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00862c + - id: "m00862c" - name: "3-oxo-docosa-13,16,19-all-cis-trienoyl-CoA" - - compartment: c - - formula: C43H66N7O18P3S + - compartment: "c" + - formula: "C43H66N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00863c + - id: "m00863c" - name: "3-oxo-docosa-7,10,13,16,19-all-cis-pentaenoyl-CoA" - - compartment: c - - formula: C43H62N7O18P3S + - compartment: "c" + - formula: "C43H62N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00864c + - id: "m00864c" - name: "3-oxo-docosa-7,10,13,16-all-cis-tetraenoyl-CoA" - - compartment: c - - formula: C43H64N7O18P3S + - compartment: "c" + - formula: "C43H64N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00865c + - id: "m00865c" - name: "3-oxo-docosa-cis,cis,cis-10,13,16-trienoyl-CoA" - - compartment: c - - formula: C43H66N7O18P3S + - compartment: "c" + - formula: "C43H66N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00866c + - id: "m00866c" - name: "3-oxodocosanoyl-CoA" - - compartment: c - - formula: C43H72N7O18P3S + - compartment: "c" + - formula: "C43H72N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00866m + - id: "m00866m" - name: "3-oxodocosanoyl-CoA" - - compartment: m - - formula: C43H72N7O18P3S + - compartment: "m" + - formula: "C43H72N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00866p + - id: "m00866p" - name: "3-oxodocosanoyl-CoA" - - compartment: p - - formula: C43H72N7O18P3S + - compartment: "p" + - formula: "C43H72N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00867c + - id: "m00867c" - name: "3-oxododecanoyl-[ACP]" - - compartment: c - - formula: C23H41N2O9PRS + - compartment: "c" + - formula: "C23H41N2O9PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00868m + - id: "m00868m" - name: "3-oxododecanoyl-CoA" - - compartment: m - - formula: C33H52N7O18P3S + - compartment: "m" + - formula: "C33H52N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00868p + - id: "m00868p" - name: "3-oxododecanoyl-CoA" - - compartment: p - - formula: C33H52N7O18P3S + - compartment: "p" + - formula: "C33H52N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00869c + - id: "m00869c" - name: "3-oxoeicosa-cis,cis,cis-11,14,17-trienoyl-CoA" - - compartment: c - - formula: C41H62N7O18P3S + - compartment: "c" + - formula: "C41H62N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00870c + - id: "m00870c" - name: "3-oxoeicosa-cis,cis-11,14-dienoyl-CoA" - - compartment: c - - formula: C41H64N7O18P3S + - compartment: "c" + - formula: "C41H64N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00871c + - id: "m00871c" - name: "3-oxo-eicosadienoyl-CoA" - - compartment: c - - formula: C41H64N7O18P3S + - compartment: "c" + - formula: "C41H64N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00872c + - id: "m00872c" - name: "3-oxoeicosanoyl-CoA" - - compartment: c - - formula: C41H68N7O18P3S + - compartment: "c" + - formula: "C41H68N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00872m + - id: "m00872m" - name: "3-oxoeicosanoyl-CoA" - - compartment: m - - formula: C41H68N7O18P3S + - compartment: "m" + - formula: "C41H68N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00872p + - id: "m00872p" - name: "3-oxoeicosanoyl-CoA" - - compartment: p - - formula: C41H68N7O18P3S + - compartment: "p" + - formula: "C41H68N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00873c + - id: "m00873c" - name: "3-oxoheneicosanoyl-CoA" - - compartment: c - - formula: C42H70N7O18P3S + - compartment: "c" + - formula: "C42H70N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00873m + - id: "m00873m" - name: "3-oxoheneicosanoyl-CoA" - - compartment: m - - formula: C42H70N7O18P3S + - compartment: "m" + - formula: "C42H70N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00874c + - id: "m00874c" - name: "3-oxoheptadecanoyl-[ACP]" - - compartment: c - - formula: C28H51N2O9PRS + - compartment: "c" + - formula: "C28H51N2O9PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00875m + - id: "m00875m" - name: "3-oxoheptadecanoyl-CoA" - - compartment: m - - formula: C38H62N7O18P3S + - compartment: "m" + - formula: "C38H62N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00876c + - id: "m00876c" - name: "3-oxoheptanoyl-[ACP]" - - compartment: c - - formula: C18H31N2O9PRS + - compartment: "c" + - formula: "C18H31N2O9PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00877m + - id: "m00877m" - name: "3-oxoheptanoyl-CoA" - - compartment: m - - formula: C28H42N7O18P3S + - compartment: "m" + - formula: "C28H42N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00878c + - id: "m00878c" - name: "3-oxohexacosanoyl-CoA" - - compartment: c - - formula: C47H80N7O18P3S + - compartment: "c" + - formula: "C47H80N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00878p + - id: "m00878p" - name: "3-oxohexacosanoyl-CoA" - - compartment: p - - formula: C47H80N7O18P3S + - compartment: "p" + - formula: "C47H80N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00879c + - id: "m00879c" - name: "3-oxo-hexacosenoyl-CoA" - - compartment: c - - formula: C47H78N7O18P3S + - compartment: "c" + - formula: "C47H78N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00879p + - id: "m00879p" - name: "3-oxo-hexacosenoyl-CoA" - - compartment: p - - formula: C47H78N7O18P3S + - compartment: "p" + - formula: "C47H78N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00880c + - id: "m00880c" - name: "3-oxohexadecanoyl-[ACP]" - - compartment: c - - formula: C27H49N2O9PRS + - compartment: "c" + - formula: "C27H49N2O9PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00881c + - id: "m00881c" - name: "3-oxohexanoyl-[ACP]" - - compartment: c - - formula: C17H29N2O9PRS + - compartment: "c" + - formula: "C17H29N2O9PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00882m + - id: "m00882m" - name: "3-oxohexanoyl-CoA" - - compartment: m - - formula: C27H40N7O18P3S + - compartment: "m" + - formula: "C27H40N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00882p + - id: "m00882p" - name: "3-oxohexanoyl-CoA" - - compartment: p - - formula: C27H40N7O18P3S + - compartment: "p" + - formula: "C27H40N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00883m + - id: "m00883m" - name: "3-oxolaur-6-cis-enoyl-CoA" - - compartment: m - - formula: C33H50N7O18P3S + - compartment: "m" + - formula: "C33H50N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00883p + - id: "m00883p" - name: "3-oxolaur-6-cis-enoyl-CoA" - - compartment: p - - formula: C33H50N7O18P3S + - compartment: "p" + - formula: "C33H50N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00884m + - id: "m00884m" - name: "3-oxolinoleoyl-CoA" - - compartment: m - - formula: C39H60N7O18P3S + - compartment: "m" + - formula: "C39H60N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00884p + - id: "m00884p" - name: "3-oxolinoleoyl-CoA" - - compartment: p - - formula: C39H60N7O18P3S + - compartment: "p" + - formula: "C39H60N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00885m + - id: "m00885m" - name: "3-oxomyrist-5-enoyl-CoA" - - compartment: m - - formula: C35H54N7O18P3S + - compartment: "m" + - formula: "C35H54N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00885p + - id: "m00885p" - name: "3-oxomyrist-5-enoyl-CoA" - - compartment: p - - formula: C35H54N7O18P3S + - compartment: "p" + - formula: "C35H54N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00886m + - id: "m00886m" - name: "3-oxomyrist-7-enoyl-CoA" - - compartment: m - - formula: C35H54N7O18P3S + - compartment: "m" + - formula: "C35H54N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00886p + - id: "m00886p" - name: "3-oxomyrist-7-enoyl-CoA" - - compartment: p - - formula: C35H54N7O18P3S + - compartment: "p" + - formula: "C35H54N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00887c + - id: "m00887c" - name: "3-oxononadecanoyl-CoA" - - compartment: c - - formula: C40H66N7O18P3S + - compartment: "c" + - formula: "C40H66N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00887m + - id: "m00887m" - name: "3-oxononadecanoyl-CoA" - - compartment: m - - formula: C40H66N7O18P3S + - compartment: "m" + - formula: "C40H66N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00888c + - id: "m00888c" - name: "3-oxononanoyl-[ACP]" - - compartment: c - - formula: C20H35N2O9PRS + - compartment: "c" + - formula: "C20H35N2O9PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00889m + - id: "m00889m" - name: "3-oxononanoyl-CoA" - - compartment: m - - formula: C30H46N7O18P3S + - compartment: "m" + - formula: "C30H46N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00890c + - id: "m00890c" - name: "3-oxooctadecanoyl-CoA" - - compartment: c - - formula: C39H64N7O18P3S + - compartment: "c" + - formula: "C39H64N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00890m + - id: "m00890m" - name: "3-oxooctadecanoyl-CoA" - - compartment: m - - formula: C39H64N7O18P3S + - compartment: "m" + - formula: "C39H64N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00890p + - id: "m00890p" - name: "3-oxooctadecanoyl-CoA" - - compartment: p - - formula: C39H64N7O18P3S + - compartment: "p" + - formula: "C39H64N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00891c + - id: "m00891c" - name: "3-oxooctanoyl-[ACP]" - - compartment: c - - formula: C19H33N2O9PRS + - compartment: "c" + - formula: "C19H33N2O9PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00892m + - id: "m00892m" - name: "3-oxooctanoyl-CoA" - - compartment: m - - formula: C29H44N7O18P3S + - compartment: "m" + - formula: "C29H44N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00892p + - id: "m00892p" - name: "3-oxooctanoyl-CoA" - - compartment: p - - formula: C29H44N7O18P3S + - compartment: "p" + - formula: "C29H44N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00893m + - id: "m00893m" - name: "3-oxooleoyl-CoA" - - compartment: m - - formula: C39H62N7O18P3S + - compartment: "m" + - formula: "C39H62N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00893p + - id: "m00893p" - name: "3-oxooleoyl-CoA" - - compartment: p - - formula: C39H62N7O18P3S + - compartment: "p" + - formula: "C39H62N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00894m + - id: "m00894m" - name: "3-oxopalmitoleoyl-CoA" - - compartment: m - - formula: C37H58N7O18P3S + - compartment: "m" + - formula: "C37H58N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00894p + - id: "m00894p" - name: "3-oxopalmitoleoyl-CoA" - - compartment: p - - formula: C37H58N7O18P3S + - compartment: "p" + - formula: "C37H58N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00895m + - id: "m00895m" - name: "3-oxopalmitoyl-CoA" - - compartment: m - - formula: C37H60N7O18P3S + - compartment: "m" + - formula: "C37H60N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00895p + - id: "m00895p" - name: "3-oxopalmitoyl-CoA" - - compartment: p - - formula: C37H60N7O18P3S + - compartment: "p" + - formula: "C37H60N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00896c + - id: "m00896c" - name: "3-oxopentadecanoyl-[ACP]" - - compartment: c - - formula: C26H47N2O9PRS + - compartment: "c" + - formula: "C26H47N2O9PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00897m + - id: "m00897m" - name: "3-oxopentadecanoyl-CoA" - - compartment: m - - formula: C36H58N7O18P3S + - compartment: "m" + - formula: "C36H58N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00898c + - id: "m00898c" - name: "3-oxopentanoyl-[ACP]" - - compartment: c - - formula: C16H27N2O9PRS + - compartment: "c" + - formula: "C16H27N2O9PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00899m + - id: "m00899m" - name: "3-oxopentanoyl-CoA" - - compartment: m - - formula: C26H38N7O18P3S + - compartment: "m" + - formula: "C26H38N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00900m + - id: "m00900m" - name: "3-oxopropanoate" - - compartment: m - - formula: C3H3O3 + - compartment: "m" + - formula: "C3H3O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00901c + - id: "m00901c" - name: "3-oxo-tetracosa-12,15,18,21-all-cis-tetraenoyl-CoA" - - compartment: c - - formula: C45H68N7O18P3S + - compartment: "c" + - formula: "C45H68N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00902c + - id: "m00902c" - name: "3-oxo-tetracosa-9,12,15,18,21-all-cis-pentaenoyl-CoA" - - compartment: c - - formula: C45H66N7O18P3S + - compartment: "c" + - formula: "C45H66N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00903c + - id: "m00903c" - name: "3-oxo-tetracosa-9,12,15,18-all-cis-tetraenoyl-CoA" - - compartment: c - - formula: C45H68N7O18P3S + - compartment: "c" + - formula: "C45H68N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00904c + - id: "m00904c" - name: "3-oxotetracosanoyl-CoA" - - compartment: c - - formula: C45H76N7O18P3S + - compartment: "c" + - formula: "C45H76N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00904p + - id: "m00904p" - name: "3-oxotetracosanoyl-CoA" - - compartment: p - - formula: C45H76N7O18P3S + - compartment: "p" + - formula: "C45H76N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00905c + - id: "m00905c" - name: "3-oxotetradecanoyl-[ACP]" - - compartment: c - - formula: C25H45N2O9PRS + - compartment: "c" + - formula: "C25H45N2O9PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00906m + - id: "m00906m" - name: "3-oxotetradecanoyl-CoA" - - compartment: m - - formula: C35H56N7O18P3S + - compartment: "m" + - formula: "C35H56N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00906p + - id: "m00906p" - name: "3-oxotetradecanoyl-CoA" - - compartment: p - - formula: C35H56N7O18P3S + - compartment: "p" + - formula: "C35H56N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00907c + - id: "m00907c" - name: "3-oxotricosanoyl-CoA" - - compartment: c - - formula: C44H74N7O18P3S + - compartment: "c" + - formula: "C44H74N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00908c + - id: "m00908c" - name: "3-oxotridecanoyl-[ACP]" - - compartment: c - - formula: C24H43N2O9PRS + - compartment: "c" + - formula: "C24H43N2O9PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00909m + - id: "m00909m" - name: "3-oxotridecanoyl-CoA" - - compartment: m - - formula: C34H54N7O18P3S + - compartment: "m" + - formula: "C34H54N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00910c + - id: "m00910c" - name: "3-oxoundecanoyl-[ACP]" - - compartment: c - - formula: C22H39N2O9PRS + - compartment: "c" + - formula: "C22H39N2O9PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00911m + - id: "m00911m" - name: "3-oxoundecanoyl-CoA" - - compartment: m - - formula: C32H50N7O18P3S + - compartment: "m" + - formula: "C32H50N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00912c + - id: "m00912c" - name: "3-phosphoadenylylselenate" - - compartment: c - - formula: C10H11N5O13P2Se + - compartment: "c" + - formula: "C10H11N5O13P2Se" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00913c + - id: "m00913c" - name: "3-phospho-D-glycerate" - - compartment: c - - formula: C3H4O7P + - compartment: "c" + - formula: "C3H4O7P" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00913m + - id: "m00913m" - name: "3-phospho-D-glycerate" - - compartment: m - - formula: C3H4O7P + - compartment: "m" + - formula: "C3H4O7P" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00914c + - id: "m00914c" - name: "3-phosphonooxypyruvate" - - compartment: c - - formula: C3H2O7P + - compartment: "c" + - formula: "C3H2O7P" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00915c + - id: "m00915c" - name: "3-phosphopolynucleotide" - - compartment: c - - formula: C15H22O19P3R3 + - compartment: "c" + - formula: "C15H22O19P3R3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00916c + - id: "m00916c" - name: "3-phosphoserine" - - compartment: c - - formula: C3H6NO6P + - compartment: "c" + - formula: "C3H6NO6P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00917c + - id: "m00917c" - name: "3-succinoylpyridine" - - compartment: c - - formula: C9H9NO3 + - compartment: "c" + - formula: "C9H9NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00918c + - id: "m00918c" - name: "3-sulfinoalanine" - - compartment: c - - formula: C3H5NO4S + - compartment: "c" + - formula: "C3H5NO4S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00918m + - id: "m00918m" - name: "3-sulfinoalanine" - - compartment: m - - formula: C3H5NO4S + - compartment: "m" + - formula: "C3H5NO4S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00919c + - id: "m00919c" - name: "3-sulfinylpyruvic acid" - - compartment: c - - formula: C3H2O5S + - compartment: "c" + - formula: "C3H2O5S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00919m + - id: "m00919m" - name: "3-sulfinylpyruvic acid" - - compartment: m - - formula: C3H2O5S + - compartment: "m" + - formula: "C3H2O5S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00920c + - id: "m00920c" - name: "3-sulfopyruvate" - - compartment: c - - formula: C3H2O6S + - compartment: "c" + - formula: "C3H2O6S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00920m + - id: "m00920m" - name: "3-sulfopyruvate" - - compartment: m - - formula: C3H2O6S + - compartment: "m" + - formula: "C3H2O6S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00921c + - id: "m00921c" - name: "3-UMP" - - compartment: c - - formula: C9H11N2O9P + - compartment: "c" + - formula: "C9H11N2O9P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00922c + - id: "m00922c" - name: "3-ureidoisobutyrate" - - compartment: c - - formula: C5H9N2O3 + - compartment: "c" + - formula: "C5H9N2O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00923c + - id: "m00923c" - name: "3-ureidopropionate" - - compartment: c - - formula: C4H7N2O3 + - compartment: "c" + - formula: "C4H7N2O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00924c + - id: "m00924c" - name: "4-(2-amino-3-hydroxyphenyl)-2,4-dioxobutanoate" - - compartment: c - - formula: C10H8NO5 + - compartment: "c" + - formula: "C10H8NO5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00925c + - id: "m00925c" - name: "4-(2-amino-3-hydroxyphenyl)-4-oxobutanoic acid-O-glucoside" - - compartment: c - - formula: C16H20NO9 + - compartment: "c" + - formula: "C16H20NO9" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00926c + - id: "m00926c" - name: "4-(2-aminophenyl)-2,4-dioxobutanoate" - - compartment: c - - formula: C10H8NO4 + - compartment: "c" + - formula: "C10H8NO4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00927c + - id: "m00927c" - name: "4-(methylnitrosamino)-1-(1-oxido-3-pyridinyl)-1-butanone" - - compartment: c - - formula: C10H13N3O3 + - compartment: "c" + - formula: "C10H13N3O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00928c + - id: "m00928c" - name: "4-(methylnitrosamino)-1-(3-pyridyl)-1-butanol glucuronide" - - compartment: c - - formula: C16H23N3O8 + - compartment: "c" + - formula: "C16H23N3O8" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00929c + - id: "m00929c" - name: "4-(methylnitrosamino)-1-(3-pyridyl)-1-butanol" - - compartment: c - - formula: C10H15N3O2 + - compartment: "c" + - formula: "C10H15N3O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00930c + - id: "m00930c" - name: "4-(methylnitrosamino)-1-(3-pyridyl-N-oxide)-1-butanol" - - compartment: c - - formula: C10H15N3O3 + - compartment: "c" + - formula: "C10H15N3O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00931c + - id: "m00931c" - name: "4-(nitrosoamino)-1-(3-pyridinyl)-1-butanone" - - compartment: c - - formula: C9H11N3O2 + - compartment: "c" + - formula: "C9H11N3O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00932c + - id: "m00932c" - name: "4-(n-nitrosomethylamino)-1-(3-pyridyl)-1-butanone" - - compartment: c - - formula: C10H13N3O2 + - compartment: "c" + - formula: "C10H13N3O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00932s + - id: "m00932s" - name: "4-(n-nitrosomethylamino)-1-(3-pyridyl)-1-butanone" - - compartment: s - - formula: C10H13N3O2 + - compartment: "s" + - formula: "C10H13N3O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00933c + - id: "m00933c" - name: "4(R),8-dimethyl-nonanoyl-CoA" - - compartment: c - - formula: C32H52N7O17P3S + - compartment: "c" + - formula: "C32H52N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00933m + - id: "m00933m" - name: "4(R),8-dimethyl-nonanoyl-CoA" - - compartment: m - - formula: C32H52N7O17P3S + - compartment: "m" + - formula: "C32H52N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00933p + - id: "m00933p" - name: "4(R),8-dimethyl-nonanoyl-CoA" - - compartment: p - - formula: C32H52N7O17P3S + - compartment: "p" + - formula: "C32H52N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00934m + - id: "m00934m" - name: "4(R),8-dimethyl-trans-2-nonenoyl-CoA" - - compartment: m - - formula: C32H50N7O17P3S + - compartment: "m" + - formula: "C32H50N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00935m + - id: "m00935m" - name: "4(R)-hydroxy-dodec-(6Z)-enoate" - - compartment: m - - formula: C12H21O3 + - compartment: "m" + - formula: "C12H21O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00936m + - id: "m00936m" - name: "4(S)-hydroxy-dodec-(6Z)-enoate" - - compartment: m - - formula: C12H21O3 + - compartment: "m" + - formula: "C12H21O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00937c + - id: "m00937c" - name: "4,4-dimethyl-14alpha-formyl-5alpha-cholesta-8,24-dien-3beta-ol" - - compartment: c - - formula: C30H48O2 + - compartment: "c" + - formula: "C30H48O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00938c + - id: "m00938c" - name: "4,4-dimethyl-14alpha-formyl-5alpha-cholesta-8-en-3beta-ol" - - compartment: c - - formula: C30H50O2 + - compartment: "c" + - formula: "C30H50O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00939c + - id: "m00939c" - name: "4,4-dimethyl-14alpha-hydroxymethyl-5alpha-cholesta-8,24-dien-3beta-ol" - - compartment: c - - formula: C30H50O2 + - compartment: "c" + - formula: "C30H50O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00940c + - id: "m00940c" - name: "4,4-dimethyl-14alpha-hydroxymethyl-5alpha-cholesta-8-en-3beta-ol" - - compartment: c - - formula: C30H52O2 + - compartment: "c" + - formula: "C30H52O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00941c + - id: "m00941c" - name: "4,4-dimethyl-5alpha-cholesta-8,14,24-trien-3beta-ol" - - compartment: c - - formula: C29H46O + - compartment: "c" + - formula: "C29H46O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00942c + - id: "m00942c" - name: "4,4-dimethyl-5alpha-cholesta-8,14-dien-3-beta-ol" - - compartment: c - - formula: C29H48O + - compartment: "c" + - formula: "C29H48O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00943c + - id: "m00943c" - name: "4,4-dimethyl-5alpha-cholesta-8-en-3-beta-ol" - - compartment: c - - formula: C29H50O + - compartment: "c" + - formula: "C29H50O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00944c + - id: "m00944c" - name: "4,5-dihydro-4-hydroxy-5-S-glutathionyl-benzo[a]pyrene" - - compartment: c - - formula: C30H29N3O7S + - compartment: "c" + - formula: "C30H29N3O7S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00945c + - id: "m00945c" - name: "4,6,7-trihydroxy-1,2,3,4-tetrahydroisoquinoline" - - compartment: c - - formula: C9H12NO3 + - compartment: "c" + - formula: "C9H12NO3" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00946c + - id: "m00946c" - name: "4,6-dideoxy-4-oxo-dTDP-D-glucose" - - compartment: c - - formula: C16H22N2O15P2 + - compartment: "c" + - formula: "C16H22N2O15P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00947c + - id: "m00947c" - name: "4,6-dihydroxyquinoline" - - compartment: c - - formula: C9H7NO2 + - compartment: "c" + - formula: "C9H7NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00948p + - id: "m00948p" - name: "4,8,12-trimethyltridecanoyl-CoA" - - compartment: p - - formula: C37H62N7O17P3S + - compartment: "p" + - formula: "C37H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00949c + - id: "m00949c" - name: "4,8-dihydroxyquinoline" - - compartment: c - - formula: C9H7NO2 + - compartment: "c" + - formula: "C9H7NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00950c + - id: "m00950c" - name: "4,8-dimethylnonanoylcarnitine" - - compartment: c - - formula: C18H35NO4 + - compartment: "c" + - formula: "C18H35NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00950m + - id: "m00950m" - name: "4,8-dimethylnonanoylcarnitine" - - compartment: m - - formula: C18H35NO4 + - compartment: "m" + - formula: "C18H35NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00951c + - id: "m00951c" - name: "4-[(hydroxymethyl)nitrosoamino]-1-(3-pyridinyl)-1-butanone" - - compartment: c - - formula: C10H13N3O3 + - compartment: "c" + - formula: "C10H13N3O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00952c + - id: "m00952c" - name: "4-acetamidobutanoate" - - compartment: c - - formula: C6H10NO3 + - compartment: "c" + - formula: "C6H10NO3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00953c + - id: "m00953c" - name: "4alpha-carboxy-4beta-methyl-5alpha-cholesta-8,24-dien-3beta-ol" - - compartment: c - - formula: C29H46O3 + - compartment: "c" + - formula: "C29H46O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00954c + - id: "m00954c" - name: "4alpha-carboxy-4beta-methyl-5alpha-cholesta-8-en-3beta-ol" - - compartment: c - - formula: C29H48O3 + - compartment: "c" + - formula: "C29H48O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00955c + - id: "m00955c" - name: "4alpha-carboxy-5alpha-cholesta-8,24-dien-3beta-ol" - - compartment: c - - formula: C28H44O3 + - compartment: "c" + - formula: "C28H44O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00956c + - id: "m00956c" - name: "4alpha-carboxy-5alpha-cholesta-8-en-3beta-ol" - - compartment: c - - formula: C28H46O3 + - compartment: "c" + - formula: "C28H46O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00957c + - id: "m00957c" - name: "4alpha-formyl-4beta-methyl-5alpha-cholesta-8,24-dien-3beta-ol" - - compartment: c - - formula: C29H46O2 + - compartment: "c" + - formula: "C29H46O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00958c + - id: "m00958c" - name: "4alpha-formyl-4beta-methyl-5alpha-cholesta-8-en-3beta-ol" - - compartment: c - - formula: C29H48O2 + - compartment: "c" + - formula: "C29H48O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00959c + - id: "m00959c" - name: "4alpha-formyl-5alpha-cholesta-8,24-dien-3beta-ol" - - compartment: c - - formula: C28H44O2 + - compartment: "c" + - formula: "C28H44O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00960c + - id: "m00960c" - name: "4alpha-formyl-5alpha-cholesta-8-en-3beta-ol" - - compartment: c - - formula: C28H46O2 + - compartment: "c" + - formula: "C28H46O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00961c + - id: "m00961c" - name: "4alpha-hydroxymethyl-4beta-methyl-5alpha-cholesta-8,24-dien-3beta-ol" - - compartment: c - - formula: C29H48O2 + - compartment: "c" + - formula: "C29H48O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00962c + - id: "m00962c" - name: "4alpha-hydroxymethyl-4beta-methyl-5alpha-cholesta-8-en-3beta-ol" - - compartment: c - - formula: C29H50O2 + - compartment: "c" + - formula: "C29H50O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00963c + - id: "m00963c" - name: "4alpha-hydroxymethyl-5alpha-cholesta-8,24-dien-3beta-ol" - - compartment: c - - formula: C28H46O2 + - compartment: "c" + - formula: "C28H46O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00964c + - id: "m00964c" - name: "4alpha-hydroxymethyl-5alpha-cholesta-8-en-3beta-ol" - - compartment: c - - formula: C28H48O2 + - compartment: "c" + - formula: "C28H48O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00965c + - id: "m00965c" - name: "4alpha-hydroxytetrahydrobiopterin" - - compartment: c - - formula: C9H15N5O4 + - compartment: "c" + - formula: "C9H15N5O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00965n + - id: "m00965n" - name: "4alpha-hydroxytetrahydrobiopterin" - - compartment: n - - formula: C9H15N5O4 + - compartment: "n" + - formula: "C9H15N5O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00966c + - id: "m00966c" - name: "4alpha-methyl-5alpha-cholesta-8-en-3-one" - - compartment: c - - formula: C28H46O + - compartment: "c" + - formula: "C28H46O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00967c + - id: "m00967c" - name: "4alpha-methyl-cholesta-8-enol" - - compartment: c - - formula: C28H48O + - compartment: "c" + - formula: "C28H48O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00968c + - id: "m00968c" - name: "4alpha-methylzymosterol" - - compartment: c - - formula: C28H46O + - compartment: "c" + - formula: "C28H46O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00969c + - id: "m00969c" - name: "4-aminobutanal" - - compartment: c - - formula: C4H10NO + - compartment: "c" + - formula: "C4H10NO" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00969m + - id: "m00969m" - name: "4-aminobutanal" - - compartment: m - - formula: C4H10NO + - compartment: "m" + - formula: "C4H10NO" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00969s + - id: "m00969s" - name: "4-aminobutanal" - - compartment: s - - formula: C4H10NO + - compartment: "s" + - formula: "C4H10NO" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00970c + - id: "m00970c" - name: "4-aminobutyrate" - - compartment: c - - formula: C4H9NO2 + - compartment: "c" + - formula: "C4H9NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00970l + - id: "m00970l" - name: "4-aminobutyrate" - - compartment: l - - formula: C4H9NO2 + - compartment: "l" + - formula: "C4H9NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00970m + - id: "m00970m" - name: "4-aminobutyrate" - - compartment: m - - formula: C4H9NO2 + - compartment: "m" + - formula: "C4H9NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00970s + - id: "m00970s" - name: "4-aminobutyrate" - - compartment: s - - formula: C4H9NO2 + - compartment: "s" + - formula: "C4H9NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00971c + - id: "m00971c" - name: "4-androstene-3,17-dione" - - compartment: c - - formula: C19H26O2 + - compartment: "c" + - formula: "C19H26O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00971r + - id: "m00971r" - name: "4-androstene-3,17-dione" - - compartment: r - - formula: C19H26O2 + - compartment: "r" + - formula: "C19H26O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00972c + - id: "m00972c" - name: "4-bromo-3,5-cyclohexadiene-1,2-dione" - - compartment: c - - formula: C6H3BrO2 + - compartment: "c" + - formula: "C6H3BrO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00973c + - id: "m00973c" - name: "4-bromocatechol" - - compartment: c - - formula: C6H5BrO2 + - compartment: "c" + - formula: "C6H5BrO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00974c + - id: "m00974c" - name: "4-bromophenol" - - compartment: c - - formula: C6H5BrO + - compartment: "c" + - formula: "C6H5BrO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00975c + - id: "m00975c" - name: "4-bromophenol-2,3-epoxide" - - compartment: c - - formula: C6H5BrO2 + - compartment: "c" + - formula: "C6H5BrO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00976c + - id: "m00976c" - name: "4-cholesten-7alpha,12alpha,24(S)-triol-3-one" - - compartment: c - - formula: C27H44O4 + - compartment: "c" + - formula: "C27H44O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00977c + - id: "m00977c" - name: "4-cholesten-7alpha,12alpha,27-triol-3-one" - - compartment: c - - formula: C27H44O4 + - compartment: "c" + - formula: "C27H44O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00978c + - id: "m00978c" - name: "4-cholesten-7alpha,24(S)-diol-3-one" - - compartment: c - - formula: C27H44O3 + - compartment: "c" + - formula: "C27H44O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00979c + - id: "m00979c" - name: "4-cholesten-7alpha,27-diol-3-one" - - compartment: c - - formula: C27H44O3 + - compartment: "c" + - formula: "C27H44O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00980m + - id: "m00980m" - name: "4-cis-decenoyl-CoA" - - compartment: m - - formula: C31H48N7O17P3S + - compartment: "m" + - formula: "C31H48N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00980p + - id: "m00980p" - name: "4-cis-decenoyl-CoA" - - compartment: p - - formula: C31H48N7O17P3S + - compartment: "p" + - formula: "C31H48N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00981c + - id: "m00981c" - name: "4-coumarate" - - compartment: c - - formula: C9H7O3 + - compartment: "c" + - formula: "C9H7O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00982c + - id: "m00982c" - name: "4-coumaroyl-CoA" - - compartment: c - - formula: C30H38N7O18P3S1 + - compartment: "c" + - formula: "C30H38N7O18P3S1" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00983c + - id: "m00983c" - name: "4-hydroperoxy-2-nonenal" - - compartment: c - - formula: C9H16O3 + - compartment: "c" + - formula: "C9H16O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00984c + - id: "m00984c" - name: "4-hydroperoxy-H4-neuroprostane" - - compartment: c - - formula: C22H31O6 + - compartment: "c" + - formula: "C22H31O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00985c + - id: "m00985c" - name: "4-hydroxy-1-(3-pyridinyl)-1-butanone" - - compartment: c - - formula: C9H11NO2 + - compartment: "c" + - formula: "C9H11NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00986c + - id: "m00986c" - name: "4-hydroxy-17beta-estradiol" - - compartment: c - - formula: C18H24O3 + - compartment: "c" + - formula: "C18H24O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00986l + - id: "m00986l" - name: "4-hydroxy-17beta-estradiol" - - compartment: l - - formula: C18H24O3 + - compartment: "l" + - formula: "C18H24O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00986r + - id: "m00986r" - name: "4-hydroxy-17beta-estradiol" - - compartment: r - - formula: C18H24O3 + - compartment: "r" + - formula: "C18H24O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00986s + - id: "m00986s" - name: "4-hydroxy-17beta-estradiol" - - compartment: s - - formula: C18H24O3 + - compartment: "s" + - formula: "C18H24O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00987c + - id: "m00987c" - name: "4-hydroxy-17beta-estradiol-2-S-glutathione" - - compartment: c - - formula: C28H38N3O9S + - compartment: "c" + - formula: "C28H38N3O9S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00987m + - id: "m00987m" - name: "4-hydroxy-17beta-estradiol-2-S-glutathione" - - compartment: m - - formula: C28H38N3O9S + - compartment: "m" + - formula: "C28H38N3O9S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00987p + - id: "m00987p" - name: "4-hydroxy-17beta-estradiol-2-S-glutathione" - - compartment: p - - formula: C28H38N3O9S + - compartment: "p" + - formula: "C28H38N3O9S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00987r + - id: "m00987r" - name: "4-hydroxy-17beta-estradiol-2-S-glutathione" - - compartment: r - - formula: C28H38N3O9S + - compartment: "r" + - formula: "C28H38N3O9S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00988c + - id: "m00988c" - name: "4-hydroxy-2-nonenal" - - compartment: c - - formula: C9H16O2 + - compartment: "c" + - formula: "C9H16O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00989m + - id: "m00989m" - name: "4-hydroxy-2-oxoglutarate" - - compartment: m - - formula: C5H4O6 + - compartment: "m" + - formula: "C5H4O6" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00990c + - id: "m00990c" - name: "4-hydroxy-2-quinolinecarboxylic acid" - - compartment: c - - formula: C10H6NO3 + - compartment: "c" + - formula: "C10H6NO3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00991c + - id: "m00991c" - name: "4-hydroxy-3-nitrophenylacetate" - - compartment: c - - formula: C8H5NO5 + - compartment: "c" + - formula: "C8H5NO5" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00992c + - id: "m00992c" - name: "4-hydroxy-4-(methylnitrosoamino)-1-(3-pyridinyl)-1-butanone" - - compartment: c - - formula: C10H13N3O3 + - compartment: "c" + - formula: "C10H13N3O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00993c + - id: "m00993c" - name: "4-hydroxy-all-trans-retinoate" - - compartment: c - - formula: C20H27O3 + - compartment: "c" + - formula: "C20H27O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00993r + - id: "m00993r" - name: "4-hydroxy-all-trans-retinoate" - - compartment: r - - formula: C20H27O3 + - compartment: "r" + - formula: "C20H27O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00994c + - id: "m00994c" - name: "4-hydroxy-all-trans-retinyl-acetate" - - compartment: c - - formula: C22H32O3 + - compartment: "c" + - formula: "C22H32O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00994r + - id: "m00994r" - name: "4-hydroxy-all-trans-retinyl-acetate" - - compartment: r - - formula: C22H32O3 + - compartment: "r" + - formula: "C22H32O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00995c + - id: "m00995c" - name: "4-hydroxybenzoate" - - compartment: c - - formula: C7H5O3 + - compartment: "c" + - formula: "C7H5O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00995m + - id: "m00995m" - name: "4-hydroxybenzoate" - - compartment: m - - formula: C7H5O3 + - compartment: "m" + - formula: "C7H5O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00996c + - id: "m00996c" - name: "4-hydroxybenzoyl-CoA" - - compartment: c - - formula: C28H36N7O18P3S + - compartment: "c" + - formula: "C28H36N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00997c + - id: "m00997c" - name: "4-hydroxy-D4-neuroprostane" - - compartment: c - - formula: C22H31O5 + - compartment: "c" + - formula: "C22H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00998c + - id: "m00998c" - name: "4-hydroxy-debrisoquine" - - compartment: c - - formula: C10H14N3O + - compartment: "c" + - formula: "C10H14N3O" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00998s + - id: "m00998s" - name: "4-hydroxy-debrisoquine" - - compartment: s - - formula: C10H14N3O + - compartment: "s" + - formula: "C10H14N3O" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00999c + - id: "m00999c" - name: "4-hydroxy-E4-neuroprostane" - - compartment: c - - formula: C22H31O5 + - compartment: "c" + - formula: "C22H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01000c + - id: "m01000c" - name: "4-hydroxyestrone" - - compartment: c - - formula: C18H22O3 + - compartment: "c" + - formula: "C18H22O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01000l + - id: "m01000l" - name: "4-hydroxyestrone" - - compartment: l - - formula: C18H22O3 + - compartment: "l" + - formula: "C18H22O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01000r + - id: "m01000r" - name: "4-hydroxyestrone" - - compartment: r - - formula: C18H22O3 + - compartment: "r" + - formula: "C18H22O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01001c + - id: "m01001c" - name: "4-hydroxyestrone-2-S-glutathione" - - compartment: c - - formula: C28H36N3O9S + - compartment: "c" + - formula: "C28H36N3O9S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01001m + - id: "m01001m" - name: "4-hydroxyestrone-2-S-glutathione" - - compartment: m - - formula: C28H36N3O9S + - compartment: "m" + - formula: "C28H36N3O9S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01001p + - id: "m01001p" - name: "4-hydroxyestrone-2-S-glutathione" - - compartment: p - - formula: C28H36N3O9S + - compartment: "p" + - formula: "C28H36N3O9S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01001r + - id: "m01001r" - name: "4-hydroxyestrone-2-S-glutathione" - - compartment: r - - formula: C28H36N3O9S + - compartment: "r" + - formula: "C28H36N3O9S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01002c + - id: "m01002c" - name: "4-hydroxyphenylacetaldehyde" - - compartment: c - - formula: C8H8O2 + - compartment: "c" + - formula: "C8H8O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01003c + - id: "m01003c" - name: "4-hydroxyphenylacetate" - - compartment: c - - formula: C8H7O3 + - compartment: "c" + - formula: "C8H7O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01003s + - id: "m01003s" - name: "4-hydroxyphenylacetate" - - compartment: s - - formula: C8H7O3 + - compartment: "s" + - formula: "C8H7O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01004c + - id: "m01004c" - name: "4-hydroxyphenyllactate" - - compartment: c - - formula: C9H9O4 + - compartment: "c" + - formula: "C9H9O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01005c + - id: "m01005c" - name: "4-hydroxyphenylpyruvate" - - compartment: c - - formula: C9H7O4 + - compartment: "c" + - formula: "C9H7O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01005m + - id: "m01005m" - name: "4-hydroxyphenylpyruvate" - - compartment: m - - formula: C9H7O4 + - compartment: "m" + - formula: "C9H7O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01006c + - id: "m01006c" - name: "4-hydroxyretinoic acid" - - compartment: c - - formula: C20H27O3 + - compartment: "c" + - formula: "C20H27O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01006s + - id: "m01006s" - name: "4-hydroxyretinoic acid" - - compartment: s - - formula: C20H27O3 + - compartment: "s" + - formula: "C20H27O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01007c + - id: "m01007c" - name: "4-hydroxy-tolbutamide" - - compartment: c - - formula: C12H18N2O4S + - compartment: "c" + - formula: "C12H18N2O4S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01007s + - id: "m01007s" - name: "4-hydroxy-tolbutamide" - - compartment: s - - formula: C12H18N2O4S + - compartment: "s" + - formula: "C12H18N2O4S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01008c + - id: "m01008c" - name: "4-hydroxyvitamin A1" - - compartment: c - - formula: C20H30O2 + - compartment: "c" + - formula: "C20H30O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01008r + - id: "m01008r" - name: "4-hydroxyvitamin A1" - - compartment: r - - formula: C20H30O2 + - compartment: "r" + - formula: "C20H30O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01009c + - id: "m01009c" - name: "4-imidazolone-5-propanoate" - - compartment: c - - formula: C6H7N2O3 + - compartment: "c" + - formula: "C6H7N2O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01010c + - id: "m01010c" - name: "4-maleylacetoacetate" - - compartment: c - - formula: C8H6O6 + - compartment: "c" + - formula: "C8H6O6" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01011c + - id: "m01011c" - name: "4-methoxy-17beta-estradiol" - - compartment: c - - formula: C19H26O3 + - compartment: "c" + - formula: "C19H26O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01012c + - id: "m01012c" - name: "4-methoxyestrone" - - compartment: c - - formula: C19H24O3 + - compartment: "c" + - formula: "C19H24O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01013c + - id: "m01013c" - name: "4-methyl-2-oxopentanoate" - - compartment: c - - formula: C6H9O3 + - compartment: "c" + - formula: "C6H9O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01013m + - id: "m01013m" - name: "4-methyl-2-oxopentanoate" - - compartment: m - - formula: C6H9O3 + - compartment: "m" + - formula: "C6H9O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01014c + - id: "m01014c" - name: "4-methylpentan-1-ol" - - compartment: c - - formula: C6H14O + - compartment: "c" + - formula: "C6H14O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01015m + - id: "m01015m" - name: "4-methyl-pentanoyl-CoA" - - compartment: m - - formula: C27H42N7O17P3S + - compartment: "m" + - formula: "C27H42N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01016c + - id: "m01016c" - name: "4-methylthio-2-oxobutanoic acid" - - compartment: c - - formula: C5H7O3S + - compartment: "c" + - formula: "C5H7O3S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01017m + - id: "m01017m" - name: "4-methyl-trans-2-pentenoyl-CoA" - - compartment: m - - formula: C27H40N7O17P3S + - compartment: "m" + - formula: "C27H40N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01018c + - id: "m01018c" - name: "4-N-(n-acetyl-D-glucosaminyl)-protein" - - compartment: c - - formula: C13H20N4O8R2 + - compartment: "c" + - formula: "C13H20N4O8R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01019c + - id: "m01019c" - name: "4-nitrocatechol" - - compartment: c - - formula: C6H5NO4 + - compartment: "c" + - formula: "C6H5NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01019s + - id: "m01019s" - name: "4-nitrocatechol" - - compartment: s - - formula: C6H5NO4 + - compartment: "s" + - formula: "C6H5NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01020s + - id: "m01020s" - name: "4-nitrophenyl-phosphate" - - compartment: s - - formula: C6H4NO6P + - compartment: "s" + - formula: "C6H4NO6P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01021c + - id: "m01021c" - name: "4-nitrophenyl-sulfate" - - compartment: c - - formula: C6H4NO6S + - compartment: "c" + - formula: "C6H4NO6S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01021s + - id: "m01021s" - name: "4-nitrophenyl-sulfate" - - compartment: s - - formula: C6H4NO6S + - compartment: "s" + - formula: "C6H4NO6S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01022c + - id: "m01022c" - name: "4-OH-13-cis-retinal" - - compartment: c - - formula: C20H28O2 + - compartment: "c" + - formula: "C20H28O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01022r + - id: "m01022r" - name: "4-OH-13-cis-retinal" - - compartment: r - - formula: C20H28O2 + - compartment: "r" + - formula: "C20H28O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01023c + - id: "m01023c" - name: "4-OH-9-cis-retinal" - - compartment: c - - formula: C20H28O2 + - compartment: "c" + - formula: "C20H28O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01023r + - id: "m01023r" - name: "4-OH-9-cis-retinal" - - compartment: r - - formula: C20H28O2 + - compartment: "r" + - formula: "C20H28O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01024c + - id: "m01024c" - name: "4-OH-retinal" - - compartment: c - - formula: C20H28O2 + - compartment: "c" + - formula: "C20H28O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01024r + - id: "m01024r" - name: "4-OH-retinal" - - compartment: r - - formula: C20H28O2 + - compartment: "r" + - formula: "C20H28O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01025c + - id: "m01025c" - name: "4-oxo-1-(3-pyridyl)-1-butanone" - - compartment: c - - formula: C9H9NO2 + - compartment: "c" + - formula: "C9H9NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01026c + - id: "m01026c" - name: "4-oxo-13-cis-retinoate" - - compartment: c - - formula: C20H27O3 + - compartment: "c" + - formula: "C20H27O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01026r + - id: "m01026r" - name: "4-oxo-13-cis-retinoate" - - compartment: r - - formula: C20H27O3 + - compartment: "r" + - formula: "C20H27O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01027c + - id: "m01027c" - name: "4-oxo-2-nonenal" - - compartment: c - - formula: C9H14O2 + - compartment: "c" + - formula: "C9H14O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01028c + - id: "m01028c" - name: "4-oxo-9-cis-retinal" - - compartment: c - - formula: C20H26O2 + - compartment: "c" + - formula: "C20H26O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01028r + - id: "m01028r" - name: "4-oxo-9-cis-retinal" - - compartment: r - - formula: C20H26O2 + - compartment: "r" + - formula: "C20H26O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01029c + - id: "m01029c" - name: "4-oxo-9-cis-retinoate" - - compartment: c - - formula: C20H25O3 + - compartment: "c" + - formula: "C20H25O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01029r + - id: "m01029r" - name: "4-oxo-9-cis-retinoate" - - compartment: r - - formula: C20H25O3 + - compartment: "r" + - formula: "C20H25O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01030c + - id: "m01030c" - name: "4-oxo-9-cis-retinoyl-beta-glucuronide" - - compartment: c - - formula: C26H33O9 + - compartment: "c" + - formula: "C26H33O9" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01030r + - id: "m01030r" - name: "4-oxo-9-cis-retinoyl-beta-glucuronide" - - compartment: r - - formula: C26H33O9 + - compartment: "r" + - formula: "C26H33O9" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01031c + - id: "m01031c" - name: "4-oxo-all-trans-retinoate" - - compartment: c - - formula: C20H25O3 + - compartment: "c" + - formula: "C20H25O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01031r + - id: "m01031r" - name: "4-oxo-all-trans-retinoate" - - compartment: r - - formula: C20H25O3 + - compartment: "r" + - formula: "C20H25O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01032c + - id: "m01032c" - name: "4-oxoretinol" - - compartment: c - - formula: C20H28O2 + - compartment: "c" + - formula: "C20H28O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01033c + - id: "m01033c" - name: "4-pyridoxate" - - compartment: c - - formula: C8H9NO4 + - compartment: "c" + - formula: "C8H9NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01033s + - id: "m01033s" - name: "4-pyridoxate" - - compartment: s - - formula: C8H9NO4 + - compartment: "s" + - formula: "C8H9NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01034c + - id: "m01034c" - name: "4-trimethylammoniobutanal" - - compartment: c - - formula: C7H16NO + - compartment: "c" + - formula: "C7H16NO" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01035c + - id: "m01035c" - name: "5-(3-pyridyl)-2-hydroxytetrahydrofuran" - - compartment: c - - formula: C9H11NO2 + - compartment: "c" + - formula: "C9H11NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01036c + - id: "m01036c" - name: "5-(D-galactosyloxy)-L-lysine-procollagen" - - compartment: c - - formula: C13H24N3O8R2 + - compartment: "c" + - formula: "C13H24N3O8R2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01037m + - id: "m01037m" - name: "5(S),12(R)-dihydroxy-eicosa-2,8-trans-6,14-cis-tetraenoyl-CoA" - - compartment: m - - formula: C41H62N7O19P3S + - compartment: "m" + - formula: "C41H62N7O19P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01037p + - id: "m01037p" - name: "5(S),12(R)-dihydroxy-eicosa-2,8-trans-6,14-cis-tetraenoyl-CoA" - - compartment: p - - formula: C41H62N7O19P3S + - compartment: "p" + - formula: "C41H62N7O19P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01038c + - id: "m01038c" - name: "5(S),6(S)-epoxy-15(R)-HEPE" - - compartment: c - - formula: C20H27O4 + - compartment: "c" + - formula: "C20H27O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01038n + - id: "m01038n" - name: "5(S),6(S)-epoxy-15(R)-HEPE" - - compartment: n - - formula: C20H27O4 + - compartment: "n" + - formula: "C20H27O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01038p + - id: "m01038p" - name: "5(S),6(S)-epoxy-15(R)-HEPE" - - compartment: p - - formula: C20H27O4 + - compartment: "p" + - formula: "C20H27O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01038r + - id: "m01038r" - name: "5(S),6(S)-epoxy-15(R)-HEPE" - - compartment: r - - formula: C20H27O4 + - compartment: "r" + - formula: "C20H27O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01039c + - id: "m01039c" - name: "5(S)-HEPE" - - compartment: c - - formula: C20H29O3 + - compartment: "c" + - formula: "C20H29O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01039p + - id: "m01039p" - name: "5(S)-HEPE" - - compartment: p - - formula: C20H29O3 + - compartment: "p" + - formula: "C20H29O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01040c + - id: "m01040c" - name: "5(S)-HETE" - - compartment: c - - formula: C20H31O3 + - compartment: "c" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01040m + - id: "m01040m" - name: "5(S)-HETE" - - compartment: m - - formula: C20H31O3 + - compartment: "m" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01040r + - id: "m01040r" - name: "5(S)-HETE" - - compartment: r - - formula: C20H31O3 + - compartment: "r" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01041c + - id: "m01041c" - name: "5(S)-HpEPE" - - compartment: c - - formula: C20H29O4 + - compartment: "c" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01041n + - id: "m01041n" - name: "5(S)-HpEPE" - - compartment: n - - formula: C20H29O4 + - compartment: "n" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01042c + - id: "m01042c" - name: "5(S)-HPETE" - - compartment: c - - formula: C20H31O4 + - compartment: "c" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01042m + - id: "m01042m" - name: "5(S)-HPETE" - - compartment: m - - formula: C20H31O4 + - compartment: "m" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01043c + - id: "m01043c" - name: "5-(S-L-cysteinyl)-dopaquinone" - - compartment: c - - formula: C12H14N2O6S + - compartment: "c" + - formula: "C12H14N2O6S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01044c + - id: "m01044c" - name: "5,10-methenyl-THF" - - compartment: c - - formula: C20H20N7O6 + - compartment: "c" + - formula: "C20H20N7O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01044m + - id: "m01044m" - name: "5,10-methenyl-THF" - - compartment: m - - formula: C20H20N7O6 + - compartment: "m" + - formula: "C20H20N7O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01045c + - id: "m01045c" - name: "5,10-methylene-THF" - - compartment: c - - formula: C20H21N7O6 + - compartment: "c" + - formula: "C20H21N7O6" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01045m + - id: "m01045m" - name: "5,10-methylene-THF" - - compartment: m - - formula: C20H21N7O6 + - compartment: "m" + - formula: "C20H21N7O6" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01046c + - id: "m01046c" - name: "5,12,18R-TriHEPE" - - compartment: c - - formula: C20H29O5 + - compartment: "c" + - formula: "C20H29O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01047c + - id: "m01047c" - name: "5,12,20-TriHETE" - - compartment: c - - formula: C20H31O5 + - compartment: "c" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01048c + - id: "m01048c" - name: "5,12-DiHETE" - - compartment: c - - formula: C20H31O4 + - compartment: "c" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01049c + - id: "m01049c" - name: "5,12-dihydroxy-(6E)-LTB5" - - compartment: c - - formula: C20H29O4 + - compartment: "c" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01050c + - id: "m01050c" - name: "5,15-DiHETE" - - compartment: c - - formula: C20H31O4 + - compartment: "c" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01051c + - id: "m01051c" - name: "5,6-DHET" - - compartment: c - - formula: C20H33O4 + - compartment: "c" + - formula: "C20H33O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01052c + - id: "m01052c" - name: "5,6-Dihydrouracil" - - compartment: c - - formula: C4H6N2O2 + - compartment: "c" + - formula: "C4H6N2O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01053c + - id: "m01053c" - name: "5,6-dihydroxyindole-2-carboxylate" - - compartment: c - - formula: C9H6NO4 + - compartment: "c" + - formula: "C9H6NO4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01054c + - id: "m01054c" - name: "5,6-EET" - - compartment: c - - formula: C20H31O3 + - compartment: "c" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01054r + - id: "m01054r" - name: "5,6-EET" - - compartment: r - - formula: C20H31O3 + - compartment: "r" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01055c + - id: "m01055c" - name: "5,6-epoxy-(8Z)-tetradecenoic acid" - - compartment: c - - formula: C14H23O3 + - compartment: "c" + - formula: "C14H23O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01056c + - id: "m01056c" - name: "5,6-epoxy,(18R)-HEPE" - - compartment: c - - formula: C20H27O4 + - compartment: "c" + - formula: "C20H27O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01057c + - id: "m01057c" - name: "5,6-epoxy-13-cis-retinoate" - - compartment: c - - formula: C20H27O3 + - compartment: "c" + - formula: "C20H27O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01057r + - id: "m01057r" - name: "5,6-epoxy-13-cis-retinoate" - - compartment: r - - formula: C20H27O3 + - compartment: "r" + - formula: "C20H27O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01058c + - id: "m01058c" - name: "5,6-epoxytetraene" - - compartment: c - - formula: C20H29O4 + - compartment: "c" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01058n + - id: "m01058n" - name: "5,6-epoxytetraene" - - compartment: n - - formula: C20H29O4 + - compartment: "n" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01058p + - id: "m01058p" - name: "5,6-epoxytetraene" - - compartment: p - - formula: C20H29O4 + - compartment: "p" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01058r + - id: "m01058r" - name: "5,6-epoxytetraene" - - compartment: r - - formula: C20H29O4 + - compartment: "r" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01059c + - id: "m01059c" - name: "5,6-indolequinone-2-carboxylate" - - compartment: c - - formula: C9H4NO4 + - compartment: "c" + - formula: "C9H4NO4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01060c + - id: "m01060c" - name: "5,8-epoxy-13-cis-retinoate" - - compartment: c - - formula: C20H27O3 + - compartment: "c" + - formula: "C20H27O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01061c + - id: "m01061c" - name: "5,9,11-trihydroxyprosta-(6E,14Z)-dien-1-oate" - - compartment: c - - formula: C20H33O5 + - compartment: "c" + - formula: "C20H33O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01062c + - id: "m01062c" - name: "5,9-cyclo-6,8,12-trihydroxy-(10E,14Z)-eicosadienoic acid" - - compartment: c - - formula: C20H33O5 + - compartment: "c" + - formula: "C20H33O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01063c + - id: "m01063c" - name: "5,9-cyclo-6,8-cycloperoxy-12-hydroperoxy-(10E,14Z)-eicosadienoate" - - compartment: c - - formula: C20H31O6 + - compartment: "c" + - formula: "C20H31O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01064c + - id: "m01064c" - name: "5alpha-androstane-3,17-dione" - - compartment: c - - formula: C19H28O2 + - compartment: "c" + - formula: "C19H28O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01064r + - id: "m01064r" - name: "5alpha-androstane-3,17-dione" - - compartment: r - - formula: C19H28O2 + - compartment: "r" + - formula: "C19H28O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01065c + - id: "m01065c" - name: "5alpha-androstane-3alpha,17beta-diol" - - compartment: c - - formula: C19H32O2 + - compartment: "c" + - formula: "C19H32O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01066c + - id: "m01066c" - name: "5alpha-cholesta-7,24-dien-3beta-ol" - - compartment: c - - formula: C27H44O + - compartment: "c" + - formula: "C27H44O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01067c + - id: "m01067c" - name: "5alpha-cholesta-8,24-dien-3-one" - - compartment: c - - formula: C27H42O + - compartment: "c" + - formula: "C27H42O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01068c + - id: "m01068c" - name: "5alpha-cholesta-8-en-3-one" - - compartment: c - - formula: C27H44O + - compartment: "c" + - formula: "C27H44O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01069c + - id: "m01069c" - name: "5-alpha-dihydrotestosterone" - - compartment: c - - formula: C19H30O2 + - compartment: "c" + - formula: "C19H30O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01069r + - id: "m01069r" - name: "5-alpha-dihydrotestosterone" - - compartment: r - - formula: C19H30O2 + - compartment: "r" + - formula: "C19H30O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01069s + - id: "m01069s" - name: "5-alpha-dihydrotestosterone" - - compartment: s - - formula: C19H30O2 + - compartment: "s" + - formula: "C19H30O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01070c + - id: "m01070c" - name: "5alpha-dihydrotestosterone-glucuronide" - - compartment: c - - formula: C25H38O8 + - compartment: "c" + - formula: "C25H38O8" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01070r + - id: "m01070r" - name: "5alpha-dihydrotestosterone-glucuronide" - - compartment: r - - formula: C25H38O8 + - compartment: "r" + - formula: "C25H38O8" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01070s + - id: "m01070s" - name: "5alpha-dihydrotestosterone-glucuronide" - - compartment: s - - formula: C25H38O8 + - compartment: "s" + - formula: "C25H38O8" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01071c + - id: "m01071c" - name: "5alpha-dihydrotestosterone-sulfate" - - compartment: c - - formula: C19H29O5S + - compartment: "c" + - formula: "C19H29O5S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01071s + - id: "m01071s" - name: "5alpha-dihydrotestosterone-sulfate" - - compartment: s - - formula: C19H29O5S + - compartment: "s" + - formula: "C19H29O5S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01072c + - id: "m01072c" - name: "5alpha-pregnane-3,20-dione" - - compartment: c - - formula: C21H32O2 + - compartment: "c" + - formula: "C21H32O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01073p + - id: "m01073p" - name: "5-amino-2-oxopentanoic acid" - - compartment: p - - formula: C5H9NO3 + - compartment: "p" + - formula: "C5H9NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01074c + - id: "m01074c" - name: "5-aminolevulinate" - - compartment: c - - formula: C5H9NO3 + - compartment: "c" + - formula: "C5H9NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01074m + - id: "m01074m" - name: "5-aminolevulinate" - - compartment: m - - formula: C5H9NO3 + - compartment: "m" + - formula: "C5H9NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01075c + - id: "m01075c" - name: "5-androstene-3,17-dione" - - compartment: c - - formula: C19H26O2 + - compartment: "c" + - formula: "C19H26O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01075r + - id: "m01075r" - name: "5-androstene-3,17-dione" - - compartment: r - - formula: C19H26O2 + - compartment: "r" + - formula: "C19H26O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01076m + - id: "m01076m" - name: "5beta-cholestan-3alpha,7alpha,12alpha,24(S),27-pentol" - - compartment: m - - formula: C27H48O5 + - compartment: "m" + - formula: "C27H48O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01077c + - id: "m01077c" - name: "5beta-cholestan-3alpha,7alpha,12alpha,24(S)-tetrol" - - compartment: c - - formula: C27H48O4 + - compartment: "c" + - formula: "C27H48O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01077m + - id: "m01077m" - name: "5beta-cholestan-3alpha,7alpha,12alpha,24(S)-tetrol" - - compartment: m - - formula: C27H48O4 + - compartment: "m" + - formula: "C27H48O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01078c + - id: "m01078c" - name: "5beta-cholestan-3alpha,7alpha,12alpha-triol" - - compartment: c - - formula: C27H48O3 + - compartment: "c" + - formula: "C27H48O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01078m + - id: "m01078m" - name: "5beta-cholestan-3alpha,7alpha,12alpha-triol" - - compartment: m - - formula: C27H48O3 + - compartment: "m" + - formula: "C27H48O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01078r + - id: "m01078r" - name: "5beta-cholestan-3alpha,7alpha,12alpha-triol" - - compartment: r - - formula: C27H48O3 + - compartment: "r" + - formula: "C27H48O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01079m + - id: "m01079m" - name: "5beta-cholestan-3alpha,7alpha,24(S),27-tetrol" - - compartment: m - - formula: C27H48O4 + - compartment: "m" + - formula: "C27H48O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01080c + - id: "m01080c" - name: "5beta-cholestan-3alpha,7alpha,24(S)-triol" - - compartment: c - - formula: C27H48O3 + - compartment: "c" + - formula: "C27H48O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01080m + - id: "m01080m" - name: "5beta-cholestan-3alpha,7alpha,24(S)-triol" - - compartment: m - - formula: C27H48O3 + - compartment: "m" + - formula: "C27H48O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01081c + - id: "m01081c" - name: "5beta-cholestan-7alpha,12alpha,24(S)-triol-3-one" - - compartment: c - - formula: C27H46O4 + - compartment: "c" + - formula: "C27H46O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01082c + - id: "m01082c" - name: "5beta-cholestan-7alpha,12alpha,27-triol-3-one" - - compartment: c - - formula: C27H46O4 + - compartment: "c" + - formula: "C27H46O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01083c + - id: "m01083c" - name: "5beta-cholestan-7alpha,24(S)-diol-3-one" - - compartment: c - - formula: C27H46O3 + - compartment: "c" + - formula: "C27H46O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01084c + - id: "m01084c" - name: "5beta-cholestan-7alpha,27-diol-3-one" - - compartment: c - - formula: C27H46O3 + - compartment: "c" + - formula: "C27H46O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01085r + - id: "m01085r" - name: "5beta-cholestane-3alpha,7alpha,12alpha,23,25-pentol" - - compartment: r - - formula: C27H48O5 + - compartment: "r" + - formula: "C27H48O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01086r + - id: "m01086r" - name: "5beta-cholestane-3alpha,7alpha,12alpha,24r,25-pentol" - - compartment: r - - formula: C27H48O5 + - compartment: "r" + - formula: "C27H48O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01087r + - id: "m01087r" - name: "5beta-cholestane-3alpha,7alpha,12alpha,24s,25-pentol" - - compartment: r - - formula: C27H48O5 + - compartment: "r" + - formula: "C27H48O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01088r + - id: "m01088r" - name: "5beta-cholestane-3alpha,7alpha,12alpha,25,27-pentol" - - compartment: r - - formula: C27H48O5 + - compartment: "r" + - formula: "C27H48O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01089r + - id: "m01089r" - name: "5beta-cholestane-3alpha,7alpha,12alpha,25-tetrol" - - compartment: r - - formula: C27H48O4 + - compartment: "r" + - formula: "C27H48O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01090c + - id: "m01090c" - name: "5beta-cholestane-3alpha,7alpha,12alpha,26-tetrol" - - compartment: c - - formula: C27H48O4 + - compartment: "c" + - formula: "C27H48O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01090m + - id: "m01090m" - name: "5beta-cholestane-3alpha,7alpha,12alpha,26-tetrol" - - compartment: m - - formula: C27H48O4 + - compartment: "m" + - formula: "C27H48O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01091c + - id: "m01091c" - name: "5beta-cholestane-3alpha,7alpha,12alpha,27,27-pentaol" - - compartment: c - - formula: C27H48O5 + - compartment: "c" + - formula: "C27H48O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01091m + - id: "m01091m" - name: "5beta-cholestane-3alpha,7alpha,12alpha,27,27-pentaol" - - compartment: m - - formula: C27H48O5 + - compartment: "m" + - formula: "C27H48O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01092c + - id: "m01092c" - name: "5beta-cholestane-3alpha,7alpha,12alpha,27-tetraol" - - compartment: c - - formula: C27H48O4 + - compartment: "c" + - formula: "C27H48O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01092m + - id: "m01092m" - name: "5beta-cholestane-3alpha,7alpha,12alpha,27-tetraol" - - compartment: m - - formula: C27H48O4 + - compartment: "m" + - formula: "C27H48O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01093c + - id: "m01093c" - name: "5beta-cholestane-3alpha,7alpha,26-triol" - - compartment: c - - formula: C27H48O3 + - compartment: "c" + - formula: "C27H48O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01093m + - id: "m01093m" - name: "5beta-cholestane-3alpha,7alpha,26-triol" - - compartment: m - - formula: C27H48O3 + - compartment: "m" + - formula: "C27H48O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01094m + - id: "m01094m" - name: "5beta-cholestane-3alpha,7alpha,27-triol" - - compartment: m - - formula: C27H48O3 + - compartment: "m" + - formula: "C27H48O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01095c + - id: "m01095c" - name: "5beta-cholestane-3alpha,7alpha-diol" - - compartment: c - - formula: C27H48O2 + - compartment: "c" + - formula: "C27H48O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01095m + - id: "m01095m" - name: "5beta-cholestane-3alpha,7alpha-diol" - - compartment: m - - formula: C27H48O2 + - compartment: "m" + - formula: "C27H48O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01096m + - id: "m01096m" - name: "5-carboxy-alpha-chromanol" - - compartment: m - - formula: C19H27O4 + - compartment: "m" + - formula: "C19H27O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01097c + - id: "m01097c" - name: "5-carboxy-gamma-chromanol" - - compartment: c - - formula: C18H25O4 + - compartment: "c" + - formula: "C18H25O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01097m + - id: "m01097m" - name: "5-carboxy-gamma-chromanol" - - compartment: m - - formula: C18H25O4 + - compartment: "m" + - formula: "C18H25O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01098c + - id: "m01098c" - name: "5-deoxyadenosine" - - compartment: c - - formula: C10H13N5O3 + - compartment: "c" + - formula: "C10H13N5O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01098s + - id: "m01098s" - name: "5-deoxyadenosine" - - compartment: s - - formula: C10H13N5O3 + - compartment: "s" + - formula: "C10H13N5O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01099c + - id: "m01099c" - name: "5-formiminotetrahydrofolate" - - compartment: c - - formula: C20H22N8O6 + - compartment: "c" + - formula: "C20H22N8O6" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01100c + - id: "m01100c" - name: "5-formyl-THF" - - compartment: c - - formula: C20H21N7O7 + - compartment: "c" + - formula: "C20H21N7O7" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01100m + - id: "m01100m" - name: "5-formyl-THF" - - compartment: m - - formula: C20H21N7O7 + - compartment: "m" + - formula: "C20H21N7O7" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01100s + - id: "m01100s" - name: "5-formyl-THF" - - compartment: s - - formula: C20H21N7O7 + - compartment: "s" + - formula: "C20H21N7O7" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01101p + - id: "m01101p" - name: "5-guanidino-2-oxopentanoate" - - compartment: p - - formula: C6H11N3O3 + - compartment: "p" + - formula: "C6H11N3O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01102c + - id: "m01102c" - name: "5-hydroxyindoleacetaldehyde" - - compartment: c - - formula: C10H9NO2 + - compartment: "c" + - formula: "C10H9NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01103c + - id: "m01103c" - name: "5-hydroxyindoleacetate" - - compartment: c - - formula: C10H8NO3 + - compartment: "c" + - formula: "C10H8NO3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01104c + - id: "m01104c" - name: "5-hydroxyisourate" - - compartment: c - - formula: C5H4N4O4 + - compartment: "c" + - formula: "C5H4N4O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01105c + - id: "m01105c" - name: "5-hydroxykynurenamine" - - compartment: c - - formula: C9H13N2O2 + - compartment: "c" + - formula: "C9H13N2O2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01106c + - id: "m01106c" - name: "5-hydroxykynurenine" - - compartment: c - - formula: C10H12N2O4 + - compartment: "c" + - formula: "C10H12N2O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01107c + - id: "m01107c" - name: "5-hydroxy-L-tryptophan" - - compartment: c - - formula: C11H12N2O3 + - compartment: "c" + - formula: "C11H12N2O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01107s + - id: "m01107s" - name: "5-hydroxy-L-tryptophan" - - compartment: s - - formula: C11H12N2O3 + - compartment: "s" + - formula: "C11H12N2O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01108c + - id: "m01108c" - name: "5-hydroxy-N-formylkynurenine" - - compartment: c - - formula: C11H12N2O5 + - compartment: "c" + - formula: "C11H12N2O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01109c + - id: "m01109c" - name: "5-hydroxy-omeprazole" - - compartment: c - - formula: C17H19N3O4S + - compartment: "c" + - formula: "C17H19N3O4S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01109s + - id: "m01109s" - name: "5-hydroxy-omeprazole" - - compartment: s - - formula: C17H19N3O4S + - compartment: "s" + - formula: "C17H19N3O4S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01110c + - id: "m01110c" - name: "5-hydroxytryptophol" - - compartment: c - - formula: C10H11NO2 + - compartment: "c" + - formula: "C10H11NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01111s + - id: "m01111s" - name: "5-L-gamma-glutamyl" - - compartment: s - - formula: C5H7NO3 + - compartment: "s" + - formula: "C5H7NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01112c + - id: "m01112c" - name: "5-methoxyindoleacetate" - - compartment: c - - formula: C11H10NO3 + - compartment: "c" + - formula: "C11H10NO3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01113c + - id: "m01113c" - name: "5-methoxytryptophol" - - compartment: c - - formula: C11H13NO2 + - compartment: "c" + - formula: "C11H13NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01114c + - id: "m01114c" - name: "5-methyltetrahydropteroyltri-L-glutamate" - - compartment: c - - formula: C30H39N9O12 + - compartment: "c" + - formula: "C30H39N9O12" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01115c + - id: "m01115c" - name: "5-methyl-THF" - - compartment: c - - formula: C20H24N7O6 + - compartment: "c" + - formula: "C20H24N7O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01115s + - id: "m01115s" - name: "5-methyl-THF" - - compartment: s - - formula: C20H24N7O6 + - compartment: "s" + - formula: "C20H24N7O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01116c + - id: "m01116c" - name: "5-methylthioadenosine" - - compartment: c - - formula: C11H15N5O3S + - compartment: "c" + - formula: "C11H15N5O3S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01117c + - id: "m01117c" - name: "5-nitro-gamma-tocopherol" - - compartment: c - - formula: C28H47NO4 + - compartment: "c" + - formula: "C28H47NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01118c + - id: "m01118c" - name: "5-oxo-(6E)-12-epi-LTB4" - - compartment: c - - formula: C20H29O4 + - compartment: "c" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01118m + - id: "m01118m" - name: "5-oxo-(6E)-12-epi-LTB4" - - compartment: m - - formula: C20H29O4 + - compartment: "m" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01118p + - id: "m01118p" - name: "5-oxo-(6E)-12-epi-LTB4" - - compartment: p - - formula: C20H29O4 + - compartment: "p" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01118r + - id: "m01118r" - name: "5-oxo-(6E)-12-epi-LTB4" - - compartment: r - - formula: C20H29O4 + - compartment: "r" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01119m + - id: "m01119m" - name: "5-oxo-12(R)-hydroxy-eicosa-(2E,8E,10E,14Z)-tetraenoyl-CoA" - - compartment: m - - formula: C41H60N7O19P3S + - compartment: "m" + - formula: "C41H60N7O19P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01119p + - id: "m01119p" - name: "5-oxo-12(R)-hydroxy-eicosa-(2E,8E,10E,14Z)-tetraenoyl-CoA" - - compartment: p - - formula: C41H60N7O19P3S + - compartment: "p" + - formula: "C41H60N7O19P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01120c + - id: "m01120c" - name: "5-oxo-12(R)-hydroxy-eicosa-(8E,10E,14Z)-trienoyl-CoA" - - compartment: c - - formula: C41H62N7O19P3S + - compartment: "c" + - formula: "C41H62N7O19P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01120m + - id: "m01120m" - name: "5-oxo-12(R)-hydroxy-eicosa-(8E,10E,14Z)-trienoyl-CoA" - - compartment: m - - formula: C41H62N7O19P3S + - compartment: "m" + - formula: "C41H62N7O19P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01120p + - id: "m01120p" - name: "5-oxo-12(R)-hydroxy-eicosa-(8E,10E,14Z)-trienoyl-CoA" - - compartment: p - - formula: C41H62N7O19P3S + - compartment: "p" + - formula: "C41H62N7O19P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01120r + - id: "m01120r" - name: "5-oxo-12(R)-hydroxy-eicosa-(8E,10E,14Z)-trienoyl-CoA" - - compartment: r - - formula: C41H62N7O19P3S + - compartment: "r" + - formula: "C41H62N7O19P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01121m + - id: "m01121m" - name: "5-oxo-12(S)-hydroxy-eicosa-(2E,8E,10E,14Z)-tetraenoyl-CoA" - - compartment: m - - formula: C41H60N7O19P3S + - compartment: "m" + - formula: "C41H60N7O19P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01121p + - id: "m01121p" - name: "5-oxo-12(S)-hydroxy-eicosa-(2E,8E,10E,14Z)-tetraenoyl-CoA" - - compartment: p - - formula: C41H60N7O19P3S + - compartment: "p" + - formula: "C41H60N7O19P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01122c + - id: "m01122c" - name: "5-oxo-12(S)-hydroxy-eicosa-(8E,10E,14Z)-trienoyl-CoA" - - compartment: c - - formula: C41H62N7O19P3S + - compartment: "c" + - formula: "C41H62N7O19P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01122m + - id: "m01122m" - name: "5-oxo-12(S)-hydroxy-eicosa-(8E,10E,14Z)-trienoyl-CoA" - - compartment: m - - formula: C41H62N7O19P3S + - compartment: "m" + - formula: "C41H62N7O19P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01122p + - id: "m01122p" - name: "5-oxo-12(S)-hydroxy-eicosa-(8E,10E,14Z)-trienoyl-CoA" - - compartment: p - - formula: C41H62N7O19P3S + - compartment: "p" + - formula: "C41H62N7O19P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01122r + - id: "m01122r" - name: "5-oxo-12(S)-hydroxy-eicosa-(8E,10E,14Z)-trienoyl-CoA" - - compartment: r - - formula: C41H62N7O19P3S + - compartment: "r" + - formula: "C41H62N7O19P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01123c + - id: "m01123c" - name: "5-oxo-12-HETE" - - compartment: c - - formula: C20H29O4 + - compartment: "c" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01124c + - id: "m01124c" - name: "5-oxo-6-trans-LTB4" - - compartment: c - - formula: C20H29O4 + - compartment: "c" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01124m + - id: "m01124m" - name: "5-oxo-6-trans-LTB4" - - compartment: m - - formula: C20H29O4 + - compartment: "m" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01124p + - id: "m01124p" - name: "5-oxo-6-trans-LTB4" - - compartment: p - - formula: C20H29O4 + - compartment: "p" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01124r + - id: "m01124r" - name: "5-oxo-6-trans-LTB4" - - compartment: r - - formula: C20H29O4 + - compartment: "r" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01125c + - id: "m01125c" - name: "5-oxo-EPE" - - compartment: c - - formula: C20H27O3 + - compartment: "c" + - formula: "C20H27O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01125p + - id: "m01125p" - name: "5-oxo-EPE" - - compartment: p - - formula: C20H27O3 + - compartment: "p" + - formula: "C20H27O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01126c + - id: "m01126c" - name: "5-oxo-ETE" - - compartment: c - - formula: C20H29O3 + - compartment: "c" + - formula: "C20H29O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01127c + - id: "m01127c" - name: "5-oxoproline" - - compartment: c - - formula: C5H6NO3 + - compartment: "c" + - formula: "C5H6NO3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01128c + - id: "m01128c" - name: "5-oxoprolyl-peptide" - - compartment: c - - formula: C9H11N3O5R2 + - compartment: "c" + - formula: "C9H11N3O5R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01129c + - id: "m01129c" - name: "5-phosphopolynucleotide" - - compartment: c - - formula: C15H22O19P3R3 + - compartment: "c" + - formula: "C15H22O19P3R3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01130c + - id: "m01130c" - name: "5-phosphoribosyl-4-carboxy-5-aminoimidazole" - - compartment: c - - formula: C9H11N3O9P + - compartment: "c" + - formula: "C9H11N3O9P" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01131c + - id: "m01131c" - name: "5-phosphoribosylamine" - - compartment: c - - formula: C5H11NO7P + - compartment: "c" + - formula: "C5H11NO7P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01132c + - id: "m01132c" - name: "5-phosphoribosylformylglycinamidine" - - compartment: c - - formula: C8H15N3O8P + - compartment: "c" + - formula: "C8H15N3O8P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01133c + - id: "m01133c" - name: "5-pp-inspP5" - - compartment: c - - formula: C6H6O27P7 + - compartment: "c" + - formula: "C6H6O27P7" - charge: -13 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01133n + - id: "m01133n" - name: "5-pp-inspP5" - - compartment: n - - formula: C6H6O27P7 + - compartment: "n" + - formula: "C6H6O27P7" - charge: -13 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01134c + - id: "m01134c" - name: "5-S-cysteinyldopa" - - compartment: c - - formula: C12H16N2O6S + - compartment: "c" + - formula: "C12H16N2O6S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01135c + - id: "m01135c" - name: "5-S-glutathionyl-adrenochrome hydroquinone" - - compartment: c - - formula: C19H25N4O9S + - compartment: "c" + - formula: "C19H25N4O9S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01136c + - id: "m01136c" - name: "5-S-glutathionyl-aminochrome reduced" - - compartment: c - - formula: C18H23N4O8S + - compartment: "c" + - formula: "C18H23N4O8S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01137c + - id: "m01137c" - name: "5-S-glutathionyl-dopachrome hydroquinone" - - compartment: c - - formula: C19H22N4O10S + - compartment: "c" + - formula: "C19H22N4O10S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01138c + - id: "m01138c" - name: "5-S-glutathionyl-dopamine" - - compartment: c - - formula: C18H26N4O8S + - compartment: "c" + - formula: "C18H26N4O8S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01139c + - id: "m01139c" - name: "5-S-glutathionyl-L-dopa" - - compartment: c - - formula: C19H25N4O10S + - compartment: "c" + - formula: "C19H25N4O10S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01140c + - id: "m01140c" - name: "5-S-glutathionyl-noradrenochrome hydroquinone" - - compartment: c - - formula: C18H23N4O9S + - compartment: "c" + - formula: "C18H23N4O9S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01141c + - id: "m01141c" - name: "5-tetradecenoyl-CoA" - - compartment: c - - formula: C35H56N7O17P3S + - compartment: "c" + - formula: "C35H56N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01141m + - id: "m01141m" - name: "5-tetradecenoyl-CoA" - - compartment: m - - formula: C35H56N7O17P3S + - compartment: "m" + - formula: "C35H56N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01141p + - id: "m01141p" - name: "5-tetradecenoyl-CoA" - - compartment: p - - formula: C35H56N7O17P3S + - compartment: "p" + - formula: "C35H56N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01141r + - id: "m01141r" - name: "5-tetradecenoyl-CoA" - - compartment: r - - formula: C35H56N7O17P3S + - compartment: "r" + - formula: "C35H56N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01142r + - id: "m01142r" - name: "6-(alpha-D-glucosaminyl)-1D-myo-inositol" - - compartment: r - - formula: C12H23NO10 + - compartment: "r" + - formula: "C12H23NO10" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01143c + - id: "m01143c" - name: "6-(alpha-D-glucosaminyl)-1-phosphatidyl-1D-myo-inositol" - - compartment: c - - formula: C17H28NO17PR2 + - compartment: "c" + - formula: "C17H28NO17PR2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01143r + - id: "m01143r" - name: "6-(alpha-D-glucosaminyl)-1-phosphatidyl-1D-myo-inositol" - - compartment: r - - formula: C17H28NO17PR2 + - compartment: "r" + - formula: "C17H28NO17PR2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01144m + - id: "m01144m" - name: "6(R)-hydroxy-tetradeca-(2E,4E,8Z)-trienoate" - - compartment: m - - formula: C14H21O3 + - compartment: "m" + - formula: "C14H21O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01145m + - id: "m01145m" - name: "6(R)-hydroxy-tetradeca-(2E,8Z)-dienoate" - - compartment: m - - formula: C14H23O3 + - compartment: "m" + - formula: "C14H23O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01146m + - id: "m01146m" - name: "6(R)-hydroxy-tetradeca-(4E,8Z)-dienoate" - - compartment: m - - formula: C14H23O3 + - compartment: "m" + - formula: "C14H23O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01147m + - id: "m01147m" - name: "6(S)-hydroxy-tetradeca-(2E,4E,8Z)-trienoate" - - compartment: m - - formula: C14H21O3 + - compartment: "m" + - formula: "C14H21O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01148m + - id: "m01148m" - name: "6(S)-hydroxy-tetradeca-(2E,8Z)-dienoate" - - compartment: m - - formula: C14H23O3 + - compartment: "m" + - formula: "C14H23O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01149m + - id: "m01149m" - name: "6(S)-hydroxy-tetradeca-(4E,8Z)-dienoate" - - compartment: m - - formula: C14H23O3 + - compartment: "m" + - formula: "C14H23O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01150c + - id: "m01150c" - name: "6,7-dihydro-12-epi-LTB4" - - compartment: c - - formula: C20H33O4 + - compartment: "c" + - formula: "C20H33O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01150m + - id: "m01150m" - name: "6,7-dihydro-12-epi-LTB4" - - compartment: m - - formula: C20H33O4 + - compartment: "m" + - formula: "C20H33O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01150p + - id: "m01150p" - name: "6,7-dihydro-12-epi-LTB4" - - compartment: p - - formula: C20H33O4 + - compartment: "p" + - formula: "C20H33O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01151c + - id: "m01151c" - name: "6,7-dihydro-5-oxo-12-epi-LTB4" - - compartment: c - - formula: C20H31O4 + - compartment: "c" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01151m + - id: "m01151m" - name: "6,7-dihydro-5-oxo-12-epi-LTB4" - - compartment: m - - formula: C20H31O4 + - compartment: "m" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01151p + - id: "m01151p" - name: "6,7-dihydro-5-oxo-12-epi-LTB4" - - compartment: p - - formula: C20H31O4 + - compartment: "p" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01151r + - id: "m01151r" - name: "6,7-dihydro-5-oxo-12-epi-LTB4" - - compartment: r - - formula: C20H31O4 + - compartment: "r" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01152c + - id: "m01152c" - name: "6,7-dihydro-5-oxo-LTB4" - - compartment: c - - formula: C20H31O4 + - compartment: "c" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01152m + - id: "m01152m" - name: "6,7-dihydro-5-oxo-LTB4" - - compartment: m - - formula: C20H31O4 + - compartment: "m" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01152p + - id: "m01152p" - name: "6,7-dihydro-5-oxo-LTB4" - - compartment: p - - formula: C20H31O4 + - compartment: "p" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01152r + - id: "m01152r" - name: "6,7-dihydro-5-oxo-LTB4" - - compartment: r - - formula: C20H31O4 + - compartment: "r" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01153c + - id: "m01153c" - name: "6,7-dihydro-LTB4" - - compartment: c - - formula: C20H33O4 + - compartment: "c" + - formula: "C20H33O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01153m + - id: "m01153m" - name: "6,7-dihydro-LTB4" - - compartment: m - - formula: C20H33O4 + - compartment: "m" + - formula: "C20H33O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01153p + - id: "m01153p" - name: "6,7-dihydro-LTB4" - - compartment: p - - formula: C20H33O4 + - compartment: "p" + - formula: "C20H33O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01153r + - id: "m01153r" - name: "6,7-dihydro-LTB4" - - compartment: r - - formula: C20H33O4 + - compartment: "r" + - formula: "C20H33O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01154c + - id: "m01154c" - name: "6,7-dihydroxy-1,2,3,4-tetrahydroisoquinoline" - - compartment: c - - formula: C9H12NO2 + - compartment: "c" + - formula: "C9H12NO2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01155c + - id: "m01155c" - name: "6-[(1S,2R)-1,2-dihydroxy-3-triphosphooxypropyl]-7,8-dihydropterin" - - compartment: c - - formula: C9H12N5O13P3 + - compartment: "c" + - formula: "C9H12N5O13P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01155n + - id: "m01155n" - name: "6-[(1S,2R)-1,2-dihydroxy-3-triphosphooxypropyl]-7,8-dihydropterin" - - compartment: n - - formula: C9H12N5O13P3 + - compartment: "n" + - formula: "C9H12N5O13P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01156c + - id: "m01156c" - name: "6-[2,3-dihydroxy-1-(hydroxymethyl)propyl]-1,2-dihydro-7-hydroxy-9-methoxy-cyclopenta[c][1]benzopyran-3,4-dione" - - compartment: c - - formula: C17H18O8 + - compartment: "c" + - formula: "C17H18O8" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01157p + - id: "m01157p" - name: "6-amino-2-oxohexanoate" - - compartment: p - - formula: C6H11NO3 + - compartment: "p" + - formula: "C6H11NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01158c + - id: "m01158c" - name: "6beta-hydroxytestosterone" - - compartment: c - - formula: C19H28O3 + - compartment: "c" + - formula: "C19H28O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01158r + - id: "m01158r" - name: "6beta-hydroxytestosterone" - - compartment: r - - formula: C19H28O3 + - compartment: "r" + - formula: "C19H28O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01158s + - id: "m01158s" - name: "6beta-hydroxytestosterone" - - compartment: s - - formula: C19H28O3 + - compartment: "s" + - formula: "C19H28O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01159c + - id: "m01159c" - name: "6-deoxy-L-galactose" - - compartment: c - - formula: C6H12O5 + - compartment: "c" + - formula: "C6H12O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01159l + - id: "m01159l" - name: "6-deoxy-L-galactose" - - compartment: l - - formula: C6H12O5 + - compartment: "l" + - formula: "C6H12O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01159s + - id: "m01159s" - name: "6-deoxy-L-galactose" - - compartment: s - - formula: C6H12O5 + - compartment: "s" + - formula: "C6H12O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01160c + - id: "m01160c" - name: "6-hydroxy-1,2,3,4-tetrahydro-beta-carboline" - - compartment: c - - formula: C11H13N2O + - compartment: "c" + - formula: "C11H13N2O" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01161c + - id: "m01161c" - name: "6-hydroxymelatonin" - - compartment: c - - formula: C13H16N2O3 + - compartment: "c" + - formula: "C13H16N2O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01162c + - id: "m01162c" - name: "6-hydroxymelatonin-sulfate" - - compartment: c - - formula: C13H15N2O6S + - compartment: "c" + - formula: "C13H15N2O6S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01163c + - id: "m01163c" - name: "6-hydroxypaclitaxel" - - compartment: c - - formula: C47H31NO15 + - compartment: "c" + - formula: "C47H31NO15" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01163s + - id: "m01163s" - name: "6-hydroxypaclitaxel" - - compartment: s - - formula: C47H31NO15 + - compartment: "s" + - formula: "C47H31NO15" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01164c + - id: "m01164c" - name: "6-lactoyl-5,6,7,8-tetrahydropterin" - - compartment: c - - formula: C9H13N5O3 + - compartment: "c" + - formula: "C9H13N5O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01165m + - id: "m01165m" - name: "6-methoxy-3-methyl-2-all-trans-decaprenyl-1,4-benzoquinol" - - compartment: m - - formula: C58H90O3 + - compartment: "m" + - formula: "C58H90O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01166c + - id: "m01166c" - name: "6-methylmercaptopurine" - - compartment: c - - formula: C6H6N4S + - compartment: "c" + - formula: "C6H6N4S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01167c + - id: "m01167c" - name: "6-oxo-prostaglandin E1" - - compartment: c - - formula: C20H31O6 + - compartment: "c" + - formula: "C20H31O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01168c + - id: "m01168c" - name: "6-oxo-prostaglandin F1alpha" - - compartment: c - - formula: C20H33O6 + - compartment: "c" + - formula: "C20H33O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01168r + - id: "m01168r" - name: "6-oxo-prostaglandin F1alpha" - - compartment: r - - formula: C20H33O6 + - compartment: "r" + - formula: "C20H33O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01169c + - id: "m01169c" - name: "6-phospho-D-gluconate" - - compartment: c - - formula: C6H10O10P + - compartment: "c" + - formula: "C6H10O10P" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01169r + - id: "m01169r" - name: "6-phospho-D-gluconate" - - compartment: r - - formula: C6H10O10P + - compartment: "r" + - formula: "C6H10O10P" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01170c + - id: "m01170c" - name: "6-pyruvoyltetrahydropterin" - - compartment: c - - formula: C9H11N5O3 + - compartment: "c" + - formula: "C9H11N5O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01170n + - id: "m01170n" - name: "6-pyruvoyltetrahydropterin" - - compartment: n - - formula: C9H11N5O3 + - compartment: "n" + - formula: "C9H11N5O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01171c + - id: "m01171c" - name: "6-trans-12-epi-LTB4" - - compartment: c - - formula: C20H31O4 + - compartment: "c" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01171m + - id: "m01171m" - name: "6-trans-12-epi-LTB4" - - compartment: m - - formula: C20H31O4 + - compartment: "m" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01171p + - id: "m01171p" - name: "6-trans-12-epi-LTB4" - - compartment: p - - formula: C20H31O4 + - compartment: "p" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01172c + - id: "m01172c" - name: "6-trans-LTB4" - - compartment: c - - formula: C20H31O4 + - compartment: "c" + - formula: "C20H31O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01172m + - id: "m01172m" - name: "6-trans-LTB4" - - compartment: m - - formula: C20H31O4 + - compartment: "m" + - formula: "C20H31O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01172p + - id: "m01172p" - name: "6-trans-LTB4" - - compartment: p - - formula: C20H31O4 + - compartment: "p" + - formula: "C20H31O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01173c + - id: "m01173c" - name: "7,12-dimethylbenz[a]anthracene 5,6-oxide" - - compartment: c - - formula: C20H16O + - compartment: "c" + - formula: "C20H16O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01174c + - id: "m01174c" - name: "7,12-dimethylbenz[a]anthracene" - - compartment: c - - formula: C20H16 + - compartment: "c" + - formula: "C20H16" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01174s + - id: "m01174s" - name: "7,12-dimethylbenz[a]anthracene" - - compartment: s - - formula: C20H16 + - compartment: "s" + - formula: "C20H16" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01175c + - id: "m01175c" - name: "7,8-dihydro-7-hydroxy-8-S-glutathionyl-benzo[a]pyrene" - - compartment: c - - formula: C30H29N3O7S + - compartment: "c" + - formula: "C30H29N3O7S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01176c + - id: "m01176c" - name: "7,8-epoxy-(4Z,10Z)-hexadecadienoic acid" - - compartment: c - - formula: C16H25O3 + - compartment: "c" + - formula: "C16H25O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01177c + - id: "m01177c" - name: "7alpha,12alpha-dihydroxy-5beta-cholestan-3-one" - - compartment: c - - formula: C27H46O3 + - compartment: "c" + - formula: "C27H46O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01178c + - id: "m01178c" - name: "7alpha,12alpha-dihydroxycholest-4-en-3-one" - - compartment: c - - formula: C27H44O3 + - compartment: "c" + - formula: "C27H44O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01178r + - id: "m01178r" - name: "7alpha,12alpha-dihydroxycholest-4-en-3-one" - - compartment: r - - formula: C27H44O3 + - compartment: "r" + - formula: "C27H44O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01179r + - id: "m01179r" - name: "7alpha,25-dihydroxy-4-cholesten-3-one" - - compartment: r - - formula: C27H44O3 + - compartment: "r" + - formula: "C27H44O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01180m + - id: "m01180m" - name: "7alpha-hydroxy-3-oxo-4-cholestenoic acid" - - compartment: m - - formula: C27H41O4 + - compartment: "m" + - formula: "C27H41O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01181c + - id: "m01181c" - name: "7alpha-hydroxy-5beta-cholestan-3-one" - - compartment: c - - formula: C27H46O2 + - compartment: "c" + - formula: "C27H46O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01182c + - id: "m01182c" - name: "7alpha-hydroxycholest-4-en-3-one" - - compartment: c - - formula: C27H44O2 + - compartment: "c" + - formula: "C27H44O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01182r + - id: "m01182r" - name: "7alpha-hydroxycholest-4-en-3-one" - - compartment: r - - formula: C27H44O2 + - compartment: "r" + - formula: "C27H44O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01183r + - id: "m01183r" - name: "7alpha-hydroxycholesterol" - - compartment: r - - formula: C27H46O2 + - compartment: "r" + - formula: "C27H46O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01184c + - id: "m01184c" - name: "7alpha-hydroxypregnenolone" - - compartment: c - - formula: C21H32O3 + - compartment: "c" + - formula: "C21H32O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01185m + - id: "m01185m" - name: "7-carboxy-alpha-chromanol" - - compartment: m - - formula: C21H31O4 + - compartment: "m" + - formula: "C21H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01186m + - id: "m01186m" - name: "7-carboxy-alpha-tocotrienol" - - compartment: m - - formula: C21H29O4 + - compartment: "m" + - formula: "C21H29O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01187m + - id: "m01187m" - name: "7-carboxy-gamma-chromanol" - - compartment: m - - formula: C20H29O4 + - compartment: "m" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01188m + - id: "m01188m" - name: "7-carboxy-gamma-tocotrienol" - - compartment: m - - formula: C20H27O4 + - compartment: "m" + - formula: "C20H27O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01189c + - id: "m01189c" - name: "7-dehydrodesmosterol" - - compartment: c - - formula: C27H42O + - compartment: "c" + - formula: "C27H42O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01190c + - id: "m01190c" - name: "7-HETE" - - compartment: c - - formula: C20H31O3 + - compartment: "c" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01191c + - id: "m01191c" - name: "7-hexadecenoyl-CoA" - - compartment: c - - formula: C37H60N7O17P3S + - compartment: "c" + - formula: "C37H60N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01191m + - id: "m01191m" - name: "7-hexadecenoyl-CoA" - - compartment: m - - formula: C37H60N7O17P3S + - compartment: "m" + - formula: "C37H60N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01191p + - id: "m01191p" - name: "7-hexadecenoyl-CoA" - - compartment: p - - formula: C37H60N7O17P3S + - compartment: "p" + - formula: "C37H60N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01191r + - id: "m01191r" - name: "7-hexadecenoyl-CoA" - - compartment: r - - formula: C37H60N7O17P3S + - compartment: "r" + - formula: "C37H60N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01192c + - id: "m01192c" - name: "7-hydroperoxy-H4-neuroprostane" - - compartment: c - - formula: C22H31O6 + - compartment: "c" + - formula: "C22H31O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01193c + - id: "m01193c" - name: "7-hydroxy-D4-neuroprostane" - - compartment: c - - formula: C22H31O5 + - compartment: "c" + - formula: "C22H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01194c + - id: "m01194c" - name: "7-hydroxy-E4-neuroprostane" - - compartment: c - - formula: C22H31O5 + - compartment: "c" + - formula: "C22H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01195c + - id: "m01195c" - name: "7-hydroxymethyl-12-methylbenz[a]anthracene sulfate" - - compartment: c - - formula: C20H16O4S + - compartment: "c" + - formula: "C20H16O4S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01196c + - id: "m01196c" - name: "7-hydroxymethyl-12-methylbenz[a]anthracene" - - compartment: c - - formula: C20H16O + - compartment: "c" + - formula: "C20H16O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01197c + - id: "m01197c" - name: "7-palmitoleic acid" - - compartment: c - - formula: C16H29O2 + - compartment: "c" + - formula: "C16H29O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01197l + - id: "m01197l" - name: "7-palmitoleic acid" - - compartment: l - - formula: C16H29O2 + - compartment: "l" + - formula: "C16H29O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01197r + - id: "m01197r" - name: "7-palmitoleic acid" - - compartment: r - - formula: C16H29O2 + - compartment: "r" + - formula: "C16H29O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01197s + - id: "m01197s" - name: "7-palmitoleic acid" - - compartment: s - - formula: C16H29O2 + - compartment: "s" + - formula: "C16H29O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01198c + - id: "m01198c" - name: "7-peroxy-docosahexaenoate" - - compartment: c - - formula: C22H30O4 + - compartment: "c" + - formula: "C22H30O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01199m + - id: "m01199m" - name: "8(R)-hydroxy-hexadeca-(2E,4E,6E,10Z)-tetraenoate" - - compartment: m - - formula: C16H23O3 + - compartment: "m" + - formula: "C16H23O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01200m + - id: "m01200m" - name: "8(R)-hydroxy-hexadeca-(2E,6E,10Z)-trienoate" - - compartment: m - - formula: C16H25O3 + - compartment: "m" + - formula: "C16H25O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01201m + - id: "m01201m" - name: "8(R)-hydroxy-hexadeca-(4E,6E,10Z)-trienoate" - - compartment: m - - formula: C16H25O3 + - compartment: "m" + - formula: "C16H25O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01202c + - id: "m01202c" - name: "8(S)-HETE" - - compartment: c - - formula: C20H31O3 + - compartment: "c" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01203c + - id: "m01203c" - name: "8(S)-HPETE" - - compartment: c - - formula: C20H31O4 + - compartment: "c" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01204m + - id: "m01204m" - name: "8(S)-hydroxy-hexadeca-(2E,4E,6E,10Z)-tetraenoate" - - compartment: m - - formula: C16H23O3 + - compartment: "m" + - formula: "C16H23O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01205m + - id: "m01205m" - name: "8(S)-hydroxy-hexadeca-(2E,6E,10Z)-trienoate" - - compartment: m - - formula: C16H25O3 + - compartment: "m" + - formula: "C16H25O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01206m + - id: "m01206m" - name: "8(S)-hydroxy-hexadeca-(4E,6E,10Z)-trienoate" - - compartment: m - - formula: C16H25O3 + - compartment: "m" + - formula: "C16H25O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01207c + - id: "m01207c" - name: "8,11-eicosadienoic acid" - - compartment: c - - formula: C20H35O2 + - compartment: "c" + - formula: "C20H35O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01207l + - id: "m01207l" - name: "8,11-eicosadienoic acid" - - compartment: l - - formula: C20H35O2 + - compartment: "l" + - formula: "C20H35O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01207r + - id: "m01207r" - name: "8,11-eicosadienoic acid" - - compartment: r - - formula: C20H35O2 + - compartment: "r" + - formula: "C20H35O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01207s + - id: "m01207s" - name: "8,11-eicosadienoic acid" - - compartment: s - - formula: C20H35O2 + - compartment: "s" + - formula: "C20H35O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01208c + - id: "m01208c" - name: "8,9-DHET" - - compartment: c - - formula: C20H33O4 + - compartment: "c" + - formula: "C20H33O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01209c + - id: "m01209c" - name: "8,9-EET" - - compartment: c - - formula: C20H31O3 + - compartment: "c" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01209r + - id: "m01209r" - name: "8,9-EET" - - compartment: r - - formula: C20H31O3 + - compartment: "r" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01210c + - id: "m01210c" - name: "8,9-epoxy-(5Z)-tetradecenoic acid" - - compartment: c - - formula: C14H24O3 + - compartment: "c" + - formula: "C14H24O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01211c + - id: "m01211c" - name: "8alpha-hydroxy-gamma-tocopherone" - - compartment: c - - formula: C28H48O3 + - compartment: "c" + - formula: "C28H48O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01212c + - id: "m01212c" - name: "8alpha-hydroxytocopherone" - - compartment: c - - formula: C29H50O3 + - compartment: "c" + - formula: "C29H50O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01213c + - id: "m01213c" - name: "8-HETE" - - compartment: c - - formula: C20H31O3 + - compartment: "c" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01214c + - id: "m01214c" - name: "8-peroxy-(5Z,9E,11Z,14Z)-eicosatetraenoate" - - compartment: c - - formula: C20H30O4 + - compartment: "c" + - formula: "C20H30O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01215c + - id: "m01215c" - name: "8-peroxy-docosahexaenoate" - - compartment: c - - formula: C22H30O4 + - compartment: "c" + - formula: "C22H30O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01216c + - id: "m01216c" - name: "9(10)-EpOME" - - compartment: c - - formula: C18H31O3 + - compartment: "c" + - formula: "C18H31O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01216r + - id: "m01216r" - name: "9(10)-EpOME" - - compartment: r - - formula: C18H31O3 + - compartment: "r" + - formula: "C18H31O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01217c + - id: "m01217c" - name: "9(S)-HPODE" - - compartment: c - - formula: C18H31O4 + - compartment: "c" + - formula: "C18H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01218c + - id: "m01218c" - name: "9,10-12,13-diepoxy-octadecanoate" - - compartment: c - - formula: C18H31O4 + - compartment: "c" + - formula: "C18H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01219c + - id: "m01219c" - name: "9,10-epoxy-(6Z,12Z)-octadecadienoic acid" - - compartment: c - - formula: C18H29O3 + - compartment: "c" + - formula: "C18H29O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01220c + - id: "m01220c" - name: "9,10-hydroxyoctadec-12(Z)-enoate" - - compartment: c - - formula: C18H33O4 + - compartment: "c" + - formula: "C18H33O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01220r + - id: "m01220r" - name: "9,10-hydroxyoctadec-12(Z)-enoate" - - compartment: r - - formula: C18H33O4 + - compartment: "r" + - formula: "C18H33O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01221c + - id: "m01221c" - name: "9,11,15-trihydroxyprosta-(5Z,13E)-dien-1-oate" - - compartment: c - - formula: C20H33O5 + - compartment: "c" + - formula: "C20H33O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01222c + - id: "m01222c" - name: "9,11-cycloperoxy-15-hydroperoxy-(5Z,13E)-eicosadienoate" - - compartment: c - - formula: C20H31O6 + - compartment: "c" + - formula: "C20H31O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01223c + - id: "m01223c" - name: "9,11-cycloperoxy-5-hydroperoxy-(6E,14Z)-eicosadienoate" - - compartment: c - - formula: C20H31O6 + - compartment: "c" + - formula: "C20H31O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01224c + - id: "m01224c" - name: "9,13-cis-retinoate" - - compartment: c - - formula: C20H27O2 + - compartment: "c" + - formula: "C20H27O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01225m + - id: "m01225m" - name: "9-carboxy-alpha-chromanol" - - compartment: m - - formula: C24H37O4 + - compartment: "m" + - formula: "C24H37O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01226m + - id: "m01226m" - name: "9-carboxy-alpha-tocotrienol" - - compartment: m - - formula: C24H33O4 + - compartment: "m" + - formula: "C24H33O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01227m + - id: "m01227m" - name: "9-carboxy-gamma-chromanol" - - compartment: m - - formula: C23H35O4 + - compartment: "m" + - formula: "C23H35O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01228m + - id: "m01228m" - name: "9-carboxy-gamma-tocotrienol" - - compartment: m - - formula: C23H31O4 + - compartment: "m" + - formula: "C23H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01229c + - id: "m01229c" - name: "9-cis-4-oxo-13,14-dihydro-retinoate" - - compartment: c - - formula: C20H27O3 + - compartment: "c" + - formula: "C20H27O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01230c + - id: "m01230c" - name: "9-cis-retinal" - - compartment: c - - formula: C20H28O + - compartment: "c" + - formula: "C20H28O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01230r + - id: "m01230r" - name: "9-cis-retinal" - - compartment: r - - formula: C20H28O + - compartment: "r" + - formula: "C20H28O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01231c + - id: "m01231c" - name: "9-cis-retinoate" - - compartment: c - - formula: C20H27O2 + - compartment: "c" + - formula: "C20H27O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01231r + - id: "m01231r" - name: "9-cis-retinoate" - - compartment: r - - formula: C20H27O2 + - compartment: "r" + - formula: "C20H27O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01232c + - id: "m01232c" - name: "9-cis-retinol" - - compartment: c - - formula: C20H30O + - compartment: "c" + - formula: "C20H30O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01233c + - id: "m01233c" - name: "9-cis-retinoyl-beta-D-glucuronide" - - compartment: c - - formula: C26H35O8 + - compartment: "c" + - formula: "C26H35O8" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01233r + - id: "m01233r" - name: "9-cis-retinoyl-beta-D-glucuronide" - - compartment: r - - formula: C26H35O8 + - compartment: "r" + - formula: "C26H35O8" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01234c + - id: "m01234c" - name: "9-deoxy-delta12-PGD2" - - compartment: c - - formula: C20H31O4 + - compartment: "c" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01235c + - id: "m01235c" - name: "9-eicosenoic acid" - - compartment: c - - formula: C20H37O2 + - compartment: "c" + - formula: "C20H37O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01235l + - id: "m01235l" - name: "9-eicosenoic acid" - - compartment: l - - formula: C20H37O2 + - compartment: "l" + - formula: "C20H37O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01235r + - id: "m01235r" - name: "9-eicosenoic acid" - - compartment: r - - formula: C20H37O2 + - compartment: "r" + - formula: "C20H37O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01235s + - id: "m01235s" - name: "9-eicosenoic acid" - - compartment: s - - formula: C20H37O2 + - compartment: "s" + - formula: "C20H37O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01236c + - id: "m01236c" - name: "9-eicosenoyl-CoA" - - compartment: c - - formula: C41H68N7O17P3S + - compartment: "c" + - formula: "C41H68N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01236m + - id: "m01236m" - name: "9-eicosenoyl-CoA" - - compartment: m - - formula: C41H68N7O17P3S + - compartment: "m" + - formula: "C41H68N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01236r + - id: "m01236r" - name: "9-eicosenoyl-CoA" - - compartment: r - - formula: C41H68N7O17P3S + - compartment: "r" + - formula: "C41H68N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01237c + - id: "m01237c" - name: "9-heptadecenoyl-CoA" - - compartment: c - - formula: C38H62N7O17P3S + - compartment: "c" + - formula: "C38H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01237m + - id: "m01237m" - name: "9-heptadecenoyl-CoA" - - compartment: m - - formula: C38H62N7O17P3S + - compartment: "m" + - formula: "C38H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01237r + - id: "m01237r" - name: "9-heptadecenoyl-CoA" - - compartment: r - - formula: C38H62N7O17P3S + - compartment: "r" + - formula: "C38H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01238c + - id: "m01238c" - name: "9-heptadecylenic acid" - - compartment: c - - formula: C17H31O2 + - compartment: "c" + - formula: "C17H31O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01238l + - id: "m01238l" - name: "9-heptadecylenic acid" - - compartment: l - - formula: C17H31O2 + - compartment: "l" + - formula: "C17H31O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01238r + - id: "m01238r" - name: "9-heptadecylenic acid" - - compartment: r - - formula: C17H31O2 + - compartment: "r" + - formula: "C17H31O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01238s + - id: "m01238s" - name: "9-heptadecylenic acid" - - compartment: s - - formula: C17H31O2 + - compartment: "s" + - formula: "C17H31O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01239c + - id: "m01239c" - name: "9-HETE" - - compartment: c - - formula: C20H31O3 + - compartment: "c" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01240c + - id: "m01240c" - name: "9-hydroxy-10-O-D-glucuronoside-(12Z)-octadecenoate" - - compartment: c - - formula: C24H40O10 + - compartment: "c" + - formula: "C24H40O10" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01240r + - id: "m01240r" - name: "9-hydroxy-10-O-D-glucuronoside-(12Z)-octadecenoate" - - compartment: r - - formula: C24H40O10 + - compartment: "r" + - formula: "C24H40O10" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01241c + - id: "m01241c" - name: "9-hydroxybenzo[a]pyrene" - - compartment: c - - formula: C20H12O + - compartment: "c" + - formula: "C20H12O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01242c + - id: "m01242c" - name: "9-hydroxybenzo[a]pyrene-4,5-oxide" - - compartment: c - - formula: C20H12O2 + - compartment: "c" + - formula: "C20H12O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01243c + - id: "m01243c" - name: "9-hydroxyoctadecadienoate" - - compartment: c - - formula: C18H31O3 + - compartment: "c" + - formula: "C18H31O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01244c + - id: "m01244c" - name: "9-O-acetylated-GD3" - - compartment: c - - formula: C54H90N3O29RCO + - compartment: "c" + - formula: "C54H90N3O29RCO" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01244g + - id: "m01244g" - name: "9-O-acetylated-GD3" - - compartment: g - - formula: C54H90N3O29RCO + - compartment: "g" + - formula: "C54H90N3O29RCO" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01244s + - id: "m01244s" - name: "9-O-acetylated-GD3" - - compartment: s - - formula: C54H90N3O29RCO + - compartment: "s" + - formula: "C54H90N3O29RCO" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01245c + - id: "m01245c" - name: "9-O-acetylated-GT3" - - compartment: c - - formula: C65H106N4O37RCO + - compartment: "c" + - formula: "C65H106N4O37RCO" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01245g + - id: "m01245g" - name: "9-O-acetylated-GT3" - - compartment: g - - formula: C65H106N4O37RCO + - compartment: "g" + - formula: "C65H106N4O37RCO" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01245s + - id: "m01245s" - name: "9-O-acetylated-GT3" - - compartment: s - - formula: C65H106N4O37RCO + - compartment: "s" + - formula: "C65H106N4O37RCO" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01246c + - id: "m01246c" - name: "9-peroxy-(5Z,7E,11Z,14Z)-eicosatetraenoate" - - compartment: c - - formula: C20H30O4 + - compartment: "c" + - formula: "C20H30O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01247c + - id: "m01247c" - name: "A2PE" - - compartment: c - - formula: C47H62NO8PR2 + - compartment: "c" + - formula: "C47H62NO8PR2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01248c + - id: "m01248c" - name: "A2PE-H2" - - compartment: c - - formula: C47H64NO8PR2 + - compartment: "c" + - formula: "C47H64NO8PR2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01249c + - id: "m01249c" - name: "acetaldehyde" - - compartment: c - - formula: C2H4O + - compartment: "c" + - formula: "C2H4O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01249m + - id: "m01249m" - name: "acetaldehyde" - - compartment: m - - formula: C2H4O + - compartment: "m" + - formula: "C2H4O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01249p + - id: "m01249p" - name: "acetaldehyde" - - compartment: p - - formula: C2H4O + - compartment: "p" + - formula: "C2H4O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01249r + - id: "m01249r" - name: "acetaldehyde" - - compartment: r - - formula: C2H4O + - compartment: "r" + - formula: "C2H4O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01249s + - id: "m01249s" - name: "acetaldehyde" - - compartment: s - - formula: C2H4O + - compartment: "s" + - formula: "C2H4O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01250c + - id: "m01250c" - name: "acetamidopropanal" - - compartment: c - - formula: C5H9NO2 + - compartment: "c" + - formula: "C5H9NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01250p + - id: "m01250p" - name: "acetamidopropanal" - - compartment: p - - formula: C5H9NO2 + - compartment: "p" + - formula: "C5H9NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01251c + - id: "m01251c" - name: "acetanilide" - - compartment: c - - formula: C8H9NO + - compartment: "c" + - formula: "C8H9NO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01252c + - id: "m01252c" - name: "acetate" - - compartment: c - - formula: C2H3O2 + - compartment: "c" + - formula: "C2H3O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01252g + - id: "m01252g" - name: "acetate" - - compartment: g - - formula: C2H3O2 + - compartment: "g" + - formula: "C2H3O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01252m + - id: "m01252m" - name: "acetate" - - compartment: m - - formula: C2H3O2 + - compartment: "m" + - formula: "C2H3O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01252p + - id: "m01252p" - name: "acetate" - - compartment: p - - formula: C2H3O2 + - compartment: "p" + - formula: "C2H3O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01252r + - id: "m01252r" - name: "acetate" - - compartment: r - - formula: C2H3O2 + - compartment: "r" + - formula: "C2H3O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01252s + - id: "m01252s" - name: "acetate" - - compartment: s - - formula: C2H3O2 + - compartment: "s" + - formula: "C2H3O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01253c + - id: "m01253c" - name: "acetoacetate" - - compartment: c - - formula: C4H5O3 + - compartment: "c" + - formula: "C4H5O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01253m + - id: "m01253m" - name: "acetoacetate" - - compartment: m - - formula: C4H5O3 + - compartment: "m" + - formula: "C4H5O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01253s + - id: "m01253s" - name: "acetoacetate" - - compartment: s - - formula: C4H5O3 + - compartment: "s" + - formula: "C4H5O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01254c + - id: "m01254c" - name: "acetoacetyl-[ACP]" - - compartment: c - - formula: C15H25N2O9PRS + - compartment: "c" + - formula: "C15H25N2O9PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01255c + - id: "m01255c" - name: "acetoacetyl-CoA" - - compartment: c - - formula: C25H36N7O18P3S + - compartment: "c" + - formula: "C25H36N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01255m + - id: "m01255m" - name: "acetoacetyl-CoA" - - compartment: m - - formula: C25H36N7O18P3S + - compartment: "m" + - formula: "C25H36N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01255p + - id: "m01255p" - name: "acetoacetyl-CoA" - - compartment: p - - formula: C25H36N7O18P3S + - compartment: "p" + - formula: "C25H36N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01256c + - id: "m01256c" - name: "acetone" - - compartment: c - - formula: C3H6O + - compartment: "c" + - formula: "C3H6O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01256m + - id: "m01256m" - name: "acetone" - - compartment: m - - formula: C3H6O + - compartment: "m" + - formula: "C3H6O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01256s + - id: "m01256s" - name: "acetone" - - compartment: s - - formula: C3H6O + - compartment: "s" + - formula: "C3H6O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01257c + - id: "m01257c" - name: "acetyl adenylate" - - compartment: c - - formula: C12H15N5O8P + - compartment: "c" + - formula: "C12H15N5O8P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01258c + - id: "m01258c" - name: "acetyl-[ACP]" - - compartment: c - - formula: C13H23N2O8PRS + - compartment: "c" + - formula: "C13H23N2O8PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01259c + - id: "m01259c" - name: "acetylcarnosine" - - compartment: c - - formula: C11H15N4O4 + - compartment: "c" + - formula: "C11H15N4O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01260c + - id: "m01260c" - name: "acetylcholine" - - compartment: c - - formula: C7H16NO2 + - compartment: "c" + - formula: "C7H16NO2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01260n + - id: "m01260n" - name: "acetylcholine" - - compartment: n - - formula: C7H16NO2 + - compartment: "n" + - formula: "C7H16NO2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01260s + - id: "m01260s" - name: "acetylcholine" - - compartment: s - - formula: C7H16NO2 + - compartment: "s" + - formula: "C7H16NO2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01261c + - id: "m01261c" - name: "acetyl-CoA" - - compartment: c - - formula: C23H34N7O17P3S + - compartment: "c" + - formula: "C23H34N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01261g + - id: "m01261g" - name: "acetyl-CoA" - - compartment: g - - formula: C23H34N7O17P3S + - compartment: "g" + - formula: "C23H34N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01261m + - id: "m01261m" - name: "acetyl-CoA" - - compartment: m - - formula: C23H34N7O17P3S + - compartment: "m" + - formula: "C23H34N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01261n + - id: "m01261n" - name: "acetyl-CoA" - - compartment: n - - formula: C23H34N7O17P3S + - compartment: "n" + - formula: "C23H34N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01261p + - id: "m01261p" - name: "acetyl-CoA" - - compartment: p - - formula: C23H34N7O17P3S + - compartment: "p" + - formula: "C23H34N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01261r + - id: "m01261r" - name: "acetyl-CoA" - - compartment: r - - formula: C23H34N7O17P3S + - compartment: "r" + - formula: "C23H34N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01262g + - id: "m01262g" - name: "acgalfuc12gal14acglcgalgluside heparan sulfate" - - compartment: g - - formula: C58H102N3O31RCO + - compartment: "g" + - formula: "C58H102N3O31RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01263g + - id: "m01263g" - name: "acgalfucgalacglcgal14acglcgalgluside heparan sulfate" - - compartment: g - - formula: C72H125N4O41RCO + - compartment: "g" + - formula: "C72H125N4O41RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01264g + - id: "m01264g" - name: "acngalacglcgalgluside heparan sulfate" - - compartment: g - - formula: C56H95N3O31R + - compartment: "g" + - formula: "C56H95N3O31R" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01265m + - id: "m01265m" - name: "acrylyl-CoA" - - compartment: m - - formula: C24H34N7O17P3S + - compartment: "m" + - formula: "C24H34N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01266c + - id: "m01266c" - name: "activated methyl group" - - compartment: c - - formula: CH3 + - compartment: "c" + - formula: "CH3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01267c + - id: "m01267c" - name: "activated sulphur" - - compartment: c - - formula: S + - compartment: "c" + - formula: "S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01268c + - id: "m01268c" - name: "activation-ppara" - - compartment: c - - formula: C2303H3655N619O695S34R + - compartment: "c" + - formula: "C2303H3655N619O695S34R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01268m + - id: "m01268m" - name: "activation-ppara" - - compartment: m - - formula: C2303H3655N619O695S34R + - compartment: "m" + - formula: "C2303H3655N619O695S34R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01268n + - id: "m01268n" - name: "activation-ppara" - - compartment: n - - formula: C2303H3655N619O695S34R + - compartment: "n" + - formula: "C2303H3655N619O695S34R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01268p + - id: "m01268p" - name: "activation-ppara" - - compartment: p - - formula: C2303H3655N619O695S34R + - compartment: "p" + - formula: "C2303H3655N619O695S34R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01268r + - id: "m01268r" - name: "activation-ppara" - - compartment: r - - formula: C2303H3655N619O695S34R + - compartment: "r" + - formula: "C2303H3655N619O695S34R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01268s + - id: "m01268s" - name: "activation-ppara" - - compartment: s - - formula: C2303H3655N619O695S34R + - compartment: "s" + - formula: "C2303H3655N619O695S34R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01269c + - id: "m01269c" - name: "acyl-CoA-bile-PC pool" - - compartment: c - - formula: C22H31N7O17P3SR + - compartment: "c" + - formula: "C22H31N7O17P3SR" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01270c + - id: "m01270c" - name: "acyl-CoA-CL pool (liver tissue)" - - compartment: c - - formula: C22H31N7O17P3SR + - compartment: "c" + - formula: "C22H31N7O17P3SR" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01271c + - id: "m01271c" - name: "acyl-CoA-LD-PC pool (liver tissue)" - - compartment: c - - formula: C22H31N7O17P3SR + - compartment: "c" + - formula: "C22H31N7O17P3SR" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01272c + - id: "m01272c" - name: "acyl-CoA-LD-PE pool (liver tissue)" - - compartment: c - - formula: C22H31N7O17P3SR + - compartment: "c" + - formula: "C22H31N7O17P3SR" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01273c + - id: "m01273c" - name: "acyl-CoA-LD-PI pool (liver tissue)" - - compartment: c - - formula: C22H31N7O17P3SR + - compartment: "c" + - formula: "C22H31N7O17P3SR" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01274c + - id: "m01274c" - name: "acyl-CoA-LD-PS pool (liver tissue)" - - compartment: c - - formula: C22H31N7O17P3SR + - compartment: "c" + - formula: "C22H31N7O17P3SR" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01275c + - id: "m01275c" - name: "acyl-CoA-LD-SM pool (liver tissue)" - - compartment: c - - formula: C22H31N7O17P3SR + - compartment: "c" + - formula: "C22H31N7O17P3SR" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01276c + - id: "m01276c" - name: "acyl-CoA-LD-TG2 pool (liver tissue)" - - compartment: c - - formula: C22H31N7O17P3SR + - compartment: "c" + - formula: "C22H31N7O17P3SR" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01277c + - id: "m01277c" - name: "acyl-CoA-LD-TG3 pool (liver tissue)" - - compartment: c - - formula: C22H31N7O17P3SR + - compartment: "c" + - formula: "C22H31N7O17P3SR" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01278c + - id: "m01278c" - name: "acylglycerone-phosphate" - - compartment: c - - formula: C3H4O6PRCO + - compartment: "c" + - formula: "C3H4O6PRCO" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01278p + - id: "m01278p" - name: "acylglycerone-phosphate" - - compartment: p - - formula: C3H4O6PRCO + - compartment: "p" + - formula: "C3H4O6PRCO" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01279c + - id: "m01279c" - name: "adenine" - - compartment: c - - formula: C5H5N5 + - compartment: "c" + - formula: "C5H5N5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01279l + - id: "m01279l" - name: "adenine" - - compartment: l - - formula: C5H5N5 + - compartment: "l" + - formula: "C5H5N5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01279s + - id: "m01279s" - name: "adenine" - - compartment: s - - formula: C5H5N5 + - compartment: "s" + - formula: "C5H5N5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01280c + - id: "m01280c" - name: "adenosine" - - compartment: c - - formula: C10H13N5O4 + - compartment: "c" + - formula: "C10H13N5O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01280l + - id: "m01280l" - name: "adenosine" - - compartment: l - - formula: C10H13N5O4 + - compartment: "l" + - formula: "C10H13N5O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01280m + - id: "m01280m" - name: "adenosine" - - compartment: m - - formula: C10H13N5O4 + - compartment: "m" + - formula: "C10H13N5O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01280s + - id: "m01280s" - name: "adenosine" - - compartment: s - - formula: C10H13N5O4 + - compartment: "s" + - formula: "C10H13N5O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01281c + - id: "m01281c" - name: "adenylated molybdopterin" - - compartment: c - - formula: C20H24N10O12P2S2 + - compartment: "c" + - formula: "C20H24N10O12P2S2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01282c + - id: "m01282c" - name: "adenylosuccinate" - - compartment: c - - formula: C14H14N5O11P + - compartment: "c" + - formula: "C14H14N5O11P" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01283c + - id: "m01283c" - name: "adenylyl sulfate" - - compartment: c - - formula: C10H12N5O10PS + - compartment: "c" + - formula: "C10H12N5O10PS" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01284c + - id: "m01284c" - name: "adenylylselenate" - - compartment: c - - formula: C10H12N5O10PSe + - compartment: "c" + - formula: "C10H12N5O10PSe" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01285c + - id: "m01285c" - name: "ADP" - - compartment: c - - formula: C10H12N5O10P2 + - compartment: "c" + - formula: "C10H12N5O10P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01285g + - id: "m01285g" - name: "ADP" - - compartment: g - - formula: C10H12N5O10P2 + - compartment: "g" + - formula: "C10H12N5O10P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01285l + - id: "m01285l" - name: "ADP" - - compartment: l - - formula: C10H12N5O10P2 + - compartment: "l" + - formula: "C10H12N5O10P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01285m + - id: "m01285m" - name: "ADP" - - compartment: m - - formula: C10H12N5O10P2 + - compartment: "m" + - formula: "C10H12N5O10P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01285n + - id: "m01285n" - name: "ADP" - - compartment: n - - formula: C10H12N5O10P2 + - compartment: "n" + - formula: "C10H12N5O10P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01285p + - id: "m01285p" - name: "ADP" - - compartment: p - - formula: C10H12N5O10P2 + - compartment: "p" + - formula: "C10H12N5O10P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01285r + - id: "m01285r" - name: "ADP" - - compartment: r - - formula: C10H12N5O10P2 + - compartment: "r" + - formula: "C10H12N5O10P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01285s + - id: "m01285s" - name: "ADP" - - compartment: s - - formula: C10H12N5O10P2 + - compartment: "s" + - formula: "C10H12N5O10P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01286c + - id: "m01286c" - name: "ADP-glucose" - - compartment: c - - formula: C16H23N5O15P2 + - compartment: "c" + - formula: "C16H23N5O15P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01286s + - id: "m01286s" - name: "ADP-glucose" - - compartment: s - - formula: C16H23N5O15P2 + - compartment: "s" + - formula: "C16H23N5O15P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01287c + - id: "m01287c" - name: "ADP-mannose" - - compartment: c - - formula: C16H23N5O15P2 + - compartment: "c" + - formula: "C16H23N5O15P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01287s + - id: "m01287s" - name: "ADP-mannose" - - compartment: s - - formula: C16H23N5O15P2 + - compartment: "s" + - formula: "C16H23N5O15P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01288c + - id: "m01288c" - name: "ADP-ribose" - - compartment: c - - formula: C15H21N5O14P2 + - compartment: "c" + - formula: "C15H21N5O14P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01288s + - id: "m01288s" - name: "ADP-ribose" - - compartment: s - - formula: C15H21N5O14P2 + - compartment: "s" + - formula: "C15H21N5O14P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01289c + - id: "m01289c" - name: "ADP-ribose-2-phosphate" - - compartment: c - - formula: C15H20N5O17P3 + - compartment: "c" + - formula: "C15H20N5O17P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01289s + - id: "m01289s" - name: "ADP-ribose-2-phosphate" - - compartment: s - - formula: C15H20N5O17P3 + - compartment: "s" + - formula: "C15H20N5O17P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01290c + - id: "m01290c" - name: "adrenaline" - - compartment: c - - formula: C9H14NO3 + - compartment: "c" + - formula: "C9H14NO3" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01290s + - id: "m01290s" - name: "adrenaline" - - compartment: s - - formula: C9H14NO3 + - compartment: "s" + - formula: "C9H14NO3" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01291c + - id: "m01291c" - name: "adrenic acid" - - compartment: c - - formula: C22H35O2 + - compartment: "c" + - formula: "C22H35O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01291l + - id: "m01291l" - name: "adrenic acid" - - compartment: l - - formula: C22H35O2 + - compartment: "l" + - formula: "C22H35O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01291r + - id: "m01291r" - name: "adrenic acid" - - compartment: r - - formula: C22H35O2 + - compartment: "r" + - formula: "C22H35O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01291s + - id: "m01291s" - name: "adrenic acid" - - compartment: s - - formula: C22H35O2 + - compartment: "s" + - formula: "C22H35O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01292c + - id: "m01292c" - name: "adrenochrome" - - compartment: c - - formula: C9H9NO3 + - compartment: "c" + - formula: "C9H9NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01293c + - id: "m01293c" - name: "adrenochrome-O-semiquinone" - - compartment: c - - formula: C9H9NO3 + - compartment: "c" + - formula: "C9H9NO3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01294c + - id: "m01294c" - name: "aflatoxin B1 dialdehyde" - - compartment: c - - formula: C17H13O8 + - compartment: "c" + - formula: "C17H13O8" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01295c + - id: "m01295c" - name: "aflatoxin B1 diol" - - compartment: c - - formula: C17H14O8 + - compartment: "c" + - formula: "C17H14O8" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01296c + - id: "m01296c" - name: "aflatoxin B1" - - compartment: c - - formula: C17H12O6 + - compartment: "c" + - formula: "C17H12O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01296s + - id: "m01296s" - name: "aflatoxin B1" - - compartment: s - - formula: C17H12O6 + - compartment: "s" + - formula: "C17H12O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01297c + - id: "m01297c" - name: "aflatoxin B1-endo-8,9-epoxide" - - compartment: c - - formula: C17H12O7 + - compartment: "c" + - formula: "C17H12O7" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01298c + - id: "m01298c" - name: "aflatoxin B1-exo-8,9-epoxide" - - compartment: c - - formula: C17H12O7 + - compartment: "c" + - formula: "C17H12O7" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01298s + - id: "m01298s" - name: "aflatoxin B1-exo-8,9-epoxide" - - compartment: s - - formula: C17H12O7 + - compartment: "s" + - formula: "C17H12O7" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01299c + - id: "m01299c" - name: "aflatoxin B1-exo-8,9-epoxide-GSH" - - compartment: c - - formula: C27H29N3O13S + - compartment: "c" + - formula: "C27H29N3O13S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01300c + - id: "m01300c" - name: "aflatoxin M1" - - compartment: c - - formula: C17H12O7 + - compartment: "c" + - formula: "C17H12O7" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01301c + - id: "m01301c" - name: "aflatoxin M1-8,9-epoxide" - - compartment: c - - formula: C17H12O8 + - compartment: "c" + - formula: "C17H12O8" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01302c + - id: "m01302c" - name: "aflatoxin Q1" - - compartment: c - - formula: C17H12O7 + - compartment: "c" + - formula: "C17H12O7" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01303c + - id: "m01303c" - name: "agmatine" - - compartment: c - - formula: C5H16N4 + - compartment: "c" + - formula: "C5H16N4" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01303m + - id: "m01303m" - name: "agmatine" - - compartment: m - - formula: C5H16N4 + - compartment: "m" + - formula: "C5H16N4" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01303s + - id: "m01303s" - name: "agmatine" - - compartment: s - - formula: C5H16N4 + - compartment: "s" + - formula: "C5H16N4" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01304c + - id: "m01304c" - name: "AICAR" - - compartment: c - - formula: C9H13N4O8P + - compartment: "c" + - formula: "C9H13N4O8P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01305c + - id: "m01305c" - name: "AIR" - - compartment: c - - formula: C8H12N3O7P + - compartment: "c" + - formula: "C8H12N3O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01306c + - id: "m01306c" - name: "AKG" - - compartment: c - - formula: C5H4O5 + - compartment: "c" + - formula: "C5H4O5" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01306m + - id: "m01306m" - name: "AKG" - - compartment: m - - formula: C5H4O5 + - compartment: "m" + - formula: "C5H4O5" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01306p + - id: "m01306p" - name: "AKG" - - compartment: p - - formula: C5H4O5 + - compartment: "p" + - formula: "C5H4O5" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01306s + - id: "m01306s" - name: "AKG" - - compartment: s - - formula: C5H4O5 + - compartment: "s" + - formula: "C5H4O5" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01307c + - id: "m01307c" - name: "alanine" - - compartment: c - - formula: C3H7NO2 + - compartment: "c" + - formula: "C3H7NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01307l + - id: "m01307l" - name: "alanine" - - compartment: l - - formula: C3H7NO2 + - compartment: "l" + - formula: "C3H7NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01307m + - id: "m01307m" - name: "alanine" - - compartment: m - - formula: C3H7NO2 + - compartment: "m" + - formula: "C3H7NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01307p + - id: "m01307p" - name: "alanine" - - compartment: p - - formula: C3H7NO2 + - compartment: "p" + - formula: "C3H7NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01307s + - id: "m01307s" - name: "alanine" - - compartment: s - - formula: C3H7NO2 + - compartment: "s" + - formula: "C3H7NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01308c + - id: "m01308c" - name: "albumin" - - compartment: c - - formula: C3076H4833N821O919S42 + - compartment: "c" + - formula: "C3076H4833N821O919S42" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01308l + - id: "m01308l" - name: "albumin" - - compartment: l - - formula: C3076H4833N821O919S42 + - compartment: "l" + - formula: "C3076H4833N821O919S42" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01308s + - id: "m01308s" - name: "albumin" - - compartment: s - - formula: C3076H4833N821O919S42 + - compartment: "s" + - formula: "C3076H4833N821O919S42" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01309c + - id: "m01309c" - name: "aldosterone" - - compartment: c - - formula: C21H28O5 + - compartment: "c" + - formula: "C21H28O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01309m + - id: "m01309m" - name: "aldosterone" - - compartment: m - - formula: C21H28O5 + - compartment: "m" + - formula: "C21H28O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01309s + - id: "m01309s" - name: "aldosterone" - - compartment: s - - formula: C21H28O5 + - compartment: "s" + - formula: "C21H28O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01310c + - id: "m01310c" - name: "alkylamine" - - compartment: c - - formula: H3NR + - compartment: "c" + - formula: "H3NR" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01311c + - id: "m01311c" - name: "alkyl-glycerone-3-phosphate" - - compartment: c - - formula: C3H4O6PR + - compartment: "c" + - formula: "C3H4O6PR" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01311p + - id: "m01311p" - name: "alkyl-glycerone-3-phosphate" - - compartment: p - - formula: C3H4O6PR + - compartment: "p" + - formula: "C3H4O6PR" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01312c + - id: "m01312c" - name: "allantoate" - - compartment: c - - formula: C4H7N4O4 + - compartment: "c" + - formula: "C4H7N4O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01313c + - id: "m01313c" - name: "allantoin" - - compartment: c - - formula: C4H6N4O3 + - compartment: "c" + - formula: "C4H6N4O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01314c + - id: "m01314c" - name: "allopregnanolone" - - compartment: c - - formula: C21H34O2 + - compartment: "c" + - formula: "C21H34O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01315c + - id: "m01315c" - name: "alloxan" - - compartment: c - - formula: C4N2O4 + - compartment: "c" + - formula: "C4N2O4" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01315s + - id: "m01315s" - name: "alloxan" - - compartment: s - - formula: C4N2O4 + - compartment: "s" + - formula: "C4N2O4" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01316c + - id: "m01316c" - name: "all-trans-decaprenyl-diphosphate" - - compartment: c - - formula: C50H81O7P2 + - compartment: "c" + - formula: "C50H81O7P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01316m + - id: "m01316m" - name: "all-trans-decaprenyl-diphosphate" - - compartment: m - - formula: C50H81O7P2 + - compartment: "m" + - formula: "C50H81O7P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01317c + - id: "m01317c" - name: "alpha tubulin" - - compartment: c - - formula: C13H15N3O5R2 + - compartment: "c" + - formula: "C13H15N3O5R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01318c + - id: "m01318c" - name: "alpha-(1,2-dihydroxyethyl)-1,2,3,4-tetrahydro-7-hydroxy-9-methoxy-3,4-dioxocyclopenta[c][1]benzopyran-6-acetaldehyde" - - compartment: c - - formula: C17H15O8 + - compartment: "c" + - formula: "C17H15O8" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01319c + - id: "m01319c" - name: "alpha-[3-(nitrosoamino)propyl]-3-pyridinemethanol" - - compartment: c - - formula: C9H13N3O2 + - compartment: "c" + - formula: "C9H13N3O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01320c + - id: "m01320c" - name: "alpha-[3-[(hydroxymethyl)nitrosoamino]propyl]-3-pyridinemethanol" - - compartment: c - - formula: C10H15N3O3 + - compartment: "c" + - formula: "C10H15N3O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01321c + - id: "m01321c" - name: "alpha-CEHC-glucuronide" - - compartment: c - - formula: C22H29O10 + - compartment: "c" + - formula: "C22H29O10" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01322c + - id: "m01322c" - name: "alpha-D-galactose-1-phosphate" - - compartment: c - - formula: C6H11O9P + - compartment: "c" + - formula: "C6H11O9P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01323c + - id: "m01323c" - name: "alpha-D-mannosyl-beta-D-mannosyl-diacetylchitobiosyldiphosphodolichol" - - compartment: c - - formula: C128H210N2O27P2 + - compartment: "c" + - formula: "C128H210N2O27P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01324c + - id: "m01324c" - name: "alpha-GalNAc-globoside" - - compartment: c - - formula: C52H92N3O27RCO + - compartment: "c" + - formula: "C52H92N3O27RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01324g + - id: "m01324g" - name: "alpha-GalNAc-globoside" - - compartment: g - - formula: C52H92N3O27RCO + - compartment: "g" + - formula: "C52H92N3O27RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01324l + - id: "m01324l" - name: "alpha-GalNAc-globoside" - - compartment: l - - formula: C52H92N3O27RCO + - compartment: "l" + - formula: "C52H92N3O27RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01325c + - id: "m01325c" - name: "alpha-hydroxyisocaproic acid" - - compartment: c - - formula: C6H11O3 + - compartment: "c" + - formula: "C6H11O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01326c + - id: "m01326c" - name: "alpha-pinene-oxide" - - compartment: c - - formula: C10H16O + - compartment: "c" + - formula: "C10H16O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01326s + - id: "m01326s" - name: "alpha-pinene-oxide" - - compartment: s - - formula: C10H16O + - compartment: "s" + - formula: "C10H16O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01327c + - id: "m01327c" - name: "alpha-tocopherol" - - compartment: c - - formula: C29H50O2 + - compartment: "c" + - formula: "C29H50O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01327r + - id: "m01327r" - name: "alpha-tocopherol" - - compartment: r - - formula: C29H50O2 + - compartment: "r" + - formula: "C29H50O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01327s + - id: "m01327s" - name: "alpha-tocopherol" - - compartment: s - - formula: C29H50O2 + - compartment: "s" + - formula: "C29H50O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01328c + - id: "m01328c" - name: "alpha-tocopheryl hydroquinone" - - compartment: c - - formula: C29H52O3 + - compartment: "c" + - formula: "C29H52O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01329c + - id: "m01329c" - name: "alpha-tocopheryl quinone" - - compartment: c - - formula: C29H50O3 + - compartment: "c" + - formula: "C29H50O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01330c + - id: "m01330c" - name: "alpha-tocotrienol" - - compartment: c - - formula: C29H44O2 + - compartment: "c" + - formula: "C29H44O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01330r + - id: "m01330r" - name: "alpha-tocotrienol" - - compartment: r - - formula: C29H44O2 + - compartment: "r" + - formula: "C29H44O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01330s + - id: "m01330s" - name: "alpha-tocotrienol" - - compartment: s - - formula: C29H44O2 + - compartment: "s" + - formula: "C29H44O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01331c + - id: "m01331c" - name: "alpha-tocotrienoxyl radical" - - compartment: c - - formula: C29H43O2 + - compartment: "c" + - formula: "C29H43O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01332c + - id: "m01332c" - name: "aminoacetone" - - compartment: c - - formula: C3H8NO + - compartment: "c" + - formula: "C3H8NO" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01332m + - id: "m01332m" - name: "aminoacetone" - - compartment: m - - formula: C3H8NO + - compartment: "m" + - formula: "C3H8NO" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01333c + - id: "m01333c" - name: "aminochrome-O-semiquinone" - - compartment: c - - formula: C8H8NO2 + - compartment: "c" + - formula: "C8H8NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01334c + - id: "m01334c" - name: "AMP" - - compartment: c - - formula: C10H12N5O7P + - compartment: "c" + - formula: "C10H12N5O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01334g + - id: "m01334g" - name: "AMP" - - compartment: g - - formula: C10H12N5O7P + - compartment: "g" + - formula: "C10H12N5O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01334l + - id: "m01334l" - name: "AMP" - - compartment: l - - formula: C10H12N5O7P + - compartment: "l" + - formula: "C10H12N5O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01334m + - id: "m01334m" - name: "AMP" - - compartment: m - - formula: C10H12N5O7P + - compartment: "m" + - formula: "C10H12N5O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01334n + - id: "m01334n" - name: "AMP" - - compartment: n - - formula: C10H12N5O7P + - compartment: "n" + - formula: "C10H12N5O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01334p + - id: "m01334p" - name: "AMP" - - compartment: p - - formula: C10H12N5O7P + - compartment: "p" + - formula: "C10H12N5O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01334r + - id: "m01334r" - name: "AMP" - - compartment: r - - formula: C10H12N5O7P + - compartment: "r" + - formula: "C10H12N5O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01334s + - id: "m01334s" - name: "AMP" - - compartment: s - - formula: C10H12N5O7P + - compartment: "s" + - formula: "C10H12N5O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01335c + - id: "m01335c" - name: "anandamide" - - compartment: c - - formula: C22H37NO2 + - compartment: "c" + - formula: "C22H37NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01336c + - id: "m01336c" - name: "androstenediol" - - compartment: c - - formula: C19H30O2 + - compartment: "c" + - formula: "C19H30O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01336r + - id: "m01336r" - name: "androstenediol" - - compartment: r - - formula: C19H30O2 + - compartment: "r" + - formula: "C19H30O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01337c + - id: "m01337c" - name: "androsterone sulfate" - - compartment: c - - formula: C19H29O5S + - compartment: "c" + - formula: "C19H29O5S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01338c + - id: "m01338c" - name: "androsterone" - - compartment: c - - formula: C19H30O2 + - compartment: "c" + - formula: "C19H30O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01338r + - id: "m01338r" - name: "androsterone" - - compartment: r - - formula: C19H30O2 + - compartment: "r" + - formula: "C19H30O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01338s + - id: "m01338s" - name: "androsterone" - - compartment: s - - formula: C19H30O2 + - compartment: "s" + - formula: "C19H30O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01339c + - id: "m01339c" - name: "androsterone-glucuronide" - - compartment: c - - formula: C25H38O8 + - compartment: "c" + - formula: "C25H38O8" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01339r + - id: "m01339r" - name: "androsterone-glucuronide" - - compartment: r - - formula: C25H38O8 + - compartment: "r" + - formula: "C25H38O8" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01339s + - id: "m01339s" - name: "androsterone-glucuronide" - - compartment: s - - formula: C25H38O8 + - compartment: "s" + - formula: "C25H38O8" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01340c + - id: "m01340c" - name: "anhydroretinol" - - compartment: c - - formula: C20H28 + - compartment: "c" + - formula: "C20H28" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01341c + - id: "m01341c" - name: "aniline" - - compartment: c - - formula: C6H7N + - compartment: "c" + - formula: "C6H7N" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01342c + - id: "m01342c" - name: "anthranilate" - - compartment: c - - formula: C7H6NO2 + - compartment: "c" + - formula: "C7H6NO2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01343c + - id: "m01343c" - name: "antichymotrypsin" - - compartment: c - - formula: C2144H3392N554O636S17 + - compartment: "c" + - formula: "C2144H3392N554O636S17" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01343l + - id: "m01343l" - name: "antichymotrypsin" - - compartment: l - - formula: C2144H3392N554O636S17 + - compartment: "l" + - formula: "C2144H3392N554O636S17" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01343s + - id: "m01343s" - name: "antichymotrypsin" - - compartment: s - - formula: C2144H3392N554O636S17 + - compartment: "s" + - formula: "C2144H3392N554O636S17" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01344c + - id: "m01344c" - name: "antipyrine" - - compartment: c - - formula: C11H12N2O + - compartment: "c" + - formula: "C11H12N2O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01344s + - id: "m01344s" - name: "antipyrine" - - compartment: s - - formula: C11H12N2O + - compartment: "s" + - formula: "C11H12N2O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01345c + - id: "m01345c" - name: "antitrypsin" - - compartment: c - - formula: C2112H3313N539O629S13 + - compartment: "c" + - formula: "C2112H3313N539O629S13" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01345l + - id: "m01345l" - name: "antitrypsin" - - compartment: l - - formula: C2112H3313N539O629S13 + - compartment: "l" + - formula: "C2112H3313N539O629S13" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01345s + - id: "m01345s" - name: "antitrypsin" - - compartment: s - - formula: C2112H3313N539O629S13 + - compartment: "s" + - formula: "C2112H3313N539O629S13" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01346c + - id: "m01346c" - name: "APE" - - compartment: c - - formula: C27H37NO8PR2 + - compartment: "c" + - formula: "C27H37NO8PR2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01347c + - id: "m01347c" - name: "apelin-(1-12)" - - compartment: c - - formula: C60H105N22O15S + - compartment: "c" + - formula: "C60H105N22O15S" - charge: 3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01348c + - id: "m01348c" - name: "apelin-13" - - compartment: c - - formula: C69H114N23O16S + - compartment: "c" + - formula: "C69H114N23O16S" - charge: 3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01349c + - id: "m01349c" - name: "apo-[ACP]" - - compartment: c - - formula: HOR + - compartment: "c" + - formula: "HOR" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01350c + - id: "m01350c" - name: "apoA1" - - compartment: c - - formula: C1367H2173N381O419S4 + - compartment: "c" + - formula: "C1367H2173N381O419S4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01350l + - id: "m01350l" - name: "apoA1" - - compartment: l - - formula: C1367H2173N381O419S4 + - compartment: "l" + - formula: "C1367H2173N381O419S4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01350r + - id: "m01350r" - name: "apoA1" - - compartment: r - - formula: C1367H2173N381O419S4 + - compartment: "r" + - formula: "C1367H2173N381O419S4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01350s + - id: "m01350s" - name: "apoA1" - - compartment: s - - formula: C1367H2173N381O419S4 + - compartment: "s" + - formula: "C1367H2173N381O419S4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01351c + - id: "m01351c" - name: "apoB100" - - compartment: c - - formula: C23182H36564N6112O6944S104 + - compartment: "c" + - formula: "C23182H36564N6112O6944S104" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01351l + - id: "m01351l" - name: "apoB100" - - compartment: l - - formula: C23182H36564N6112O6944S104 + - compartment: "l" + - formula: "C23182H36564N6112O6944S104" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01351r + - id: "m01351r" - name: "apoB100" - - compartment: r - - formula: C23182H36564N6112O6944S104 + - compartment: "r" + - formula: "C23182H36564N6112O6944S104" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01352l + - id: "m01352l" - name: "apoB48" - - compartment: l - - formula: C23203H36592N6110O6947S103 + - compartment: "l" + - formula: "C23203H36592N6110O6947S103" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01353c + - id: "m01353c" - name: "apoC1" - - compartment: c - - formula: C421H695N109O124S2 + - compartment: "c" + - formula: "C421H695N109O124S2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01353r + - id: "m01353r" - name: "apoC1" - - compartment: r - - formula: C421H695N109O124S2 + - compartment: "r" + - formula: "C421H695N109O124S2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01354c + - id: "m01354c" - name: "apoC2" - - compartment: c - - formula: C509H801N123O159S3 + - compartment: "c" + - formula: "C509H801N123O159S3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01354r + - id: "m01354r" - name: "apoC2" - - compartment: r - - formula: C509H801N123O159S3 + - compartment: "r" + - formula: "C509H801N123O159S3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01355c + - id: "m01355c" - name: "apoC3" - - compartment: c - - formula: C484H760N128O149S3 + - compartment: "c" + - formula: "C484H760N128O149S3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01355r + - id: "m01355r" - name: "apoC3" - - compartment: r - - formula: C484H760N128O149S3 + - compartment: "r" + - formula: "C484H760N128O149S3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01356c + - id: "m01356c" - name: "apoC-lys" - - compartment: c - - formula: C6H13N2OX + - compartment: "c" + - formula: "C6H13N2OX" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01356s + - id: "m01356s" - name: "apoC-lys" - - compartment: s - - formula: C6H13N2OX + - compartment: "s" + - formula: "C6H13N2OX" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01357c + - id: "m01357c" - name: "apoC-lys_btn" - - compartment: c - - formula: C16H27N4O3SX + - compartment: "c" + - formula: "C16H27N4O3SX" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01358c + - id: "m01358c" - name: "apocytochrome-C" - - compartment: c - - formula: C1578H2483N443O445S20 + - compartment: "c" + - formula: "C1578H2483N443O445S20" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01358l + - id: "m01358l" - name: "apocytochrome-C" - - compartment: l - - formula: C1578H2483N443O445S20 + - compartment: "l" + - formula: "C1578H2483N443O445S20" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01358m + - id: "m01358m" - name: "apocytochrome-C" - - compartment: m - - formula: C1578H2483N443O445S20 + - compartment: "m" + - formula: "C1578H2483N443O445S20" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01359c + - id: "m01359c" - name: "apoE" - - compartment: c - - formula: C1569H2559N477O483S10 + - compartment: "c" + - formula: "C1569H2559N477O483S10" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01359l + - id: "m01359l" - name: "apoE" - - compartment: l - - formula: C1569H2559N477O483S10 + - compartment: "l" + - formula: "C1569H2559N477O483S10" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01359r + - id: "m01359r" - name: "apoE" - - compartment: r - - formula: C1569H2559N477O483S10 + - compartment: "r" + - formula: "C1569H2559N477O483S10" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01360c + - id: "m01360c" - name: "apppA" - - compartment: c - - formula: C20H24N10O16P3 + - compartment: "c" + - formula: "C20H24N10O16P3" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01361c + - id: "m01361c" - name: "aquacob(III)alamin" - - compartment: c - - formula: C62H90CoN13O15P + - compartment: "c" + - formula: "C62H90CoN13O15P" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01361s + - id: "m01361s" - name: "aquacob(III)alamin" - - compartment: s - - formula: C62H90CoN13O15P + - compartment: "s" + - formula: "C62H90CoN13O15P" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01362c + - id: "m01362c" - name: "arachidonate" - - compartment: c - - formula: C20H31O2 + - compartment: "c" + - formula: "C20H31O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01362l + - id: "m01362l" - name: "arachidonate" - - compartment: l - - formula: C20H31O2 + - compartment: "l" + - formula: "C20H31O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01362n + - id: "m01362n" - name: "arachidonate" - - compartment: n - - formula: C20H31O2 + - compartment: "n" + - formula: "C20H31O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01362p + - id: "m01362p" - name: "arachidonate" - - compartment: p - - formula: C20H31O2 + - compartment: "p" + - formula: "C20H31O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01362r + - id: "m01362r" - name: "arachidonate" - - compartment: r - - formula: C20H31O2 + - compartment: "r" + - formula: "C20H31O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01362s + - id: "m01362s" - name: "arachidonate" - - compartment: s - - formula: C20H31O2 + - compartment: "s" + - formula: "C20H31O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01363c + - id: "m01363c" - name: "arachidonyl-carnitine" - - compartment: c - - formula: C27H45NO4 + - compartment: "c" + - formula: "C27H45NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01363m + - id: "m01363m" - name: "arachidonyl-carnitine" - - compartment: m - - formula: C27H45NO4 + - compartment: "m" + - formula: "C27H45NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01363r + - id: "m01363r" - name: "arachidonyl-carnitine" - - compartment: r - - formula: C27H45NO4 + - compartment: "r" + - formula: "C27H45NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01364c + - id: "m01364c" - name: "arachidonyl-CoA" - - compartment: c - - formula: C41H62N7O17P3S + - compartment: "c" + - formula: "C41H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01364m + - id: "m01364m" - name: "arachidonyl-CoA" - - compartment: m - - formula: C41H62N7O17P3S + - compartment: "m" + - formula: "C41H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01364p + - id: "m01364p" - name: "arachidonyl-CoA" - - compartment: p - - formula: C41H62N7O17P3S + - compartment: "p" + - formula: "C41H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01364r + - id: "m01364r" - name: "arachidonyl-CoA" - - compartment: r - - formula: C41H62N7O17P3S + - compartment: "r" + - formula: "C41H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01365c + - id: "m01365c" - name: "arginine" - - compartment: c - - formula: C6H15N4O2 + - compartment: "c" + - formula: "C6H15N4O2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01365l + - id: "m01365l" - name: "arginine" - - compartment: l - - formula: C6H15N4O2 + - compartment: "l" + - formula: "C6H15N4O2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01365m + - id: "m01365m" - name: "arginine" - - compartment: m - - formula: C6H15N4O2 + - compartment: "m" + - formula: "C6H15N4O2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01365s + - id: "m01365s" - name: "arginine" - - compartment: s - - formula: C6H15N4O2 + - compartment: "s" + - formula: "C6H15N4O2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01366c + - id: "m01366c" - name: "argininosuccinate" - - compartment: c - - formula: C10H17N4O6 + - compartment: "c" + - formula: "C10H17N4O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01367c + - id: "m01367c" - name: "arsenite" - - compartment: c - - formula: AsH2O3 + - compartment: "c" + - formula: "AsH2O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01368c + - id: "m01368c" - name: "ascorbate" - - compartment: c - - formula: C6H7O6 + - compartment: "c" + - formula: "C6H7O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01368s + - id: "m01368s" - name: "ascorbate" - - compartment: s - - formula: C6H7O6 + - compartment: "s" + - formula: "C6H7O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01369c + - id: "m01369c" - name: "asparagine" - - compartment: c - - formula: C4H8N2O3 + - compartment: "c" + - formula: "C4H8N2O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01369l + - id: "m01369l" - name: "asparagine" - - compartment: l - - formula: C4H8N2O3 + - compartment: "l" + - formula: "C4H8N2O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01369m + - id: "m01369m" - name: "asparagine" - - compartment: m - - formula: C4H8N2O3 + - compartment: "m" + - formula: "C4H8N2O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01369s + - id: "m01369s" - name: "asparagine" - - compartment: s - - formula: C4H8N2O3 + - compartment: "s" + - formula: "C4H8N2O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01370c + - id: "m01370c" - name: "aspartate" - - compartment: c - - formula: C4H6NO4 + - compartment: "c" + - formula: "C4H6NO4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01370l + - id: "m01370l" - name: "aspartate" - - compartment: l - - formula: C4H6NO4 + - compartment: "l" + - formula: "C4H6NO4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01370m + - id: "m01370m" - name: "aspartate" - - compartment: m - - formula: C4H6NO4 + - compartment: "m" + - formula: "C4H6NO4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01370s + - id: "m01370s" - name: "aspartate" - - compartment: s - - formula: C4H6NO4 + - compartment: "s" + - formula: "C4H6NO4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01371c + - id: "m01371c" - name: "ATP" - - compartment: c - - formula: C10H12N5O13P3 + - compartment: "c" + - formula: "C10H12N5O13P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01371g + - id: "m01371g" - name: "ATP" - - compartment: g - - formula: C10H12N5O13P3 + - compartment: "g" + - formula: "C10H12N5O13P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01371l + - id: "m01371l" - name: "ATP" - - compartment: l - - formula: C10H12N5O13P3 + - compartment: "l" + - formula: "C10H12N5O13P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01371m + - id: "m01371m" - name: "ATP" - - compartment: m - - formula: C10H12N5O13P3 + - compartment: "m" + - formula: "C10H12N5O13P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01371n + - id: "m01371n" - name: "ATP" - - compartment: n - - formula: C10H12N5O13P3 + - compartment: "n" + - formula: "C10H12N5O13P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01371p + - id: "m01371p" - name: "ATP" - - compartment: p - - formula: C10H12N5O13P3 + - compartment: "p" + - formula: "C10H12N5O13P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01371r + - id: "m01371r" - name: "ATP" - - compartment: r - - formula: C10H12N5O13P3 + - compartment: "r" + - formula: "C10H12N5O13P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01371s + - id: "m01371s" - name: "ATP" - - compartment: s - - formula: C10H12N5O13P3 + - compartment: "s" + - formula: "C10H12N5O13P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01372c + - id: "m01372c" - name: "azelaic acid" - - compartment: c - - formula: C9H14O4 + - compartment: "c" + - formula: "C9H14O4" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01373c + - id: "m01373c" - name: "behenic acid" - - compartment: c - - formula: C22H43O2 + - compartment: "c" + - formula: "C22H43O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01373l + - id: "m01373l" - name: "behenic acid" - - compartment: l - - formula: C22H43O2 + - compartment: "l" + - formula: "C22H43O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01373r + - id: "m01373r" - name: "behenic acid" - - compartment: r - - formula: C22H43O2 + - compartment: "r" + - formula: "C22H43O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01373s + - id: "m01373s" - name: "behenic acid" - - compartment: s - - formula: C22H43O2 + - compartment: "s" + - formula: "C22H43O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01374c + - id: "m01374c" - name: "benzo[a]pyrene" - - compartment: c - - formula: C20H12 + - compartment: "c" + - formula: "C20H12" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01374s + - id: "m01374s" - name: "benzo[a]pyrene" - - compartment: s - - formula: C20H12 + - compartment: "s" + - formula: "C20H12" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01375c + - id: "m01375c" - name: "benzo[a]pyrene-4,5-oxide" - - compartment: c - - formula: C20H12O + - compartment: "c" + - formula: "C20H12O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01376c + - id: "m01376c" - name: "benzo[a]pyrene-7,8-dihydrodiol-9,10-oxide" - - compartment: c - - formula: C20H14O3 + - compartment: "c" + - formula: "C20H14O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01377c + - id: "m01377c" - name: "benzo[a]pyrene-7,8-diol" - - compartment: c - - formula: C20H14O2 + - compartment: "c" + - formula: "C20H14O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01378c + - id: "m01378c" - name: "benzo[a]pyrene-7,8-oxide" - - compartment: c - - formula: C20H12O + - compartment: "c" + - formula: "C20H12O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01379c + - id: "m01379c" - name: "benzo[a]pyrene-9,10-oxide" - - compartment: c - - formula: C20H12O + - compartment: "c" + - formula: "C20H12O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01380c + - id: "m01380c" - name: "benzoate" - - compartment: c - - formula: C7H5O2 + - compartment: "c" + - formula: "C7H5O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01380r + - id: "m01380r" - name: "benzoate" - - compartment: r - - formula: C7H5O2 + - compartment: "r" + - formula: "C7H5O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01381c + - id: "m01381c" - name: "benzothiazine" - - compartment: c - - formula: C11H12N2O3S + - compartment: "c" + - formula: "C11H12N2O3S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01382l + - id: "m01382l" - name: "beta-1,4-mannose-N-acetylglucosamine" - - compartment: l - - formula: C14H25NO11 + - compartment: "l" + - formula: "C14H25NO11" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01383c + - id: "m01383c" - name: "beta-alanine" - - compartment: c - - formula: C3H7NO2 + - compartment: "c" + - formula: "C3H7NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01383m + - id: "m01383m" - name: "beta-alanine" - - compartment: m - - formula: C3H7NO2 + - compartment: "m" + - formula: "C3H7NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01383s + - id: "m01383s" - name: "beta-alanine" - - compartment: s - - formula: C3H7NO2 + - compartment: "s" + - formula: "C3H7NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01384c + - id: "m01384c" - name: "beta-carboline" - - compartment: c - - formula: C11H8N2 + - compartment: "c" + - formula: "C11H8N2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01385c + - id: "m01385c" - name: "beta-carotene" - - compartment: c - - formula: C40H56 + - compartment: "c" + - formula: "C40H56" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01385s + - id: "m01385s" - name: "beta-carotene" - - compartment: s - - formula: C40H56 + - compartment: "s" + - formula: "C40H56" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01386c + - id: "m01386c" - name: "beta-casomorphin (1-6)" - - compartment: c - - formula: C38H49N6O10 + - compartment: "c" + - formula: "C38H49N6O10" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01387c + - id: "m01387c" - name: "beta-casomorphin" - - compartment: c - - formula: C44H60N7O11 + - compartment: "c" + - formula: "C44H60N7O11" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01388c + - id: "m01388c" - name: "beta-D-glucose" - - compartment: c - - formula: C6H12O6 + - compartment: "c" + - formula: "C6H12O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01389c + - id: "m01389c" - name: "beta-D-glucose-6-phosphate" - - compartment: c - - formula: C6H11O9P + - compartment: "c" + - formula: "C6H11O9P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01390c + - id: "m01390c" - name: "beta-D-mannosyldiacetylchitobiosyldiphosphodolichol" - - compartment: c - - formula: C122H200N2O22P2 + - compartment: "c" + - formula: "C122H200N2O22P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01391c + - id: "m01391c" - name: "beta-GalNAc-globoside" - - compartment: c - - formula: C52H92N3O27RCO + - compartment: "c" + - formula: "C52H92N3O27RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01391g + - id: "m01391g" - name: "beta-GalNAc-globoside" - - compartment: g - - formula: C52H92N3O27RCO + - compartment: "g" + - formula: "C52H92N3O27RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01391l + - id: "m01391l" - name: "beta-GalNAc-globoside" - - compartment: l - - formula: C52H92N3O27RCO + - compartment: "l" + - formula: "C52H92N3O27RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01392c + - id: "m01392c" - name: "beta-hydroxy-beta-methylbutyrate" - - compartment: c - - formula: C5H9O3 + - compartment: "c" + - formula: "C5H9O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01393c + - id: "m01393c" - name: "betaine" - - compartment: c - - formula: C5H11NO2 + - compartment: "c" + - formula: "C5H11NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01393m + - id: "m01393m" - name: "betaine" - - compartment: m - - formula: C5H11NO2 + - compartment: "m" + - formula: "C5H11NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01393s + - id: "m01393s" - name: "betaine" - - compartment: s - - formula: C5H11NO2 + - compartment: "s" + - formula: "C5H11NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01394c + - id: "m01394c" - name: "betaine_aldehyde" - - compartment: c - - formula: C5H12NO + - compartment: "c" + - formula: "C5H12NO" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01394m + - id: "m01394m" - name: "betaine_aldehyde" - - compartment: m - - formula: C5H12NO + - compartment: "m" + - formula: "C5H12NO" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01395c + - id: "m01395c" - name: "bile-PC pool" - - compartment: c - - formula: C10H18NO8PR2 + - compartment: "c" + - formula: "C10H18NO8PR2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01395s + - id: "m01395s" - name: "bile-PC pool" - - compartment: s - - formula: C10H18NO8PR2 + - compartment: "s" + - formula: "C10H18NO8PR2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01396c + - id: "m01396c" - name: "bilirubin" - - compartment: c - - formula: C33H34N4O6 + - compartment: "c" + - formula: "C33H34N4O6" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01396r + - id: "m01396r" - name: "bilirubin" - - compartment: r - - formula: C33H34N4O6 + - compartment: "r" + - formula: "C33H34N4O6" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01396s + - id: "m01396s" - name: "bilirubin" - - compartment: s - - formula: C33H34N4O6 + - compartment: "s" + - formula: "C33H34N4O6" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01397c + - id: "m01397c" - name: "bilirubin-bisglucuronoside" - - compartment: c - - formula: C45H50N4O18 + - compartment: "c" + - formula: "C45H50N4O18" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01397r + - id: "m01397r" - name: "bilirubin-bisglucuronoside" - - compartment: r - - formula: C45H50N4O18 + - compartment: "r" + - formula: "C45H50N4O18" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01397s + - id: "m01397s" - name: "bilirubin-bisglucuronoside" - - compartment: s - - formula: C45H50N4O18 + - compartment: "s" + - formula: "C45H50N4O18" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01398c + - id: "m01398c" - name: "bilirubin-monoglucuronoside" - - compartment: c - - formula: C39H42N4O12 + - compartment: "c" + - formula: "C39H42N4O12" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01398r + - id: "m01398r" - name: "bilirubin-monoglucuronoside" - - compartment: r - - formula: C39H42N4O12 + - compartment: "r" + - formula: "C39H42N4O12" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01398s + - id: "m01398s" - name: "bilirubin-monoglucuronoside" - - compartment: s - - formula: C39H42N4O12 + - compartment: "s" + - formula: "C39H42N4O12" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01399c + - id: "m01399c" - name: "biliverdin" - - compartment: c - - formula: C33H32N4O6 + - compartment: "c" + - formula: "C33H32N4O6" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01400c + - id: "m01400c" - name: "biocytin" - - compartment: c - - formula: C16H28N4O4S + - compartment: "c" + - formula: "C16H28N4O4S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01400n + - id: "m01400n" - name: "biocytin" - - compartment: n - - formula: C16H28N4O4S + - compartment: "n" + - formula: "C16H28N4O4S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01400s + - id: "m01400s" - name: "biocytin" - - compartment: s - - formula: C16H28N4O4S + - compartment: "s" + - formula: "C16H28N4O4S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01401c + - id: "m01401c" - name: "biotin" - - compartment: c - - formula: C10H15N2O3S + - compartment: "c" + - formula: "C10H15N2O3S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01401n + - id: "m01401n" - name: "biotin" - - compartment: n - - formula: C10H15N2O3S + - compartment: "n" + - formula: "C10H15N2O3S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01401s + - id: "m01401s" - name: "biotin" - - compartment: s - - formula: C10H15N2O3S + - compartment: "s" + - formula: "C10H15N2O3S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01402c + - id: "m01402c" - name: "biotinyl-5-AMP" - - compartment: c - - formula: C20H27N7O9PS + - compartment: "c" + - formula: "C20H27N7O9PS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01403c + - id: "m01403c" - name: "bromobenzene" - - compartment: c - - formula: C6H5Br + - compartment: "c" + - formula: "C6H5Br" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01403s + - id: "m01403s" - name: "bromobenzene" - - compartment: s - - formula: C6H5Br + - compartment: "s" + - formula: "C6H5Br" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01404c + - id: "m01404c" - name: "bromobenzene-2,3-dihydrodiol" - - compartment: c - - formula: C6H7BrO2 + - compartment: "c" + - formula: "C6H7BrO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01405c + - id: "m01405c" - name: "bromobenzene-2,3-oxide" - - compartment: c - - formula: C6H5BrO + - compartment: "c" + - formula: "C6H5BrO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01406c + - id: "m01406c" - name: "bromobenzene-3,4-dihydrodiol" - - compartment: c - - formula: C6H7BrO2 + - compartment: "c" + - formula: "C6H7BrO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01407c + - id: "m01407c" - name: "bromobenzene-3,4-oxide" - - compartment: c - - formula: C6H5BrO + - compartment: "c" + - formula: "C6H5BrO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01408c + - id: "m01408c" - name: "bufotenine" - - compartment: c - - formula: C12H16N2O + - compartment: "c" + - formula: "C12H16N2O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01409c + - id: "m01409c" - name: "but-2-enoyl-[ACP]" - - compartment: c - - formula: C15H25N2O8PRS + - compartment: "c" + - formula: "C15H25N2O8PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01410c + - id: "m01410c" - name: "butyrate" - - compartment: c - - formula: C4H7O2 + - compartment: "c" + - formula: "C4H7O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01410s + - id: "m01410s" - name: "butyrate" - - compartment: s - - formula: C4H7O2 + - compartment: "s" + - formula: "C4H7O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01411c + - id: "m01411c" - name: "butyryl-[ACP]" - - compartment: c - - formula: C15H27N2O8PRS + - compartment: "c" + - formula: "C15H27N2O8PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01412c + - id: "m01412c" - name: "butyryl-CoA" - - compartment: c - - formula: C25H38N7O17P3S + - compartment: "c" + - formula: "C25H38N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01412m + - id: "m01412m" - name: "butyryl-CoA" - - compartment: m - - formula: C25H38N7O17P3S + - compartment: "m" + - formula: "C25H38N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01412p + - id: "m01412p" - name: "butyryl-CoA" - - compartment: p - - formula: C25H38N7O17P3S + - compartment: "p" + - formula: "C25H38N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01413c + - id: "m01413c" - name: "Ca2+" - - compartment: c - - formula: Ca + - compartment: "c" + - formula: "Ca" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01413s + - id: "m01413s" - name: "Ca2+" - - compartment: s - - formula: Ca + - compartment: "s" + - formula: "Ca" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01414c + - id: "m01414c" - name: "caffeate" - - compartment: c - - formula: C9H7O4 + - compartment: "c" + - formula: "C9H7O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01415c + - id: "m01415c" - name: "calcidiol" - - compartment: c - - formula: C27H44O2 + - compartment: "c" + - formula: "C27H44O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01415m + - id: "m01415m" - name: "calcidiol" - - compartment: m - - formula: C27H44O2 + - compartment: "m" + - formula: "C27H44O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01415s + - id: "m01415s" - name: "calcidiol" - - compartment: s - - formula: C27H44O2 + - compartment: "s" + - formula: "C27H44O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01416c + - id: "m01416c" - name: "calcitetrol" - - compartment: c - - formula: C27H44O4 + - compartment: "c" + - formula: "C27H44O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01416m + - id: "m01416m" - name: "calcitetrol" - - compartment: m - - formula: C27H44O4 + - compartment: "m" + - formula: "C27H44O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01417c + - id: "m01417c" - name: "calcitriol" - - compartment: c - - formula: C27H44O3 + - compartment: "c" + - formula: "C27H44O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01417m + - id: "m01417m" - name: "calcitriol" - - compartment: m - - formula: C27H44O3 + - compartment: "m" + - formula: "C27H44O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01418c + - id: "m01418c" - name: "calcitroic acid" - - compartment: c - - formula: C23H33O4 + - compartment: "c" + - formula: "C23H33O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01418m + - id: "m01418m" - name: "calcitroic acid" - - compartment: m - - formula: C23H33O4 + - compartment: "m" + - formula: "C23H33O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01418s + - id: "m01418s" - name: "calcitroic acid" - - compartment: s - - formula: C23H33O4 + - compartment: "s" + - formula: "C23H33O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01419c + - id: "m01419c" - name: "cAMP" - - compartment: c - - formula: C10H11N5O6P + - compartment: "c" + - formula: "C10H11N5O6P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01419g + - id: "m01419g" - name: "cAMP" - - compartment: g - - formula: C10H11N5O6P + - compartment: "g" + - formula: "C10H11N5O6P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01419s + - id: "m01419s" - name: "cAMP" - - compartment: s - - formula: C10H11N5O6P + - compartment: "s" + - formula: "C10H11N5O6P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01420c + - id: "m01420c" - name: "carbamoyl-phosphate" - - compartment: c - - formula: CH2NO5P + - compartment: "c" + - formula: "CH2NO5P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01420m + - id: "m01420m" - name: "carbamoyl-phosphate" - - compartment: m - - formula: CH2NO5P + - compartment: "m" + - formula: "CH2NO5P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01420r + - id: "m01420r" - name: "carbamoyl-phosphate" - - compartment: r - - formula: CH2NO5P + - compartment: "r" + - formula: "CH2NO5P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01421c + - id: "m01421c" - name: "carbonate" - - compartment: c - - formula: CH2O3 + - compartment: "c" + - formula: "CH2O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01421m + - id: "m01421m" - name: "carbonate" - - compartment: m - - formula: CH2O3 + - compartment: "m" + - formula: "CH2O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01421s + - id: "m01421s" - name: "carbonate" - - compartment: s - - formula: CH2O3 + - compartment: "s" + - formula: "CH2O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01422c + - id: "m01422c" - name: "carboxybiotin-carboxyl-carrier" - - compartment: c - - formula: C17H26N4O5SX + - compartment: "c" + - formula: "C17H26N4O5SX" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01423c + - id: "m01423c" - name: "carnosine" - - compartment: c - - formula: C9H14N4O3 + - compartment: "c" + - formula: "C9H14N4O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01424c + - id: "m01424c" - name: "CDP" - - compartment: c - - formula: C9H12N3O11P2 + - compartment: "c" + - formula: "C9H12N3O11P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01424m + - id: "m01424m" - name: "CDP" - - compartment: m - - formula: C9H12N3O11P2 + - compartment: "m" + - formula: "C9H12N3O11P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01424n + - id: "m01424n" - name: "CDP" - - compartment: n - - formula: C9H12N3O11P2 + - compartment: "n" + - formula: "C9H12N3O11P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01424s + - id: "m01424s" - name: "CDP" - - compartment: s - - formula: C9H12N3O11P2 + - compartment: "s" + - formula: "C9H12N3O11P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01425c + - id: "m01425c" - name: "CDP-choline" - - compartment: c - - formula: C14H25N4O11P2 + - compartment: "c" + - formula: "C14H25N4O11P2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01425r + - id: "m01425r" - name: "CDP-choline" - - compartment: r - - formula: C14H25N4O11P2 + - compartment: "r" + - formula: "C14H25N4O11P2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01426m + - id: "m01426m" - name: "CDP-diacylglycerol-CL pool" - - compartment: m - - formula: C14H17N3O15P2R2 + - compartment: "m" + - formula: "C14H17N3O15P2R2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01427c + - id: "m01427c" - name: "CDP-diacylglycerol-LD-PI pool" - - compartment: c - - formula: C14H17N3O15P2R2 + - compartment: "c" + - formula: "C14H17N3O15P2R2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01427l + - id: "m01427l" - name: "CDP-diacylglycerol-LD-PI pool" - - compartment: l - - formula: C14H17N3O15P2R2 + - compartment: "l" + - formula: "C14H17N3O15P2R2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01427r + - id: "m01427r" - name: "CDP-diacylglycerol-LD-PI pool" - - compartment: r - - formula: C14H17N3O15P2R2 + - compartment: "r" + - formula: "C14H17N3O15P2R2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01428c + - id: "m01428c" - name: "CDP-ethanolamine" - - compartment: c - - formula: C11H19N4O11P2 + - compartment: "c" + - formula: "C11H19N4O11P2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01428g + - id: "m01428g" - name: "CDP-ethanolamine" - - compartment: g - - formula: C11H19N4O11P2 + - compartment: "g" + - formula: "C11H19N4O11P2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01429c + - id: "m01429c" - name: "CDP-glycerol" - - compartment: c - - formula: C12H19N3O13P2 + - compartment: "c" + - formula: "C12H19N3O13P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01430c + - id: "m01430c" - name: "ceramide pool" - - compartment: c - - formula: C18H36NO2RCO + - compartment: "c" + - formula: "C18H36NO2RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01430g + - id: "m01430g" - name: "ceramide pool" - - compartment: g - - formula: C18H36NO2RCO + - compartment: "g" + - formula: "C18H36NO2RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01430l + - id: "m01430l" - name: "ceramide pool" - - compartment: l - - formula: C18H36NO2RCO + - compartment: "l" + - formula: "C18H36NO2RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01430r + - id: "m01430r" - name: "ceramide pool" - - compartment: r - - formula: C18H36NO2RCO + - compartment: "r" + - formula: "C18H36NO2RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01431c + - id: "m01431c" - name: "ceramide-1P pool" - - compartment: c - - formula: C18H35NO5PRCO + - compartment: "c" + - formula: "C18H35NO5PRCO" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01432c + - id: "m01432c" - name: "cerotic acid" - - compartment: c - - formula: C26H51O2 + - compartment: "c" + - formula: "C26H51O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01432l + - id: "m01432l" - name: "cerotic acid" - - compartment: l - - formula: C26H51O2 + - compartment: "l" + - formula: "C26H51O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01432r + - id: "m01432r" - name: "cerotic acid" - - compartment: r - - formula: C26H51O2 + - compartment: "r" + - formula: "C26H51O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01432s + - id: "m01432s" - name: "cerotic acid" - - compartment: s - - formula: C26H51O2 + - compartment: "s" + - formula: "C26H51O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01433c + - id: "m01433c" - name: "cGMP" - - compartment: c - - formula: C10H11N5O7P + - compartment: "c" + - formula: "C10H11N5O7P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01433g + - id: "m01433g" - name: "cGMP" - - compartment: g - - formula: C10H11N5O7P + - compartment: "g" + - formula: "C10H11N5O7P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01433n + - id: "m01433n" - name: "cGMP" - - compartment: n - - formula: C10H11N5O7P + - compartment: "n" + - formula: "C10H11N5O7P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01433s + - id: "m01433s" - name: "cGMP" - - compartment: s - - formula: C10H11N5O7P + - compartment: "s" + - formula: "C10H11N5O7P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01434c + - id: "m01434c" - name: "chenodeoxycholoyl-CoA" - - compartment: c - - formula: C45H70N7O19P3S + - compartment: "c" + - formula: "C45H70N7O19P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01434p + - id: "m01434p" - name: "chenodeoxycholoyl-CoA" - - compartment: p - - formula: C45H70N7O19P3S + - compartment: "p" + - formula: "C45H70N7O19P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01434r + - id: "m01434r" - name: "chenodeoxycholoyl-CoA" - - compartment: r - - formula: C45H70N7O19P3S + - compartment: "r" + - formula: "C45H70N7O19P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01435c + - id: "m01435c" - name: "chenodiol" - - compartment: c - - formula: C24H39O4 + - compartment: "c" + - formula: "C24H39O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01435p + - id: "m01435p" - name: "chenodiol" - - compartment: p - - formula: C24H39O4 + - compartment: "p" + - formula: "C24H39O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01435r + - id: "m01435r" - name: "chenodiol" - - compartment: r - - formula: C24H39O4 + - compartment: "r" + - formula: "C24H39O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01435s + - id: "m01435s" - name: "chenodiol" - - compartment: s - - formula: C24H39O4 + - compartment: "s" + - formula: "C24H39O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01436c + - id: "m01436c" - name: "chitin(n-1)" - - compartment: c - - formula: C16H28N2O11 + - compartment: "c" + - formula: "C16H28N2O11" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01437c + - id: "m01437c" - name: "chitin" - - compartment: c - - formula: C24H41N3O16 + - compartment: "c" + - formula: "C24H41N3O16" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01438c + - id: "m01438c" - name: "chitin-component" - - compartment: c - - formula: C8H13NO5 + - compartment: "c" + - formula: "C8H13NO5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01438s + - id: "m01438s" - name: "chitin-component" - - compartment: s - - formula: C8H13NO5 + - compartment: "s" + - formula: "C8H13NO5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01439l + - id: "m01439l" - name: "chitobiose" - - compartment: l - - formula: C16H28N2O11 + - compartment: "l" + - formula: "C16H28N2O11" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01439s + - id: "m01439s" - name: "chitobiose" - - compartment: s - - formula: C16H28N2O11 + - compartment: "s" + - formula: "C16H28N2O11" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01440c + - id: "m01440c" - name: "chloral hydrate" - - compartment: c - - formula: C2H3Cl3O2 + - compartment: "c" + - formula: "C2H3Cl3O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01441c + - id: "m01441c" - name: "chloral" - - compartment: c - - formula: C2HCl3O + - compartment: "c" + - formula: "C2HCl3O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01442c + - id: "m01442c" - name: "chloride" - - compartment: c - - formula: Cl + - compartment: "c" + - formula: "Cl" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01442s + - id: "m01442s" - name: "chloride" - - compartment: s - - formula: Cl + - compartment: "s" + - formula: "Cl" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01443c + - id: "m01443c" - name: "chloroacetic acid" - - compartment: c - - formula: C2H2ClO2 + - compartment: "c" + - formula: "C2H2ClO2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01444c + - id: "m01444c" - name: "chloroacetyl chloride" - - compartment: c - - formula: C2H2Cl2O + - compartment: "c" + - formula: "C2H2Cl2O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01445c + - id: "m01445c" - name: "cholate" - - compartment: c - - formula: C24H39O5 + - compartment: "c" + - formula: "C24H39O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01445m + - id: "m01445m" - name: "cholate" - - compartment: m - - formula: C24H39O5 + - compartment: "m" + - formula: "C24H39O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01445p + - id: "m01445p" - name: "cholate" - - compartment: p - - formula: C24H39O5 + - compartment: "p" + - formula: "C24H39O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01445r + - id: "m01445r" - name: "cholate" - - compartment: r - - formula: C24H39O5 + - compartment: "r" + - formula: "C24H39O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01445s + - id: "m01445s" - name: "cholate" - - compartment: s - - formula: C24H39O5 + - compartment: "s" + - formula: "C24H39O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01446c + - id: "m01446c" - name: "cholest-5-ene-3beta,7alpha,24(S)-triol" - - compartment: c - - formula: C27H46O3 + - compartment: "c" + - formula: "C27H46O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01447r + - id: "m01447r" - name: "cholest-5-ene-3beta,7alpha,25-triol" - - compartment: r - - formula: C27H46O3 + - compartment: "r" + - formula: "C27H46O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01448c + - id: "m01448c" - name: "cholest-5-ene-3beta,7alpha,27-triol" - - compartment: c - - formula: C27H46O3 + - compartment: "c" + - formula: "C27H46O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01448m + - id: "m01448m" - name: "cholest-5-ene-3beta,7alpha,27-triol" - - compartment: m - - formula: C27H46O3 + - compartment: "m" + - formula: "C27H46O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01449c + - id: "m01449c" - name: "cholestenol" - - compartment: c - - formula: C27H46O + - compartment: "c" + - formula: "C27H46O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01450c + - id: "m01450c" - name: "cholesterol" - - compartment: c - - formula: C27H46O + - compartment: "c" + - formula: "C27H46O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01450g + - id: "m01450g" - name: "cholesterol" - - compartment: g - - formula: C27H46O + - compartment: "g" + - formula: "C27H46O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01450l + - id: "m01450l" - name: "cholesterol" - - compartment: l - - formula: C27H46O + - compartment: "l" + - formula: "C27H46O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01450m + - id: "m01450m" - name: "cholesterol" - - compartment: m - - formula: C27H46O + - compartment: "m" + - formula: "C27H46O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01450r + - id: "m01450r" - name: "cholesterol" - - compartment: r - - formula: C27H46O + - compartment: "r" + - formula: "C27H46O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01450s + - id: "m01450s" - name: "cholesterol" - - compartment: s - - formula: C27H46O + - compartment: "s" + - formula: "C27H46O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01451c + - id: "m01451c" - name: "cholesterol-ester pool" - - compartment: c - - formula: C28H45O2R + - compartment: "c" + - formula: "C28H45O2R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01451l + - id: "m01451l" - name: "cholesterol-ester pool" - - compartment: l - - formula: C28H45O2R + - compartment: "l" + - formula: "C28H45O2R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01451r + - id: "m01451r" - name: "cholesterol-ester pool" - - compartment: r - - formula: C28H45O2R + - compartment: "r" + - formula: "C28H45O2R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01451s + - id: "m01451s" - name: "cholesterol-ester pool" - - compartment: s - - formula: C28H45O2R + - compartment: "s" + - formula: "C28H45O2R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01452l + - id: "m01452l" - name: "cholesterol-ester-10,13,16,19-docosa" - - compartment: l - - formula: C49H80O2 + - compartment: "l" + - formula: "C49H80O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01452r + - id: "m01452r" - name: "cholesterol-ester-10,13,16,19-docosa" - - compartment: r - - formula: C49H80O2 + - compartment: "r" + - formula: "C49H80O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01453l + - id: "m01453l" - name: "cholesterol-ester-10,13,16-docosa" - - compartment: l - - formula: C49H82O2 + - compartment: "l" + - formula: "C49H82O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01453r + - id: "m01453r" - name: "cholesterol-ester-10,13,16-docosa" - - compartment: r - - formula: C49H82O2 + - compartment: "r" + - formula: "C49H82O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01454l + - id: "m01454l" - name: "cholesterol-ester-10-hepta" - - compartment: l - - formula: C44H76O2 + - compartment: "l" + - formula: "C44H76O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01454r + - id: "m01454r" - name: "cholesterol-ester-10-hepta" - - compartment: r - - formula: C44H76O2 + - compartment: "r" + - formula: "C44H76O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01455l + - id: "m01455l" - name: "cholesterol-ester-11,14,17-eico" - - compartment: l - - formula: C47H78O2 + - compartment: "l" + - formula: "C47H78O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01455r + - id: "m01455r" - name: "cholesterol-ester-11,14,17-eico" - - compartment: r - - formula: C47H78O2 + - compartment: "r" + - formula: "C47H78O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01456l + - id: "m01456l" - name: "cholesterol-ester-11,14-eicosa" - - compartment: l - - formula: C47H80O2 + - compartment: "l" + - formula: "C47H80O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01456r + - id: "m01456r" - name: "cholesterol-ester-11,14-eicosa" - - compartment: r - - formula: C47H80O2 + - compartment: "r" + - formula: "C47H80O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01457l + - id: "m01457l" - name: "cholesterol-ester-11-docose" - - compartment: l - - formula: C49H86O2 + - compartment: "l" + - formula: "C49H86O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01457r + - id: "m01457r" - name: "cholesterol-ester-11-docose" - - compartment: r - - formula: C49H86O2 + - compartment: "r" + - formula: "C49H86O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01458l + - id: "m01458l" - name: "cholesterol-ester-11-eico" - - compartment: l - - formula: C47H82O2 + - compartment: "l" + - formula: "C47H82O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01458r + - id: "m01458r" - name: "cholesterol-ester-11-eico" - - compartment: r - - formula: C47H82O2 + - compartment: "r" + - formula: "C47H82O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01459l + - id: "m01459l" - name: "cholesterol-ester-12,15,18,21-tetracosa" - - compartment: l - - formula: C51H84O2 + - compartment: "l" + - formula: "C51H84O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01459r + - id: "m01459r" - name: "cholesterol-ester-12,15,18,21-tetracosa" - - compartment: r - - formula: C51H84O2 + - compartment: "r" + - formula: "C51H84O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01460l + - id: "m01460l" - name: "cholesterol-ester-13,16,19-doco" - - compartment: l - - formula: C49H82O2 + - compartment: "l" + - formula: "C49H82O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01460r + - id: "m01460r" - name: "cholesterol-ester-13,16,19-doco" - - compartment: r - - formula: C49H82O2 + - compartment: "r" + - formula: "C49H82O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01461l + - id: "m01461l" - name: "cholesterol-ester-13,16-docosa" - - compartment: l - - formula: C49H84O2 + - compartment: "l" + - formula: "C49H84O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01461r + - id: "m01461r" - name: "cholesterol-ester-13,16-docosa" - - compartment: r - - formula: C49H84O2 + - compartment: "r" + - formula: "C49H84O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01462l + - id: "m01462l" - name: "cholesterol-ester-13-docose" - - compartment: l - - formula: C49H86O2 + - compartment: "l" + - formula: "C49H86O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01462r + - id: "m01462r" - name: "cholesterol-ester-13-docose" - - compartment: r - - formula: C49H86O2 + - compartment: "r" + - formula: "C49H86O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01463l + - id: "m01463l" - name: "cholesterol-ester-13-eicose" - - compartment: l - - formula: C47H82O2 + - compartment: "l" + - formula: "C47H82O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01463r + - id: "m01463r" - name: "cholesterol-ester-13-eicose" - - compartment: r - - formula: C47H82O2 + - compartment: "r" + - formula: "C47H82O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01464l + - id: "m01464l" - name: "cholesterol-ester-13-octade" - - compartment: l - - formula: C45H78O2 + - compartment: "l" + - formula: "C45H78O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01464r + - id: "m01464r" - name: "cholesterol-ester-13-octade" - - compartment: r - - formula: C45H78O2 + - compartment: "r" + - formula: "C45H78O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01465l + - id: "m01465l" - name: "cholesterol-ester-15-tetra" - - compartment: l - - formula: C51H90O2 + - compartment: "l" + - formula: "C51H90O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01465r + - id: "m01465r" - name: "cholesterol-ester-15-tetra" - - compartment: r - - formula: C51H90O2 + - compartment: "r" + - formula: "C51H90O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01466l + - id: "m01466l" - name: "cholesterol-ester-4,7,10,13,16,19-doco" - - compartment: l - - formula: C49H76O2 + - compartment: "l" + - formula: "C49H76O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01466r + - id: "m01466r" - name: "cholesterol-ester-4,7,10,13,16,19-doco" - - compartment: r - - formula: C49H76O2 + - compartment: "r" + - formula: "C49H76O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01467l + - id: "m01467l" - name: "cholesterol-ester-4,7,10,13,16-docosa" - - compartment: l - - formula: C49H78O2 + - compartment: "l" + - formula: "C49H78O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01467r + - id: "m01467r" - name: "cholesterol-ester-4,7,10,13,16-docosa" - - compartment: r - - formula: C49H78O2 + - compartment: "r" + - formula: "C49H78O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01468l + - id: "m01468l" - name: "cholesterol-ester-5,8,11,14,17-eico" - - compartment: l - - formula: C47H74O2 + - compartment: "l" + - formula: "C47H74O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01468r + - id: "m01468r" - name: "cholesterol-ester-5,8,11,14,17-eico" - - compartment: r - - formula: C47H74O2 + - compartment: "r" + - formula: "C47H74O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01469l + - id: "m01469l" - name: "cholesterol-ester-5,8,11-eico" - - compartment: l - - formula: C47H78O2 + - compartment: "l" + - formula: "C47H78O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01469r + - id: "m01469r" - name: "cholesterol-ester-5,8,11-eico" - - compartment: r - - formula: C47H78O2 + - compartment: "r" + - formula: "C47H78O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01470l + - id: "m01470l" - name: "cholesterol-ester-5-tetra" - - compartment: l - - formula: C41H70O2 + - compartment: "l" + - formula: "C41H70O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01470r + - id: "m01470r" - name: "cholesterol-ester-5-tetra" - - compartment: r - - formula: C41H70O2 + - compartment: "r" + - formula: "C41H70O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01471l + - id: "m01471l" - name: "cholesterol-ester-6,9,12,15,18,21-tetra" - - compartment: l - - formula: C51H80O2 + - compartment: "l" + - formula: "C51H80O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01471r + - id: "m01471r" - name: "cholesterol-ester-6,9,12,15,18,21-tetra" - - compartment: r - - formula: C51H80O2 + - compartment: "r" + - formula: "C51H80O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01472l + - id: "m01472l" - name: "cholesterol-ester-6,9,12,15,18-tetraco" - - compartment: l - - formula: C51H82O2 + - compartment: "l" + - formula: "C51H82O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01472r + - id: "m01472r" - name: "cholesterol-ester-6,9,12,15,18-tetraco" - - compartment: r - - formula: C51H82O2 + - compartment: "r" + - formula: "C51H82O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01473l + - id: "m01473l" - name: "cholesterol-ester-6,9,12,15-octa" - - compartment: l - - formula: C45H72O2 + - compartment: "l" + - formula: "C45H72O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01473r + - id: "m01473r" - name: "cholesterol-ester-6,9,12,15-octa" - - compartment: r - - formula: C45H72O2 + - compartment: "r" + - formula: "C45H72O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01474l + - id: "m01474l" - name: "cholesterol-ester-6,9-octa" - - compartment: l - - formula: C45H76O2 + - compartment: "l" + - formula: "C45H76O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01474r + - id: "m01474r" - name: "cholesterol-ester-6,9-octa" - - compartment: r - - formula: C45H76O2 + - compartment: "r" + - formula: "C45H76O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01475l + - id: "m01475l" - name: "cholesterol-ester-7,10,13,16,19-docosa" - - compartment: l - - formula: C49H78O2 + - compartment: "l" + - formula: "C49H78O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01475r + - id: "m01475r" - name: "cholesterol-ester-7,10,13,16,19-docosa" - - compartment: r - - formula: C49H78O2 + - compartment: "r" + - formula: "C49H78O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01476l + - id: "m01476l" - name: "cholesterol-ester-7,10,13,16-docosa" - - compartment: l - - formula: C49H80O2 + - compartment: "l" + - formula: "C49H80O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01476r + - id: "m01476r" - name: "cholesterol-ester-7,10,13,16-docosa" - - compartment: r - - formula: C49H80O2 + - compartment: "r" + - formula: "C49H80O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01477l + - id: "m01477l" - name: "cholesterol-ester-7-hexa" - - compartment: l - - formula: C43H74O2 + - compartment: "l" + - formula: "C43H74O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01477r + - id: "m01477r" - name: "cholesterol-ester-7-hexa" - - compartment: r - - formula: C43H74O2 + - compartment: "r" + - formula: "C43H74O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01478l + - id: "m01478l" - name: "cholesterol-ester-7-octade" - - compartment: l - - formula: C45H78O2 + - compartment: "l" + - formula: "C45H78O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01478r + - id: "m01478r" - name: "cholesterol-ester-7-octade" - - compartment: r - - formula: C45H78O2 + - compartment: "r" + - formula: "C45H78O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01479l + - id: "m01479l" - name: "cholesterol-ester-7-tetrade" - - compartment: l - - formula: C41H70O2 + - compartment: "l" + - formula: "C41H70O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01479r + - id: "m01479r" - name: "cholesterol-ester-7-tetrade" - - compartment: r - - formula: C41H70O2 + - compartment: "r" + - formula: "C41H70O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01480l + - id: "m01480l" - name: "cholesterol-ester-8,11,14,17-eico" - - compartment: l - - formula: C47H76O2 + - compartment: "l" + - formula: "C47H76O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01480r + - id: "m01480r" - name: "cholesterol-ester-8,11,14,17-eico" - - compartment: r - - formula: C47H76O2 + - compartment: "r" + - formula: "C47H76O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01481l + - id: "m01481l" - name: "cholesterol-ester-8,11-eico" - - compartment: l - - formula: C47H80O2 + - compartment: "l" + - formula: "C47H80O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01481r + - id: "m01481r" - name: "cholesterol-ester-8,11-eico" - - compartment: r - - formula: C47H80O2 + - compartment: "r" + - formula: "C47H80O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01482l + - id: "m01482l" - name: "cholesterol-ester-9,12,15,18,21-tetra" - - compartment: l - - formula: C51H82O2 + - compartment: "l" + - formula: "C51H82O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01482r + - id: "m01482r" - name: "cholesterol-ester-9,12,15,18,21-tetra" - - compartment: r - - formula: C51H82O2 + - compartment: "r" + - formula: "C51H82O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01483l + - id: "m01483l" - name: "cholesterol-ester-9,12,15,18-tetraco" - - compartment: l - - formula: C51H84O2 + - compartment: "l" + - formula: "C51H84O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01483r + - id: "m01483r" - name: "cholesterol-ester-9,12,15,18-tetraco" - - compartment: r - - formula: C51H84O2 + - compartment: "r" + - formula: "C51H84O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01484l + - id: "m01484l" - name: "cholesterol-ester-9-eicose" - - compartment: l - - formula: C47H82O2 + - compartment: "l" + - formula: "C47H82O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01484r + - id: "m01484r" - name: "cholesterol-ester-9-eicose" - - compartment: r - - formula: C47H82O2 + - compartment: "r" + - formula: "C47H82O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01485l + - id: "m01485l" - name: "cholesterol-ester-9-heptade" - - compartment: l - - formula: C44H76O2 + - compartment: "l" + - formula: "C44H76O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01485r + - id: "m01485r" - name: "cholesterol-ester-9-heptade" - - compartment: r - - formula: C44H76O2 + - compartment: "r" + - formula: "C44H76O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01486l + - id: "m01486l" - name: "cholesterol-ester-9-octa" - - compartment: l - - formula: C45H78O2 + - compartment: "l" + - formula: "C45H78O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01486r + - id: "m01486r" - name: "cholesterol-ester-9-octa" - - compartment: r - - formula: C45H78O2 + - compartment: "r" + - formula: "C45H78O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01487l + - id: "m01487l" - name: "cholesterol-ester-9-tetrade" - - compartment: l - - formula: C41H70O2 + - compartment: "l" + - formula: "C41H70O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01487r + - id: "m01487r" - name: "cholesterol-ester-9-tetrade" - - compartment: r - - formula: C41H70O2 + - compartment: "r" + - formula: "C41H70O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01488l + - id: "m01488l" - name: "cholesterol-ester-arach" - - compartment: l - - formula: C47H76O2 + - compartment: "l" + - formula: "C47H76O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01488r + - id: "m01488r" - name: "cholesterol-ester-arach" - - compartment: r - - formula: C47H76O2 + - compartment: "r" + - formula: "C47H76O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01489l + - id: "m01489l" - name: "cholesterol-ester-cis-vac" - - compartment: l - - formula: C45H78O2 + - compartment: "l" + - formula: "C45H78O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01489r + - id: "m01489r" - name: "cholesterol-ester-cis-vac" - - compartment: r - - formula: C45H78O2 + - compartment: "r" + - formula: "C45H78O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01490l + - id: "m01490l" - name: "cholesterol-ester-dihomo-gamma" - - compartment: l - - formula: C47H78O2 + - compartment: "l" + - formula: "C47H78O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01490r + - id: "m01490r" - name: "cholesterol-ester-dihomo-gamma" - - compartment: r - - formula: C47H78O2 + - compartment: "r" + - formula: "C47H78O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01491l + - id: "m01491l" - name: "cholesterol-ester-docosa" - - compartment: l - - formula: C49H88O2 + - compartment: "l" + - formula: "C49H88O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01491r + - id: "m01491r" - name: "cholesterol-ester-docosa" - - compartment: r - - formula: C49H88O2 + - compartment: "r" + - formula: "C49H88O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01492l + - id: "m01492l" - name: "cholesterol-ester-eico" - - compartment: l - - formula: C47H84O2 + - compartment: "l" + - formula: "C47H84O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01492r + - id: "m01492r" - name: "cholesterol-ester-eico" - - compartment: r - - formula: C47H84O2 + - compartment: "r" + - formula: "C47H84O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01493l + - id: "m01493l" - name: "cholesterol-ester-gamma-lin" - - compartment: l - - formula: C45H74O2 + - compartment: "l" + - formula: "C45H74O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01493r + - id: "m01493r" - name: "cholesterol-ester-gamma-lin" - - compartment: r - - formula: C45H74O2 + - compartment: "r" + - formula: "C45H74O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01494l + - id: "m01494l" - name: "cholesterol-ester-heneico" - - compartment: l - - formula: C48H86O2 + - compartment: "l" + - formula: "C48H86O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01494r + - id: "m01494r" - name: "cholesterol-ester-heneico" - - compartment: r - - formula: C48H86O2 + - compartment: "r" + - formula: "C48H86O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01495l + - id: "m01495l" - name: "cholesterol-ester-hepta" - - compartment: l - - formula: C44H78O2 + - compartment: "l" + - formula: "C44H78O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01495r + - id: "m01495r" - name: "cholesterol-ester-hepta" - - compartment: r - - formula: C44H78O2 + - compartment: "r" + - formula: "C44H78O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01496l + - id: "m01496l" - name: "cholesterol-ester-hexacosa" - - compartment: l - - formula: C53H96O2 + - compartment: "l" + - formula: "C53H96O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01496r + - id: "m01496r" - name: "cholesterol-ester-hexacosa" - - compartment: r - - formula: C53H96O2 + - compartment: "r" + - formula: "C53H96O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01497l + - id: "m01497l" - name: "cholesterol-ester-hexecose" - - compartment: l - - formula: C53H94O2 + - compartment: "l" + - formula: "C53H94O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01497r + - id: "m01497r" - name: "cholesterol-ester-hexecose" - - compartment: r - - formula: C53H94O2 + - compartment: "r" + - formula: "C53H94O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01498l + - id: "m01498l" - name: "cholesterol-ester-laur" - - compartment: l - - formula: C39H68O2 + - compartment: "l" + - formula: "C39H68O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01498r + - id: "m01498r" - name: "cholesterol-ester-laur" - - compartment: r - - formula: C39H68O2 + - compartment: "r" + - formula: "C39H68O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01499l + - id: "m01499l" - name: "cholesterol-ester-lin" - - compartment: l - - formula: C45H76O2 + - compartment: "l" + - formula: "C45H76O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01499r + - id: "m01499r" - name: "cholesterol-ester-lin" - - compartment: r - - formula: C45H76O2 + - compartment: "r" + - formula: "C45H76O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01500l + - id: "m01500l" - name: "cholesterol-ester-linolen" - - compartment: l - - formula: C45H74O2 + - compartment: "l" + - formula: "C45H74O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01500r + - id: "m01500r" - name: "cholesterol-ester-linolen" - - compartment: r - - formula: C45H74O2 + - compartment: "r" + - formula: "C45H74O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01501l + - id: "m01501l" - name: "cholesterol-ester-myrist" - - compartment: l - - formula: C41H72O2 + - compartment: "l" + - formula: "C41H72O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01501r + - id: "m01501r" - name: "cholesterol-ester-myrist" - - compartment: r - - formula: C41H72O2 + - compartment: "r" + - formula: "C41H72O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01502l + - id: "m01502l" - name: "cholesterol-ester-nanode" - - compartment: l - - formula: C46H82O2 + - compartment: "l" + - formula: "C46H82O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01502r + - id: "m01502r" - name: "cholesterol-ester-nanode" - - compartment: r - - formula: C46H82O2 + - compartment: "r" + - formula: "C46H82O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01503l + - id: "m01503l" - name: "cholesterol-ester-ol" - - compartment: l - - formula: C45H78O2 + - compartment: "l" + - formula: "C45H78O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01503r + - id: "m01503r" - name: "cholesterol-ester-ol" - - compartment: r - - formula: C45H78O2 + - compartment: "r" + - formula: "C45H78O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01504l + - id: "m01504l" - name: "cholesterol-ester-palm" - - compartment: l - - formula: C43H76O2 + - compartment: "l" + - formula: "C43H76O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01504r + - id: "m01504r" - name: "cholesterol-ester-palm" - - compartment: r - - formula: C43H76O2 + - compartment: "r" + - formula: "C43H76O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01505l + - id: "m01505l" - name: "cholesterol-ester-palmn" - - compartment: l - - formula: C43H74O2 + - compartment: "l" + - formula: "C43H74O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01505r + - id: "m01505r" - name: "cholesterol-ester-palmn" - - compartment: r - - formula: C43H74O2 + - compartment: "r" + - formula: "C43H74O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01506l + - id: "m01506l" - name: "cholesterol-ester-penta" - - compartment: l - - formula: C42H74O2 + - compartment: "l" + - formula: "C42H74O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01506r + - id: "m01506r" - name: "cholesterol-ester-penta" - - compartment: r - - formula: C42H74O2 + - compartment: "r" + - formula: "C42H74O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01507l + - id: "m01507l" - name: "cholesterol-ester-stea" - - compartment: l - - formula: C45H80O2 + - compartment: "l" + - formula: "C45H80O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01507r + - id: "m01507r" - name: "cholesterol-ester-stea" - - compartment: r - - formula: C45H80O2 + - compartment: "r" + - formula: "C45H80O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01508l + - id: "m01508l" - name: "cholesterol-ester-tetraco" - - compartment: l - - formula: C51H92O2 + - compartment: "l" + - formula: "C51H92O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01508r + - id: "m01508r" - name: "cholesterol-ester-tetraco" - - compartment: r - - formula: C51H92O2 + - compartment: "r" + - formula: "C51H92O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01509l + - id: "m01509l" - name: "cholesterol-ester-trico" - - compartment: l - - formula: C50H90O2 + - compartment: "l" + - formula: "C50H90O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01509r + - id: "m01509r" - name: "cholesterol-ester-trico" - - compartment: r - - formula: C50H90O2 + - compartment: "r" + - formula: "C50H90O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01510l + - id: "m01510l" - name: "cholesterol-ester-tridec" - - compartment: l - - formula: C40H70O2 + - compartment: "l" + - formula: "C40H70O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01510r + - id: "m01510r" - name: "cholesterol-ester-tridec" - - compartment: r - - formula: C40H70O2 + - compartment: "r" + - formula: "C40H70O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01511c + - id: "m01511c" - name: "cholesterol-STAR" - - compartment: c - - formula: C1420H2313N409O415S17 + - compartment: "c" + - formula: "C1420H2313N409O415S17" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01511m + - id: "m01511m" - name: "cholesterol-STAR" - - compartment: m - - formula: C1420H2313N409O415S17 + - compartment: "m" + - formula: "C1420H2313N409O415S17" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01512c + - id: "m01512c" - name: "cholesterol-sulfate" - - compartment: c - - formula: C27H45O4S + - compartment: "c" + - formula: "C27H45O4S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01512r + - id: "m01512r" - name: "cholesterol-sulfate" - - compartment: r - - formula: C27H45O4S + - compartment: "r" + - formula: "C27H45O4S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01513c + - id: "m01513c" - name: "choline" - - compartment: c - - formula: C5H14NO + - compartment: "c" + - formula: "C5H14NO" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01513g + - id: "m01513g" - name: "choline" - - compartment: g - - formula: C5H14NO + - compartment: "g" + - formula: "C5H14NO" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01513m + - id: "m01513m" - name: "choline" - - compartment: m - - formula: C5H14NO + - compartment: "m" + - formula: "C5H14NO" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01513n + - id: "m01513n" - name: "choline" - - compartment: n - - formula: C5H14NO + - compartment: "n" + - formula: "C5H14NO" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01513r + - id: "m01513r" - name: "choline" - - compartment: r - - formula: C5H14NO + - compartment: "r" + - formula: "C5H14NO" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01513s + - id: "m01513s" - name: "choline" - - compartment: s - - formula: C5H14NO + - compartment: "s" + - formula: "C5H14NO" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01514c + - id: "m01514c" - name: "choloyl-CoA" - - compartment: c - - formula: C45H70N7O20P3S + - compartment: "c" + - formula: "C45H70N7O20P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01514m + - id: "m01514m" - name: "choloyl-CoA" - - compartment: m - - formula: C45H70N7O20P3S + - compartment: "m" + - formula: "C45H70N7O20P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01514p + - id: "m01514p" - name: "choloyl-CoA" - - compartment: p - - formula: C45H70N7O20P3S + - compartment: "p" + - formula: "C45H70N7O20P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01514r + - id: "m01514r" - name: "choloyl-CoA" - - compartment: r - - formula: C45H70N7O20P3S + - compartment: "r" + - formula: "C45H70N7O20P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01515g + - id: "m01515g" - name: "chondroitin sulfate A (GalNAc4S-GlcA) and B (IdoA2S-GalNAc4S), precursor 2" - - compartment: g - - formula: C37H54NO37S2X + - compartment: "g" + - formula: "C37H54NO37S2X" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01516g + - id: "m01516g" - name: "chondroitin sulfate A (GalNAc4S-GlcA) and B (IdoA2S-GalNAc4S), precursor 3" - - compartment: g - - formula: C45H67N2O42S2X + - compartment: "g" + - formula: "C45H67N2O42S2X" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01517g + - id: "m01517g" - name: "chondroitin sulfate A (GalNAc4S-GlcA) proteoglycan" - - compartment: g - - formula: C45H66N2O45S3X + - compartment: "g" + - formula: "C45H66N2O45S3X" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01517l + - id: "m01517l" - name: "chondroitin sulfate A (GalNAc4S-GlcA) proteoglycan" - - compartment: l - - formula: C45H66N2O45S3X + - compartment: "l" + - formula: "C45H66N2O45S3X" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01517s + - id: "m01517s" - name: "chondroitin sulfate A (GalNAc4S-GlcA) proteoglycan" - - compartment: s - - formula: C45H66N2O45S3X + - compartment: "s" + - formula: "C45H66N2O45S3X" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01518g + - id: "m01518g" - name: "chondroitin sulfate A (GalNAc4S-GlcA), B (IdoA2S-GalNAc4S), and E (GalNAc4,6diS-GlcA), precursor 1" - - compartment: g - - formula: C31H47NO31S2X + - compartment: "g" + - formula: "C31H47NO31S2X" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01519l + - id: "m01519l" - name: "chondroitin sulfate A (GalNAc4S-GlcA), degradation product 1" - - compartment: l - - formula: C45H68N2O43S2 + - compartment: "l" + - formula: "C45H68N2O43S2" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01520l + - id: "m01520l" - name: "chondroitin sulfate A (GalNAc4S-GlcA), degradation product 2" - - compartment: l - - formula: C37H55NO38S2 + - compartment: "l" + - formula: "C37H55NO38S2" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01521l + - id: "m01521l" - name: "chondroitin sulfate A (GalNAc4S-GlcA), degradation product 3" - - compartment: l - - formula: C31H48NO32S2 + - compartment: "l" + - formula: "C31H48NO32S2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01522l + - id: "m01522l" - name: "chondroitin sulfate A (GalNAc4S-GlcA), degradation product 4" - - compartment: l - - formula: C31H49NO29S + - compartment: "l" + - formula: "C31H49NO29S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01523l + - id: "m01523l" - name: "chondroitin sulfate A (GalNAc4S-GlcA), degradation product 5" - - compartment: l - - formula: C23H36O24S + - compartment: "l" + - formula: "C23H36O24S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01524l + - id: "m01524l" - name: "chondroitin sulfate A (GalNAc4S-GlcA), free chain" - - compartment: l - - formula: C45H67N2O46S3 + - compartment: "l" + - formula: "C45H67N2O46S3" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01525g + - id: "m01525g" - name: "chondroitin sulfate B - dermatan sulfate (IdoA2S-GalNAc4S) proteoglycan" - - compartment: g - - formula: C45H65N2O48S4X + - compartment: "g" + - formula: "C45H65N2O48S4X" - charge: -6 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01525l + - id: "m01525l" - name: "chondroitin sulfate B - dermatan sulfate (IdoA2S-GalNAc4S) proteoglycan" - - compartment: l - - formula: C45H65N2O48S4X + - compartment: "l" + - formula: "C45H65N2O48S4X" - charge: -6 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01525s + - id: "m01525s" - name: "chondroitin sulfate B - dermatan sulfate (IdoA2S-GalNAc4S) proteoglycan" - - compartment: s - - formula: C45H65N2O48S4X + - compartment: "s" + - formula: "C45H65N2O48S4X" - charge: -6 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01526l + - id: "m01526l" - name: "chondroitin sulfate B - dermatan sulfate (IdoA2S-GalNAc4S), degradation product 1" - - compartment: l - - formula: C45H67N2O46S3 + - compartment: "l" + - formula: "C45H67N2O46S3" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01527l + - id: "m01527l" - name: "chondroitin sulfate B - dermatan sulfate (IdoA2S-GalNAc4S), degradation product 2" - - compartment: l - - formula: C37H54NO41S3 + - compartment: "l" + - formula: "C37H54NO41S3" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01528l + - id: "m01528l" - name: "chondroitin sulfate B - dermatan sulfate (IdoA2S-GalNAc4S), degradation product 3" - - compartment: l - - formula: C37H55NO38S2 + - compartment: "l" + - formula: "C37H55NO38S2" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01529l + - id: "m01529l" - name: "chondroitin sulfate B - dermatan sulfate (IdoA2S-GalNAc4S), free chain" - - compartment: l - - formula: C45H66N2O49S4 + - compartment: "l" + - formula: "C45H66N2O49S4" - charge: -6 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01530g + - id: "m01530g" - name: "chondroitin sulfate B (IdoA2S-GalNAc4S), precursor 4" - - compartment: g - - formula: C45H67N2O42S2X + - compartment: "g" + - formula: "C45H67N2O42S2X" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01531g + - id: "m01531g" - name: "chondroitin sulfate B (IdoA2S-GalNAc4s), precursor 5" - - compartment: g - - formula: C45H66N2O45S3X + - compartment: "g" + - formula: "C45H66N2O45S3X" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01532g + - id: "m01532g" - name: "chondroitin sulfate C (GalNAc6S-GlcA) and D (GlcNAc6S-GlcA2S), precursor 1" - - compartment: g - - formula: C31H47NO31S2X + - compartment: "g" + - formula: "C31H47NO31S2X" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01533g + - id: "m01533g" - name: "chondroitin sulfate C (GalNAc6S-GlcA) proteoglycan" - - compartment: g - - formula: C45H66N2O45S3X + - compartment: "g" + - formula: "C45H66N2O45S3X" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01533l + - id: "m01533l" - name: "chondroitin sulfate C (GalNAc6S-GlcA) proteoglycan" - - compartment: l - - formula: C45H66N2O45S3X + - compartment: "l" + - formula: "C45H66N2O45S3X" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01533s + - id: "m01533s" - name: "chondroitin sulfate C (GalNAc6S-GlcA) proteoglycan" - - compartment: s - - formula: C45H66N2O45S3X + - compartment: "s" + - formula: "C45H66N2O45S3X" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01534l + - id: "m01534l" - name: "chondroitin sulfate C (GalNAc6S-GlcA), degradation product 1" - - compartment: l - - formula: C45H68N2O43S2 + - compartment: "l" + - formula: "C45H68N2O43S2" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01535l + - id: "m01535l" - name: "chondroitin sulfate C (GalNAc6S-GlcA), degradation product 2" - - compartment: l - - formula: C37H55NO38S2 + - compartment: "l" + - formula: "C37H55NO38S2" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01536l + - id: "m01536l" - name: "chondroitin sulfate C (GalNAc6S-GlcA), degradation product 3" - - compartment: l - - formula: C31H48NO32S2 + - compartment: "l" + - formula: "C31H48NO32S2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01537l + - id: "m01537l" - name: "chondroitin sulfate C (GalNAc6S-GlcA), degradation product 4" - - compartment: l - - formula: C31H49NO29S + - compartment: "l" + - formula: "C31H49NO29S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01538l + - id: "m01538l" - name: "chondroitin sulfate C (GalNAc6S-GlcA), degradation product 5" - - compartment: l - - formula: C23H36O24S + - compartment: "l" + - formula: "C23H36O24S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01539l + - id: "m01539l" - name: "chondroitin sulfate C (GalNAc6S-GlcA), free chain" - - compartment: l - - formula: C45H67N2O46S3 + - compartment: "l" + - formula: "C45H67N2O46S3" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01540g + - id: "m01540g" - name: "chondroitin sulfate C (GalNAc6S-GlcA), precursor 2" - - compartment: g - - formula: C37H54NO37S2X + - compartment: "g" + - formula: "C37H54NO37S2X" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01541g + - id: "m01541g" - name: "chondroitin sulfate C (GalNAc6S-GlcA), precursor 3" - - compartment: g - - formula: C45H67N2O42S2X + - compartment: "g" + - formula: "C45H67N2O42S2X" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01542g + - id: "m01542g" - name: "chondroitin sulfate D (GlcNAc6S-GlcA2S) precursor 2" - - compartment: g - - formula: C31H46NO34S3X + - compartment: "g" + - formula: "C31H46NO34S3X" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01543g + - id: "m01543g" - name: "chondroitin sulfate D (GlcNAc6S-GlcA2S) proteoglycan" - - compartment: g - - formula: C45H64N2O51S5X + - compartment: "g" + - formula: "C45H64N2O51S5X" - charge: -7 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01543l + - id: "m01543l" - name: "chondroitin sulfate D (GlcNAc6S-GlcA2S) proteoglycan" - - compartment: l - - formula: C45H64N2O51S5X + - compartment: "l" + - formula: "C45H64N2O51S5X" - charge: -7 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01543s + - id: "m01543s" - name: "chondroitin sulfate D (GlcNAc6S-GlcA2S) proteoglycan" - - compartment: s - - formula: C45H64N2O51S5X + - compartment: "s" + - formula: "C45H64N2O51S5X" - charge: -7 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01544l + - id: "m01544l" - name: "chondroitin sulfate D (GlcNAc6S-GlcA2S), degradation product 1" - - compartment: l - - formula: C45H66N2O49S4 + - compartment: "l" + - formula: "C45H66N2O49S4" - charge: -6 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01545l + - id: "m01545l" - name: "chondroitin sulfate D (GlcNAc6S-GlcA2S), degradation product 2" - - compartment: l - - formula: C37H53NO44S4 + - compartment: "l" + - formula: "C37H53NO44S4" - charge: -6 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01546l + - id: "m01546l" - name: "chondroitin sulfate D (GlcNAc6S-GlcA2S), degradation product 3" - - compartment: l - - formula: C37H54NO41S3 + - compartment: "l" + - formula: "C37H54NO41S3" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01547l + - id: "m01547l" - name: "chondroitin sulfate D (GlcNAc6S-GlcA2S), degradation product 4" - - compartment: l - - formula: C31H47NO35S3 + - compartment: "l" + - formula: "C31H47NO35S3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01548l + - id: "m01548l" - name: "chondroitin sulfate D (GlcNAc6S-GlcA2S), degradation product 5" - - compartment: l - - formula: C31H48NO32S2 + - compartment: "l" + - formula: "C31H48NO32S2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01549l + - id: "m01549l" - name: "chondroitin sulfate D (GlcNAc6S-GlcA2S), degradation product 6" - - compartment: l - - formula: C23H35O27S2 + - compartment: "l" + - formula: "C23H35O27S2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01550l + - id: "m01550l" - name: "chondroitin sulfate D (GlcNAc6S-GlcA2S), free chain" - - compartment: l - - formula: C45H65N2O52S5 + - compartment: "l" + - formula: "C45H65N2O52S5" - charge: -7 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01551g + - id: "m01551g" - name: "chondroitin sulfate D (GlcNAc6S-GlcA2S), precursor 3" - - compartment: g - - formula: C37H53NO40S3X + - compartment: "g" + - formula: "C37H53NO40S3X" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01552g + - id: "m01552g" - name: "chondroitin sulfate D (GlcNAc6S-GlcA2S), precursor 4" - - compartment: g - - formula: C45H66N2O45S3X + - compartment: "g" + - formula: "C45H66N2O45S3X" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01553g + - id: "m01553g" - name: "chondroitin sulfate D (GlcNAc6S-GlcA2S), precursor 5" - - compartment: g - - formula: C45H65N2O48S4X + - compartment: "g" + - formula: "C45H65N2O48S4X" - charge: -6 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01554g + - id: "m01554g" - name: "chondroitin sulfate E (GalNAc4,6diS-GlcA) proteoglycan" - - compartment: g - - formula: C45H63N2O54S6X + - compartment: "g" + - formula: "C45H63N2O54S6X" - charge: -8 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01554l + - id: "m01554l" - name: "chondroitin sulfate E (GalNAc4,6diS-GlcA) proteoglycan" - - compartment: l - - formula: C45H63N2O54S6X + - compartment: "l" + - formula: "C45H63N2O54S6X" - charge: -8 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01554s + - id: "m01554s" - name: "chondroitin sulfate E (GalNAc4,6diS-GlcA) proteoglycan" - - compartment: s - - formula: C45H63N2O54S6X + - compartment: "s" + - formula: "C45H63N2O54S6X" - charge: -8 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01555l + - id: "m01555l" - name: "chondroitin sulfate E (GalNAc4,6diS-GlcA), degradation product 1" - - compartment: l - - formula: C45H65N2O52S5 + - compartment: "l" + - formula: "C45H65N2O52S5" - charge: -7 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01556l + - id: "m01556l" - name: "chondroitin sulfate E (GalNAc4,6diS-GlcA), degradation product 2" - - compartment: l - - formula: C45H66N2O49S4 + - compartment: "l" + - formula: "C45H66N2O49S4" - charge: -6 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01557l + - id: "m01557l" - name: "chondroitin sulfate E (GalNAc4,6diS-GlcA), degradation product 3" - - compartment: l - - formula: C37H53NO44S4 + - compartment: "l" + - formula: "C37H53NO44S4" - charge: -6 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01558l + - id: "m01558l" - name: "chondroitin sulfate E (GalNAc4,6diS-GlcA), degradation product 4" - - compartment: l - - formula: C31H46NO38S4 + - compartment: "l" + - formula: "C31H46NO38S4" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01559l + - id: "m01559l" - name: "chondroitin sulfate E (GalNAc4,6diS-GlcA), degradation product 5" - - compartment: l - - formula: C31H47NO35S3 + - compartment: "l" + - formula: "C31H47NO35S3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01560l + - id: "m01560l" - name: "chondroitin sulfate E (GalNAc4,6diS-GlcA), degradation product 6" - - compartment: l - - formula: C31H48NO32S2 + - compartment: "l" + - formula: "C31H48NO32S2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01561l + - id: "m01561l" - name: "chondroitin sulfate E (GalNAc4,6diS-GlcA), degradation product 7" - - compartment: l - - formula: C23H35O27S2 + - compartment: "l" + - formula: "C23H35O27S2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01562l + - id: "m01562l" - name: "chondroitin sulfate E (GalNAc4,6diS-GlcA), free chain" - - compartment: l - - formula: C45H64N2O55S6 + - compartment: "l" + - formula: "C45H64N2O55S6" - charge: -8 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01563g + - id: "m01563g" - name: "chondroitin sulfate E (GalNAc4,6diS-GlcA), precursor 2" - - compartment: g - - formula: C31H45NO37S4X + - compartment: "g" + - formula: "C31H45NO37S4X" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01564g + - id: "m01564g" - name: "chondroitin sulfate E (GalNAc4,6diS-GlcA), precursor 3" - - compartment: g - - formula: C37H52NO43S4X + - compartment: "g" + - formula: "C37H52NO43S4X" - charge: -6 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01565g + - id: "m01565g" - name: "chondroitin sulfate E (GalNAc4,6diS-GlcA), precursor 4" - - compartment: g - - formula: C45H65N2O48S4X + - compartment: "g" + - formula: "C45H65N2O48S4X" - charge: -6 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01566g + - id: "m01566g" - name: "chondroitin sulfate E (GalNAc4,6diS-GlcA), precursor 5a" - - compartment: g - - formula: C45H64N2O51S5X + - compartment: "g" + - formula: "C45H64N2O51S5X" - charge: -7 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01567g + - id: "m01567g" - name: "chondroitin sulfate E (GalNAc4,6diS-GlcA), precursor 5b" - - compartment: g - - formula: C45H64N2O51S5X + - compartment: "g" + - formula: "C45H64N2O51S5X" - charge: -7 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01568g + - id: "m01568g" - name: "chondroitin sulfate precursor (GalNAc-GlcA-(Gal)2-Xyl-L-Ser (protein))" - - compartment: g - - formula: C31H49NO25X + - compartment: "g" + - formula: "C31H49NO25X" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01569l + - id: "m01569l" - name: "chylomicron remnant" - - compartment: l - - formula: C25519H39954N6593O8030P6S113R283 + - compartment: "l" + - formula: "C25519H39954N6593O8030P6S113R283" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01569s + - id: "m01569s" - name: "chylomicron remnant" - - compartment: s - - formula: C25519H39954N6593O8030P6S113R283 + - compartment: "s" + - formula: "C25519H39954N6593O8030P6S113R283" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01570s + - id: "m01570s" - name: "chylomicron" - - compartment: s - - formula: C488977H426169N6593O471488P6S113R232012 + - compartment: "s" + - formula: "C488977H426169N6593O471488P6S113R232012" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01571c + - id: "m01571c" - name: "cimetidine" - - compartment: c - - formula: C10H16N6S + - compartment: "c" + - formula: "C10H16N6S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01571s + - id: "m01571s" - name: "cimetidine" - - compartment: s - - formula: C10H16N6S + - compartment: "s" + - formula: "C10H16N6S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01572c + - id: "m01572c" - name: "cinnavalininate" - - compartment: c - - formula: C14H6N2O6 + - compartment: "c" + - formula: "C14H6N2O6" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01573m + - id: "m01573m" - name: "cis-(3S)-hydroxytetradec-5-enoyl-CoA" - - compartment: m - - formula: C35H56N7O18P3S + - compartment: "m" + - formula: "C35H56N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01573p + - id: "m01573p" - name: "cis-(3S)-hydroxytetradec-5-enoyl-CoA" - - compartment: p - - formula: C35H56N7O18P3S + - compartment: "p" + - formula: "C35H56N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01574m + - id: "m01574m" - name: "cis-(3S)-hydroxytetradec-7-enoyl-CoA" - - compartment: m - - formula: C35H56N7O18P3S + - compartment: "m" + - formula: "C35H56N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01574p + - id: "m01574p" - name: "cis-(3S)-hydroxytetradec-7-enoyl-CoA" - - compartment: p - - formula: C35H56N7O18P3S + - compartment: "p" + - formula: "C35H56N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01575m + - id: "m01575m" - name: "cis,cis-3,6-dodecadienoyl-CoA" - - compartment: m - - formula: C33H50N7O17P3S + - compartment: "m" + - formula: "C33H50N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01575p + - id: "m01575p" - name: "cis,cis-3,6-dodecadienoyl-CoA" - - compartment: p - - formula: C33H50N7O17P3S + - compartment: "p" + - formula: "C33H50N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01576m + - id: "m01576m" - name: "cis,cis-myristo-5,8-dienoyl-CoA" - - compartment: m - - formula: C35H54N7O17P3S + - compartment: "m" + - formula: "C35H54N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01576p + - id: "m01576p" - name: "cis,cis-myristo-5,8-dienoyl-CoA" - - compartment: p - - formula: C35H54N7O17P3S + - compartment: "p" + - formula: "C35H54N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01577m + - id: "m01577m" - name: "cis,cis-palmito-7,10-dienoyl-CoA" - - compartment: m - - formula: C37H58N7O17P3S + - compartment: "m" + - formula: "C37H58N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01577p + - id: "m01577p" - name: "cis,cis-palmito-7,10-dienoyl-CoA" - - compartment: p - - formula: C37H58N7O17P3S + - compartment: "p" + - formula: "C37H58N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01578c + - id: "m01578c" - name: "cis-2-hydroxycinnamate" - - compartment: c - - formula: C9H7O3 + - compartment: "c" + - formula: "C9H7O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01579m + - id: "m01579m" - name: "cis-2-methyl-5-isopropylhexa-2,5-dienoyl-CoA" - - compartment: m - - formula: C31H46N7O17P3S + - compartment: "m" + - formula: "C31H46N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01579p + - id: "m01579p" - name: "cis-2-methyl-5-isopropylhexa-2,5-dienoyl-CoA" - - compartment: p - - formula: C31H46N7O17P3S + - compartment: "p" + - formula: "C31H46N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01580c + - id: "m01580c" - name: "cis-aconitate" - - compartment: c - - formula: C6H3O6 + - compartment: "c" + - formula: "C6H3O6" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01580m + - id: "m01580m" - name: "cis-aconitate" - - compartment: m - - formula: C6H3O6 + - compartment: "m" + - formula: "C6H3O6" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01581c + - id: "m01581c" - name: "cis-beta-D-glucosyl-2-hydroxycinnamate" - - compartment: c - - formula: C15H18O8 + - compartment: "c" + - formula: "C15H18O8" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01582c + - id: "m01582c" - name: "cis-cetoleic acid" - - compartment: c - - formula: C22H41O2 + - compartment: "c" + - formula: "C22H41O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01582l + - id: "m01582l" - name: "cis-cetoleic acid" - - compartment: l - - formula: C22H41O2 + - compartment: "l" + - formula: "C22H41O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01582r + - id: "m01582r" - name: "cis-cetoleic acid" - - compartment: r - - formula: C22H41O2 + - compartment: "r" + - formula: "C22H41O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01582s + - id: "m01582s" - name: "cis-cetoleic acid" - - compartment: s - - formula: C22H41O2 + - compartment: "s" + - formula: "C22H41O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01583c + - id: "m01583c" - name: "cis-erucic acid" - - compartment: c - - formula: C22H41O2 + - compartment: "c" + - formula: "C22H41O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01583l + - id: "m01583l" - name: "cis-erucic acid" - - compartment: l - - formula: C22H41O2 + - compartment: "l" + - formula: "C22H41O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01583r + - id: "m01583r" - name: "cis-erucic acid" - - compartment: r - - formula: C22H41O2 + - compartment: "r" + - formula: "C22H41O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01583s + - id: "m01583s" - name: "cis-erucic acid" - - compartment: s - - formula: C22H41O2 + - compartment: "s" + - formula: "C22H41O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01584c + - id: "m01584c" - name: "cis-gondoic acid" - - compartment: c - - formula: C20H37O2 + - compartment: "c" + - formula: "C20H37O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01584l + - id: "m01584l" - name: "cis-gondoic acid" - - compartment: l - - formula: C20H37O2 + - compartment: "l" + - formula: "C20H37O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01584r + - id: "m01584r" - name: "cis-gondoic acid" - - compartment: r - - formula: C20H37O2 + - compartment: "r" + - formula: "C20H37O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01584s + - id: "m01584s" - name: "cis-gondoic acid" - - compartment: s - - formula: C20H37O2 + - compartment: "s" + - formula: "C20H37O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01585c + - id: "m01585c" - name: "cis-vaccenic acid" - - compartment: c - - formula: C18H33O2 + - compartment: "c" + - formula: "C18H33O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01585l + - id: "m01585l" - name: "cis-vaccenic acid" - - compartment: l - - formula: C18H33O2 + - compartment: "l" + - formula: "C18H33O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01585r + - id: "m01585r" - name: "cis-vaccenic acid" - - compartment: r - - formula: C18H33O2 + - compartment: "r" + - formula: "C18H33O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01585s + - id: "m01585s" - name: "cis-vaccenic acid" - - compartment: s - - formula: C18H33O2 + - compartment: "s" + - formula: "C18H33O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01586c + - id: "m01586c" - name: "cis-vaccenoyl-CoA" - - compartment: c - - formula: C39H64N7O17P3S + - compartment: "c" + - formula: "C39H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01586m + - id: "m01586m" - name: "cis-vaccenoyl-CoA" - - compartment: m - - formula: C39H64N7O17P3S + - compartment: "m" + - formula: "C39H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01586p + - id: "m01586p" - name: "cis-vaccenoyl-CoA" - - compartment: p - - formula: C39H64N7O17P3S + - compartment: "p" + - formula: "C39H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01586r + - id: "m01586r" - name: "cis-vaccenoyl-CoA" - - compartment: r - - formula: C39H64N7O17P3S + - compartment: "r" + - formula: "C39H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01587c + - id: "m01587c" - name: "citrate" - - compartment: c - - formula: C6H5O7 + - compartment: "c" + - formula: "C6H5O7" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01587m + - id: "m01587m" - name: "citrate" - - compartment: m - - formula: C6H5O7 + - compartment: "m" + - formula: "C6H5O7" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01587s + - id: "m01587s" - name: "citrate" - - compartment: s - - formula: C6H5O7 + - compartment: "s" + - formula: "C6H5O7" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01588c + - id: "m01588c" - name: "citrulline" - - compartment: c - - formula: C6H13N3O3 + - compartment: "c" + - formula: "C6H13N3O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01588g + - id: "m01588g" - name: "citrulline" - - compartment: g - - formula: C6H13N3O3 + - compartment: "g" + - formula: "C6H13N3O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01588m + - id: "m01588m" - name: "citrulline" - - compartment: m - - formula: C6H13N3O3 + - compartment: "m" + - formula: "C6H13N3O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01588s + - id: "m01588s" - name: "citrulline" - - compartment: s - - formula: C6H13N3O3 + - compartment: "s" + - formula: "C6H13N3O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01589c + - id: "m01589c" - name: "CL pool" - - compartment: c - - formula: C13H16O17P2R4 + - compartment: "c" + - formula: "C13H16O17P2R4" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01589m + - id: "m01589m" - name: "CL pool" - - compartment: m - - formula: C13H16O17P2R4 + - compartment: "m" + - formula: "C13H16O17P2R4" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01590c + - id: "m01590c" - name: "CMP" - - compartment: c - - formula: C9H12N3O8P + - compartment: "c" + - formula: "C9H12N3O8P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01590g + - id: "m01590g" - name: "CMP" - - compartment: g - - formula: C9H12N3O8P + - compartment: "g" + - formula: "C9H12N3O8P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01590l + - id: "m01590l" - name: "CMP" - - compartment: l - - formula: C9H12N3O8P + - compartment: "l" + - formula: "C9H12N3O8P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01590m + - id: "m01590m" - name: "CMP" - - compartment: m - - formula: C9H12N3O8P + - compartment: "m" + - formula: "C9H12N3O8P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01590n + - id: "m01590n" - name: "CMP" - - compartment: n - - formula: C9H12N3O8P + - compartment: "n" + - formula: "C9H12N3O8P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01590r + - id: "m01590r" - name: "CMP" - - compartment: r - - formula: C9H12N3O8P + - compartment: "r" + - formula: "C9H12N3O8P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01590s + - id: "m01590s" - name: "CMP" - - compartment: s - - formula: C9H12N3O8P + - compartment: "s" + - formula: "C9H12N3O8P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01591c + - id: "m01591c" - name: "CMP-2-aminoethylphosphonate" - - compartment: c - - formula: C11H19N4O10P2 + - compartment: "c" + - formula: "C11H19N4O10P2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01592c + - id: "m01592c" - name: "CMP-N-acetylneuraminate" - - compartment: c - - formula: C20H29N4O16P + - compartment: "c" + - formula: "C20H29N4O16P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01592g + - id: "m01592g" - name: "CMP-N-acetylneuraminate" - - compartment: g - - formula: C20H29N4O16P + - compartment: "g" + - formula: "C20H29N4O16P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01592n + - id: "m01592n" - name: "CMP-N-acetylneuraminate" - - compartment: n - - formula: C20H29N4O16P + - compartment: "n" + - formula: "C20H29N4O16P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01593c + - id: "m01593c" - name: "CMP-neuNGc" - - compartment: c - - formula: C20H29N4O17P + - compartment: "c" + - formula: "C20H29N4O17P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01594c + - id: "m01594c" - name: "CMP-N-trimethyl-2-aminoethylphosphonate" - - compartment: c - - formula: C14H25N4O10P2 + - compartment: "c" + - formula: "C14H25N4O10P2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01595c + - id: "m01595c" - name: "CO" - - compartment: c - - formula: CO + - compartment: "c" + - formula: "CO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01595s + - id: "m01595s" - name: "CO" - - compartment: s - - formula: CO + - compartment: "s" + - formula: "CO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01596c + - id: "m01596c" - name: "CO2" - - compartment: c - - formula: CO2 + - compartment: "c" + - formula: "CO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01596g + - id: "m01596g" - name: "CO2" - - compartment: g - - formula: CO2 + - compartment: "g" + - formula: "CO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01596m + - id: "m01596m" - name: "CO2" - - compartment: m - - formula: CO2 + - compartment: "m" + - formula: "CO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01596p + - id: "m01596p" - name: "CO2" - - compartment: p - - formula: CO2 + - compartment: "p" + - formula: "CO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01596r + - id: "m01596r" - name: "CO2" - - compartment: r - - formula: CO2 + - compartment: "r" + - formula: "CO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01596s + - id: "m01596s" - name: "CO2" - - compartment: s - - formula: CO2 + - compartment: "s" + - formula: "CO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01597c + - id: "m01597c" - name: "CoA" - - compartment: c - - formula: C21H32N7O16P3S + - compartment: "c" + - formula: "C21H32N7O16P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01597g + - id: "m01597g" - name: "CoA" - - compartment: g - - formula: C21H32N7O16P3S + - compartment: "g" + - formula: "C21H32N7O16P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01597l + - id: "m01597l" - name: "CoA" - - compartment: l - - formula: C21H32N7O16P3S + - compartment: "l" + - formula: "C21H32N7O16P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01597m + - id: "m01597m" - name: "CoA" - - compartment: m - - formula: C21H32N7O16P3S + - compartment: "m" + - formula: "C21H32N7O16P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01597n + - id: "m01597n" - name: "CoA" - - compartment: n - - formula: C21H32N7O16P3S + - compartment: "n" + - formula: "C21H32N7O16P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01597p + - id: "m01597p" - name: "CoA" - - compartment: p - - formula: C21H32N7O16P3S + - compartment: "p" + - formula: "C21H32N7O16P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01597r + - id: "m01597r" - name: "CoA" - - compartment: r - - formula: C21H32N7O16P3S + - compartment: "r" + - formula: "C21H32N7O16P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01598m + - id: "m01598m" - name: "cob(I)alamin" - - compartment: m - - formula: C62H88CoN13O14P + - compartment: "m" + - formula: "C62H88CoN13O14P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01599c + - id: "m01599c" - name: "cob(II)alamin" - - compartment: c - - formula: C62H88CoN13O14P + - compartment: "c" + - formula: "C62H88CoN13O14P" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01599m + - id: "m01599m" - name: "cob(II)alamin" - - compartment: m - - formula: C62H88CoN13O14P + - compartment: "m" + - formula: "C62H88CoN13O14P" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01600m + - id: "m01600m" - name: "cobamide-coenzyme" - - compartment: m - - formula: C72H100CoN18O17P + - compartment: "m" + - formula: "C72H100CoN18O17P" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01601c + - id: "m01601c" - name: "cocaine" - - compartment: c - - formula: C17H21NO4 + - compartment: "c" + - formula: "C17H21NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01601r + - id: "m01601r" - name: "cocaine" - - compartment: r - - formula: C17H21NO4 + - compartment: "r" + - formula: "C17H21NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01603c + - id: "m01603c" - name: "coproporphyrin I" - - compartment: c - - formula: C36H34N4O8 + - compartment: "c" + - formula: "C36H34N4O8" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01603s + - id: "m01603s" - name: "coproporphyrin I" - - compartment: s - - formula: C36H34N4O8 + - compartment: "s" + - formula: "C36H34N4O8" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01604c + - id: "m01604c" - name: "coproporphyrin III" - - compartment: c - - formula: C36H34N4O8 + - compartment: "c" + - formula: "C36H34N4O8" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01604s + - id: "m01604s" - name: "coproporphyrin III" - - compartment: s - - formula: C36H34N4O8 + - compartment: "s" + - formula: "C36H34N4O8" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01605c + - id: "m01605c" - name: "coproporphyrinogen I" - - compartment: c - - formula: C36H40N4O8 + - compartment: "c" + - formula: "C36H40N4O8" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01606c + - id: "m01606c" - name: "coproporphyrinogen III" - - compartment: c - - formula: C36H40N4O8 + - compartment: "c" + - formula: "C36H40N4O8" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01607g + - id: "m01607g" - name: "core 2" - - compartment: g - - formula: C22H37N2O15X + - compartment: "g" + - formula: "C22H37N2O15X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01608g + - id: "m01608g" - name: "core 3" - - compartment: g - - formula: C16H27N2O10X + - compartment: "g" + - formula: "C16H27N2O10X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01609g + - id: "m01609g" - name: "core 4" - - compartment: g - - formula: C24H40N3O15X + - compartment: "g" + - formula: "C24H40N3O15X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01610g + - id: "m01610g" - name: "core 5" - - compartment: g - - formula: C16H27N2O10X + - compartment: "g" + - formula: "C16H27N2O10X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01610c + - id: "m01610c" - name: "core 5" - - compartment: c - - formula: C16H27N2O10X + - compartment: "c" + - formula: "C16H27N2O10X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01610s + - id: "m01610s" - name: "core 5" - - compartment: s - - formula: C16H27N2O10X + - compartment: "s" + - formula: "C16H27N2O10X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01611g + - id: "m01611g" - name: "core 6" - - compartment: g - - formula: C16H27N2O10X + - compartment: "g" + - formula: "C16H27N2O10X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01611l + - id: "m01611l" - name: "core 6" - - compartment: l - - formula: C16H27N2O10X + - compartment: "l" + - formula: "C16H27N2O10X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01612g + - id: "m01612g" - name: "core 7" - - compartment: g - - formula: C16H27N2O10X + - compartment: "g" + - formula: "C16H27N2O10X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01612c + - id: "m01612c" - name: "core 7" - - compartment: c - - formula: C16H27N2O10X + - compartment: "c" + - formula: "C16H27N2O10X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01612s + - id: "m01612s" - name: "core 7" - - compartment: s - - formula: C16H27N2O10X + - compartment: "s" + - formula: "C16H27N2O10X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01613g + - id: "m01613g" - name: "core 8" - - compartment: g - - formula: C14H24NO10X + - compartment: "g" + - formula: "C14H24NO10X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01613c + - id: "m01613c" - name: "core 8" - - compartment: c - - formula: C14H24NO10X + - compartment: "c" + - formula: "C14H24NO10X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01613s + - id: "m01613s" - name: "core 8" - - compartment: s - - formula: C14H24NO10X + - compartment: "s" + - formula: "C14H24NO10X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01614c + - id: "m01614c" - name: "corticosterone" - - compartment: c - - formula: C21H30O4 + - compartment: "c" + - formula: "C21H30O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01614m + - id: "m01614m" - name: "corticosterone" - - compartment: m - - formula: C21H30O4 + - compartment: "m" + - formula: "C21H30O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01614r + - id: "m01614r" - name: "corticosterone" - - compartment: r - - formula: C21H30O4 + - compartment: "r" + - formula: "C21H30O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01614s + - id: "m01614s" - name: "corticosterone" - - compartment: s - - formula: C21H30O4 + - compartment: "s" + - formula: "C21H30O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01615c + - id: "m01615c" - name: "cortisol" - - compartment: c - - formula: C21H30O5 + - compartment: "c" + - formula: "C21H30O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01615m + - id: "m01615m" - name: "cortisol" - - compartment: m - - formula: C21H30O5 + - compartment: "m" + - formula: "C21H30O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01615r + - id: "m01615r" - name: "cortisol" - - compartment: r - - formula: C21H30O5 + - compartment: "r" + - formula: "C21H30O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01615s + - id: "m01615s" - name: "cortisol" - - compartment: s - - formula: C21H30O5 + - compartment: "s" + - formula: "C21H30O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01616c + - id: "m01616c" - name: "cortisone" - - compartment: c - - formula: C21H28O5 + - compartment: "c" + - formula: "C21H28O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01616r + - id: "m01616r" - name: "cortisone" - - compartment: r - - formula: C21H28O5 + - compartment: "r" + - formula: "C21H28O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01617c + - id: "m01617c" - name: "coumarin" - - compartment: c - - formula: C9H6O2 + - compartment: "c" + - formula: "C9H6O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01617s + - id: "m01617s" - name: "coumarin" - - compartment: s - - formula: C9H6O2 + - compartment: "s" + - formula: "C9H6O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01618c + - id: "m01618c" - name: "cPMP" - - compartment: c - - formula: C10H13N5O8P + - compartment: "c" + - formula: "C10H13N5O8P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01619c + - id: "m01619c" - name: "creatine" - - compartment: c - - formula: C4H9N3O2 + - compartment: "c" + - formula: "C4H9N3O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01619m + - id: "m01619m" - name: "creatine" - - compartment: m - - formula: C4H9N3O2 + - compartment: "m" + - formula: "C4H9N3O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01619s + - id: "m01619s" - name: "creatine" - - compartment: s - - formula: C4H9N3O2 + - compartment: "s" + - formula: "C4H9N3O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01620c + - id: "m01620c" - name: "creatine-phosphate" - - compartment: c - - formula: C4H8N3O5P + - compartment: "c" + - formula: "C4H8N3O5P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01620m + - id: "m01620m" - name: "creatine-phosphate" - - compartment: m - - formula: C4H8N3O5P + - compartment: "m" + - formula: "C4H8N3O5P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01621c + - id: "m01621c" - name: "creatinine" - - compartment: c - - formula: C4H7N3O + - compartment: "c" + - formula: "C4H7N3O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01621s + - id: "m01621s" - name: "creatinine" - - compartment: s - - formula: C4H7N3O + - compartment: "s" + - formula: "C4H7N3O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01622m + - id: "m01622m" - name: "crotonyl-CoA" - - compartment: m - - formula: C25H36N7O17P3S + - compartment: "m" + - formula: "C25H36N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01622p + - id: "m01622p" - name: "crotonyl-CoA" - - compartment: p - - formula: C25H36N7O17P3S + - compartment: "p" + - formula: "C25H36N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01623c + - id: "m01623c" - name: "CTP" - - compartment: c - - formula: C9H12N3O14P3 + - compartment: "c" + - formula: "C9H12N3O14P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01623m + - id: "m01623m" - name: "CTP" - - compartment: m - - formula: C9H12N3O14P3 + - compartment: "m" + - formula: "C9H12N3O14P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01623n + - id: "m01623n" - name: "CTP" - - compartment: n - - formula: C9H12N3O14P3 + - compartment: "n" + - formula: "C9H12N3O14P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01623s + - id: "m01623s" - name: "CTP" - - compartment: s - - formula: C9H12N3O14P3 + - compartment: "s" + - formula: "C9H12N3O14P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01624c + - id: "m01624c" - name: "Cu2+" - - compartment: c - - formula: Cu + - compartment: "c" + - formula: "Cu" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01624s + - id: "m01624s" - name: "Cu2+" - - compartment: s - - formula: Cu + - compartment: "s" + - formula: "Cu" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01625c + - id: "m01625c" - name: "cyclic-3-hydroxymelatonin" - - compartment: c - - formula: C13H16N2O3 + - compartment: "c" + - formula: "C13H16N2O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01626c + - id: "m01626c" - name: "cys-gly" - - compartment: c - - formula: C5H10N2O3S + - compartment: "c" + - formula: "C5H10N2O3S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01626s + - id: "m01626s" - name: "cys-gly" - - compartment: s - - formula: C5H10N2O3S + - compartment: "s" + - formula: "C5H10N2O3S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01627c + - id: "m01627c" - name: "cysteamine" - - compartment: c - - formula: C2H8NS + - compartment: "c" + - formula: "C2H8NS" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01628c + - id: "m01628c" - name: "cysteine" - - compartment: c - - formula: C3H7NO2S + - compartment: "c" + - formula: "C3H7NO2S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01628l + - id: "m01628l" - name: "cysteine" - - compartment: l - - formula: C3H7NO2S + - compartment: "l" + - formula: "C3H7NO2S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01628m + - id: "m01628m" - name: "cysteine" - - compartment: m - - formula: C3H7NO2S + - compartment: "m" + - formula: "C3H7NO2S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01628s + - id: "m01628s" - name: "cysteine" - - compartment: s - - formula: C3H7NO2S + - compartment: "s" + - formula: "C3H7NO2S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01629c + - id: "m01629c" - name: "cystine" - - compartment: c - - formula: C6H12N2O4S2 + - compartment: "c" + - formula: "C6H12N2O4S2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01629s + - id: "m01629s" - name: "cystine" - - compartment: s - - formula: C6H12N2O4S2 + - compartment: "s" + - formula: "C6H12N2O4S2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01630c + - id: "m01630c" - name: "cytidine" - - compartment: c - - formula: C9H13N3O5 + - compartment: "c" + - formula: "C9H13N3O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01630l + - id: "m01630l" - name: "cytidine" - - compartment: l - - formula: C9H13N3O5 + - compartment: "l" + - formula: "C9H13N3O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01630m + - id: "m01630m" - name: "cytidine" - - compartment: m - - formula: C9H13N3O5 + - compartment: "m" + - formula: "C9H13N3O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01630n + - id: "m01630n" - name: "cytidine" - - compartment: n - - formula: C9H13N3O5 + - compartment: "n" + - formula: "C9H13N3O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01630s + - id: "m01630s" - name: "cytidine" - - compartment: s - - formula: C9H13N3O5 + - compartment: "s" + - formula: "C9H13N3O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01631m + - id: "m01631m" - name: "cytochrome-C" - - compartment: m - - formula: C1612H2513FeN447O449S20 + - compartment: "m" + - formula: "C1612H2513FeN447O449S20" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01632c + - id: "m01632c" - name: "cytosine" - - compartment: c - - formula: C4H5N3O + - compartment: "c" + - formula: "C4H5N3O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01632s + - id: "m01632s" - name: "cytosine" - - compartment: s - - formula: C4H5N3O + - compartment: "s" + - formula: "C4H5N3O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01633c + - id: "m01633c" - name: "D-3-amino-isobutanoate" - - compartment: c - - formula: C4H9NO2 + - compartment: "c" + - formula: "C4H9NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01633m + - id: "m01633m" - name: "D-3-amino-isobutanoate" - - compartment: m - - formula: C4H9NO2 + - compartment: "m" + - formula: "C4H9NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01633s + - id: "m01633s" - name: "D-3-amino-isobutanoate" - - compartment: s - - formula: C4H9NO2 + - compartment: "s" + - formula: "C4H9NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01634c + - id: "m01634c" - name: "D-3-hydroxydodecanoyl-[ACP]" - - compartment: c - - formula: C23H43N2O9PRS + - compartment: "c" + - formula: "C23H43N2O9PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01635c + - id: "m01635c" - name: "D-3-hydroxyhexanoyl-[ACP]" - - compartment: c - - formula: C17H31N2O9PRS + - compartment: "c" + - formula: "C17H31N2O9PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01636c + - id: "m01636c" - name: "D-4-phosphopantothenate" - - compartment: c - - formula: C9H15NO8P + - compartment: "c" + - formula: "C9H15NO8P" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01637c + - id: "m01637c" - name: "dADP" - - compartment: c - - formula: C10H12N5O9P2 + - compartment: "c" + - formula: "C10H12N5O9P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01637m + - id: "m01637m" - name: "dADP" - - compartment: m - - formula: C10H12N5O9P2 + - compartment: "m" + - formula: "C10H12N5O9P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01637n + - id: "m01637n" - name: "dADP" - - compartment: n - - formula: C10H12N5O9P2 + - compartment: "n" + - formula: "C10H12N5O9P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01638c + - id: "m01638c" - name: "D-alanine" - - compartment: c - - formula: C3H7NO2 + - compartment: "c" + - formula: "C3H7NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01638l + - id: "m01638l" - name: "D-alanine" - - compartment: l - - formula: C3H7NO2 + - compartment: "l" + - formula: "C3H7NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01638p + - id: "m01638p" - name: "D-alanine" - - compartment: p - - formula: C3H7NO2 + - compartment: "p" + - formula: "C3H7NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01638s + - id: "m01638s" - name: "D-alanine" - - compartment: s - - formula: C3H7NO2 + - compartment: "s" + - formula: "C3H7NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01639c + - id: "m01639c" - name: "dAMP" - - compartment: c - - formula: C10H12N5O6P + - compartment: "c" + - formula: "C10H12N5O6P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01639l + - id: "m01639l" - name: "dAMP" - - compartment: l - - formula: C10H12N5O6P + - compartment: "l" + - formula: "C10H12N5O6P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01640c + - id: "m01640c" - name: "D-arginine" - - compartment: c - - formula: C6H15N4O2 + - compartment: "c" + - formula: "C6H15N4O2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01640p + - id: "m01640p" - name: "D-arginine" - - compartment: p - - formula: C6H15N4O2 + - compartment: "p" + - formula: "C6H15N4O2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01640s + - id: "m01640s" - name: "D-arginine" - - compartment: s - - formula: C6H15N4O2 + - compartment: "s" + - formula: "C6H15N4O2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01641c + - id: "m01641c" - name: "D-aspartate" - - compartment: c - - formula: C4H6NO4 + - compartment: "c" + - formula: "C4H6NO4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01641p + - id: "m01641p" - name: "D-aspartate" - - compartment: p - - formula: C4H6NO4 + - compartment: "p" + - formula: "C4H6NO4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01641s + - id: "m01641s" - name: "D-aspartate" - - compartment: s - - formula: C4H6NO4 + - compartment: "s" + - formula: "C4H6NO4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01642c + - id: "m01642c" - name: "dATP" - - compartment: c - - formula: C10H12N5O12P3 + - compartment: "c" + - formula: "C10H12N5O12P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01642m + - id: "m01642m" - name: "dATP" - - compartment: m - - formula: C10H12N5O12P3 + - compartment: "m" + - formula: "C10H12N5O12P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01642n + - id: "m01642n" - name: "dATP" - - compartment: n - - formula: C10H12N5O12P3 + - compartment: "n" + - formula: "C10H12N5O12P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01643c + - id: "m01643c" - name: "dCDP" - - compartment: c - - formula: C9H12N3O10P2 + - compartment: "c" + - formula: "C9H12N3O10P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01643m + - id: "m01643m" - name: "dCDP" - - compartment: m - - formula: C9H12N3O10P2 + - compartment: "m" + - formula: "C9H12N3O10P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01643n + - id: "m01643n" - name: "dCDP" - - compartment: n - - formula: C9H12N3O10P2 + - compartment: "n" + - formula: "C9H12N3O10P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01644c + - id: "m01644c" - name: "dCMP" - - compartment: c - - formula: C9H12N3O7P + - compartment: "c" + - formula: "C9H12N3O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01644l + - id: "m01644l" - name: "dCMP" - - compartment: l - - formula: C9H12N3O7P + - compartment: "l" + - formula: "C9H12N3O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01644m + - id: "m01644m" - name: "dCMP" - - compartment: m - - formula: C9H12N3O7P + - compartment: "m" + - formula: "C9H12N3O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01644n + - id: "m01644n" - name: "dCMP" - - compartment: n - - formula: C9H12N3O7P + - compartment: "n" + - formula: "C9H12N3O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01645c + - id: "m01645c" - name: "dCTP" - - compartment: c - - formula: C9H12N3O13P3 + - compartment: "c" + - formula: "C9H12N3O13P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01645m + - id: "m01645m" - name: "dCTP" - - compartment: m - - formula: C9H12N3O13P3 + - compartment: "m" + - formula: "C9H12N3O13P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01645n + - id: "m01645n" - name: "dCTP" - - compartment: n - - formula: C9H12N3O13P3 + - compartment: "n" + - formula: "C9H12N3O13P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01646c + - id: "m01646c" - name: "deamido-NAD" - - compartment: c - - formula: C21H24N6O15P2 + - compartment: "c" + - formula: "C21H24N6O15P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01646n + - id: "m01646n" - name: "deamido-NAD" - - compartment: n - - formula: C21H24N6O15P2 + - compartment: "n" + - formula: "C21H24N6O15P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01647c + - id: "m01647c" - name: "debrisoquin" - - compartment: c - - formula: C10H14N3 + - compartment: "c" + - formula: "C10H14N3" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01647s + - id: "m01647s" - name: "debrisoquin" - - compartment: s - - formula: C10H14N3 + - compartment: "s" + - formula: "C10H14N3" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01648c + - id: "m01648c" - name: "decanoic acid" - - compartment: c - - formula: C10H19O2 + - compartment: "c" + - formula: "C10H19O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01648s + - id: "m01648s" - name: "decanoic acid" - - compartment: s - - formula: C10H19O2 + - compartment: "s" + - formula: "C10H19O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01649c + - id: "m01649c" - name: "decanoyl-[ACP]" - - compartment: c - - formula: C21H39N2O8PRS + - compartment: "c" + - formula: "C21H39N2O8PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01650c + - id: "m01650c" - name: "decanoyl-CoA" - - compartment: c - - formula: C31H50N7O17P3S + - compartment: "c" + - formula: "C31H50N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01650m + - id: "m01650m" - name: "decanoyl-CoA" - - compartment: m - - formula: C31H50N7O17P3S + - compartment: "m" + - formula: "C31H50N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01650p + - id: "m01650p" - name: "decanoyl-CoA" - - compartment: p - - formula: C31H50N7O17P3S + - compartment: "p" + - formula: "C31H50N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01651l + - id: "m01651l" - name: "de-Fuc form of PA6 (wo peptide linkage)" - - compartment: l - - formula: C84H136N6O62 + - compartment: "l" + - formula: "C84H136N6O62" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01652l + - id: "m01652l" - name: "de-Fuc form of PA6" - - compartment: l - - formula: C84H135N6O61X + - compartment: "l" + - formula: "C84H135N6O61X" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01652s + - id: "m01652s" - name: "de-Fuc form of PA6" - - compartment: s - - formula: C84H135N6O61X + - compartment: "s" + - formula: "C84H135N6O61X" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01653l + - id: "m01653l" - name: "de-Fuc, GlcNAc removed PA6 (wo peptide linkage)" - - compartment: l - - formula: C76H123N5O57 + - compartment: "l" + - formula: "C76H123N5O57" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01654c + - id: "m01654c" - name: "dehydroalanine" - - compartment: c - - formula: C3H5NO2 + - compartment: "c" + - formula: "C3H5NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01655c + - id: "m01655c" - name: "dehydroascorbic acid" - - compartment: c - - formula: C6H5O6 + - compartment: "c" + - formula: "C6H5O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01655s + - id: "m01655s" - name: "dehydroascorbic acid" - - compartment: s - - formula: C6H5O6 + - compartment: "s" + - formula: "C6H5O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01656c + - id: "m01656c" - name: "dehydrodolichol" - - compartment: c - - formula: C100H162O + - compartment: "c" + - formula: "C100H162O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01657c + - id: "m01657c" - name: "dehydrodolichol-diphosphate" - - compartment: c - - formula: C100H161O7P2 + - compartment: "c" + - formula: "C100H161O7P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01658c + - id: "m01658c" - name: "dehydrodolichol-phosphate" - - compartment: c - - formula: C100H161O4P + - compartment: "c" + - formula: "C100H161O4P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01659c + - id: "m01659c" - name: "dehydroepiandrosterone sulfate" - - compartment: c - - formula: C19H27O5S + - compartment: "c" + - formula: "C19H27O5S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01659r + - id: "m01659r" - name: "dehydroepiandrosterone sulfate" - - compartment: r - - formula: C19H27O5S + - compartment: "r" + - formula: "C19H27O5S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01659s + - id: "m01659s" - name: "dehydroepiandrosterone sulfate" - - compartment: s - - formula: C19H27O5S + - compartment: "s" + - formula: "C19H27O5S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01660c + - id: "m01660c" - name: "dehydroepiandrosterone" - - compartment: c - - formula: C19H28O2 + - compartment: "c" + - formula: "C19H28O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01660r + - id: "m01660r" - name: "dehydroepiandrosterone" - - compartment: r - - formula: C19H28O2 + - compartment: "r" + - formula: "C19H28O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01661c + - id: "m01661c" - name: "dehydrospermidine" - - compartment: c - - formula: C7H20N3 + - compartment: "c" + - formula: "C7H20N3" - charge: 3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01662c + - id: "m01662c" - name: "delta-12-prostaglandin J2" - - compartment: c - - formula: C20H29O4 + - compartment: "c" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01662r + - id: "m01662r" - name: "delta-12-prostaglandin J2" - - compartment: r - - formula: C20H29O4 + - compartment: "r" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01663p + - id: "m01663p" - name: "delta1-piperideine-2-carboxylate" - - compartment: p - - formula: C6H9NO2 + - compartment: "p" + - formula: "C6H9NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01664p + - id: "m01664p" - name: "delta2-THA-CoA" - - compartment: p - - formula: C45H64N7O17P3S + - compartment: "p" + - formula: "C45H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01665r + - id: "m01665r" - name: "dem2emgacpail_prot heparan sulfate" - - compartment: r - - formula: C39H70N3O38P3R2X + - compartment: "r" + - formula: "C39H70N3O38P3R2X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01665c + - id: "m01665c" - name: "dem2emgacpail_prot heparan sulfate" - - compartment: c - - formula: C39H70N3O38P3R2X + - compartment: "c" + - formula: "C39H70N3O38P3R2X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01665s + - id: "m01665s" - name: "dem2emgacpail_prot heparan sulfate" - - compartment: s - - formula: C39H70N3O38P3R2X + - compartment: "s" + - formula: "C39H70N3O38P3R2X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01666c + - id: "m01666c" - name: "deoxyadenosine" - - compartment: c - - formula: C10H13N5O3 + - compartment: "c" + - formula: "C10H13N5O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01666l + - id: "m01666l" - name: "deoxyadenosine" - - compartment: l - - formula: C10H13N5O3 + - compartment: "l" + - formula: "C10H13N5O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01666s + - id: "m01666s" - name: "deoxyadenosine" - - compartment: s - - formula: C10H13N5O3 + - compartment: "s" + - formula: "C10H13N5O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01667c + - id: "m01667c" - name: "deoxycholoyl-CoA" - - compartment: c - - formula: C45H70N7O19P3S + - compartment: "c" + - formula: "C45H70N7O19P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01667p + - id: "m01667p" - name: "deoxycholoyl-CoA" - - compartment: p - - formula: C45H70N7O19P3S + - compartment: "p" + - formula: "C45H70N7O19P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01667r + - id: "m01667r" - name: "deoxycholoyl-CoA" - - compartment: r - - formula: C45H70N7O19P3S + - compartment: "r" + - formula: "C45H70N7O19P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01668c + - id: "m01668c" - name: "deoxycytidine" - - compartment: c - - formula: C9H13N3O4 + - compartment: "c" + - formula: "C9H13N3O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01668l + - id: "m01668l" - name: "deoxycytidine" - - compartment: l - - formula: C9H13N3O4 + - compartment: "l" + - formula: "C9H13N3O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01668m + - id: "m01668m" - name: "deoxycytidine" - - compartment: m - - formula: C9H13N3O4 + - compartment: "m" + - formula: "C9H13N3O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01668n + - id: "m01668n" - name: "deoxycytidine" - - compartment: n - - formula: C9H13N3O4 + - compartment: "n" + - formula: "C9H13N3O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01668s + - id: "m01668s" - name: "deoxycytidine" - - compartment: s - - formula: C9H13N3O4 + - compartment: "s" + - formula: "C9H13N3O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01669c + - id: "m01669c" - name: "deoxyguanosine" - - compartment: c - - formula: C10H13N5O4 + - compartment: "c" + - formula: "C10H13N5O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01669l + - id: "m01669l" - name: "deoxyguanosine" - - compartment: l - - formula: C10H13N5O4 + - compartment: "l" + - formula: "C10H13N5O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01669m + - id: "m01669m" - name: "deoxyguanosine" - - compartment: m - - formula: C10H13N5O4 + - compartment: "m" + - formula: "C10H13N5O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01669s + - id: "m01669s" - name: "deoxyguanosine" - - compartment: s - - formula: C10H13N5O4 + - compartment: "s" + - formula: "C10H13N5O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01670c + - id: "m01670c" - name: "deoxyhypusine" - - compartment: c - - formula: C10H25N3O2 + - compartment: "c" + - formula: "C10H25N3O2" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01671c + - id: "m01671c" - name: "deoxyinosine" - - compartment: c - - formula: C10H12N4O4 + - compartment: "c" + - formula: "C10H12N4O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01671s + - id: "m01671s" - name: "deoxyinosine" - - compartment: s - - formula: C10H12N4O4 + - compartment: "s" + - formula: "C10H12N4O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01672c + - id: "m01672c" - name: "deoxyribose" - - compartment: c - - formula: C5H10O4 + - compartment: "c" + - formula: "C5H10O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01672s + - id: "m01672s" - name: "deoxyribose" - - compartment: s - - formula: C5H10O4 + - compartment: "s" + - formula: "C5H10O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01673c + - id: "m01673c" - name: "deoxyuridine" - - compartment: c - - formula: C9H12N2O5 + - compartment: "c" + - formula: "C9H12N2O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01673m + - id: "m01673m" - name: "deoxyuridine" - - compartment: m - - formula: C9H12N2O5 + - compartment: "m" + - formula: "C9H12N2O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01673n + - id: "m01673n" - name: "deoxyuridine" - - compartment: n - - formula: C9H12N2O5 + - compartment: "n" + - formula: "C9H12N2O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01673s + - id: "m01673s" - name: "deoxyuridine" - - compartment: s - - formula: C9H12N2O5 + - compartment: "s" + - formula: "C9H12N2O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01674c + - id: "m01674c" - name: "dephospho-CoA" - - compartment: c - - formula: C21H33N7O13P2S + - compartment: "c" + - formula: "C21H33N7O13P2S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01674l + - id: "m01674l" - name: "dephospho-CoA" - - compartment: l - - formula: C21H33N7O13P2S + - compartment: "l" + - formula: "C21H33N7O13P2S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01674m + - id: "m01674m" - name: "dephospho-CoA" - - compartment: m - - formula: C21H33N7O13P2S + - compartment: "m" + - formula: "C21H33N7O13P2S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01675c + - id: "m01675c" - name: "desmosterol" - - compartment: c - - formula: C27H44O + - compartment: "c" + - formula: "C27H44O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01676c + - id: "m01676c" - name: "detyrosinated alpha-tubulin" - - compartment: c - - formula: C4H6N2O3R2 + - compartment: "c" + - formula: "C4H6N2O3R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01677c + - id: "m01677c" - name: "dextrin(n-1)" - - compartment: c - - formula: C12H22O11 + - compartment: "c" + - formula: "C12H22O11" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01678c + - id: "m01678c" - name: "dextrin" - - compartment: c - - formula: C18H32O16 + - compartment: "c" + - formula: "C18H32O16" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01679c + - id: "m01679c" - name: "D-galactosyl-N-acylsphingosine" - - compartment: c - - formula: C24H46NO7RCO + - compartment: "c" + - formula: "C24H46NO7RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01679g + - id: "m01679g" - name: "D-galactosyl-N-acylsphingosine" - - compartment: g - - formula: C24H46NO7RCO + - compartment: "g" + - formula: "C24H46NO7RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01679l + - id: "m01679l" - name: "D-galactosyl-N-acylsphingosine" - - compartment: l - - formula: C24H46NO7RCO + - compartment: "l" + - formula: "C24H46NO7RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01679r + - id: "m01679r" - name: "D-galactosyl-N-acylsphingosine" - - compartment: r - - formula: C24H46NO7RCO + - compartment: "r" + - formula: "C24H46NO7RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01680c + - id: "m01680c" - name: "dGDP" - - compartment: c - - formula: C10H12N5O10P2 + - compartment: "c" + - formula: "C10H12N5O10P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01680m + - id: "m01680m" - name: "dGDP" - - compartment: m - - formula: C10H12N5O10P2 + - compartment: "m" + - formula: "C10H12N5O10P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01680n + - id: "m01680n" - name: "dGDP" - - compartment: n - - formula: C10H12N5O10P2 + - compartment: "n" + - formula: "C10H12N5O10P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01681c + - id: "m01681c" - name: "D-glucarate" - - compartment: c - - formula: C6H8O8 + - compartment: "c" + - formula: "C6H8O8" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01682c + - id: "m01682c" - name: "D-glucitol" - - compartment: c - - formula: C6H14O6 + - compartment: "c" + - formula: "C6H14O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01682g + - id: "m01682g" - name: "D-glucitol" - - compartment: g - - formula: C6H14O6 + - compartment: "g" + - formula: "C6H14O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01682l + - id: "m01682l" - name: "D-glucitol" - - compartment: l - - formula: C6H14O6 + - compartment: "l" + - formula: "C6H14O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01682s + - id: "m01682s" - name: "D-glucitol" - - compartment: s - - formula: C6H14O6 + - compartment: "s" + - formula: "C6H14O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01683c + - id: "m01683c" - name: "D-gluconic acid" - - compartment: c - - formula: C6H11O7 + - compartment: "c" + - formula: "C6H11O7" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01684c + - id: "m01684c" - name: "D-glucuronate 1-phosphate" - - compartment: c - - formula: C6H8O10P + - compartment: "c" + - formula: "C6H8O10P" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01685c + - id: "m01685c" - name: "D-glucurono-6,3-lactone" - - compartment: c - - formula: C6H8O6 + - compartment: "c" + - formula: "C6H8O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01685r + - id: "m01685r" - name: "D-glucurono-6,3-lactone" - - compartment: r - - formula: C6H8O6 + - compartment: "r" + - formula: "C6H8O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01686c + - id: "m01686c" - name: "dGMP" - - compartment: c - - formula: C10H12N5O7P + - compartment: "c" + - formula: "C10H12N5O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01686l + - id: "m01686l" - name: "dGMP" - - compartment: l - - formula: C10H12N5O7P + - compartment: "l" + - formula: "C10H12N5O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01686m + - id: "m01686m" - name: "dGMP" - - compartment: m - - formula: C10H12N5O7P + - compartment: "m" + - formula: "C10H12N5O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01687r + - id: "m01687r" - name: "dgpi_prot heparan sulfate" - - compartment: r - - formula: C41H76N4O41P4R2X + - compartment: "r" + - formula: "C41H76N4O41P4R2X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01687c + - id: "m01687c" - name: "dgpi_prot heparan sulfate" - - compartment: c - - formula: C41H76N4O41P4R2X + - compartment: "c" + - formula: "C41H76N4O41P4R2X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01687s + - id: "m01687s" - name: "dgpi_prot heparan sulfate" - - compartment: s - - formula: C41H76N4O41P4R2X + - compartment: "s" + - formula: "C41H76N4O41P4R2X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01688c + - id: "m01688c" - name: "dGTP" - - compartment: c - - formula: C10H12N5O13P3 + - compartment: "c" + - formula: "C10H12N5O13P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01688m + - id: "m01688m" - name: "dGTP" - - compartment: m - - formula: C10H12N5O13P3 + - compartment: "m" + - formula: "C10H12N5O13P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01688n + - id: "m01688n" - name: "dGTP" - - compartment: n - - formula: C10H12N5O13P3 + - compartment: "n" + - formula: "C10H12N5O13P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01689c + - id: "m01689c" - name: "DHA" - - compartment: c - - formula: C22H31O2 + - compartment: "c" + - formula: "C22H31O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01689l + - id: "m01689l" - name: "DHA" - - compartment: l - - formula: C22H31O2 + - compartment: "l" + - formula: "C22H31O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01689r + - id: "m01689r" - name: "DHA" - - compartment: r - - formula: C22H31O2 + - compartment: "r" + - formula: "C22H31O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01689s + - id: "m01689s" - name: "DHA" - - compartment: s - - formula: C22H31O2 + - compartment: "s" + - formula: "C22H31O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01690c + - id: "m01690c" - name: "DHAP" - - compartment: c - - formula: C3H5O6P + - compartment: "c" + - formula: "C3H5O6P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01690m + - id: "m01690m" - name: "DHAP" - - compartment: m - - formula: C3H5O6P + - compartment: "m" + - formula: "C3H5O6P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01690p + - id: "m01690p" - name: "DHAP" - - compartment: p - - formula: C3H5O6P + - compartment: "p" + - formula: "C3H5O6P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01690s + - id: "m01690s" - name: "DHAP" - - compartment: s - - formula: C3H5O6P + - compartment: "s" + - formula: "C3H5O6P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01691c + - id: "m01691c" - name: "dichloroacetate" - - compartment: c - - formula: C2H1Cl2O2 + - compartment: "c" + - formula: "C2H1Cl2O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01692c + - id: "m01692c" - name: "dichloroacetyl chloride" - - compartment: c - - formula: C2HCl3O + - compartment: "c" + - formula: "C2HCl3O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01693c + - id: "m01693c" - name: "dIDP" - - compartment: c - - formula: C10H11N4O10P2 + - compartment: "c" + - formula: "C10H11N4O10P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01693m + - id: "m01693m" - name: "dIDP" - - compartment: m - - formula: C10H11N4O10P2 + - compartment: "m" + - formula: "C10H11N4O10P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01693n + - id: "m01693n" - name: "dIDP" - - compartment: n - - formula: C10H11N4O10P2 + - compartment: "n" + - formula: "C10H11N4O10P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01694c + - id: "m01694c" - name: "digalactosylceramide" - - compartment: c - - formula: C30H56NO12RCO + - compartment: "c" + - formula: "C30H56NO12RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01694g + - id: "m01694g" - name: "digalactosylceramide" - - compartment: g - - formula: C30H56NO12RCO + - compartment: "g" + - formula: "C30H56NO12RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01694l + - id: "m01694l" - name: "digalactosylceramide" - - compartment: l - - formula: C30H56NO12RCO + - compartment: "l" + - formula: "C30H56NO12RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01695c + - id: "m01695c" - name: "digalactosylceramidesulfate" - - compartment: c - - formula: C30H55NO15SRCO + - compartment: "c" + - formula: "C30H55NO15SRCO" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01695g + - id: "m01695g" - name: "digalactosylceramidesulfate" - - compartment: g - - formula: C30H55NO15SRCO + - compartment: "g" + - formula: "C30H55NO15SRCO" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01695s + - id: "m01695s" - name: "digalactosylceramidesulfate" - - compartment: s - - formula: C30H55NO15SRCO + - compartment: "s" + - formula: "C30H55NO15SRCO" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01696c + - id: "m01696c" - name: "dihomo-gamma-linolenate" - - compartment: c - - formula: C20H33O2 + - compartment: "c" + - formula: "C20H33O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01696l + - id: "m01696l" - name: "dihomo-gamma-linolenate" - - compartment: l - - formula: C20H33O2 + - compartment: "l" + - formula: "C20H33O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01696r + - id: "m01696r" - name: "dihomo-gamma-linolenate" - - compartment: r - - formula: C20H33O2 + - compartment: "r" + - formula: "C20H33O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01696s + - id: "m01696s" - name: "dihomo-gamma-linolenate" - - compartment: s - - formula: C20H33O2 + - compartment: "s" + - formula: "C20H33O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01697c + - id: "m01697c" - name: "dihomo-gamma-linolenoyl-CoA" - - compartment: c - - formula: C41H64N7O17P3S + - compartment: "c" + - formula: "C41H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01697m + - id: "m01697m" - name: "dihomo-gamma-linolenoyl-CoA" - - compartment: m - - formula: C41H64N7O17P3S + - compartment: "m" + - formula: "C41H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01697r + - id: "m01697r" - name: "dihomo-gamma-linolenoyl-CoA" - - compartment: r - - formula: C41H64N7O17P3S + - compartment: "r" + - formula: "C41H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01698c + - id: "m01698c" - name: "dihydrobiopterin" - - compartment: c - - formula: C9H13N5O3 + - compartment: "c" + - formula: "C9H13N5O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01699c + - id: "m01699c" - name: "dihydroceramide pool" - - compartment: c - - formula: C18H38NO2RCO + - compartment: "c" + - formula: "C18H38NO2RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01700c + - id: "m01700c" - name: "dihydrofolate" - - compartment: c - - formula: C19H19N7O6 + - compartment: "c" + - formula: "C19H19N7O6" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01700l + - id: "m01700l" - name: "dihydrofolate" - - compartment: l - - formula: C19H19N7O6 + - compartment: "l" + - formula: "C19H19N7O6" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01700m + - id: "m01700m" - name: "dihydrofolate" - - compartment: m - - formula: C19H19N7O6 + - compartment: "m" + - formula: "C19H19N7O6" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01700s + - id: "m01700s" - name: "dihydrofolate" - - compartment: s - - formula: C19H19N7O6 + - compartment: "s" + - formula: "C19H19N7O6" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01701c + - id: "m01701c" - name: "dihydrolipoamide" - - compartment: c - - formula: C8H17NOS2 + - compartment: "c" + - formula: "C8H17NOS2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01701m + - id: "m01701m" - name: "dihydrolipoamide" - - compartment: m - - formula: C8H17NOS2 + - compartment: "m" + - formula: "C8H17NOS2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01702c + - id: "m01702c" - name: "dihydrolipoate" - - compartment: c - - formula: C8H15O2S2 + - compartment: "c" + - formula: "C8H15O2S2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01703m + - id: "m01703m" - name: "dihydrolipoylprotein" - - compartment: m - - formula: H2S2X + - compartment: "m" + - formula: "H2S2X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01704c + - id: "m01704c" - name: "dihydroneopterin" - - compartment: c - - formula: C9H13N5O4 + - compartment: "c" + - formula: "C9H13N5O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01704s + - id: "m01704s" - name: "dihydroneopterin" - - compartment: s - - formula: C9H13N5O4 + - compartment: "s" + - formula: "C9H13N5O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01705c + - id: "m01705c" - name: "dihydrothymine" - - compartment: c - - formula: C5H8N2O2 + - compartment: "c" + - formula: "C5H8N2O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01705m + - id: "m01705m" - name: "dihydrothymine" - - compartment: m - - formula: C5H8N2O2 + - compartment: "m" + - formula: "C5H8N2O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01706c + - id: "m01706c" - name: "dimethylallyl-PP" - - compartment: c - - formula: C5H9O7P2 + - compartment: "c" + - formula: "C5H9O7P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01707c + - id: "m01707c" - name: "dimethylamine" - - compartment: c - - formula: C2H8N + - compartment: "c" + - formula: "C2H8N" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01708c + - id: "m01708c" - name: "dimethylglycine" - - compartment: c - - formula: C4H9NO2 + - compartment: "c" + - formula: "C4H9NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01708m + - id: "m01708m" - name: "dimethylglycine" - - compartment: m - - formula: C4H9NO2 + - compartment: "m" + - formula: "C4H9NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01709c + - id: "m01709c" - name: "dIMP" - - compartment: c - - formula: C10H11N4O7P + - compartment: "c" + - formula: "C10H11N4O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01710c + - id: "m01710c" - name: "diphospho-myo-inositol-polyphosphate" - - compartment: c - - formula: O3PX + - compartment: "c" + - formula: "O3PX" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01711c + - id: "m01711c" - name: "disialylgalactosylgloboside" - - compartment: c - - formula: C72H121N4O43RCO + - compartment: "c" + - formula: "C72H121N4O43RCO" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01711g + - id: "m01711g" - name: "disialylgalactosylgloboside" - - compartment: g - - formula: C72H121N4O43RCO + - compartment: "g" + - formula: "C72H121N4O43RCO" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01711s + - id: "m01711s" - name: "disialylgalactosylgloboside" - - compartment: s - - formula: C72H121N4O43RCO + - compartment: "s" + - formula: "C72H121N4O43RCO" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01712c + - id: "m01712c" - name: "disialyl-T antigen" - - compartment: c - - formula: C36H56N3O26X + - compartment: "c" + - formula: "C36H56N3O26X" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01712g + - id: "m01712g" - name: "disialyl-T antigen" - - compartment: g - - formula: C36H56N3O26X + - compartment: "g" + - formula: "C36H56N3O26X" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01712s + - id: "m01712s" - name: "disialyl-T antigen" - - compartment: s - - formula: C36H56N3O26X + - compartment: "s" + - formula: "C36H56N3O26X" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01713c + - id: "m01713c" - name: "dithiothreitol" - - compartment: c - - formula: C4H10O2S2 + - compartment: "c" + - formula: "C4H10O2S2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01714c + - id: "m01714c" - name: "dITP" - - compartment: c - - formula: C10H11N4O13P3 + - compartment: "c" + - formula: "C10H11N4O13P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01714m + - id: "m01714m" - name: "dITP" - - compartment: m - - formula: C10H11N4O13P3 + - compartment: "m" + - formula: "C10H11N4O13P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01714n + - id: "m01714n" - name: "dITP" - - compartment: n - - formula: C10H11N4O13P3 + - compartment: "n" + - formula: "C10H11N4O13P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01714s + - id: "m01714s" - name: "dITP" - - compartment: s - - formula: C10H11N4O13P3 + - compartment: "s" + - formula: "C10H11N4O13P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01715c + - id: "m01715c" - name: "D-lactaldehyde" - - compartment: c - - formula: C3H6O2 + - compartment: "c" + - formula: "C3H6O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01716c + - id: "m01716c" - name: "D-lactate" - - compartment: c - - formula: C3H5O3 + - compartment: "c" + - formula: "C3H5O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01716m + - id: "m01716m" - name: "D-lactate" - - compartment: m - - formula: C3H5O3 + - compartment: "m" + - formula: "C3H5O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01716s + - id: "m01716s" - name: "D-lactate" - - compartment: s - - formula: C3H5O3 + - compartment: "s" + - formula: "C3H5O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01717c + - id: "m01717c" - name: "D-mannose-1,6-bisphosphate" - - compartment: c - - formula: C6H10O12P2 + - compartment: "c" + - formula: "C6H10O12P2" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01718c + - id: "m01718c" - name: "D-myo-inositol-1,4,5-trisphosphate" - - compartment: c - - formula: C6H9O15P3 + - compartment: "c" + - formula: "C6H9O15P3" - charge: -6 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01718n + - id: "m01718n" - name: "D-myo-inositol-1,4,5-trisphosphate" - - compartment: n - - formula: C6H9O15P3 + - compartment: "n" + - formula: "C6H9O15P3" - charge: -6 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01719c + - id: "m01719c" - name: "DNA containing 6-O-methylguanine" - - compartment: c - - formula: C21H28N5O17P3R2 + - compartment: "c" + - formula: "C21H28N5O17P3R2" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01720c + - id: "m01720c" - name: "DNA containing guanine" - - compartment: c - - formula: C20H26N5O17P3R2 + - compartment: "c" + - formula: "C20H26N5O17P3R2" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01721c + - id: "m01721c" - name: "DNA" - - compartment: c - - formula: C10H17O8PR2 + - compartment: "c" + - formula: "C10H17O8PR2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01721n + - id: "m01721n" - name: "DNA" - - compartment: n - - formula: C10H17O8PR2 + - compartment: "n" + - formula: "C10H17O8PR2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01722c + - id: "m01722c" - name: "DNA-5-methylcytosine" - - compartment: c - - formula: C11H19O8PR2 + - compartment: "c" + - formula: "C11H19O8PR2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01722n + - id: "m01722n" - name: "DNA-5-methylcytosine" - - compartment: n - - formula: C11H19O8PR2 + - compartment: "n" + - formula: "C11H19O8PR2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01723c + - id: "m01723c" - name: "docosahexaenoylcarnitine" - - compartment: c - - formula: C29H45NO4 + - compartment: "c" + - formula: "C29H45NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01723m + - id: "m01723m" - name: "docosahexaenoylcarnitine" - - compartment: m - - formula: C29H45NO4 + - compartment: "m" + - formula: "C29H45NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01723r + - id: "m01723r" - name: "docosahexaenoylcarnitine" - - compartment: r - - formula: C29H45NO4 + - compartment: "r" + - formula: "C29H45NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01724c + - id: "m01724c" - name: "docosanoylcarnitine" - - compartment: c - - formula: C29H57NO4 + - compartment: "c" + - formula: "C29H57NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01724m + - id: "m01724m" - name: "docosanoylcarnitine" - - compartment: m - - formula: C29H57NO4 + - compartment: "m" + - formula: "C29H57NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01724r + - id: "m01724r" - name: "docosanoylcarnitine" - - compartment: r - - formula: C29H57NO4 + - compartment: "r" + - formula: "C29H57NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01725c + - id: "m01725c" - name: "docosanoyl-CoA" - - compartment: c - - formula: C43H74N7O17P3S + - compartment: "c" + - formula: "C43H74N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01725m + - id: "m01725m" - name: "docosanoyl-CoA" - - compartment: m - - formula: C43H74N7O17P3S + - compartment: "m" + - formula: "C43H74N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01725p + - id: "m01725p" - name: "docosanoyl-CoA" - - compartment: p - - formula: C43H74N7O17P3S + - compartment: "p" + - formula: "C43H74N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01725r + - id: "m01725r" - name: "docosanoyl-CoA" - - compartment: r - - formula: C43H74N7O17P3S + - compartment: "r" + - formula: "C43H74N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01726c + - id: "m01726c" - name: "docosenoylcarnitine(11)" - - compartment: c - - formula: C29H55NO4 + - compartment: "c" + - formula: "C29H55NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01726m + - id: "m01726m" - name: "docosenoylcarnitine(11)" - - compartment: m - - formula: C29H55NO4 + - compartment: "m" + - formula: "C29H55NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01726r + - id: "m01726r" - name: "docosenoylcarnitine(11)" - - compartment: r - - formula: C29H55NO4 + - compartment: "r" + - formula: "C29H55NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01727c + - id: "m01727c" - name: "docosenoylcarnitine" - - compartment: c - - formula: C29H55NO4 + - compartment: "c" + - formula: "C29H55NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01727m + - id: "m01727m" - name: "docosenoylcarnitine" - - compartment: m - - formula: C29H55NO4 + - compartment: "m" + - formula: "C29H55NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01727r + - id: "m01727r" - name: "docosenoylcarnitine" - - compartment: r - - formula: C29H55NO4 + - compartment: "r" + - formula: "C29H55NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01728c + - id: "m01728c" - name: "dodecanoyl-[ACP]" - - compartment: c - - formula: C23H43N2O8PRS + - compartment: "c" + - formula: "C23H43N2O8PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01729c + - id: "m01729c" - name: "dodecanoylcarnitine" - - compartment: c - - formula: C19H37NO4 + - compartment: "c" + - formula: "C19H37NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01729m + - id: "m01729m" - name: "dodecanoylcarnitine" - - compartment: m - - formula: C19H37NO4 + - compartment: "m" + - formula: "C19H37NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01729r + - id: "m01729r" - name: "dodecanoylcarnitine" - - compartment: r - - formula: C19H37NO4 + - compartment: "r" + - formula: "C19H37NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01730c + - id: "m01730c" - name: "dolichol" - - compartment: c - - formula: C100H164O + - compartment: "c" + - formula: "C100H164O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01730r + - id: "m01730r" - name: "dolichol" - - compartment: r - - formula: C100H164O + - compartment: "r" + - formula: "C100H164O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01730s + - id: "m01730s" - name: "dolichol" - - compartment: s - - formula: C100H164O + - compartment: "s" + - formula: "C100H164O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01731r + - id: "m01731r" - name: "dolichyl-D-glucosyl-phosphate" - - compartment: r - - formula: C106H174O9P + - compartment: "r" + - formula: "C106H174O9P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01732c + - id: "m01732c" - name: "dolichyl-diphosphate" - - compartment: c - - formula: C100H163O7P2 + - compartment: "c" + - formula: "C100H163O7P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01732r + - id: "m01732r" - name: "dolichyl-diphosphate" - - compartment: r - - formula: C100H163O7P2 + - compartment: "r" + - formula: "C100H163O7P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01733c + - id: "m01733c" - name: "dolichyl-phosphate" - - compartment: c - - formula: C100H163O4P + - compartment: "c" + - formula: "C100H163O4P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01733r + - id: "m01733r" - name: "dolichyl-phosphate" - - compartment: r - - formula: C100H163O4P + - compartment: "r" + - formula: "C100H163O4P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01734c + - id: "m01734c" - name: "dolichyl-phosphate-D-mannose" - - compartment: c - - formula: C106H174O9P + - compartment: "c" + - formula: "C106H174O9P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01734r + - id: "m01734r" - name: "dolichyl-phosphate-D-mannose" - - compartment: r - - formula: C106H174O9P + - compartment: "r" + - formula: "C106H174O9P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01735c + - id: "m01735c" - name: "dopachrome-O-semiquinone" - - compartment: c - - formula: C9H6NO4 + - compartment: "c" + - formula: "C9H6NO4" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01736c + - id: "m01736c" - name: "dopamine" - - compartment: c - - formula: C8H12NO2 + - compartment: "c" + - formula: "C8H12NO2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01736g + - id: "m01736g" - name: "dopamine" - - compartment: g - - formula: C8H12NO2 + - compartment: "g" + - formula: "C8H12NO2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01736m + - id: "m01736m" - name: "dopamine" - - compartment: m - - formula: C8H12NO2 + - compartment: "m" + - formula: "C8H12NO2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01736s + - id: "m01736s" - name: "dopamine" - - compartment: s - - formula: C8H12NO2 + - compartment: "s" + - formula: "C8H12NO2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01737c + - id: "m01737c" - name: "dopamine-3-O-sulfate" - - compartment: c - - formula: C8H11NO5S + - compartment: "c" + - formula: "C8H11NO5S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01737s + - id: "m01737s" - name: "dopamine-3-O-sulfate" - - compartment: s - - formula: C8H11NO5S + - compartment: "s" + - formula: "C8H11NO5S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01738c + - id: "m01738c" - name: "dopamine-O-quinone" - - compartment: c - - formula: C8H10NO2 + - compartment: "c" + - formula: "C8H10NO2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01739c + - id: "m01739c" - name: "dopaminochrome" - - compartment: c - - formula: C8H7NO2 + - compartment: "c" + - formula: "C8H7NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01740c + - id: "m01740c" - name: "D-ornithine" - - compartment: c - - formula: C5H13N2O2 + - compartment: "c" + - formula: "C5H13N2O2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01740p + - id: "m01740p" - name: "D-ornithine" - - compartment: p - - formula: C5H13N2O2 + - compartment: "p" + - formula: "C5H13N2O2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01740s + - id: "m01740s" - name: "D-ornithine" - - compartment: s - - formula: C5H13N2O2 + - compartment: "s" + - formula: "C5H13N2O2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01741c + - id: "m01741c" - name: "DPA" - - compartment: c - - formula: C22H33O2 + - compartment: "c" + - formula: "C22H33O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01741l + - id: "m01741l" - name: "DPA" - - compartment: l - - formula: C22H33O2 + - compartment: "l" + - formula: "C22H33O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01741r + - id: "m01741r" - name: "DPA" - - compartment: r - - formula: C22H33O2 + - compartment: "r" + - formula: "C22H33O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01741s + - id: "m01741s" - name: "DPA" - - compartment: s - - formula: C22H33O2 + - compartment: "s" + - formula: "C22H33O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01742c + - id: "m01742c" - name: "D-proline" - - compartment: c - - formula: C5H9NO2 + - compartment: "c" + - formula: "C5H9NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01742l + - id: "m01742l" - name: "D-proline" - - compartment: l - - formula: C5H9NO2 + - compartment: "l" + - formula: "C5H9NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01742s + - id: "m01742s" - name: "D-proline" - - compartment: s - - formula: C5H9NO2 + - compartment: "s" + - formula: "C5H9NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01743c + - id: "m01743c" - name: "D-ribulose" - - compartment: c - - formula: C5H10O5 + - compartment: "c" + - formula: "C5H10O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01743s + - id: "m01743s" - name: "D-ribulose" - - compartment: s - - formula: C5H10O5 + - compartment: "s" + - formula: "C5H10O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01744c + - id: "m01744c" - name: "D-serine" - - compartment: c - - formula: C3H7NO3 + - compartment: "c" + - formula: "C3H7NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01744s + - id: "m01744s" - name: "D-serine" - - compartment: s - - formula: C3H7NO3 + - compartment: "s" + - formula: "C3H7NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01745c + - id: "m01745c" - name: "D-tagatose" - - compartment: c - - formula: C6H12O6 + - compartment: "c" + - formula: "C6H12O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01745s + - id: "m01745s" - name: "D-tagatose" - - compartment: s - - formula: C6H12O6 + - compartment: "s" + - formula: "C6H12O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01746c + - id: "m01746c" - name: "D-tagatose-6-phosphate" - - compartment: c - - formula: C6H11O9P + - compartment: "c" + - formula: "C6H11O9P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01747c + - id: "m01747c" - name: "dTDP" - - compartment: c - - formula: C10H13N2O11P2 + - compartment: "c" + - formula: "C10H13N2O11P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01747m + - id: "m01747m" - name: "dTDP" - - compartment: m - - formula: C10H13N2O11P2 + - compartment: "m" + - formula: "C10H13N2O11P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01747n + - id: "m01747n" - name: "dTDP" - - compartment: n - - formula: C10H13N2O11P2 + - compartment: "n" + - formula: "C10H13N2O11P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01748c + - id: "m01748c" - name: "dTDP-4-dehydro-6-deoxy-L-mannose" - - compartment: c - - formula: C16H22N2O15P2 + - compartment: "c" + - formula: "C16H22N2O15P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01749c + - id: "m01749c" - name: "dTDP-6-deoxy-L-mannose" - - compartment: c - - formula: C16H24N2O15P2 + - compartment: "c" + - formula: "C16H24N2O15P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01750c + - id: "m01750c" - name: "dTDP-galactose" - - compartment: c - - formula: C16H24N2O16P2 + - compartment: "c" + - formula: "C16H24N2O16P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01751c + - id: "m01751c" - name: "dTDP-glucose" - - compartment: c - - formula: C16H24N2O16P2 + - compartment: "c" + - formula: "C16H24N2O16P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01752c + - id: "m01752c" - name: "dTMP" - - compartment: c - - formula: C10H13N2O8P + - compartment: "c" + - formula: "C10H13N2O8P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01752l + - id: "m01752l" - name: "dTMP" - - compartment: l - - formula: C10H13N2O8P + - compartment: "l" + - formula: "C10H13N2O8P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01752m + - id: "m01752m" - name: "dTMP" - - compartment: m - - formula: C10H13N2O8P + - compartment: "m" + - formula: "C10H13N2O8P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01752n + - id: "m01752n" - name: "dTMP" - - compartment: n - - formula: C10H13N2O8P + - compartment: "n" + - formula: "C10H13N2O8P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01753c + - id: "m01753c" - name: "dTTP" - - compartment: c - - formula: C10H13N2O14P3 + - compartment: "c" + - formula: "C10H13N2O14P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01753m + - id: "m01753m" - name: "dTTP" - - compartment: m - - formula: C10H13N2O14P3 + - compartment: "m" + - formula: "C10H13N2O14P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01753n + - id: "m01753n" - name: "dTTP" - - compartment: n - - formula: C10H13N2O14P3 + - compartment: "n" + - formula: "C10H13N2O14P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01754c + - id: "m01754c" - name: "dUDP" - - compartment: c - - formula: C9H11N2O11P2 + - compartment: "c" + - formula: "C9H11N2O11P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01754m + - id: "m01754m" - name: "dUDP" - - compartment: m - - formula: C9H11N2O11P2 + - compartment: "m" + - formula: "C9H11N2O11P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01754n + - id: "m01754n" - name: "dUDP" - - compartment: n - - formula: C9H11N2O11P2 + - compartment: "n" + - formula: "C9H11N2O11P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01755c + - id: "m01755c" - name: "dUMP" - - compartment: c - - formula: C9H11N2O8P + - compartment: "c" + - formula: "C9H11N2O8P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01755m + - id: "m01755m" - name: "dUMP" - - compartment: m - - formula: C9H11N2O8P + - compartment: "m" + - formula: "C9H11N2O8P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01755n + - id: "m01755n" - name: "dUMP" - - compartment: n - - formula: C9H11N2O8P + - compartment: "n" + - formula: "C9H11N2O8P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01756c + - id: "m01756c" - name: "dUTP" - - compartment: c - - formula: C9H11N2O14P3 + - compartment: "c" + - formula: "C9H11N2O14P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01756m + - id: "m01756m" - name: "dUTP" - - compartment: m - - formula: C9H11N2O14P3 + - compartment: "m" + - formula: "C9H11N2O14P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01756n + - id: "m01756n" - name: "dUTP" - - compartment: n - - formula: C9H11N2O14P3 + - compartment: "n" + - formula: "C9H11N2O14P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01757c + - id: "m01757c" - name: "D-xylonolactone" - - compartment: c - - formula: C5H8O5 + - compartment: "c" + - formula: "C5H8O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01758c + - id: "m01758c" - name: "D-xylose" - - compartment: c - - formula: C5H10O5 + - compartment: "c" + - formula: "C5H10O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01758l + - id: "m01758l" - name: "D-xylose" - - compartment: l - - formula: C5H10O5 + - compartment: "l" + - formula: "C5H10O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01758s + - id: "m01758s" - name: "D-xylose" - - compartment: s - - formula: C5H10O5 + - compartment: "s" + - formula: "C5H10O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01759c + - id: "m01759c" - name: "D-xylulose" - - compartment: c - - formula: C5H10O5 + - compartment: "c" + - formula: "C5H10O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01760c + - id: "m01760c" - name: "D-xylulose-1-phosphate" - - compartment: c - - formula: C5H9O8P + - compartment: "c" + - formula: "C5H9O8P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01761c + - id: "m01761c" - name: "D-xylulose-5-phosphate" - - compartment: c - - formula: C5H9O8P + - compartment: "c" + - formula: "C5H9O8P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01762c + - id: "m01762c" - name: "dynorphin A-(1-5)" - - compartment: c - - formula: C28H37N5O7 + - compartment: "c" + - formula: "C28H37N5O7" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01763c + - id: "m01763c" - name: "dynorphin A-(1-8)" - - compartment: c - - formula: C46H74N14O10 + - compartment: "c" + - formula: "C46H74N14O10" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01764c + - id: "m01764c" - name: "dynorphin A-(6-8)" - - compartment: c - - formula: C18H39N9O4 + - compartment: "c" + - formula: "C18H39N9O4" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01765c + - id: "m01765c" - name: "ebastine" - - compartment: c - - formula: C32H39NO2 + - compartment: "c" + - formula: "C32H39NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01765r + - id: "m01765r" - name: "ebastine" - - compartment: r - - formula: C32H39NO2 + - compartment: "r" + - formula: "C32H39NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01765s + - id: "m01765s" - name: "ebastine" - - compartment: s - - formula: C32H39NO2 + - compartment: "s" + - formula: "C32H39NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01766r + - id: "m01766r" - name: "ecgonine" - - compartment: r - - formula: C9H14NO3 + - compartment: "r" + - formula: "C9H14NO3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01767c + - id: "m01767c" - name: "ecgonine-methyl ester" - - compartment: c - - formula: C10H17NO3 + - compartment: "c" + - formula: "C10H17NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01767r + - id: "m01767r" - name: "ecgonine-methyl ester" - - compartment: r - - formula: C10H17NO3 + - compartment: "r" + - formula: "C10H17NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01768c + - id: "m01768c" - name: "edaravone" - - compartment: c - - formula: C10H10N2O + - compartment: "c" + - formula: "C10H10N2O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01768s + - id: "m01768s" - name: "edaravone" - - compartment: s - - formula: C10H10N2O + - compartment: "s" + - formula: "C10H10N2O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01769c + - id: "m01769c" - name: "eicosa-(2E,8Z,11Z,14Z,17Z)-pentaenoyl-CoA" - - compartment: c - - formula: C41H60N7O17P3S + - compartment: "c" + - formula: "C41H60N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01770c + - id: "m01770c" - name: "eicosadienoylcarnitine" - - compartment: c - - formula: C27H49NO4 + - compartment: "c" + - formula: "C27H49NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01770m + - id: "m01770m" - name: "eicosadienoylcarnitine" - - compartment: m - - formula: C27H49NO4 + - compartment: "m" + - formula: "C27H49NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01770r + - id: "m01770r" - name: "eicosadienoylcarnitine" - - compartment: r - - formula: C27H49NO4 + - compartment: "r" + - formula: "C27H49NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01771c + - id: "m01771c" - name: "eicosanoate" - - compartment: c - - formula: C20H39O2 + - compartment: "c" + - formula: "C20H39O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01771l + - id: "m01771l" - name: "eicosanoate" - - compartment: l - - formula: C20H39O2 + - compartment: "l" + - formula: "C20H39O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01771r + - id: "m01771r" - name: "eicosanoate" - - compartment: r - - formula: C20H39O2 + - compartment: "r" + - formula: "C20H39O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01771s + - id: "m01771s" - name: "eicosanoate" - - compartment: s - - formula: C20H39O2 + - compartment: "s" + - formula: "C20H39O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01772c + - id: "m01772c" - name: "eicosanoylcarnitine" - - compartment: c - - formula: C27H53NO4 + - compartment: "c" + - formula: "C27H53NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01772m + - id: "m01772m" - name: "eicosanoylcarnitine" - - compartment: m - - formula: C27H53NO4 + - compartment: "m" + - formula: "C27H53NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01772r + - id: "m01772r" - name: "eicosanoylcarnitine" - - compartment: r - - formula: C27H53NO4 + - compartment: "r" + - formula: "C27H53NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01773c + - id: "m01773c" - name: "eicosanoyl-CoA" - - compartment: c - - formula: C41H70N7O17P3S + - compartment: "c" + - formula: "C41H70N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01773m + - id: "m01773m" - name: "eicosanoyl-CoA" - - compartment: m - - formula: C41H70N7O17P3S + - compartment: "m" + - formula: "C41H70N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01773p + - id: "m01773p" - name: "eicosanoyl-CoA" - - compartment: p - - formula: C41H70N7O17P3S + - compartment: "p" + - formula: "C41H70N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01773r + - id: "m01773r" - name: "eicosanoyl-CoA" - - compartment: r - - formula: C41H70N7O17P3S + - compartment: "r" + - formula: "C41H70N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01774c + - id: "m01774c" - name: "eicosatrienoylcarnitine" - - compartment: c - - formula: C27H47NO4 + - compartment: "c" + - formula: "C27H47NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01774m + - id: "m01774m" - name: "eicosatrienoylcarnitine" - - compartment: m - - formula: C27H47NO4 + - compartment: "m" + - formula: "C27H47NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01774r + - id: "m01774r" - name: "eicosatrienoylcarnitine" - - compartment: r - - formula: C27H47NO4 + - compartment: "r" + - formula: "C27H47NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01775c + - id: "m01775c" - name: "eicosenoylcarnitine(11)" - - compartment: c - - formula: C27H51NO4 + - compartment: "c" + - formula: "C27H51NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01775m + - id: "m01775m" - name: "eicosenoylcarnitine(11)" - - compartment: m - - formula: C27H51NO4 + - compartment: "m" + - formula: "C27H51NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01775r + - id: "m01775r" - name: "eicosenoylcarnitine(11)" - - compartment: r - - formula: C27H51NO4 + - compartment: "r" + - formula: "C27H51NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01776c + - id: "m01776c" - name: "eicosenoylcarnitine(7)" - - compartment: c - - formula: C27H51NO4 + - compartment: "c" + - formula: "C27H51NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01776m + - id: "m01776m" - name: "eicosenoylcarnitine(7)" - - compartment: m - - formula: C27H51NO4 + - compartment: "m" + - formula: "C27H51NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01776r + - id: "m01776r" - name: "eicosenoylcarnitine(7)" - - compartment: r - - formula: C27H51NO4 + - compartment: "r" + - formula: "C27H51NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01777c + - id: "m01777c" - name: "eicosenoylcarnitine(9)" - - compartment: c - - formula: C27H51NO4 + - compartment: "c" + - formula: "C27H51NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01777m + - id: "m01777m" - name: "eicosenoylcarnitine(9)" - - compartment: m - - formula: C27H51NO4 + - compartment: "m" + - formula: "C27H51NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01777r + - id: "m01777r" - name: "eicosenoylcarnitine(9)" - - compartment: r - - formula: C27H51NO4 + - compartment: "r" + - formula: "C27H51NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01778c + - id: "m01778c" - name: "elaidate" - - compartment: c - - formula: C18H33O2 + - compartment: "c" + - formula: "C18H33O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01778l + - id: "m01778l" - name: "elaidate" - - compartment: l - - formula: C18H33O2 + - compartment: "l" + - formula: "C18H33O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01778r + - id: "m01778r" - name: "elaidate" - - compartment: r - - formula: C18H33O2 + - compartment: "r" + - formula: "C18H33O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01778s + - id: "m01778s" - name: "elaidate" - - compartment: s - - formula: C18H33O2 + - compartment: "s" + - formula: "C18H33O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01779r + - id: "m01779r" - name: "em2emgacpail heparan sulfate" - - compartment: r - - formula: C55H100N3O39P3R2 + - compartment: "r" + - formula: "C55H100N3O39P3R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01780r + - id: "m01780r" - name: "em2emgacpail_prot heparan sulfate" - - compartment: r - - formula: C55H100N3O39P3R2X + - compartment: "r" + - formula: "C55H100N3O39P3R2X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01781r + - id: "m01781r" - name: "em3gacpail heparan sulfate" - - compartment: r - - formula: C53H94N2O36P2R2 + - compartment: "r" + - formula: "C53H94N2O36P2R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01782r + - id: "m01782r" - name: "emem2gacpail heparan sulfate" - - compartment: r - - formula: C55H100N3O39P3R2 + - compartment: "r" + - formula: "C55H100N3O39P3R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01783r + - id: "m01783r" - name: "emgacpail heparan sulfate" - - compartment: r - - formula: C41H74N2O26P2R2 + - compartment: "r" + - formula: "C41H74N2O26P2R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01784c + - id: "m01784c" - name: "EPA" - - compartment: c - - formula: C20H29O2 + - compartment: "c" + - formula: "C20H29O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01784l + - id: "m01784l" - name: "EPA" - - compartment: l - - formula: C20H29O2 + - compartment: "l" + - formula: "C20H29O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01784n + - id: "m01784n" - name: "EPA" - - compartment: n - - formula: C20H29O2 + - compartment: "n" + - formula: "C20H29O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01784p + - id: "m01784p" - name: "EPA" - - compartment: p - - formula: C20H29O2 + - compartment: "p" + - formula: "C20H29O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01784r + - id: "m01784r" - name: "EPA" - - compartment: r - - formula: C20H29O2 + - compartment: "r" + - formula: "C20H29O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01784s + - id: "m01784s" - name: "EPA" - - compartment: s - - formula: C20H29O2 + - compartment: "s" + - formula: "C20H29O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01785c + - id: "m01785c" - name: "erythrose-4-phosphate" - - compartment: c - - formula: C4H7O7P + - compartment: "c" + - formula: "C4H7O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01786c + - id: "m01786c" - name: "estradiol-17beta 3-glucuronide" - - compartment: c - - formula: C24H32O8 + - compartment: "c" + - formula: "C24H32O8" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01786r + - id: "m01786r" - name: "estradiol-17beta 3-glucuronide" - - compartment: r - - formula: C24H32O8 + - compartment: "r" + - formula: "C24H32O8" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01786s + - id: "m01786s" - name: "estradiol-17beta 3-glucuronide" - - compartment: s - - formula: C24H32O8 + - compartment: "s" + - formula: "C24H32O8" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01787c + - id: "m01787c" - name: "estradiol-17beta" - - compartment: c - - formula: C18H24O2 + - compartment: "c" + - formula: "C18H24O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01787r + - id: "m01787r" - name: "estradiol-17beta" - - compartment: r - - formula: C18H24O2 + - compartment: "r" + - formula: "C18H24O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01787s + - id: "m01787s" - name: "estradiol-17beta" - - compartment: s - - formula: C18H24O2 + - compartment: "s" + - formula: "C18H24O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01788c + - id: "m01788c" - name: "estriol" - - compartment: c - - formula: C18H24O3 + - compartment: "c" + - formula: "C18H24O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01788r + - id: "m01788r" - name: "estriol" - - compartment: r - - formula: C18H24O3 + - compartment: "r" + - formula: "C18H24O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01788s + - id: "m01788s" - name: "estriol" - - compartment: s - - formula: C18H24O3 + - compartment: "s" + - formula: "C18H24O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01789c + - id: "m01789c" - name: "estrone 3-sulfate" - - compartment: c - - formula: C18H21O5S + - compartment: "c" + - formula: "C18H21O5S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01789r + - id: "m01789r" - name: "estrone 3-sulfate" - - compartment: r - - formula: C18H21O5S + - compartment: "r" + - formula: "C18H21O5S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01789s + - id: "m01789s" - name: "estrone 3-sulfate" - - compartment: s - - formula: C18H21O5S + - compartment: "s" + - formula: "C18H21O5S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01790c + - id: "m01790c" - name: "estrone" - - compartment: c - - formula: C18H22O2 + - compartment: "c" + - formula: "C18H22O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01790l + - id: "m01790l" - name: "estrone" - - compartment: l - - formula: C18H22O2 + - compartment: "l" + - formula: "C18H22O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01790r + - id: "m01790r" - name: "estrone" - - compartment: r - - formula: C18H22O2 + - compartment: "r" + - formula: "C18H22O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01791c + - id: "m01791c" - name: "estrone-2,3-quinone" - - compartment: c - - formula: C18H20O3 + - compartment: "c" + - formula: "C18H20O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01791m + - id: "m01791m" - name: "estrone-2,3-quinone" - - compartment: m - - formula: C18H20O3 + - compartment: "m" + - formula: "C18H20O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01791p + - id: "m01791p" - name: "estrone-2,3-quinone" - - compartment: p - - formula: C18H20O3 + - compartment: "p" + - formula: "C18H20O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01791r + - id: "m01791r" - name: "estrone-2,3-quinone" - - compartment: r - - formula: C18H20O3 + - compartment: "r" + - formula: "C18H20O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01792c + - id: "m01792c" - name: "estrone-2,3-semiquinone" - - compartment: c - - formula: C18H21O3 + - compartment: "c" + - formula: "C18H21O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01792l + - id: "m01792l" - name: "estrone-2,3-semiquinone" - - compartment: l - - formula: C18H21O3 + - compartment: "l" + - formula: "C18H21O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01792r + - id: "m01792r" - name: "estrone-2,3-semiquinone" - - compartment: r - - formula: C18H21O3 + - compartment: "r" + - formula: "C18H21O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01793c + - id: "m01793c" - name: "estrone-3,4-quinone" - - compartment: c - - formula: C18H20O3 + - compartment: "c" + - formula: "C18H20O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01793m + - id: "m01793m" - name: "estrone-3,4-quinone" - - compartment: m - - formula: C18H20O3 + - compartment: "m" + - formula: "C18H20O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01793p + - id: "m01793p" - name: "estrone-3,4-quinone" - - compartment: p - - formula: C18H20O3 + - compartment: "p" + - formula: "C18H20O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01793r + - id: "m01793r" - name: "estrone-3,4-quinone" - - compartment: r - - formula: C18H20O3 + - compartment: "r" + - formula: "C18H20O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01794c + - id: "m01794c" - name: "estrone-3,4-semiquinone" - - compartment: c - - formula: C18H21O3 + - compartment: "c" + - formula: "C18H21O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01794l + - id: "m01794l" - name: "estrone-3,4-semiquinone" - - compartment: l - - formula: C18H21O3 + - compartment: "l" + - formula: "C18H21O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01794r + - id: "m01794r" - name: "estrone-3,4-semiquinone" - - compartment: r - - formula: C18H21O3 + - compartment: "r" + - formula: "C18H21O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01795c + - id: "m01795c" - name: "estrone-glucuronide" - - compartment: c - - formula: C24H30O8 + - compartment: "c" + - formula: "C24H30O8" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01795r + - id: "m01795r" - name: "estrone-glucuronide" - - compartment: r - - formula: C24H30O8 + - compartment: "r" + - formula: "C24H30O8" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01795s + - id: "m01795s" - name: "estrone-glucuronide" - - compartment: s - - formula: C24H30O8 + - compartment: "s" + - formula: "C24H30O8" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01796c + - id: "m01796c" - name: "ethanol" - - compartment: c - - formula: C2H6O + - compartment: "c" + - formula: "C2H6O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01796p + - id: "m01796p" - name: "ethanol" - - compartment: p - - formula: C2H6O + - compartment: "p" + - formula: "C2H6O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01796s + - id: "m01796s" - name: "ethanol" - - compartment: s - - formula: C2H6O + - compartment: "s" + - formula: "C2H6O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01797c + - id: "m01797c" - name: "ethanolamine" - - compartment: c - - formula: C2H8NO + - compartment: "c" + - formula: "C2H8NO" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01797s + - id: "m01797s" - name: "ethanolamine" - - compartment: s - - formula: C2H8NO + - compartment: "s" + - formula: "C2H8NO" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01798c + - id: "m01798c" - name: "ethanolamine-phosphate" - - compartment: c - - formula: C2H7NO4P + - compartment: "c" + - formula: "C2H7NO4P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01798r + - id: "m01798r" - name: "ethanolamine-phosphate" - - compartment: r - - formula: C2H7NO4P + - compartment: "r" + - formula: "C2H7NO4P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01799c + - id: "m01799c" - name: "etiocholan-3alpha-ol-17-one 3-glucuronide" - - compartment: c - - formula: C25H38O8 + - compartment: "c" + - formula: "C25H38O8" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01799r + - id: "m01799r" - name: "etiocholan-3alpha-ol-17-one 3-glucuronide" - - compartment: r - - formula: C25H38O8 + - compartment: "r" + - formula: "C25H38O8" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01799s + - id: "m01799s" - name: "etiocholan-3alpha-ol-17-one 3-glucuronide" - - compartment: s - - formula: C25H38O8 + - compartment: "s" + - formula: "C25H38O8" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01800c + - id: "m01800c" - name: "etiocholanolone" - - compartment: c - - formula: C19H30O2 + - compartment: "c" + - formula: "C19H30O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01800r + - id: "m01800r" - name: "etiocholanolone" - - compartment: r - - formula: C19H30O2 + - compartment: "r" + - formula: "C19H30O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01800s + - id: "m01800s" - name: "etiocholanolone" - - compartment: s - - formula: C19H30O2 + - compartment: "s" + - formula: "C19H30O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01801g + - id: "m01801g" - name: "F1alpha" - - compartment: g - - formula: C22H37N2O15X + - compartment: "g" + - formula: "C22H37N2O15X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01801l + - id: "m01801l" - name: "F1alpha" - - compartment: l - - formula: C22H37N2O15X + - compartment: "l" + - formula: "C22H37N2O15X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01802c + - id: "m01802c" - name: "FAD" - - compartment: c - - formula: C27H31N9O15P2 + - compartment: "c" + - formula: "C27H31N9O15P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01802m + - id: "m01802m" - name: "FAD" - - compartment: m - - formula: C27H31N9O15P2 + - compartment: "m" + - formula: "C27H31N9O15P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01802p + - id: "m01802p" - name: "FAD" - - compartment: p - - formula: C27H31N9O15P2 + - compartment: "p" + - formula: "C27H31N9O15P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01802r + - id: "m01802r" - name: "FAD" - - compartment: r - - formula: C27H31N9O15P2 + - compartment: "r" + - formula: "C27H31N9O15P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01802s + - id: "m01802s" - name: "FAD" - - compartment: s - - formula: C27H31N9O15P2 + - compartment: "s" + - formula: "C27H31N9O15P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01803c + - id: "m01803c" - name: "FADH2" - - compartment: c - - formula: C27H33N9O15P2 + - compartment: "c" + - formula: "C27H33N9O15P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01803m + - id: "m01803m" - name: "FADH2" - - compartment: m - - formula: C27H33N9O15P2 + - compartment: "m" + - formula: "C27H33N9O15P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01803p + - id: "m01803p" - name: "FADH2" - - compartment: p - - formula: C27H33N9O15P2 + - compartment: "p" + - formula: "C27H33N9O15P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01803r + - id: "m01803r" - name: "FADH2" - - compartment: r - - formula: C27H33N9O15P2 + - compartment: "r" + - formula: "C27H33N9O15P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01804c + - id: "m01804c" - name: "FAICAR" - - compartment: c - - formula: C10H13N4O9P + - compartment: "c" + - formula: "C10H13N4O9P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01805c + - id: "m01805c" - name: "farnesylcysteine" - - compartment: c - - formula: C18H31NO2S + - compartment: "c" + - formula: "C18H31NO2S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01806c + - id: "m01806c" - name: "farnesyl-PP" - - compartment: c - - formula: C15H25O7P2 + - compartment: "c" + - formula: "C15H25O7P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01807s + - id: "m01807s" - name: "fatty acid-chylomicron pool" - - compartment: s - - formula: CHO2R + - compartment: "s" + - formula: "CHO2R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01808c + - id: "m01808c" - name: "fatty acid-LD-PC pool (liver tissue)" - - compartment: c - - formula: CO2R + - compartment: "c" + - formula: "CO2R" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01808r + - id: "m01808r" - name: "fatty acid-LD-PC pool (liver tissue)" - - compartment: r - - formula: CO2R + - compartment: "r" + - formula: "CO2R" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01809c + - id: "m01809c" - name: "fatty acid-LD-PE pool (liver tissue)" - - compartment: c - - formula: CO2R + - compartment: "c" + - formula: "CO2R" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01810c + - id: "m01810c" - name: "fatty acid-LD-PI pool (liver tissue)" - - compartment: c - - formula: CO2R + - compartment: "c" + - formula: "CO2R" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01811c + - id: "m01811c" - name: "fatty acid-LD-PS pool (liver tissue)" - - compartment: c - - formula: CO2R + - compartment: "c" + - formula: "CO2R" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01812c + - id: "m01812c" - name: "fatty acid-LD-SM pool (liver tissue)" - - compartment: c - - formula: CO2R + - compartment: "c" + - formula: "CO2R" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01813c + - id: "m01813c" - name: "fatty acid-LD-TG1 pool (liver tissue)" - - compartment: c - - formula: CO2R + - compartment: "c" + - formula: "CO2R" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01814c + - id: "m01814c" - name: "fatty acid-LD-TG2 pool (liver tissue)" - - compartment: c - - formula: CO2R + - compartment: "c" + - formula: "CO2R" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01815c + - id: "m01815c" - name: "fatty acid-LD-TG3 pool (liver tissue)" - - compartment: c - - formula: CO2R + - compartment: "c" + - formula: "CO2R" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01816n + - id: "m01816n" - name: "fatty acid-ligands" - - compartment: n - - formula: R + - compartment: "n" + - formula: "R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01819s + - id: "m01819s" - name: "fatty acid-uptake pool" - - compartment: s - - formula: CHO2R + - compartment: "s" + - formula: "CHO2R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01820s + - id: "m01820s" - name: "fatty acid-VLDL pool" - - compartment: s - - formula: CHO2R + - compartment: "s" + - formula: "CHO2R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01821c + - id: "m01821c" - name: "Fe2+" - - compartment: c - - formula: Fe + - compartment: "c" + - formula: "Fe" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01821m + - id: "m01821m" - name: "Fe2+" - - compartment: m - - formula: Fe + - compartment: "m" + - formula: "Fe" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01821s + - id: "m01821s" - name: "Fe2+" - - compartment: s - - formula: Fe + - compartment: "s" + - formula: "Fe" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01822c + - id: "m01822c" - name: "Fe3+" - - compartment: c - - formula: Fe + - compartment: "c" + - formula: "Fe" - charge: 3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01822s + - id: "m01822s" - name: "Fe3+" - - compartment: s - - formula: Fe + - compartment: "s" + - formula: "Fe" - charge: 3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01823c + - id: "m01823c" - name: "ferricytochrome B5" - - compartment: c - - formula: X + - compartment: "c" + - formula: "X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01824c + - id: "m01824c" - name: "ferricytochrome C" - - compartment: c - - formula: C42H54FeN8O6S2 + - compartment: "c" + - formula: "C42H54FeN8O6S2" - charge: 3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01824m + - id: "m01824m" - name: "ferricytochrome C" - - compartment: m - - formula: C42H54FeN8O6S2 + - compartment: "m" + - formula: "C42H54FeN8O6S2" - charge: 3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01825c + - id: "m01825c" - name: "ferrocytochrome B5" - - compartment: c - - formula: X + - compartment: "c" + - formula: "X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01826c + - id: "m01826c" - name: "ferrocytochrome C" - - compartment: c - - formula: C42H54FeN8O6S2 + - compartment: "c" + - formula: "C42H54FeN8O6S2" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01826m + - id: "m01826m" - name: "ferrocytochrome C" - - compartment: m - - formula: C42H54FeN8O6S2 + - compartment: "m" + - formula: "C42H54FeN8O6S2" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01827c + - id: "m01827c" - name: "fibrinogen" - - compartment: c - - formula: C12932H19804N3662O4205S96 + - compartment: "c" + - formula: "C12932H19804N3662O4205S96" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01827l + - id: "m01827l" - name: "fibrinogen" - - compartment: l - - formula: C12932H19804N3662O4205S96 + - compartment: "l" + - formula: "C12932H19804N3662O4205S96" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01827s + - id: "m01827s" - name: "fibrinogen" - - compartment: s - - formula: C12932H19804N3662O4205S96 + - compartment: "s" + - formula: "C12932H19804N3662O4205S96" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01828c + - id: "m01828c" - name: "FMN" - - compartment: c - - formula: C17H19N4O9P + - compartment: "c" + - formula: "C17H19N4O9P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01829g + - id: "m01829g" - name: "fn2m2masn" - - compartment: g - - formula: C56H93N4O39X + - compartment: "g" + - formula: "C56H93N4O39X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01830c + - id: "m01830c" - name: "folate" - - compartment: c - - formula: C19H18N7O6 + - compartment: "c" + - formula: "C19H18N7O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01830m + - id: "m01830m" - name: "folate" - - compartment: m - - formula: C19H18N7O6 + - compartment: "m" + - formula: "C19H18N7O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01830s + - id: "m01830s" - name: "folate" - - compartment: s - - formula: C19H18N7O6 + - compartment: "s" + - formula: "C19H18N7O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01831c + - id: "m01831c" - name: "formaldehyde" - - compartment: c - - formula: CH2O + - compartment: "c" + - formula: "CH2O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01831l + - id: "m01831l" - name: "formaldehyde" - - compartment: l - - formula: CH2O + - compartment: "l" + - formula: "CH2O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01831m + - id: "m01831m" - name: "formaldehyde" - - compartment: m - - formula: CH2O + - compartment: "m" + - formula: "CH2O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01831p + - id: "m01831p" - name: "formaldehyde" - - compartment: p - - formula: CH2O + - compartment: "p" + - formula: "CH2O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01832c + - id: "m01832c" - name: "formamidopyrimidine nucleoside triphosphate" - - compartment: c - - formula: C10H14N5O15P3 + - compartment: "c" + - formula: "C10H14N5O15P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01832n + - id: "m01832n" - name: "formamidopyrimidine nucleoside triphosphate" - - compartment: n - - formula: C10H14N5O15P3 + - compartment: "n" + - formula: "C10H14N5O15P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01833c + - id: "m01833c" - name: "formate" - - compartment: c - - formula: CH1O2 + - compartment: "c" + - formula: "CH1O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01833m + - id: "m01833m" - name: "formate" - - compartment: m - - formula: CH1O2 + - compartment: "m" + - formula: "CH1O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01833n + - id: "m01833n" - name: "formate" - - compartment: n - - formula: CH1O2 + - compartment: "n" + - formula: "CH1O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01833p + - id: "m01833p" - name: "formate" - - compartment: p - - formula: CH1O2 + - compartment: "p" + - formula: "CH1O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01833r + - id: "m01833r" - name: "formate" - - compartment: r - - formula: CH1O2 + - compartment: "r" + - formula: "CH1O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01833s + - id: "m01833s" - name: "formate" - - compartment: s - - formula: CH1O2 + - compartment: "s" + - formula: "CH1O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01834c + - id: "m01834c" - name: "formyl-5-hydroxykynurenamine" - - compartment: c - - formula: C10H13N2O3 + - compartment: "c" + - formula: "C10H13N2O3" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01835c + - id: "m01835c" - name: "formylanthranilate" - - compartment: c - - formula: C8H6NO3 + - compartment: "c" + - formula: "C8H6NO3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01836c + - id: "m01836c" - name: "formyl-CoA" - - compartment: c - - formula: C22H32N7O17P3S + - compartment: "c" + - formula: "C22H32N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01836p + - id: "m01836p" - name: "formyl-CoA" - - compartment: p - - formula: C22H32N7O17P3S + - compartment: "p" + - formula: "C22H32N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01837c + - id: "m01837c" - name: "formylglutathione" - - compartment: c - - formula: C11H16N3O7S + - compartment: "c" + - formula: "C11H16N3O7S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01838c + - id: "m01838c" - name: "formyl-L-methionyl-peptide" - - compartment: c - - formula: C12H17N4O6SR3 + - compartment: "c" + - formula: "C12H17N4O6SR3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01839c + - id: "m01839c" - name: "formyl-N-acetyl-5-methoxykynurenamine" - - compartment: c - - formula: C13H16N2O4 + - compartment: "c" + - formula: "C13H16N2O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01840c + - id: "m01840c" - name: "fructose" - - compartment: c - - formula: C6H12O6 + - compartment: "c" + - formula: "C6H12O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01840s + - id: "m01840s" - name: "fructose" - - compartment: s - - formula: C6H12O6 + - compartment: "s" + - formula: "C6H12O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01841c + - id: "m01841c" - name: "fructose-1,6-bisphosphate" - - compartment: c - - formula: C6H10O12P2 + - compartment: "c" + - formula: "C6H10O12P2" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01842c + - id: "m01842c" - name: "fructose-1-phosphate" - - compartment: c - - formula: C6H11O9P + - compartment: "c" + - formula: "C6H11O9P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01843c + - id: "m01843c" - name: "fructose-2,6-bisphosphate" - - compartment: c - - formula: C6H10O12P2 + - compartment: "c" + - formula: "C6H10O12P2" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01844c + - id: "m01844c" - name: "fructose-3-phosphate" - - compartment: c - - formula: C6H11O9P + - compartment: "c" + - formula: "C6H11O9P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01845c + - id: "m01845c" - name: "fructose-6-phosphate" - - compartment: c - - formula: C6H11O9P + - compartment: "c" + - formula: "C6H11O9P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01846c + - id: "m01846c" - name: "fructoseglycine" - - compartment: c - - formula: C8H15NO7 + - compartment: "c" + - formula: "C8H15NO7" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01847c + - id: "m01847c" - name: "fructoseglycine-ketone-3-phosphate" - - compartment: c - - formula: C8H14NO10P + - compartment: "c" + - formula: "C8H14NO10P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01848c + - id: "m01848c" - name: "fructoselysine-3-phosphate" - - compartment: c - - formula: C12H24N2O10P + - compartment: "c" + - formula: "C12H24N2O10P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01849c + - id: "m01849c" - name: "fuc-3-isoLM1" - - compartment: c - - formula: C62H106N3O35R + - compartment: "c" + - formula: "C62H106N3O35R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01850c + - id: "m01850c" - name: "fucacgalfucgalacglcgalgluside heparan sulfate" - - compartment: c - - formula: C64H112N3O35RCO + - compartment: "c" + - formula: "C64H112N3O35RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01850g + - id: "m01850g" - name: "fucacgalfucgalacglcgalgluside heparan sulfate" - - compartment: g - - formula: C64H112N3O35RCO + - compartment: "g" + - formula: "C64H112N3O35RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01850s + - id: "m01850s" - name: "fucacgalfucgalacglcgalgluside heparan sulfate" - - compartment: s - - formula: C64H112N3O35RCO + - compartment: "s" + - formula: "C64H112N3O35RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01851c + - id: "m01851c" - name: "fucfuc132galacglcgal14acglcgalgluside heparan sulfate" - - compartment: c - - formula: C70H122N3O40RCO + - compartment: "c" + - formula: "C70H122N3O40RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01851g + - id: "m01851g" - name: "fucfuc132galacglcgal14acglcgalgluside heparan sulfate" - - compartment: g - - formula: C70H122N3O40RCO + - compartment: "g" + - formula: "C70H122N3O40RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01851s + - id: "m01851s" - name: "fucfuc132galacglcgal14acglcgalgluside heparan sulfate" - - compartment: s - - formula: C70H122N3O40RCO + - compartment: "s" + - formula: "C70H122N3O40RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01852c + - id: "m01852c" - name: "fucfucfucgalacglc13galacglcgal14acglcgalgluside heparan sulfate" - - compartment: c - - formula: C90H155N4O54RCO + - compartment: "c" + - formula: "C90H155N4O54RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01852g + - id: "m01852g" - name: "fucfucfucgalacglc13galacglcgal14acglcgalgluside heparan sulfate" - - compartment: g - - formula: C90H155N4O54RCO + - compartment: "g" + - formula: "C90H155N4O54RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01852s + - id: "m01852s" - name: "fucfucfucgalacglc13galacglcgal14acglcgalgluside heparan sulfate" - - compartment: s - - formula: C90H155N4O54RCO + - compartment: "s" + - formula: "C90H155N4O54RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01853c + - id: "m01853c" - name: "fucfucfucgalacglcgal14acglcgalgluside heparan sulfate" - - compartment: c - - formula: C76H132N3O44RCO + - compartment: "c" + - formula: "C76H132N3O44RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01853g + - id: "m01853g" - name: "fucfucfucgalacglcgal14acglcgalgluside heparan sulfate" - - compartment: g - - formula: C76H132N3O44RCO + - compartment: "g" + - formula: "C76H132N3O44RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01853s + - id: "m01853s" - name: "fucfucfucgalacglcgal14acglcgalgluside heparan sulfate" - - compartment: s - - formula: C76H132N3O44RCO + - compartment: "s" + - formula: "C76H132N3O44RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01854g + - id: "m01854g" - name: "fucfucgalacglc13galacglcgal14acglcgalgluside heparan sulfate" - - compartment: g - - formula: C84H145N4O50RCO + - compartment: "g" + - formula: "C84H145N4O50RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01855g + - id: "m01855g" - name: "fucfucgalacglcgal14acglcgalgluside heparan sulfate" - - compartment: g - - formula: C70H122N3O40RCO + - compartment: "g" + - formula: "C70H122N3O40RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01856g + - id: "m01856g" - name: "fucfucgalacglcgalacglcgal14acglcgalgluside heparan sulfate" - - compartment: g - - formula: C84H145N4O50RCO + - compartment: "g" + - formula: "C84H145N4O50RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01857g + - id: "m01857g" - name: "fucgalacgalfucgalacglcgal14acglcgalgluside heparan sulfate" - - compartment: g - - formula: C84H145N4O50RCO + - compartment: "g" + - formula: "C84H145N4O50RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01858g + - id: "m01858g" - name: "fucgalacglc13galacglcgal14acglcgalgluside heparan sulfate" - - compartment: g - - formula: C78H135N4O46RCO + - compartment: "g" + - formula: "C78H135N4O46RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01859c + - id: "m01859c" - name: "fucgalfucgalacglcgalgluside heparan sulfate" - - compartment: c - - formula: C62H109N2O35RCO + - compartment: "c" + - formula: "C62H109N2O35RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01859g + - id: "m01859g" - name: "fucgalfucgalacglcgalgluside heparan sulfate" - - compartment: g - - formula: C62H109N2O35RCO + - compartment: "g" + - formula: "C62H109N2O35RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01859s + - id: "m01859s" - name: "fucgalfucgalacglcgalgluside heparan sulfate" - - compartment: s - - formula: C62H109N2O35RCO + - compartment: "s" + - formula: "C62H109N2O35RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01860c + - id: "m01860c" - name: "fuc-Lc4Cer" - - compartment: c - - formula: C50H89N2O26RCO + - compartment: "c" + - formula: "C50H89N2O26RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01861c + - id: "m01861c" - name: "fucosyl-galactosylgloboside" - - compartment: c - - formula: C56H99N2O31RCO + - compartment: "c" + - formula: "C56H99N2O31RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01861g + - id: "m01861g" - name: "fucosyl-galactosylgloboside" - - compartment: g - - formula: C56H99N2O31RCO + - compartment: "g" + - formula: "C56H99N2O31RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01861s + - id: "m01861s" - name: "fucosyl-galactosylgloboside" - - compartment: s - - formula: C56H99N2O31RCO + - compartment: "s" + - formula: "C56H99N2O31RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01862c + - id: "m01862c" - name: "fumarate" - - compartment: c - - formula: C4H2O4 + - compartment: "c" + - formula: "C4H2O4" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01862m + - id: "m01862m" - name: "fumarate" - - compartment: m - - formula: C4H2O4 + - compartment: "m" + - formula: "C4H2O4" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01863c + - id: "m01863c" - name: "fumarylacetoacetate" - - compartment: c - - formula: C8H6O6 + - compartment: "c" + - formula: "C8H6O6" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01864c + - id: "m01864c" - name: "G(5)pppR-RNA" - - compartment: c - - formula: C25H34N5O29P5R3 + - compartment: "c" + - formula: "C25H34N5O29P5R3" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01865c + - id: "m01865c" - name: "G00005" - - compartment: c - - formula: C134H220N2O32P2 + - compartment: "c" + - formula: "C134H220N2O32P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01866c + - id: "m01866c" - name: "G00006" - - compartment: c - - formula: C146H240N2O42P2 + - compartment: "c" + - formula: "C146H240N2O42P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01866r + - id: "m01866r" - name: "G00006" - - compartment: r - - formula: C146H240N2O42P2 + - compartment: "r" + - formula: "C146H240N2O42P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01867r + - id: "m01867r" - name: "G00007" - - compartment: r - - formula: C170H280N2O62P2 + - compartment: "r" + - formula: "C170H280N2O62P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01868g + - id: "m01868g" - name: "G00020" - - compartment: g - - formula: C58H96N5O40X + - compartment: "g" + - formula: "C58H96N5O40X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01869g + - id: "m01869g" - name: "G00021" - - compartment: g - - formula: C66H109N6O45X + - compartment: "g" + - formula: "C66H109N6O45X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01870g + - id: "m01870g" - name: "G00022" - - compartment: g - - formula: C74H122N7O50X + - compartment: "g" + - formula: "C74H122N7O50X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01870s + - id: "m01870s" - name: "G00022" - - compartment: s - - formula: C74H122N7O50X + - compartment: "s" + - formula: "C74H122N7O50X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01871g + - id: "m01871g" - name: "G00031" - - compartment: g - - formula: C16H27N2O10X + - compartment: "g" + - formula: "C16H27N2O10X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01872g + - id: "m01872g" - name: "G00032" - - compartment: g - - formula: C22H37N2O15X + - compartment: "g" + - formula: "C22H37N2O15X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01872s + - id: "m01872s" - name: "G00032" - - compartment: s - - formula: C22H37N2O15X + - compartment: "s" + - formula: "C22H37N2O15X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01873c + - id: "m01873c" - name: "G00038" - - compartment: c - - formula: C51H89N2O28R + - compartment: "c" + - formula: "C51H89N2O28R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01874c + - id: "m01874c" - name: "G00040" - - compartment: c - - formula: C62H109N2O35RCO + - compartment: "c" + - formula: "C62H109N2O35RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01874s + - id: "m01874s" - name: "G00040" - - compartment: s - - formula: C62H109N2O35RCO + - compartment: "s" + - formula: "C62H109N2O35RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01876c + - id: "m01876c" - name: "G00057" - - compartment: c - - formula: C64H112N3O36RCO + - compartment: "c" + - formula: "C64H112N3O36RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01877c + - id: "m01877c" - name: "G00072" - - compartment: c - - formula: C72H125N4O41RCO + - compartment: "c" + - formula: "C72H125N4O41RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01878c + - id: "m01878c" - name: "G00073" - - compartment: c - - formula: C78H135N4O46RCO + - compartment: "c" + - formula: "C78H135N4O46RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01879c + - id: "m01879c" - name: "G00074" - - compartment: c - - formula: C84H145N4O50RCO + - compartment: "c" + - formula: "C84H145N4O50RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01880c + - id: "m01880c" - name: "G00077" - - compartment: c - - formula: C66H115N4O37RCO + - compartment: "c" + - formula: "C66H115N4O37RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01880g + - id: "m01880g" - name: "G00077" - - compartment: g - - formula: C66H115N4O37RCO + - compartment: "g" + - formula: "C66H115N4O37RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01881c + - id: "m01881c" - name: "G00079" - - compartment: c - - formula: C85H145N4O51R + - compartment: "c" + - formula: "C85H145N4O51R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01881s + - id: "m01881s" - name: "G00079" - - compartment: s - - formula: C85H145N4O51R + - compartment: "s" + - formula: "C85H145N4O51R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01882c + - id: "m01882c" - name: "G00081" - - compartment: c - - formula: C70H122N3O40RCO + - compartment: "c" + - formula: "C70H122N3O40RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01883c + - id: "m01883c" - name: "G00082" - - compartment: c - - formula: C76H132N3O44RCO + - compartment: "c" + - formula: "C76H132N3O44RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01883s + - id: "m01883s" - name: "G00082" - - compartment: s - - formula: C76H132N3O44RCO + - compartment: "s" + - formula: "C76H132N3O44RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01884c + - id: "m01884c" - name: "G00083" - - compartment: c - - formula: C70H122N3O41RCO + - compartment: "c" + - formula: "C70H122N3O41RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01884s + - id: "m01884s" - name: "G00083" - - compartment: s - - formula: C70H122N3O41RCO + - compartment: "s" + - formula: "C70H122N3O41RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01885c + - id: "m01885c" - name: "G00084" - - compartment: c - - formula: C78H135N4O46RCO + - compartment: "c" + - formula: "C78H135N4O46RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01886c + - id: "m01886c" - name: "G00085" - - compartment: c - - formula: C84H145N4O50RCO + - compartment: "c" + - formula: "C84H145N4O50RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01887c + - id: "m01887c" - name: "G00086" - - compartment: c - - formula: C90H155N4O54RCO + - compartment: "c" + - formula: "C90H155N4O54RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01887s + - id: "m01887s" - name: "G00086" - - compartment: s - - formula: C90H155N4O54RCO + - compartment: "s" + - formula: "C90H155N4O54RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01895c + - id: "m01895c" - name: "G10526" - - compartment: c - - formula: C140H230N2O37P2 + - compartment: "c" + - formula: "C140H230N2O37P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01896r + - id: "m01896r" - name: "G10595" - - compartment: r - - formula: C152H250N2O47P2 + - compartment: "r" + - formula: "C152H250N2O47P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01897r + - id: "m01897r" - name: "G10596" - - compartment: r - - formula: C158H260N2O52P2 + - compartment: "r" + - formula: "C158H260N2O52P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01898r + - id: "m01898r" - name: "G10597" - - compartment: r - - formula: C164H270N2O57P2 + - compartment: "r" + - formula: "C164H270N2O57P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01899r + - id: "m01899r" - name: "G10598" - - compartment: r - - formula: C176H290N2O67P2 + - compartment: "r" + - formula: "C176H290N2O67P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01900r + - id: "m01900r" - name: "G10599" - - compartment: r - - formula: C182H300N2O72P2 + - compartment: "r" + - formula: "C182H300N2O72P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01904c + - id: "m01904c" - name: "GA1" - - compartment: c - - formula: C44H79N2O22RCO + - compartment: "c" + - formula: "C44H79N2O22RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01904g + - id: "m01904g" - name: "GA1" - - compartment: g - - formula: C44H79N2O22RCO + - compartment: "g" + - formula: "C44H79N2O22RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01905c + - id: "m01905c" - name: "GA2" - - compartment: c - - formula: C38H69N2O17RCO + - compartment: "c" + - formula: "C38H69N2O17RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01905g + - id: "m01905g" - name: "GA2" - - compartment: g - - formula: C38H69N2O17RCO + - compartment: "g" + - formula: "C38H69N2O17RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01906g + - id: "m01906g" - name: "Gal2-Xyl-L-Ser-[protein]" - - compartment: g - - formula: C17H29O14X + - compartment: "g" + - formula: "C17H29O14X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01907g + - id: "m01907g" - name: "galacgalfuc12gal14acglcgalgluside heparan sulfate" - - compartment: g - - formula: C64H112N3O36RCO + - compartment: "g" + - formula: "C64H112N3O36RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01908g + - id: "m01908g" - name: "galacgalfucgalacglcgal14acglcgalgluside heparan sulfate" - - compartment: g - - formula: C78H135N4O46RCO + - compartment: "g" + - formula: "C78H135N4O46RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01909c + - id: "m01909c" - name: "galactitol" - - compartment: c - - formula: C6H14O6 + - compartment: "c" + - formula: "C6H14O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01910c + - id: "m01910c" - name: "galactose" - - compartment: c - - formula: C6H12O6 + - compartment: "c" + - formula: "C6H12O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01910l + - id: "m01910l" - name: "galactose" - - compartment: l - - formula: C6H12O6 + - compartment: "l" + - formula: "C6H12O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01910s + - id: "m01910s" - name: "galactose" - - compartment: s - - formula: C6H12O6 + - compartment: "s" + - formula: "C6H12O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01911c + - id: "m01911c" - name: "galactose-1-phosphate" - - compartment: c - - formula: C6H11O9P + - compartment: "c" + - formula: "C6H11O9P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01912c + - id: "m01912c" - name: "galactosylgloboside" - - compartment: c - - formula: C50H89N2O27RCO + - compartment: "c" + - formula: "C50H89N2O27RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01912g + - id: "m01912g" - name: "galactosylgloboside" - - compartment: g - - formula: C50H89N2O27RCO + - compartment: "g" + - formula: "C50H89N2O27RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01913s + - id: "m01913s" - name: "galactosylglycerol" - - compartment: s - - formula: C9H18O8 + - compartment: "s" + - formula: "C9H18O8" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01914c + - id: "m01914c" - name: "galfuc12gal14acglcgalgluside heparan sulfate" - - compartment: c - - formula: C56H99N2O31RCO + - compartment: "c" + - formula: "C56H99N2O31RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01914g + - id: "m01914g" - name: "galfuc12gal14acglcgalgluside heparan sulfate" - - compartment: g - - formula: C56H99N2O31RCO + - compartment: "g" + - formula: "C56H99N2O31RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01914s + - id: "m01914s" - name: "galfuc12gal14acglcgalgluside heparan sulfate" - - compartment: s - - formula: C56H99N2O31RCO + - compartment: "s" + - formula: "C56H99N2O31RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01915c + - id: "m01915c" - name: "galfucgalacglcgal14acglcgalgluside heparan sulfate" - - compartment: c - - formula: C70H122N3O41RCO + - compartment: "c" + - formula: "C70H122N3O41RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01915g + - id: "m01915g" - name: "galfucgalacglcgal14acglcgalgluside heparan sulfate" - - compartment: g - - formula: C70H122N3O41RCO + - compartment: "g" + - formula: "C70H122N3O41RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01915s + - id: "m01915s" - name: "galfucgalacglcgal14acglcgalgluside heparan sulfate" - - compartment: s - - formula: C70H122N3O41RCO + - compartment: "s" + - formula: "C70H122N3O41RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01916c + - id: "m01916c" - name: "galgalfucfucgalacglcgalacglcgal14acglcgalgluside heparan sulfate" - - compartment: c - - formula: C96H165N4O60RCO + - compartment: "c" + - formula: "C96H165N4O60RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01916g + - id: "m01916g" - name: "galgalfucfucgalacglcgalacglcgal14acglcgalgluside heparan sulfate" - - compartment: g - - formula: C96H165N4O60RCO + - compartment: "g" + - formula: "C96H165N4O60RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01916s + - id: "m01916s" - name: "galgalfucfucgalacglcgalacglcgal14acglcgalgluside heparan sulfate" - - compartment: s - - formula: C96H165N4O60RCO + - compartment: "s" + - formula: "C96H165N4O60RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01917c + - id: "m01917c" - name: "galgalgalthcrm heparan sulfate" - - compartment: c - - formula: C54H96NO32RCO + - compartment: "c" + - formula: "C54H96NO32RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01917g + - id: "m01917g" - name: "galgalgalthcrm heparan sulfate" - - compartment: g - - formula: C54H96NO32RCO + - compartment: "g" + - formula: "C54H96NO32RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01917s + - id: "m01917s" - name: "galgalgalthcrm heparan sulfate" - - compartment: s - - formula: C54H96NO32RCO + - compartment: "s" + - formula: "C54H96NO32RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01918g + - id: "m01918g" - name: "galgalthcrm heparan sulfate" - - compartment: g - - formula: C48H86NO27RCO + - compartment: "g" + - formula: "C48H86NO27RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01919c + - id: "m01919c" - name: "gal-glcnac-gal-globoside" - - compartment: c - - formula: C64H112N3O37RCO + - compartment: "c" + - formula: "C64H112N3O37RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01919g + - id: "m01919g" - name: "gal-glcnac-gal-globoside" - - compartment: g - - formula: C64H112N3O37RCO + - compartment: "g" + - formula: "C64H112N3O37RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01919s + - id: "m01919s" - name: "gal-glcnac-gal-globoside" - - compartment: s - - formula: C64H112N3O37RCO + - compartment: "s" + - formula: "C64H112N3O37RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01920g + - id: "m01920g" - name: "galthcrm heparan sulfate" - - compartment: g - - formula: C42H76NO22RCO + - compartment: "g" + - formula: "C42H76NO22RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01921g + - id: "m01921g" - name: "Gal-Xyl-L-Ser-[protein]" - - compartment: g - - formula: C11H19O9X + - compartment: "g" + - formula: "C11H19O9X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01922c + - id: "m01922c" - name: "gamma-butyrobetaine" - - compartment: c - - formula: C7H15NO2 + - compartment: "c" + - formula: "C7H15NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01923c + - id: "m01923c" - name: "gamma-carboxyethyl-hydroxychroman" - - compartment: c - - formula: C15H19O4 + - compartment: "c" + - formula: "C15H19O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01923m + - id: "m01923m" - name: "gamma-carboxyethyl-hydroxychroman" - - compartment: m - - formula: C15H19O4 + - compartment: "m" + - formula: "C15H19O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01924c + - id: "m01924c" - name: "gamma-CEHC-glucuronide" - - compartment: c - - formula: C21H27O10 + - compartment: "c" + - formula: "C21H27O10" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01925s + - id: "m01925s" - name: "gamma-glutamyl-3-aminopropiononitrile" - - compartment: s - - formula: C8H13N3O3 + - compartment: "s" + - formula: "C8H13N3O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01926s + - id: "m01926s" - name: "gamma-glutamyl-beta-cyanoalanine" - - compartment: s - - formula: C9H12N3O5 + - compartment: "s" + - formula: "C9H12N3O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01927c + - id: "m01927c" - name: "gamma-glutamyl-cysteine" - - compartment: c - - formula: C8H13N2O5S + - compartment: "c" + - formula: "C8H13N2O5S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01928c + - id: "m01928c" - name: "gamma-glutamylglutathione" - - compartment: c - - formula: C15H22N4O9S + - compartment: "c" + - formula: "C15H22N4O9S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01929c + - id: "m01929c" - name: "gamma-hydroxy-3-pyridinebutanoate" - - compartment: c - - formula: C9H10NO3 + - compartment: "c" + - formula: "C9H10NO3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01930c + - id: "m01930c" - name: "gamma-L-glutamyl-L-alanine" - - compartment: c - - formula: C8H13N2O5 + - compartment: "c" + - formula: "C8H13N2O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01931c + - id: "m01931c" - name: "gamma-L-glutamyl-L-alpha-aminobutyrate" - - compartment: c - - formula: C9H15N2O5 + - compartment: "c" + - formula: "C9H15N2O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01932c + - id: "m01932c" - name: "gamma-linolenate" - - compartment: c - - formula: C18H29O2 + - compartment: "c" + - formula: "C18H29O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01932l + - id: "m01932l" - name: "gamma-linolenate" - - compartment: l - - formula: C18H29O2 + - compartment: "l" + - formula: "C18H29O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01932r + - id: "m01932r" - name: "gamma-linolenate" - - compartment: r - - formula: C18H29O2 + - compartment: "r" + - formula: "C18H29O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01932s + - id: "m01932s" - name: "gamma-linolenate" - - compartment: s - - formula: C18H29O2 + - compartment: "s" + - formula: "C18H29O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01933c + - id: "m01933c" - name: "gamma-linolenoylcarnitine" - - compartment: c - - formula: C25H43NO4 + - compartment: "c" + - formula: "C25H43NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01933m + - id: "m01933m" - name: "gamma-linolenoylcarnitine" - - compartment: m - - formula: C25H43NO4 + - compartment: "m" + - formula: "C25H43NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01933r + - id: "m01933r" - name: "gamma-linolenoylcarnitine" - - compartment: r - - formula: C25H43NO4 + - compartment: "r" + - formula: "C25H43NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01934c + - id: "m01934c" - name: "gamma-linolenoyl-CoA" - - compartment: c - - formula: C39H60N7O17P3S + - compartment: "c" + - formula: "C39H60N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01934m + - id: "m01934m" - name: "gamma-linolenoyl-CoA" - - compartment: m - - formula: C39H60N7O17P3S + - compartment: "m" + - formula: "C39H60N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01934p + - id: "m01934p" - name: "gamma-linolenoyl-CoA" - - compartment: p - - formula: C39H60N7O17P3S + - compartment: "p" + - formula: "C39H60N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01934r + - id: "m01934r" - name: "gamma-linolenoyl-CoA" - - compartment: r - - formula: C39H60N7O17P3S + - compartment: "r" + - formula: "C39H60N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01935c + - id: "m01935c" - name: "gamma-tocopherol" - - compartment: c - - formula: C28H48O2 + - compartment: "c" + - formula: "C28H48O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01935r + - id: "m01935r" - name: "gamma-tocopherol" - - compartment: r - - formula: C28H48O2 + - compartment: "r" + - formula: "C28H48O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01935s + - id: "m01935s" - name: "gamma-tocopherol" - - compartment: s - - formula: C28H48O2 + - compartment: "s" + - formula: "C28H48O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01936c + - id: "m01936c" - name: "gamma-tocopheroxyl-radical" - - compartment: c - - formula: C28H47O2 + - compartment: "c" + - formula: "C28H47O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01937c + - id: "m01937c" - name: "gamma-tocopheryl-quinone" - - compartment: c - - formula: C28H48O3 + - compartment: "c" + - formula: "C28H48O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01938c + - id: "m01938c" - name: "gamma-tocotrienol" - - compartment: c - - formula: C28H42O2 + - compartment: "c" + - formula: "C28H42O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01938r + - id: "m01938r" - name: "gamma-tocotrienol" - - compartment: r - - formula: C28H42O2 + - compartment: "r" + - formula: "C28H42O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01938s + - id: "m01938s" - name: "gamma-tocotrienol" - - compartment: s - - formula: C28H42O2 + - compartment: "s" + - formula: "C28H42O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01939c + - id: "m01939c" - name: "GAP" - - compartment: c - - formula: C3H5O6P + - compartment: "c" + - formula: "C3H5O6P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01940c + - id: "m01940c" - name: "GAR" - - compartment: c - - formula: C7H14N2O8P + - compartment: "c" + - formula: "C7H14N2O8P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01941c + - id: "m01941c" - name: "GD1a" - - compartment: c - - formula: C66H111N4O38RCO + - compartment: "c" + - formula: "C66H111N4O38RCO" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01941g + - id: "m01941g" - name: "GD1a" - - compartment: g - - formula: C66H111N4O38RCO + - compartment: "g" + - formula: "C66H111N4O38RCO" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01942g + - id: "m01942g" - name: "GD1alpha" - - compartment: g - - formula: C66H111N4O38RCO + - compartment: "g" + - formula: "C66H111N4O38RCO" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01943c + - id: "m01943c" - name: "GD1b" - - compartment: c - - formula: C66H111N4O38RCO + - compartment: "c" + - formula: "C66H111N4O38RCO" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01943g + - id: "m01943g" - name: "GD1b" - - compartment: g - - formula: C66H111N4O38RCO + - compartment: "g" + - formula: "C66H111N4O38RCO" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01944c + - id: "m01944c" - name: "GD1beta" - - compartment: c - - formula: C66H111N4O38RCO + - compartment: "c" + - formula: "C66H111N4O38RCO" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01944g + - id: "m01944g" - name: "GD1beta" - - compartment: g - - formula: C66H111N4O38RCO + - compartment: "g" + - formula: "C66H111N4O38RCO" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01944s + - id: "m01944s" - name: "GD1beta" - - compartment: s - - formula: C66H111N4O38RCO + - compartment: "s" + - formula: "C66H111N4O38RCO" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01945c + - id: "m01945c" - name: "GD1c" - - compartment: c - - formula: C66H111N4O38RCO + - compartment: "c" + - formula: "C66H111N4O38RCO" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01945g + - id: "m01945g" - name: "GD1c" - - compartment: g - - formula: C66H111N4O38RCO + - compartment: "g" + - formula: "C66H111N4O38RCO" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01945s + - id: "m01945s" - name: "GD1c" - - compartment: s - - formula: C66H111N4O38RCO + - compartment: "s" + - formula: "C66H111N4O38RCO" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01946c + - id: "m01946c" - name: "GD2" - - compartment: c - - formula: C60H101N4O33RCO + - compartment: "c" + - formula: "C60H101N4O33RCO" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01946g + - id: "m01946g" - name: "GD2" - - compartment: g - - formula: C60H101N4O33RCO + - compartment: "g" + - formula: "C60H101N4O33RCO" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01947c + - id: "m01947c" - name: "GD3" - - compartment: c - - formula: C52H88N3O28RCO + - compartment: "c" + - formula: "C52H88N3O28RCO" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01947g + - id: "m01947g" - name: "GD3" - - compartment: g - - formula: C52H88N3O28RCO + - compartment: "g" + - formula: "C52H88N3O28RCO" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01948c + - id: "m01948c" - name: "GDP" - - compartment: c - - formula: C10H12N5O11P2 + - compartment: "c" + - formula: "C10H12N5O11P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01948g + - id: "m01948g" - name: "GDP" - - compartment: g - - formula: C10H12N5O11P2 + - compartment: "g" + - formula: "C10H12N5O11P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01948m + - id: "m01948m" - name: "GDP" - - compartment: m - - formula: C10H12N5O11P2 + - compartment: "m" + - formula: "C10H12N5O11P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01948n + - id: "m01948n" - name: "GDP" - - compartment: n - - formula: C10H12N5O11P2 + - compartment: "n" + - formula: "C10H12N5O11P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01948s + - id: "m01948s" - name: "GDP" - - compartment: s - - formula: C10H12N5O11P2 + - compartment: "s" + - formula: "C10H12N5O11P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01949c + - id: "m01949c" - name: "GDP-4-dehydro-6-deoxy-D-mannose" - - compartment: c - - formula: C16H21N5O15P2 + - compartment: "c" + - formula: "C16H21N5O15P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01950c + - id: "m01950c" - name: "GDP-L-fucose" - - compartment: c - - formula: C16H23N5O15P2 + - compartment: "c" + - formula: "C16H23N5O15P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01950g + - id: "m01950g" - name: "GDP-L-fucose" - - compartment: g - - formula: C16H23N5O15P2 + - compartment: "g" + - formula: "C16H23N5O15P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01951c + - id: "m01951c" - name: "GDP-mannose" - - compartment: c - - formula: C16H23N5O16P2 + - compartment: "c" + - formula: "C16H23N5O16P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01952c + - id: "m01952c" - name: "gentisate aldehyde" - - compartment: c - - formula: C7H6O3 + - compartment: "c" + - formula: "C7H6O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01953c + - id: "m01953c" - name: "geranyl-PP" - - compartment: c - - formula: C10H17O7P2 + - compartment: "c" + - formula: "C10H17O7P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01954g + - id: "m01954g" - name: "glcnac-alpha-1,4-core 1" - - compartment: g - - formula: C22H37N2O15X + - compartment: "g" + - formula: "C22H37N2O15X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01955g + - id: "m01955g" - name: "glcnac-alpha-1,4-core 2" - - compartment: g - - formula: C30H50N3O20X + - compartment: "g" + - formula: "C30H50N3O20X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01955c + - id: "m01955c" - name: "glcnac-alpha-1,4-core 2" - - compartment: c - - formula: C30H50N3O20X + - compartment: "c" + - formula: "C30H50N3O20X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01955s + - id: "m01955s" - name: "glcnac-alpha-1,4-core 2" - - compartment: s - - formula: C30H50N3O20X + - compartment: "s" + - formula: "C30H50N3O20X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01956g + - id: "m01956g" - name: "glcnac-gal-globoside" - - compartment: g - - formula: C58H102N3O32RCO + - compartment: "g" + - formula: "C58H102N3O32RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01957c + - id: "m01957c" - name: "globin" - - compartment: c - - formula: C57H88O2 + - compartment: "c" + - formula: "C57H88O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01958c + - id: "m01958c" - name: "globo-H" - - compartment: c - - formula: C57H99N2O32R + - compartment: "c" + - formula: "C57H99N2O32R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01959c + - id: "m01959c" - name: "globoside" - - compartment: c - - formula: C44H79N2O22RCO + - compartment: "c" + - formula: "C44H79N2O22RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01959g + - id: "m01959g" - name: "globoside" - - compartment: g - - formula: C44H79N2O22RCO + - compartment: "g" + - formula: "C44H79N2O22RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01959l + - id: "m01959l" - name: "globoside" - - compartment: l - - formula: C44H79N2O22RCO + - compartment: "l" + - formula: "C44H79N2O22RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01959s + - id: "m01959s" - name: "globoside" - - compartment: s - - formula: C44H79N2O22RCO + - compartment: "s" + - formula: "C44H79N2O22RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01960c + - id: "m01960c" - name: "globotriaosylceramide" - - compartment: c - - formula: C36H66NO17RCO + - compartment: "c" + - formula: "C36H66NO17RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01960g + - id: "m01960g" - name: "globotriaosylceramide" - - compartment: g - - formula: C36H66NO17RCO + - compartment: "g" + - formula: "C36H66NO17RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01960l + - id: "m01960l" - name: "globotriaosylceramide" - - compartment: l - - formula: C36H66NO17RCO + - compartment: "l" + - formula: "C36H66NO17RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01961c + - id: "m01961c" - name: "glucono-1,5-lactone-6-phosphate" - - compartment: c - - formula: C6H9O9P + - compartment: "c" + - formula: "C6H9O9P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01961r + - id: "m01961r" - name: "glucono-1,5-lactone-6-phosphate" - - compartment: r - - formula: C6H9O9P + - compartment: "r" + - formula: "C6H9O9P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01962c + - id: "m01962c" - name: "glucosamine" - - compartment: c - - formula: C6H14NO5 + - compartment: "c" + - formula: "C6H14NO5" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01962s + - id: "m01962s" - name: "glucosamine" - - compartment: s - - formula: C6H14NO5 + - compartment: "s" + - formula: "C6H14NO5" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01963c + - id: "m01963c" - name: "glucosamine-6-phosphate" - - compartment: c - - formula: C6H13NO8P + - compartment: "c" + - formula: "C6H13NO8P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01964c + - id: "m01964c" - name: "glucosaminyl-acylphosphatidylinositol" - - compartment: c - - formula: C33H58NO18PR2 + - compartment: "c" + - formula: "C33H58NO18PR2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01964r + - id: "m01964r" - name: "glucosaminyl-acylphosphatidylinositol" - - compartment: r - - formula: C33H58NO18PR2 + - compartment: "r" + - formula: "C33H58NO18PR2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01965c + - id: "m01965c" - name: "glucose" - - compartment: c - - formula: C6H12O6 + - compartment: "c" + - formula: "C6H12O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01965g + - id: "m01965g" - name: "glucose" - - compartment: g - - formula: C6H12O6 + - compartment: "g" + - formula: "C6H12O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01965l + - id: "m01965l" - name: "glucose" - - compartment: l - - formula: C6H12O6 + - compartment: "l" + - formula: "C6H12O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01965r + - id: "m01965r" - name: "glucose" - - compartment: r - - formula: C6H12O6 + - compartment: "r" + - formula: "C6H12O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01965s + - id: "m01965s" - name: "glucose" - - compartment: s - - formula: C6H12O6 + - compartment: "s" + - formula: "C6H12O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01966c + - id: "m01966c" - name: "glucose-1,6-bisphosphate" - - compartment: c - - formula: C6H11O12P2 + - compartment: "c" + - formula: "C6H11O12P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01966s + - id: "m01966s" - name: "glucose-1,6-bisphosphate" - - compartment: s - - formula: C6H11O12P2 + - compartment: "s" + - formula: "C6H11O12P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01967c + - id: "m01967c" - name: "glucose-1-phosphate" - - compartment: c - - formula: C6H11O9P + - compartment: "c" + - formula: "C6H11O9P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01968c + - id: "m01968c" - name: "glucose-6-phosphate" - - compartment: c - - formula: C6H11O9P + - compartment: "c" + - formula: "C6H11O9P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01968r + - id: "m01968r" - name: "glucose-6-phosphate" - - compartment: r - - formula: C6H11O9P + - compartment: "r" + - formula: "C6H11O9P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01969g + - id: "m01969g" - name: "glucosyl-(alpha-D-mannosyl)6-beta-D-mannosyl-diacetylchitobiosyl-L-asparagine (protein)" - - compartment: g - - formula: C64H107N2O50X + - compartment: "g" + - formula: "C64H107N2O50X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01969r + - id: "m01969r" - name: "glucosyl-(alpha-D-mannosyl)6-beta-D-mannosyl-diacetylchitobiosyl-L-asparagine (protein)" - - compartment: r - - formula: C64H107N2O50X + - compartment: "r" + - formula: "C64H107N2O50X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01970g + - id: "m01970g" - name: "glucosyl-(alpha-D-mannosyl)7-beta-D-mannosyl-diacetylchitobiosyl-L-asparagine, isoform B (protein)" - - compartment: g - - formula: C70H117N2O55X + - compartment: "g" + - formula: "C70H117N2O55X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01970r + - id: "m01970r" - name: "glucosyl-(alpha-D-mannosyl)7-beta-D-mannosyl-diacetylchitobiosyl-L-asparagine, isoform B (protein)" - - compartment: r - - formula: C70H117N2O55X + - compartment: "r" + - formula: "C70H117N2O55X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01971g + - id: "m01971g" - name: "glucosyl-(alpha-D-mannosyl)7-beta-D-mannosyl-diacetylchitobiosyl-L-asparagine, isoform C (protein)" - - compartment: g - - formula: C70H117N2O55X + - compartment: "g" + - formula: "C70H117N2O55X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01971r + - id: "m01971r" - name: "glucosyl-(alpha-D-mannosyl)7-beta-D-mannosyl-diacetylchitobiosyl-L-asparagine, isoform C (protein)" - - compartment: r - - formula: C70H117N2O55X + - compartment: "r" + - formula: "C70H117N2O55X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01972c + - id: "m01972c" - name: "glucosylceramide pool" - - compartment: c - - formula: C24H46NO7RCO + - compartment: "c" + - formula: "C24H46NO7RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01972g + - id: "m01972g" - name: "glucosylceramide pool" - - compartment: g - - formula: C24H46NO7RCO + - compartment: "g" + - formula: "C24H46NO7RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01972l + - id: "m01972l" - name: "glucosylceramide pool" - - compartment: l - - formula: C24H46NO7RCO + - compartment: "l" + - formula: "C24H46NO7RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01972r + - id: "m01972r" - name: "glucosylceramide pool" - - compartment: r - - formula: C24H46NO7RCO + - compartment: "r" + - formula: "C24H46NO7RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01972s + - id: "m01972s" - name: "glucosylceramide pool" - - compartment: s - - formula: C24H46NO7RCO + - compartment: "s" + - formula: "C24H46NO7RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01973c + - id: "m01973c" - name: "glucuronate" - - compartment: c - - formula: C6H9O7 + - compartment: "c" + - formula: "C6H9O7" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01973l + - id: "m01973l" - name: "glucuronate" - - compartment: l - - formula: C6H9O7 + - compartment: "l" + - formula: "C6H9O7" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01973r + - id: "m01973r" - name: "glucuronate" - - compartment: r - - formula: C6H9O7 + - compartment: "r" + - formula: "C6H9O7" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01974c + - id: "m01974c" - name: "glutamate" - - compartment: c - - formula: C5H8NO4 + - compartment: "c" + - formula: "C5H8NO4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01974l + - id: "m01974l" - name: "glutamate" - - compartment: l - - formula: C5H8NO4 + - compartment: "l" + - formula: "C5H8NO4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01974m + - id: "m01974m" - name: "glutamate" - - compartment: m - - formula: C5H8NO4 + - compartment: "m" + - formula: "C5H8NO4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01974r + - id: "m01974r" - name: "glutamate" - - compartment: r - - formula: C5H8NO4 + - compartment: "r" + - formula: "C5H8NO4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01974s + - id: "m01974s" - name: "glutamate" - - compartment: s - - formula: C5H8NO4 + - compartment: "s" + - formula: "C5H8NO4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01975c + - id: "m01975c" - name: "glutamine" - - compartment: c - - formula: C5H10N2O3 + - compartment: "c" + - formula: "C5H10N2O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01975l + - id: "m01975l" - name: "glutamine" - - compartment: l - - formula: C5H10N2O3 + - compartment: "l" + - formula: "C5H10N2O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01975m + - id: "m01975m" - name: "glutamine" - - compartment: m - - formula: C5H10N2O3 + - compartment: "m" + - formula: "C5H10N2O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01975s + - id: "m01975s" - name: "glutamine" - - compartment: s - - formula: C5H10N2O3 + - compartment: "s" + - formula: "C5H10N2O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01976m + - id: "m01976m" - name: "glutamyl-5-phosphate" - - compartment: m - - formula: C5H8NO7P + - compartment: "m" + - formula: "C5H8NO7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01977m + - id: "m01977m" - name: "glutaryl-CoA" - - compartment: m - - formula: C26H37N7O19P3S + - compartment: "m" + - formula: "C26H37N7O19P3S" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01978c + - id: "m01978c" - name: "glutathione episulfonium ion" - - compartment: c - - formula: C12H18N3O6S + - compartment: "c" + - formula: "C12H18N3O6S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01979c + - id: "m01979c" - name: "glutathionyl-3-hydroxykynurenine glucoside" - - compartment: c - - formula: C26H36N5O14S + - compartment: "c" + - formula: "C26H36N5O14S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01980c + - id: "m01980c" - name: "glutathionyl-leukotriene C4" - - compartment: c - - formula: X + - compartment: "c" + - formula: "X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01980s + - id: "m01980s" - name: "glutathionyl-leukotriene C4" - - compartment: s - - formula: X + - compartment: "s" + - formula: "X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01981c + - id: "m01981c" - name: "glyceraldehyde" - - compartment: c - - formula: C3H6O3 + - compartment: "c" + - formula: "C3H6O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01981m + - id: "m01981m" - name: "glyceraldehyde" - - compartment: m - - formula: C3H6O3 + - compartment: "m" + - formula: "C3H6O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01982c + - id: "m01982c" - name: "glycerate" - - compartment: c - - formula: C3H5O4 + - compartment: "c" + - formula: "C3H5O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01982m + - id: "m01982m" - name: "glycerate" - - compartment: m - - formula: C3H5O4 + - compartment: "m" + - formula: "C3H5O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01982s + - id: "m01982s" - name: "glycerate" - - compartment: s - - formula: C3H5O4 + - compartment: "s" + - formula: "C3H5O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01983c + - id: "m01983c" - name: "glycerol" - - compartment: c - - formula: C3H8O3 + - compartment: "c" + - formula: "C3H8O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01983m + - id: "m01983m" - name: "glycerol" - - compartment: m - - formula: C3H8O3 + - compartment: "m" + - formula: "C3H8O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01983s + - id: "m01983s" - name: "glycerol" - - compartment: s - - formula: C3H8O3 + - compartment: "s" + - formula: "C3H8O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01984s + - id: "m01984s" - name: "glycerone" - - compartment: s - - formula: C3H6O3 + - compartment: "s" + - formula: "C3H6O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01985c + - id: "m01985c" - name: "glycinamide" - - compartment: c - - formula: C2H7N2O + - compartment: "c" + - formula: "C2H7N2O" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01986c + - id: "m01986c" - name: "glycine" - - compartment: c - - formula: C2H5NO2 + - compartment: "c" + - formula: "C2H5NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01986l + - id: "m01986l" - name: "glycine" - - compartment: l - - formula: C2H5NO2 + - compartment: "l" + - formula: "C2H5NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01986m + - id: "m01986m" - name: "glycine" - - compartment: m - - formula: C2H5NO2 + - compartment: "m" + - formula: "C2H5NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01986p + - id: "m01986p" - name: "glycine" - - compartment: p - - formula: C2H5NO2 + - compartment: "p" + - formula: "C2H5NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01986s + - id: "m01986s" - name: "glycine" - - compartment: s - - formula: C2H5NO2 + - compartment: "s" + - formula: "C2H5NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01987c + - id: "m01987c" - name: "glycochenodeoxycholate" - - compartment: c - - formula: C26H43NO5 + - compartment: "c" + - formula: "C26H43NO5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01987s + - id: "m01987s" - name: "glycochenodeoxycholate" - - compartment: s - - formula: C26H43NO5 + - compartment: "s" + - formula: "C26H43NO5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01988c + - id: "m01988c" - name: "glycocholate" - - compartment: c - - formula: C26H43NO6 + - compartment: "c" + - formula: "C26H43NO6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01988s + - id: "m01988s" - name: "glycocholate" - - compartment: s - - formula: C26H43NO6 + - compartment: "s" + - formula: "C26H43NO6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01989c + - id: "m01989c" - name: "glycodeoxycholate" - - compartment: c - - formula: C26H43NO5 + - compartment: "c" + - formula: "C26H43NO5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01989s + - id: "m01989s" - name: "glycodeoxycholate" - - compartment: s - - formula: C26H43NO5 + - compartment: "s" + - formula: "C26H43NO5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01990c + - id: "m01990c" - name: "glycogenin G11" - - compartment: c - - formula: C1845H2835N455O583S14 + - compartment: "c" + - formula: "C1845H2835N455O583S14" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01991c + - id: "m01991c" - name: "glycogenin G4G4" - - compartment: c - - formula: C1827H2805N455O568S14 + - compartment: "c" + - formula: "C1827H2805N455O568S14" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01992c + - id: "m01992c" - name: "glycogenin G4G7" - - compartment: c - - formula: C1845H2835N455O583S14 + - compartment: "c" + - formula: "C1845H2835N455O583S14" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01993c + - id: "m01993c" - name: "glycogenin G7" - - compartment: c - - formula: C1821H2795N455O563S14 + - compartment: "c" + - formula: "C1821H2795N455O563S14" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01994c + - id: "m01994c" - name: "glycogenin G7G1" - - compartment: c - - formula: C1827H2805N455O568S14 + - compartment: "c" + - formula: "C1827H2805N455O568S14" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01995c + - id: "m01995c" - name: "glycogenin G8" - - compartment: c - - formula: C1827H2805N455O568S14 + - compartment: "c" + - formula: "C1827H2805N455O568S14" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01996c + - id: "m01996c" - name: "glycogenin" - - compartment: c - - formula: C1779H2725N455O528S14 + - compartment: "c" + - formula: "C1779H2725N455O528S14" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01997c + - id: "m01997c" - name: "glycolaldehyde" - - compartment: c - - formula: C2H4O2 + - compartment: "c" + - formula: "C2H4O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01997m + - id: "m01997m" - name: "glycolaldehyde" - - compartment: m - - formula: C2H4O2 + - compartment: "m" + - formula: "C2H4O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01998c + - id: "m01998c" - name: "glycolate" - - compartment: c - - formula: C2H3O3 + - compartment: "c" + - formula: "C2H3O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01998m + - id: "m01998m" - name: "glycolate" - - compartment: m - - formula: C2H3O3 + - compartment: "m" + - formula: "C2H3O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01998p + - id: "m01998p" - name: "glycolate" - - compartment: p - - formula: C2H3O3 + - compartment: "p" + - formula: "C2H3O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01999c + - id: "m01999c" - name: "glycolipid" - - compartment: c - - formula: C56H99N2O30RCO + - compartment: "c" + - formula: "C56H99N2O30RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01999g + - id: "m01999g" - name: "glycolipid" - - compartment: g - - formula: C56H99N2O30RCO + - compartment: "g" + - formula: "C56H99N2O30RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01999s + - id: "m01999s" - name: "glycolipid" - - compartment: s - - formula: C56H99N2O30RCO + - compartment: "s" + - formula: "C56H99N2O30RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02000c + - id: "m02000c" - name: "glycolithocholate" - - compartment: c - - formula: C26H42NO4 + - compartment: "c" + - formula: "C26H42NO4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02000p + - id: "m02000p" - name: "glycolithocholate" - - compartment: p - - formula: C26H42NO4 + - compartment: "p" + - formula: "C26H42NO4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02000s + - id: "m02000s" - name: "glycolithocholate" - - compartment: s - - formula: C26H42NO4 + - compartment: "s" + - formula: "C26H42NO4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02001r + - id: "m02001r" - name: "glycophosphatidylinositol-(GPI)-anchored-protein-precursor" - - compartment: r - - formula: XY + - compartment: "r" + - formula: "XY" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02001c + - id: "m02001c" - name: "glycophosphatidylinositol-(GPI)-anchored-protein-precursor" - - compartment: c - - formula: XY + - compartment: "c" + - formula: "XY" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02001s + - id: "m02001s" - name: "glycophosphatidylinositol-(GPI)-anchored-protein-precursor" - - compartment: s - - formula: XY + - compartment: "s" + - formula: "XY" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02002c + - id: "m02002c" - name: "glycoprotein-N-acetyl-D-glucosaminyl-phospho-D-mannose" - - compartment: c - - formula: C14H25NO14PR + - compartment: "c" + - formula: "C14H25NO14PR" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02003c + - id: "m02003c" - name: "glycoprotein-phospho-D-mannose" - - compartment: c - - formula: C6H12O9PR + - compartment: "c" + - formula: "C6H12O9PR" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02004c + - id: "m02004c" - name: "glycoursodeoxycholate" - - compartment: c - - formula: C26H43NO5 + - compartment: "c" + - formula: "C26H43NO5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02004s + - id: "m02004s" - name: "glycoursodeoxycholate" - - compartment: s - - formula: C26H43NO5 + - compartment: "s" + - formula: "C26H43NO5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02005c + - id: "m02005c" - name: "glycylpeptide" - - compartment: c - - formula: C4H7N2O3R + - compartment: "c" + - formula: "C4H7N2O3R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02006c + - id: "m02006c" - name: "glycyl-tRNA(gly)" - - compartment: c - - formula: C2H5NOR + - compartment: "c" + - formula: "C2H5NOR" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02007c + - id: "m02007c" - name: "glyoxalate" - - compartment: c - - formula: C2H1O3 + - compartment: "c" + - formula: "C2H1O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02007m + - id: "m02007m" - name: "glyoxalate" - - compartment: m - - formula: C2H1O3 + - compartment: "m" + - formula: "C2H1O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02007p + - id: "m02007p" - name: "glyoxalate" - - compartment: p - - formula: C2H1O3 + - compartment: "p" + - formula: "C2H1O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02008c + - id: "m02008c" - name: "GM1" - - compartment: c - - formula: C56H95N3O31R + - compartment: "c" + - formula: "C56H95N3O31R" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02008g + - id: "m02008g" - name: "GM1" - - compartment: g - - formula: C56H95N3O31R + - compartment: "g" + - formula: "C56H95N3O31R" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02008l + - id: "m02008l" - name: "GM1" - - compartment: l - - formula: C56H95N3O31R + - compartment: "l" + - formula: "C56H95N3O31R" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02009g + - id: "m02009g" - name: "GM1alpha" - - compartment: g - - formula: C55H95N3O30RCO + - compartment: "g" + - formula: "C55H95N3O30RCO" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02010c + - id: "m02010c" - name: "GM1b" - - compartment: c - - formula: C55H95N3O30RCO + - compartment: "c" + - formula: "C55H95N3O30RCO" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02010g + - id: "m02010g" - name: "GM1b" - - compartment: g - - formula: C55H95N3O30RCO + - compartment: "g" + - formula: "C55H95N3O30RCO" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02011c + - id: "m02011c" - name: "GM2" - - compartment: c - - formula: C50H85N3O26R + - compartment: "c" + - formula: "C50H85N3O26R" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02011g + - id: "m02011g" - name: "GM2" - - compartment: g - - formula: C50H85N3O26R + - compartment: "g" + - formula: "C50H85N3O26R" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02011l + - id: "m02011l" - name: "GM2" - - compartment: l - - formula: C50H85N3O26R + - compartment: "l" + - formula: "C50H85N3O26R" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02012c + - id: "m02012c" - name: "GM2A" - - compartment: c - - formula: C940H1502N232O275S12 + - compartment: "c" + - formula: "C940H1502N232O275S12" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02012l + - id: "m02012l" - name: "GM2A" - - compartment: l - - formula: C940H1502N232O275S12 + - compartment: "l" + - formula: "C940H1502N232O275S12" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02013l + - id: "m02013l" - name: "GM2A-GM2" - - compartment: l - - formula: C990H1587N235O301S12R + - compartment: "l" + - formula: "C990H1587N235O301S12R" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02014g + - id: "m02014g" - name: "GM2alpha" - - compartment: g - - formula: C49H85N3O25RCO + - compartment: "g" + - formula: "C49H85N3O25RCO" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02015c + - id: "m02015c" - name: "GM3" - - compartment: c - - formula: C41H72N2O20RCO + - compartment: "c" + - formula: "C41H72N2O20RCO" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02015g + - id: "m02015g" - name: "GM3" - - compartment: g - - formula: C41H72N2O20RCO + - compartment: "g" + - formula: "C41H72N2O20RCO" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02015l + - id: "m02015l" - name: "GM3" - - compartment: l - - formula: C41H72N2O20RCO + - compartment: "l" + - formula: "C41H72N2O20RCO" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02016c + - id: "m02016c" - name: "GMP" - - compartment: c - - formula: C10H12N5O8P + - compartment: "c" + - formula: "C10H12N5O8P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02016g + - id: "m02016g" - name: "GMP" - - compartment: g - - formula: C10H12N5O8P + - compartment: "g" + - formula: "C10H12N5O8P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02016l + - id: "m02016l" - name: "GMP" - - compartment: l - - formula: C10H12N5O8P + - compartment: "l" + - formula: "C10H12N5O8P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02016m + - id: "m02016m" - name: "GMP" - - compartment: m - - formula: C10H12N5O8P + - compartment: "m" + - formula: "C10H12N5O8P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02016n + - id: "m02016n" - name: "GMP" - - compartment: n - - formula: C10H12N5O8P + - compartment: "n" + - formula: "C10H12N5O8P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02016s + - id: "m02016s" - name: "GMP" - - compartment: s - - formula: C10H12N5O8P + - compartment: "s" + - formula: "C10H12N5O8P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02017c + - id: "m02017c" - name: "GO3P" - - compartment: c - - formula: C19H37O6P + - compartment: "c" + - formula: "C19H37O6P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02017p + - id: "m02017p" - name: "GO3P" - - compartment: p - - formula: C19H37O6P + - compartment: "p" + - formula: "C19H37O6P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02018c + - id: "m02018c" - name: "GP1c" - - compartment: c - - formula: C99H159N7O62RCO + - compartment: "c" + - formula: "C99H159N7O62RCO" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02018g + - id: "m02018g" - name: "GP1c" - - compartment: g - - formula: C99H159N7O62RCO + - compartment: "g" + - formula: "C99H159N7O62RCO" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02018s + - id: "m02018s" - name: "GP1c" - - compartment: s - - formula: C99H159N7O62RCO + - compartment: "s" + - formula: "C99H159N7O62RCO" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02019c + - id: "m02019c" - name: "GP1calpha" - - compartment: c - - formula: C99H159N7O62RCO + - compartment: "c" + - formula: "C99H159N7O62RCO" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02019g + - id: "m02019g" - name: "GP1calpha" - - compartment: g - - formula: C99H159N7O62RCO + - compartment: "g" + - formula: "C99H159N7O62RCO" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02019s + - id: "m02019s" - name: "GP1calpha" - - compartment: s - - formula: C99H159N7O62RCO + - compartment: "s" + - formula: "C99H159N7O62RCO" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02020r + - id: "m02020r" - name: "gpi heparan sulfate" - - compartment: r - - formula: C57H106N4O42P4R2 + - compartment: "r" + - formula: "C57H106N4O42P4R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02021r + - id: "m02021r" - name: "gpi_prot heparan sulfate" - - compartment: r - - formula: C57H106N4O42P4R2X + - compartment: "r" + - formula: "C57H106N4O42P4R2X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02022r + - id: "m02022r" - name: "gpi_sig" - - compartment: r - - formula: Y + - compartment: "r" + - formula: "Y" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02022c + - id: "m02022c" - name: "gpi_sig" - - compartment: c - - formula: Y + - compartment: "c" + - formula: "Y" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02022s + - id: "m02022s" - name: "gpi_sig" - - compartment: s - - formula: Y + - compartment: "s" + - formula: "Y" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02023c + - id: "m02023c" - name: "GQ1b" - - compartment: c - - formula: C88H143N6O54RCO + - compartment: "c" + - formula: "C88H143N6O54RCO" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02023g + - id: "m02023g" - name: "GQ1b" - - compartment: g - - formula: C88H143N6O54RCO + - compartment: "g" + - formula: "C88H143N6O54RCO" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02023s + - id: "m02023s" - name: "GQ1b" - - compartment: s - - formula: C88H143N6O54RCO + - compartment: "s" + - formula: "C88H143N6O54RCO" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02024c + - id: "m02024c" - name: "GQ1balpha" - - compartment: c - - formula: C88H143N6O54RCO + - compartment: "c" + - formula: "C88H143N6O54RCO" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02024g + - id: "m02024g" - name: "GQ1balpha" - - compartment: g - - formula: C88H143N6O54RCO + - compartment: "g" + - formula: "C88H143N6O54RCO" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02024s + - id: "m02024s" - name: "GQ1balpha" - - compartment: s - - formula: C88H143N6O54RCO + - compartment: "s" + - formula: "C88H143N6O54RCO" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02025c + - id: "m02025c" - name: "GQ1c" - - compartment: c - - formula: C88H143N6O54RCO + - compartment: "c" + - formula: "C88H143N6O54RCO" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02025g + - id: "m02025g" - name: "GQ1c" - - compartment: g - - formula: C88H143N6O54RCO + - compartment: "g" + - formula: "C88H143N6O54RCO" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02026c + - id: "m02026c" - name: "GSH" - - compartment: c - - formula: C10H16N3O6S + - compartment: "c" + - formula: "C10H16N3O6S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02026m + - id: "m02026m" - name: "GSH" - - compartment: m - - formula: C10H16N3O6S + - compartment: "m" + - formula: "C10H16N3O6S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02026p + - id: "m02026p" - name: "GSH" - - compartment: p - - formula: C10H16N3O6S + - compartment: "p" + - formula: "C10H16N3O6S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02026r + - id: "m02026r" - name: "GSH" - - compartment: r - - formula: C10H16N3O6S + - compartment: "r" + - formula: "C10H16N3O6S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02026s + - id: "m02026s" - name: "GSH" - - compartment: s - - formula: C10H16N3O6S + - compartment: "s" + - formula: "C10H16N3O6S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02027c + - id: "m02027c" - name: "GSSG" - - compartment: c - - formula: C20H30N6O12S2 + - compartment: "c" + - formula: "C20H30N6O12S2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02027m + - id: "m02027m" - name: "GSSG" - - compartment: m - - formula: C20H30N6O12S2 + - compartment: "m" + - formula: "C20H30N6O12S2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02027r + - id: "m02027r" - name: "GSSG" - - compartment: r - - formula: C20H30N6O12S2 + - compartment: "r" + - formula: "C20H30N6O12S2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02027s + - id: "m02027s" - name: "GSSG" - - compartment: s - - formula: C20H30N6O12S2 + - compartment: "s" + - formula: "C20H30N6O12S2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02028c + - id: "m02028c" - name: "GT1a" - - compartment: c - - formula: C77H127N5O46RCO + - compartment: "c" + - formula: "C77H127N5O46RCO" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02028g + - id: "m02028g" - name: "GT1a" - - compartment: g - - formula: C77H127N5O46RCO + - compartment: "g" + - formula: "C77H127N5O46RCO" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02028s + - id: "m02028s" - name: "GT1a" - - compartment: s - - formula: C77H127N5O46RCO + - compartment: "s" + - formula: "C77H127N5O46RCO" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02029c + - id: "m02029c" - name: "GT1aalpha" - - compartment: c - - formula: C77H127N5O46RCO + - compartment: "c" + - formula: "C77H127N5O46RCO" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02029g + - id: "m02029g" - name: "GT1aalpha" - - compartment: g - - formula: C77H127N5O46RCO + - compartment: "g" + - formula: "C77H127N5O46RCO" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02030c + - id: "m02030c" - name: "GT1b" - - compartment: c - - formula: C77H127N5O46RCO + - compartment: "c" + - formula: "C77H127N5O46RCO" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02030g + - id: "m02030g" - name: "GT1b" - - compartment: g - - formula: C77H127N5O46RCO + - compartment: "g" + - formula: "C77H127N5O46RCO" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02031c + - id: "m02031c" - name: "GT1c" - - compartment: c - - formula: C77H127N5O46RCO + - compartment: "c" + - formula: "C77H127N5O46RCO" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02031g + - id: "m02031g" - name: "GT1c" - - compartment: g - - formula: C77H127N5O46RCO + - compartment: "g" + - formula: "C77H127N5O46RCO" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02032c + - id: "m02032c" - name: "GT2" - - compartment: c - - formula: C71H117N5O41RCO + - compartment: "c" + - formula: "C71H117N5O41RCO" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02032g + - id: "m02032g" - name: "GT2" - - compartment: g - - formula: C71H117N5O41RCO + - compartment: "g" + - formula: "C71H117N5O41RCO" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02033c + - id: "m02033c" - name: "GT3" - - compartment: c - - formula: C63H104N4O36RCO + - compartment: "c" + - formula: "C63H104N4O36RCO" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02033g + - id: "m02033g" - name: "GT3" - - compartment: g - - formula: C63H104N4O36RCO + - compartment: "g" + - formula: "C63H104N4O36RCO" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02034c + - id: "m02034c" - name: "GTP" - - compartment: c - - formula: C10H12N5O14P3 + - compartment: "c" + - formula: "C10H12N5O14P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02034m + - id: "m02034m" - name: "GTP" - - compartment: m - - formula: C10H12N5O14P3 + - compartment: "m" + - formula: "C10H12N5O14P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02034n + - id: "m02034n" - name: "GTP" - - compartment: n - - formula: C10H12N5O14P3 + - compartment: "n" + - formula: "C10H12N5O14P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02034s + - id: "m02034s" - name: "GTP" - - compartment: s - - formula: C10H12N5O14P3 + - compartment: "s" + - formula: "C10H12N5O14P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02035c + - id: "m02035c" - name: "guanidine" - - compartment: c - - formula: CH5N3 + - compartment: "c" + - formula: "CH5N3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02035s + - id: "m02035s" - name: "guanidine" - - compartment: s - - formula: CH5N3 + - compartment: "s" + - formula: "CH5N3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02036c + - id: "m02036c" - name: "guanidinoacetate" - - compartment: c - - formula: C3H7N3O2 + - compartment: "c" + - formula: "C3H7N3O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02037c + - id: "m02037c" - name: "guanine" - - compartment: c - - formula: C5H5N5O + - compartment: "c" + - formula: "C5H5N5O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02037s + - id: "m02037s" - name: "guanine" - - compartment: s - - formula: C5H5N5O + - compartment: "s" + - formula: "C5H5N5O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02038c + - id: "m02038c" - name: "guanosine" - - compartment: c - - formula: C10H13N5O5 + - compartment: "c" + - formula: "C10H13N5O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02038l + - id: "m02038l" - name: "guanosine" - - compartment: l - - formula: C10H13N5O5 + - compartment: "l" + - formula: "C10H13N5O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02038m + - id: "m02038m" - name: "guanosine" - - compartment: m - - formula: C10H13N5O5 + - compartment: "m" + - formula: "C10H13N5O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02038s + - id: "m02038s" - name: "guanosine" - - compartment: s - - formula: C10H13N5O5 + - compartment: "s" + - formula: "C10H13N5O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02039c + - id: "m02039c" - name: "H+" - - compartment: c - - formula: H + - compartment: "c" + - formula: "H" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02039g + - id: "m02039g" - name: "H+" - - compartment: g - - formula: H + - compartment: "g" + - formula: "H" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02039l + - id: "m02039l" - name: "H+" - - compartment: l - - formula: H + - compartment: "l" + - formula: "H" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02039m + - id: "m02039m" - name: "H+" - - compartment: m - - formula: H + - compartment: "m" + - formula: "H" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02039n + - id: "m02039n" - name: "H+" - - compartment: n - - formula: H + - compartment: "n" + - formula: "H" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02039p + - id: "m02039p" - name: "H+" - - compartment: p - - formula: H + - compartment: "p" + - formula: "H" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02039r + - id: "m02039r" - name: "H+" - - compartment: r - - formula: H + - compartment: "r" + - formula: "H" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02039s + - id: "m02039s" - name: "H+" - - compartment: s - - formula: H + - compartment: "s" + - formula: "H" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02040c + - id: "m02040c" - name: "H2O" - - compartment: c - - formula: H2O + - compartment: "c" + - formula: "H2O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02040g + - id: "m02040g" - name: "H2O" - - compartment: g - - formula: H2O + - compartment: "g" + - formula: "H2O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02040l + - id: "m02040l" - name: "H2O" - - compartment: l - - formula: H2O + - compartment: "l" + - formula: "H2O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02040m + - id: "m02040m" - name: "H2O" - - compartment: m - - formula: H2O + - compartment: "m" + - formula: "H2O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02040n + - id: "m02040n" - name: "H2O" - - compartment: n - - formula: H2O + - compartment: "n" + - formula: "H2O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02040p + - id: "m02040p" - name: "H2O" - - compartment: p - - formula: H2O + - compartment: "p" + - formula: "H2O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02040r + - id: "m02040r" - name: "H2O" - - compartment: r - - formula: H2O + - compartment: "r" + - formula: "H2O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02040s + - id: "m02040s" - name: "H2O" - - compartment: s - - formula: H2O + - compartment: "s" + - formula: "H2O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02041c + - id: "m02041c" - name: "H2O2" - - compartment: c - - formula: H2O2 + - compartment: "c" + - formula: "H2O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02041l + - id: "m02041l" - name: "H2O2" - - compartment: l - - formula: H2O2 + - compartment: "l" + - formula: "H2O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02041m + - id: "m02041m" - name: "H2O2" - - compartment: m - - formula: H2O2 + - compartment: "m" + - formula: "H2O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02041n + - id: "m02041n" - name: "H2O2" - - compartment: n - - formula: H2O2 + - compartment: "n" + - formula: "H2O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02041p + - id: "m02041p" - name: "H2O2" - - compartment: p - - formula: H2O2 + - compartment: "p" + - formula: "H2O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02041r + - id: "m02041r" - name: "H2O2" - - compartment: r - - formula: H2O2 + - compartment: "r" + - formula: "H2O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02041s + - id: "m02041s" - name: "H2O2" - - compartment: s - - formula: H2O2 + - compartment: "s" + - formula: "H2O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02042c + - id: "m02042c" - name: "H2S" - - compartment: c - - formula: HS + - compartment: "c" + - formula: "HS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02042s + - id: "m02042s" - name: "H2S" - - compartment: s - - formula: HS + - compartment: "s" + - formula: "HS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02043c + - id: "m02043c" - name: "H2S2O3" - - compartment: c - - formula: HO3S2 + - compartment: "c" + - formula: "HO3S2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02044c + - id: "m02044c" - name: "haptoglobin" - - compartment: c - - formula: C2019H3126N540O606S17 + - compartment: "c" + - formula: "C2019H3126N540O606S17" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02044l + - id: "m02044l" - name: "haptoglobin" - - compartment: l - - formula: C2019H3126N540O606S17 + - compartment: "l" + - formula: "C2019H3126N540O606S17" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02044s + - id: "m02044s" - name: "haptoglobin" - - compartment: s - - formula: C2019H3126N540O606S17 + - compartment: "s" + - formula: "C2019H3126N540O606S17" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02045c + - id: "m02045c" - name: "harman" - - compartment: c - - formula: C12H10N2 + - compartment: "c" + - formula: "C12H10N2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02046c + - id: "m02046c" - name: "HCO3-" - - compartment: c - - formula: CHO3 + - compartment: "c" + - formula: "CHO3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02046m + - id: "m02046m" - name: "HCO3-" - - compartment: m - - formula: CHO3 + - compartment: "m" + - formula: "CHO3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02046s + - id: "m02046s" - name: "HCO3-" - - compartment: s - - formula: CHO3 + - compartment: "s" + - formula: "CHO3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02047l + - id: "m02047l" - name: "HDL remnant" - - compartment: l - - formula: C5849H10226N1057O2508P220S8R365 + - compartment: "l" + - formula: "C5849H10226N1057O2508P220S8R365" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02047s + - id: "m02047s" - name: "HDL remnant" - - compartment: s - - formula: C5849H10226N1057O2508P220S8R365 + - compartment: "s" + - formula: "C5849H10226N1057O2508P220S8R365" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02048r + - id: "m02048r" - name: "HDL" - - compartment: r - - formula: C10869H18346N1057O2848P220S8R525 + - compartment: "r" + - formula: "C10869H18346N1057O2848P220S8R525" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02048s + - id: "m02048s" - name: "HDL" - - compartment: s - - formula: C10869H18346N1057O2848P220S8R525 + - compartment: "s" + - formula: "C10869H18346N1057O2848P220S8R525" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02049c + - id: "m02049c" - name: "heme" - - compartment: c - - formula: C34H30FeN4O4 + - compartment: "c" + - formula: "C34H30FeN4O4" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02049m + - id: "m02049m" - name: "heme" - - compartment: m - - formula: C34H30FeN4O4 + - compartment: "m" + - formula: "C34H30FeN4O4" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02049s + - id: "m02049s" - name: "heme" - - compartment: s - - formula: C34H30FeN4O4 + - compartment: "s" + - formula: "C34H30FeN4O4" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02050c + - id: "m02050c" - name: "hemoglobin" - - compartment: c - - formula: C91H118N4O6Fe + - compartment: "c" + - formula: "C91H118N4O6Fe" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02050s + - id: "m02050s" - name: "hemoglobin" - - compartment: s - - formula: C91H118N4O6Fe + - compartment: "s" + - formula: "C91H118N4O6Fe" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02051c + - id: "m02051c" - name: "heneicosanoylcarnitine" - - compartment: c - - formula: C28H55NO4 + - compartment: "c" + - formula: "C28H55NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02051m + - id: "m02051m" - name: "heneicosanoylcarnitine" - - compartment: m - - formula: C28H55NO4 + - compartment: "m" + - formula: "C28H55NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02051r + - id: "m02051r" - name: "heneicosanoylcarnitine" - - compartment: r - - formula: C28H55NO4 + - compartment: "r" + - formula: "C28H55NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02052c + - id: "m02052c" - name: "heneicosanoyl-CoA" - - compartment: c - - formula: C42H72N7O17P3S + - compartment: "c" + - formula: "C42H72N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02052m + - id: "m02052m" - name: "heneicosanoyl-CoA" - - compartment: m - - formula: C42H72N7O17P3S + - compartment: "m" + - formula: "C42H72N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02052r + - id: "m02052r" - name: "heneicosanoyl-CoA" - - compartment: r - - formula: C42H72N7O17P3S + - compartment: "r" + - formula: "C42H72N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02053c + - id: "m02053c" - name: "henicosanoic acid" - - compartment: c - - formula: C21H41O2 + - compartment: "c" + - formula: "C21H41O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02053l + - id: "m02053l" - name: "henicosanoic acid" - - compartment: l - - formula: C21H41O2 + - compartment: "l" + - formula: "C21H41O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02053r + - id: "m02053r" - name: "henicosanoic acid" - - compartment: r - - formula: C21H41O2 + - compartment: "r" + - formula: "C21H41O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02053s + - id: "m02053s" - name: "henicosanoic acid" - - compartment: s - - formula: C21H41O2 + - compartment: "s" + - formula: "C21H41O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02054g + - id: "m02054g" - name: "heparan sulfate proteoglycan" - - compartment: g - - formula: C79H113N5O101S12X + - compartment: "g" + - formula: "C79H113N5O101S12X" - charge: -13 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02054l + - id: "m02054l" - name: "heparan sulfate proteoglycan" - - compartment: l - - formula: C79H113N5O101S12X + - compartment: "l" + - formula: "C79H113N5O101S12X" - charge: -13 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02054s + - id: "m02054s" - name: "heparan sulfate proteoglycan" - - compartment: s - - formula: C79H113N5O101S12X + - compartment: "s" + - formula: "C79H113N5O101S12X" - charge: -13 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02055l + - id: "m02055l" - name: "heparan sulfate, degradation product 1" - - compartment: l - - formula: C79H115N5O99S11 + - compartment: "l" + - formula: "C79H115N5O99S11" - charge: -12 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02056l + - id: "m02056l" - name: "heparan sulfate, degradation product 10" - - compartment: l - - formula: C55H80N3O70S8 + - compartment: "l" + - formula: "C55H80N3O70S8" - charge: -9 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02057l + - id: "m02057l" - name: "heparan sulfate, degradation product 11" - - compartment: l - - formula: C55H81N3O67S7 + - compartment: "l" + - formula: "C55H81N3O67S7" - charge: -8 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02058l + - id: "m02058l" - name: "heparan sulfate, degradation product 12" - - compartment: l - - formula: C55H82N3O64S6 + - compartment: "l" + - formula: "C55H82N3O64S6" - charge: -7 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02059l + - id: "m02059l" - name: "heparan sulfate, degradation product 13" - - compartment: l - - formula: C55H83N3O61S5 + - compartment: "l" + - formula: "C55H83N3O61S5" - charge: -6 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02060l + - id: "m02060l" - name: "heparan sulfate, degradation product 14" - - compartment: l - - formula: C57H84N3O62S5 + - compartment: "l" + - formula: "C57H84N3O62S5" - charge: -7 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02061l + - id: "m02061l" - name: "heparan sulfate, degradation product 15" - - compartment: l - - formula: C49H71N2O57S5 + - compartment: "l" + - formula: "C49H71N2O57S5" - charge: -7 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02062l + - id: "m02062l" - name: "heparan sulfate, degradation product 16" - - compartment: l - - formula: C49H72N2O54S4 + - compartment: "l" + - formula: "C49H72N2O54S4" - charge: -6 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02063l + - id: "m02063l" - name: "heparan sulfate, degradation product 17" - - compartment: l - - formula: C43H65N2O48S4 + - compartment: "l" + - formula: "C43H65N2O48S4" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02064l + - id: "m02064l" - name: "heparan sulfate, degradation product 18" - - compartment: l - - formula: C43H66N2O45S3 + - compartment: "l" + - formula: "C43H66N2O45S3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02065l + - id: "m02065l" - name: "heparan sulfate, degradation product 19" - - compartment: l - - formula: C43H67N2O42S2 + - compartment: "l" + - formula: "C43H67N2O42S2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02066l + - id: "m02066l" - name: "heparan sulfate, degradation product 2" - - compartment: l - - formula: C79H116N5O96S10 + - compartment: "l" + - formula: "C79H116N5O96S10" - charge: -11 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02067l + - id: "m02067l" - name: "heparan sulfate, degradation product 20" - - compartment: l - - formula: C45H68N2O43S2 + - compartment: "l" + - formula: "C45H68N2O43S2" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02068l + - id: "m02068l" - name: "heparan sulfate, degradation product 21" - - compartment: l - - formula: C37H55NO38S2 + - compartment: "l" + - formula: "C37H55NO38S2" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02069l + - id: "m02069l" - name: "heparan sulfate, degradation product 22" - - compartment: l - - formula: C37H56NO35S + - compartment: "l" + - formula: "C37H56NO35S" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02070l + - id: "m02070l" - name: "heparan sulfate, degradation product 23" - - compartment: l - - formula: C31H49NO29S + - compartment: "l" + - formula: "C31H49NO29S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02071l + - id: "m02071l" - name: "heparan sulfate, degradation product 24" - - compartment: l - - formula: C31H50NO26 + - compartment: "l" + - formula: "C31H50NO26" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02072l + - id: "m02072l" - name: "heparan sulfate, degradation product 25" - - compartment: l - - formula: C23H37O21 + - compartment: "l" + - formula: "C23H37O21" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02073l + - id: "m02073l" - name: "heparan sulfate, degradation product 3" - - compartment: l - - formula: C81H117N5O97S10 + - compartment: "l" + - formula: "C81H117N5O97S10" - charge: -12 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02074l + - id: "m02074l" - name: "heparan sulfate, degradation product 4" - - compartment: l - - formula: C73H104N4O92S10 + - compartment: "l" + - formula: "C73H104N4O92S10" - charge: -12 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02075l + - id: "m02075l" - name: "heparan sulfate, degradation product 5" - - compartment: l - - formula: C67H97N4O86S10 + - compartment: "l" + - formula: "C67H97N4O86S10" - charge: -11 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02076l + - id: "m02076l" - name: "heparan sulfate, degradation product 6" - - compartment: l - - formula: C67H98N4O83S9 + - compartment: "l" + - formula: "C67H98N4O83S9" - charge: -10 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02077l + - id: "m02077l" - name: "heparan sulfate, degradation product 7" - - compartment: l - - formula: C67H99N4O80S8 + - compartment: "l" + - formula: "C67H99N4O80S8" - charge: -9 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02078l + - id: "m02078l" - name: "heparan sulfate, degradation product 8" - - compartment: l - - formula: C69H100N4O81S8 + - compartment: "l" + - formula: "C69H100N4O81S8" - charge: -10 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02079l + - id: "m02079l" - name: "heparan sulfate, degradation product 9" - - compartment: l - - formula: C61H87N3O76S8 + - compartment: "l" + - formula: "C61H87N3O76S8" - charge: -10 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02080l + - id: "m02080l" - name: "heparan sulfate, free chain" - - compartment: l - - formula: C79H114N5O102S12 + - compartment: "l" + - formula: "C79H114N5O102S12" - charge: -13 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02081g + - id: "m02081g" - name: "heparan sulfate, precursor 1" - - compartment: g - - formula: C31H49NO25X + - compartment: "g" + - formula: "C31H49NO25X" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02082g + - id: "m02082g" - name: "heparan sulfate, precursor 10" - - compartment: g - - formula: C79H121N5O77S4X + - compartment: "g" + - formula: "C79H121N5O77S4X" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02083g + - id: "m02083g" - name: "heparan sulfate, precursor 11" - - compartment: g - - formula: C79H121N5O77S4X + - compartment: "g" + - formula: "C79H121N5O77S4X" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02084g + - id: "m02084g" - name: "heparan sulfate, precursor 12" - - compartment: g - - formula: C79H119N5O83S6X + - compartment: "g" + - formula: "C79H119N5O83S6X" - charge: -7 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02085g + - id: "m02085g" - name: "heparan sulfate, precursor 13" - - compartment: g - - formula: C79H116N5O92S9X + - compartment: "g" + - formula: "C79H116N5O92S9X" - charge: -10 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02086g + - id: "m02086g" - name: "heparan sulfate, precursor 14" - - compartment: g - - formula: C79H115N5O95S10X + - compartment: "g" + - formula: "C79H115N5O95S10X" - charge: -11 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02087g + - id: "m02087g" - name: "heparan sulfate, precursor 15" - - compartment: g - - formula: C79H114N5O98S11X + - compartment: "g" + - formula: "C79H114N5O98S11X" - charge: -12 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02088g + - id: "m02088g" - name: "heparan sulfate, precursor 2" - - compartment: g - - formula: C37H56NO31X + - compartment: "g" + - formula: "C37H56NO31X" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02089g + - id: "m02089g" - name: "heparan sulfate, precursor 3" - - compartment: g - - formula: C45H69N2O36X + - compartment: "g" + - formula: "C45H69N2O36X" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02090g + - id: "m02090g" - name: "heparan sulfate, precursor 4" - - compartment: g - - formula: C51H76N2O42X + - compartment: "g" + - formula: "C51H76N2O42X" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02091g + - id: "m02091g" - name: "heparan sulfate, precursor 5" - - compartment: g - - formula: C59H89N3O47X + - compartment: "g" + - formula: "C59H89N3O47X" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02092g + - id: "m02092g" - name: "heparan sulfate, precursor 6" - - compartment: g - - formula: C65H96N3O53X + - compartment: "g" + - formula: "C65H96N3O53X" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02093g + - id: "m02093g" - name: "heparan sulfate, precursor 7" - - compartment: g - - formula: C73H109N4O58X + - compartment: "g" + - formula: "C73H109N4O58X" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02094g + - id: "m02094g" - name: "heparan sulfate, precursor 8" - - compartment: g - - formula: C79H116N4O64X + - compartment: "g" + - formula: "C79H116N4O64X" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02095g + - id: "m02095g" - name: "heparan sulfate, precursor 9" - - compartment: g - - formula: C87H129N5O69X + - compartment: "g" + - formula: "C87H129N5O69X" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02096c + - id: "m02096c" - name: "hepoxilin A3" - - compartment: c - - formula: C20H31O4 + - compartment: "c" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02096p + - id: "m02096p" - name: "hepoxilin A3" - - compartment: p - - formula: C20H31O4 + - compartment: "p" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02096r + - id: "m02096r" - name: "hepoxilin A3" - - compartment: r - - formula: C20H31O4 + - compartment: "r" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02096s + - id: "m02096s" - name: "hepoxilin A3" - - compartment: s - - formula: C20H31O4 + - compartment: "s" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02097c + - id: "m02097c" - name: "hepoxilin A3-c" - - compartment: c - - formula: C30H47N3O10S + - compartment: "c" + - formula: "C30H47N3O10S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02097p + - id: "m02097p" - name: "hepoxilin A3-c" - - compartment: p - - formula: C30H47N3O10S + - compartment: "p" + - formula: "C30H47N3O10S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02097r + - id: "m02097r" - name: "hepoxilin A3-c" - - compartment: r - - formula: C30H47N3O10S + - compartment: "r" + - formula: "C30H47N3O10S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02098c + - id: "m02098c" - name: "hepoxilin B3" - - compartment: c - - formula: C20H31O4 + - compartment: "c" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02099c + - id: "m02099c" - name: "heptadecanoyl-[ACP]" - - compartment: c - - formula: C28H53N2O8PRS + - compartment: "c" + - formula: "C28H53N2O8PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02100c + - id: "m02100c" - name: "heptadecanoylcarnitine" - - compartment: c - - formula: C24H47NO4 + - compartment: "c" + - formula: "C24H47NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02100m + - id: "m02100m" - name: "heptadecanoylcarnitine" - - compartment: m - - formula: C24H47NO4 + - compartment: "m" + - formula: "C24H47NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02100r + - id: "m02100r" - name: "heptadecanoylcarnitine" - - compartment: r - - formula: C24H47NO4 + - compartment: "r" + - formula: "C24H47NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02101c + - id: "m02101c" - name: "heptadecanoyl-CoA" - - compartment: c - - formula: C38H64N7O17P3S + - compartment: "c" + - formula: "C38H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02101m + - id: "m02101m" - name: "heptadecanoyl-CoA" - - compartment: m - - formula: C38H64N7O17P3S + - compartment: "m" + - formula: "C38H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02101r + - id: "m02101r" - name: "heptadecanoyl-CoA" - - compartment: r - - formula: C38H64N7O17P3S + - compartment: "r" + - formula: "C38H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02102c + - id: "m02102c" - name: "heptadecenoylcarnitine(7)" - - compartment: c - - formula: C24H45NO4 + - compartment: "c" + - formula: "C24H45NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02102m + - id: "m02102m" - name: "heptadecenoylcarnitine(7)" - - compartment: m - - formula: C24H45NO4 + - compartment: "m" + - formula: "C24H45NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02102r + - id: "m02102r" - name: "heptadecenoylcarnitine(7)" - - compartment: r - - formula: C24H45NO4 + - compartment: "r" + - formula: "C24H45NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02103c + - id: "m02103c" - name: "heptadecenoylcarnitine(8)" - - compartment: c - - formula: C24H45NO4 + - compartment: "c" + - formula: "C24H45NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02103m + - id: "m02103m" - name: "heptadecenoylcarnitine(8)" - - compartment: m - - formula: C24H45NO4 + - compartment: "m" + - formula: "C24H45NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02103r + - id: "m02103r" - name: "heptadecenoylcarnitine(8)" - - compartment: r - - formula: C24H45NO4 + - compartment: "r" + - formula: "C24H45NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02104c + - id: "m02104c" - name: "heptaglutamyl-folate(DHF)" - - compartment: c - - formula: C49H55N13O24 + - compartment: "c" + - formula: "C49H55N13O24" - charge: -8 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02104l + - id: "m02104l" - name: "heptaglutamyl-folate(DHF)" - - compartment: l - - formula: C49H55N13O24 + - compartment: "l" + - formula: "C49H55N13O24" - charge: -8 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02104m + - id: "m02104m" - name: "heptaglutamyl-folate(DHF)" - - compartment: m - - formula: C49H55N13O24 + - compartment: "m" + - formula: "C49H55N13O24" - charge: -8 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02104s + - id: "m02104s" - name: "heptaglutamyl-folate(DHF)" - - compartment: s - - formula: C49H55N13O24 + - compartment: "s" + - formula: "C49H55N13O24" - charge: -8 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02105c + - id: "m02105c" - name: "heptaglutamyl-folate(THF)" - - compartment: c - - formula: C49H57N13O24 + - compartment: "c" + - formula: "C49H57N13O24" - charge: -8 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02105l + - id: "m02105l" - name: "heptaglutamyl-folate(THF)" - - compartment: l - - formula: C49H57N13O24 + - compartment: "l" + - formula: "C49H57N13O24" - charge: -8 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02105m + - id: "m02105m" - name: "heptaglutamyl-folate(THF)" - - compartment: m - - formula: C49H57N13O24 + - compartment: "m" + - formula: "C49H57N13O24" - charge: -8 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02105s + - id: "m02105s" - name: "heptaglutamyl-folate(THF)" - - compartment: s - - formula: C49H57N13O24 + - compartment: "s" + - formula: "C49H57N13O24" - charge: -8 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02106c + - id: "m02106c" - name: "heptanoyl-[ACP]" - - compartment: c - - formula: C18H33N2O8PRS + - compartment: "c" + - formula: "C18H33N2O8PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02107c + - id: "m02107c" - name: "heptanoyl-CoA" - - compartment: c - - formula: C28H44N7O17P3S + - compartment: "c" + - formula: "C28H44N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02107m + - id: "m02107m" - name: "heptanoyl-CoA" - - compartment: m - - formula: C28H44N7O17P3S + - compartment: "m" + - formula: "C28H44N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02108c + - id: "m02108c" - name: "heptylic acid" - - compartment: c - - formula: C7H13O2 + - compartment: "c" + - formula: "C7H13O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02108s + - id: "m02108s" - name: "heptylic acid" - - compartment: s - - formula: C7H13O2 + - compartment: "s" + - formula: "C7H13O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02109c + - id: "m02109c" - name: "hexacosanoylcarnitine" - - compartment: c - - formula: C33H65NO4 + - compartment: "c" + - formula: "C33H65NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02109r + - id: "m02109r" - name: "hexacosanoylcarnitine" - - compartment: r - - formula: C33H65NO4 + - compartment: "r" + - formula: "C33H65NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02110c + - id: "m02110c" - name: "hexacosanoyl-CoA" - - compartment: c - - formula: C47H82N7O17P3S + - compartment: "c" + - formula: "C47H82N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02110p + - id: "m02110p" - name: "hexacosanoyl-CoA" - - compartment: p - - formula: C47H82N7O17P3S + - compartment: "p" + - formula: "C47H82N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02110r + - id: "m02110r" - name: "hexacosanoyl-CoA" - - compartment: r - - formula: C47H82N7O17P3S + - compartment: "r" + - formula: "C47H82N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02111c + - id: "m02111c" - name: "hexacosenoylcarnitine" - - compartment: c - - formula: C33H63NO4 + - compartment: "c" + - formula: "C33H63NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02111r + - id: "m02111r" - name: "hexacosenoylcarnitine" - - compartment: r - - formula: C33H63NO4 + - compartment: "r" + - formula: "C33H63NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02112c + - id: "m02112c" - name: "hexacosenoyl-CoA" - - compartment: c - - formula: C47H80N7O17P3S + - compartment: "c" + - formula: "C47H80N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02112p + - id: "m02112p" - name: "hexacosenoyl-CoA" - - compartment: p - - formula: C47H80N7O17P3S + - compartment: "p" + - formula: "C47H80N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02112r + - id: "m02112r" - name: "hexacosenoyl-CoA" - - compartment: r - - formula: C47H80N7O17P3S + - compartment: "r" + - formula: "C47H80N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02113c + - id: "m02113c" - name: "hexadecanal" - - compartment: c - - formula: C16H32O + - compartment: "c" + - formula: "C16H32O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02113r + - id: "m02113r" - name: "hexadecanal" - - compartment: r - - formula: C16H32O + - compartment: "r" + - formula: "C16H32O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02114p + - id: "m02114p" - name: "hexadecanol" - - compartment: p - - formula: C16H34O + - compartment: "p" + - formula: "C16H34O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02115c + - id: "m02115c" - name: "hexadecanoyl-[ACP]" - - compartment: c - - formula: C27H51N2O8PRS + - compartment: "c" + - formula: "C27H51N2O8PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02116c + - id: "m02116c" - name: "hexadecenal" - - compartment: c - - formula: C16H30O + - compartment: "c" + - formula: "C16H30O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02117c + - id: "m02117c" - name: "hexadecenoylcarnitine(9)" - - compartment: c - - formula: C23H43NO4 + - compartment: "c" + - formula: "C23H43NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02117m + - id: "m02117m" - name: "hexadecenoylcarnitine(9)" - - compartment: m - - formula: C23H43NO4 + - compartment: "m" + - formula: "C23H43NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02117r + - id: "m02117r" - name: "hexadecenoylcarnitine(9)" - - compartment: r - - formula: C23H43NO4 + - compartment: "r" + - formula: "C23H43NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02118c + - id: "m02118c" - name: "hexaglutamyl-folate(DHF)" - - compartment: c - - formula: C44H49N12O21 + - compartment: "c" + - formula: "C44H49N12O21" - charge: -7 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02118l + - id: "m02118l" - name: "hexaglutamyl-folate(DHF)" - - compartment: l - - formula: C44H49N12O21 + - compartment: "l" + - formula: "C44H49N12O21" - charge: -7 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02118m + - id: "m02118m" - name: "hexaglutamyl-folate(DHF)" - - compartment: m - - formula: C44H49N12O21 + - compartment: "m" + - formula: "C44H49N12O21" - charge: -7 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02118s + - id: "m02118s" - name: "hexaglutamyl-folate(DHF)" - - compartment: s - - formula: C44H49N12O21 + - compartment: "s" + - formula: "C44H49N12O21" - charge: -7 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02119c + - id: "m02119c" - name: "hexaglutamyl-folate(THF)" - - compartment: c - - formula: C44H51N12O21 + - compartment: "c" + - formula: "C44H51N12O21" - charge: -7 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02119l + - id: "m02119l" - name: "hexaglutamyl-folate(THF)" - - compartment: l - - formula: C44H51N12O21 + - compartment: "l" + - formula: "C44H51N12O21" - charge: -7 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02119m + - id: "m02119m" - name: "hexaglutamyl-folate(THF)" - - compartment: m - - formula: C44H51N12O21 + - compartment: "m" + - formula: "C44H51N12O21" - charge: -7 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02119s + - id: "m02119s" - name: "hexaglutamyl-folate(THF)" - - compartment: s - - formula: C44H51N12O21 + - compartment: "s" + - formula: "C44H51N12O21" - charge: -7 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02120c + - id: "m02120c" - name: "hexanoic acid" - - compartment: c - - formula: C6H11O2 + - compartment: "c" + - formula: "C6H11O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02120s + - id: "m02120s" - name: "hexanoic acid" - - compartment: s - - formula: C6H11O2 + - compartment: "s" + - formula: "C6H11O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02121c + - id: "m02121c" - name: "hexanoyl-[ACP]" - - compartment: c - - formula: C17H31N2O8PRS + - compartment: "c" + - formula: "C17H31N2O8PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02122c + - id: "m02122c" - name: "hexanoyl-CoA" - - compartment: c - - formula: C27H42N7O17P3S + - compartment: "c" + - formula: "C27H42N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02122m + - id: "m02122m" - name: "hexanoyl-CoA" - - compartment: m - - formula: C27H42N7O17P3S + - compartment: "m" + - formula: "C27H42N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02122p + - id: "m02122p" - name: "hexanoyl-CoA" - - compartment: p - - formula: C27H42N7O17P3S + - compartment: "p" + - formula: "C27H42N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02123c + - id: "m02123c" - name: "hippurate" - - compartment: c - - formula: C9H8NO3 + - compartment: "c" + - formula: "C9H8NO3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02124c + - id: "m02124c" - name: "histamine" - - compartment: c - - formula: C5H10N3 + - compartment: "c" + - formula: "C5H10N3" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02124s + - id: "m02124s" - name: "histamine" - - compartment: s - - formula: C5H10N3 + - compartment: "s" + - formula: "C5H10N3" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02125c + - id: "m02125c" - name: "histidine" - - compartment: c - - formula: C6H9N3O2 + - compartment: "c" + - formula: "C6H9N3O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02125l + - id: "m02125l" - name: "histidine" - - compartment: l - - formula: C6H9N3O2 + - compartment: "l" + - formula: "C6H9N3O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02125m + - id: "m02125m" - name: "histidine" - - compartment: m - - formula: C6H9N3O2 + - compartment: "m" + - formula: "C6H9N3O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02125s + - id: "m02125s" - name: "histidine" - - compartment: s - - formula: C6H9N3O2 + - compartment: "s" + - formula: "C6H9N3O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02126c + - id: "m02126c" - name: "histidyl-prolinamide" - - compartment: c - - formula: C11H18N5O2 + - compartment: "c" + - formula: "C11H18N5O2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02127c + - id: "m02127c" - name: "histone-L-lysine" - - compartment: c - - formula: C7H14N3O2R2 + - compartment: "c" + - formula: "C7H14N3O2R2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02127n + - id: "m02127n" - name: "histone-L-lysine" - - compartment: n - - formula: C7H14N3O2R2 + - compartment: "n" + - formula: "C7H14N3O2R2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02128c + - id: "m02128c" - name: "histone-N6-acetyl-L-lysine" - - compartment: c - - formula: C9H15N3O3R2 + - compartment: "c" + - formula: "C9H15N3O3R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02129n + - id: "m02129n" - name: "histone-N6-methyl-L-lysine" - - compartment: n - - formula: C8H16N3O2R2 + - compartment: "n" + - formula: "C8H16N3O2R2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02130c + - id: "m02130c" - name: "HMA" - - compartment: c - - formula: C25H47N2O9PRS + - compartment: "c" + - formula: "C25H47N2O9PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02131c + - id: "m02131c" - name: "HMG-CoA" - - compartment: c - - formula: C27H39N7O20P3S + - compartment: "c" + - formula: "C27H39N7O20P3S" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02131m + - id: "m02131m" - name: "HMG-CoA" - - compartment: m - - formula: C27H39N7O20P3S + - compartment: "m" + - formula: "C27H39N7O20P3S" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02131p + - id: "m02131p" - name: "HMG-CoA" - - compartment: p - - formula: C27H39N7O20P3S + - compartment: "p" + - formula: "C27H39N7O20P3S" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02132c + - id: "m02132c" - name: "homocarnosine" - - compartment: c - - formula: C10H15N4O3 + - compartment: "c" + - formula: "C10H15N4O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02133c + - id: "m02133c" - name: "homocysteine" - - compartment: c - - formula: C4H9NO2S + - compartment: "c" + - formula: "C4H9NO2S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02134c + - id: "m02134c" - name: "homocysteine-thiolactone" - - compartment: c - - formula: C4H8NOS + - compartment: "c" + - formula: "C4H8NOS" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02135c + - id: "m02135c" - name: "homogentisate" - - compartment: c - - formula: C8H7O4 + - compartment: "c" + - formula: "C8H7O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02136c + - id: "m02136c" - name: "homoserine" - - compartment: c - - formula: C4H9NO3 + - compartment: "c" + - formula: "C4H9NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02136s + - id: "m02136s" - name: "homoserine" - - compartment: s - - formula: C4H9NO3 + - compartment: "s" + - formula: "C4H9NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02137c + - id: "m02137c" - name: "homovanillate" - - compartment: c - - formula: C9H9O4 + - compartment: "c" + - formula: "C9H9O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02137s + - id: "m02137s" - name: "homovanillate" - - compartment: s - - formula: C9H9O4 + - compartment: "s" + - formula: "C9H9O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02138c + - id: "m02138c" - name: "hordenine" - - compartment: c - - formula: C10H16NO + - compartment: "c" + - formula: "C10H16NO" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02139l + - id: "m02139l" - name: "hyaluronan biosynthesis, precursor 1" - - compartment: l - - formula: C14H20NO11 + - compartment: "l" + - formula: "C14H20NO11" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02139s + - id: "m02139s" - name: "hyaluronan biosynthesis, precursor 1" - - compartment: s - - formula: C14H20NO11 + - compartment: "s" + - formula: "C14H20NO11" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02140l + - id: "m02140l" - name: "hyaluronan degradation product 1" - - compartment: l - - formula: C22H33N2O16 + - compartment: "l" + - formula: "C22H33N2O16" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02141l + - id: "m02141l" - name: "hyaluronate" - - compartment: l - - formula: C28H40N2O22 + - compartment: "l" + - formula: "C28H40N2O22" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02141s + - id: "m02141s" - name: "hyaluronate" - - compartment: s - - formula: C28H40N2O22 + - compartment: "s" + - formula: "C28H40N2O22" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02142m + - id: "m02142m" - name: "hydracrylate" - - compartment: m - - formula: C3H5O3 + - compartment: "m" + - formula: "C3H5O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02143c + - id: "m02143c" - name: "hydrobromic acid" - - compartment: c - - formula: Br + - compartment: "c" + - formula: "Br" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02144c + - id: "m02144c" - name: "hydrochloride" - - compartment: c - - formula: HCl + - compartment: "c" + - formula: "HCl" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02145c + - id: "m02145c" - name: "hydrogen-cyanide" - - compartment: c - - formula: CHN + - compartment: "c" + - formula: "CHN" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02145m + - id: "m02145m" - name: "hydrogen-cyanide" - - compartment: m - - formula: CHN + - compartment: "m" + - formula: "CHN" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02145s + - id: "m02145s" - name: "hydrogen-cyanide" - - compartment: s - - formula: CHN + - compartment: "s" + - formula: "CHN" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02146c + - id: "m02146c" - name: "hydroiodic acid" - - compartment: c - - formula: I + - compartment: "c" + - formula: "I" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02147c + - id: "m02147c" - name: "hydroxide" - - compartment: c - - formula: HO + - compartment: "c" + - formula: "HO" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02147m + - id: "m02147m" - name: "hydroxide" - - compartment: m - - formula: HO + - compartment: "m" + - formula: "HO" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02147s + - id: "m02147s" - name: "hydroxide" - - compartment: s - - formula: HO + - compartment: "s" + - formula: "HO" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02148c + - id: "m02148c" - name: "hydroxyacetone" - - compartment: c - - formula: C3H6O2 + - compartment: "c" + - formula: "C3H6O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02149c + - id: "m02149c" - name: "hydroxyl radical" - - compartment: c - - formula: HO + - compartment: "c" + - formula: "HO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02150c + - id: "m02150c" - name: "hydroxylated-ebastine" - - compartment: c - - formula: C32H39NO3 + - compartment: "c" + - formula: "C32H39NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02150r + - id: "m02150r" - name: "hydroxylated-ebastine" - - compartment: r - - formula: C32H39NO3 + - compartment: "r" + - formula: "C32H39NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02150s + - id: "m02150s" - name: "hydroxylated-ebastine" - - compartment: s - - formula: C32H39NO3 + - compartment: "s" + - formula: "C32H39NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02151c + - id: "m02151c" - name: "hydroxymethylbilane" - - compartment: c - - formula: C40H38N4O17 + - compartment: "c" + - formula: "C40H38N4O17" - charge: -8 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02152c + - id: "m02152c" - name: "hydroxymethylglutathione" - - compartment: c - - formula: C11H18N3O7S + - compartment: "c" + - formula: "C11H18N3O7S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02153c + - id: "m02153c" - name: "hydroxy-nifedipine" - - compartment: c - - formula: C17H18N2O7 + - compartment: "c" + - formula: "C17H18N2O7" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02153s + - id: "m02153s" - name: "hydroxy-nifedipine" - - compartment: s - - formula: C17H18N2O7 + - compartment: "s" + - formula: "C17H18N2O7" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02154c + - id: "m02154c" - name: "hydroxypyruvate" - - compartment: c - - formula: C3H3O4 + - compartment: "c" + - formula: "C3H3O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02154m + - id: "m02154m" - name: "hydroxypyruvate" - - compartment: m - - formula: C3H3O4 + - compartment: "m" + - formula: "C3H3O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02154p + - id: "m02154p" - name: "hydroxypyruvate" - - compartment: p - - formula: C3H3O4 + - compartment: "p" + - formula: "C3H3O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02155c + - id: "m02155c" - name: "hyodeoxycholate" - - compartment: c - - formula: C24H40O4 + - compartment: "c" + - formula: "C24H40O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02155s + - id: "m02155s" - name: "hyodeoxycholate" - - compartment: s - - formula: C24H40O4 + - compartment: "s" + - formula: "C24H40O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02156c + - id: "m02156c" - name: "hypochlorite" - - compartment: c - - formula: ClHO + - compartment: "c" + - formula: "ClHO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02157c + - id: "m02157c" - name: "hypotaurine" - - compartment: c - - formula: C2H7NO2S + - compartment: "c" + - formula: "C2H7NO2S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02158c + - id: "m02158c" - name: "hypothiocyanite" - - compartment: c - - formula: CHNOS + - compartment: "c" + - formula: "CHNOS" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02159c + - id: "m02159c" - name: "hypoxanthine" - - compartment: c - - formula: C5H4N4O + - compartment: "c" + - formula: "C5H4N4O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02159p + - id: "m02159p" - name: "hypoxanthine" - - compartment: p - - formula: C5H4N4O + - compartment: "p" + - formula: "C5H4N4O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02159s + - id: "m02159s" - name: "hypoxanthine" - - compartment: s - - formula: C5H4N4O + - compartment: "s" + - formula: "C5H4N4O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02161c + - id: "m02161c" - name: "IDP" - - compartment: c - - formula: C10H11N4O11P2 + - compartment: "c" + - formula: "C10H11N4O11P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02161m + - id: "m02161m" - name: "IDP" - - compartment: m - - formula: C10H11N4O11P2 + - compartment: "m" + - formula: "C10H11N4O11P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02161n + - id: "m02161n" - name: "IDP" - - compartment: n - - formula: C10H11N4O11P2 + - compartment: "n" + - formula: "C10H11N4O11P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02161s + - id: "m02161s" - name: "IDP" - - compartment: s - - formula: C10H11N4O11P2 + - compartment: "s" + - formula: "C10H11N4O11P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02162c + - id: "m02162c" - name: "III3,IV2Fuc-nLc4Cer" - - compartment: c - - formula: C57H99N2O31R + - compartment: "c" + - formula: "C57H99N2O31R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02163c + - id: "m02163c" - name: "III3Fuc-nLc4Cer" - - compartment: c - - formula: C51H89N2O27R + - compartment: "c" + - formula: "C51H89N2O27R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02164c + - id: "m02164c" - name: "III3Fuc-nLc6Cer" - - compartment: c - - formula: C64H112N3O36RCO + - compartment: "c" + - formula: "C64H112N3O36RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02164g + - id: "m02164g" - name: "III3Fuc-nLc6Cer" - - compartment: g - - formula: C64H112N3O36RCO + - compartment: "g" + - formula: "C64H112N3O36RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02164s + - id: "m02164s" - name: "III3Fuc-nLc6Cer" - - compartment: s - - formula: C64H112N3O36RCO + - compartment: "s" + - formula: "C64H112N3O36RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02165c + - id: "m02165c" - name: "imidazole-4-acetaldehyde" - - compartment: c - - formula: C5H6N2O + - compartment: "c" + - formula: "C5H6N2O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02165m + - id: "m02165m" - name: "imidazole-4-acetaldehyde" - - compartment: m - - formula: C5H6N2O + - compartment: "m" + - formula: "C5H6N2O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02166c + - id: "m02166c" - name: "imidazole-4-acetate" - - compartment: c - - formula: C5H5N2O2 + - compartment: "c" + - formula: "C5H5N2O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02166m + - id: "m02166m" - name: "imidazole-4-acetate" - - compartment: m - - formula: C5H5N2O2 + - compartment: "m" + - formula: "C5H5N2O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02167c + - id: "m02167c" - name: "IMP" - - compartment: c - - formula: C10H11N4O8P + - compartment: "c" + - formula: "C10H11N4O8P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02167m + - id: "m02167m" - name: "IMP" - - compartment: m - - formula: C10H11N4O8P + - compartment: "m" + - formula: "C10H11N4O8P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02167s + - id: "m02167s" - name: "IMP" - - compartment: s - - formula: C10H11N4O8P + - compartment: "s" + - formula: "C10H11N4O8P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02168c + - id: "m02168c" - name: "indole-3-acetaldehyde" - - compartment: c - - formula: C10H9NO + - compartment: "c" + - formula: "C10H9NO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02168m + - id: "m02168m" - name: "indole-3-acetaldehyde" - - compartment: m - - formula: C10H9NO + - compartment: "m" + - formula: "C10H9NO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02169c + - id: "m02169c" - name: "indoleacetate" - - compartment: c - - formula: C10H8NO2 + - compartment: "c" + - formula: "C10H8NO2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02169m + - id: "m02169m" - name: "indoleacetate" - - compartment: m - - formula: C10H8NO2 + - compartment: "m" + - formula: "C10H8NO2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02170c + - id: "m02170c" - name: "inosine" - - compartment: c - - formula: C10H12N4O5 + - compartment: "c" + - formula: "C10H12N4O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02170m + - id: "m02170m" - name: "inosine" - - compartment: m - - formula: C10H12N4O5 + - compartment: "m" + - formula: "C10H12N4O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02170s + - id: "m02170s" - name: "inosine" - - compartment: s - - formula: C10H12N4O5 + - compartment: "s" + - formula: "C10H12N4O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02171c + - id: "m02171c" - name: "inositol" - - compartment: c - - formula: C6H12O6 + - compartment: "c" + - formula: "C6H12O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02171r + - id: "m02171r" - name: "inositol" - - compartment: r - - formula: C6H12O6 + - compartment: "r" + - formula: "C6H12O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02171s + - id: "m02171s" - name: "inositol" - - compartment: s - - formula: C6H12O6 + - compartment: "s" + - formula: "C6H12O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02172c + - id: "m02172c" - name: "inositol-1,3-bisphosphate" - - compartment: c - - formula: C6H10O12P2 + - compartment: "c" + - formula: "C6H10O12P2" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02173c + - id: "m02173c" - name: "inositol-1-phosphate" - - compartment: c - - formula: C6H11O9P + - compartment: "c" + - formula: "C6H11O9P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02173n + - id: "m02173n" - name: "inositol-1-phosphate" - - compartment: n - - formula: C6H11O9P + - compartment: "n" + - formula: "C6H11O9P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02174c + - id: "m02174c" - name: "iodide" - - compartment: c - - formula: I + - compartment: "c" + - formula: "I" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02174r + - id: "m02174r" - name: "iodide" - - compartment: r - - formula: I + - compartment: "r" + - formula: "I" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02174s + - id: "m02174s" - name: "iodide" - - compartment: s - - formula: I + - compartment: "s" + - formula: "I" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02175c + - id: "m02175c" - name: "iodine" - - compartment: c - - formula: I2 + - compartment: "c" + - formula: "I2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02176c + - id: "m02176c" - name: "iso-A2E(11-cis)" - - compartment: c - - formula: C42H58NO + - compartment: "c" + - formula: "C42H58NO" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02177c + - id: "m02177c" - name: "iso-A2E(13-cis)" - - compartment: c - - formula: C42H58NO + - compartment: "c" + - formula: "C42H58NO" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02178c + - id: "m02178c" - name: "iso-A2E(9,13-di-cis)" - - compartment: c - - formula: C42H58NO + - compartment: "c" + - formula: "C42H58NO" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02179c + - id: "m02179c" - name: "iso-A2E(9-cis)" - - compartment: c - - formula: C42H58NO + - compartment: "c" + - formula: "C42H58NO" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02180m + - id: "m02180m" - name: "isobutyryl-CoA" - - compartment: m - - formula: C25H38N7O17P3S + - compartment: "m" + - formula: "C25H38N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02181m + - id: "m02181m" - name: "isobutyrylglycine" - - compartment: m - - formula: C6H10NO3 + - compartment: "m" + - formula: "C6H10NO3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02182c + - id: "m02182c" - name: "isocaproic-aldehyde" - - compartment: c - - formula: C6H12O + - compartment: "c" + - formula: "C6H12O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02182m + - id: "m02182m" - name: "isocaproic-aldehyde" - - compartment: m - - formula: C6H12O + - compartment: "m" + - formula: "C6H12O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02182s + - id: "m02182s" - name: "isocaproic-aldehyde" - - compartment: s - - formula: C6H12O + - compartment: "s" + - formula: "C6H12O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02183c + - id: "m02183c" - name: "isocitrate" - - compartment: c - - formula: C6H5O7 + - compartment: "c" + - formula: "C6H5O7" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02183m + - id: "m02183m" - name: "isocitrate" - - compartment: m - - formula: C6H5O7 + - compartment: "m" + - formula: "C6H5O7" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02183p + - id: "m02183p" - name: "isocitrate" - - compartment: p - - formula: C6H5O7 + - compartment: "p" + - formula: "C6H5O7" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02184c + - id: "m02184c" - name: "isoleucine" - - compartment: c - - formula: C6H13NO2 + - compartment: "c" + - formula: "C6H13NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02184l + - id: "m02184l" - name: "isoleucine" - - compartment: l - - formula: C6H13NO2 + - compartment: "l" + - formula: "C6H13NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02184m + - id: "m02184m" - name: "isoleucine" - - compartment: m - - formula: C6H13NO2 + - compartment: "m" + - formula: "C6H13NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02184s + - id: "m02184s" - name: "isoleucine" - - compartment: s - - formula: C6H13NO2 + - compartment: "s" + - formula: "C6H13NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02185s + - id: "m02185s" - name: "isomaltose" - - compartment: s - - formula: C12H22O11 + - compartment: "s" + - formula: "C12H22O11" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02186c + - id: "m02186c" - name: "iso-nLc8Cer" - - compartment: c - - formula: C73H125N4O43R + - compartment: "c" + - formula: "C73H125N4O43R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02187c + - id: "m02187c" - name: "isopentenyl-pPP" - - compartment: c - - formula: C5H9O7P2 + - compartment: "c" + - formula: "C5H9O7P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02187p + - id: "m02187p" - name: "isopentenyl-pPP" - - compartment: p - - formula: C5H9O7P2 + - compartment: "p" + - formula: "C5H9O7P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02188c + - id: "m02188c" - name: "isoputreanine" - - compartment: c - - formula: C7H17N2O2 + - compartment: "c" + - formula: "C7H17N2O2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02189m + - id: "m02189m" - name: "isovaleryl-CoA" - - compartment: m - - formula: C26H40N7O17P3S + - compartment: "m" + - formula: "C26H40N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02190m + - id: "m02190m" - name: "isovalerylglycine" - - compartment: m - - formula: C7H12NO3 + - compartment: "m" + - formula: "C7H12NO3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02191c + - id: "m02191c" - name: "itaconate" - - compartment: c - - formula: C5H4O4 + - compartment: "c" + - formula: "C5H4O4" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02191m + - id: "m02191m" - name: "itaconate" - - compartment: m - - formula: C5H4O4 + - compartment: "m" + - formula: "C5H4O4" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02191s + - id: "m02191s" - name: "itaconate" - - compartment: s - - formula: C5H4O4 + - compartment: "s" + - formula: "C5H4O4" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02192m + - id: "m02192m" - name: "itaconyl-CoA" - - compartment: m - - formula: C26H35N7O19P3S + - compartment: "m" + - formula: "C26H35N7O19P3S" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02193c + - id: "m02193c" - name: "ITP" - - compartment: c - - formula: C10H11N4O14P3 + - compartment: "c" + - formula: "C10H11N4O14P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02193m + - id: "m02193m" - name: "ITP" - - compartment: m - - formula: C10H11N4O14P3 + - compartment: "m" + - formula: "C10H11N4O14P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02193n + - id: "m02193n" - name: "ITP" - - compartment: n - - formula: C10H11N4O14P3 + - compartment: "n" + - formula: "C10H11N4O14P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02193s + - id: "m02193s" - name: "ITP" - - compartment: s - - formula: C10H11N4O14P3 + - compartment: "s" + - formula: "C10H11N4O14P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02194c + - id: "m02194c" - name: "IV2Fuc,III4Fuc-Lc4Cer" - - compartment: c - - formula: C57H99N2O31R + - compartment: "c" + - formula: "C57H99N2O31R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02195c + - id: "m02195c" - name: "IV2Fuc-Lc4Cer" - - compartment: c - - formula: C50H89N2O26RCO + - compartment: "c" + - formula: "C50H89N2O26RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02196c + - id: "m02196c" - name: "IV2Fuc-nLc4Cer" - - compartment: c - - formula: C51H89N2O27R + - compartment: "c" + - formula: "C51H89N2O27R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02197c + - id: "m02197c" - name: "IV3GalNAca-Gb4Cer" - - compartment: c - - formula: C53H92N3O28R + - compartment: "c" + - formula: "C53H92N3O28R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02198c + - id: "m02198c" - name: "IV3Neu5Ac,III4Fuc-Lc4Cer" - - compartment: c - - formula: C61H105N3O34RCO + - compartment: "c" + - formula: "C61H105N3O34RCO" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02198g + - id: "m02198g" - name: "IV3Neu5Ac,III4Fuc-Lc4Cer" - - compartment: g - - formula: C61H105N3O34RCO + - compartment: "g" + - formula: "C61H105N3O34RCO" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02198s + - id: "m02198s" - name: "IV3Neu5Ac,III4Fuc-Lc4Cer" - - compartment: s - - formula: C61H105N3O34RCO + - compartment: "s" + - formula: "C61H105N3O34RCO" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02199c + - id: "m02199c" - name: "IV3NeuAc,III3Fuc-nLc4Cer" - - compartment: c - - formula: C61H105N3O34RCO + - compartment: "c" + - formula: "C61H105N3O34RCO" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02199g + - id: "m02199g" - name: "IV3NeuAc,III3Fuc-nLc4Cer" - - compartment: g - - formula: C61H105N3O34RCO + - compartment: "g" + - formula: "C61H105N3O34RCO" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02199s + - id: "m02199s" - name: "IV3NeuAc,III3Fuc-nLc4Cer" - - compartment: s - - formula: C61H105N3O34RCO + - compartment: "s" + - formula: "C61H105N3O34RCO" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02200c + - id: "m02200c" - name: "K+" - - compartment: c - - formula: K + - compartment: "c" + - formula: "K" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02200g + - id: "m02200g" - name: "K+" - - compartment: g - - formula: K + - compartment: "g" + - formula: "K" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02200s + - id: "m02200s" - name: "K+" - - compartment: s - - formula: K + - compartment: "s" + - formula: "K" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02201g + - id: "m02201g" - name: "keratan sulfate I biosynthesis, precursor 1" - - compartment: g - - formula: C79H129N5O57X + - compartment: "g" + - formula: "C79H129N5O57X" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02202g + - id: "m02202g" - name: "keratan sulfate I biosynthesis, precursor 10" - - compartment: g - - formula: C129H209N9O98S2X + - compartment: "g" + - formula: "C129H209N9O98S2X" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02203g + - id: "m02203g" - name: "keratan sulfate I biosynthesis, precursor 11" - - compartment: g - - formula: C129H208N9O101S3X + - compartment: "g" + - formula: "C129H208N9O101S3X" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02204g + - id: "m02204g" - name: "keratan sulfate I biosynthesis, precursor 12" - - compartment: g - - formula: C135H218N9O106S3X + - compartment: "g" + - formula: "C135H218N9O106S3X" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02205g + - id: "m02205g" - name: "keratan sulfate I biosynthesis, precursor 13" - - compartment: g - - formula: C143H231N10O111S3X + - compartment: "g" + - formula: "C143H231N10O111S3X" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02206g + - id: "m02206g" - name: "keratan sulfate I biosynthesis, precursor 14" - - compartment: g - - formula: C143H230N10O114S4X + - compartment: "g" + - formula: "C143H230N10O114S4X" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02207g + - id: "m02207g" - name: "keratan sulfate I biosynthesis, precursor 15" - - compartment: g - - formula: C149H240N10O119S4X + - compartment: "g" + - formula: "C149H240N10O119S4X" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02208g + - id: "m02208g" - name: "keratan sulfate I biosynthesis, precursor 16" - - compartment: g - - formula: C157H253N11O124S4X + - compartment: "g" + - formula: "C157H253N11O124S4X" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02209g + - id: "m02209g" - name: "keratan sulfate I biosynthesis, precursor 17" - - compartment: g - - formula: C157H252N11O127S5X + - compartment: "g" + - formula: "C157H252N11O127S5X" - charge: -6 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02210g + - id: "m02210g" - name: "keratan sulfate I biosynthesis, precursor 18" - - compartment: g - - formula: C163H262N11O132S5X + - compartment: "g" + - formula: "C163H262N11O132S5X" - charge: -6 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02211g + - id: "m02211g" - name: "keratan sulfate I biosynthesis, precursor 19" - - compartment: g - - formula: C171H275N12O137S5X + - compartment: "g" + - formula: "C171H275N12O137S5X" - charge: -6 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02212g + - id: "m02212g" - name: "keratan sulfate I biosynthesis, precursor 2" - - compartment: g - - formula: C87H142N6O62X + - compartment: "g" + - formula: "C87H142N6O62X" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02213g + - id: "m02213g" - name: "keratan sulfate I biosynthesis, precursor 20" - - compartment: g - - formula: C171H274N12O140S6X + - compartment: "g" + - formula: "C171H274N12O140S6X" - charge: -7 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02214g + - id: "m02214g" - name: "keratan sulfate I biosynthesis, precursor 21" - - compartment: g - - formula: C177H284N12O145S6X + - compartment: "g" + - formula: "C177H284N12O145S6X" - charge: -7 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02215g + - id: "m02215g" - name: "keratan sulfate I biosynthesis, precursor 22" - - compartment: g - - formula: C185H297N13O150S6X + - compartment: "g" + - formula: "C185H297N13O150S6X" - charge: -7 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02216g + - id: "m02216g" - name: "keratan sulfate I biosynthesis, precursor 23" - - compartment: g - - formula: C185H296N13O153S7X + - compartment: "g" + - formula: "C185H296N13O153S7X" - charge: -8 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02217g + - id: "m02217g" - name: "keratan sulfate I biosynthesis, precursor 24" - - compartment: g - - formula: C191H306N13O158S7X + - compartment: "g" + - formula: "C191H306N13O158S7X" - charge: -8 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02218g + - id: "m02218g" - name: "keratan sulfate I biosynthesis, precursor 25" - - compartment: g - - formula: C199H319N14O163S7X + - compartment: "g" + - formula: "C199H319N14O163S7X" - charge: -8 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02219g + - id: "m02219g" - name: "keratan sulfate I biosynthesis, precursor 26" - - compartment: g - - formula: C199H318N14O166S8X + - compartment: "g" + - formula: "C199H318N14O166S8X" - charge: -9 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02220g + - id: "m02220g" - name: "keratan sulfate I biosynthesis, precursor 27" - - compartment: g - - formula: C205H328N14O171S8X + - compartment: "g" + - formula: "C205H328N14O171S8X" - charge: -9 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02221g + - id: "m02221g" - name: "keratan sulfate I biosynthesis, precursor 28" - - compartment: g - - formula: C213H341N15O176S8X + - compartment: "g" + - formula: "C213H341N15O176S8X" - charge: -9 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02222g + - id: "m02222g" - name: "keratan sulfate I biosynthesis, precursor 29" - - compartment: g - - formula: C213H340N15O179S9X + - compartment: "g" + - formula: "C213H340N15O179S9X" - charge: -10 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02223g + - id: "m02223g" - name: "keratan sulfate I biosynthesis, precursor 3" - - compartment: g - - formula: C93H152N6O67X + - compartment: "g" + - formula: "C93H152N6O67X" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02224g + - id: "m02224g" - name: "keratan sulfate I biosynthesis, precursor 30" - - compartment: g - - formula: C219H350N15O184S9X + - compartment: "g" + - formula: "C219H350N15O184S9X" - charge: -10 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02225g + - id: "m02225g" - name: "keratan sulfate I biosynthesis, precursor 31" - - compartment: g - - formula: C227H363N16O189S9X + - compartment: "g" + - formula: "C227H363N16O189S9X" - charge: -10 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02226g + - id: "m02226g" - name: "keratan sulfate I biosynthesis, precursor 32" - - compartment: g - - formula: C227H362N16O192S10X + - compartment: "g" + - formula: "C227H362N16O192S10X" - charge: -11 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02227g + - id: "m02227g" - name: "keratan sulfate I biosynthesis, precursor 33" - - compartment: g - - formula: C233H372N16O197S10X + - compartment: "g" + - formula: "C233H372N16O197S10X" - charge: -11 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02228g + - id: "m02228g" - name: "keratan sulfate I biosynthesis, precursor 34" - - compartment: g - - formula: C241H385N17O202S10X + - compartment: "g" + - formula: "C241H385N17O202S10X" - charge: -11 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02229g + - id: "m02229g" - name: "keratan sulfate I biosynthesis, precursor 35" - - compartment: g - - formula: C241H384N17O205S11X + - compartment: "g" + - formula: "C241H384N17O205S11X" - charge: -12 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02230g + - id: "m02230g" - name: "keratan sulfate I biosynthesis, precursor 36" - - compartment: g - - formula: C247H394N17O210S11X + - compartment: "g" + - formula: "C247H394N17O210S11X" - charge: -12 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02231g + - id: "m02231g" - name: "keratan sulfate I biosynthesis, precursor 4" - - compartment: g - - formula: C101H165N7O72X + - compartment: "g" + - formula: "C101H165N7O72X" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02232g + - id: "m02232g" - name: "keratan sulfate I biosynthesis, precursor 5" - - compartment: g - - formula: C101H164N7O75SX + - compartment: "g" + - formula: "C101H164N7O75SX" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02233g + - id: "m02233g" - name: "keratan sulfate I biosynthesis, precursor 6" - - compartment: g - - formula: C107H174N7O80SX + - compartment: "g" + - formula: "C107H174N7O80SX" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02234g + - id: "m02234g" - name: "keratan sulfate I biosynthesis, precursor 7" - - compartment: g - - formula: C115H187N8O85SX + - compartment: "g" + - formula: "C115H187N8O85SX" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02235g + - id: "m02235g" - name: "keratan sulfate I biosynthesis, precursor 8" - - compartment: g - - formula: C115H186N8O88S2X + - compartment: "g" + - formula: "C115H186N8O88S2X" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02236g + - id: "m02236g" - name: "keratan sulfate I biosynthesis, precursor 9" - - compartment: g - - formula: C121H196N8O93S2X + - compartment: "g" + - formula: "C121H196N8O93S2X" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02237l + - id: "m02237l" - name: "keratan sulfate I, degradation product 1" - - compartment: l - - formula: C241H383N17O209S12X + - compartment: "l" + - formula: "C241H383N17O209S12X" - charge: -13 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02237s + - id: "m02237s" - name: "keratan sulfate I, degradation product 1" - - compartment: s - - formula: C241H383N17O209S12X + - compartment: "s" + - formula: "C241H383N17O209S12X" - charge: -13 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02238l + - id: "m02238l" - name: "keratan sulfate I, degradation product 10" - - compartment: l - - formula: C188H302N13O163S9 + - compartment: "l" + - formula: "C188H302N13O163S9" - charge: -9 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02239l + - id: "m02239l" - name: "keratan sulfate I, degradation product 11" - - compartment: l - - formula: C180H289N12O158S9 + - compartment: "l" + - formula: "C180H289N12O158S9" - charge: -9 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02240l + - id: "m02240l" - name: "keratan sulfate I, degradation product 12" - - compartment: l - - formula: C174H279N12O153S9 + - compartment: "l" + - formula: "C174H279N12O153S9" - charge: -9 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02241l + - id: "m02241l" - name: "keratan sulfate I, degradation product 13" - - compartment: l - - formula: C174H280N12O150S8 + - compartment: "l" + - formula: "C174H280N12O150S8" - charge: -8 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02242l + - id: "m02242l" - name: "keratan sulfate I, degradation product 14" - - compartment: l - - formula: C166H267N11O145S8 + - compartment: "l" + - formula: "C166H267N11O145S8" - charge: -8 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02243l + - id: "m02243l" - name: "keratan sulfate I, degradation product 15" - - compartment: l - - formula: C160H257N11O140S8 + - compartment: "l" + - formula: "C160H257N11O140S8" - charge: -8 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02244l + - id: "m02244l" - name: "keratan sulfate I, degradation product 16" - - compartment: l - - formula: C160H258N11O137S7 + - compartment: "l" + - formula: "C160H258N11O137S7" - charge: -7 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02245l + - id: "m02245l" - name: "keratan sulfate I, degradation product 17" - - compartment: l - - formula: C152H245N10O132S7 + - compartment: "l" + - formula: "C152H245N10O132S7" - charge: -7 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02246l + - id: "m02246l" - name: "keratan sulfate I, degradation product 18" - - compartment: l - - formula: C146H235N10O127S7 + - compartment: "l" + - formula: "C146H235N10O127S7" - charge: -7 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02247l + - id: "m02247l" - name: "keratan sulfate I, degradation product 19" - - compartment: l - - formula: C146H236N10O124S6 + - compartment: "l" + - formula: "C146H236N10O124S6" - charge: -6 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02248l + - id: "m02248l" - name: "keratan sulfate I, degradation product 2" - - compartment: l - - formula: C241H384N17O210S12 + - compartment: "l" + - formula: "C241H384N17O210S12" - charge: -13 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02249l + - id: "m02249l" - name: "keratan sulfate I, degradation product 20" - - compartment: l - - formula: C138H223N9O119S6 + - compartment: "l" + - formula: "C138H223N9O119S6" - charge: -6 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02250l + - id: "m02250l" - name: "keratan sulfate I, degradation product 21" - - compartment: l - - formula: C132H213N9O114S6 + - compartment: "l" + - formula: "C132H213N9O114S6" - charge: -6 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02251l + - id: "m02251l" - name: "keratan sulfate I, degradation product 22" - - compartment: l - - formula: C132H214N9O111S5 + - compartment: "l" + - formula: "C132H214N9O111S5" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02252l + - id: "m02252l" - name: "keratan sulfate I, degradation product 23" - - compartment: l - - formula: C124H201N8O106S5 + - compartment: "l" + - formula: "C124H201N8O106S5" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02253l + - id: "m02253l" - name: "keratan sulfate I, degradation product 24" - - compartment: l - - formula: C118H191N8O101S5 + - compartment: "l" + - formula: "C118H191N8O101S5" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02254l + - id: "m02254l" - name: "keratan sulfate I, degradation product 25" - - compartment: l - - formula: C118H192N8O98S4 + - compartment: "l" + - formula: "C118H192N8O98S4" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02255l + - id: "m02255l" - name: "keratan sulfate I, degradation product 26" - - compartment: l - - formula: C110H179N7O93S4 + - compartment: "l" + - formula: "C110H179N7O93S4" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02256l + - id: "m02256l" - name: "keratan sulfate I, degradation product 27" - - compartment: l - - formula: C104H169N7O88S4 + - compartment: "l" + - formula: "C104H169N7O88S4" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02257l + - id: "m02257l" - name: "keratan sulfate I, degradation product 28" - - compartment: l - - formula: C104H170N7O85S3 + - compartment: "l" + - formula: "C104H170N7O85S3" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02258l + - id: "m02258l" - name: "keratan sulfate I, degradation product 29" - - compartment: l - - formula: C96H157N6O80S3 + - compartment: "l" + - formula: "C96H157N6O80S3" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02259l + - id: "m02259l" - name: "keratan sulfate I, degradation product 3" - - compartment: l - - formula: C233H371N16O205S12 + - compartment: "l" + - formula: "C233H371N16O205S12" - charge: -13 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02260l + - id: "m02260l" - name: "keratan sulfate I, degradation product 30" - - compartment: l - - formula: C90H147N6O75S3 + - compartment: "l" + - formula: "C90H147N6O75S3" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02261l + - id: "m02261l" - name: "keratan sulfate I, degradation product 31" - - compartment: l - - formula: C90H148N6O72S2 + - compartment: "l" + - formula: "C90H148N6O72S2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02262l + - id: "m02262l" - name: "keratan sulfate I, degradation product 32" - - compartment: l - - formula: C82H135N5O67S2 + - compartment: "l" + - formula: "C82H135N5O67S2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02263l + - id: "m02263l" - name: "keratan sulfate I, degradation product 33" - - compartment: l - - formula: C76H125N5O62S2 + - compartment: "l" + - formula: "C76H125N5O62S2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02264l + - id: "m02264l" - name: "keratan sulfate I, degradation product 34" - - compartment: l - - formula: C76H126N5O59S1 + - compartment: "l" + - formula: "C76H126N5O59S1" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02265l + - id: "m02265l" - name: "keratan sulfate I, degradation product 35" - - compartment: l - - formula: C68H113N4O54S1 + - compartment: "l" + - formula: "C68H113N4O54S1" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02266l + - id: "m02266l" - name: "keratan sulfate I, degradation product 36" - - compartment: l - - formula: C62H103N4O49S1 + - compartment: "l" + - formula: "C62H103N4O49S1" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02267l + - id: "m02267l" - name: "keratan sulfate I, degradation product 37" - - compartment: l - - formula: C62H104N4O46 + - compartment: "l" + - formula: "C62H104N4O46" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02268l + - id: "m02268l" - name: "keratan sulfate I, degradation product 38" - - compartment: l - - formula: C54H91N3O41 + - compartment: "l" + - formula: "C54H91N3O41" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02269l + - id: "m02269l" - name: "keratan sulfate I, degradation product 39" - - compartment: l - - formula: C48H81N3O36 + - compartment: "l" + - formula: "C48H81N3O36" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02270l + - id: "m02270l" - name: "keratan sulfate I, degradation product 4" - - compartment: l - - formula: C222H355N15O197S12 + - compartment: "l" + - formula: "C222H355N15O197S12" - charge: -12 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02271l + - id: "m02271l" - name: "keratan sulfate I, degradation product 40" - - compartment: l - - formula: C40H68N2O31 + - compartment: "l" + - formula: "C40H68N2O31" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02272l + - id: "m02272l" - name: "keratan sulfate I, degradation product 41" - - compartment: l - - formula: C34H58N2O26 + - compartment: "l" + - formula: "C34H58N2O26" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02273l + - id: "m02273l" - name: "keratan sulfate I, degradation product 5" - - compartment: l - - formula: C222H356N15O194S11 + - compartment: "l" + - formula: "C222H356N15O194S11" - charge: -11 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02274l + - id: "m02274l" - name: "keratan sulfate I, degradation product 6" - - compartment: l - - formula: C210H336N15O184S11 + - compartment: "l" + - formula: "C210H336N15O184S11" - charge: -11 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02275l + - id: "m02275l" - name: "keratan sulfate I, degradation product 7" - - compartment: l - - formula: C210H337N15O181S10 + - compartment: "l" + - formula: "C210H337N15O181S10" - charge: -10 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02276l + - id: "m02276l" - name: "keratan sulfate I, degradation product 8" - - compartment: l - - formula: C194H311N13O171S10 + - compartment: "l" + - formula: "C194H311N13O171S10" - charge: -10 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02277l + - id: "m02277l" - name: "keratan sulfate I, degradation product 9" - - compartment: l - - formula: C188H301N13O166S10 + - compartment: "l" + - formula: "C188H301N13O166S10" - charge: -10 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02278g + - id: "m02278g" - name: "keratan sulfate I" - - compartment: g - - formula: C247H393N17O213S12X + - compartment: "g" + - formula: "C247H393N17O213S12X" - charge: -13 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02278l + - id: "m02278l" - name: "keratan sulfate I" - - compartment: l - - formula: C247H393N17O213S12X + - compartment: "l" + - formula: "C247H393N17O213S12X" - charge: -13 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02278s + - id: "m02278s" - name: "keratan sulfate I" - - compartment: s - - formula: C247H393N17O213S12X + - compartment: "s" + - formula: "C247H393N17O213S12X" - charge: -13 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02279l + - id: "m02279l" - name: "keratan sulfate II (core 2-linked), degradation product 1" - - compartment: l - - formula: C70H113N5O59S3X + - compartment: "l" + - formula: "C70H113N5O59S3X" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02280l + - id: "m02280l" - name: "keratan sulfate II (core 2-linked), degradation product 2" - - compartment: l - - formula: C70H114N5O56S2X + - compartment: "l" + - formula: "C70H114N5O56S2X" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02281l + - id: "m02281l" - name: "keratan sulfate II (core 2-linked), degradation product 3" - - compartment: l - - formula: C58H94N5O46S2X + - compartment: "l" + - formula: "C58H94N5O46S2X" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02282l + - id: "m02282l" - name: "keratan sulfate II (core 2-linked), degradation product 4" - - compartment: l - - formula: C58H95N5O43SX + - compartment: "l" + - formula: "C58H95N5O43SX" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02283l + - id: "m02283l" - name: "keratan sulfate II (core 2-linked), degradation product 5" - - compartment: l - - formula: C50H82N4O38SX + - compartment: "l" + - formula: "C50H82N4O38SX" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02284l + - id: "m02284l" - name: "keratan sulfate II (core 2-linked), degradation product 6" - - compartment: l - - formula: C44H72N4O33SX + - compartment: "l" + - formula: "C44H72N4O33SX" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02285l + - id: "m02285l" - name: "keratan sulfate II (core 2-linked), degradation product 7" - - compartment: l - - formula: C44H73N4O30X + - compartment: "l" + - formula: "C44H73N4O30X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02286l + - id: "m02286l" - name: "keratan sulfate II (core 2-linked), degradation product 8" - - compartment: l - - formula: C36H60N3O25X + - compartment: "l" + - formula: "C36H60N3O25X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02287l + - id: "m02287l" - name: "keratan sulfate II (core 2-linked), degradation product 9" - - compartment: l - - formula: C30H50N3O20X + - compartment: "l" + - formula: "C30H50N3O20X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02288g + - id: "m02288g" - name: "keratan sulfate II (core 2-linked)" - - compartment: g - - formula: C81H129N6O67S3X + - compartment: "g" + - formula: "C81H129N6O67S3X" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02288l + - id: "m02288l" - name: "keratan sulfate II (core 2-linked)" - - compartment: l - - formula: C81H129N6O67S3X + - compartment: "l" + - formula: "C81H129N6O67S3X" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02288s + - id: "m02288s" - name: "keratan sulfate II (core 2-linked)" - - compartment: s - - formula: C81H129N6O67S3X + - compartment: "s" + - formula: "C81H129N6O67S3X" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02289g + - id: "m02289g" - name: "keratan sulfate II (core 4-linked), biosynthesis, precursor 1" - - compartment: g - - formula: C36H60N3O25X + - compartment: "g" + - formula: "C36H60N3O25X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02290g + - id: "m02290g" - name: "keratan sulfate II (core 4-linked), biosynthesis, precursor 10" - - compartment: g - - formula: C89H143N7O69S2X + - compartment: "g" + - formula: "C89H143N7O69S2X" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02291g + - id: "m02291g" - name: "keratan sulfate II (core 4-linked), biosynthesis, precursor 2" - - compartment: g - - formula: C47H76N4O33X + - compartment: "g" + - formula: "C47H76N4O33X" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02292g + - id: "m02292g" - name: "keratan sulfate II (core 4-linked), biosynthesis, precursor 3" - - compartment: g - - formula: C55H89N5O38X + - compartment: "g" + - formula: "C55H89N5O38X" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02293g + - id: "m02293g" - name: "keratan sulfate II (core 4-linked), biosynthesis, precursor 4" - - compartment: g - - formula: C61H99N5O43X + - compartment: "g" + - formula: "C61H99N5O43X" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02294g + - id: "m02294g" - name: "keratan sulfate II (core 4-linked), biosynthesis, precursor 5" - - compartment: g - - formula: C69H112N6O48X + - compartment: "g" + - formula: "C69H112N6O48X" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02295g + - id: "m02295g" - name: "keratan sulfate II (core 4-linked), biosynthesis, precursor 6" - - compartment: g - - formula: C69H111N6O51SX + - compartment: "g" + - formula: "C69H111N6O51SX" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02296g + - id: "m02296g" - name: "keratan sulfate II (core 4-linked), biosynthesis, precursor 7" - - compartment: g - - formula: C75H121N6O56SX + - compartment: "g" + - formula: "C75H121N6O56SX" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02297g + - id: "m02297g" - name: "keratan sulfate II (core 4-linked), biosynthesis, precursor 8" - - compartment: g - - formula: C83H134N7O61SX + - compartment: "g" + - formula: "C83H134N7O61SX" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02298g + - id: "m02298g" - name: "keratan sulfate II (core 4-linked), biosynthesis, precursor 9" - - compartment: g - - formula: C83H133N7O64S2X + - compartment: "g" + - formula: "C83H133N7O64S2X" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02299l + - id: "m02299l" - name: "keratan sulfate II (core 4-linked), degradation product 1" - - compartment: l - - formula: C78H126N6O64S3X + - compartment: "l" + - formula: "C78H126N6O64S3X" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02300l + - id: "m02300l" - name: "keratan sulfate II (core 4-linked), degradation product 2" - - compartment: l - - formula: C78H127N6O61S2X + - compartment: "l" + - formula: "C78H127N6O61S2X" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02301l + - id: "m02301l" - name: "keratan sulfate II (core 4-linked), degradation product 3" - - compartment: l - - formula: C66H107N6O51S2X + - compartment: "l" + - formula: "C66H107N6O51S2X" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02302l + - id: "m02302l" - name: "keratan sulfate II (core 4-linked), degradation product 4" - - compartment: l - - formula: C66H108N6O48SX + - compartment: "l" + - formula: "C66H108N6O48SX" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02303g + - id: "m02303g" - name: "keratan sulfate II (core 4-linked)" - - compartment: g - - formula: C89H142N7O72S3X + - compartment: "g" + - formula: "C89H142N7O72S3X" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02303l + - id: "m02303l" - name: "keratan sulfate II (core 4-linked)" - - compartment: l - - formula: C89H142N7O72S3X + - compartment: "l" + - formula: "C89H142N7O72S3X" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02303s + - id: "m02303s" - name: "keratan sulfate II (core 4-linked)" - - compartment: s - - formula: C89H142N7O72S3X + - compartment: "s" + - formula: "C89H142N7O72S3X" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02304g + - id: "m02304g" - name: "keratan sulfate II biosynthesis, precursor 1" - - compartment: g - - formula: C33H53N3O23X + - compartment: "g" + - formula: "C33H53N3O23X" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02305g + - id: "m02305g" - name: "keratan sulfate II biosynthesis, precursor 10" - - compartment: g - - formula: C81H130N6O64S2X + - compartment: "g" + - formula: "C81H130N6O64S2X" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02306g + - id: "m02306g" - name: "keratan sulfate II biosynthesis, precursor 2" - - compartment: g - - formula: C39H63N3O28X + - compartment: "g" + - formula: "C39H63N3O28X" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02307g + - id: "m02307g" - name: "keratan sulfate II biosynthesis, precursor 3" - - compartment: g - - formula: C47H76N4O33X + - compartment: "g" + - formula: "C47H76N4O33X" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02308g + - id: "m02308g" - name: "keratan sulfate II biosynthesis, precursor 4" - - compartment: g - - formula: C53H86N4O38X + - compartment: "g" + - formula: "C53H86N4O38X" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02309g + - id: "m02309g" - name: "keratan sulfate II biosynthesis, precursor 5" - - compartment: g - - formula: C61H99N5O43X + - compartment: "g" + - formula: "C61H99N5O43X" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02310g + - id: "m02310g" - name: "keratan sulfate II biosynthesis, precursor 6" - - compartment: g - - formula: C61H98N5O46SX + - compartment: "g" + - formula: "C61H98N5O46SX" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02311g + - id: "m02311g" - name: "keratan sulfate II biosynthesis, precursor 7" - - compartment: g - - formula: C67H108N5O51SX + - compartment: "g" + - formula: "C67H108N5O51SX" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02312g + - id: "m02312g" - name: "keratan sulfate II biosynthesis, precursor 8" - - compartment: g - - formula: C75H121N6O56SX + - compartment: "g" + - formula: "C75H121N6O56SX" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02313g + - id: "m02313g" - name: "keratan sulfate II biosynthesis, precursor 9" - - compartment: g - - formula: C75H120N6O59S2X + - compartment: "g" + - formula: "C75H120N6O59S2X" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02314s + - id: "m02314s" - name: "kinetensin 1-3" - - compartment: s - - formula: C15H31N6O4 + - compartment: "s" + - formula: "C15H31N6O4" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02315c + - id: "m02315c" - name: "kinetensin 1-7" - - compartment: c - - formula: C41H67N15O9 + - compartment: "c" + - formula: "C41H67N15O9" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02316c + - id: "m02316c" - name: "kinetensin 1-8" - - compartment: c - - formula: C50H76N16O10 + - compartment: "c" + - formula: "C50H76N16O10" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02317s + - id: "m02317s" - name: "kinetensin 4-8" - - compartment: s - - formula: C35H47N10O7 + - compartment: "s" + - formula: "C35H47N10O7" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02318c + - id: "m02318c" - name: "kinetensin" - - compartment: c - - formula: C56H87N17O11 + - compartment: "c" + - formula: "C56H87N17O11" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02318s + - id: "m02318s" - name: "kinetensin" - - compartment: s - - formula: C56H87N17O11 + - compartment: "s" + - formula: "C56H87N17O11" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02319c + - id: "m02319c" - name: "kynurenine" - - compartment: c - - formula: C10H12N2O3 + - compartment: "c" + - formula: "C10H12N2O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02320c + - id: "m02320c" - name: "L-1-pyrroline-3-hydroxy-5-carboxylate" - - compartment: c - - formula: C5H6NO3 + - compartment: "c" + - formula: "C5H6NO3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02320m + - id: "m02320m" - name: "L-1-pyrroline-3-hydroxy-5-carboxylate" - - compartment: m - - formula: C5H6NO3 + - compartment: "m" + - formula: "C5H6NO3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02321m + - id: "m02321m" - name: "L-2-amino-3-oxobutanoic acid" - - compartment: m - - formula: C4H7NO3 + - compartment: "m" + - formula: "C4H7NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02322c + - id: "m02322c" - name: "L-2-aminoadipate" - - compartment: c - - formula: C6H10NO4 + - compartment: "c" + - formula: "C6H10NO4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02322m + - id: "m02322m" - name: "L-2-aminoadipate" - - compartment: m - - formula: C6H10NO4 + - compartment: "m" + - formula: "C6H10NO4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02323g + - id: "m02323g" - name: "l2fn2m2masn" - - compartment: g - - formula: C68H113N4O49X + - compartment: "g" + - formula: "C68H113N4O49X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02324l + - id: "m02324l" - name: "l2n2m2mn" - - compartment: l - - formula: C54H91N3O41 + - compartment: "l" + - formula: "C54H91N3O41" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02325c + - id: "m02325c" - name: "L-3-amino-isobutanoate" - - compartment: c - - formula: C4H9NO2 + - compartment: "c" + - formula: "C4H9NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02325m + - id: "m02325m" - name: "L-3-amino-isobutanoate" - - compartment: m - - formula: C4H9NO2 + - compartment: "m" + - formula: "C4H9NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02325s + - id: "m02325s" - name: "L-3-amino-isobutanoate" - - compartment: s - - formula: C4H9NO2 + - compartment: "s" + - formula: "C4H9NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02326s + - id: "m02326s" - name: "L-3-cyanoalanine" - - compartment: s - - formula: C4H5N2O2 + - compartment: "s" + - formula: "C4H5N2O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02327m + - id: "m02327m" - name: "L-4-hydroxyglutamate semialdehyde" - - compartment: m - - formula: C5H9NO4 + - compartment: "m" + - formula: "C5H9NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02328c + - id: "m02328c" - name: "LacCer pool" - - compartment: c - - formula: C31H56NO13R + - compartment: "c" + - formula: "C31H56NO13R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02328g + - id: "m02328g" - name: "LacCer pool" - - compartment: g - - formula: C31H56NO13R + - compartment: "g" + - formula: "C31H56NO13R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02328l + - id: "m02328l" - name: "LacCer pool" - - compartment: l - - formula: C31H56NO13R + - compartment: "l" + - formula: "C31H56NO13R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02328r + - id: "m02328r" - name: "LacCer pool" - - compartment: r - - formula: C31H56NO13R + - compartment: "r" + - formula: "C31H56NO13R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02328s + - id: "m02328s" - name: "LacCer pool" - - compartment: s - - formula: C31H56NO13R + - compartment: "s" + - formula: "C31H56NO13R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02329c + - id: "m02329c" - name: "lactaldehyde" - - compartment: c - - formula: C3H6O2 + - compartment: "c" + - formula: "C3H6O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02329m + - id: "m02329m" - name: "lactaldehyde" - - compartment: m - - formula: C3H6O2 + - compartment: "m" + - formula: "C3H6O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02330g + - id: "m02330g" - name: "lactoneotetraosylceramide" - - compartment: g - - formula: C44H79N2O22RCO + - compartment: "g" + - formula: "C44H79N2O22RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02331c + - id: "m02331c" - name: "lacto-N-fucopentaosyl-III-ceramide" - - compartment: c - - formula: C50H89N2O26RCO + - compartment: "c" + - formula: "C50H89N2O26RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02331g + - id: "m02331g" - name: "lacto-N-fucopentaosyl-III-ceramide" - - compartment: g - - formula: C50H89N2O26RCO + - compartment: "g" + - formula: "C50H89N2O26RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02331s + - id: "m02331s" - name: "lacto-N-fucopentaosyl-III-ceramide" - - compartment: s - - formula: C50H89N2O26RCO + - compartment: "s" + - formula: "C50H89N2O26RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02332c + - id: "m02332c" - name: "lactose" - - compartment: c - - formula: C12H22O11 + - compartment: "c" + - formula: "C12H22O11" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02332g + - id: "m02332g" - name: "lactose" - - compartment: g - - formula: C12H22O11 + - compartment: "g" + - formula: "C12H22O11" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02332l + - id: "m02332l" - name: "lactose" - - compartment: l - - formula: C12H22O11 + - compartment: "l" + - formula: "C12H22O11" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02332s + - id: "m02332s" - name: "lactose" - - compartment: s - - formula: C12H22O11 + - compartment: "s" + - formula: "C12H22O11" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02333s + - id: "m02333s" - name: "lactose-6-phosphate" - - compartment: s - - formula: C12H21O14P + - compartment: "s" + - formula: "C12H21O14P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02334c + - id: "m02334c" - name: "lactosylceramide sulfate" - - compartment: c - - formula: C31H56NO16SR + - compartment: "c" + - formula: "C31H56NO16SR" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02335c + - id: "m02335c" - name: "L-alanyl-tRNA(ala)" - - compartment: c - - formula: C3H7NOR + - compartment: "c" + - formula: "C3H7NOR" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02336c + - id: "m02336c" - name: "lanosterol" - - compartment: c - - formula: C30H50O + - compartment: "c" + - formula: "C30H50O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02337c + - id: "m02337c" - name: "L-arabinose" - - compartment: c - - formula: C5H10O5 + - compartment: "c" + - formula: "C5H10O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02337s + - id: "m02337s" - name: "L-arabinose" - - compartment: s - - formula: C5H10O5 + - compartment: "s" + - formula: "C5H10O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02338c + - id: "m02338c" - name: "L-arabitol" - - compartment: c - - formula: C5H12O5 + - compartment: "c" + - formula: "C5H12O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02338s + - id: "m02338s" - name: "L-arabitol" - - compartment: s - - formula: C5H12O5 + - compartment: "s" + - formula: "C5H12O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02339c + - id: "m02339c" - name: "L-arginyl-protein" - - compartment: c - - formula: C6H13N4OX + - compartment: "c" + - formula: "C6H13N4OX" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02340c + - id: "m02340c" - name: "L-arginyl-tRNA(arg)" - - compartment: c - - formula: C6H15N4OR + - compartment: "c" + - formula: "C6H15N4OR" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02341c + - id: "m02341c" - name: "L-asparaginyl-tRNA(asn)" - - compartment: c - - formula: C4H8N2O2R + - compartment: "c" + - formula: "C4H8N2O2R" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02342c + - id: "m02342c" - name: "L-aspartyl-tRNA(asp)" - - compartment: c - - formula: C4H6NO3R + - compartment: "c" + - formula: "C4H6NO3R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02343c + - id: "m02343c" - name: "lathosterol" - - compartment: c - - formula: C27H46O + - compartment: "c" + - formula: "C27H46O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02344c + - id: "m02344c" - name: "lauric acid" - - compartment: c - - formula: C12H23O2 + - compartment: "c" + - formula: "C12H23O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02344l + - id: "m02344l" - name: "lauric acid" - - compartment: l - - formula: C12H23O2 + - compartment: "l" + - formula: "C12H23O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02344r + - id: "m02344r" - name: "lauric acid" - - compartment: r - - formula: C12H23O2 + - compartment: "r" + - formula: "C12H23O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02344s + - id: "m02344s" - name: "lauric acid" - - compartment: s - - formula: C12H23O2 + - compartment: "s" + - formula: "C12H23O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02345c + - id: "m02345c" - name: "lauroyl-CoA" - - compartment: c - - formula: C33H54N7O17P3S + - compartment: "c" + - formula: "C33H54N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02345m + - id: "m02345m" - name: "lauroyl-CoA" - - compartment: m - - formula: C33H54N7O17P3S + - compartment: "m" + - formula: "C33H54N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02345p + - id: "m02345p" - name: "lauroyl-CoA" - - compartment: p - - formula: C33H54N7O17P3S + - compartment: "p" + - formula: "C33H54N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02345r + - id: "m02345r" - name: "lauroyl-CoA" - - compartment: r - - formula: C33H54N7O17P3S + - compartment: "r" + - formula: "C33H54N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02346c + - id: "m02346c" - name: "lc3Cer" - - compartment: c - - formula: C38H69N2O17RCO + - compartment: "c" + - formula: "C38H69N2O17RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02346g + - id: "m02346g" - name: "lc3Cer" - - compartment: g - - formula: C38H69N2O17RCO + - compartment: "g" + - formula: "C38H69N2O17RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02347c + - id: "m02347c" - name: "lc4Cer" - - compartment: c - - formula: C44H79N2O22RCO + - compartment: "c" + - formula: "C44H79N2O22RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02347g + - id: "m02347g" - name: "lc4Cer" - - compartment: g - - formula: C44H79N2O22RCO + - compartment: "g" + - formula: "C44H79N2O22RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02348c + - id: "m02348c" - name: "L-carnitine" - - compartment: c - - formula: C7H15NO3 + - compartment: "c" + - formula: "C7H15NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02348m + - id: "m02348m" - name: "L-carnitine" - - compartment: m - - formula: C7H15NO3 + - compartment: "m" + - formula: "C7H15NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02348p + - id: "m02348p" - name: "L-carnitine" - - compartment: p - - formula: C7H15NO3 + - compartment: "p" + - formula: "C7H15NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02348r + - id: "m02348r" - name: "L-carnitine" - - compartment: r - - formula: C7H15NO3 + - compartment: "r" + - formula: "C7H15NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02348s + - id: "m02348s" - name: "L-carnitine" - - compartment: s - - formula: C7H15NO3 + - compartment: "s" + - formula: "C7H15NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02349c + - id: "m02349c" - name: "L-cystathionine" - - compartment: c - - formula: C7H14N2O4S + - compartment: "c" + - formula: "C7H14N2O4S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02349m + - id: "m02349m" - name: "L-cystathionine" - - compartment: m - - formula: C7H14N2O4S + - compartment: "m" + - formula: "C7H14N2O4S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02350c + - id: "m02350c" - name: "L-cysteate" - - compartment: c - - formula: C3H6NO5S + - compartment: "c" + - formula: "C3H6NO5S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02350m + - id: "m02350m" - name: "L-cysteate" - - compartment: m - - formula: C3H6NO5S + - compartment: "m" + - formula: "C3H6NO5S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02351c + - id: "m02351c" - name: "L-cysteinyl-tRNA(cys)" - - compartment: c - - formula: C3H7NOSR + - compartment: "c" + - formula: "C3H7NOSR" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02352l + - id: "m02352l" - name: "LDL remnant" - - compartment: l - - formula: C33247H54819N7242O13369P860S104R1315 + - compartment: "l" + - formula: "C33247H54819N7242O13369P860S104R1315" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02352s + - id: "m02352s" - name: "LDL remnant" - - compartment: s - - formula: C33247H54819N7242O13369P860S104R1315 + - compartment: "s" + - formula: "C33247H54819N7242O13369P860S104R1315" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02353r + - id: "m02353r" - name: "LDL" - - compartment: r - - formula: C94027H154274N7242O17079P860S104R2830 + - compartment: "r" + - formula: "C94027H154274N7242O17079P860S104R2830" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02353s + - id: "m02353s" - name: "LDL" - - compartment: s - - formula: C94027H154274N7242O17079P860S104R2830 + - compartment: "s" + - formula: "C94027H154274N7242O17079P860S104R2830" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02354c + - id: "m02354c" - name: "L-dopa" - - compartment: c - - formula: C9H11NO4 + - compartment: "c" + - formula: "C9H11NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02354s + - id: "m02354s" - name: "L-dopa" - - compartment: s - - formula: C9H11NO4 + - compartment: "s" + - formula: "C9H11NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02355c + - id: "m02355c" - name: "L-dopachrome" - - compartment: c - - formula: C9H6NO4 + - compartment: "c" + - formula: "C9H6NO4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02356c + - id: "m02356c" - name: "L-dopaquinone" - - compartment: c - - formula: C9H9NO4 + - compartment: "c" + - formula: "C9H9NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02357c + - id: "m02357c" - name: "lepidimoide" - - compartment: c - - formula: X + - compartment: "c" + - formula: "X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02357s + - id: "m02357s" - name: "lepidimoide" - - compartment: s - - formula: X + - compartment: "s" + - formula: "X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02358m + - id: "m02358m" - name: "L-erythro-4-hydroxyglutamate" - - compartment: m - - formula: C5H8NO5 + - compartment: "m" + - formula: "C5H8NO5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02359c + - id: "m02359c" - name: "L-erythrulose" - - compartment: c - - formula: C4H8O4 + - compartment: "c" + - formula: "C4H8O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02360c + - id: "m02360c" - name: "leucine" - - compartment: c - - formula: C6H13NO2 + - compartment: "c" + - formula: "C6H13NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02360l + - id: "m02360l" - name: "leucine" - - compartment: l - - formula: C6H13NO2 + - compartment: "l" + - formula: "C6H13NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02360m + - id: "m02360m" - name: "leucine" - - compartment: m - - formula: C6H13NO2 + - compartment: "m" + - formula: "C6H13NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02360s + - id: "m02360s" - name: "leucine" - - compartment: s - - formula: C6H13NO2 + - compartment: "s" + - formula: "C6H13NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02361c + - id: "m02361c" - name: "leukoaminochrome" - - compartment: c - - formula: C8H9NO2 + - compartment: "c" + - formula: "C8H9NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02362c + - id: "m02362c" - name: "leukotriene A4" - - compartment: c - - formula: C20H29O3 + - compartment: "c" + - formula: "C20H29O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02362n + - id: "m02362n" - name: "leukotriene A4" - - compartment: n - - formula: C20H29O3 + - compartment: "n" + - formula: "C20H29O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02362r + - id: "m02362r" - name: "leukotriene A4" - - compartment: r - - formula: C20H29O3 + - compartment: "r" + - formula: "C20H29O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02362s + - id: "m02362s" - name: "leukotriene A4" - - compartment: s - - formula: C20H29O3 + - compartment: "s" + - formula: "C20H29O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02363c + - id: "m02363c" - name: "leukotriene A5" - - compartment: c - - formula: C20H27O3 + - compartment: "c" + - formula: "C20H27O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02364c + - id: "m02364c" - name: "leukotriene B4" - - compartment: c - - formula: C20H31O4 + - compartment: "c" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02364m + - id: "m02364m" - name: "leukotriene B4" - - compartment: m - - formula: C20H31O4 + - compartment: "m" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02364p + - id: "m02364p" - name: "leukotriene B4" - - compartment: p - - formula: C20H31O4 + - compartment: "p" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02364r + - id: "m02364r" - name: "leukotriene B4" - - compartment: r - - formula: C20H31O4 + - compartment: "r" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02364s + - id: "m02364s" - name: "leukotriene B4" - - compartment: s - - formula: C20H31O4 + - compartment: "s" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02365c + - id: "m02365c" - name: "leukotriene B5" - - compartment: c - - formula: C20H29O4 + - compartment: "c" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02365r + - id: "m02365r" - name: "leukotriene B5" - - compartment: r - - formula: C20H29O4 + - compartment: "r" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02366c + - id: "m02366c" - name: "leukotriene C4" - - compartment: c - - formula: C30H45N3O9S + - compartment: "c" + - formula: "C30H45N3O9S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02366r + - id: "m02366r" - name: "leukotriene C4" - - compartment: r - - formula: C30H45N3O9S + - compartment: "r" + - formula: "C30H45N3O9S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02366s + - id: "m02366s" - name: "leukotriene C4" - - compartment: s - - formula: C30H45N3O9S + - compartment: "s" + - formula: "C30H45N3O9S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02367c + - id: "m02367c" - name: "leukotriene C5" - - compartment: c - - formula: C30H43N3O9S + - compartment: "c" + - formula: "C30H43N3O9S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02368c + - id: "m02368c" - name: "leukotriene D5" - - compartment: c - - formula: C25H37N2O6S + - compartment: "c" + - formula: "C25H37N2O6S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02369c + - id: "m02369c" - name: "leukotriene E4" - - compartment: c - - formula: C23H36NO5S + - compartment: "c" + - formula: "C23H36NO5S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02369n + - id: "m02369n" - name: "leukotriene E4" - - compartment: n - - formula: C23H36NO5S + - compartment: "n" + - formula: "C23H36NO5S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02369p + - id: "m02369p" - name: "leukotriene E4" - - compartment: p - - formula: C23H36NO5S + - compartment: "p" + - formula: "C23H36NO5S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02369s + - id: "m02369s" - name: "leukotriene E4" - - compartment: s - - formula: C23H36NO5S + - compartment: "s" + - formula: "C23H36NO5S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02370c + - id: "m02370c" - name: "leukotriene F4" - - compartment: c - - formula: C28H42N2O8S + - compartment: "c" + - formula: "C28H42N2O8S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02370s + - id: "m02370s" - name: "leukotriene F4" - - compartment: s - - formula: C28H42N2O8S + - compartment: "s" + - formula: "C28H42N2O8S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02371c + - id: "m02371c" - name: "L-formylkynurenine" - - compartment: c - - formula: C11H12N2O4 + - compartment: "c" + - formula: "C11H12N2O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02372c + - id: "m02372c" - name: "L-fucose-1-phosphate" - - compartment: c - - formula: C6H11O8P + - compartment: "c" + - formula: "C6H11O8P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02373c + - id: "m02373c" - name: "L-fuculose" - - compartment: c - - formula: C6H12O5 + - compartment: "c" + - formula: "C6H12O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02374c + - id: "m02374c" - name: "L-glutamate 5-semialdehyde" - - compartment: c - - formula: C5H9NO3 + - compartment: "c" + - formula: "C5H9NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02374m + - id: "m02374m" - name: "L-glutamate 5-semialdehyde" - - compartment: m - - formula: C5H9NO3 + - compartment: "m" + - formula: "C5H9NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02375c + - id: "m02375c" - name: "L-glutaminyl-peptide" - - compartment: c - - formula: C9H14N4O5R2 + - compartment: "c" + - formula: "C9H14N4O5R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02376c + - id: "m02376c" - name: "L-glutaminyl-tRNA(gln)" - - compartment: c - - formula: C5H10N2O2R + - compartment: "c" + - formula: "C5H10N2O2R" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02377c + - id: "m02377c" - name: "L-glutamyl-tRNA(glu)" - - compartment: c - - formula: C5H8NO3R + - compartment: "c" + - formula: "C5H8NO3R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02378c + - id: "m02378c" - name: "L-gulonate" - - compartment: c - - formula: C6H11O7 + - compartment: "c" + - formula: "C6H11O7" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02378r + - id: "m02378r" - name: "L-gulonate" - - compartment: r - - formula: C6H11O7 + - compartment: "r" + - formula: "C6H11O7" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02379c + - id: "m02379c" - name: "L-gulono-1,4-lactone" - - compartment: c - - formula: C6H10O6 + - compartment: "c" + - formula: "C6H10O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02379r + - id: "m02379r" - name: "L-gulono-1,4-lactone" - - compartment: r - - formula: C6H10O6 + - compartment: "r" + - formula: "C6H10O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02380c + - id: "m02380c" - name: "L-histidyl-tRNA(his)" - - compartment: c - - formula: C6H9N3OR + - compartment: "c" + - formula: "C6H9N3OR" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02381c + - id: "m02381c" - name: "L-hydroxylysine" - - compartment: c - - formula: C6H14N2O3 + - compartment: "c" + - formula: "C6H14N2O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02382c + - id: "m02382c" - name: "Li+" - - compartment: c - - formula: Li + - compartment: "c" + - formula: "Li" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02382s + - id: "m02382s" - name: "Li+" - - compartment: s - - formula: Li + - compartment: "s" + - formula: "Li" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02383c + - id: "m02383c" - name: "L-iditol" - - compartment: c - - formula: C6H14O6 + - compartment: "c" + - formula: "C6H14O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02384c + - id: "m02384c" - name: "L-iduronic acid" - - compartment: c - - formula: C6H9O7 + - compartment: "c" + - formula: "C6H9O7" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02384l + - id: "m02384l" - name: "L-iduronic acid" - - compartment: l - - formula: C6H9O7 + - compartment: "l" + - formula: "C6H9O7" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02384s + - id: "m02384s" - name: "L-iduronic acid" - - compartment: s - - formula: C6H9O7 + - compartment: "s" + - formula: "C6H9O7" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02385c + - id: "m02385c" - name: "lignocerate" - - compartment: c - - formula: C24H47O2 + - compartment: "c" + - formula: "C24H47O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02385l + - id: "m02385l" - name: "lignocerate" - - compartment: l - - formula: C24H47O2 + - compartment: "l" + - formula: "C24H47O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02385r + - id: "m02385r" - name: "lignocerate" - - compartment: r - - formula: C24H47O2 + - compartment: "r" + - formula: "C24H47O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02385s + - id: "m02385s" - name: "lignocerate" - - compartment: s - - formula: C24H47O2 + - compartment: "s" + - formula: "C24H47O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02386c + - id: "m02386c" - name: "limonene" - - compartment: c - - formula: C10H16 + - compartment: "c" + - formula: "C10H16" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02386s + - id: "m02386s" - name: "limonene" - - compartment: s - - formula: C10H16 + - compartment: "s" + - formula: "C10H16" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02387c + - id: "m02387c" - name: "linoleate" - - compartment: c - - formula: C18H31O2 + - compartment: "c" + - formula: "C18H31O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02387l + - id: "m02387l" - name: "linoleate" - - compartment: l - - formula: C18H31O2 + - compartment: "l" + - formula: "C18H31O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02387r + - id: "m02387r" - name: "linoleate" - - compartment: r - - formula: C18H31O2 + - compartment: "r" + - formula: "C18H31O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02387s + - id: "m02387s" - name: "linoleate" - - compartment: s - - formula: C18H31O2 + - compartment: "s" + - formula: "C18H31O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02388c + - id: "m02388c" - name: "linoleic-carnitine" - - compartment: c - - formula: C25H45NO4 + - compartment: "c" + - formula: "C25H45NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02388m + - id: "m02388m" - name: "linoleic-carnitine" - - compartment: m - - formula: C25H45NO4 + - compartment: "m" + - formula: "C25H45NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02388r + - id: "m02388r" - name: "linoleic-carnitine" - - compartment: r - - formula: C25H45NO4 + - compartment: "r" + - formula: "C25H45NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02389c + - id: "m02389c" - name: "linolenate" - - compartment: c - - formula: C18H29O2 + - compartment: "c" + - formula: "C18H29O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02389l + - id: "m02389l" - name: "linolenate" - - compartment: l - - formula: C18H29O2 + - compartment: "l" + - formula: "C18H29O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02389r + - id: "m02389r" - name: "linolenate" - - compartment: r - - formula: C18H29O2 + - compartment: "r" + - formula: "C18H29O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02389s + - id: "m02389s" - name: "linolenate" - - compartment: s - - formula: C18H29O2 + - compartment: "s" + - formula: "C18H29O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02390c + - id: "m02390c" - name: "linolenoyl-CoA" - - compartment: c - - formula: C39H60N7O17P3S + - compartment: "c" + - formula: "C39H60N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02390m + - id: "m02390m" - name: "linolenoyl-CoA" - - compartment: m - - formula: C39H60N7O17P3S + - compartment: "m" + - formula: "C39H60N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02390r + - id: "m02390r" - name: "linolenoyl-CoA" - - compartment: r - - formula: C39H60N7O17P3S + - compartment: "r" + - formula: "C39H60N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02391c + - id: "m02391c" - name: "linoleoyl-CoA" - - compartment: c - - formula: C39H62N7O17P3S + - compartment: "c" + - formula: "C39H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02391m + - id: "m02391m" - name: "linoleoyl-CoA" - - compartment: m - - formula: C39H62N7O17P3S + - compartment: "m" + - formula: "C39H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02391p + - id: "m02391p" - name: "linoleoyl-CoA" - - compartment: p - - formula: C39H62N7O17P3S + - compartment: "p" + - formula: "C39H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02391r + - id: "m02391r" - name: "linoleoyl-CoA" - - compartment: r - - formula: C39H62N7O17P3S + - compartment: "r" + - formula: "C39H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02392c + - id: "m02392c" - name: "lipid droplet" - - compartment: c - - formula: X + - compartment: "c" + - formula: "X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02393m + - id: "m02393m" - name: "lipoamide" - - compartment: m - - formula: C8H15NOS2 + - compartment: "m" + - formula: "C8H15NOS2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02394c + - id: "m02394c" - name: "lipoic acid" - - compartment: c - - formula: C8H13O2S2 + - compartment: "c" + - formula: "C8H13O2S2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02394s + - id: "m02394s" - name: "lipoic acid" - - compartment: s - - formula: C8H13O2S2 + - compartment: "s" + - formula: "C8H13O2S2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02395c + - id: "m02395c" - name: "lipoxin A4" - - compartment: c - - formula: C20H31O5 + - compartment: "c" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02395n + - id: "m02395n" - name: "lipoxin A4" - - compartment: n - - formula: C20H31O5 + - compartment: "n" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02395p + - id: "m02395p" - name: "lipoxin A4" - - compartment: p - - formula: C20H31O5 + - compartment: "p" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02395r + - id: "m02395r" - name: "lipoxin A4" - - compartment: r - - formula: C20H31O5 + - compartment: "r" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02396c + - id: "m02396c" - name: "lipoxin B4" - - compartment: c - - formula: C20H31O5 + - compartment: "c" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02396n + - id: "m02396n" - name: "lipoxin B4" - - compartment: n - - formula: C20H31O5 + - compartment: "n" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02396p + - id: "m02396p" - name: "lipoxin B4" - - compartment: p - - formula: C20H31O5 + - compartment: "p" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02396r + - id: "m02396r" - name: "lipoxin B4" - - compartment: r - - formula: C20H31O5 + - compartment: "r" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02397c + - id: "m02397c" - name: "lipoyl-[ACP]" - - compartment: c - - formula: C19H33N2O8PRS3 + - compartment: "c" + - formula: "C19H33N2O8PRS3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02398c + - id: "m02398c" - name: "lipoyl-AMP" - - compartment: c - - formula: C18H25N5O8PS2 + - compartment: "c" + - formula: "C18H25N5O8PS2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02399c + - id: "m02399c" - name: "lipoyllysine" - - compartment: c - - formula: C14H26N2O3S2 + - compartment: "c" + - formula: "C14H26N2O3S2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02400m + - id: "m02400m" - name: "lipoylprotein" - - compartment: m - - formula: S2X + - compartment: "m" + - formula: "S2X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02401c + - id: "m02401c" - name: "L-isoleucyl-tRNA(ile)" - - compartment: c - - formula: C6H13NOR + - compartment: "c" + - formula: "C6H13NOR" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02402c + - id: "m02402c" - name: "lithocholate" - - compartment: c - - formula: C24H39O3 + - compartment: "c" + - formula: "C24H39O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02402p + - id: "m02402p" - name: "lithocholate" - - compartment: p - - formula: C24H39O3 + - compartment: "p" + - formula: "C24H39O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02402r + - id: "m02402r" - name: "lithocholate" - - compartment: r - - formula: C24H39O3 + - compartment: "r" + - formula: "C24H39O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02402s + - id: "m02402s" - name: "lithocholate" - - compartment: s - - formula: C24H39O3 + - compartment: "s" + - formula: "C24H39O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02403c + - id: "m02403c" - name: "L-lactate" - - compartment: c - - formula: C3H5O3 + - compartment: "c" + - formula: "C3H5O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02403m + - id: "m02403m" - name: "L-lactate" - - compartment: m - - formula: C3H5O3 + - compartment: "m" + - formula: "C3H5O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02403p + - id: "m02403p" - name: "L-lactate" - - compartment: p - - formula: C3H5O3 + - compartment: "p" + - formula: "C3H5O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02403s + - id: "m02403s" - name: "L-lactate" - - compartment: s - - formula: C3H5O3 + - compartment: "s" + - formula: "C3H5O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02404c + - id: "m02404c" - name: "L-leucyl-tRNA(leu)" - - compartment: c - - formula: C6H13NOR + - compartment: "c" + - formula: "C6H13NOR" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02405c + - id: "m02405c" - name: "L-lysyl-tRNA(lys)" - - compartment: c - - formula: C6H15N2OR + - compartment: "c" + - formula: "C6H15N2OR" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02406c + - id: "m02406c" - name: "L-lyxonate" - - compartment: c - - formula: C5H9O6 + - compartment: "c" + - formula: "C5H9O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02407c + - id: "m02407c" - name: "L-metanephrine" - - compartment: c - - formula: C10H16NO3 + - compartment: "c" + - formula: "C10H16NO3" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02407s + - id: "m02407s" - name: "L-metanephrine" - - compartment: s - - formula: C10H16NO3 + - compartment: "s" + - formula: "C10H16NO3" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02408c + - id: "m02408c" - name: "L-methionyl-tRNA(met)" - - compartment: c - - formula: C5H11NOSR + - compartment: "c" + - formula: "C5H11NOSR" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02409c + - id: "m02409c" - name: "L-octanoylcarnitine" - - compartment: c - - formula: C15H29NO4 + - compartment: "c" + - formula: "C15H29NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02409m + - id: "m02409m" - name: "L-octanoylcarnitine" - - compartment: m - - formula: C15H29NO4 + - compartment: "m" + - formula: "C15H29NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02409p + - id: "m02409p" - name: "L-octanoylcarnitine" - - compartment: p - - formula: C15H29NO4 + - compartment: "p" + - formula: "C15H29NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02410c + - id: "m02410c" - name: "L-oleoylcarnitine" - - compartment: c - - formula: C25H47NO4 + - compartment: "c" + - formula: "C25H47NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02410m + - id: "m02410m" - name: "L-oleoylcarnitine" - - compartment: m - - formula: C25H47NO4 + - compartment: "m" + - formula: "C25H47NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02410r + - id: "m02410r" - name: "L-oleoylcarnitine" - - compartment: r - - formula: C25H47NO4 + - compartment: "r" + - formula: "C25H47NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02411c + - id: "m02411c" - name: "L-palmitoylcarnitine" - - compartment: c - - formula: C23H45NO4 + - compartment: "c" + - formula: "C23H45NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02411m + - id: "m02411m" - name: "L-palmitoylcarnitine" - - compartment: m - - formula: C23H45NO4 + - compartment: "m" + - formula: "C23H45NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02411r + - id: "m02411r" - name: "L-palmitoylcarnitine" - - compartment: r - - formula: C23H45NO4 + - compartment: "r" + - formula: "C23H45NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02412c + - id: "m02412c" - name: "L-phenylalanyl-tRNA(phe)" - - compartment: c - - formula: C9H11NOR + - compartment: "c" + - formula: "C9H11NOR" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02413p + - id: "m02413p" - name: "L-pipecolate" - - compartment: p - - formula: C6H11NO2 + - compartment: "p" + - formula: "C6H11NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02414c + - id: "m02414c" - name: "LPL" - - compartment: c - - formula: C2380H3698N650O700S17 + - compartment: "c" + - formula: "C2380H3698N650O700S17" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02414l + - id: "m02414l" - name: "LPL" - - compartment: l - - formula: C2380H3698N650O700S17 + - compartment: "l" + - formula: "C2380H3698N650O700S17" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02414s + - id: "m02414s" - name: "LPL" - - compartment: s - - formula: C2380H3698N650O700S17 + - compartment: "s" + - formula: "C2380H3698N650O700S17" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02415c + - id: "m02415c" - name: "L-prolyl-tRNA(pro)" - - compartment: c - - formula: C5H9NOR + - compartment: "c" + - formula: "C5H9NOR" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02416c + - id: "m02416c" - name: "L-seryl-tRNA(ser)" - - compartment: c - - formula: C3H7NO2R + - compartment: "c" + - formula: "C3H7NO2R" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02417c + - id: "m02417c" - name: "L-sorbose" - - compartment: c - - formula: C6H12O6 + - compartment: "c" + - formula: "C6H12O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02418c + - id: "m02418c" - name: "LTD4" - - compartment: c - - formula: C25H39N2O6S + - compartment: "c" + - formula: "C25H39N2O6S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02418r + - id: "m02418r" - name: "LTD4" - - compartment: r - - formula: C25H39N2O6S + - compartment: "r" + - formula: "C25H39N2O6S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02418s + - id: "m02418s" - name: "LTD4" - - compartment: s - - formula: C25H39N2O6S + - compartment: "s" + - formula: "C25H39N2O6S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02419c + - id: "m02419c" - name: "L-threonyl-tRNA(thr)" - - compartment: c - - formula: C4H9NO2R + - compartment: "c" + - formula: "C4H9NO2R" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02420c + - id: "m02420c" - name: "L-tryptophanyl-tRNA(trp)" - - compartment: c - - formula: C11H12N2OR + - compartment: "c" + - formula: "C11H12N2OR" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02421c + - id: "m02421c" - name: "L-tyrosyl-tRNA(tyr)" - - compartment: c - - formula: C9H11NO2R + - compartment: "c" + - formula: "C9H11NO2R" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02422c + - id: "m02422c" - name: "lumisterol 3" - - compartment: c - - formula: C27H44O + - compartment: "c" + - formula: "C27H44O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02423c + - id: "m02423c" - name: "L-valyl-tRNA(val)" - - compartment: c - - formula: C5H11NOR + - compartment: "c" + - formula: "C5H11NOR" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02424c + - id: "m02424c" - name: "L-xylonate" - - compartment: c - - formula: C5H9O6 + - compartment: "c" + - formula: "C5H9O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02425c + - id: "m02425c" - name: "L-xylulose" - - compartment: c - - formula: C5H10O5 + - compartment: "c" + - formula: "C5H10O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02426c + - id: "m02426c" - name: "lysine" - - compartment: c - - formula: C6H15N2O2 + - compartment: "c" + - formula: "C6H15N2O2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02426l + - id: "m02426l" - name: "lysine" - - compartment: l - - formula: C6H15N2O2 + - compartment: "l" + - formula: "C6H15N2O2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02426m + - id: "m02426m" - name: "lysine" - - compartment: m - - formula: C6H15N2O2 + - compartment: "m" + - formula: "C6H15N2O2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02426n + - id: "m02426n" - name: "lysine" - - compartment: n - - formula: C6H15N2O2 + - compartment: "n" + - formula: "C6H15N2O2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02426p + - id: "m02426p" - name: "lysine" - - compartment: p - - formula: C6H15N2O2 + - compartment: "p" + - formula: "C6H15N2O2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02426s + - id: "m02426s" - name: "lysine" - - compartment: s - - formula: C6H15N2O2 + - compartment: "s" + - formula: "C6H15N2O2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02427c + - id: "m02427c" - name: "lysosomal-enzyme-D-mannose" - - compartment: c - - formula: C6H11O6R + - compartment: "c" + - formula: "C6H11O6R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02428c + - id: "m02428c" - name: "lysosomal-enzyme-N-acetyl-D-glucosaminyl-phospho-D-mannose" - - compartment: c - - formula: C14H25NO14PR + - compartment: "c" + - formula: "C14H25NO14PR" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02429c + - id: "m02429c" - name: "lysyl-proline" - - compartment: c - - formula: C11H22N3O3 + - compartment: "c" + - formula: "C11H22N3O3" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02430r + - id: "m02430r" - name: "m2emgacpail heparan sulfate" - - compartment: r - - formula: C53H94N2O36P2R2 + - compartment: "r" + - formula: "C53H94N2O36P2R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02431r + - id: "m02431r" - name: "m2gacpail heparan sulfate" - - compartment: r - - formula: C45H78NO28PR2 + - compartment: "r" + - formula: "C45H78NO28PR2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02432r + - id: "m02432r" - name: "m3emgacpail heparan sulfate" - - compartment: r - - formula: C59H104N2O41P2R2 + - compartment: "r" + - formula: "C59H104N2O41P2R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02433r + - id: "m02433r" - name: "m3gacpail heparan sulfate" - - compartment: r - - formula: C51H88NO33PR2 + - compartment: "r" + - formula: "C51H88NO33PR2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02434r + - id: "m02434r" - name: "m3gacpail_prot heparan sulfate" - - compartment: r - - formula: C51H88NO33PR2X + - compartment: "r" + - formula: "C51H88NO33PR2X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02434c + - id: "m02434c" - name: "m3gacpail_prot heparan sulfate" - - compartment: c - - formula: C51H88NO33PR2X + - compartment: "c" + - formula: "C51H88NO33PR2X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02434s + - id: "m02434s" - name: "m3gacpail_prot heparan sulfate" - - compartment: s - - formula: C51H88NO33PR2X + - compartment: "s" + - formula: "C51H88NO33PR2X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02435c + - id: "m02435c" - name: "m7G(5')pppAm" - - compartment: c - - formula: C32H44N10O29P5R2 + - compartment: "c" + - formula: "C32H44N10O29P5R2" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02436c + - id: "m02436c" - name: "m7G(5')pppm6Am (mRNA containing an N6,2'-O-dimethyladenosine cap)" - - compartment: c - - formula: C33H46N10O29P5R2 + - compartment: "c" + - formula: "C33H46N10O29P5R2" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02437c + - id: "m02437c" - name: "m7G(5')pppRm-RNA (mRNA containing a 2'-O-methylpurine cap)" - - compartment: c - - formula: C27H39N5O29P5R3 + - compartment: "c" + - formula: "C27H39N5O29P5R3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02438c + - id: "m02438c" - name: "m7G(5')pppR-RNA" - - compartment: c - - formula: C26H37N5O29P5R3 + - compartment: "c" + - formula: "C26H37N5O29P5R3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02439c + - id: "m02439c" - name: "malate" - - compartment: c - - formula: C4H4O5 + - compartment: "c" + - formula: "C4H4O5" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02439m + - id: "m02439m" - name: "malate" - - compartment: m - - formula: C4H4O5 + - compartment: "m" + - formula: "C4H4O5" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02440c + - id: "m02440c" - name: "malonate" - - compartment: c - - formula: C3H2O4 + - compartment: "c" + - formula: "C3H2O4" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02440m + - id: "m02440m" - name: "malonate" - - compartment: m - - formula: C3H2O4 + - compartment: "m" + - formula: "C3H2O4" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02440s + - id: "m02440s" - name: "malonate" - - compartment: s - - formula: C3H2O4 + - compartment: "s" + - formula: "C3H2O4" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02441c + - id: "m02441c" - name: "malonic-dialdehyde" - - compartment: c - - formula: C3H3O2 + - compartment: "c" + - formula: "C3H3O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02442c + - id: "m02442c" - name: "malonyl-[ACP]" - - compartment: c - - formula: C14H22N2O10PRS + - compartment: "c" + - formula: "C14H22N2O10PRS" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02443c + - id: "m02443c" - name: "malonyl-carnitin" - - compartment: c - - formula: C10H16NO6 + - compartment: "c" + - formula: "C10H16NO6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02443m + - id: "m02443m" - name: "malonyl-carnitin" - - compartment: m - - formula: C10H16NO6 + - compartment: "m" + - formula: "C10H16NO6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02443p + - id: "m02443p" - name: "malonyl-carnitin" - - compartment: p - - formula: C10H16NO6 + - compartment: "p" + - formula: "C10H16NO6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02443r + - id: "m02443r" - name: "malonyl-carnitin" - - compartment: r - - formula: C10H16NO6 + - compartment: "r" + - formula: "C10H16NO6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02444c + - id: "m02444c" - name: "malonyl-CoA" - - compartment: c - - formula: C24H33N7O19P3S + - compartment: "c" + - formula: "C24H33N7O19P3S" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02444m + - id: "m02444m" - name: "malonyl-CoA" - - compartment: m - - formula: C24H33N7O19P3S + - compartment: "m" + - formula: "C24H33N7O19P3S" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02444p + - id: "m02444p" - name: "malonyl-CoA" - - compartment: p - - formula: C24H33N7O19P3S + - compartment: "p" + - formula: "C24H33N7O19P3S" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02444r + - id: "m02444r" - name: "malonyl-CoA" - - compartment: r - - formula: C24H33N7O19P3S + - compartment: "r" + - formula: "C24H33N7O19P3S" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02445c + - id: "m02445c" - name: "maltodecaose" - - compartment: c - - formula: C60H102O51 + - compartment: "c" + - formula: "C60H102O51" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02445s + - id: "m02445s" - name: "maltodecaose" - - compartment: s - - formula: C60H102O51 + - compartment: "s" + - formula: "C60H102O51" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02446c + - id: "m02446c" - name: "maltoheptaose" - - compartment: c - - formula: C42H72O36 + - compartment: "c" + - formula: "C42H72O36" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02446s + - id: "m02446s" - name: "maltoheptaose" - - compartment: s - - formula: C42H72O36 + - compartment: "s" + - formula: "C42H72O36" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02447c + - id: "m02447c" - name: "maltohexaose" - - compartment: c - - formula: C36H62O31 + - compartment: "c" + - formula: "C36H62O31" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02447s + - id: "m02447s" - name: "maltohexaose" - - compartment: s - - formula: C36H62O31 + - compartment: "s" + - formula: "C36H62O31" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02448c + - id: "m02448c" - name: "maltononaose" - - compartment: c - - formula: C54H92O46 + - compartment: "c" + - formula: "C54H92O46" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02448s + - id: "m02448s" - name: "maltononaose" - - compartment: s - - formula: C54H92O46 + - compartment: "s" + - formula: "C54H92O46" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02449c + - id: "m02449c" - name: "maltopentaose" - - compartment: c - - formula: C30H52O26 + - compartment: "c" + - formula: "C30H52O26" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02449s + - id: "m02449s" - name: "maltopentaose" - - compartment: s - - formula: C30H52O26 + - compartment: "s" + - formula: "C30H52O26" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02450c + - id: "m02450c" - name: "maltose" - - compartment: c - - formula: C12H22O11 + - compartment: "c" + - formula: "C12H22O11" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02450l + - id: "m02450l" - name: "maltose" - - compartment: l - - formula: C12H22O11 + - compartment: "l" + - formula: "C12H22O11" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02450s + - id: "m02450s" - name: "maltose" - - compartment: s - - formula: C12H22O11 + - compartment: "s" + - formula: "C12H22O11" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02451c + - id: "m02451c" - name: "maltotetraose" - - compartment: c - - formula: C24H42O21 + - compartment: "c" + - formula: "C24H42O21" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02451s + - id: "m02451s" - name: "maltotetraose" - - compartment: s - - formula: C24H42O21 + - compartment: "s" + - formula: "C24H42O21" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02452c + - id: "m02452c" - name: "maltotriose" - - compartment: c - - formula: C18H32O16 + - compartment: "c" + - formula: "C18H32O16" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02452l + - id: "m02452l" - name: "maltotriose" - - compartment: l - - formula: C18H32O16 + - compartment: "l" + - formula: "C18H32O16" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02452s + - id: "m02452s" - name: "maltotriose" - - compartment: s - - formula: C18H32O16 + - compartment: "s" + - formula: "C18H32O16" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02453c + - id: "m02453c" - name: "mannose" - - compartment: c - - formula: C6H12O6 + - compartment: "c" + - formula: "C6H12O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02453g + - id: "m02453g" - name: "mannose" - - compartment: g - - formula: C6H12O6 + - compartment: "g" + - formula: "C6H12O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02453l + - id: "m02453l" - name: "mannose" - - compartment: l - - formula: C6H12O6 + - compartment: "l" + - formula: "C6H12O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02453r + - id: "m02453r" - name: "mannose" - - compartment: r - - formula: C6H12O6 + - compartment: "r" + - formula: "C6H12O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02453s + - id: "m02453s" - name: "mannose" - - compartment: s - - formula: C6H12O6 + - compartment: "s" + - formula: "C6H12O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02454c + - id: "m02454c" - name: "mannose-1-phosphate" - - compartment: c - - formula: C6H11O9P + - compartment: "c" + - formula: "C6H11O9P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02455c + - id: "m02455c" - name: "mannose-6-phosphate" - - compartment: c - - formula: C6H11O9P + - compartment: "c" + - formula: "C6H11O9P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02456c + - id: "m02456c" - name: "margaric acid" - - compartment: c - - formula: C17H33O2 + - compartment: "c" + - formula: "C17H33O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02456l + - id: "m02456l" - name: "margaric acid" - - compartment: l - - formula: C17H33O2 + - compartment: "l" + - formula: "C17H33O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02456r + - id: "m02456r" - name: "margaric acid" - - compartment: r - - formula: C17H33O2 + - compartment: "r" + - formula: "C17H33O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02456s + - id: "m02456s" - name: "margaric acid" - - compartment: s - - formula: C17H33O2 + - compartment: "s" + - formula: "C17H33O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02457c + - id: "m02457c" - name: "mead acid" - - compartment: c - - formula: C20H33O2 + - compartment: "c" + - formula: "C20H33O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02457l + - id: "m02457l" - name: "mead acid" - - compartment: l - - formula: C20H33O2 + - compartment: "l" + - formula: "C20H33O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02457r + - id: "m02457r" - name: "mead acid" - - compartment: r - - formula: C20H33O2 + - compartment: "r" + - formula: "C20H33O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02457s + - id: "m02457s" - name: "mead acid" - - compartment: s - - formula: C20H33O2 + - compartment: "s" + - formula: "C20H33O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02458c + - id: "m02458c" - name: "eumelanin" - - compartment: c - - formula: C17H9N2O7 + - compartment: "c" + - formula: "C17H9N2O7" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02458s + - id: "m02458s" - name: "eumelanin" - - compartment: s - - formula: C17H9N2O7 + - compartment: "s" + - formula: "C17H9N2O7" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02459c + - id: "m02459c" - name: "melatonin radical" - - compartment: c - - formula: C13H17N2O3 + - compartment: "c" + - formula: "C13H17N2O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02460c + - id: "m02460c" - name: "melatonin" - - compartment: c - - formula: C13H16N2O2 + - compartment: "c" + - formula: "C13H16N2O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02461r + - id: "m02461r" - name: "mem2emgacpail heparan sulfate" - - compartment: r - - formula: C61H110N3O44P3R2 + - compartment: "r" + - formula: "C61H110N3O44P3R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02462r + - id: "m02462r" - name: "mem2emgacpail_prot heparan sulfate" - - compartment: r - - formula: C61H110N3O44P3R2X + - compartment: "r" + - formula: "C61H110N3O44P3R2X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02462c + - id: "m02462c" - name: "mem2emgacpail_prot heparan sulfate" - - compartment: c - - formula: C61H110N3O44P3R2X + - compartment: "c" + - formula: "C61H110N3O44P3R2X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02462s + - id: "m02462s" - name: "mem2emgacpail_prot heparan sulfate" - - compartment: s - - formula: C61H110N3O44P3R2X + - compartment: "s" + - formula: "C61H110N3O44P3R2X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02463r + - id: "m02463r" - name: "memgacpail heparan sulfate" - - compartment: r - - formula: C47H84N2O31P2R2 + - compartment: "r" + - formula: "C47H84N2O31P2R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02464c + - id: "m02464c" - name: "mercaptopyruvate" - - compartment: c - - formula: C3H3O3S + - compartment: "c" + - formula: "C3H3O3S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02464m + - id: "m02464m" - name: "mercaptopyruvate" - - compartment: m - - formula: C3H3O3S + - compartment: "m" + - formula: "C3H3O3S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02465m + - id: "m02465m" - name: "mesaconate" - - compartment: m - - formula: C5H4O4 + - compartment: "m" + - formula: "C5H4O4" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02466m + - id: "m02466m" - name: "mesaconyl-CoA" - - compartment: m - - formula: C26H35N7O19P3S + - compartment: "m" + - formula: "C26H35N7O19P3S" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02467c + - id: "m02467c" - name: "metformin" - - compartment: c - - formula: C4H11N5 + - compartment: "c" + - formula: "C4H11N5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02467s + - id: "m02467s" - name: "metformin" - - compartment: s - - formula: C4H11N5 + - compartment: "s" + - formula: "C4H11N5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02468m + - id: "m02468m" - name: "methacrylyl-CoA" - - compartment: m - - formula: C25H36N7O17P3S + - compartment: "m" + - formula: "C25H36N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02469c + - id: "m02469c" - name: "methaneselenol" - - compartment: c - - formula: CH4Se + - compartment: "c" + - formula: "CH4Se" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02470c + - id: "m02470c" - name: "methanol" - - compartment: c - - formula: CH4O1 + - compartment: "c" + - formula: "CH4O1" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02470l + - id: "m02470l" - name: "methanol" - - compartment: l - - formula: CH4O1 + - compartment: "l" + - formula: "CH4O1" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02470r + - id: "m02470r" - name: "methanol" - - compartment: r - - formula: CH4O1 + - compartment: "r" + - formula: "CH4O1" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02470s + - id: "m02470s" - name: "methanol" - - compartment: s - - formula: CH4O1 + - compartment: "s" + - formula: "CH4O1" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02471c + - id: "m02471c" - name: "methionine" - - compartment: c - - formula: C5H11NO2S + - compartment: "c" + - formula: "C5H11NO2S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02471l + - id: "m02471l" - name: "methionine" - - compartment: l - - formula: C5H11NO2S + - compartment: "l" + - formula: "C5H11NO2S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02471m + - id: "m02471m" - name: "methionine" - - compartment: m - - formula: C5H11NO2S + - compartment: "m" + - formula: "C5H11NO2S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02471s + - id: "m02471s" - name: "methionine" - - compartment: s - - formula: C5H11NO2S + - compartment: "s" + - formula: "C5H11NO2S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02472c + - id: "m02472c" - name: "methionyl-peptide" - - compartment: c - - formula: C11H17N4O5SR3 + - compartment: "c" + - formula: "C11H17N4O5SR3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02473c + - id: "m02473c" - name: "methylamine" - - compartment: c - - formula: C1H6N + - compartment: "c" + - formula: "C1H6N" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02474c + - id: "m02474c" - name: "methylarsonate" - - compartment: c - - formula: CH4AsO3 + - compartment: "c" + - formula: "CH4AsO3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02475c + - id: "m02475c" - name: "methylglyoxal" - - compartment: c - - formula: C3H4O2 + - compartment: "c" + - formula: "C3H4O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02475s + - id: "m02475s" - name: "methylglyoxal" - - compartment: s - - formula: C3H4O2 + - compartment: "s" + - formula: "C3H4O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02476c + - id: "m02476c" - name: "methylimidazole-acetaldehyde" - - compartment: c - - formula: C6H8N2O + - compartment: "c" + - formula: "C6H8N2O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02477c + - id: "m02477c" - name: "methylimidazoleacetic acid" - - compartment: c - - formula: C6H7N2O2 + - compartment: "c" + - formula: "C6H7N2O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02477s + - id: "m02477s" - name: "methylimidazoleacetic acid" - - compartment: s - - formula: C6H7N2O2 + - compartment: "s" + - formula: "C6H7N2O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02478c + - id: "m02478c" - name: "methyl-indole-3-acetate" - - compartment: c - - formula: C11H11NO2 + - compartment: "c" + - formula: "C11H11NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02479c + - id: "m02479c" - name: "methylmalonate" - - compartment: c - - formula: C4H4O4 + - compartment: "c" + - formula: "C4H4O4" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02479m + - id: "m02479m" - name: "methylmalonate" - - compartment: m - - formula: C4H4O4 + - compartment: "m" + - formula: "C4H4O4" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02480m + - id: "m02480m" - name: "methylmalonyl-CoA" - - compartment: m - - formula: C25H35N7O19P3S + - compartment: "m" + - formula: "C25H35N7O19P3S" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02481c + - id: "m02481c" - name: "methylthioribose-1p" - - compartment: c - - formula: C6H11O7PS + - compartment: "c" + - formula: "C6H11O7PS" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02482c + - id: "m02482c" - name: "Mg2+" - - compartment: c - - formula: Mg + - compartment: "c" + - formula: "Mg" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02482s + - id: "m02482s" - name: "Mg2+" - - compartment: s - - formula: Mg + - compartment: "s" + - formula: "Mg" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02483r + - id: "m02483r" - name: "mgacpail heparan sulfate" - - compartment: r - - formula: C39H68NO23PR2 + - compartment: "r" + - formula: "C39H68NO23PR2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02484m + - id: "m02484m" - name: "mitoACP" - - compartment: m - - formula: C11H21N2O7PRS + - compartment: "m" + - formula: "C11H21N2O7PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02485c + - id: "m02485c" - name: "mitoApo-[ACP]" - - compartment: c - - formula: HOR + - compartment: "c" + - formula: "HOR" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02485m + - id: "m02485m" - name: "mitoApo-[ACP]" - - compartment: m - - formula: HOR + - compartment: "m" + - formula: "HOR" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02486m + - id: "m02486m" - name: "mitooxidized thioredoxin" - - compartment: m - - formula: C819H1320N226O239S7 + - compartment: "m" + - formula: "C819H1320N226O239S7" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02487c + - id: "m02487c" - name: "mitothioredoxin" - - compartment: c - - formula: C819H1322N226O239S7 + - compartment: "c" + - formula: "C819H1322N226O239S7" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02487m + - id: "m02487m" - name: "mitothioredoxin" - - compartment: m - - formula: C819H1322N226O239S7 + - compartment: "m" + - formula: "C819H1322N226O239S7" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02488c + - id: "m02488c" - name: "molybdopterin" - - compartment: c - - formula: C10H12N5O6PS2 + - compartment: "c" + - formula: "C10H12N5O6PS2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02489c + - id: "m02489c" - name: "monodehydroascorbate" - - compartment: c - - formula: C6H6O6 + - compartment: "c" + - formula: "C6H6O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02490c + - id: "m02490c" - name: "monofucosyllactoisooctaosylceramide" - - compartment: c - - formula: C79H135N4O47R + - compartment: "c" + - formula: "C79H135N4O47R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02491c + - id: "m02491c" - name: "monosialylgalactosylgloboside" - - compartment: c - - formula: C62H106N3O36R + - compartment: "c" + - formula: "C62H106N3O36R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02492c + - id: "m02492c" - name: "myo-inositol-hexakisphosphate" - - compartment: c - - formula: C6H6O24P6 + - compartment: "c" + - formula: "C6H6O24P6" - charge: -12 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02492n + - id: "m02492n" - name: "myo-inositol-hexakisphosphate" - - compartment: n - - formula: C6H6O24P6 + - compartment: "n" + - formula: "C6H6O24P6" - charge: -12 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02493c + - id: "m02493c" - name: "myo-inositol-polyphosphate" - - compartment: c - - formula: X + - compartment: "c" + - formula: "X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02494c + - id: "m02494c" - name: "myristic acid" - - compartment: c - - formula: C14H27O2 + - compartment: "c" + - formula: "C14H27O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02494l + - id: "m02494l" - name: "myristic acid" - - compartment: l - - formula: C14H27O2 + - compartment: "l" + - formula: "C14H27O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02494r + - id: "m02494r" - name: "myristic acid" - - compartment: r - - formula: C14H27O2 + - compartment: "r" + - formula: "C14H27O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02494s + - id: "m02494s" - name: "myristic acid" - - compartment: s - - formula: C14H27O2 + - compartment: "s" + - formula: "C14H27O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02495c + - id: "m02495c" - name: "myristoyl-CoA" - - compartment: c - - formula: C35H58N7O17P3S + - compartment: "c" + - formula: "C35H58N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02495m + - id: "m02495m" - name: "myristoyl-CoA" - - compartment: m - - formula: C35H58N7O17P3S + - compartment: "m" + - formula: "C35H58N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02495p + - id: "m02495p" - name: "myristoyl-CoA" - - compartment: p - - formula: C35H58N7O17P3S + - compartment: "p" + - formula: "C35H58N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02495r + - id: "m02495r" - name: "myristoyl-CoA" - - compartment: r - - formula: C35H58N7O17P3S + - compartment: "r" + - formula: "C35H58N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02496c + - id: "m02496c" - name: "N(omega)-(ADP-D-ribosyl)-L-arginine" - - compartment: c - - formula: C21H34N9O15P2 + - compartment: "c" + - formula: "C21H34N9O15P2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02497c + - id: "m02497c" - name: "N-(omega)-hydroxyarginine" - - compartment: c - - formula: C6H15N4O3 + - compartment: "c" + - formula: "C6H15N4O3" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02498c + - id: "m02498c" - name: "N,N-chitobiosyldiphosphodolichol" - - compartment: c - - formula: C116H190N2O17P2 + - compartment: "c" + - formula: "C116H190N2O17P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02499c + - id: "m02499c" - name: "N,N-dimethyldopaminequinone" - - compartment: c - - formula: C10H14NO2 + - compartment: "c" + - formula: "C10H14NO2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02500c + - id: "m02500c" - name: "N,N-dimethylindoliumolate" - - compartment: c - - formula: C10H12NO2 + - compartment: "c" + - formula: "C10H12NO2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02501c + - id: "m02501c" - name: "N1,N12-diacetylspermine" - - compartment: c - - formula: C14H32N4O2 + - compartment: "c" + - formula: "C14H32N4O2" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02501p + - id: "m02501p" - name: "N1,N12-diacetylspermine" - - compartment: p - - formula: C14H32N4O2 + - compartment: "p" + - formula: "C14H32N4O2" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02502c + - id: "m02502c" - name: "N1,N8-diacetylspermidine" - - compartment: c - - formula: C11H24N3O2 + - compartment: "c" + - formula: "C11H24N3O2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02503c + - id: "m02503c" - name: "N1-acetylspermidine" - - compartment: c - - formula: C9H23N3O + - compartment: "c" + - formula: "C9H23N3O" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02503p + - id: "m02503p" - name: "N1-acetylspermidine" - - compartment: p - - formula: C9H23N3O + - compartment: "p" + - formula: "C9H23N3O" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02504c + - id: "m02504c" - name: "N1-acetylspermine" - - compartment: c - - formula: C12H31N4O + - compartment: "c" + - formula: "C12H31N4O" - charge: 3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02504p + - id: "m02504p" - name: "N1-acetylspermine" - - compartment: p - - formula: C12H31N4O + - compartment: "p" + - formula: "C12H31N4O" - charge: 3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02505c + - id: "m02505c" - name: "N1-methyl-2-pyridone-5-carboxamide" - - compartment: c - - formula: C7H8N2O2 + - compartment: "c" + - formula: "C7H8N2O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02506c + - id: "m02506c" - name: "N1-methyl-4-pyridone-5-carboxamide" - - compartment: c - - formula: C7H8N2O2 + - compartment: "c" + - formula: "C7H8N2O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02507g + - id: "m02507g" - name: "n2m2masn" - - compartment: g - - formula: C50H83N4O35X + - compartment: "g" + - formula: "C50H83N4O35X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02508l + - id: "m02508l" - name: "n2m2mn" - - compartment: l - - formula: C42H71N3O31 + - compartment: "l" + - formula: "C42H71N3O31" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02509l + - id: "m02509l" - name: "n2m2nm" - - compartment: l - - formula: C58H97N5O41 + - compartment: "l" + - formula: "C58H97N5O41" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02510g + - id: "m02510g" - name: "n2m2nmasn" - - compartment: g - - formula: C58H96N5O40X + - compartment: "g" + - formula: "C58H96N5O40X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02510l + - id: "m02510l" - name: "n2m2nmasn" - - compartment: l - - formula: C58H96N5O40X + - compartment: "l" + - formula: "C58H96N5O40X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02510s + - id: "m02510s" - name: "n2m2nmasn" - - compartment: s - - formula: C58H96N5O40X + - compartment: "s" + - formula: "C58H96N5O40X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02511l + - id: "m02511l" - name: "n2m2nmn" - - compartment: l - - formula: C50H84N4O36 + - compartment: "l" + - formula: "C50H84N4O36" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02512g + - id: "m02512g" - name: "n3m2masn" - - compartment: g - - formula: C58H96N5O40X + - compartment: "g" + - formula: "C58H96N5O40X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02513c + - id: "m02513c" - name: "N4-(acetyl-beta-D-glucosaminyl)asparagine" - - compartment: c - - formula: C12H21N3O8 + - compartment: "c" + - formula: "C12H21N3O8" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02514c + - id: "m02514c" - name: "N4-acetylaminobutanal" - - compartment: c - - formula: C6H11NO2 + - compartment: "c" + - formula: "C6H11NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02515g + - id: "m02515g" - name: "n4m2masn" - - compartment: g - - formula: C66H109N6O45X + - compartment: "g" + - formula: "C66H109N6O45X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02516c + - id: "m02516c" - name: "n5m2masn" - - compartment: c - - formula: C74H122N7O50X + - compartment: "c" + - formula: "C74H122N7O50X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02516g + - id: "m02516g" - name: "n5m2masn" - - compartment: g - - formula: C74H122N7O50X + - compartment: "g" + - formula: "C74H122N7O50X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02516s + - id: "m02516s" - name: "n5m2masn" - - compartment: s - - formula: C74H122N7O50X + - compartment: "s" + - formula: "C74H122N7O50X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02517c + - id: "m02517c" - name: "N6,N6,N6-trimethyl-L-lysine" - - compartment: c - - formula: C9H20N2O2 + - compartment: "c" + - formula: "C9H20N2O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02517r + - id: "m02517r" - name: "N6,N6,N6-trimethyl-L-lysine" - - compartment: r - - formula: C9H20N2O2 + - compartment: "r" + - formula: "C9H20N2O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02518c + - id: "m02518c" - name: "N8-acetylspermidine" - - compartment: c - - formula: C9H23N3O + - compartment: "c" + - formula: "C9H23N3O" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02519c + - id: "m02519c" - name: "Na+" - - compartment: c - - formula: Na + - compartment: "c" + - formula: "Na" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02519g + - id: "m02519g" - name: "Na+" - - compartment: g - - formula: Na + - compartment: "g" + - formula: "Na" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02519p + - id: "m02519p" - name: "Na+" - - compartment: p - - formula: Na + - compartment: "p" + - formula: "Na" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02519r + - id: "m02519r" - name: "Na+" - - compartment: r - - formula: Na + - compartment: "r" + - formula: "Na" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02519s + - id: "m02519s" - name: "Na+" - - compartment: s - - formula: Na + - compartment: "s" + - formula: "Na" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02520c + - id: "m02520c" - name: "N-acetyl-5-methoxykynuramine" - - compartment: c - - formula: C12H16N2O3 + - compartment: "c" + - formula: "C12H16N2O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02521c + - id: "m02521c" - name: "N-acetyl-beta-D-glucosaminylamine" - - compartment: c - - formula: C8H16N2O5 + - compartment: "c" + - formula: "C8H16N2O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02522c + - id: "m02522c" - name: "N-acetyl-D-glucosaminyldiphosphodolichol" - - compartment: c - - formula: C108H177NO12P2 + - compartment: "c" + - formula: "C108H177NO12P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02523c + - id: "m02523c" - name: "N-acetyl-D-glucosaminylphosphatidylinositol" - - compartment: c - - formula: C19H29NO18PR2 + - compartment: "c" + - formula: "C19H29NO18PR2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02523r + - id: "m02523r" - name: "N-acetyl-D-glucosaminylphosphatidylinositol" - - compartment: r - - formula: C19H29NO18PR2 + - compartment: "r" + - formula: "C19H29NO18PR2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02524c + - id: "m02524c" - name: "N-acetyl-D-mannosamine" - - compartment: c - - formula: C8H15NO6 + - compartment: "c" + - formula: "C8H15NO6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02524r + - id: "m02524r" - name: "N-acetyl-D-mannosamine" - - compartment: r - - formula: C8H15NO6 + - compartment: "r" + - formula: "C8H15NO6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02524s + - id: "m02524s" - name: "N-acetyl-D-mannosamine" - - compartment: s - - formula: C8H15NO6 + - compartment: "s" + - formula: "C8H15NO6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02525c + - id: "m02525c" - name: "N-acetylgalactosamine" - - compartment: c - - formula: C8H15NO6 + - compartment: "c" + - formula: "C8H15NO6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02525g + - id: "m02525g" - name: "N-acetylgalactosamine" - - compartment: g - - formula: C8H15NO6 + - compartment: "g" + - formula: "C8H15NO6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02525l + - id: "m02525l" - name: "N-acetylgalactosamine" - - compartment: l - - formula: C8H15NO6 + - compartment: "l" + - formula: "C8H15NO6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02526c + - id: "m02526c" - name: "N-acetylgalactosamine-1-phosphate" - - compartment: c - - formula: C8H14NO9P + - compartment: "c" + - formula: "C8H14NO9P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02527c + - id: "m02527c" - name: "N-acetylglucosamine" - - compartment: c - - formula: C8H15NO6 + - compartment: "c" + - formula: "C8H15NO6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02527l + - id: "m02527l" - name: "N-acetylglucosamine" - - compartment: l - - formula: C8H15NO6 + - compartment: "l" + - formula: "C8H15NO6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02527r + - id: "m02527r" - name: "N-acetylglucosamine" - - compartment: r - - formula: C8H15NO6 + - compartment: "r" + - formula: "C8H15NO6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02527s + - id: "m02527s" - name: "N-acetylglucosamine" - - compartment: s - - formula: C8H15NO6 + - compartment: "s" + - formula: "C8H15NO6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02528c + - id: "m02528c" - name: "N-acetylglucosamine-1-phosphate" - - compartment: c - - formula: C8H14NO9P + - compartment: "c" + - formula: "C8H14NO9P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02529c + - id: "m02529c" - name: "N-acetylglucosamine-6-phosphate" - - compartment: c - - formula: C8H14NO9P + - compartment: "c" + - formula: "C8H14NO9P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02530c + - id: "m02530c" - name: "N-acetyl-L-alanine" - - compartment: c - - formula: C5H8NO3 + - compartment: "c" + - formula: "C5H8NO3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02530m + - id: "m02530m" - name: "N-acetyl-L-alanine" - - compartment: m - - formula: C5H8NO3 + - compartment: "m" + - formula: "C5H8NO3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02531c + - id: "m02531c" - name: "N-acetyl-L-asparagine" - - compartment: c - - formula: C6H9N2O4 + - compartment: "c" + - formula: "C6H9N2O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02531m + - id: "m02531m" - name: "N-acetyl-L-asparagine" - - compartment: m - - formula: C6H9N2O4 + - compartment: "m" + - formula: "C6H9N2O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02532c + - id: "m02532c" - name: "N-acetyl-L-aspartate" - - compartment: c - - formula: C6H7NO5 + - compartment: "c" + - formula: "C6H7NO5" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02532m + - id: "m02532m" - name: "N-acetyl-L-aspartate" - - compartment: m - - formula: C6H7NO5 + - compartment: "m" + - formula: "C6H7NO5" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02533m + - id: "m02533m" - name: "N-acetyl-L-cystathionine" - - compartment: m - - formula: C9H15N2O5S + - compartment: "m" + - formula: "C9H15N2O5S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02534m + - id: "m02534m" - name: "N-acetyl-L-cysteine" - - compartment: m - - formula: C5H8NO3S + - compartment: "m" + - formula: "C5H8NO3S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02535m + - id: "m02535m" - name: "N-acetyl-L-glutamate 5-semialdehyde" - - compartment: m - - formula: C7H10NO4 + - compartment: "m" + - formula: "C7H10NO4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02536m + - id: "m02536m" - name: "N-acetyl-L-glutamate" - - compartment: m - - formula: C7H9NO5 + - compartment: "m" + - formula: "C7H9NO5" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02537m + - id: "m02537m" - name: "N-acetyl-L-glutamate-5-phosphate" - - compartment: m - - formula: C7H9NO8P + - compartment: "m" + - formula: "C7H9NO8P" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02538c + - id: "m02538c" - name: "N-acetyl-LTE4" - - compartment: c - - formula: C25H37NO6S + - compartment: "c" + - formula: "C25H37NO6S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02538n + - id: "m02538n" - name: "N-acetyl-LTE4" - - compartment: n - - formula: C25H37NO6S + - compartment: "n" + - formula: "C25H37NO6S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02539c + - id: "m02539c" - name: "N-acetylmannosamine-6-phosphate" - - compartment: c - - formula: C8H14NO9P + - compartment: "c" + - formula: "C8H14NO9P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02540c + - id: "m02540c" - name: "N-acetylmethionine" - - compartment: c - - formula: C7H12NO3S + - compartment: "c" + - formula: "C7H12NO3S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02540m + - id: "m02540m" - name: "N-acetylmethionine" - - compartment: m - - formula: C7H12NO3S + - compartment: "m" + - formula: "C7H12NO3S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02541c + - id: "m02541c" - name: "N-acetylmuramate" - - compartment: c - - formula: C11H18NO8 + - compartment: "c" + - formula: "C11H18NO8" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02542c + - id: "m02542c" - name: "N-acetylmuramoyl-ala" - - compartment: c - - formula: C14H23N2O9 + - compartment: "c" + - formula: "C14H23N2O9" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02543c + - id: "m02543c" - name: "N-acetylneuraminate" - - compartment: c - - formula: C11H18NO9 + - compartment: "c" + - formula: "C11H18NO9" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02543l + - id: "m02543l" - name: "N-acetylneuraminate" - - compartment: l - - formula: C11H18NO9 + - compartment: "l" + - formula: "C11H18NO9" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02543n + - id: "m02543n" - name: "N-acetylneuraminate" - - compartment: n - - formula: C11H18NO9 + - compartment: "n" + - formula: "C11H18NO9" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02544c + - id: "m02544c" - name: "N-acetylneuraminate-9-phosphate" - - compartment: c - - formula: C11H17NO12P + - compartment: "c" + - formula: "C11H17NO12P" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02545c + - id: "m02545c" - name: "N-acetyl-O-acetylneuraminate" - - compartment: c - - formula: C13H19NO10 + - compartment: "c" + - formula: "C13H19NO10" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02546c + - id: "m02546c" - name: "N-acetylornithine" - - compartment: c - - formula: C7H14N2O3 + - compartment: "c" + - formula: "C7H14N2O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02547c + - id: "m02547c" - name: "N-acetylputrescine" - - compartment: c - - formula: C6H15N2O + - compartment: "c" + - formula: "C6H15N2O" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02548c + - id: "m02548c" - name: "N-acetyl-S-[2-carboxy-1-(1H-imidazol-4-yl)ethyl]-L-cysteine" - - compartment: c - - formula: C11H13N3O5S + - compartment: "c" + - formula: "C11H13N3O5S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02549c + - id: "m02549c" - name: "N-acetyl-serotonin" - - compartment: c - - formula: C12H14N2O2 + - compartment: "c" + - formula: "C12H14N2O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02550c + - id: "m02550c" - name: "N-acetyl-seryl-aspartate" - - compartment: c - - formula: C9H12N2O7 + - compartment: "c" + - formula: "C9H12N2O7" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02551c + - id: "m02551c" - name: "N-acetyl-seryl-aspartyl-lysyl-proline" - - compartment: c - - formula: C20H32N5O9 + - compartment: "c" + - formula: "C20H32N5O9" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02552c + - id: "m02552c" - name: "NAD+" - - compartment: c - - formula: C21H26N7O14P2 + - compartment: "c" + - formula: "C21H26N7O14P2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02552m + - id: "m02552m" - name: "NAD+" - - compartment: m - - formula: C21H26N7O14P2 + - compartment: "m" + - formula: "C21H26N7O14P2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02552n + - id: "m02552n" - name: "NAD+" - - compartment: n - - formula: C21H26N7O14P2 + - compartment: "n" + - formula: "C21H26N7O14P2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02552p + - id: "m02552p" - name: "NAD+" - - compartment: p - - formula: C21H26N7O14P2 + - compartment: "p" + - formula: "C21H26N7O14P2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02552r + - id: "m02552r" - name: "NAD+" - - compartment: r - - formula: C21H26N7O14P2 + - compartment: "r" + - formula: "C21H26N7O14P2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02552s + - id: "m02552s" - name: "NAD+" - - compartment: s - - formula: C21H26N7O14P2 + - compartment: "s" + - formula: "C21H26N7O14P2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02553c + - id: "m02553c" - name: "NADH" - - compartment: c - - formula: C21H27N7O14P2 + - compartment: "c" + - formula: "C21H27N7O14P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02553m + - id: "m02553m" - name: "NADH" - - compartment: m - - formula: C21H27N7O14P2 + - compartment: "m" + - formula: "C21H27N7O14P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02553p + - id: "m02553p" - name: "NADH" - - compartment: p - - formula: C21H27N7O14P2 + - compartment: "p" + - formula: "C21H27N7O14P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02553r + - id: "m02553r" - name: "NADH" - - compartment: r - - formula: C21H27N7O14P2 + - compartment: "r" + - formula: "C21H27N7O14P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02553s + - id: "m02553s" - name: "NADH" - - compartment: s - - formula: C21H27N7O14P2 + - compartment: "s" + - formula: "C21H27N7O14P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02554c + - id: "m02554c" - name: "NADP+" - - compartment: c - - formula: C21H25N7O17P3 + - compartment: "c" + - formula: "C21H25N7O17P3" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02554l + - id: "m02554l" - name: "NADP+" - - compartment: l - - formula: C21H25N7O17P3 + - compartment: "l" + - formula: "C21H25N7O17P3" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02554m + - id: "m02554m" - name: "NADP+" - - compartment: m - - formula: C21H25N7O17P3 + - compartment: "m" + - formula: "C21H25N7O17P3" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02554n + - id: "m02554n" - name: "NADP+" - - compartment: n - - formula: C21H25N7O17P3 + - compartment: "n" + - formula: "C21H25N7O17P3" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02554p + - id: "m02554p" - name: "NADP+" - - compartment: p - - formula: C21H25N7O17P3 + - compartment: "p" + - formula: "C21H25N7O17P3" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02554r + - id: "m02554r" - name: "NADP+" - - compartment: r - - formula: C21H25N7O17P3 + - compartment: "r" + - formula: "C21H25N7O17P3" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02554s + - id: "m02554s" - name: "NADP+" - - compartment: s - - formula: C21H25N7O17P3 + - compartment: "s" + - formula: "C21H25N7O17P3" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02555c + - id: "m02555c" - name: "NADPH" - - compartment: c - - formula: C21H26N7O17P3 + - compartment: "c" + - formula: "C21H26N7O17P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02555l + - id: "m02555l" - name: "NADPH" - - compartment: l - - formula: C21H26N7O17P3 + - compartment: "l" + - formula: "C21H26N7O17P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02555m + - id: "m02555m" - name: "NADPH" - - compartment: m - - formula: C21H26N7O17P3 + - compartment: "m" + - formula: "C21H26N7O17P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02555n + - id: "m02555n" - name: "NADPH" - - compartment: n - - formula: C21H26N7O17P3 + - compartment: "n" + - formula: "C21H26N7O17P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02555p + - id: "m02555p" - name: "NADPH" - - compartment: p - - formula: C21H26N7O17P3 + - compartment: "p" + - formula: "C21H26N7O17P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02555r + - id: "m02555r" - name: "NADPH" - - compartment: r - - formula: C21H26N7O17P3 + - compartment: "r" + - formula: "C21H26N7O17P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02556c + - id: "m02556c" - name: "naphthalene" - - compartment: c - - formula: C10H8 + - compartment: "c" + - formula: "C10H8" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02556s + - id: "m02556s" - name: "naphthalene" - - compartment: s - - formula: C10H8 + - compartment: "s" + - formula: "C10H8" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02557c + - id: "m02557c" - name: "naphthalene-1,2-diol" - - compartment: c - - formula: C10H8O2 + - compartment: "c" + - formula: "C10H8O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02558m + - id: "m02558m" - name: "N-arachidonoylglycine" - - compartment: m - - formula: C22H34NO3 + - compartment: "m" + - formula: "C22H34NO3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02559c + - id: "m02559c" - name: "N-carbamoyl-L-aspartate" - - compartment: c - - formula: C5H6N2O5 + - compartment: "c" + - formula: "C5H6N2O5" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02560s + - id: "m02560s" - name: "NEFA blood pool in" - - compartment: s - - formula: CHO2R + - compartment: "s" + - formula: "CHO2R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02561s + - id: "m02561s" - name: "NEFA blood pool out" - - compartment: s - - formula: CHO2R + - compartment: "s" + - formula: "CHO2R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02562c + - id: "m02562c" - name: "neocasomorphin (1-5)" - - compartment: c - - formula: C29H40N5O9 + - compartment: "c" + - formula: "C29H40N5O9" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02563c + - id: "m02563c" - name: "neocasomorphin" - - compartment: c - - formula: C35H51N6O10 + - compartment: "c" + - formula: "C35H51N6O10" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02564c + - id: "m02564c" - name: "nervonic acid" - - compartment: c - - formula: C24H45O2 + - compartment: "c" + - formula: "C24H45O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02564l + - id: "m02564l" - name: "nervonic acid" - - compartment: l - - formula: C24H45O2 + - compartment: "l" + - formula: "C24H45O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02564r + - id: "m02564r" - name: "nervonic acid" - - compartment: r - - formula: C24H45O2 + - compartment: "r" + - formula: "C24H45O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02564s + - id: "m02564s" - name: "nervonic acid" - - compartment: s - - formula: C24H45O2 + - compartment: "s" + - formula: "C24H45O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02565c + - id: "m02565c" - name: "neungc" - - compartment: c - - formula: C11H18NO10 + - compartment: "c" + - formula: "C11H18NO10" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02566c + - id: "m02566c" - name: "neuromedin B(1-3)" - - compartment: c - - formula: C12H22N4O5 + - compartment: "c" + - formula: "C12H22N4O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02567c + - id: "m02567c" - name: "neuromedin B(4-10)" - - compartment: c - - formula: C40H54N11O8S + - compartment: "c" + - formula: "C40H54N11O8S" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02568c + - id: "m02568c" - name: "neuromedin B" - - compartment: c - - formula: C52H74N15O12S + - compartment: "c" + - formula: "C52H74N15O12S" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02569c + - id: "m02569c" - name: "neuromedin N(1-4)" - - compartment: c - - formula: C26H40N4O6 + - compartment: "c" + - formula: "C26H40N4O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02570c + - id: "m02570c" - name: "neuromedin N" - - compartment: c - - formula: C32H51N5O7 + - compartment: "c" + - formula: "C32H51N5O7" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02571c + - id: "m02571c" - name: "neurotensin 1-10" - - compartment: c - - formula: C57H91N18O16 + - compartment: "c" + - formula: "C57H91N18O16" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02572c + - id: "m02572c" - name: "neurotensin 11-13" - - compartment: c - - formula: C21H33N3O5 + - compartment: "c" + - formula: "C21H33N3O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02573c + - id: "m02573c" - name: "neurotensin" - - compartment: c - - formula: C78H122N21O20 + - compartment: "c" + - formula: "C78H122N21O20" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02574c + - id: "m02574c" - name: "N-formimino-L-glutamate" - - compartment: c - - formula: C6H8N2O4 + - compartment: "c" + - formula: "C6H8N2O4" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02575c + - id: "m02575c" - name: "N-formyl-GAR" - - compartment: c - - formula: C8H13N2O9P + - compartment: "c" + - formula: "C8H13N2O9P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02576c + - id: "m02576c" - name: "N-formylmethionyl-tRNA" - - compartment: c - - formula: C6H11NO2SR + - compartment: "c" + - formula: "C6H11NO2SR" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02577c + - id: "m02577c" - name: "NG,NG-dimethyl-L-arginine" - - compartment: c - - formula: C8H19N4O2 + - compartment: "c" + - formula: "C8H19N4O2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02578c + - id: "m02578c" - name: "NH3" - - compartment: c - - formula: H3N + - compartment: "c" + - formula: "H3N" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02578m + - id: "m02578m" - name: "NH3" - - compartment: m - - formula: H3N + - compartment: "m" + - formula: "H3N" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02578n + - id: "m02578n" - name: "NH3" - - compartment: n - - formula: H3N + - compartment: "n" + - formula: "H3N" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02578p + - id: "m02578p" - name: "NH3" - - compartment: p - - formula: H3N + - compartment: "p" + - formula: "H3N" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02578r + - id: "m02578r" - name: "NH3" - - compartment: r - - formula: H3N + - compartment: "r" + - formula: "H3N" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02578s + - id: "m02578s" - name: "NH3" - - compartment: s - - formula: H3N + - compartment: "s" + - formula: "H3N" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02579c + - id: "m02579c" - name: "NH4+" - - compartment: c - - formula: H4N + - compartment: "c" + - formula: "H4N" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02579m + - id: "m02579m" - name: "NH4+" - - compartment: m - - formula: H4N + - compartment: "m" + - formula: "H4N" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02579s + - id: "m02579s" - name: "NH4+" - - compartment: s - - formula: H4N + - compartment: "s" + - formula: "H4N" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02580c + - id: "m02580c" - name: "N-hydroxy-1-aminonaphthalene" - - compartment: c - - formula: C10H9NO + - compartment: "c" + - formula: "C10H9NO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02581c + - id: "m02581c" - name: "nicotinamide D-ribonucleotide" - - compartment: c - - formula: C11H14N2O8P + - compartment: "c" + - formula: "C11H14N2O8P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02581m + - id: "m02581m" - name: "nicotinamide D-ribonucleotide" - - compartment: m - - formula: C11H14N2O8P + - compartment: "m" + - formula: "C11H14N2O8P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02581n + - id: "m02581n" - name: "nicotinamide D-ribonucleotide" - - compartment: n - - formula: C11H14N2O8P + - compartment: "n" + - formula: "C11H14N2O8P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02582c + - id: "m02582c" - name: "nicotinamide ribonucleoside" - - compartment: c - - formula: C11H15N2O5 + - compartment: "c" + - formula: "C11H15N2O5" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02583c + - id: "m02583c" - name: "nicotinamide" - - compartment: c - - formula: C6H6N2O + - compartment: "c" + - formula: "C6H6N2O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02583s + - id: "m02583s" - name: "nicotinamide" - - compartment: s - - formula: C6H6N2O + - compartment: "s" + - formula: "C6H6N2O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02584c + - id: "m02584c" - name: "nicotinate D-ribonucleoside" - - compartment: c - - formula: C11H13NO6 + - compartment: "c" + - formula: "C11H13NO6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02585c + - id: "m02585c" - name: "nicotinate ribonucleotide" - - compartment: c - - formula: C11H12NO9P + - compartment: "c" + - formula: "C11H12NO9P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02585n + - id: "m02585n" - name: "nicotinate ribonucleotide" - - compartment: n - - formula: C11H12NO9P + - compartment: "n" + - formula: "C11H12NO9P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02586c + - id: "m02586c" - name: "nicotinate" - - compartment: c - - formula: C6H4NO2 + - compartment: "c" + - formula: "C6H4NO2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02586s + - id: "m02586s" - name: "nicotinate" - - compartment: s - - formula: C6H4NO2 + - compartment: "s" + - formula: "C6H4NO2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02587c + - id: "m02587c" - name: "nifedipine" - - compartment: c - - formula: C17H18N2O6 + - compartment: "c" + - formula: "C17H18N2O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02587s + - id: "m02587s" - name: "nifedipine" - - compartment: s - - formula: C17H18N2O6 + - compartment: "s" + - formula: "C17H18N2O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02588c + - id: "m02588c" - name: "nitrite" - - compartment: c - - formula: NO2 + - compartment: "c" + - formula: "NO2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02588s + - id: "m02588s" - name: "nitrite" - - compartment: s - - formula: NO2 + - compartment: "s" + - formula: "NO2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02589c + - id: "m02589c" - name: "nitrogen" - - compartment: c - - formula: N2 + - compartment: "c" + - formula: "N2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02590c + - id: "m02590c" - name: "nitrosoperoxycarbonate" - - compartment: c - - formula: CNO5 + - compartment: "c" + - formula: "CNO5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02591c + - id: "m02591c" - name: "nitryl-chloride" - - compartment: c - - formula: ClNO2 + - compartment: "c" + - formula: "ClNO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02592c + - id: "m02592c" - name: "nLc5Cer(G00051)" - - compartment: c - - formula: C51H89N2O28R + - compartment: "c" + - formula: "C51H89N2O28R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02593c + - id: "m02593c" - name: "nLc5Cer" - - compartment: c - - formula: C52H92N3O27RCO + - compartment: "c" + - formula: "C52H92N3O27RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02593g + - id: "m02593g" - name: "nLc5Cer" - - compartment: g - - formula: C52H92N3O27RCO + - compartment: "g" + - formula: "C52H92N3O27RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02594c + - id: "m02594c" - name: "nLc6Cer" - - compartment: c - - formula: C58H102N3O32RCO + - compartment: "c" + - formula: "C58H102N3O32RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02594g + - id: "m02594g" - name: "nLc6Cer" - - compartment: g - - formula: C58H102N3O32RCO + - compartment: "g" + - formula: "C58H102N3O32RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02595c + - id: "m02595c" - name: "nLc7Cer" - - compartment: c - - formula: C66H115N4O37RCO + - compartment: "c" + - formula: "C66H115N4O37RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02595g + - id: "m02595g" - name: "nLc7Cer" - - compartment: g - - formula: C66H115N4O37RCO + - compartment: "g" + - formula: "C66H115N4O37RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02596c + - id: "m02596c" - name: "nLc8Cer" - - compartment: c - - formula: C72H125N4O42RCO + - compartment: "c" + - formula: "C72H125N4O42RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02596g + - id: "m02596g" - name: "nLc8Cer" - - compartment: g - - formula: C72H125N4O42RCO + - compartment: "g" + - formula: "C72H125N4O42RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02597g + - id: "m02597g" - name: "nm2masn" - - compartment: g - - formula: C42H70N3O30X + - compartment: "g" + - formula: "C42H70N3O30X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02598g + - id: "m02598g" - name: "nm4masn" - - compartment: g - - formula: C54H90N3O40X + - compartment: "g" + - formula: "C54H90N3O40X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02599c + - id: "m02599c" - name: "N-methyl-4,6,7-trihydroxy-1,2,3,4-tetrahydroisoquinoline" - - compartment: c - - formula: C10H13NO3 + - compartment: "c" + - formula: "C10H13NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02600c + - id: "m02600c" - name: "N-methylethanolamine-phosphate" - - compartment: c - - formula: C3H9NO4P + - compartment: "c" + - formula: "C3H9NO4P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02601c + - id: "m02601c" - name: "N-methylhistamine" - - compartment: c - - formula: C6H12N3 + - compartment: "c" + - formula: "C6H12N3" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02602c + - id: "m02602c" - name: "N-methylputrescine" - - compartment: c - - formula: C5H16N2 + - compartment: "c" + - formula: "C5H16N2" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02603c + - id: "m02603c" - name: "N-methylsalsolinol" - - compartment: c - - formula: C11H16NO2 + - compartment: "c" + - formula: "C11H16NO2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02604c + - id: "m02604c" - name: "N-methylserotonin" - - compartment: c - - formula: C11H15N2O + - compartment: "c" + - formula: "C11H15N2O" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02605c + - id: "m02605c" - name: "N-methyltryptamine" - - compartment: c - - formula: C11H15N2 + - compartment: "c" + - formula: "C11H15N2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02606c + - id: "m02606c" - name: "N-methyltyramine" - - compartment: c - - formula: C9H14NO + - compartment: "c" + - formula: "C9H14NO" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02607c + - id: "m02607c" - name: "NNAL-N-glucuronide" - - compartment: c - - formula: C16H23N3O8 + - compartment: "c" + - formula: "C16H23N3O8" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02608c + - id: "m02608c" - name: "N-nitrosomethanamine" - - compartment: c - - formula: CH4N2O + - compartment: "c" + - formula: "CH4N2O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02609c + - id: "m02609c" - name: "NO" - - compartment: c - - formula: NO + - compartment: "c" + - formula: "NO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02609s + - id: "m02609s" - name: "NO" - - compartment: s - - formula: NO + - compartment: "s" + - formula: "NO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02610c + - id: "m02610c" - name: "noladin-ether" - - compartment: c - - formula: C23H40O3 + - compartment: "c" + - formula: "C23H40O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02611c + - id: "m02611c" - name: "nonadecanoylcarnitine" - - compartment: c - - formula: C26H51NO4 + - compartment: "c" + - formula: "C26H51NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02611m + - id: "m02611m" - name: "nonadecanoylcarnitine" - - compartment: m - - formula: C26H51NO4 + - compartment: "m" + - formula: "C26H51NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02611r + - id: "m02611r" - name: "nonadecanoylcarnitine" - - compartment: r - - formula: C26H51NO4 + - compartment: "r" + - formula: "C26H51NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02612c + - id: "m02612c" - name: "nonadecanoyl-CoA" - - compartment: c - - formula: C40H68N7O17P3S + - compartment: "c" + - formula: "C40H68N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02612m + - id: "m02612m" - name: "nonadecanoyl-CoA" - - compartment: m - - formula: C40H68N7O17P3S + - compartment: "m" + - formula: "C40H68N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02612r + - id: "m02612r" - name: "nonadecanoyl-CoA" - - compartment: r - - formula: C40H68N7O17P3S + - compartment: "r" + - formula: "C40H68N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02613c + - id: "m02613c" - name: "nonadecylic acid" - - compartment: c - - formula: C19H37O2 + - compartment: "c" + - formula: "C19H37O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02613l + - id: "m02613l" - name: "nonadecylic acid" - - compartment: l - - formula: C19H37O2 + - compartment: "l" + - formula: "C19H37O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02613r + - id: "m02613r" - name: "nonadecylic acid" - - compartment: r - - formula: C19H37O2 + - compartment: "r" + - formula: "C19H37O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02613s + - id: "m02613s" - name: "nonadecylic acid" - - compartment: s - - formula: C19H37O2 + - compartment: "s" + - formula: "C19H37O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02614c + - id: "m02614c" - name: "nonanoic acid" - - compartment: c - - formula: C9H17O2 + - compartment: "c" + - formula: "C9H17O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02614s + - id: "m02614s" - name: "nonanoic acid" - - compartment: s - - formula: C9H17O2 + - compartment: "s" + - formula: "C9H17O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02615c + - id: "m02615c" - name: "nonanoyl-[ACP]" - - compartment: c - - formula: C20H37N2O8PRS + - compartment: "c" + - formula: "C20H37N2O8PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02616c + - id: "m02616c" - name: "nonanoyl-CoA" - - compartment: c - - formula: C30H48N7O17P3S + - compartment: "c" + - formula: "C30H48N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02616m + - id: "m02616m" - name: "nonanoyl-CoA" - - compartment: m - - formula: C30H48N7O17P3S + - compartment: "m" + - formula: "C30H48N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02617c + - id: "m02617c" - name: "noradrenaline" - - compartment: c - - formula: C8H12NO3 + - compartment: "c" + - formula: "C8H12NO3" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02617s + - id: "m02617s" - name: "noradrenaline" - - compartment: s - - formula: C8H12NO3 + - compartment: "s" + - formula: "C8H12NO3" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02618c + - id: "m02618c" - name: "noradrenochrome" - - compartment: c - - formula: C8H7NO3 + - compartment: "c" + - formula: "C8H7NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02619c + - id: "m02619c" - name: "noradrenochrome-O-semiquinone" - - compartment: c - - formula: C8H7NO3 + - compartment: "c" + - formula: "C8H7NO3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02620c + - id: "m02620c" - name: "norepinephrine sulfate" - - compartment: c - - formula: C8H11NO6S + - compartment: "c" + - formula: "C8H11NO6S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02620s + - id: "m02620s" - name: "norepinephrine sulfate" - - compartment: s - - formula: C8H11NO6S + - compartment: "s" + - formula: "C8H11NO6S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02621c + - id: "m02621c" - name: "norlaudanosoline" - - compartment: c - - formula: C16H18NO4 + - compartment: "c" + - formula: "C16H18NO4" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02622c + - id: "m02622c" - name: "normetanephrine" - - compartment: c - - formula: C9H14NO3 + - compartment: "c" + - formula: "C9H14NO3" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02623c + - id: "m02623c" - name: "N-pantothenoylcysteine" - - compartment: c - - formula: C12H21N2O6S + - compartment: "c" + - formula: "C12H21N2O6S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02623m + - id: "m02623m" - name: "N-pantothenoylcysteine" - - compartment: m - - formula: C12H21N2O6S + - compartment: "m" + - formula: "C12H21N2O6S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02624c + - id: "m02624c" - name: "N-retinylidene-N-retinylethanolamine" - - compartment: c - - formula: C42H58NO + - compartment: "c" + - formula: "C42H58NO" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02625c + - id: "m02625c" - name: "N-substituted amino acid" - - compartment: c - - formula: C3H3NO3R2 + - compartment: "c" + - formula: "C3H3NO3R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02626c + - id: "m02626c" - name: "N-substituted aminoacyl tRNA" - - compartment: c - - formula: C3H2NO2R3 + - compartment: "c" + - formula: "C3H2NO2R3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02627c + - id: "m02627c" - name: "N-tetradecanoylglycylpeptide" - - compartment: c - - formula: C18H33N2O4R + - compartment: "c" + - formula: "C18H33N2O4R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02628c + - id: "m02628c" - name: "N-trimethyl-2-aminoethylphosphonate" - - compartment: c - - formula: C5H13NO3P + - compartment: "c" + - formula: "C5H13NO3P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02629c + - id: "m02629c" - name: "O-1-alk-1-enyl-2-acyl-sn-glycero-3-phosphoethanolamine" - - compartment: c - - formula: C8H14NO7PR2 + - compartment: "c" + - formula: "C8H14NO7PR2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02630c + - id: "m02630c" - name: "O2" - - compartment: c - - formula: O2 + - compartment: "c" + - formula: "O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02631c + - id: "m02631c" - name: "O2-" - - compartment: c - - formula: O2 + - compartment: "c" + - formula: "O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02630g + - id: "m02630g" - name: "O2" - - compartment: g - - formula: O2 + - compartment: "g" + - formula: "O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02630l + - id: "m02630l" - name: "O2" - - compartment: l - - formula: O2 + - compartment: "l" + - formula: "O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02630m + - id: "m02630m" - name: "O2" - - compartment: m - - formula: O2 + - compartment: "m" + - formula: "O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02631m + - id: "m02631m" - name: "O2-" - - compartment: m - - formula: O2 + - compartment: "m" + - formula: "O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02630n + - id: "m02630n" - name: "O2" - - compartment: n - - formula: O2 + - compartment: "n" + - formula: "O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02631n + - id: "m02631n" - name: "O2-" - - compartment: n - - formula: O2 + - compartment: "n" + - formula: "O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02630p + - id: "m02630p" - name: "O2" - - compartment: p - - formula: O2 + - compartment: "p" + - formula: "O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02631p + - id: "m02631p" - name: "O2-" - - compartment: p - - formula: O2 + - compartment: "p" + - formula: "O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02630r + - id: "m02630r" - name: "O2" - - compartment: r - - formula: O2 + - compartment: "r" + - formula: "O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02630s + - id: "m02630s" - name: "O2" - - compartment: s - - formula: O2 + - compartment: "s" + - formula: "O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02631s + - id: "m02631s" - name: "O2-" - - compartment: s - - formula: O2 + - compartment: "s" + - formula: "O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02632c + - id: "m02632c" - name: "O2-4a-cyclic-tetrahydrobiopterin" - - compartment: c - - formula: C9H13N5O3 + - compartment: "c" + - formula: "C9H13N5O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02632n + - id: "m02632n" - name: "O2-4a-cyclic-tetrahydrobiopterin" - - compartment: n - - formula: C9H13N5O3 + - compartment: "n" + - formula: "C9H13N5O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02633c + - id: "m02633c" - name: "OAA" - - compartment: c - - formula: C4H2O5 + - compartment: "c" + - formula: "C4H2O5" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02633m + - id: "m02633m" - name: "OAA" - - compartment: m - - formula: C4H2O5 + - compartment: "m" + - formula: "C4H2O5" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02633p + - id: "m02633p" - name: "OAA" - - compartment: p - - formula: C4H2O5 + - compartment: "p" + - formula: "C4H2O5" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02634c + - id: "m02634c" - name: "O-acetylcarnitine" - - compartment: c - - formula: C9H17NO4 + - compartment: "c" + - formula: "C9H17NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02634m + - id: "m02634m" - name: "O-acetylcarnitine" - - compartment: m - - formula: C9H17NO4 + - compartment: "m" + - formula: "C9H17NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02634p + - id: "m02634p" - name: "O-acetylcarnitine" - - compartment: p - - formula: C9H17NO4 + - compartment: "p" + - formula: "C9H17NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02634r + - id: "m02634r" - name: "O-acetylcarnitine" - - compartment: r - - formula: C9H17NO4 + - compartment: "r" + - formula: "C9H17NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02635c + - id: "m02635c" - name: "O-butanoylcarnitine" - - compartment: c - - formula: C11H21NO4 + - compartment: "c" + - formula: "C11H21NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02635m + - id: "m02635m" - name: "O-butanoylcarnitine" - - compartment: m - - formula: C11H21NO4 + - compartment: "m" + - formula: "C11H21NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02636c + - id: "m02636c" - name: "ocosatetraenoylcarnitine" - - compartment: c - - formula: C29H49NO4 + - compartment: "c" + - formula: "C29H49NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02636m + - id: "m02636m" - name: "ocosatetraenoylcarnitine" - - compartment: m - - formula: C29H49NO4 + - compartment: "m" + - formula: "C29H49NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02636r + - id: "m02636r" - name: "ocosatetraenoylcarnitine" - - compartment: r - - formula: C29H49NO4 + - compartment: "r" + - formula: "C29H49NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02637c + - id: "m02637c" - name: "octadecatrienoylcarnitine" - - compartment: c - - formula: C25H43NO4 + - compartment: "c" + - formula: "C25H43NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02637m + - id: "m02637m" - name: "octadecatrienoylcarnitine" - - compartment: m - - formula: C25H43NO4 + - compartment: "m" + - formula: "C25H43NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02637r + - id: "m02637r" - name: "octadecatrienoylcarnitine" - - compartment: r - - formula: C25H43NO4 + - compartment: "r" + - formula: "C25H43NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02638c + - id: "m02638c" - name: "octadecenoylcarnitine(11)" - - compartment: c - - formula: C25H47NO4 + - compartment: "c" + - formula: "C25H47NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02638m + - id: "m02638m" - name: "octadecenoylcarnitine(11)" - - compartment: m - - formula: C25H47NO4 + - compartment: "m" + - formula: "C25H47NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02638r + - id: "m02638r" - name: "octadecenoylcarnitine(11)" - - compartment: r - - formula: C25H47NO4 + - compartment: "r" + - formula: "C25H47NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02639c + - id: "m02639c" - name: "octadecenoylcarnitine(5)" - - compartment: c - - formula: C25H47NO4 + - compartment: "c" + - formula: "C25H47NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02639m + - id: "m02639m" - name: "octadecenoylcarnitine(5)" - - compartment: m - - formula: C25H47NO4 + - compartment: "m" + - formula: "C25H47NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02639r + - id: "m02639r" - name: "octadecenoylcarnitine(5)" - - compartment: r - - formula: C25H47NO4 + - compartment: "r" + - formula: "C25H47NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02640c + - id: "m02640c" - name: "octadecenoylcarnitine(7)" - - compartment: c - - formula: C25H47NO4 + - compartment: "c" + - formula: "C25H47NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02640m + - id: "m02640m" - name: "octadecenoylcarnitine(7)" - - compartment: m - - formula: C25H47NO4 + - compartment: "m" + - formula: "C25H47NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02640r + - id: "m02640r" - name: "octadecenoylcarnitine(7)" - - compartment: r - - formula: C25H47NO4 + - compartment: "r" + - formula: "C25H47NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02641c + - id: "m02641c" - name: "octanoate radical" - - compartment: c - - formula: C8H15O2 + - compartment: "c" + - formula: "C8H15O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02642c + - id: "m02642c" - name: "octanoic acid" - - compartment: c - - formula: C8H15O2 + - compartment: "c" + - formula: "C8H15O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02642s + - id: "m02642s" - name: "octanoic acid" - - compartment: s - - formula: C8H15O2 + - compartment: "s" + - formula: "C8H15O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02643c + - id: "m02643c" - name: "octanoyl-[ACP]" - - compartment: c - - formula: C19H35N2O8PRS + - compartment: "c" + - formula: "C19H35N2O8PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02644c + - id: "m02644c" - name: "octanoyl-CoA" - - compartment: c - - formula: C29H46N7O17P3S + - compartment: "c" + - formula: "C29H46N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02644m + - id: "m02644m" - name: "octanoyl-CoA" - - compartment: m - - formula: C29H46N7O17P3S + - compartment: "m" + - formula: "C29H46N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02644p + - id: "m02644p" - name: "octanoyl-CoA" - - compartment: p - - formula: C29H46N7O17P3S + - compartment: "p" + - formula: "C29H46N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02645c + - id: "m02645c" - name: "O-D-mannosylprotein" - - compartment: c - - formula: C6H11O5X + - compartment: "c" + - formula: "C6H11O5X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02646c + - id: "m02646c" - name: "oleate" - - compartment: c - - formula: C18H33O2 + - compartment: "c" + - formula: "C18H33O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02646l + - id: "m02646l" - name: "oleate" - - compartment: l - - formula: C18H33O2 + - compartment: "l" + - formula: "C18H33O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02646r + - id: "m02646r" - name: "oleate" - - compartment: r - - formula: C18H33O2 + - compartment: "r" + - formula: "C18H33O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02646s + - id: "m02646s" - name: "oleate" - - compartment: s - - formula: C18H33O2 + - compartment: "s" + - formula: "C18H33O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02647c + - id: "m02647c" - name: "oleoyl-CoA" - - compartment: c - - formula: C39H64N7O17P3S + - compartment: "c" + - formula: "C39H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02647m + - id: "m02647m" - name: "oleoyl-CoA" - - compartment: m - - formula: C39H64N7O17P3S + - compartment: "m" + - formula: "C39H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02647p + - id: "m02647p" - name: "oleoyl-CoA" - - compartment: p - - formula: C39H64N7O17P3S + - compartment: "p" + - formula: "C39H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02647r + - id: "m02647r" - name: "oleoyl-CoA" - - compartment: r - - formula: C39H64N7O17P3S + - compartment: "r" + - formula: "C39H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02648c + - id: "m02648c" - name: "omega-3-arachidonic acid" - - compartment: c - - formula: C20H31O2 + - compartment: "c" + - formula: "C20H31O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02648l + - id: "m02648l" - name: "omega-3-arachidonic acid" - - compartment: l - - formula: C20H31O2 + - compartment: "l" + - formula: "C20H31O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02648r + - id: "m02648r" - name: "omega-3-arachidonic acid" - - compartment: r - - formula: C20H31O2 + - compartment: "r" + - formula: "C20H31O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02648s + - id: "m02648s" - name: "omega-3-arachidonic acid" - - compartment: s - - formula: C20H31O2 + - compartment: "s" + - formula: "C20H31O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02649m + - id: "m02649m" - name: "omega-carboxy-trinor-LTB4" - - compartment: m - - formula: C18H24O6 + - compartment: "m" + - formula: "C18H24O6" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02649p + - id: "m02649p" - name: "omega-carboxy-trinor-LTB4" - - compartment: p - - formula: C18H24O6 + - compartment: "p" + - formula: "C18H24O6" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02650p + - id: "m02650p" - name: "omega-COOH-dinor-LTE4-CoA" - - compartment: p - - formula: C42H60N8O22P3S2 + - compartment: "p" + - formula: "C42H60N8O22P3S2" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02651p + - id: "m02651p" - name: "omega-COOH-tetranor-LTE3" - - compartment: p - - formula: C19H26NO7S + - compartment: "p" + - formula: "C19H26NO7S" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02652p + - id: "m02652p" - name: "omega-COOH-tetranor-LTE3-CoA" - - compartment: p - - formula: C40H55N8O22P3S2 + - compartment: "p" + - formula: "C40H55N8O22P3S2" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02653c + - id: "m02653c" - name: "omeprazole" - - compartment: c - - formula: C17H19N3O3S + - compartment: "c" + - formula: "C17H19N3O3S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02653s + - id: "m02653s" - name: "omeprazole" - - compartment: s - - formula: C17H19N3O3S + - compartment: "s" + - formula: "C17H19N3O3S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02654c + - id: "m02654c" - name: "O-methylhippurate" - - compartment: c - - formula: C10H10NO3 + - compartment: "c" + - formula: "C10H10NO3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02655c + - id: "m02655c" - name: "O-phospho-L-homoserine" - - compartment: c - - formula: C4H8NO6P + - compartment: "c" + - formula: "C4H8NO6P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02656c + - id: "m02656c" - name: "O-phosphoprotamine" - - compartment: c - - formula: XO3P + - compartment: "c" + - formula: "XO3P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02657c + - id: "m02657c" - name: "O-propanoylcarnitine" - - compartment: c - - formula: C10H19NO4 + - compartment: "c" + - formula: "C10H19NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02657m + - id: "m02657m" - name: "O-propanoylcarnitine" - - compartment: m - - formula: C10H19NO4 + - compartment: "m" + - formula: "C10H19NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02657p + - id: "m02657p" - name: "O-propanoylcarnitine" - - compartment: p - - formula: C10H19NO4 + - compartment: "p" + - formula: "C10H19NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02658c + - id: "m02658c" - name: "ornithine" - - compartment: c - - formula: C5H13N2O2 + - compartment: "c" + - formula: "C5H13N2O2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02658m + - id: "m02658m" - name: "ornithine" - - compartment: m - - formula: C5H13N2O2 + - compartment: "m" + - formula: "C5H13N2O2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02658s + - id: "m02658s" - name: "ornithine" - - compartment: s - - formula: C5H13N2O2 + - compartment: "s" + - formula: "C5H13N2O2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02659c + - id: "m02659c" - name: "orotate" - - compartment: c - - formula: C5H3N2O4 + - compartment: "c" + - formula: "C5H3N2O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02659s + - id: "m02659s" - name: "orotate" - - compartment: s - - formula: C5H3N2O4 + - compartment: "s" + - formula: "C5H3N2O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02660c + - id: "m02660c" - name: "orotidine-5-phosphate" - - compartment: c - - formula: C10H10N2O11P + - compartment: "c" + - formula: "C10H10N2O11P" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02661c + - id: "m02661c" - name: "oxalate" - - compartment: c - - formula: C2O4 + - compartment: "c" + - formula: "C2O4" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02661m + - id: "m02661m" - name: "oxalate" - - compartment: m - - formula: C2O4 + - compartment: "m" + - formula: "C2O4" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02661p + - id: "m02661p" - name: "oxalate" - - compartment: p - - formula: C2O4 + - compartment: "p" + - formula: "C2O4" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02661s + - id: "m02661s" - name: "oxalate" - - compartment: s - - formula: C2O4 + - compartment: "s" + - formula: "C2O4" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02662c + - id: "m02662c" - name: "oxalosuccinate" - - compartment: c - - formula: C6H3O7 + - compartment: "c" + - formula: "C6H3O7" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02662m + - id: "m02662m" - name: "oxalosuccinate" - - compartment: m - - formula: C6H3O7 + - compartment: "m" + - formula: "C6H3O7" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02662p + - id: "m02662p" - name: "oxalosuccinate" - - compartment: p - - formula: C6H3O7 + - compartment: "p" + - formula: "C6H3O7" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02663c + - id: "m02663c" - name: "oxidized adrenal ferredoxin" - - compartment: c - - formula: X + - compartment: "c" + - formula: "X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02664c + - id: "m02664c" - name: "oxidized dithiothreitol" - - compartment: c - - formula: C4H8O2S2 + - compartment: "c" + - formula: "C4H8O2S2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02665c + - id: "m02665c" - name: "oxidized ferredoxin" - - compartment: c - - formula: X + - compartment: "c" + - formula: "X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02665m + - id: "m02665m" - name: "oxidized ferredoxin" - - compartment: m - - formula: X + - compartment: "m" + - formula: "X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02666c + - id: "m02666c" - name: "oxidized thioredoxin" - - compartment: c - - formula: C525H814N128O160S8 + - compartment: "c" + - formula: "C525H814N128O160S8" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02666m + - id: "m02666m" - name: "oxidized thioredoxin" - - compartment: m - - formula: C525H814N128O160S8 + - compartment: "m" + - formula: "C525H814N128O160S8" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02666n + - id: "m02666n" - name: "oxidized thioredoxin" - - compartment: n - - formula: C525H814N128O160S8 + - compartment: "n" + - formula: "C525H814N128O160S8" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02667c + - id: "m02667c" - name: "oxo-xanthurenate" - - compartment: c - - formula: C10H5NO4 + - compartment: "c" + - formula: "C10H5NO4" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02668c + - id: "m02668c" - name: "oxytocin 1-8" - - compartment: c - - formula: C41H61N10O12S2 + - compartment: "c" + - formula: "C41H61N10O12S2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02669c + - id: "m02669c" - name: "oxytocin" - - compartment: c - - formula: C43H67N12O12S2 + - compartment: "c" + - formula: "C43H67N12O12S2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02670c + - id: "m02670c" - name: "P1,P4-bis(5-adenosyl)-tetraphosphate" - - compartment: c - - formula: C20H24N10O19P4 + - compartment: "c" + - formula: "C20H24N10O19P4" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02671c + - id: "m02671c" - name: "P1,P4-bis(5-guanosyl)-tetraphosphate" - - compartment: c - - formula: C20H24N10O21P4 + - compartment: "c" + - formula: "C20H24N10O21P4" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02672g + - id: "m02672g" - name: "PA6" - - compartment: g - - formula: C90H145N6O65X + - compartment: "g" + - formula: "C90H145N6O65X" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02672l + - id: "m02672l" - name: "PA6" - - compartment: l - - formula: C90H145N6O65X + - compartment: "l" + - formula: "C90H145N6O65X" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02672s + - id: "m02672s" - name: "PA6" - - compartment: s - - formula: C90H145N6O65X + - compartment: "s" + - formula: "C90H145N6O65X" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02673c + - id: "m02673c" - name: "paclitaxel" - - compartment: c - - formula: C47H31NO14 + - compartment: "c" + - formula: "C47H31NO14" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02673s + - id: "m02673s" - name: "paclitaxel" - - compartment: s - - formula: C47H31NO14 + - compartment: "s" + - formula: "C47H31NO14" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02674c + - id: "m02674c" - name: "palmitate" - - compartment: c - - formula: C16H31O2 + - compartment: "c" + - formula: "C16H31O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02674l + - id: "m02674l" - name: "palmitate" - - compartment: l - - formula: C16H31O2 + - compartment: "l" + - formula: "C16H31O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02674p + - id: "m02674p" - name: "palmitate" - - compartment: p - - formula: C16H31O2 + - compartment: "p" + - formula: "C16H31O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02674r + - id: "m02674r" - name: "palmitate" - - compartment: r - - formula: C16H31O2 + - compartment: "r" + - formula: "C16H31O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02674s + - id: "m02674s" - name: "palmitate" - - compartment: s - - formula: C16H31O2 + - compartment: "s" + - formula: "C16H31O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02675c + - id: "m02675c" - name: "palmitolate" - - compartment: c - - formula: C16H29O2 + - compartment: "c" + - formula: "C16H29O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02675l + - id: "m02675l" - name: "palmitolate" - - compartment: l - - formula: C16H29O2 + - compartment: "l" + - formula: "C16H29O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02675r + - id: "m02675r" - name: "palmitolate" - - compartment: r - - formula: C16H29O2 + - compartment: "r" + - formula: "C16H29O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02675s + - id: "m02675s" - name: "palmitolate" - - compartment: s - - formula: C16H29O2 + - compartment: "s" + - formula: "C16H29O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02676c + - id: "m02676c" - name: "palmitoleoyl-carnitine" - - compartment: c - - formula: C23H43NO4 + - compartment: "c" + - formula: "C23H43NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02676m + - id: "m02676m" - name: "palmitoleoyl-carnitine" - - compartment: m - - formula: C23H43NO4 + - compartment: "m" + - formula: "C23H43NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02676r + - id: "m02676r" - name: "palmitoleoyl-carnitine" - - compartment: r - - formula: C23H43NO4 + - compartment: "r" + - formula: "C23H43NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02677c + - id: "m02677c" - name: "palmitoleoyl-CoA" - - compartment: c - - formula: C37H60N7O17P3S + - compartment: "c" + - formula: "C37H60N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02677m + - id: "m02677m" - name: "palmitoleoyl-CoA" - - compartment: m - - formula: C37H60N7O17P3S + - compartment: "m" + - formula: "C37H60N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02677p + - id: "m02677p" - name: "palmitoleoyl-CoA" - - compartment: p - - formula: C37H60N7O17P3S + - compartment: "p" + - formula: "C37H60N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02677r + - id: "m02677r" - name: "palmitoleoyl-CoA" - - compartment: r - - formula: C37H60N7O17P3S + - compartment: "r" + - formula: "C37H60N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02678c + - id: "m02678c" - name: "palmitoyl-CoA" - - compartment: c - - formula: C37H62N7O17P3S + - compartment: "c" + - formula: "C37H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02678m + - id: "m02678m" - name: "palmitoyl-CoA" - - compartment: m - - formula: C37H62N7O17P3S + - compartment: "m" + - formula: "C37H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02678p + - id: "m02678p" - name: "palmitoyl-CoA" - - compartment: p - - formula: C37H62N7O17P3S + - compartment: "p" + - formula: "C37H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02678r + - id: "m02678r" - name: "palmitoyl-CoA" - - compartment: r - - formula: C37H62N7O17P3S + - compartment: "r" + - formula: "C37H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02679c + - id: "m02679c" - name: "pantetheine" - - compartment: c - - formula: C11H22N2O4S + - compartment: "c" + - formula: "C11H22N2O4S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02679m + - id: "m02679m" - name: "pantetheine" - - compartment: m - - formula: C11H22N2O4S + - compartment: "m" + - formula: "C11H22N2O4S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02680c + - id: "m02680c" - name: "pantothenate" - - compartment: c - - formula: C9H16NO5 + - compartment: "c" + - formula: "C9H16NO5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02680s + - id: "m02680s" - name: "pantothenate" - - compartment: s - - formula: C9H16NO5 + - compartment: "s" + - formula: "C9H16NO5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02681c + - id: "m02681c" - name: "PAP" - - compartment: c - - formula: C10H11N5O10P2 + - compartment: "c" + - formula: "C10H11N5O10P2" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02681g + - id: "m02681g" - name: "PAP" - - compartment: g - - formula: C10H11N5O10P2 + - compartment: "g" + - formula: "C10H11N5O10P2" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02681l + - id: "m02681l" - name: "PAP" - - compartment: l - - formula: C10H11N5O10P2 + - compartment: "l" + - formula: "C10H11N5O10P2" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02682c + - id: "m02682c" - name: "PAPS" - - compartment: c - - formula: C10H11N5O13P2S + - compartment: "c" + - formula: "C10H11N5O13P2S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02682g + - id: "m02682g" - name: "PAPS" - - compartment: g - - formula: C10H11N5O13P2S + - compartment: "g" + - formula: "C10H11N5O13P2S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02682l + - id: "m02682l" - name: "PAPS" - - compartment: l - - formula: C10H11N5O13P2S + - compartment: "l" + - formula: "C10H11N5O13P2S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02683c + - id: "m02683c" - name: "paragloboside" - - compartment: c - - formula: C45H79N2O23R + - compartment: "c" + - formula: "C45H79N2O23R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02684c + - id: "m02684c" - name: "PC-LD pool" - - compartment: c - - formula: C10H18NO8PR2 + - compartment: "c" + - formula: "C10H18NO8PR2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02684g + - id: "m02684g" - name: "PC-LD pool" - - compartment: g - - formula: C10H18NO8PR2 + - compartment: "g" + - formula: "C10H18NO8PR2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02684l + - id: "m02684l" - name: "PC-LD pool" - - compartment: l - - formula: C10H18NO8PR2 + - compartment: "l" + - formula: "C10H18NO8PR2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02684r + - id: "m02684r" - name: "PC-LD pool" - - compartment: r - - formula: C10H18NO8PR2 + - compartment: "r" + - formula: "C10H18NO8PR2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02684s + - id: "m02684s" - name: "PC-LD pool" - - compartment: s - - formula: C10H18NO8PR2 + - compartment: "s" + - formula: "C10H18NO8PR2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02685c + - id: "m02685c" - name: "PE-LD pool" - - compartment: c - - formula: C7H12NO8PR2 + - compartment: "c" + - formula: "C7H12NO8PR2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02685g + - id: "m02685g" - name: "PE-LD pool" - - compartment: g - - formula: C7H12NO8PR2 + - compartment: "g" + - formula: "C7H12NO8PR2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02685l + - id: "m02685l" - name: "PE-LD pool" - - compartment: l - - formula: C7H12NO8PR2 + - compartment: "l" + - formula: "C7H12NO8PR2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02685m + - id: "m02685m" - name: "PE-LD pool" - - compartment: m - - formula: C7H12NO8PR2 + - compartment: "m" + - formula: "C7H12NO8PR2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02685r + - id: "m02685r" - name: "PE-LD pool" - - compartment: r - - formula: C7H12NO8PR2 + - compartment: "r" + - formula: "C7H12NO8PR2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02685s + - id: "m02685s" - name: "PE-LD pool" - - compartment: s - - formula: C7H12NO8PR2 + - compartment: "s" + - formula: "C7H12NO8PR2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02686c + - id: "m02686c" - name: "PE-NME-LD pool" - - compartment: c - - formula: C8H14NO8PR2 + - compartment: "c" + - formula: "C8H14NO8PR2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02687c + - id: "m02687c" - name: "pentadecanoyl-[ACP]" - - compartment: c - - formula: C26H49N2O8PRS + - compartment: "c" + - formula: "C26H49N2O8PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02688c + - id: "m02688c" - name: "pentadecanoylcarnitine" - - compartment: c - - formula: C22H43NO4 + - compartment: "c" + - formula: "C22H43NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02688m + - id: "m02688m" - name: "pentadecanoylcarnitine" - - compartment: m - - formula: C22H43NO4 + - compartment: "m" + - formula: "C22H43NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02688r + - id: "m02688r" - name: "pentadecanoylcarnitine" - - compartment: r - - formula: C22H43NO4 + - compartment: "r" + - formula: "C22H43NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02689c + - id: "m02689c" - name: "pentadecanoyl-CoA" - - compartment: c - - formula: C36H60N7O17P3S + - compartment: "c" + - formula: "C36H60N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02689m + - id: "m02689m" - name: "pentadecanoyl-CoA" - - compartment: m - - formula: C36H60N7O17P3S + - compartment: "m" + - formula: "C36H60N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02689r + - id: "m02689r" - name: "pentadecanoyl-CoA" - - compartment: r - - formula: C36H60N7O17P3S + - compartment: "r" + - formula: "C36H60N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02690c + - id: "m02690c" - name: "pentadecylic acid" - - compartment: c - - formula: C15H29O2 + - compartment: "c" + - formula: "C15H29O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02690l + - id: "m02690l" - name: "pentadecylic acid" - - compartment: l - - formula: C15H29O2 + - compartment: "l" + - formula: "C15H29O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02690r + - id: "m02690r" - name: "pentadecylic acid" - - compartment: r - - formula: C15H29O2 + - compartment: "r" + - formula: "C15H29O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02690s + - id: "m02690s" - name: "pentadecylic acid" - - compartment: s - - formula: C15H29O2 + - compartment: "s" + - formula: "C15H29O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02691c + - id: "m02691c" - name: "pentaglutamyl-folate(DHF)" - - compartment: c - - formula: C39H43N11O18 + - compartment: "c" + - formula: "C39H43N11O18" - charge: -6 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02691l + - id: "m02691l" - name: "pentaglutamyl-folate(DHF)" - - compartment: l - - formula: C39H43N11O18 + - compartment: "l" + - formula: "C39H43N11O18" - charge: -6 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02691m + - id: "m02691m" - name: "pentaglutamyl-folate(DHF)" - - compartment: m - - formula: C39H43N11O18 + - compartment: "m" + - formula: "C39H43N11O18" - charge: -6 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02691s + - id: "m02691s" - name: "pentaglutamyl-folate(DHF)" - - compartment: s - - formula: C39H43N11O18 + - compartment: "s" + - formula: "C39H43N11O18" - charge: -6 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02692c + - id: "m02692c" - name: "pentaglutamyl-folate(THF)" - - compartment: c - - formula: C39H45N11O18 + - compartment: "c" + - formula: "C39H45N11O18" - charge: -6 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02692l + - id: "m02692l" - name: "pentaglutamyl-folate(THF)" - - compartment: l - - formula: C39H45N11O18 + - compartment: "l" + - formula: "C39H45N11O18" - charge: -6 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02692m + - id: "m02692m" - name: "pentaglutamyl-folate(THF)" - - compartment: m - - formula: C39H45N11O18 + - compartment: "m" + - formula: "C39H45N11O18" - charge: -6 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02692s + - id: "m02692s" - name: "pentaglutamyl-folate(THF)" - - compartment: s - - formula: C39H45N11O18 + - compartment: "s" + - formula: "C39H45N11O18" - charge: -6 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02693c + - id: "m02693c" - name: "pentanoyl-[ACP]" - - compartment: c - - formula: C16H29N2O8PRS + - compartment: "c" + - formula: "C16H29N2O8PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02694c + - id: "m02694c" - name: "pentanoyl-CoA" - - compartment: c - - formula: C26H40N7O17P3S + - compartment: "c" + - formula: "C26H40N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02694m + - id: "m02694m" - name: "pentanoyl-CoA" - - compartment: m - - formula: C26H40N7O17P3S + - compartment: "m" + - formula: "C26H40N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02695c + - id: "m02695c" - name: "pentyl radical" - - compartment: c - - formula: C5H11 + - compartment: "c" + - formula: "C5H11" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02696c + - id: "m02696c" - name: "PEP" - - compartment: c - - formula: C3H2O6P + - compartment: "c" + - formula: "C3H2O6P" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02696m + - id: "m02696m" - name: "PEP" - - compartment: m - - formula: C3H2O6P + - compartment: "m" + - formula: "C3H2O6P" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02697c + - id: "m02697c" - name: "PE-PS-LD pool" - - compartment: c - - formula: C7H12NO8PR2 + - compartment: "c" + - formula: "C7H12NO8PR2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02698r + - id: "m02698r" - name: "peptide sans lysine" - - compartment: r - - formula: X + - compartment: "r" + - formula: "X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02699c + - id: "m02699c" - name: "peptide-2-(3-carboxy-3-aminopropyl)-L-histidine" - - compartment: c - - formula: C11H15N5O4R2 + - compartment: "c" + - formula: "C11H15N5O4R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02700c + - id: "m02700c" - name: "peptide-2-[3-carboxy-3-(methylammonio)propyl]-L-histidine" - - compartment: c - - formula: C12H17N5O4R2 + - compartment: "c" + - formula: "C12H17N5O4R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02701c + - id: "m02701c" - name: "peptide-3-hydroxy-L-aspartate" - - compartment: c - - formula: C5H6N2O5R2 + - compartment: "c" + - formula: "C5H6N2O5R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02702c + - id: "m02702c" - name: "peptide-L-aspartate" - - compartment: c - - formula: C5H6N2O4R2 + - compartment: "c" + - formula: "C5H6N2O4R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02703c + - id: "m02703c" - name: "peptide-L-methionine-(S)-S-oxide" - - compartment: c - - formula: C6H10N2O3SR2 + - compartment: "c" + - formula: "C6H10N2O3SR2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02704c + - id: "m02704c" - name: "peptide-L-methionine" - - compartment: c - - formula: C6H10N2O2SR2 + - compartment: "c" + - formula: "C6H10N2O2SR2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02705c + - id: "m02705c" - name: "peptidyl-allysyl-peptide" - - compartment: c - - formula: C7H10N2O3R2 + - compartment: "c" + - formula: "C7H10N2O3R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02706c + - id: "m02706c" - name: "peptidylamidoglycolate" - - compartment: c - - formula: C6H9N3O5R2 + - compartment: "c" + - formula: "C6H9N3O5R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02707c + - id: "m02707c" - name: "peptidylglycine" - - compartment: c - - formula: C6H9N3O4R2 + - compartment: "c" + - formula: "C6H9N3O4R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02708c + - id: "m02708c" - name: "peptidyl-L-lysyl-peptide" - - compartment: c - - formula: C7H14N3O2R2 + - compartment: "c" + - formula: "C7H14N3O2R2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02709c + - id: "m02709c" - name: "peptidylproline-(omega=0)" - - compartment: c - - formula: C6H8N2O2R2 + - compartment: "c" + - formula: "C6H8N2O2R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02710c + - id: "m02710c" - name: "peptidylproline-(omega=180)" - - compartment: c - - formula: C6H8N2O2R2 + - compartment: "c" + - formula: "C6H8N2O2R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02711c + - id: "m02711c" - name: "perillic acid" - - compartment: c - - formula: C10H13O2 + - compartment: "c" + - formula: "C10H13O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02711m + - id: "m02711m" - name: "perillic acid" - - compartment: m - - formula: C10H13O2 + - compartment: "m" + - formula: "C10H13O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02712c + - id: "m02712c" - name: "perillyl alcohol" - - compartment: c - - formula: C10H16O + - compartment: "c" + - formula: "C10H16O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02712s + - id: "m02712s" - name: "perillyl alcohol" - - compartment: s - - formula: C10H16O + - compartment: "s" + - formula: "C10H16O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02713c + - id: "m02713c" - name: "perillyl aldehyde" - - compartment: c - - formula: C10H14O + - compartment: "c" + - formula: "C10H14O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02713m + - id: "m02713m" - name: "perillyl aldehyde" - - compartment: m - - formula: C10H14O + - compartment: "m" + - formula: "C10H14O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02714c + - id: "m02714c" - name: "peroxynitrite" - - compartment: c - - formula: NO3 + - compartment: "c" + - formula: "NO3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02715m + - id: "m02715m" - name: "PG-CL pool" - - compartment: m - - formula: C8H12O10PR2 + - compartment: "m" + - formula: "C8H12O10PR2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02716c + - id: "m02716c" - name: "PGH3" - - compartment: c - - formula: C20H29O5 + - compartment: "c" + - formula: "C20H29O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02716n + - id: "m02716n" - name: "PGH3" - - compartment: n - - formula: C20H29O5 + - compartment: "n" + - formula: "C20H29O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02717m + - id: "m02717m" - name: "PGP-CL pool" - - compartment: m - - formula: C8H11O13P2R2 + - compartment: "m" + - formula: "C8H11O13P2R2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02718c + - id: "m02718c" - name: "phenethylamine" - - compartment: c - - formula: C8H12N + - compartment: "c" + - formula: "C8H12N" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02719c + - id: "m02719c" - name: "phenylacetaldehyde" - - compartment: c - - formula: C8H8O + - compartment: "c" + - formula: "C8H8O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02719m + - id: "m02719m" - name: "phenylacetaldehyde" - - compartment: m - - formula: C8H8O + - compartment: "m" + - formula: "C8H8O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02720c + - id: "m02720c" - name: "phenylacetate" - - compartment: c - - formula: C8H7O2 + - compartment: "c" + - formula: "C8H7O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02720m + - id: "m02720m" - name: "phenylacetate" - - compartment: m - - formula: C8H7O2 + - compartment: "m" + - formula: "C8H7O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02721c + - id: "m02721c" - name: "phenylacetyl-CoA" - - compartment: c - - formula: C29H38N7O17P3S + - compartment: "c" + - formula: "C29H38N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02722c + - id: "m02722c" - name: "phenylacetylglutamine" - - compartment: c - - formula: C13H16N2O4 + - compartment: "c" + - formula: "C13H16N2O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02722s + - id: "m02722s" - name: "phenylacetylglutamine" - - compartment: s - - formula: C13H16N2O4 + - compartment: "s" + - formula: "C13H16N2O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02723c + - id: "m02723c" - name: "phenylacetylglycine" - - compartment: c - - formula: C10H11NO3 + - compartment: "c" + - formula: "C10H11NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02723s + - id: "m02723s" - name: "phenylacetylglycine" - - compartment: s - - formula: C10H11NO3 + - compartment: "s" + - formula: "C10H11NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02724c + - id: "m02724c" - name: "phenylalanine" - - compartment: c - - formula: C9H11NO2 + - compartment: "c" + - formula: "C9H11NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02724l + - id: "m02724l" - name: "phenylalanine" - - compartment: l - - formula: C9H11NO2 + - compartment: "l" + - formula: "C9H11NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02724m + - id: "m02724m" - name: "phenylalanine" - - compartment: m - - formula: C9H11NO2 + - compartment: "m" + - formula: "C9H11NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02724s + - id: "m02724s" - name: "phenylalanine" - - compartment: s - - formula: C9H11NO2 + - compartment: "s" + - formula: "C9H11NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02725c + - id: "m02725c" - name: "phenylpyruvate" - - compartment: c - - formula: C9H7O3 + - compartment: "c" + - formula: "C9H7O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02726c + - id: "m02726c" - name: "phosphatidate-bile-PC pool" - - compartment: c - - formula: C5H5O8PR2 + - compartment: "c" + - formula: "C5H5O8PR2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02727m + - id: "m02727m" - name: "phosphatidate-CL pool" - - compartment: m - - formula: C5H5O8PR2 + - compartment: "m" + - formula: "C5H5O8PR2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02728c + - id: "m02728c" - name: "phosphatidate-LD-PC pool" - - compartment: c - - formula: C5H5O8PR2 + - compartment: "c" + - formula: "C5H5O8PR2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02728g + - id: "m02728g" - name: "phosphatidate-LD-PC pool" - - compartment: g - - formula: C5H5O8PR2 + - compartment: "g" + - formula: "C5H5O8PR2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02728r + - id: "m02728r" - name: "phosphatidate-LD-PC pool" - - compartment: r - - formula: C5H5O8PR2 + - compartment: "r" + - formula: "C5H5O8PR2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02729c + - id: "m02729c" - name: "phosphatidate-LD-PE pool" - - compartment: c - - formula: C5H5O8PR2 + - compartment: "c" + - formula: "C5H5O8PR2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02730c + - id: "m02730c" - name: "phosphatidate-LD-PI pool" - - compartment: c - - formula: C5H5O8PR2 + - compartment: "c" + - formula: "C5H5O8PR2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02731c + - id: "m02731c" - name: "phosphatidate-LD-PS pool" - - compartment: c - - formula: C5H5O8PR2 + - compartment: "c" + - formula: "C5H5O8PR2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02732c + - id: "m02732c" - name: "phosphatidate-LD-SM pool" - - compartment: c - - formula: C5H5O8PR2 + - compartment: "c" + - formula: "C5H5O8PR2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02733c + - id: "m02733c" - name: "phosphatidate-LD-TAG pool" - - compartment: c - - formula: C5H5O8PR2 + - compartment: "c" + - formula: "C5H5O8PR2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02733r + - id: "m02733r" - name: "phosphatidate-LD-TAG pool" - - compartment: r - - formula: C5H5O8PR2 + - compartment: "r" + - formula: "C5H5O8PR2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02734c + - id: "m02734c" - name: "phosphatidylinositol-3,4,5-trisphosphate" - - compartment: c - - formula: C11H13O22P4R2 + - compartment: "c" + - formula: "C11H13O22P4R2" - charge: -7 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02734n + - id: "m02734n" - name: "phosphatidylinositol-3,4,5-trisphosphate" - - compartment: n - - formula: C11H13O22P4R2 + - compartment: "n" + - formula: "C11H13O22P4R2" - charge: -7 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02735c + - id: "m02735c" - name: "phosphatidylinositol-3,5-bisphosphate" - - compartment: c - - formula: C11H14O19P3R2 + - compartment: "c" + - formula: "C11H14O19P3R2" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02735r + - id: "m02735r" - name: "phosphatidylinositol-3,5-bisphosphate" - - compartment: r - - formula: C11H14O19P3R2 + - compartment: "r" + - formula: "C11H14O19P3R2" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02736c + - id: "m02736c" - name: "phosphatidylinositol-4,5-bisphosphate" - - compartment: c - - formula: C11H14O19P3R2 + - compartment: "c" + - formula: "C11H14O19P3R2" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02736n + - id: "m02736n" - name: "phosphatidylinositol-4,5-bisphosphate" - - compartment: n - - formula: C11H14O19P3R2 + - compartment: "n" + - formula: "C11H14O19P3R2" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02737c + - id: "m02737c" - name: "phospho-[beta adrenergic receptor]" - - compartment: c - - formula: C4H7N2O6PR2 + - compartment: "c" + - formula: "C4H7N2O6PR2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02738c + - id: "m02738c" - name: "phosphocholine" - - compartment: c - - formula: C5H13NO4P + - compartment: "c" + - formula: "C5H13NO4P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02738g + - id: "m02738g" - name: "phosphocholine" - - compartment: g - - formula: C5H13NO4P + - compartment: "g" + - formula: "C5H13NO4P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02738l + - id: "m02738l" - name: "phosphocholine" - - compartment: l - - formula: C5H13NO4P + - compartment: "l" + - formula: "C5H13NO4P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02739c + - id: "m02739c" - name: "phosphodimethylethanolamine" - - compartment: c - - formula: C4H10NO4P + - compartment: "c" + - formula: "C4H10NO4P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02740s + - id: "m02740s" - name: "phospholipids extracellular pool" - - compartment: s - - formula: C5H5O8PR3 + - compartment: "s" + - formula: "C5H5O8PR3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02741c + - id: "m02741c" - name: "phosphopantetheine" - - compartment: c - - formula: C11H21N2O7PS + - compartment: "c" + - formula: "C11H21N2O7PS" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02741m + - id: "m02741m" - name: "phosphopantetheine" - - compartment: m - - formula: C11H21N2O7PS + - compartment: "m" + - formula: "C11H21N2O7PS" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02742c + - id: "m02742c" - name: "phosphoprotein" - - compartment: c - - formula: XO3P + - compartment: "c" + - formula: "XO3P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02743c + - id: "m02743c" - name: "phosphorhodopsin" - - compartment: c - - formula: C20H28O3PR + - compartment: "c" + - formula: "C20H28O3PR" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02744c + - id: "m02744c" - name: "phylloquinone" - - compartment: c - - formula: C31H46O2 + - compartment: "c" + - formula: "C31H46O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02744s + - id: "m02744s" - name: "phylloquinone" - - compartment: s - - formula: C31H46O2 + - compartment: "s" + - formula: "C31H46O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02745c + - id: "m02745c" - name: "physeteric acid" - - compartment: c - - formula: C14H25O2 + - compartment: "c" + - formula: "C14H25O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02745l + - id: "m02745l" - name: "physeteric acid" - - compartment: l - - formula: C14H25O2 + - compartment: "l" + - formula: "C14H25O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02745r + - id: "m02745r" - name: "physeteric acid" - - compartment: r - - formula: C14H25O2 + - compartment: "r" + - formula: "C14H25O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02745s + - id: "m02745s" - name: "physeteric acid" - - compartment: s - - formula: C14H25O2 + - compartment: "s" + - formula: "C14H25O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02746c + - id: "m02746c" - name: "phytanic acid" - - compartment: c - - formula: C20H39O2 + - compartment: "c" + - formula: "C20H39O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02746p + - id: "m02746p" - name: "phytanic acid" - - compartment: p - - formula: C20H39O2 + - compartment: "p" + - formula: "C20H39O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02746s + - id: "m02746s" - name: "phytanic acid" - - compartment: s - - formula: C20H39O2 + - compartment: "s" + - formula: "C20H39O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02747c + - id: "m02747c" - name: "phytanoyl-CoA" - - compartment: c - - formula: C41H70N7O17P3S + - compartment: "c" + - formula: "C41H70N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02747p + - id: "m02747p" - name: "phytanoyl-CoA" - - compartment: p - - formula: C41H70N7O17P3S + - compartment: "p" + - formula: "C41H70N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02748c + - id: "m02748c" - name: "phytoceramide pool" - - compartment: c - - formula: C19H38NO4R + - compartment: "c" + - formula: "C19H38NO4R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02749c + - id: "m02749c" - name: "phytosphingosine" - - compartment: c - - formula: C18H40NO3 + - compartment: "c" + - formula: "C18H40NO3" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02750c + - id: "m02750c" - name: "PI pool" - - compartment: c - - formula: C11H16O13PR2 + - compartment: "c" + - formula: "C11H16O13PR2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02750g + - id: "m02750g" - name: "PI pool" - - compartment: g - - formula: C11H16O13PR2 + - compartment: "g" + - formula: "C11H16O13PR2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02750l + - id: "m02750l" - name: "PI pool" - - compartment: l - - formula: C11H16O13PR2 + - compartment: "l" + - formula: "C11H16O13PR2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02750n + - id: "m02750n" - name: "PI pool" - - compartment: n - - formula: C11H16O13PR2 + - compartment: "n" + - formula: "C11H16O13PR2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02750r + - id: "m02750r" - name: "PI pool" - - compartment: r - - formula: C11H16O13PR2 + - compartment: "r" + - formula: "C11H16O13PR2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02751c + - id: "m02751c" - name: "Pi" - - compartment: c - - formula: HO4P + - compartment: "c" + - formula: "HO4P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02751g + - id: "m02751g" - name: "Pi" - - compartment: g - - formula: HO4P + - compartment: "g" + - formula: "HO4P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02751l + - id: "m02751l" - name: "Pi" - - compartment: l - - formula: HO4P + - compartment: "l" + - formula: "HO4P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02751m + - id: "m02751m" - name: "Pi" - - compartment: m - - formula: HO4P + - compartment: "m" + - formula: "HO4P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02751n + - id: "m02751n" - name: "Pi" - - compartment: n - - formula: HO4P + - compartment: "n" + - formula: "HO4P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02751p + - id: "m02751p" - name: "Pi" - - compartment: p - - formula: HO4P + - compartment: "p" + - formula: "HO4P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02751r + - id: "m02751r" - name: "Pi" - - compartment: r - - formula: HO4P + - compartment: "r" + - formula: "HO4P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02751s + - id: "m02751s" - name: "Pi" - - compartment: s - - formula: HO4P + - compartment: "s" + - formula: "HO4P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02752c + - id: "m02752c" - name: "picolinic acid" - - compartment: c - - formula: C6H4NO2 + - compartment: "c" + - formula: "C6H4NO2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02753c + - id: "m02753c" - name: "plasminogen" - - compartment: c - - formula: C3948H6073N1123O1213S59 + - compartment: "c" + - formula: "C3948H6073N1123O1213S59" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02753l + - id: "m02753l" - name: "plasminogen" - - compartment: l - - formula: C3948H6073N1123O1213S59 + - compartment: "l" + - formula: "C3948H6073N1123O1213S59" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02753s + - id: "m02753s" - name: "plasminogen" - - compartment: s - - formula: C3948H6073N1123O1213S59 + - compartment: "s" + - formula: "C3948H6073N1123O1213S59" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02754c + - id: "m02754c" - name: "PNP" - - compartment: c - - formula: C6H5NO3 + - compartment: "c" + - formula: "C6H5NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02754s + - id: "m02754s" - name: "PNP" - - compartment: s - - formula: C6H5NO3 + - compartment: "s" + - formula: "C6H5NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02755c + - id: "m02755c" - name: "polynucleotide" - - compartment: c - - formula: C15H23O16P2R3 + - compartment: "c" + - formula: "C15H23O16P2R3" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02756c + - id: "m02756c" - name: "porphobilinogen" - - compartment: c - - formula: C10H13N2O4 + - compartment: "c" + - formula: "C10H13N2O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02757c + - id: "m02757c" - name: "PPARA" - - compartment: c - - formula: C2303H3655N619O695S34 + - compartment: "c" + - formula: "C2303H3655N619O695S34" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02757l + - id: "m02757l" - name: "PPARA" - - compartment: l - - formula: C2303H3655N619O695S34 + - compartment: "l" + - formula: "C2303H3655N619O695S34" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02757n + - id: "m02757n" - name: "PPARA" - - compartment: n - - formula: C2303H3655N619O695S34 + - compartment: "n" + - formula: "C2303H3655N619O695S34" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02758c + - id: "m02758c" - name: "PPE-NME2-LD pool" - - compartment: c - - formula: C9H16NO8PR2 + - compartment: "c" + - formula: "C9H16NO8PR2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02759c + - id: "m02759c" - name: "PPi" - - compartment: c - - formula: HO7P2 + - compartment: "c" + - formula: "HO7P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02759m + - id: "m02759m" - name: "PPi" - - compartment: m - - formula: HO7P2 + - compartment: "m" + - formula: "HO7P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02759n + - id: "m02759n" - name: "PPi" - - compartment: n - - formula: HO7P2 + - compartment: "n" + - formula: "HO7P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02759p + - id: "m02759p" - name: "PPi" - - compartment: p - - formula: HO7P2 + - compartment: "p" + - formula: "HO7P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02759r + - id: "m02759r" - name: "PPi" - - compartment: r - - formula: HO7P2 + - compartment: "r" + - formula: "HO7P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02759s + - id: "m02759s" - name: "PPi" - - compartment: s - - formula: HO7P2 + - compartment: "s" + - formula: "HO7P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02760c + - id: "m02760c" - name: "pregn-5-ene-3,20-dione" - - compartment: c - - formula: C21H30O2 + - compartment: "c" + - formula: "C21H30O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02761c + - id: "m02761c" - name: "pregn-5-ene-3,20-dione-17-ol" - - compartment: c - - formula: C21H30O3 + - compartment: "c" + - formula: "C21H30O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02762c + - id: "m02762c" - name: "pregnenolone sulfate" - - compartment: c - - formula: C21H31O5S + - compartment: "c" + - formula: "C21H31O5S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02762r + - id: "m02762r" - name: "pregnenolone sulfate" - - compartment: r - - formula: C21H31O5S + - compartment: "r" + - formula: "C21H31O5S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02763c + - id: "m02763c" - name: "pregnenolone" - - compartment: c - - formula: C21H32O2 + - compartment: "c" + - formula: "C21H32O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02763m + - id: "m02763m" - name: "pregnenolone" - - compartment: m - - formula: C21H32O2 + - compartment: "m" + - formula: "C21H32O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02763r + - id: "m02763r" - name: "pregnenolone" - - compartment: r - - formula: C21H32O2 + - compartment: "r" + - formula: "C21H32O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02764c + - id: "m02764c" - name: "presqualene-PP" - - compartment: c - - formula: C30H49O7P2 + - compartment: "c" + - formula: "C30H49O7P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02765c + - id: "m02765c" - name: "previtamin D3" - - compartment: c - - formula: C27H44O + - compartment: "c" + - formula: "C27H44O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02766p + - id: "m02766p" - name: "pristanic acid" - - compartment: p - - formula: C19H37O2 + - compartment: "p" + - formula: "C19H37O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02767c + - id: "m02767c" - name: "procollagen-5-hydroxy-L-lysine" - - compartment: c - - formula: C7H14N3O3R2 + - compartment: "c" + - formula: "C7H14N3O3R2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02768c + - id: "m02768c" - name: "procollagen-L-lysine" - - compartment: c - - formula: C7H14N3O2R2 + - compartment: "c" + - formula: "C7H14N3O2R2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02769c + - id: "m02769c" - name: "progesterone" - - compartment: c - - formula: C21H30O2 + - compartment: "c" + - formula: "C21H30O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02769r + - id: "m02769r" - name: "progesterone" - - compartment: r - - formula: C21H30O2 + - compartment: "r" + - formula: "C21H30O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02769s + - id: "m02769s" - name: "progesterone" - - compartment: s - - formula: C21H30O2 + - compartment: "s" + - formula: "C21H30O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02770c + - id: "m02770c" - name: "proline" - - compartment: c - - formula: C5H9NO2 + - compartment: "c" + - formula: "C5H9NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02770l + - id: "m02770l" - name: "proline" - - compartment: l - - formula: C5H9NO2 + - compartment: "l" + - formula: "C5H9NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02770m + - id: "m02770m" - name: "proline" - - compartment: m - - formula: C5H9NO2 + - compartment: "m" + - formula: "C5H9NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02770s + - id: "m02770s" - name: "proline" - - compartment: s - - formula: C5H9NO2 + - compartment: "s" + - formula: "C5H9NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02771c + - id: "m02771c" - name: "propane-1,2-diol" - - compartment: c - - formula: C3H8O2 + - compartment: "c" + - formula: "C3H8O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02772c + - id: "m02772c" - name: "propanoate" - - compartment: c - - formula: C3H5O2 + - compartment: "c" + - formula: "C3H5O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02772m + - id: "m02772m" - name: "propanoate" - - compartment: m - - formula: C3H5O2 + - compartment: "m" + - formula: "C3H5O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02772p + - id: "m02772p" - name: "propanoate" - - compartment: p - - formula: C3H5O2 + - compartment: "p" + - formula: "C3H5O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02772s + - id: "m02772s" - name: "propanoate" - - compartment: s - - formula: C3H5O2 + - compartment: "s" + - formula: "C3H5O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02773c + - id: "m02773c" - name: "propanoyl-[ACP]" - - compartment: c - - formula: C14H25N2O8PRS + - compartment: "c" + - formula: "C14H25N2O8PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02774c + - id: "m02774c" - name: "propanoyl-CoA" - - compartment: c - - formula: C24H36N7O17P3S + - compartment: "c" + - formula: "C24H36N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02774m + - id: "m02774m" - name: "propanoyl-CoA" - - compartment: m - - formula: C24H36N7O17P3S + - compartment: "m" + - formula: "C24H36N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02774p + - id: "m02774p" - name: "propanoyl-CoA" - - compartment: p - - formula: C24H36N7O17P3S + - compartment: "p" + - formula: "C24H36N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02775c + - id: "m02775c" - name: "propinol adenylate" - - compartment: c - - formula: C13H17N5O8P + - compartment: "c" + - formula: "C13H17N5O8P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02775m + - id: "m02775m" - name: "propinol adenylate" - - compartment: m - - formula: C13H17N5O8P + - compartment: "m" + - formula: "C13H17N5O8P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02776c + - id: "m02776c" - name: "prostaglandin A1" - - compartment: c - - formula: C20H31O4 + - compartment: "c" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02776s + - id: "m02776s" - name: "prostaglandin A1" - - compartment: s - - formula: C20H31O4 + - compartment: "s" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02777c + - id: "m02777c" - name: "prostaglandin A2" - - compartment: c - - formula: C20H29O4 + - compartment: "c" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02777s + - id: "m02777s" - name: "prostaglandin A2" - - compartment: s - - formula: C20H29O4 + - compartment: "s" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02778c + - id: "m02778c" - name: "prostaglandin B1" - - compartment: c - - formula: C20H31O4 + - compartment: "c" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02778s + - id: "m02778s" - name: "prostaglandin B1" - - compartment: s - - formula: C20H31O4 + - compartment: "s" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02779c + - id: "m02779c" - name: "prostaglandin B2" - - compartment: c - - formula: C20H29O4 + - compartment: "c" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02779s + - id: "m02779s" - name: "prostaglandin B2" - - compartment: s - - formula: C20H29O4 + - compartment: "s" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02780c + - id: "m02780c" - name: "prostaglandin C1" - - compartment: c - - formula: C20H31O4 + - compartment: "c" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02780s + - id: "m02780s" - name: "prostaglandin C1" - - compartment: s - - formula: C20H31O4 + - compartment: "s" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02781c + - id: "m02781c" - name: "prostaglandin C2" - - compartment: c - - formula: C20H29O4 + - compartment: "c" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02781s + - id: "m02781s" - name: "prostaglandin C2" - - compartment: s - - formula: C20H29O4 + - compartment: "s" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02782c + - id: "m02782c" - name: "prostaglandin D1" - - compartment: c - - formula: C20H33O5 + - compartment: "c" + - formula: "C20H33O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02782s + - id: "m02782s" - name: "prostaglandin D1" - - compartment: s - - formula: C20H33O5 + - compartment: "s" + - formula: "C20H33O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02783c + - id: "m02783c" - name: "prostaglandin D2" - - compartment: c - - formula: C20H31O5 + - compartment: "c" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02783r + - id: "m02783r" - name: "prostaglandin D2" - - compartment: r - - formula: C20H31O5 + - compartment: "r" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02783s + - id: "m02783s" - name: "prostaglandin D2" - - compartment: s - - formula: C20H31O5 + - compartment: "s" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02784c + - id: "m02784c" - name: "prostaglandin D3" - - compartment: c - - formula: C20H29O5 + - compartment: "c" + - formula: "C20H29O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02784s + - id: "m02784s" - name: "prostaglandin D3" - - compartment: s - - formula: C20H29O5 + - compartment: "s" + - formula: "C20H29O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02785c + - id: "m02785c" - name: "prostaglandin E1" - - compartment: c - - formula: C20H33O5 + - compartment: "c" + - formula: "C20H33O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02785s + - id: "m02785s" - name: "prostaglandin E1" - - compartment: s - - formula: C20H33O5 + - compartment: "s" + - formula: "C20H33O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02786c + - id: "m02786c" - name: "prostaglandin E2" - - compartment: c - - formula: C20H31O5 + - compartment: "c" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02786r + - id: "m02786r" - name: "prostaglandin E2" - - compartment: r - - formula: C20H31O5 + - compartment: "r" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02786s + - id: "m02786s" - name: "prostaglandin E2" - - compartment: s - - formula: C20H31O5 + - compartment: "s" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02787c + - id: "m02787c" - name: "prostaglandin E3" - - compartment: c - - formula: C20H29O5 + - compartment: "c" + - formula: "C20H29O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02787n + - id: "m02787n" - name: "prostaglandin E3" - - compartment: n - - formula: C20H29O5 + - compartment: "n" + - formula: "C20H29O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02787s + - id: "m02787s" - name: "prostaglandin E3" - - compartment: s - - formula: C20H29O5 + - compartment: "s" + - formula: "C20H29O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02788c + - id: "m02788c" - name: "prostaglandin F1alpha" - - compartment: c - - formula: C20H35O5 + - compartment: "c" + - formula: "C20H35O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02788s + - id: "m02788s" - name: "prostaglandin F1alpha" - - compartment: s - - formula: C20H35O5 + - compartment: "s" + - formula: "C20H35O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02789c + - id: "m02789c" - name: "prostaglandin F2alpha" - - compartment: c - - formula: C20H33O5 + - compartment: "c" + - formula: "C20H33O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02789s + - id: "m02789s" - name: "prostaglandin F2alpha" - - compartment: s - - formula: C20H33O5 + - compartment: "s" + - formula: "C20H33O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02790c + - id: "m02790c" - name: "prostaglandin F2beta" - - compartment: c - - formula: C20H33O5 + - compartment: "c" + - formula: "C20H33O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02790s + - id: "m02790s" - name: "prostaglandin F2beta" - - compartment: s - - formula: C20H33O5 + - compartment: "s" + - formula: "C20H33O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02791c + - id: "m02791c" - name: "prostaglandin G1" - - compartment: c - - formula: C20H33O6 + - compartment: "c" + - formula: "C20H33O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02791r + - id: "m02791r" - name: "prostaglandin G1" - - compartment: r - - formula: C20H33O6 + - compartment: "r" + - formula: "C20H33O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02792c + - id: "m02792c" - name: "prostaglandin G2" - - compartment: c - - formula: C20H31O6 + - compartment: "c" + - formula: "C20H31O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02792r + - id: "m02792r" - name: "prostaglandin G2" - - compartment: r - - formula: C20H31O6 + - compartment: "r" + - formula: "C20H31O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02792s + - id: "m02792s" - name: "prostaglandin G2" - - compartment: s - - formula: C20H31O6 + - compartment: "s" + - formula: "C20H31O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02793c + - id: "m02793c" - name: "prostaglandin H1" - - compartment: c - - formula: C20H33O5 + - compartment: "c" + - formula: "C20H33O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02793r + - id: "m02793r" - name: "prostaglandin H1" - - compartment: r - - formula: C20H33O5 + - compartment: "r" + - formula: "C20H33O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02794c + - id: "m02794c" - name: "prostaglandin H2" - - compartment: c - - formula: C20H31O5 + - compartment: "c" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02794r + - id: "m02794r" - name: "prostaglandin H2" - - compartment: r - - formula: C20H31O5 + - compartment: "r" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02794s + - id: "m02794s" - name: "prostaglandin H2" - - compartment: s - - formula: C20H31O5 + - compartment: "s" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02795c + - id: "m02795c" - name: "prostaglandin I2" - - compartment: c - - formula: C20H31O5 + - compartment: "c" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02795r + - id: "m02795r" - name: "prostaglandin I2" - - compartment: r - - formula: C20H31O5 + - compartment: "r" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02795s + - id: "m02795s" - name: "prostaglandin I2" - - compartment: s - - formula: C20H31O5 + - compartment: "s" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02796c + - id: "m02796c" - name: "prostaglandin J2" - - compartment: c - - formula: C20H29O4 + - compartment: "c" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02796r + - id: "m02796r" - name: "prostaglandin J2" - - compartment: r - - formula: C20H29O4 + - compartment: "r" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02797c + - id: "m02797c" - name: "prostaglandin-PGB2-glyceryl ester" - - compartment: c - - formula: C23H36O6 + - compartment: "c" + - formula: "C23H36O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02798c + - id: "m02798c" - name: "prostaglandin-PGE2-1-glyceryl ester" - - compartment: c - - formula: C23H38O7 + - compartment: "c" + - formula: "C23H38O7" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02799c + - id: "m02799c" - name: "prostaglandin-PGE2-3-glyceryl ester" - - compartment: c - - formula: C23H38O7 + - compartment: "c" + - formula: "C23H38O7" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02800c + - id: "m02800c" - name: "prostaglandin-PGE2-glyceryl ester" - - compartment: c - - formula: C23H38O7 + - compartment: "c" + - formula: "C23H38O7" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02801c + - id: "m02801c" - name: "protamine" - - compartment: c - - formula: X + - compartment: "c" + - formula: "X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02802c + - id: "m02802c" - name: "prothrombin" - - compartment: c - - formula: C3066H4754N874O941S35 + - compartment: "c" + - formula: "C3066H4754N874O941S35" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02802l + - id: "m02802l" - name: "prothrombin" - - compartment: l - - formula: C3066H4754N874O941S35 + - compartment: "l" + - formula: "C3066H4754N874O941S35" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02802s + - id: "m02802s" - name: "prothrombin" - - compartment: s - - formula: C3066H4754N874O941S35 + - compartment: "s" + - formula: "C3066H4754N874O941S35" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02803c + - id: "m02803c" - name: "protoporphyrin" - - compartment: c - - formula: C34H32N4O4 + - compartment: "c" + - formula: "C34H32N4O4" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02803m + - id: "m02803m" - name: "protoporphyrin" - - compartment: m - - formula: C34H32N4O4 + - compartment: "m" + - formula: "C34H32N4O4" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02804c + - id: "m02804c" - name: "protoporphyrinogen IX" - - compartment: c - - formula: C34H38N4O4 + - compartment: "c" + - formula: "C34H38N4O4" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02804m + - id: "m02804m" - name: "protoporphyrinogen IX" - - compartment: m - - formula: C34H38N4O4 + - compartment: "m" + - formula: "C34H38N4O4" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02805c + - id: "m02805c" - name: "provitamin D3" - - compartment: c - - formula: C27H44O + - compartment: "c" + - formula: "C27H44O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02806c + - id: "m02806c" - name: "PRPP" - - compartment: c - - formula: C5H8O14P3 + - compartment: "c" + - formula: "C5H8O14P3" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02806s + - id: "m02806s" - name: "PRPP" - - compartment: s - - formula: C5H8O14P3 + - compartment: "s" + - formula: "C5H8O14P3" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02807c + - id: "m02807c" - name: "pseudouridine-5-phosphate" - - compartment: c - - formula: C9H11N2O9P + - compartment: "c" + - formula: "C9H11N2O9P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02808c + - id: "m02808c" - name: "PS-LD pool" - - compartment: c - - formula: C8H11NO10PR2 + - compartment: "c" + - formula: "C8H11NO10PR2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02808l + - id: "m02808l" - name: "PS-LD pool" - - compartment: l - - formula: C8H11NO10PR2 + - compartment: "l" + - formula: "C8H11NO10PR2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02808r + - id: "m02808r" - name: "PS-LD pool" - - compartment: r - - formula: C8H11NO10PR2 + - compartment: "r" + - formula: "C8H11NO10PR2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02809c + - id: "m02809c" - name: "psychosine sulfate" - - compartment: c - - formula: C24H47NO10S + - compartment: "c" + - formula: "C24H47NO10S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02810c + - id: "m02810c" - name: "psychosine" - - compartment: c - - formula: C24H48NO7 + - compartment: "c" + - formula: "C24H48NO7" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02810l + - id: "m02810l" - name: "psychosine" - - compartment: l - - formula: C24H48NO7 + - compartment: "l" + - formula: "C24H48NO7" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02811c + - id: "m02811c" - name: "putreanine" - - compartment: c - - formula: C7H17N2O2 + - compartment: "c" + - formula: "C7H17N2O2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02812c + - id: "m02812c" - name: "putrescine" - - compartment: c - - formula: C4H14N2 + - compartment: "c" + - formula: "C4H14N2" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02812m + - id: "m02812m" - name: "putrescine" - - compartment: m - - formula: C4H14N2 + - compartment: "m" + - formula: "C4H14N2" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02812p + - id: "m02812p" - name: "putrescine" - - compartment: p - - formula: C4H14N2 + - compartment: "p" + - formula: "C4H14N2" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02812s + - id: "m02812s" - name: "putrescine" - - compartment: s - - formula: C4H14N2 + - compartment: "s" + - formula: "C4H14N2" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02813c + - id: "m02813c" - name: "pyridoxal" - - compartment: c - - formula: C8H9NO3 + - compartment: "c" + - formula: "C8H9NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02813s + - id: "m02813s" - name: "pyridoxal" - - compartment: s - - formula: C8H9NO3 + - compartment: "s" + - formula: "C8H9NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02814c + - id: "m02814c" - name: "pyridoxal-phosphate" - - compartment: c - - formula: C8H8NO6P + - compartment: "c" + - formula: "C8H8NO6P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02814s + - id: "m02814s" - name: "pyridoxal-phosphate" - - compartment: s - - formula: C8H8NO6P + - compartment: "s" + - formula: "C8H8NO6P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02815c + - id: "m02815c" - name: "pyridoxamine" - - compartment: c - - formula: C8H13N2O2 + - compartment: "c" + - formula: "C8H13N2O2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02815s + - id: "m02815s" - name: "pyridoxamine" - - compartment: s - - formula: C8H13N2O2 + - compartment: "s" + - formula: "C8H13N2O2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02816c + - id: "m02816c" - name: "pyridoxamine-phosphate" - - compartment: c - - formula: C8H12N2O5P + - compartment: "c" + - formula: "C8H12N2O5P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02817c + - id: "m02817c" - name: "pyridoxine" - - compartment: c - - formula: C8H11NO3 + - compartment: "c" + - formula: "C8H11NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02817s + - id: "m02817s" - name: "pyridoxine" - - compartment: s - - formula: C8H11NO3 + - compartment: "s" + - formula: "C8H11NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02818c + - id: "m02818c" - name: "pyridoxine-phosphate" - - compartment: c - - formula: C8H10NO6P + - compartment: "c" + - formula: "C8H10NO6P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02819c + - id: "m02819c" - name: "pyruvate" - - compartment: c - - formula: C3H3O3 + - compartment: "c" + - formula: "C3H3O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02819m + - id: "m02819m" - name: "pyruvate" - - compartment: m - - formula: C3H3O3 + - compartment: "m" + - formula: "C3H3O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02819p + - id: "m02819p" - name: "pyruvate" - - compartment: p - - formula: C3H3O3 + - compartment: "p" + - formula: "C3H3O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02819s + - id: "m02819s" - name: "pyruvate" - - compartment: s - - formula: C3H3O3 + - compartment: "s" + - formula: "C3H3O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02820c + - id: "m02820c" - name: "queuine" - - compartment: c - - formula: C12H15N5O3 + - compartment: "c" + - formula: "C12H15N5O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02821c + - id: "m02821c" - name: "quinidine" - - compartment: c - - formula: C20H25N2O2 + - compartment: "c" + - formula: "C20H25N2O2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02821s + - id: "m02821s" - name: "quinidine" - - compartment: s - - formula: C20H25N2O2 + - compartment: "s" + - formula: "C20H25N2O2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02822c + - id: "m02822c" - name: "quinolinate" - - compartment: c - - formula: C7H3NO4 + - compartment: "c" + - formula: "C7H3NO4" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02823c + - id: "m02823c" - name: "quinonoid dihydrobiopterin" - - compartment: c - - formula: C9H13N5O3 + - compartment: "c" + - formula: "C9H13N5O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02823n + - id: "m02823n" - name: "quinonoid dihydrobiopterin" - - compartment: n - - formula: C9H13N5O3 + - compartment: "n" + - formula: "C9H13N5O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02824c + - id: "m02824c" - name: "rac-4-hydroxy-4-O-(beta-D-glucuronide)-all-trans-retinoate" - - compartment: c - - formula: C26H34O9 + - compartment: "c" + - formula: "C26H34O9" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02824r + - id: "m02824r" - name: "rac-4-hydroxy-4-O-(beta-D-glucuronide)-all-trans-retinoate" - - compartment: r - - formula: C26H34O9 + - compartment: "r" + - formula: "C26H34O9" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02825c + - id: "m02825c" - name: "rac-4-hydroxy-4-O-(beta-D-glucuronide)-all-trans-retinyl-acetate" - - compartment: c - - formula: C28H39O9 + - compartment: "c" + - formula: "C28H39O9" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02825r + - id: "m02825r" - name: "rac-4-hydroxy-4-O-(beta-D-glucuronide)-all-trans-retinyl-acetate" - - compartment: r - - formula: C28H39O9 + - compartment: "r" + - formula: "C28H39O9" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02826c + - id: "m02826c" - name: "rac-5,6-epoxy-retinoyl-beta-D-glucuronide" - - compartment: c - - formula: C26H35O9 + - compartment: "c" + - formula: "C26H35O9" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02826r + - id: "m02826r" - name: "rac-5,6-epoxy-retinoyl-beta-D-glucuronide" - - compartment: r - - formula: C26H35O9 + - compartment: "r" + - formula: "C26H35O9" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02827c + - id: "m02827c" - name: "reduced adrenal ferredoxin" - - compartment: c - - formula: X + - compartment: "c" + - formula: "X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02828c + - id: "m02828c" - name: "reduced ferredoxin" - - compartment: c - - formula: X + - compartment: "c" + - formula: "X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02828m + - id: "m02828m" - name: "reduced ferredoxin" - - compartment: m - - formula: X + - compartment: "m" + - formula: "X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02829c + - id: "m02829c" - name: "reduced vitamin K" - - compartment: c - - formula: C11H9O2R + - compartment: "c" + - formula: "C11H9O2R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02832c + - id: "m02832c" - name: "retinal" - - compartment: c - - formula: C20H28O + - compartment: "c" + - formula: "C20H28O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02832r + - id: "m02832r" - name: "retinal" - - compartment: r - - formula: C20H28O + - compartment: "r" + - formula: "C20H28O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02833c + - id: "m02833c" - name: "retinoate" - - compartment: c - - formula: C20H27O2 + - compartment: "c" + - formula: "C20H27O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02833r + - id: "m02833r" - name: "retinoate" - - compartment: r - - formula: C20H27O2 + - compartment: "r" + - formula: "C20H27O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02833s + - id: "m02833s" - name: "retinoate" - - compartment: s - - formula: C20H27O2 + - compartment: "s" + - formula: "C20H27O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02834c + - id: "m02834c" - name: "retinol" - - compartment: c - - formula: C20H30O + - compartment: "c" + - formula: "C20H30O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02834r + - id: "m02834r" - name: "retinol" - - compartment: r - - formula: C20H30O + - compartment: "r" + - formula: "C20H30O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02834s + - id: "m02834s" - name: "retinol" - - compartment: s - - formula: C20H30O + - compartment: "s" + - formula: "C20H30O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02835c + - id: "m02835c" - name: "retinoyl-CoA" - - compartment: c - - formula: C41H58N7O17P3S + - compartment: "c" + - formula: "C41H58N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02836c + - id: "m02836c" - name: "retinoyl-glucuronide" - - compartment: c - - formula: C26H35O8 + - compartment: "c" + - formula: "C26H35O8" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02836r + - id: "m02836r" - name: "retinoyl-glucuronide" - - compartment: r - - formula: C26H35O8 + - compartment: "r" + - formula: "C26H35O8" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02836s + - id: "m02836s" - name: "retinoyl-glucuronide" - - compartment: s - - formula: C26H35O8 + - compartment: "s" + - formula: "C26H35O8" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02837s + - id: "m02837s" - name: "retinyl palmitate" - - compartment: s - - formula: C36H60O2 + - compartment: "s" + - formula: "C36H60O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02838c + - id: "m02838c" - name: "retinyl-ester" - - compartment: c - - formula: C21H29O2R + - compartment: "c" + - formula: "C21H29O2R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02839c + - id: "m02839c" - name: "reverse triiodthyronine" - - compartment: c - - formula: C15H12I3NO4 + - compartment: "c" + - formula: "C15H12I3NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02839r + - id: "m02839r" - name: "reverse triiodthyronine" - - compartment: r - - formula: C15H12I3NO4 + - compartment: "r" + - formula: "C15H12I3NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02839s + - id: "m02839s" - name: "reverse triiodthyronine" - - compartment: s - - formula: C15H12I3NO4 + - compartment: "s" + - formula: "C15H12I3NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02840c + - id: "m02840c" - name: "rhodopsin" - - compartment: c - - formula: C20H28R + - compartment: "c" + - formula: "C20H28R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02841c + - id: "m02841c" - name: "ribitol" - - compartment: c - - formula: C5H12O5 + - compartment: "c" + - formula: "C5H12O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02841s + - id: "m02841s" - name: "ribitol" - - compartment: s - - formula: C5H12O5 + - compartment: "s" + - formula: "C5H12O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02842c + - id: "m02842c" - name: "riboflavin" - - compartment: c - - formula: C17H20N4O6 + - compartment: "c" + - formula: "C17H20N4O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02842s + - id: "m02842s" - name: "riboflavin" - - compartment: s - - formula: C17H20N4O6 + - compartment: "s" + - formula: "C17H20N4O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02843c + - id: "m02843c" - name: "ribose" - - compartment: c - - formula: C5H10O5 + - compartment: "c" + - formula: "C5H10O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02843s + - id: "m02843s" - name: "ribose" - - compartment: s - - formula: C5H10O5 + - compartment: "s" + - formula: "C5H10O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02844c + - id: "m02844c" - name: "ribose-1-phosphate" - - compartment: c - - formula: C5H9O8P + - compartment: "c" + - formula: "C5H9O8P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02845c + - id: "m02845c" - name: "ribose-5-phosphate" - - compartment: c - - formula: C5H9O8P + - compartment: "c" + - formula: "C5H9O8P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02845r + - id: "m02845r" - name: "ribose-5-phosphate" - - compartment: r - - formula: C5H9O8P + - compartment: "r" + - formula: "C5H9O8P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02846c + - id: "m02846c" - name: "ribulose-5-phosphate" - - compartment: c - - formula: C5H9O8P + - compartment: "c" + - formula: "C5H9O8P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02846r + - id: "m02846r" - name: "ribulose-5-phosphate" - - compartment: r - - formula: C5H9O8P + - compartment: "r" + - formula: "C5H9O8P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02847c + - id: "m02847c" - name: "RNA" - - compartment: c - - formula: C15H22O19P3R3 + - compartment: "c" + - formula: "C15H22O19P3R3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02848c + - id: "m02848c" - name: "RNA-3-terminal-phosphate" - - compartment: c - - formula: C15H22O19P3R3 + - compartment: "c" + - formula: "C15H22O19P3R3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02849c + - id: "m02849c" - name: "RNA-terminal-2,3-cyclic-phosphate" - - compartment: c - - formula: C15H21O18P3R3 + - compartment: "c" + - formula: "C15H21O18P3R3" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02850c + - id: "m02850c" - name: "S-(1,2-dichlorovinyl)glutathione" - - compartment: c - - formula: C12H16Cl2N3O6S + - compartment: "c" + - formula: "C12H16Cl2N3O6S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02851c + - id: "m02851c" - name: "S-(11-hydroxy-9-deoxy-delta12-PGD2)-glutathione" - - compartment: c - - formula: C30H49N3O10S + - compartment: "c" + - formula: "C30H49N3O10S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02852c + - id: "m02852c" - name: "S-(11-OH-9-deoxy-delta9,12-PGD2)-glutathione" - - compartment: c - - formula: C30H47N3O10S + - compartment: "c" + - formula: "C30H47N3O10S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02853c + - id: "m02853c" - name: "S-(2,2-dichloro-1-hydroxy)ethyl glutathione" - - compartment: c - - formula: C12H19Cl2N3O7S + - compartment: "c" + - formula: "C12H19Cl2N3O7S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02854c + - id: "m02854c" - name: "S-(2-chloroacetyl)glutathione" - - compartment: c - - formula: C12H17ClN3O7S + - compartment: "c" + - formula: "C12H17ClN3O7S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02855c + - id: "m02855c" - name: "S-(2-hydroxyethyl)glutathione" - - compartment: c - - formula: C12H20N3O7S + - compartment: "c" + - formula: "C12H20N3O7S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02856m + - id: "m02856m" - name: "S-(2-methylbutanoyl)-dihydrolipoamide" - - compartment: m - - formula: C13H25NO2S2 + - compartment: "m" + - formula: "C13H25NO2S2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02857m + - id: "m02857m" - name: "S-(2-methylpropanoyl)-dihydrolipoamide" - - compartment: m - - formula: C12H23NO2S2 + - compartment: "m" + - formula: "C12H23NO2S2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02858m + - id: "m02858m" - name: "S-(3-methylbutanoyl)-dihydrolipoamide" - - compartment: m - - formula: C13H25NO2S2 + - compartment: "m" + - formula: "C13H25NO2S2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02859c + - id: "m02859c" - name: "S-(9-deoxy-delta12-PGD2)-glutathione" - - compartment: c - - formula: C30H47N3O10S + - compartment: "c" + - formula: "C30H47N3O10S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02860c + - id: "m02860c" - name: "S-(9-deoxy-delta9,12-PGD2)-glutathione" - - compartment: c - - formula: C30H45N3O10S + - compartment: "c" + - formula: "C30H45N3O10S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02861c + - id: "m02861c" - name: "S-(formylmethyl)glutathione" - - compartment: c - - formula: C12H17N3O7S + - compartment: "c" + - formula: "C12H17N3O7S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02862c + - id: "m02862c" - name: "S-(PGA1)-glutathione" - - compartment: c - - formula: C30H47N3O10S + - compartment: "c" + - formula: "C30H47N3O10S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02863c + - id: "m02863c" - name: "S-(PGA2)-glutathione" - - compartment: c - - formula: C30H45N3O10S + - compartment: "c" + - formula: "C30H45N3O10S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02864c + - id: "m02864c" - name: "S-(PGJ2)-glutathione" - - compartment: c - - formula: C30H45N3O10S + - compartment: "c" + - formula: "C30H45N3O10S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02865c + - id: "m02865c" - name: "S-[2-carboxy-1-(1H-imidazol-4-yl)ethyl]-3-thiolactate" - - compartment: c - - formula: C9H10N2O5S + - compartment: "c" + - formula: "C9H10N2O5S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02866c + - id: "m02866c" - name: "S-[2-carboxy-1-(1H-imidazol-4-yl)ethyl]glutathione" - - compartment: c - - formula: C16H21N5O8S + - compartment: "c" + - formula: "C16H21N5O8S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02867c + - id: "m02867c" - name: "S-[2-carboxy-1-(1H-imidazol-4-yl)ethyl]-L-cysteine" - - compartment: c - - formula: C9H12N3O4S + - compartment: "c" + - formula: "C9H12N3O4S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02868m + - id: "m02868m" - name: "saccharopine" - - compartment: m - - formula: C11H19N2O6 + - compartment: "m" + - formula: "C11H19N2O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02869m + - id: "m02869m" - name: "S-acetyldihydrolipoamide" - - compartment: m - - formula: C10H19NO2S2 + - compartment: "m" + - formula: "C10H19NO2S2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02870c + - id: "m02870c" - name: "S-adenosylmethioninamine" - - compartment: c - - formula: C14H24N6O3S + - compartment: "c" + - formula: "C14H24N6O3S" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02871c + - id: "m02871c" - name: "SAH" - - compartment: c - - formula: C14H20N6O5S + - compartment: "c" + - formula: "C14H20N6O5S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02871m + - id: "m02871m" - name: "SAH" - - compartment: m - - formula: C14H20N6O5S + - compartment: "m" + - formula: "C14H20N6O5S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02871n + - id: "m02871n" - name: "SAH" - - compartment: n - - formula: C14H20N6O5S + - compartment: "n" + - formula: "C14H20N6O5S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02871r + - id: "m02871r" - name: "SAH" - - compartment: r - - formula: C14H20N6O5S + - compartment: "r" + - formula: "C14H20N6O5S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02872c + - id: "m02872c" - name: "SAICAR" - - compartment: c - - formula: C13H15N4O12P + - compartment: "c" + - formula: "C13H15N4O12P" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02873c + - id: "m02873c" - name: "salsoline" - - compartment: c - - formula: C11H16NO2 + - compartment: "c" + - formula: "C11H16NO2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02874c + - id: "m02874c" - name: "salsoline-1-carboxylate" - - compartment: c - - formula: C12H15NO4 + - compartment: "c" + - formula: "C12H15NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02875c + - id: "m02875c" - name: "salsolinol" - - compartment: c - - formula: C10H14NO2 + - compartment: "c" + - formula: "C10H14NO2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02876c + - id: "m02876c" - name: "salsolinol-1-carboxylate" - - compartment: c - - formula: C11H13NO4 + - compartment: "c" + - formula: "C11H13NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02877c + - id: "m02877c" - name: "SAM" - - compartment: c - - formula: C15H23N6O5S + - compartment: "c" + - formula: "C15H23N6O5S" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02877m + - id: "m02877m" - name: "SAM" - - compartment: m - - formula: C15H23N6O5S + - compartment: "m" + - formula: "C15H23N6O5S" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02877n + - id: "m02877n" - name: "SAM" - - compartment: n - - formula: C15H23N6O5S + - compartment: "n" + - formula: "C15H23N6O5S" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02877r + - id: "m02877r" - name: "SAM" - - compartment: r - - formula: C15H23N6O5S + - compartment: "r" + - formula: "C15H23N6O5S" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02878m + - id: "m02878m" - name: "S-aminomethyldihydrolipoamide" - - compartment: m - - formula: C9H21N2OS2 + - compartment: "m" + - formula: "C9H21N2OS2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02879m + - id: "m02879m" - name: "S-aminomethyldihydrolipoylprotein" - - compartment: m - - formula: CH6NS2X + - compartment: "m" + - formula: "CH6NS2X" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02880c + - id: "m02880c" - name: "sarcosine" - - compartment: c - - formula: C3H7NO2 + - compartment: "c" + - formula: "C3H7NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02880m + - id: "m02880m" - name: "sarcosine" - - compartment: m - - formula: C3H7NO2 + - compartment: "m" + - formula: "C3H7NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02880p + - id: "m02880p" - name: "sarcosine" - - compartment: p - - formula: C3H7NO2 + - compartment: "p" + - formula: "C3H7NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02880s + - id: "m02880s" - name: "sarcosine" - - compartment: s - - formula: C3H7NO2 + - compartment: "s" + - formula: "C3H7NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02881c + - id: "m02881c" - name: "se-adenosyl-L-selenohomocysteine" - - compartment: c - - formula: C14H20N6O5Se + - compartment: "c" + - formula: "C14H20N6O5Se" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02881n + - id: "m02881n" - name: "se-adenosyl-L-selenohomocysteine" - - compartment: n - - formula: C14H20N6O5Se + - compartment: "n" + - formula: "C14H20N6O5Se" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02882c + - id: "m02882c" - name: "se-adenosylselenomethionine" - - compartment: c - - formula: C15H23N6O5Se + - compartment: "c" + - formula: "C15H23N6O5Se" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02882n + - id: "m02882n" - name: "se-adenosylselenomethionine" - - compartment: n - - formula: C15H23N6O5Se + - compartment: "n" + - formula: "C15H23N6O5Se" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02883c + - id: "m02883c" - name: "sedoheptulose-1,7-bisphosphate" - - compartment: c - - formula: C7H12O13P2 + - compartment: "c" + - formula: "C7H12O13P2" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02884c + - id: "m02884c" - name: "sedoheptulose-7-phosphate" - - compartment: c - - formula: C7H13O10P + - compartment: "c" + - formula: "C7H13O10P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02885c + - id: "m02885c" - name: "selenate" - - compartment: c - - formula: O4Se + - compartment: "c" + - formula: "O4Se" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02885s + - id: "m02885s" - name: "selenate" - - compartment: s - - formula: O4Se + - compartment: "s" + - formula: "O4Se" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02886c + - id: "m02886c" - name: "selenide" - - compartment: c - - formula: HSe + - compartment: "c" + - formula: "HSe" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02887c + - id: "m02887c" - name: "selenite" - - compartment: c - - formula: SeO3 + - compartment: "c" + - formula: "SeO3" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02888c + - id: "m02888c" - name: "selenocystathionine" - - compartment: c - - formula: C7H14N2O4Se + - compartment: "c" + - formula: "C7H14N2O4Se" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02889c + - id: "m02889c" - name: "selenocysteine" - - compartment: c - - formula: C3H7NO2Se + - compartment: "c" + - formula: "C3H7NO2Se" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02890c + - id: "m02890c" - name: "selenohomocysteine" - - compartment: c - - formula: C4H9NO2Se + - compartment: "c" + - formula: "C4H9NO2Se" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02891c + - id: "m02891c" - name: "selenomethionine" - - compartment: c - - formula: C5H11NO2Se + - compartment: "c" + - formula: "C5H11NO2Se" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02892c + - id: "m02892c" - name: "selenomethionine-se-oxide" - - compartment: c - - formula: C5H11NO3Se + - compartment: "c" + - formula: "C5H11NO3Se" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02893c + - id: "m02893c" - name: "selenomethionyl-tRNA(met)" - - compartment: c - - formula: C5H11NOSeR + - compartment: "c" + - formula: "C5H11NOSeR" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02894c + - id: "m02894c" - name: "selenophosphate" - - compartment: c - - formula: H2O3PSe + - compartment: "c" + - formula: "H2O3PSe" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02895c + - id: "m02895c" - name: "se-methyl-L-selenocysteine" - - compartment: c - - formula: C4H9NO2Se + - compartment: "c" + - formula: "C4H9NO2Se" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02896c + - id: "m02896c" - name: "serine" - - compartment: c - - formula: C3H7NO3 + - compartment: "c" + - formula: "C3H7NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02896l + - id: "m02896l" - name: "serine" - - compartment: l - - formula: C3H7NO3 + - compartment: "l" + - formula: "C3H7NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02896m + - id: "m02896m" - name: "serine" - - compartment: m - - formula: C3H7NO3 + - compartment: "m" + - formula: "C3H7NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02896p + - id: "m02896p" - name: "serine" - - compartment: p - - formula: C3H7NO3 + - compartment: "p" + - formula: "C3H7NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02896s + - id: "m02896s" - name: "serine" - - compartment: s - - formula: C3H7NO3 + - compartment: "s" + - formula: "C3H7NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02897c + - id: "m02897c" - name: "serotonin" - - compartment: c - - formula: C10H13N2O + - compartment: "c" + - formula: "C10H13N2O" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02897s + - id: "m02897s" - name: "serotonin" - - compartment: s - - formula: C10H13N2O + - compartment: "s" + - formula: "C10H13N2O" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02898c + - id: "m02898c" - name: "S-farnesyl-protein" - - compartment: c - - formula: C19H30N2O2SR2 + - compartment: "c" + - formula: "C19H30N2O2SR2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02899m + - id: "m02899m" - name: "S-glutaryldihydrolipoamide" - - compartment: m - - formula: C13H22NO4S2 + - compartment: "m" + - formula: "C13H22NO4S2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02900c + - id: "m02900c" - name: "S-glutathionyl-2-4-dinitrobenzene" - - compartment: c - - formula: C16H17N5O10S + - compartment: "c" + - formula: "C16H17N5O10S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02900s + - id: "m02900s" - name: "S-glutathionyl-2-4-dinitrobenzene" - - compartment: s - - formula: C16H17N5O10S + - compartment: "s" + - formula: "C16H17N5O10S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02901c + - id: "m02901c" - name: "S-glutathionyl-ethacrynic acid" - - compartment: c - - formula: C23H25Cl2N3O9S + - compartment: "c" + - formula: "C23H25Cl2N3O9S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02901s + - id: "m02901s" - name: "S-glutathionyl-ethacrynic acid" - - compartment: s - - formula: C23H25Cl2N3O9S + - compartment: "s" + - formula: "C23H25Cl2N3O9S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02902c + - id: "m02902c" - name: "sialyl(1,3)-sialyl(2,6)-galactosylgloboside" - - compartment: c - - formula: C72H121N4O43RCO + - compartment: "c" + - formula: "C72H121N4O43RCO" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02902g + - id: "m02902g" - name: "sialyl(1,3)-sialyl(2,6)-galactosylgloboside" - - compartment: g - - formula: C72H121N4O43RCO + - compartment: "g" + - formula: "C72H121N4O43RCO" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02902s + - id: "m02902s" - name: "sialyl(1,3)-sialyl(2,6)-galactosylgloboside" - - compartment: s - - formula: C72H121N4O43RCO + - compartment: "s" + - formula: "C72H121N4O43RCO" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02903c + - id: "m02903c" - name: "sialyl(2,3)-sialyl(2,6)-galactosylgloboside" - - compartment: c - - formula: C72H121N4O43RCO + - compartment: "c" + - formula: "C72H121N4O43RCO" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02903g + - id: "m02903g" - name: "sialyl(2,3)-sialyl(2,6)-galactosylgloboside" - - compartment: g - - formula: C72H121N4O43RCO + - compartment: "g" + - formula: "C72H121N4O43RCO" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02903s + - id: "m02903s" - name: "sialyl(2,3)-sialyl(2,6)-galactosylgloboside" - - compartment: s - - formula: C72H121N4O43RCO + - compartment: "s" + - formula: "C72H121N4O43RCO" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02904c + - id: "m02904c" - name: "sialyl-3-paragloboside" - - compartment: c - - formula: C55H95N3O30RCO + - compartment: "c" + - formula: "C55H95N3O30RCO" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02904g + - id: "m02904g" - name: "sialyl-3-paragloboside" - - compartment: g - - formula: C55H95N3O30RCO + - compartment: "g" + - formula: "C55H95N3O30RCO" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02905g + - id: "m02905g" - name: "sialyl-galactosylgloboside" - - compartment: g - - formula: C61H105N3O35RCO + - compartment: "g" + - formula: "C61H105N3O35RCO" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02906g + - id: "m02906g" - name: "sialyl-T antigen" - - compartment: g - - formula: C25H40N2O18X + - compartment: "g" + - formula: "C25H40N2O18X" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02907c + - id: "m02907c" - name: "sialyl-Tn antigen" - - compartment: c - - formula: C19H30N2O13X + - compartment: "c" + - formula: "C19H30N2O13X" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02907g + - id: "m02907g" - name: "sialyl-Tn antigen" - - compartment: g - - formula: C19H30N2O13X + - compartment: "g" + - formula: "C19H30N2O13X" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02907s + - id: "m02907s" - name: "sialyl-Tn antigen" - - compartment: s - - formula: C19H30N2O13X + - compartment: "s" + - formula: "C19H30N2O13X" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02908c + - id: "m02908c" - name: "SM pool" - - compartment: c - - formula: C23H48N2O5PRCO + - compartment: "c" + - formula: "C23H48N2O5PRCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02908g + - id: "m02908g" - name: "SM pool" - - compartment: g - - formula: C23H48N2O5PRCO + - compartment: "g" + - formula: "C23H48N2O5PRCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02908l + - id: "m02908l" - name: "SM pool" - - compartment: l - - formula: C23H48N2O5PRCO + - compartment: "l" + - formula: "C23H48N2O5PRCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02908r + - id: "m02908r" - name: "SM pool" - - compartment: r - - formula: C23H48N2O5PRCO + - compartment: "r" + - formula: "C23H48N2O5PRCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02909s + - id: "m02909s" - name: "SMCFA-blood-pool" - - compartment: s - - formula: CHO2R + - compartment: "s" + - formula: "CHO2R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02910c + - id: "m02910c" - name: "S-methyl-5-thio-D-ribulose-1-phosphate" - - compartment: c - - formula: C6H11O7PS + - compartment: "c" + - formula: "C6H11O7PS" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02911c + - id: "m02911c" - name: "sn-glycero-3-phospho-1-inositol" - - compartment: c - - formula: C9H18O11P + - compartment: "c" + - formula: "C9H18O11P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02912c + - id: "m02912c" - name: "sn-glycerol-3-PC" - - compartment: c - - formula: C8H20NO6P + - compartment: "c" + - formula: "C8H20NO6P" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02913c + - id: "m02913c" - name: "sn-glycerol-3-PE" - - compartment: c - - formula: C5H14NO6P + - compartment: "c" + - formula: "C5H14NO6P" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02914c + - id: "m02914c" - name: "sn-glycerol-3-phosphate" - - compartment: c - - formula: C3H7O6P + - compartment: "c" + - formula: "C3H7O6P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02914m + - id: "m02914m" - name: "sn-glycerol-3-phosphate" - - compartment: m - - formula: C3H7O6P + - compartment: "m" + - formula: "C3H7O6P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02914p + - id: "m02914p" - name: "sn-glycerol-3-phosphate" - - compartment: p - - formula: C3H7O6P + - compartment: "p" + - formula: "C3H7O6P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02915c + - id: "m02915c" - name: "somatostatin fragment 3-14" - - compartment: c - - formula: C72H100N16O17S2 + - compartment: "c" + - formula: "C72H100N16O17S2" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02916c + - id: "m02916c" - name: "somatostatin" - - compartment: c - - formula: C77H108N18O19S2 + - compartment: "c" + - formula: "C77H108N18O19S2" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02917c + - id: "m02917c" - name: "sorbitol-3-phosphate" - - compartment: c - - formula: C6H13O9P + - compartment: "c" + - formula: "C6H13O9P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02918c + - id: "m02918c" - name: "S-palmitoylprotein" - - compartment: c - - formula: C20H36N2O3SR2 + - compartment: "c" + - formula: "C20H36N2O3SR2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02919c + - id: "m02919c" - name: "spermic acid 1" - - compartment: c - - formula: C10H25N3O2 + - compartment: "c" + - formula: "C10H25N3O2" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02920c + - id: "m02920c" - name: "spermidine dialdehyde" - - compartment: c - - formula: C7H14NO2 + - compartment: "c" + - formula: "C7H14NO2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02920p + - id: "m02920p" - name: "spermidine dialdehyde" - - compartment: p - - formula: C7H14NO2 + - compartment: "p" + - formula: "C7H14NO2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02920s + - id: "m02920s" - name: "spermidine dialdehyde" - - compartment: s - - formula: C7H14NO2 + - compartment: "s" + - formula: "C7H14NO2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02921c + - id: "m02921c" - name: "spermidine monoaldehyde 1" - - compartment: c - - formula: C7H18N2O + - compartment: "c" + - formula: "C7H18N2O" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02921p + - id: "m02921p" - name: "spermidine monoaldehyde 1" - - compartment: p - - formula: C7H18N2O + - compartment: "p" + - formula: "C7H18N2O" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02921s + - id: "m02921s" - name: "spermidine monoaldehyde 1" - - compartment: s - - formula: C7H18N2O + - compartment: "s" + - formula: "C7H18N2O" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02922c + - id: "m02922c" - name: "spermidine monoaldehyde 2" - - compartment: c - - formula: C7H18N2O + - compartment: "c" + - formula: "C7H18N2O" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02922p + - id: "m02922p" - name: "spermidine monoaldehyde 2" - - compartment: p - - formula: C7H18N2O + - compartment: "p" + - formula: "C7H18N2O" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02922s + - id: "m02922s" - name: "spermidine monoaldehyde 2" - - compartment: s - - formula: C7H18N2O + - compartment: "s" + - formula: "C7H18N2O" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02923c + - id: "m02923c" - name: "spermidine" - - compartment: c - - formula: C7H22N3 + - compartment: "c" + - formula: "C7H22N3" - charge: 3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02923p + - id: "m02923p" - name: "spermidine" - - compartment: p - - formula: C7H22N3 + - compartment: "p" + - formula: "C7H22N3" - charge: 3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02923s + - id: "m02923s" - name: "spermidine" - - compartment: s - - formula: C7H22N3 + - compartment: "s" + - formula: "C7H22N3" - charge: 3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02924c + - id: "m02924c" - name: "spermine dialdehyde" - - compartment: c - - formula: C10H22N2O2 + - compartment: "c" + - formula: "C10H22N2O2" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02924p + - id: "m02924p" - name: "spermine dialdehyde" - - compartment: p - - formula: C10H22N2O2 + - compartment: "p" + - formula: "C10H22N2O2" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02924s + - id: "m02924s" - name: "spermine dialdehyde" - - compartment: s - - formula: C10H22N2O2 + - compartment: "s" + - formula: "C10H22N2O2" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02925c + - id: "m02925c" - name: "spermine monoaldehyde" - - compartment: c - - formula: C10H26N3O + - compartment: "c" + - formula: "C10H26N3O" - charge: 3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02925p + - id: "m02925p" - name: "spermine monoaldehyde" - - compartment: p - - formula: C10H26N3O + - compartment: "p" + - formula: "C10H26N3O" - charge: 3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02925s + - id: "m02925s" - name: "spermine monoaldehyde" - - compartment: s - - formula: C10H26N3O + - compartment: "s" + - formula: "C10H26N3O" - charge: 3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02926c + - id: "m02926c" - name: "spermine" - - compartment: c - - formula: C10H30N4 + - compartment: "c" + - formula: "C10H30N4" - charge: 4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02926p + - id: "m02926p" - name: "spermine" - - compartment: p - - formula: C10H30N4 + - compartment: "p" + - formula: "C10H30N4" - charge: 4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02926s + - id: "m02926s" - name: "spermine" - - compartment: s - - formula: C10H30N4 + - compartment: "s" + - formula: "C10H30N4" - charge: 4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02927c + - id: "m02927c" - name: "sphinganine" - - compartment: c - - formula: C18H40NO2 + - compartment: "c" + - formula: "C18H40NO2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02927r + - id: "m02927r" - name: "sphinganine" - - compartment: r - - formula: C18H40NO2 + - compartment: "r" + - formula: "C18H40NO2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02928c + - id: "m02928c" - name: "sphinganine-1-phosphate" - - compartment: c - - formula: C18H39NO5P + - compartment: "c" + - formula: "C18H39NO5P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02928r + - id: "m02928r" - name: "sphinganine-1-phosphate" - - compartment: r - - formula: C18H39NO5P + - compartment: "r" + - formula: "C18H39NO5P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02928s + - id: "m02928s" - name: "sphinganine-1-phosphate" - - compartment: s - - formula: C18H39NO5P + - compartment: "s" + - formula: "C18H39NO5P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02929c + - id: "m02929c" - name: "sphingosine" - - compartment: c - - formula: C18H38NO2 + - compartment: "c" + - formula: "C18H38NO2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02929g + - id: "m02929g" - name: "sphingosine" - - compartment: g - - formula: C18H38NO2 + - compartment: "g" + - formula: "C18H38NO2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02929l + - id: "m02929l" - name: "sphingosine" - - compartment: l - - formula: C18H38NO2 + - compartment: "l" + - formula: "C18H38NO2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02929r + - id: "m02929r" - name: "sphingosine" - - compartment: r - - formula: C18H38NO2 + - compartment: "r" + - formula: "C18H38NO2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02929s + - id: "m02929s" - name: "sphingosine" - - compartment: s - - formula: C18H38NO2 + - compartment: "s" + - formula: "C18H38NO2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02930c + - id: "m02930c" - name: "sphingosine-1-phosphate" - - compartment: c - - formula: C18H37NO5P + - compartment: "c" + - formula: "C18H37NO5P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02930r + - id: "m02930r" - name: "sphingosine-1-phosphate" - - compartment: r - - formula: C18H37NO5P + - compartment: "r" + - formula: "C18H37NO5P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02930s + - id: "m02930s" - name: "sphingosine-1-phosphate" - - compartment: s - - formula: C18H37NO5P + - compartment: "s" + - formula: "C18H37NO5P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02931c + - id: "m02931c" - name: "sphingosylphosphorylcholine" - - compartment: c - - formula: C23H50N2O5P + - compartment: "c" + - formula: "C23H50N2O5P" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02931s + - id: "m02931s" - name: "sphingosylphosphorylcholine" - - compartment: s - - formula: C23H50N2O5P + - compartment: "s" + - formula: "C23H50N2O5P" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02932c + - id: "m02932c" - name: "squalene 2,3-oxide" - - compartment: c - - formula: C30H50O + - compartment: "c" + - formula: "C30H50O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02933c + - id: "m02933c" - name: "squalene" - - compartment: c - - formula: C30H50 + - compartment: "c" + - formula: "C30H50" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02934m + - id: "m02934m" - name: "S-succinyldihydrolipoamide" - - compartment: m - - formula: C12H20NO4S2 + - compartment: "m" + - formula: "C12H20NO4S2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02935c + - id: "m02935c" - name: "STAR" - - compartment: c - - formula: C1393H2267N409O414S17 + - compartment: "c" + - formula: "C1393H2267N409O414S17" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02935l + - id: "m02935l" - name: "STAR" - - compartment: l - - formula: C1393H2267N409O414S17 + - compartment: "l" + - formula: "C1393H2267N409O414S17" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02935m + - id: "m02935m" - name: "STAR" - - compartment: m - - formula: C1393H2267N409O414S17 + - compartment: "m" + - formula: "C1393H2267N409O414S17" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02936s + - id: "m02936s" - name: "starch structure 1" - - compartment: s - - formula: C66H112O56 + - compartment: "s" + - formula: "C66H112O56" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02937s + - id: "m02937s" - name: "starch structure 2" - - compartment: s - - formula: C18H32O16 + - compartment: "s" + - formula: "C18H32O16" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02938c + - id: "m02938c" - name: "stearate" - - compartment: c - - formula: C18H35O2 + - compartment: "c" + - formula: "C18H35O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02938l + - id: "m02938l" - name: "stearate" - - compartment: l - - formula: C18H35O2 + - compartment: "l" + - formula: "C18H35O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02938r + - id: "m02938r" - name: "stearate" - - compartment: r - - formula: C18H35O2 + - compartment: "r" + - formula: "C18H35O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02938s + - id: "m02938s" - name: "stearate" - - compartment: s - - formula: C18H35O2 + - compartment: "s" + - formula: "C18H35O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02939c + - id: "m02939c" - name: "stearidonic acid" - - compartment: c - - formula: C18H27O2 + - compartment: "c" + - formula: "C18H27O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02939l + - id: "m02939l" - name: "stearidonic acid" - - compartment: l - - formula: C18H27O2 + - compartment: "l" + - formula: "C18H27O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02939r + - id: "m02939r" - name: "stearidonic acid" - - compartment: r - - formula: C18H27O2 + - compartment: "r" + - formula: "C18H27O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02939s + - id: "m02939s" - name: "stearidonic acid" - - compartment: s - - formula: C18H27O2 + - compartment: "s" + - formula: "C18H27O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02940c + - id: "m02940c" - name: "stearoylcarnitine" - - compartment: c - - formula: C25H49NO4 + - compartment: "c" + - formula: "C25H49NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02940m + - id: "m02940m" - name: "stearoylcarnitine" - - compartment: m - - formula: C25H49NO4 + - compartment: "m" + - formula: "C25H49NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02940r + - id: "m02940r" - name: "stearoylcarnitine" - - compartment: r - - formula: C25H49NO4 + - compartment: "r" + - formula: "C25H49NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02941c + - id: "m02941c" - name: "stearoyl-CoA" - - compartment: c - - formula: C39H66N7O17P3S + - compartment: "c" + - formula: "C39H66N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02941m + - id: "m02941m" - name: "stearoyl-CoA" - - compartment: m - - formula: C39H66N7O17P3S + - compartment: "m" + - formula: "C39H66N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02941p + - id: "m02941p" - name: "stearoyl-CoA" - - compartment: p - - formula: C39H66N7O17P3S + - compartment: "p" + - formula: "C39H66N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02941r + - id: "m02941r" - name: "stearoyl-CoA" - - compartment: r - - formula: C39H66N7O17P3S + - compartment: "r" + - formula: "C39H66N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02942m + - id: "m02942m" - name: "succinate semialdehyde" - - compartment: m - - formula: C4H5O3 + - compartment: "m" + - formula: "C4H5O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02943c + - id: "m02943c" - name: "succinate" - - compartment: c - - formula: C4H4O4 + - compartment: "c" + - formula: "C4H4O4" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02943m + - id: "m02943m" - name: "succinate" - - compartment: m - - formula: C4H4O4 + - compartment: "m" + - formula: "C4H4O4" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02943p + - id: "m02943p" - name: "succinate" - - compartment: p - - formula: C4H4O4 + - compartment: "p" + - formula: "C4H4O4" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02943s + - id: "m02943s" - name: "succinate" - - compartment: s - - formula: C4H4O4 + - compartment: "s" + - formula: "C4H4O4" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02944c + - id: "m02944c" - name: "succinyl-CoA" - - compartment: c - - formula: C25H35N7O19P3S + - compartment: "c" + - formula: "C25H35N7O19P3S" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02944m + - id: "m02944m" - name: "succinyl-CoA" - - compartment: m - - formula: C25H35N7O19P3S + - compartment: "m" + - formula: "C25H35N7O19P3S" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02945s + - id: "m02945s" - name: "sucrose" - - compartment: s - - formula: C12H22O11 + - compartment: "s" + - formula: "C12H22O11" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02946c + - id: "m02946c" - name: "sulfate" - - compartment: c - - formula: O4S + - compartment: "c" + - formula: "O4S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02946l + - id: "m02946l" - name: "sulfate" - - compartment: l - - formula: O4S + - compartment: "l" + - formula: "O4S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02946m + - id: "m02946m" - name: "sulfate" - - compartment: m - - formula: O4S + - compartment: "m" + - formula: "O4S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02946r + - id: "m02946r" - name: "sulfate" - - compartment: r - - formula: O4S + - compartment: "r" + - formula: "O4S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02946s + - id: "m02946s" - name: "sulfate" - - compartment: s - - formula: O4S + - compartment: "s" + - formula: "O4S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02947c + - id: "m02947c" - name: "sulfatide galactocerebroside" - - compartment: c - - formula: C24H45NO10SRCO + - compartment: "c" + - formula: "C24H45NO10SRCO" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02947g + - id: "m02947g" - name: "sulfatide galactocerebroside" - - compartment: g - - formula: C24H45NO10SRCO + - compartment: "g" + - formula: "C24H45NO10SRCO" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02947l + - id: "m02947l" - name: "sulfatide galactocerebroside" - - compartment: l - - formula: C24H45NO10SRCO + - compartment: "l" + - formula: "C24H45NO10SRCO" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02948l + - id: "m02948l" - name: "sulfatide" - - compartment: l - - formula: C25H45NO11SR + - compartment: "l" + - formula: "C25H45NO11SR" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02949c + - id: "m02949c" - name: "sulfite" - - compartment: c - - formula: O3S + - compartment: "c" + - formula: "O3S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02949m + - id: "m02949m" - name: "sulfite" - - compartment: m - - formula: O3S + - compartment: "m" + - formula: "O3S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02949s + - id: "m02949s" - name: "sulfite" - - compartment: s - - formula: O3S + - compartment: "s" + - formula: "O3S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02950c + - id: "m02950c" - name: "sulfochenodeoxycholate" - - compartment: c - - formula: C24H38O7S + - compartment: "c" + - formula: "C24H38O7S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02950s + - id: "m02950s" - name: "sulfochenodeoxycholate" - - compartment: s - - formula: C24H38O7S + - compartment: "s" + - formula: "C24H38O7S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02951c + - id: "m02951c" - name: "sulfoglycolithocholate" - - compartment: c - - formula: C26H41NO7S + - compartment: "c" + - formula: "C26H41NO7S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02951s + - id: "m02951s" - name: "sulfoglycolithocholate" - - compartment: s - - formula: C26H41NO7S + - compartment: "s" + - formula: "C26H41NO7S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02952c + - id: "m02952c" - name: "sulfotaurolithocholate" - - compartment: c - - formula: C26H43NO8S2 + - compartment: "c" + - formula: "C26H43NO8S2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02952s + - id: "m02952s" - name: "sulfotaurolithocholate" - - compartment: s - - formula: C26H43NO8S2 + - compartment: "s" + - formula: "C26H43NO8S2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02953c + - id: "m02953c" - name: "tachysterol 3" - - compartment: c - - formula: C27H44O + - compartment: "c" + - formula: "C27H44O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02954c + - id: "m02954c" - name: "TAG epoxide" - - compartment: c - - formula: C2HCl3O + - compartment: "c" + - formula: "C2HCl3O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02955c + - id: "m02955c" - name: "tagatose-1,6-bisphosphate" - - compartment: c - - formula: C6H10O12P2 + - compartment: "c" + - formula: "C6H10O12P2" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02956s + - id: "m02956s" - name: "TAG-chylomicron pool" - - compartment: s - - formula: C6H5O6R3 + - compartment: "s" + - formula: "C6H5O6R3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02957s + - id: "m02957s" - name: "TAG-extraction" - - compartment: s - - formula: C6H5O6R3 + - compartment: "s" + - formula: "C6H5O6R3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02958c + - id: "m02958c" - name: "TAG-LD pool" - - compartment: c - - formula: C6H5O6R3 + - compartment: "c" + - formula: "C6H5O6R3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02958l + - id: "m02958l" - name: "TAG-LD pool" - - compartment: l - - formula: C6H5O6R3 + - compartment: "l" + - formula: "C6H5O6R3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02958r + - id: "m02958r" - name: "TAG-LD pool" - - compartment: r - - formula: C6H5O6R3 + - compartment: "r" + - formula: "C6H5O6R3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02959s + - id: "m02959s" - name: "TAG-VLDL pool" - - compartment: s - - formula: C6H5O6R3 + - compartment: "s" + - formula: "C6H5O6R3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02960g + - id: "m02960g" - name: "T-antigen" - - compartment: g - - formula: C14H24NO10X + - compartment: "g" + - formula: "C14H24NO10X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02961c + - id: "m02961c" - name: "taurine" - - compartment: c - - formula: C2H7NO3S + - compartment: "c" + - formula: "C2H7NO3S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02961p + - id: "m02961p" - name: "taurine" - - compartment: p - - formula: C2H7NO3S + - compartment: "p" + - formula: "C2H7NO3S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02961s + - id: "m02961s" - name: "taurine" - - compartment: s - - formula: C2H7NO3S + - compartment: "s" + - formula: "C2H7NO3S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02962c + - id: "m02962c" - name: "taurochenodeoxycholate" - - compartment: c - - formula: C26H45NO6S + - compartment: "c" + - formula: "C26H45NO6S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02962p + - id: "m02962p" - name: "taurochenodeoxycholate" - - compartment: p - - formula: C26H45NO6S + - compartment: "p" + - formula: "C26H45NO6S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02962s + - id: "m02962s" - name: "taurochenodeoxycholate" - - compartment: s - - formula: C26H45NO6S + - compartment: "s" + - formula: "C26H45NO6S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02963c + - id: "m02963c" - name: "taurocholate" - - compartment: c - - formula: C26H45NO7S + - compartment: "c" + - formula: "C26H45NO7S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02963p + - id: "m02963p" - name: "taurocholate" - - compartment: p - - formula: C26H45NO7S + - compartment: "p" + - formula: "C26H45NO7S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02963s + - id: "m02963s" - name: "taurocholate" - - compartment: s - - formula: C26H45NO7S + - compartment: "s" + - formula: "C26H45NO7S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02964c + - id: "m02964c" - name: "taurodeoxycholate" - - compartment: c - - formula: C26H44NO6S + - compartment: "c" + - formula: "C26H44NO6S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02964p + - id: "m02964p" - name: "taurodeoxycholate" - - compartment: p - - formula: C26H44NO6S + - compartment: "p" + - formula: "C26H44NO6S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02965c + - id: "m02965c" - name: "taurolithocholate" - - compartment: c - - formula: C26H44NO5S + - compartment: "c" + - formula: "C26H44NO5S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02965p + - id: "m02965p" - name: "taurolithocholate" - - compartment: p - - formula: C26H44NO5S + - compartment: "p" + - formula: "C26H44NO5S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02965s + - id: "m02965s" - name: "taurolithocholate" - - compartment: s - - formula: C26H44NO5S + - compartment: "s" + - formula: "C26H44NO5S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02966c + - id: "m02966c" - name: "tauroursodeoxycholate" - - compartment: c - - formula: C26H45NO6S + - compartment: "c" + - formula: "C26H45NO6S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02966s + - id: "m02966s" - name: "tauroursodeoxycholate" - - compartment: s - - formula: C26H45NO6S + - compartment: "s" + - formula: "C26H45NO6S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02967c + - id: "m02967c" - name: "testosterone glucuronide" - - compartment: c - - formula: C25H36O8 + - compartment: "c" + - formula: "C25H36O8" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02967r + - id: "m02967r" - name: "testosterone glucuronide" - - compartment: r - - formula: C25H36O8 + - compartment: "r" + - formula: "C25H36O8" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02967s + - id: "m02967s" - name: "testosterone glucuronide" - - compartment: s - - formula: C25H36O8 + - compartment: "s" + - formula: "C25H36O8" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02968c + - id: "m02968c" - name: "testosterone sulfate" - - compartment: c - - formula: C19H27O5S + - compartment: "c" + - formula: "C19H27O5S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02968s + - id: "m02968s" - name: "testosterone sulfate" - - compartment: s - - formula: C19H27O5S + - compartment: "s" + - formula: "C19H27O5S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02969c + - id: "m02969c" - name: "testosterone" - - compartment: c - - formula: C19H28O2 + - compartment: "c" + - formula: "C19H28O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02969r + - id: "m02969r" - name: "testosterone" - - compartment: r - - formula: C19H28O2 + - compartment: "r" + - formula: "C19H28O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02969s + - id: "m02969s" - name: "testosterone" - - compartment: s - - formula: C19H28O2 + - compartment: "s" + - formula: "C19H28O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02970c + - id: "m02970c" - name: "tetracosanoylcarnitine" - - compartment: c - - formula: C31H61NO4 + - compartment: "c" + - formula: "C31H61NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02970r + - id: "m02970r" - name: "tetracosanoylcarnitine" - - compartment: r - - formula: C31H61NO4 + - compartment: "r" + - formula: "C31H61NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02971c + - id: "m02971c" - name: "tetracosanoyl-CoA" - - compartment: c - - formula: C45H78N7O17P3S + - compartment: "c" + - formula: "C45H78N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02971p + - id: "m02971p" - name: "tetracosanoyl-CoA" - - compartment: p - - formula: C45H78N7O17P3S + - compartment: "p" + - formula: "C45H78N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02971r + - id: "m02971r" - name: "tetracosanoyl-CoA" - - compartment: r - - formula: C45H78N7O17P3S + - compartment: "r" + - formula: "C45H78N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02972c + - id: "m02972c" - name: "tetradecanoyl-[ACP]" - - compartment: c - - formula: C25H47N2O8PRS + - compartment: "c" + - formula: "C25H47N2O8PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02973c + - id: "m02973c" - name: "tetradecanoylcarnitine" - - compartment: c - - formula: C21H41NO4 + - compartment: "c" + - formula: "C21H41NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02973m + - id: "m02973m" - name: "tetradecanoylcarnitine" - - compartment: m - - formula: C21H41NO4 + - compartment: "m" + - formula: "C21H41NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02973r + - id: "m02973r" - name: "tetradecanoylcarnitine" - - compartment: r - - formula: C21H41NO4 + - compartment: "r" + - formula: "C21H41NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02974c + - id: "m02974c" - name: "tetradecenoylcarnitine(5)" - - compartment: c - - formula: C21H39NO4 + - compartment: "c" + - formula: "C21H39NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02974m + - id: "m02974m" - name: "tetradecenoylcarnitine(5)" - - compartment: m - - formula: C21H39NO4 + - compartment: "m" + - formula: "C21H39NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02974r + - id: "m02974r" - name: "tetradecenoylcarnitine(5)" - - compartment: r - - formula: C21H39NO4 + - compartment: "r" + - formula: "C21H39NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02975c + - id: "m02975c" - name: "tetradecenoylcarnitine(7)" - - compartment: c - - formula: C21H39NO4 + - compartment: "c" + - formula: "C21H39NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02975m + - id: "m02975m" - name: "tetradecenoylcarnitine(7)" - - compartment: m - - formula: C21H39NO4 + - compartment: "m" + - formula: "C21H39NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02975r + - id: "m02975r" - name: "tetradecenoylcarnitine(7)" - - compartment: r - - formula: C21H39NO4 + - compartment: "r" + - formula: "C21H39NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02976c + - id: "m02976c" - name: "tetradecenoylcarnitine(9)" - - compartment: c - - formula: C21H39NO4 + - compartment: "c" + - formula: "C21H39NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02976m + - id: "m02976m" - name: "tetradecenoylcarnitine(9)" - - compartment: m - - formula: C21H39NO4 + - compartment: "m" + - formula: "C21H39NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02976r + - id: "m02976r" - name: "tetradecenoylcarnitine(9)" - - compartment: r - - formula: C21H39NO4 + - compartment: "r" + - formula: "C21H39NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02977c + - id: "m02977c" - name: "tetraHCA" - - compartment: c - - formula: C27H45O6 + - compartment: "c" + - formula: "C27H45O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02977m + - id: "m02977m" - name: "tetraHCA" - - compartment: m - - formula: C27H45O6 + - compartment: "m" + - formula: "C27H45O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02978c + - id: "m02978c" - name: "tetrahydrobiopterin" - - compartment: c - - formula: C9H15N5O3 + - compartment: "c" + - formula: "C9H15N5O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02978n + - id: "m02978n" - name: "tetrahydrobiopterin" - - compartment: n - - formula: C9H15N5O3 + - compartment: "n" + - formula: "C9H15N5O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02979c + - id: "m02979c" - name: "tetrahydropteroyltri-L-glutamate" - - compartment: c - - formula: C29H37N9O12 + - compartment: "c" + - formula: "C29H37N9O12" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02980c + - id: "m02980c" - name: "THF" - - compartment: c - - formula: C19H21N7O6 + - compartment: "c" + - formula: "C19H21N7O6" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02980l + - id: "m02980l" - name: "THF" - - compartment: l - - formula: C19H21N7O6 + - compartment: "l" + - formula: "C19H21N7O6" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02980m + - id: "m02980m" - name: "THF" - - compartment: m - - formula: C19H21N7O6 + - compartment: "m" + - formula: "C19H21N7O6" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02980s + - id: "m02980s" - name: "THF" - - compartment: s - - formula: C19H21N7O6 + - compartment: "s" + - formula: "C19H21N7O6" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02981c + - id: "m02981c" - name: "THF-hexaglutamate" - - compartment: c - - formula: C49H57N13O24 + - compartment: "c" + - formula: "C49H57N13O24" - charge: -8 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02982c + - id: "m02982c" - name: "thiamin" - - compartment: c - - formula: C12H17N4OS + - compartment: "c" + - formula: "C12H17N4OS" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02982s + - id: "m02982s" - name: "thiamin" - - compartment: s - - formula: C12H17N4OS + - compartment: "s" + - formula: "C12H17N4OS" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02983c + - id: "m02983c" - name: "thiamin-P" - - compartment: c - - formula: C12H16N4O4PS + - compartment: "c" + - formula: "C12H16N4O4PS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02983m + - id: "m02983m" - name: "thiamin-P" - - compartment: m - - formula: C12H16N4O4PS + - compartment: "m" + - formula: "C12H16N4O4PS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02983s + - id: "m02983s" - name: "thiamin-P" - - compartment: s - - formula: C12H16N4O4PS + - compartment: "s" + - formula: "C12H16N4O4PS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02984c + - id: "m02984c" - name: "thiamin-PP" - - compartment: c - - formula: C12H16N4O7P2S + - compartment: "c" + - formula: "C12H16N4O7P2S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02984m + - id: "m02984m" - name: "thiamin-PP" - - compartment: m - - formula: C12H16N4O7P2S + - compartment: "m" + - formula: "C12H16N4O7P2S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02985c + - id: "m02985c" - name: "thiamin-PPP" - - compartment: c - - formula: C12H16N4O10P3S + - compartment: "c" + - formula: "C12H16N4O10P3S" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02985s + - id: "m02985s" - name: "thiamin-PPP" - - compartment: s - - formula: C12H16N4O10P3S + - compartment: "s" + - formula: "C12H16N4O10P3S" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02986c + - id: "m02986c" - name: "thiocyanate" - - compartment: c - - formula: CNS + - compartment: "c" + - formula: "CNS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02986m + - id: "m02986m" - name: "thiocyanate" - - compartment: m - - formula: CNS + - compartment: "m" + - formula: "CNS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02986s + - id: "m02986s" - name: "thiocyanate" - - compartment: s - - formula: CNS + - compartment: "s" + - formula: "CNS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02987c + - id: "m02987c" - name: "thiocysteine" - - compartment: c - - formula: C3H7NO2S2 + - compartment: "c" + - formula: "C3H7NO2S2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02988c + - id: "m02988c" - name: "thiol" - - compartment: c - - formula: HSR + - compartment: "c" + - formula: "HSR" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02989c + - id: "m02989c" - name: "thiopurine" - - compartment: c - - formula: C5H4N4S + - compartment: "c" + - formula: "C5H4N4S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02990c + - id: "m02990c" - name: "thioredoxin" - - compartment: c - - formula: C525H816N128O160S8 + - compartment: "c" + - formula: "C525H816N128O160S8" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02990m + - id: "m02990m" - name: "thioredoxin" - - compartment: m - - formula: C525H816N128O160S8 + - compartment: "m" + - formula: "C525H816N128O160S8" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02990n + - id: "m02990n" - name: "thioredoxin" - - compartment: n - - formula: C525H816N128O160S8 + - compartment: "n" + - formula: "C525H816N128O160S8" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02991c + - id: "m02991c" - name: "thiosulfate" - - compartment: c - - formula: O3S2 + - compartment: "c" + - formula: "O3S2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02991m + - id: "m02991m" - name: "thiosulfate" - - compartment: m - - formula: O3S2 + - compartment: "m" + - formula: "O3S2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02991s + - id: "m02991s" - name: "thiosulfate" - - compartment: s - - formula: O3S2 + - compartment: "s" + - formula: "O3S2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02992c + - id: "m02992c" - name: "threonate" - - compartment: c - - formula: C4H7O5 + - compartment: "c" + - formula: "C4H7O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02993c + - id: "m02993c" - name: "threonine" - - compartment: c - - formula: C4H9NO3 + - compartment: "c" + - formula: "C4H9NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02993l + - id: "m02993l" - name: "threonine" - - compartment: l - - formula: C4H9NO3 + - compartment: "l" + - formula: "C4H9NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02993m + - id: "m02993m" - name: "threonine" - - compartment: m - - formula: C4H9NO3 + - compartment: "m" + - formula: "C4H9NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02993s + - id: "m02993s" - name: "threonine" - - compartment: s - - formula: C4H9NO3 + - compartment: "s" + - formula: "C4H9NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02994c + - id: "m02994c" - name: "thromboxane A2" - - compartment: c - - formula: C20H31O5 + - compartment: "c" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02994r + - id: "m02994r" - name: "thromboxane A2" - - compartment: r - - formula: C20H31O5 + - compartment: "r" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02994s + - id: "m02994s" - name: "thromboxane A2" - - compartment: s - - formula: C20H31O5 + - compartment: "s" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02995c + - id: "m02995c" - name: "thromboxane B2" - - compartment: c - - formula: C20H33O6 + - compartment: "c" + - formula: "C20H33O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02995r + - id: "m02995r" - name: "thromboxane B2" - - compartment: r - - formula: C20H33O6 + - compartment: "r" + - formula: "C20H33O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02995s + - id: "m02995s" - name: "thromboxane B2" - - compartment: s - - formula: C20H33O6 + - compartment: "s" + - formula: "C20H33O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02996c + - id: "m02996c" - name: "thymidine" - - compartment: c - - formula: C10H14N2O5 + - compartment: "c" + - formula: "C10H14N2O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02996l + - id: "m02996l" - name: "thymidine" - - compartment: l - - formula: C10H14N2O5 + - compartment: "l" + - formula: "C10H14N2O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02996m + - id: "m02996m" - name: "thymidine" - - compartment: m - - formula: C10H14N2O5 + - compartment: "m" + - formula: "C10H14N2O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02996s + - id: "m02996s" - name: "thymidine" - - compartment: s - - formula: C10H14N2O5 + - compartment: "s" + - formula: "C10H14N2O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02997c + - id: "m02997c" - name: "thymine" - - compartment: c - - formula: C5H6N2O2 + - compartment: "c" + - formula: "C5H6N2O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02997m + - id: "m02997m" - name: "thymine" - - compartment: m - - formula: C5H6N2O2 + - compartment: "m" + - formula: "C5H6N2O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02997s + - id: "m02997s" - name: "thymine" - - compartment: s - - formula: C5H6N2O2 + - compartment: "s" + - formula: "C5H6N2O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02998c + - id: "m02998c" - name: "thyroxine" - - compartment: c - - formula: C15H11I4NO4 + - compartment: "c" + - formula: "C15H11I4NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02998r + - id: "m02998r" - name: "thyroxine" - - compartment: r - - formula: C15H11I4NO4 + - compartment: "r" + - formula: "C15H11I4NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02998s + - id: "m02998s" - name: "thyroxine" - - compartment: s - - formula: C15H11I4NO4 + - compartment: "s" + - formula: "C15H11I4NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02999m + - id: "m02999m" - name: "tiglyl-CoA" - - compartment: m - - formula: C26H38N7O17P3S + - compartment: "m" + - formula: "C26H38N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03000g + - id: "m03000g" - name: "Tn-antigen" - - compartment: g - - formula: C8H14NO5X + - compartment: "g" + - formula: "C8H14NO5X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03000l + - id: "m03000l" - name: "Tn-antigen" - - compartment: l - - formula: C8H14NO5X + - compartment: "l" + - formula: "C8H14NO5X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03001c + - id: "m03001c" - name: "tolbutamide" - - compartment: c - - formula: C12H18N2O3S + - compartment: "c" + - formula: "C12H18N2O3S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03001s + - id: "m03001s" - name: "tolbutamide" - - compartment: s - - formula: C12H18N2O3S + - compartment: "s" + - formula: "C12H18N2O3S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03002c + - id: "m03002c" - name: "trans,cis,cis,cis,cis-2,10,13,16,19-docosapentaenoyl-CoA" - - compartment: c - - formula: C43H64N7O17P3S + - compartment: "c" + - formula: "C43H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03003c + - id: "m03003c" - name: "trans,cis,cis,cis,cis-2,12,15,18,21-tetracosapentaenoyl-CoA" - - compartment: c - - formula: C45H68N7O17P3S + - compartment: "c" + - formula: "C45H68N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03004c + - id: "m03004c" - name: "trans,cis,cis,cis-2,10,13,16-docosatetraenoyl-CoA" - - compartment: c - - formula: C43H66N7O17P3S + - compartment: "c" + - formula: "C43H66N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03005c + - id: "m03005c" - name: "trans,cis,cis,cis-2,11,14,17-eicosatetraenoyl-CoA" - - compartment: c - - formula: C41H62N7O17P3S + - compartment: "c" + - formula: "C41H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03006c + - id: "m03006c" - name: "trans,cis,cis,cis-2,13,16,19-docosatetraenoyl-CoA" - - compartment: c - - formula: C43H66N7O17P3S + - compartment: "c" + - formula: "C43H66N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03007c + - id: "m03007c" - name: "trans,cis,cis-2,11,14-eicosatrienoyl-CoA" - - compartment: c - - formula: C41H64N7O17P3S + - compartment: "c" + - formula: "C41H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03008c + - id: "m03008c" - name: "trans,cis,cis-2,13,16-docasatrienoyl-CoA" - - compartment: c - - formula: C43H68N7O17P3S + - compartment: "c" + - formula: "C43H68N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03009m + - id: "m03009m" - name: "trans,cis,cis-2,7,10-hexadecatrienoyl-CoA" - - compartment: m - - formula: C37H56N7O17P3S + - compartment: "m" + - formula: "C37H56N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03009p + - id: "m03009p" - name: "trans,cis,cis-2,7,10-hexadecatrienoyl-CoA" - - compartment: p - - formula: C37H56N7O17P3S + - compartment: "p" + - formula: "C37H56N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03010m + - id: "m03010m" - name: "trans,cis,cis-2,9,12-octadecatrienoyl-CoA" - - compartment: m - - formula: C39H60N7O17P3S + - compartment: "m" + - formula: "C39H60N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03010p + - id: "m03010p" - name: "trans,cis,cis-2,9,12-octadecatrienoyl-CoA" - - compartment: p - - formula: C39H60N7O17P3S + - compartment: "p" + - formula: "C39H60N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03011c + - id: "m03011c" - name: "trans,cis-2,11-docosadienoyl-CoA" - - compartment: c - - formula: C43H70N7O17P3S + - compartment: "c" + - formula: "C43H70N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03012c + - id: "m03012c" - name: "trans,cis-2,11-eicosadienoyl-CoA" - - compartment: c - - formula: C41H66N7O17P3S + - compartment: "c" + - formula: "C41H66N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03012m + - id: "m03012m" - name: "trans,cis-2,11-eicosadienoyl-CoA" - - compartment: m - - formula: C41H66N7O17P3S + - compartment: "m" + - formula: "C41H66N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03012p + - id: "m03012p" - name: "trans,cis-2,11-eicosadienoyl-CoA" - - compartment: p - - formula: C41H66N7O17P3S + - compartment: "p" + - formula: "C41H66N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03013c + - id: "m03013c" - name: "trans,cis-2,13-docosadienoyl-CoA" - - compartment: c - - formula: C43H70N7O17P3S + - compartment: "c" + - formula: "C43H70N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03013m + - id: "m03013m" - name: "trans,cis-2,13-docosadienoyl-CoA" - - compartment: m - - formula: C43H70N7O17P3S + - compartment: "m" + - formula: "C43H70N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03013p + - id: "m03013p" - name: "trans,cis-2,13-docosadienoyl-CoA" - - compartment: p - - formula: C43H70N7O17P3S + - compartment: "p" + - formula: "C43H70N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03014c + - id: "m03014c" - name: "trans,cis-2,13-eicosadienoyl-CoA" - - compartment: c - - formula: C41H66N7O17P3S + - compartment: "c" + - formula: "C41H66N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03014m + - id: "m03014m" - name: "trans,cis-2,13-eicosadienoyl-CoA" - - compartment: m - - formula: C41H66N7O17P3S + - compartment: "m" + - formula: "C41H66N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03014p + - id: "m03014p" - name: "trans,cis-2,13-eicosadienoyl-CoA" - - compartment: p - - formula: C41H66N7O17P3S + - compartment: "p" + - formula: "C41H66N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03015c + - id: "m03015c" - name: "trans,cis-2,15-tetracosadienoyl-CoA" - - compartment: c - - formula: C45H74N7O17P3S + - compartment: "c" + - formula: "C45H74N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03015p + - id: "m03015p" - name: "trans,cis-2,15-tetracosadienoyl-CoA" - - compartment: p - - formula: C45H74N7O17P3S + - compartment: "p" + - formula: "C45H74N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03016c + - id: "m03016c" - name: "trans,cis-2,17-hexacosadienoyl-CoA" - - compartment: c - - formula: C47H78N7O17P3S + - compartment: "c" + - formula: "C47H78N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03016p + - id: "m03016p" - name: "trans,cis-2,17-hexacosadienoyl-CoA" - - compartment: p - - formula: C47H78N7O17P3S + - compartment: "p" + - formula: "C47H78N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03017c + - id: "m03017c" - name: "trans,cis-2,8,11-eicosatrienoyl-CoA" - - compartment: c - - formula: C41H64N7O17P3S + - compartment: "c" + - formula: "C41H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03018c + - id: "m03018c" - name: "trans,cis-2,9-eicosadienoyl-CoA" - - compartment: c - - formula: C41H66N7O17P3S + - compartment: "c" + - formula: "C41H66N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03019m + - id: "m03019m" - name: "trans,cis-hexadeca-2,7-dienoyl-CoA" - - compartment: m - - formula: C37H58N7O17P3S + - compartment: "m" + - formula: "C37H58N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03019p + - id: "m03019p" - name: "trans,cis-hexadeca-2,7-dienoyl-CoA" - - compartment: p - - formula: C37H58N7O17P3S + - compartment: "p" + - formula: "C37H58N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03020m + - id: "m03020m" - name: "trans,cis-hexadeca-2,9-dienoyl-CoA" - - compartment: m - - formula: C37H58N7O17P3S + - compartment: "m" + - formula: "C37H58N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03020p + - id: "m03020p" - name: "trans,cis-hexadeca-2,9-dienoyl-CoA" - - compartment: p - - formula: C37H58N7O17P3S + - compartment: "p" + - formula: "C37H58N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03021m + - id: "m03021m" - name: "trans,cis-lauro-2,6-dienoyl-CoA" - - compartment: m - - formula: C33H50N7O17P3S + - compartment: "m" + - formula: "C33H50N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03021p + - id: "m03021p" - name: "trans,cis-lauro-2,6-dienoyl-CoA" - - compartment: p - - formula: C33H50N7O17P3S + - compartment: "p" + - formula: "C33H50N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03022m + - id: "m03022m" - name: "trans,cis-myristo-2,5-dienoyl-CoA" - - compartment: m - - formula: C35H54N7O17P3S + - compartment: "m" + - formula: "C35H54N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03022p + - id: "m03022p" - name: "trans,cis-myristo-2,5-dienoyl-CoA" - - compartment: p - - formula: C35H54N7O17P3S + - compartment: "p" + - formula: "C35H54N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03023m + - id: "m03023m" - name: "trans,cis-myristo-2,7-dienoyl-CoA" - - compartment: m - - formula: C35H54N7O17P3S + - compartment: "m" + - formula: "C35H54N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03023p + - id: "m03023p" - name: "trans,cis-myristo-2,7-dienoyl-CoA" - - compartment: p - - formula: C35H54N7O17P3S + - compartment: "p" + - formula: "C35H54N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03024m + - id: "m03024m" - name: "trans,cis-octadeca-2,11-dienoyl-CoA" - - compartment: m - - formula: C39H62N7O17P3S + - compartment: "m" + - formula: "C39H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03024p + - id: "m03024p" - name: "trans,cis-octadeca-2,11-dienoyl-CoA" - - compartment: p - - formula: C39H62N7O17P3S + - compartment: "p" + - formula: "C39H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03025m + - id: "m03025m" - name: "trans,cis-octadeca-2,9-dienoyl-CoA" - - compartment: m - - formula: C39H62N7O17P3S + - compartment: "m" + - formula: "C39H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03025p + - id: "m03025p" - name: "trans,cis-octadeca-2,9-dienoyl-CoA" - - compartment: p - - formula: C39H62N7O17P3S + - compartment: "p" + - formula: "C39H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03026c + - id: "m03026c" - name: "trans,trans,cis-geranyl-geranyl-pp" - - compartment: c - - formula: C20H33O7P2 + - compartment: "c" + - formula: "C20H33O7P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03027p + - id: "m03027p" - name: "trans-2,3-dehydropristanoyl-CoA" - - compartment: p - - formula: C40H66N7O17P3S + - compartment: "p" + - formula: "C40H66N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03028p + - id: "m03028p" - name: "trans-2-all-cis-6,9,12,15,18-tetracosahexaenoyl-CoA" - - compartment: p - - formula: C45H66N7O17P3S + - compartment: "p" + - formula: "C45H66N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03029c + - id: "m03029c" - name: "trans-2-cis,cis,cis-8,11,14-eicosatetraenoyl-CoA" - - compartment: c - - formula: C41H62N7O17P3S + - compartment: "c" + - formula: "C41H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03029m + - id: "m03029m" - name: "trans-2-cis,cis,cis-8,11,14-eicosatetraenoyl-CoA" - - compartment: m - - formula: C41H62N7O17P3S + - compartment: "m" + - formula: "C41H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03029p + - id: "m03029p" - name: "trans-2-cis,cis,cis-8,11,14-eicosatetraenoyl-CoA" - - compartment: p - - formula: C41H62N7O17P3S + - compartment: "p" + - formula: "C41H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03030m + - id: "m03030m" - name: "trans-2-cis,cis-5,8-tetradecatrienoyl-CoA" - - compartment: m - - formula: C35H52N7O17P3S + - compartment: "m" + - formula: "C35H52N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03030p + - id: "m03030p" - name: "trans-2-cis,cis-5,8-tetradecatrienoyl-CoA" - - compartment: p - - formula: C35H52N7O17P3S + - compartment: "p" + - formula: "C35H52N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03031m + - id: "m03031m" - name: "trans-2-methyl-5-isopropylhexa-2,5-dienoyl-CoA" - - compartment: m - - formula: C31H46N7O17P3S + - compartment: "m" + - formula: "C31H46N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03031p + - id: "m03031p" - name: "trans-2-methyl-5-isopropylhexa-2,5-dienoyl-CoA" - - compartment: p - - formula: C31H46N7O17P3S + - compartment: "p" + - formula: "C31H46N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03032c + - id: "m03032c" - name: "trans-3,4-dihydro-3,4-dihydroxy-7,12-dimethylbenz[a]anthracene" - - compartment: c - - formula: C20H18O2 + - compartment: "c" + - formula: "C20H18O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03033m + - id: "m03033m" - name: "trans-3-cis-5,8,11,14-eicosapentaenoyl-CoA" - - compartment: m - - formula: C41H60N7O17P3S + - compartment: "m" + - formula: "C41H60N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03033p + - id: "m03033p" - name: "trans-3-cis-5,8,11,14-eicosapentaenoyl-CoA" - - compartment: p - - formula: C41H60N7O17P3S + - compartment: "p" + - formula: "C41H60N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03034m + - id: "m03034m" - name: "trans-3-cis-8,11,14-eicosatetraenoyl-CoA" - - compartment: m - - formula: C41H62N7O17P3S + - compartment: "m" + - formula: "C41H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03034p + - id: "m03034p" - name: "trans-3-cis-8,11,14-eicosatetraenoyl-CoA" - - compartment: p - - formula: C41H62N7O17P3S + - compartment: "p" + - formula: "C41H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03035m + - id: "m03035m" - name: "trans-3-decenoyl-CoA" - - compartment: m - - formula: C31H48N7O17P3S + - compartment: "m" + - formula: "C31H48N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03035p + - id: "m03035p" - name: "trans-3-decenoyl-CoA" - - compartment: p - - formula: C31H48N7O17P3S + - compartment: "p" + - formula: "C31H48N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03036c + - id: "m03036c" - name: "trans-4,5-epoxy-(2E)-decenal" - - compartment: c - - formula: C10H16O2 + - compartment: "c" + - formula: "C10H16O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03037c + - id: "m03037c" - name: "trans-4-hydroxy-L-proline" - - compartment: c - - formula: C5H9NO3 + - compartment: "c" + - formula: "C5H9NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03037m + - id: "m03037m" - name: "trans-4-hydroxy-L-proline" - - compartment: m - - formula: C5H9NO3 + - compartment: "m" + - formula: "C5H9NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03038c + - id: "m03038c" - name: "trans-5,6-dihydro-5,6-dihydroxy-7,12-dimethylbenz[a]anthracene" - - compartment: c - - formula: C20H18O2 + - compartment: "c" + - formula: "C20H18O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03039s + - id: "m03039s" - name: "trehalose" - - compartment: s - - formula: C12H22O11 + - compartment: "s" + - formula: "C12H22O11" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03040c + - id: "m03040c" - name: "TRH" - - compartment: c - - formula: C16H22N6O4 + - compartment: "c" + - formula: "C16H22N6O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03041c + - id: "m03041c" - name: "trichloroacetate" - - compartment: c - - formula: C2Cl3O2 + - compartment: "c" + - formula: "C2Cl3O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03042c + - id: "m03042c" - name: "trichloroethanol glucuronide" - - compartment: c - - formula: C8H10Cl3O7 + - compartment: "c" + - formula: "C8H10Cl3O7" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03043c + - id: "m03043c" - name: "trichloroethanol" - - compartment: c - - formula: C2H3Cl3O + - compartment: "c" + - formula: "C2H3Cl3O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03044c + - id: "m03044c" - name: "trichloroethene" - - compartment: c - - formula: C2HCl3 + - compartment: "c" + - formula: "C2HCl3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03044s + - id: "m03044s" - name: "trichloroethene" - - compartment: s - - formula: C2HCl3 + - compartment: "s" + - formula: "C2HCl3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03045c + - id: "m03045c" - name: "tricosanoic acid" - - compartment: c - - formula: C23H45O2 + - compartment: "c" + - formula: "C23H45O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03045l + - id: "m03045l" - name: "tricosanoic acid" - - compartment: l - - formula: C23H45O2 + - compartment: "l" + - formula: "C23H45O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03045r + - id: "m03045r" - name: "tricosanoic acid" - - compartment: r - - formula: C23H45O2 + - compartment: "r" + - formula: "C23H45O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03045s + - id: "m03045s" - name: "tricosanoic acid" - - compartment: s - - formula: C23H45O2 + - compartment: "s" + - formula: "C23H45O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03046c + - id: "m03046c" - name: "tricosanoylcarnitine" - - compartment: c - - formula: C30H59NO4 + - compartment: "c" + - formula: "C30H59NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03046r + - id: "m03046r" - name: "tricosanoylcarnitine" - - compartment: r - - formula: C30H59NO4 + - compartment: "r" + - formula: "C30H59NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03047c + - id: "m03047c" - name: "tricosanoyl-CoA" - - compartment: c - - formula: C44H76N7O17P3S + - compartment: "c" + - formula: "C44H76N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03047p + - id: "m03047p" - name: "tricosanoyl-CoA" - - compartment: p - - formula: C44H76N7O17P3S + - compartment: "p" + - formula: "C44H76N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03047r + - id: "m03047r" - name: "tricosanoyl-CoA" - - compartment: r - - formula: C44H76N7O17P3S + - compartment: "r" + - formula: "C44H76N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03048c + - id: "m03048c" - name: "tridecanoyl-[ACP]" - - compartment: c - - formula: C24H45N2O8PRS + - compartment: "c" + - formula: "C24H45N2O8PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03049c + - id: "m03049c" - name: "tridecanoylcarnitine" - - compartment: c - - formula: C20H39NO4 + - compartment: "c" + - formula: "C20H39NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03049m + - id: "m03049m" - name: "tridecanoylcarnitine" - - compartment: m - - formula: C20H39NO4 + - compartment: "m" + - formula: "C20H39NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03049r + - id: "m03049r" - name: "tridecanoylcarnitine" - - compartment: r - - formula: C20H39NO4 + - compartment: "r" + - formula: "C20H39NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03050c + - id: "m03050c" - name: "tridecanoyl-CoA" - - compartment: c - - formula: C34H56N7O17P3S + - compartment: "c" + - formula: "C34H56N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03050m + - id: "m03050m" - name: "tridecanoyl-CoA" - - compartment: m - - formula: C34H56N7O17P3S + - compartment: "m" + - formula: "C34H56N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03050r + - id: "m03050r" - name: "tridecanoyl-CoA" - - compartment: r - - formula: C34H56N7O17P3S + - compartment: "r" + - formula: "C34H56N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03051c + - id: "m03051c" - name: "tridecylic acid" - - compartment: c - - formula: C13H25O2 + - compartment: "c" + - formula: "C13H25O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03051l + - id: "m03051l" - name: "tridecylic acid" - - compartment: l - - formula: C13H25O2 + - compartment: "l" + - formula: "C13H25O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03051r + - id: "m03051r" - name: "tridecylic acid" - - compartment: r - - formula: C13H25O2 + - compartment: "r" + - formula: "C13H25O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03051s + - id: "m03051s" - name: "tridecylic acid" - - compartment: s - - formula: C13H25O2 + - compartment: "s" + - formula: "C13H25O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03052c + - id: "m03052c" - name: "triiodothyronine" - - compartment: c - - formula: C15H12I3NO4 + - compartment: "c" + - formula: "C15H12I3NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03052r + - id: "m03052r" - name: "triiodothyronine" - - compartment: r - - formula: C15H12I3NO4 + - compartment: "r" + - formula: "C15H12I3NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03052s + - id: "m03052s" - name: "triiodothyronine" - - compartment: s - - formula: C15H12I3NO4 + - compartment: "s" + - formula: "C15H12I3NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03053c + - id: "m03053c" - name: "trimethylamine" - - compartment: c - - formula: C3H10N + - compartment: "c" + - formula: "C3H10N" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03054c + - id: "m03054c" - name: "trimethylamine-N-oxide" - - compartment: c - - formula: C3H9NO + - compartment: "c" + - formula: "C3H9NO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03055c + - id: "m03055c" - name: "trioxilin A3" - - compartment: c - - formula: C20H33O5 + - compartment: "c" + - formula: "C20H33O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03055p + - id: "m03055p" - name: "trioxilin A3" - - compartment: p - - formula: C20H33O5 + - compartment: "p" + - formula: "C20H33O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03055r + - id: "m03055r" - name: "trioxilin A3" - - compartment: r - - formula: C20H33O5 + - compartment: "r" + - formula: "C20H33O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03056c + - id: "m03056c" - name: "trioxilin B3" - - compartment: c - - formula: C20H33O5 + - compartment: "c" + - formula: "C20H33O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03057c + - id: "m03057c" - name: "triphosphate" - - compartment: c - - formula: HO10P3 + - compartment: "c" + - formula: "HO10P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03057m + - id: "m03057m" - name: "triphosphate" - - compartment: m - - formula: HO10P3 + - compartment: "m" + - formula: "HO10P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03057n + - id: "m03057n" - name: "triphosphate" - - compartment: n - - formula: HO10P3 + - compartment: "n" + - formula: "HO10P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03058c + - id: "m03058c" - name: "tRNA containing 5-aminomethyl-2-thiouridine" - - compartment: c - - formula: C5H6N3OSR + - compartment: "c" + - formula: "C5H6N3OSR" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03059c + - id: "m03059c" - name: "tRNA containing 5-methylaminomethyl-2-thiouridylate" - - compartment: c - - formula: C6H8N3OSR + - compartment: "c" + - formula: "C6H8N3OSR" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03060c + - id: "m03060c" - name: "tRNA containing 6-isopentenyladenosine" - - compartment: c - - formula: C5H9R + - compartment: "c" + - formula: "C5H9R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03061c + - id: "m03061c" - name: "tRNA containing N2-methylguanine" - - compartment: c - - formula: C6H6N5OR + - compartment: "c" + - formula: "C6H6N5OR" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03062c + - id: "m03062c" - name: "tRNA containing N7-methylguanine" - - compartment: c - - formula: C6H7N5OR + - compartment: "c" + - formula: "C6H7N5OR" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03063c + - id: "m03063c" - name: "tRNA(ala)" - - compartment: c - - formula: RH + - compartment: "c" + - formula: "RH" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03064c + - id: "m03064c" - name: "tRNA(arg)" - - compartment: c - - formula: RH + - compartment: "c" + - formula: "RH" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03065c + - id: "m03065c" - name: "tRNA(asn)" - - compartment: c - - formula: RH + - compartment: "c" + - formula: "RH" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03066c + - id: "m03066c" - name: "tRNA(asp)" - - compartment: c - - formula: RH + - compartment: "c" + - formula: "RH" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03067c + - id: "m03067c" - name: "tRNA(cys)" - - compartment: c - - formula: RH + - compartment: "c" + - formula: "RH" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03068c + - id: "m03068c" - name: "tRNA(gln)" - - compartment: c - - formula: RH + - compartment: "c" + - formula: "RH" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03069c + - id: "m03069c" - name: "tRNA(glu)" - - compartment: c - - formula: RH + - compartment: "c" + - formula: "RH" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03070c + - id: "m03070c" - name: "tRNA(gly)" - - compartment: c - - formula: RH + - compartment: "c" + - formula: "RH" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03071c + - id: "m03071c" - name: "tRNA(his)" - - compartment: c - - formula: RH + - compartment: "c" + - formula: "RH" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03072c + - id: "m03072c" - name: "tRNA(ile)" - - compartment: c - - formula: RH + - compartment: "c" + - formula: "RH" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03073c + - id: "m03073c" - name: "tRNA(leu)" - - compartment: c - - formula: RH + - compartment: "c" + - formula: "RH" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03074c + - id: "m03074c" - name: "tRNA(lys)" - - compartment: c - - formula: RH + - compartment: "c" + - formula: "RH" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03075c + - id: "m03075c" - name: "tRNA(met)" - - compartment: c - - formula: RH + - compartment: "c" + - formula: "RH" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03076c + - id: "m03076c" - name: "tRNA(phe)" - - compartment: c - - formula: RH + - compartment: "c" + - formula: "RH" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03077c + - id: "m03077c" - name: "tRNA(pro)" - - compartment: c - - formula: RH + - compartment: "c" + - formula: "RH" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03078c + - id: "m03078c" - name: "tRNA(ser)" - - compartment: c - - formula: RH + - compartment: "c" + - formula: "RH" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03079c + - id: "m03079c" - name: "tRNA(thr)" - - compartment: c - - formula: RH + - compartment: "c" + - formula: "RH" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03080c + - id: "m03080c" - name: "tRNA(trp)" - - compartment: c - - formula: RH + - compartment: "c" + - formula: "RH" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03081c + - id: "m03081c" - name: "tRNA(tyr)" - - compartment: c - - formula: RH + - compartment: "c" + - formula: "RH" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03082c + - id: "m03082c" - name: "tRNA(val)" - - compartment: c - - formula: RH + - compartment: "c" + - formula: "RH" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03083c + - id: "m03083c" - name: "tRNA" - - compartment: c - - formula: RH + - compartment: "c" + - formula: "RH" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03084c + - id: "m03084c" - name: "tRNA-guanine" - - compartment: c - - formula: C5H4N5OR + - compartment: "c" + - formula: "C5H4N5OR" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03085c + - id: "m03085c" - name: "tRNA-pseudouridine" - - compartment: c - - formula: C9H10N2O6R2 + - compartment: "c" + - formula: "C9H10N2O6R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03086c + - id: "m03086c" - name: "tRNA-queuine" - - compartment: c - - formula: C12H14N5O3R + - compartment: "c" + - formula: "C12H14N5O3R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03087c + - id: "m03087c" - name: "tRNA-uridine" - - compartment: c - - formula: C9H10N2O6R2 + - compartment: "c" + - formula: "C9H10N2O6R2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03088c + - id: "m03088c" - name: "tryptamine" - - compartment: c - - formula: C10H13N2 + - compartment: "c" + - formula: "C10H13N2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03089c + - id: "m03089c" - name: "tryptophan" - - compartment: c - - formula: C11H12N2O2 + - compartment: "c" + - formula: "C11H12N2O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03089l + - id: "m03089l" - name: "tryptophan" - - compartment: l - - formula: C11H12N2O2 + - compartment: "l" + - formula: "C11H12N2O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03089s + - id: "m03089s" - name: "tryptophan" - - compartment: s - - formula: C11H12N2O2 + - compartment: "s" + - formula: "C11H12N2O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03090c + - id: "m03090c" - name: "type I A glycolipid" - - compartment: c - - formula: C58H102N3O31RCO + - compartment: "c" + - formula: "C58H102N3O31RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03090g + - id: "m03090g" - name: "type I A glycolipid" - - compartment: g - - formula: C58H102N3O31RCO + - compartment: "g" + - formula: "C58H102N3O31RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03091c + - id: "m03091c" - name: "type I B glycolipid" - - compartment: c - - formula: C56H99N2O31RCO + - compartment: "c" + - formula: "C56H99N2O31RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03091g + - id: "m03091g" - name: "type I B glycolipid" - - compartment: g - - formula: C56H99N2O31RCO + - compartment: "g" + - formula: "C56H99N2O31RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03092g + - id: "m03092g" - name: "type I H glycolipid" - - compartment: g - - formula: C50H89N2O26RCO + - compartment: "g" + - formula: "C50H89N2O26RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03093c + - id: "m03093c" - name: "type II A antigen" - - compartment: c - - formula: C59H102N3O32R + - compartment: "c" + - formula: "C59H102N3O32R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03094c + - id: "m03094c" - name: "type II B antigen" - - compartment: c - - formula: C57H99N2O32R + - compartment: "c" + - formula: "C57H99N2O32R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03095g + - id: "m03095g" - name: "type II H glycolipid" - - compartment: g - - formula: C50H89N2O26RCO + - compartment: "g" + - formula: "C50H89N2O26RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03096c + - id: "m03096c" - name: "type III A glycolipid" - - compartment: c - - formula: C78H135N4O45RCO + - compartment: "c" + - formula: "C78H135N4O45RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03096g + - id: "m03096g" - name: "type III A glycolipid" - - compartment: g - - formula: C78H135N4O45RCO + - compartment: "g" + - formula: "C78H135N4O45RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03096s + - id: "m03096s" - name: "type III A glycolipid" - - compartment: s - - formula: C78H135N4O45RCO + - compartment: "s" + - formula: "C78H135N4O45RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03097c + - id: "m03097c" - name: "type III H glycolipid" - - compartment: c - - formula: C70H122N3O40RCO + - compartment: "c" + - formula: "C70H122N3O40RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03097g + - id: "m03097g" - name: "type III H glycolipid" - - compartment: g - - formula: C70H122N3O40RCO + - compartment: "g" + - formula: "C70H122N3O40RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03098c + - id: "m03098c" - name: "type IIIAb" - - compartment: c - - formula: C92H158N5O55RCO + - compartment: "c" + - formula: "C92H158N5O55RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03098g + - id: "m03098g" - name: "type IIIAb" - - compartment: g - - formula: C92H158N5O55RCO + - compartment: "g" + - formula: "C92H158N5O55RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03098s + - id: "m03098s" - name: "type IIIAb" - - compartment: s - - formula: C92H158N5O55RCO + - compartment: "s" + - formula: "C92H158N5O55RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03099c + - id: "m03099c" - name: "tyramine" - - compartment: c - - formula: C8H12NO + - compartment: "c" + - formula: "C8H12NO" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03100c + - id: "m03100c" - name: "tyramine-O-sulfate" - - compartment: c - - formula: C8H11NO4S + - compartment: "c" + - formula: "C8H11NO4S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03100s + - id: "m03100s" - name: "tyramine-O-sulfate" - - compartment: s - - formula: C8H11NO4S + - compartment: "s" + - formula: "C8H11NO4S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03101c + - id: "m03101c" - name: "tyrosine" - - compartment: c - - formula: C9H11NO3 + - compartment: "c" + - formula: "C9H11NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03101l + - id: "m03101l" - name: "tyrosine" - - compartment: l - - formula: C9H11NO3 + - compartment: "l" + - formula: "C9H11NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03101m + - id: "m03101m" - name: "tyrosine" - - compartment: m - - formula: C9H11NO3 + - compartment: "m" + - formula: "C9H11NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03101s + - id: "m03101s" - name: "tyrosine" - - compartment: s - - formula: C9H11NO3 + - compartment: "s" + - formula: "C9H11NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03102m + - id: "m03102m" - name: "ubiquinol" - - compartment: m - - formula: C59H92O4 + - compartment: "m" + - formula: "C59H92O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03103m + - id: "m03103m" - name: "ubiquinone" - - compartment: m - - formula: C59H90O4 + - compartment: "m" + - formula: "C59H90O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03104c + - id: "m03104c" - name: "ubiquitin C terminal thiolester" - - compartment: c - - formula: RCOSR + - compartment: "c" + - formula: "RCOSR" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03105c + - id: "m03105c" - name: "ubiquitin" - - compartment: c - - formula: RCO2 + - compartment: "c" + - formula: "RCO2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03106c + - id: "m03106c" - name: "UDP" - - compartment: c - - formula: C9H11N2O12P2 + - compartment: "c" + - formula: "C9H11N2O12P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03106g + - id: "m03106g" - name: "UDP" - - compartment: g - - formula: C9H11N2O12P2 + - compartment: "g" + - formula: "C9H11N2O12P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03106l + - id: "m03106l" - name: "UDP" - - compartment: l - - formula: C9H11N2O12P2 + - compartment: "l" + - formula: "C9H11N2O12P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03106m + - id: "m03106m" - name: "UDP" - - compartment: m - - formula: C9H11N2O12P2 + - compartment: "m" + - formula: "C9H11N2O12P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03106n + - id: "m03106n" - name: "UDP" - - compartment: n - - formula: C9H11N2O12P2 + - compartment: "n" + - formula: "C9H11N2O12P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03106r + - id: "m03106r" - name: "UDP" - - compartment: r - - formula: C9H11N2O12P2 + - compartment: "r" + - formula: "C9H11N2O12P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03106s + - id: "m03106s" - name: "UDP" - - compartment: s - - formula: C9H11N2O12P2 + - compartment: "s" + - formula: "C9H11N2O12P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03107c + - id: "m03107c" - name: "UDP-galactose" - - compartment: c - - formula: C15H22N2O17P2 + - compartment: "c" + - formula: "C15H22N2O17P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03107g + - id: "m03107g" - name: "UDP-galactose" - - compartment: g - - formula: C15H22N2O17P2 + - compartment: "g" + - formula: "C15H22N2O17P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03107r + - id: "m03107r" - name: "UDP-galactose" - - compartment: r - - formula: C15H22N2O17P2 + - compartment: "r" + - formula: "C15H22N2O17P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03108c + - id: "m03108c" - name: "UDP-glucose" - - compartment: c - - formula: C15H22N2O17P2 + - compartment: "c" + - formula: "C15H22N2O17P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03108g + - id: "m03108g" - name: "UDP-glucose" - - compartment: g - - formula: C15H22N2O17P2 + - compartment: "g" + - formula: "C15H22N2O17P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03108r + - id: "m03108r" - name: "UDP-glucose" - - compartment: r - - formula: C15H22N2O17P2 + - compartment: "r" + - formula: "C15H22N2O17P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03109c + - id: "m03109c" - name: "UDP-glucuronate" - - compartment: c - - formula: C15H19N2O18P2 + - compartment: "c" + - formula: "C15H19N2O18P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03109g + - id: "m03109g" - name: "UDP-glucuronate" - - compartment: g - - formula: C15H19N2O18P2 + - compartment: "g" + - formula: "C15H19N2O18P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03109r + - id: "m03109r" - name: "UDP-glucuronate" - - compartment: r - - formula: C15H19N2O18P2 + - compartment: "r" + - formula: "C15H19N2O18P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03110c + - id: "m03110c" - name: "UDP-N-acetyl-D-galactosamine" - - compartment: c - - formula: C17H25N3O17P2 + - compartment: "c" + - formula: "C17H25N3O17P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03110g + - id: "m03110g" - name: "UDP-N-acetyl-D-galactosamine" - - compartment: g - - formula: C17H25N3O17P2 + - compartment: "g" + - formula: "C17H25N3O17P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03110l + - id: "m03110l" - name: "UDP-N-acetyl-D-galactosamine" - - compartment: l - - formula: C17H25N3O17P2 + - compartment: "l" + - formula: "C17H25N3O17P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03110r + - id: "m03110r" - name: "UDP-N-acetyl-D-galactosamine" - - compartment: r - - formula: C17H25N3O17P2 + - compartment: "r" + - formula: "C17H25N3O17P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03111c + - id: "m03111c" - name: "UDP-N-acetylglucosamine" - - compartment: c - - formula: C17H25N3O17P2 + - compartment: "c" + - formula: "C17H25N3O17P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03111g + - id: "m03111g" - name: "UDP-N-acetylglucosamine" - - compartment: g - - formula: C17H25N3O17P2 + - compartment: "g" + - formula: "C17H25N3O17P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03111r + - id: "m03111r" - name: "UDP-N-acetylglucosamine" - - compartment: r - - formula: C17H25N3O17P2 + - compartment: "r" + - formula: "C17H25N3O17P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03112c + - id: "m03112c" - name: "UDP-xylose" - - compartment: c - - formula: C14H20N2O16P2 + - compartment: "c" + - formula: "C14H20N2O16P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03112g + - id: "m03112g" - name: "UDP-xylose" - - compartment: g - - formula: C14H20N2O16P2 + - compartment: "g" + - formula: "C14H20N2O16P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03112r + - id: "m03112r" - name: "UDP-xylose" - - compartment: r - - formula: C14H20N2O16P2 + - compartment: "r" + - formula: "C14H20N2O16P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03113c + - id: "m03113c" - name: "umbelliferone" - - compartment: c - - formula: C9H6O3 + - compartment: "c" + - formula: "C9H6O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03113s + - id: "m03113s" - name: "umbelliferone" - - compartment: s - - formula: C9H6O3 + - compartment: "s" + - formula: "C9H6O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03114c + - id: "m03114c" - name: "UMP" - - compartment: c - - formula: C9H11N2O9P + - compartment: "c" + - formula: "C9H11N2O9P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03114g + - id: "m03114g" - name: "UMP" - - compartment: g - - formula: C9H11N2O9P + - compartment: "g" + - formula: "C9H11N2O9P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03114l + - id: "m03114l" - name: "UMP" - - compartment: l - - formula: C9H11N2O9P + - compartment: "l" + - formula: "C9H11N2O9P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03114m + - id: "m03114m" - name: "UMP" - - compartment: m - - formula: C9H11N2O9P + - compartment: "m" + - formula: "C9H11N2O9P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03114n + - id: "m03114n" - name: "UMP" - - compartment: n - - formula: C9H11N2O9P + - compartment: "n" + - formula: "C9H11N2O9P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03114r + - id: "m03114r" - name: "UMP" - - compartment: r - - formula: C9H11N2O9P + - compartment: "r" + - formula: "C9H11N2O9P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03114s + - id: "m03114s" - name: "UMP" - - compartment: s - - formula: C9H11N2O9P + - compartment: "s" + - formula: "C9H11N2O9P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03115c + - id: "m03115c" - name: "undecanoyl-[ACP]" - - compartment: c - - formula: C22H41N2O8PRS + - compartment: "c" + - formula: "C22H41N2O8PRS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03116c + - id: "m03116c" - name: "undecanoyl-CoA" - - compartment: c - - formula: C32H52N7O17P3S + - compartment: "c" + - formula: "C32H52N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03116m + - id: "m03116m" - name: "undecanoyl-CoA" - - compartment: m - - formula: C32H52N7O17P3S + - compartment: "m" + - formula: "C32H52N7O17P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03117c + - id: "m03117c" - name: "undecylic acid" - - compartment: c - - formula: C11H21O2 + - compartment: "c" + - formula: "C11H21O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03117s + - id: "m03117s" - name: "undecylic acid" - - compartment: s - - formula: C11H21O2 + - compartment: "s" + - formula: "C11H21O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03118c + - id: "m03118c" - name: "uracil" - - compartment: c - - formula: C4H4N2O2 + - compartment: "c" + - formula: "C4H4N2O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03118s + - id: "m03118s" - name: "uracil" - - compartment: s - - formula: C4H4N2O2 + - compartment: "s" + - formula: "C4H4N2O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03119c + - id: "m03119c" - name: "urate radical" - - compartment: c - - formula: C5H3N4O3 + - compartment: "c" + - formula: "C5H3N4O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03120c + - id: "m03120c" - name: "urate" - - compartment: c - - formula: C5H4N4O3 + - compartment: "c" + - formula: "C5H4N4O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03120p + - id: "m03120p" - name: "urate" - - compartment: p - - formula: C5H4N4O3 + - compartment: "p" + - formula: "C5H4N4O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03120s + - id: "m03120s" - name: "urate" - - compartment: s - - formula: C5H4N4O3 + - compartment: "s" + - formula: "C5H4N4O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03121c + - id: "m03121c" - name: "urea" - - compartment: c - - formula: CH4N2O + - compartment: "c" + - formula: "CH4N2O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03121m + - id: "m03121m" - name: "urea" - - compartment: m - - formula: CH4N2O + - compartment: "m" + - formula: "CH4N2O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03121s + - id: "m03121s" - name: "urea" - - compartment: s - - formula: CH4N2O + - compartment: "s" + - formula: "CH4N2O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03122c + - id: "m03122c" - name: "ureidoglycolate" - - compartment: c - - formula: C3H5N2O4 + - compartment: "c" + - formula: "C3H5N2O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03123c + - id: "m03123c" - name: "uridine" - - compartment: c - - formula: C9H12N2O6 + - compartment: "c" + - formula: "C9H12N2O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03123l + - id: "m03123l" - name: "uridine" - - compartment: l - - formula: C9H12N2O6 + - compartment: "l" + - formula: "C9H12N2O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03123m + - id: "m03123m" - name: "uridine" - - compartment: m - - formula: C9H12N2O6 + - compartment: "m" + - formula: "C9H12N2O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03123n + - id: "m03123n" - name: "uridine" - - compartment: n - - formula: C9H12N2O6 + - compartment: "n" + - formula: "C9H12N2O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03123s + - id: "m03123s" - name: "uridine" - - compartment: s - - formula: C9H12N2O6 + - compartment: "s" + - formula: "C9H12N2O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03124c + - id: "m03124c" - name: "urocanate" - - compartment: c - - formula: C6H5N2O2 + - compartment: "c" + - formula: "C6H5N2O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03125c + - id: "m03125c" - name: "uroporphyrin I" - - compartment: c - - formula: C40H30N4O16 + - compartment: "c" + - formula: "C40H30N4O16" - charge: -8 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03126c + - id: "m03126c" - name: "uroporphyrin III" - - compartment: c - - formula: C40H30N4O16 + - compartment: "c" + - formula: "C40H30N4O16" - charge: -8 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03127c + - id: "m03127c" - name: "uroporphyrinogen I" - - compartment: c - - formula: C40H36N4O16 + - compartment: "c" + - formula: "C40H36N4O16" - charge: -8 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03128c + - id: "m03128c" - name: "uroporphyrinogen III" - - compartment: c - - formula: C40H36N4O16 + - compartment: "c" + - formula: "C40H36N4O16" - charge: -8 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03129c + - id: "m03129c" - name: "ursodeoxycholate" - - compartment: c - - formula: C24H39O4 + - compartment: "c" + - formula: "C24H39O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03129s + - id: "m03129s" - name: "ursodeoxycholate" - - compartment: s - - formula: C24H39O4 + - compartment: "s" + - formula: "C24H39O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03130c + - id: "m03130c" - name: "UTP" - - compartment: c - - formula: C9H11N2O15P3 + - compartment: "c" + - formula: "C9H11N2O15P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03130m + - id: "m03130m" - name: "UTP" - - compartment: m - - formula: C9H11N2O15P3 + - compartment: "m" + - formula: "C9H11N2O15P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03130n + - id: "m03130n" - name: "UTP" - - compartment: n - - formula: C9H11N2O15P3 + - compartment: "n" + - formula: "C9H11N2O15P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03130s + - id: "m03130s" - name: "UTP" - - compartment: s - - formula: C9H11N2O15P3 + - compartment: "s" + - formula: "C9H11N2O15P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03131c + - id: "m03131c" - name: "V3(NeuAc)2-Gb5Cer" - - compartment: c - - formula: C70H119N4O41R + - compartment: "c" + - formula: "C70H119N4O41R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03131s + - id: "m03131s" - name: "V3(NeuAc)2-Gb5Cer" - - compartment: s - - formula: C70H119N4O41R + - compartment: "s" + - formula: "C70H119N4O41R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03132c + - id: "m03132c" - name: "V3Fuc,III3Fuc-nLc6Cer" - - compartment: c - - formula: C71H122N3O41R + - compartment: "c" + - formula: "C71H122N3O41R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03133c + - id: "m03133c" - name: "V3Fuc-nLc6Cer" - - compartment: c - - formula: C64H112N3O36RCO + - compartment: "c" + - formula: "C64H112N3O36RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03133g + - id: "m03133g" - name: "V3Fuc-nLc6Cer" - - compartment: g - - formula: C64H112N3O36RCO + - compartment: "g" + - formula: "C64H112N3O36RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03134c + - id: "m03134c" - name: "valeric acid" - - compartment: c - - formula: C5H9O2 + - compartment: "c" + - formula: "C5H9O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03134s + - id: "m03134s" - name: "valeric acid" - - compartment: s - - formula: C5H9O2 + - compartment: "s" + - formula: "C5H9O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03135c + - id: "m03135c" - name: "valine" - - compartment: c - - formula: C5H11NO2 + - compartment: "c" + - formula: "C5H11NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03135l + - id: "m03135l" - name: "valine" - - compartment: l - - formula: C5H11NO2 + - compartment: "l" + - formula: "C5H11NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03135m + - id: "m03135m" - name: "valine" - - compartment: m - - formula: C5H11NO2 + - compartment: "m" + - formula: "C5H11NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03135s + - id: "m03135s" - name: "valine" - - compartment: s - - formula: C5H11NO2 + - compartment: "s" + - formula: "C5H11NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03136c + - id: "m03136c" - name: "vanillylmandelate" - - compartment: c - - formula: C9H9O5 + - compartment: "c" + - formula: "C9H9O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03137c + - id: "m03137c" - name: "VI2Fuc-nLc6" - - compartment: c - - formula: C64H112N3O36RCO + - compartment: "c" + - formula: "C64H112N3O36RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03137g + - id: "m03137g" - name: "VI2Fuc-nLc6" - - compartment: g - - formula: C64H112N3O36RCO + - compartment: "g" + - formula: "C64H112N3O36RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03138c + - id: "m03138c" - name: "VI3NeuAc-nLc6Cer" - - compartment: c - - formula: C69H118N4O40RCO + - compartment: "c" + - formula: "C69H118N4O40RCO" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03138g + - id: "m03138g" - name: "VI3NeuAc-nLc6Cer" - - compartment: g - - formula: C69H118N4O40RCO + - compartment: "g" + - formula: "C69H118N4O40RCO" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03138s + - id: "m03138s" - name: "VI3NeuAc-nLc6Cer" - - compartment: s - - formula: C69H118N4O40RCO + - compartment: "s" + - formula: "C69H118N4O40RCO" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03141c + - id: "m03141c" - name: "vitamin D2" - - compartment: c - - formula: C28H44O + - compartment: "c" + - formula: "C28H44O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03141m + - id: "m03141m" - name: "vitamin D2" - - compartment: m - - formula: C28H44O + - compartment: "m" + - formula: "C28H44O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03141s + - id: "m03141s" - name: "vitamin D2" - - compartment: s - - formula: C28H44O + - compartment: "s" + - formula: "C28H44O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03142c + - id: "m03142c" - name: "vitamin D3" - - compartment: c - - formula: C27H44O + - compartment: "c" + - formula: "C27H44O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03142m + - id: "m03142m" - name: "vitamin D3" - - compartment: m - - formula: C27H44O + - compartment: "m" + - formula: "C27H44O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03142s + - id: "m03142s" - name: "vitamin D3" - - compartment: s - - formula: C27H44O + - compartment: "s" + - formula: "C27H44O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03144c + - id: "m03144c" - name: "vitamin K epoxide" - - compartment: c - - formula: C11H7O3R + - compartment: "c" + - formula: "C11H7O3R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03145c + - id: "m03145c" - name: "vitamin K" - - compartment: c - - formula: C11H7O2R + - compartment: "c" + - formula: "C11H7O2R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03146l + - id: "m03146l" - name: "VLDL remnant" - - compartment: l - - formula: C136286H232084N13476O38613P3271S174R7267 + - compartment: "l" + - formula: "C136286H232084N13476O38613P3271S174R7267" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03146s + - id: "m03146s" - name: "VLDL remnant" - - compartment: s - - formula: C136286H232084N13476O38613P3271S174R7267 + - compartment: "s" + - formula: "C136286H232084N13476O38613P3271S174R7267" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03147r + - id: "m03147r" - name: "VLDL" - - compartment: r - - formula: C198596H284009N13476O100923P3271S174R38422 + - compartment: "r" + - formula: "C198596H284009N13476O100923P3271S174R38422" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03147s + - id: "m03147s" - name: "VLDL" - - compartment: s - - formula: C198596H284009N13476O100923P3271S174R38422 + - compartment: "s" + - formula: "C198596H284009N13476O100923P3271S174R38422" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03148c + - id: "m03148c" - name: "xanthine" - - compartment: c - - formula: C5H4N4O2 + - compartment: "c" + - formula: "C5H4N4O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03148p + - id: "m03148p" - name: "xanthine" - - compartment: p - - formula: C5H4N4O2 + - compartment: "p" + - formula: "C5H4N4O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03149c + - id: "m03149c" - name: "xanthosine" - - compartment: c - - formula: C10H12N4O6 + - compartment: "c" + - formula: "C10H12N4O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03150c + - id: "m03150c" - name: "xanthosine-5-phosphate" - - compartment: c - - formula: C10H11N4O9P + - compartment: "c" + - formula: "C10H11N4O9P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03151c + - id: "m03151c" - name: "xanthurenate" - - compartment: c - - formula: C10H6NO4 + - compartment: "c" + - formula: "C10H6NO4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03151s + - id: "m03151s" - name: "xanthurenate" - - compartment: s - - formula: C10H6NO4 + - compartment: "s" + - formula: "C10H6NO4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03152c + - id: "m03152c" - name: "xanthurenate-8-O-beta-D-glucoside" - - compartment: c - - formula: C16H16NO9 + - compartment: "c" + - formula: "C16H16NO9" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03153c + - id: "m03153c" - name: "ximenic acid" - - compartment: c - - formula: C26H49O2 + - compartment: "c" + - formula: "C26H49O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03153l + - id: "m03153l" - name: "ximenic acid" - - compartment: l - - formula: C26H49O2 + - compartment: "l" + - formula: "C26H49O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03153r + - id: "m03153r" - name: "ximenic acid" - - compartment: r - - formula: C26H49O2 + - compartment: "r" + - formula: "C26H49O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03153s + - id: "m03153s" - name: "ximenic acid" - - compartment: s - - formula: C26H49O2 + - compartment: "s" + - formula: "C26H49O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03154c + - id: "m03154c" - name: "XTP" - - compartment: c - - formula: C10H11N4O15P3 + - compartment: "c" + - formula: "C10H11N4O15P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03154s + - id: "m03154s" - name: "XTP" - - compartment: s - - formula: C10H11N4O15P3 + - compartment: "s" + - formula: "C10H11N4O15P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03155c + - id: "m03155c" - name: "xylitol" - - compartment: c - - formula: C5H12O5 + - compartment: "c" + - formula: "C5H12O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03155s + - id: "m03155s" - name: "xylitol" - - compartment: s - - formula: C5H12O5 + - compartment: "s" + - formula: "C5H12O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03156g + - id: "m03156g" - name: "Xyl-L-Ser-[protein]" - - compartment: g - - formula: C5H9O4X + - compartment: "g" + - formula: "C5H9O4X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03156r + - id: "m03156r" - name: "Xyl-L-Ser-[protein]" - - compartment: r - - formula: C5H9O4X + - compartment: "r" + - formula: "C5H9O4X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03157c + - id: "m03157c" - name: "zinc" - - compartment: c - - formula: Zn + - compartment: "c" + - formula: "Zn" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03157g + - id: "m03157g" - name: "zinc" - - compartment: g - - formula: Zn + - compartment: "g" + - formula: "Zn" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03157r + - id: "m03157r" - name: "zinc" - - compartment: r - - formula: Zn + - compartment: "r" + - formula: "Zn" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03157s + - id: "m03157s" - name: "zinc" - - compartment: s - - formula: Zn + - compartment: "s" + - formula: "Zn" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03158c + - id: "m03158c" - name: "zymosterol" - - compartment: c - - formula: C27H44O + - compartment: "c" + - formula: "C27H44O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03159c + - id: "m03159c" - name: "phylloquinol" - - compartment: c - - formula: C31H48O2 + - compartment: "c" + - formula: "C31H48O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03160l + - id: "m03160l" - name: "GM4" - - compartment: l - - formula: C36H63N2O16R + - compartment: "l" + - formula: "C36H63N2O16R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03161c + - id: "m03161c" - name: "glycogen" - - compartment: c - - formula: C6H10O5 + - compartment: "c" + - formula: "C6H10O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03161s + - id: "m03161s" - name: "glycogen" - - compartment: s - - formula: C6H10O5 + - compartment: "s" + - formula: "C6H10O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03162c + - id: "m03162c" - name: "5,6-dihydroxyindole" - - compartment: c - - formula: C8H7NO2 + - compartment: "c" + - formula: "C8H7NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03163c + - id: "m03163c" - name: "indole-5,6-quinone" - - compartment: c - - formula: C8H5NO2 + - compartment: "c" + - formula: "C8H5NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03164c + - id: "m03164c" - name: "D-alanyl-D-alanine" - - compartment: c - - formula: C6H12N2O3 + - compartment: "c" + - formula: "C6H12N2O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03165c + - id: "m03165c" - name: "sedoheptulose" - - compartment: c - - formula: C7H14O7 + - compartment: "c" + - formula: "C7H14O7" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03166c + - id: "m03166c" - name: "sedoheptulose-1-phosphate" - - compartment: c - - formula: C7H13O10P + - compartment: "c" + - formula: "C7H13O10P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03167c + - id: "m03167c" - name: "5-Phosphonooxy-L-lysine" - - compartment: c - - formula: C6H14N2O6P + - compartment: "c" + - formula: "C6H14N2O6P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03168m + - id: "m03168m" - name: "3-oxopropionyl-CoA" - - compartment: m - - formula: C24H34N7O18P3S + - compartment: "m" + - formula: "C24H34N7O18P3S" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03169c + - id: "m03169c" - name: "insulin-(SS)" - - compartment: c - - formula: C256H379N65O77S6 + - compartment: "c" + - formula: "C256H379N65O77S6" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03170c + - id: "m03170c" - name: "Insulin-(SH)2" - - compartment: c - - formula: C256H381N65O77S6 + - compartment: "c" + - formula: "C256H381N65O77S6" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00001x + - id: "m00001x" - name: "(-)-trans-carveol" - - compartment: x - - formula: C10H16O + - compartment: "x" + - formula: "C10H16O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00002x + - id: "m00002x" - name: "(+)-alpha-pinene" - - compartment: x - - formula: C10H16 + - compartment: "x" + - formula: "C10H16" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00032x + - id: "m00032x" - name: "(1R,2S)-naphthalene 1,2-oxide" - - compartment: x - - formula: C10H8O + - compartment: "x" + - formula: "C10H8O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00035x + - id: "m00035x" - name: "(24R)-24,25-dihydroxycalciol" - - compartment: x - - formula: C27H44O3 + - compartment: "x" + - formula: "C27H44O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00097x + - id: "m00097x" - name: "(5-L-glutamyl)-L-amino acid" - - compartment: x - - formula: C8H13N2O5 + - compartment: "x" + - formula: "C8H13N2O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00157x + - id: "m00157x" - name: "(R)-3-hydroxybutanoate" - - compartment: x - - formula: C4H7O3 + - compartment: "x" + - formula: "C4H7O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00179x + - id: "m00179x" - name: "(S)-3-sulfolactate" - - compartment: x - - formula: C3H4O6S + - compartment: "x" + - formula: "C3H4O6S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00204x + - id: "m00204x" - name: "[protein]-L-lysine" - - compartment: x - - formula: C7H14N3O2R2 + - compartment: "x" + - formula: "C7H14N3O2R2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00228x + - id: "m00228x" - name: "1,1-dichloroethylene" - - compartment: x - - formula: C2H2Cl2 + - compartment: "x" + - formula: "C2H2Cl2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00242x + - id: "m00242x" - name: "1,2-dibromoethane" - - compartment: x - - formula: C2H4Br2 + - compartment: "x" + - formula: "C2H4Br2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00266x + - id: "m00266x" - name: "10-formyl-THF" - - compartment: x - - formula: C20H21N7O7 + - compartment: "x" + - formula: "C20H21N7O7" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00267x + - id: "m00267x" - name: "10-formyl-THF-glu(5)" - - compartment: x - - formula: C40H45N11O19 + - compartment: "x" + - formula: "C40H45N11O19" - charge: -6 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00268x + - id: "m00268x" - name: "10-formyl-THF-glu(6)" - - compartment: x - - formula: C45H51N12O22 + - compartment: "x" + - formula: "C45H51N12O22" - charge: -7 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00269x + - id: "m00269x" - name: "10-formyl-THF-glu(7)" - - compartment: x - - formula: C50H57N13O25 + - compartment: "x" + - formula: "C50H57N13O25" - charge: -8 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00325x + - id: "m00325x" - name: "12-hydroxydodecanoic acid" - - compartment: x - - formula: C12H23O3 + - compartment: "x" + - formula: "C12H23O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00353x + - id: "m00353x" - name: "13-cis-retinoyl-glucuronide" - - compartment: x - - formula: C26H35O8 + - compartment: "x" + - formula: "C26H35O8" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00371x + - id: "m00371x" - name: "14-hydroxytetradecanoic acid" - - compartment: x - - formula: C14H27O3 + - compartment: "x" + - formula: "C14H27O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00402x + - id: "m00402x" - name: "16-glucuronide-estriol" - - compartment: x - - formula: C24H32O9 + - compartment: "x" + - formula: "C24H32O9" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00403x + - id: "m00403x" - name: "16-hydroxyhexadecanoic acid" - - compartment: x - - formula: C16H31O3 + - compartment: "x" + - formula: "C16H31O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00432x + - id: "m00432x" - name: "19-hydroxytestosterone" - - compartment: x - - formula: C19H28O3 + - compartment: "x" + - formula: "C19H28O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00516x + - id: "m00516x" - name: "1-alkyl-2-lysoglycerol-3-phosphocholine" - - compartment: x - - formula: C8H19NO6PR + - compartment: "x" + - formula: "C8H19NO6PR" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00536x + - id: "m00536x" - name: "1-methylnicotinamide" - - compartment: x - - formula: C7H9N2O + - compartment: "x" + - formula: "C7H9N2O" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00545x + - id: "m00545x" - name: "1-nitronaphthalene" - - compartment: x - - formula: C10H6NO2 + - compartment: "x" + - formula: "C10H6NO2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00549x + - id: "m00549x" - name: "1-organyl-2-lyso-sn-glycero-3-phosphocholine" - - compartment: x - - formula: C8H19NO6PR + - compartment: "x" + - formula: "C8H19NO6PR" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00577x + - id: "m00577x" - name: "2,6-dimethylheptanoyl-carnitine" - - compartment: x - - formula: C16H31NO4 + - compartment: "x" + - formula: "C16H31NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00580x + - id: "m00580x" - name: "20alpha-hydroxy-4-pregnen-3-one" - - compartment: x - - formula: C21H32O2 + - compartment: "x" + - formula: "C21H32O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00613x + - id: "m00613x" - name: "24R,25-dihyoxyvitamin D2" - - compartment: x - - formula: C28H44O3 + - compartment: "x" + - formula: "C28H44O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00620x + - id: "m00620x" - name: "25-hydroxyvitamin D2" - - compartment: x - - formula: C28H44O2 + - compartment: "x" + - formula: "C28H44O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00626x + - id: "m00626x" - name: "2-acetyl-1-alkyl-sn-glycero-3-phosphocholine" - - compartment: x - - formula: C10H21NO7PR + - compartment: "x" + - formula: "C10H21NO7PR" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00648x + - id: "m00648x" - name: "2-hydroxybutyrate" - - compartment: x - - formula: C4H7O3 + - compartment: "x" + - formula: "C4H7O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00665x + - id: "m00665x" - name: "2-methylcitrate" - - compartment: x - - formula: C7H7O7 + - compartment: "x" + - formula: "C7H7O7" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00730x + - id: "m00730x" - name: "3,4-dihydroxyphenylethyleneglycol" - - compartment: x - - formula: C8H10O4 + - compartment: "x" + - formula: "C8H10O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00734x + - id: "m00734x" - name: "3,5,3-triiodothyronine-4-sulfate" - - compartment: x - - formula: C15H11I3NO7S + - compartment: "x" + - formula: "C15H11I3NO7S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00744x + - id: "m00744x" - name: "3,8-LD1" - - compartment: x - - formula: C66H111N4O38RCO + - compartment: "x" + - formula: "C66H111N4O38RCO" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00771x + - id: "m00771x" - name: "3-deoxy-D-glycero-D-galacto-2-nonulosonic acid" - - compartment: x - - formula: C9H15O9 + - compartment: "x" + - formula: "C9H15O9" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00816x + - id: "m00816x" - name: "3-mercaptolactate-cysteine-disulfide" - - compartment: x - - formula: C6H10O5S2N + - compartment: "x" + - formula: "C6H10O5S2N" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00932x + - id: "m00932x" - name: "4-(n-nitrosomethylamino)-1-(3-pyridyl)-1-butanone" - - compartment: x - - formula: C10H13N3O2 + - compartment: "x" + - formula: "C10H13N3O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00970x + - id: "m00970x" - name: "4-aminobutyrate" - - compartment: x - - formula: C4H9NO2 + - compartment: "x" + - formula: "C4H9NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00986x + - id: "m00986x" - name: "4-hydroxy-17beta-estradiol" - - compartment: x - - formula: C18H24O3 + - compartment: "x" + - formula: "C18H24O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m00998x + - id: "m00998x" - name: "4-hydroxy-debrisoquine" - - compartment: x - - formula: C10H14N3O + - compartment: "x" + - formula: "C10H14N3O" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01003x + - id: "m01003x" - name: "4-hydroxyphenylacetate" - - compartment: x - - formula: C8H7O3 + - compartment: "x" + - formula: "C8H7O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01006x + - id: "m01006x" - name: "4-hydroxyretinoic acid" - - compartment: x - - formula: C20H27O3 + - compartment: "x" + - formula: "C20H27O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01007x + - id: "m01007x" - name: "4-hydroxy-tolbutamide" - - compartment: x - - formula: C12H18N2O4S + - compartment: "x" + - formula: "C12H18N2O4S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01019x + - id: "m01019x" - name: "4-nitrocatechol" - - compartment: x - - formula: C6H5NO4 + - compartment: "x" + - formula: "C6H5NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01020x + - id: "m01020x" - name: "4-nitrophenyl-phosphate" - - compartment: x - - formula: C6H4NO6P + - compartment: "x" + - formula: "C6H4NO6P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01021x + - id: "m01021x" - name: "4-nitrophenyl-sulfate" - - compartment: x - - formula: C6H4NO6S + - compartment: "x" + - formula: "C6H4NO6S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01033x + - id: "m01033x" - name: "4-pyridoxate" - - compartment: x - - formula: C8H9NO4 + - compartment: "x" + - formula: "C8H9NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01069x + - id: "m01069x" - name: "5-alpha-dihydrotestosterone" - - compartment: x - - formula: C19H30O2 + - compartment: "x" + - formula: "C19H30O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01070x + - id: "m01070x" - name: "5alpha-dihydrotestosterone-glucuronide" - - compartment: x - - formula: C25H38O8 + - compartment: "x" + - formula: "C25H38O8" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01071x + - id: "m01071x" - name: "5alpha-dihydrotestosterone-sulfate" - - compartment: x - - formula: C19H29O5S + - compartment: "x" + - formula: "C19H29O5S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01098x + - id: "m01098x" - name: "5-deoxyadenosine" - - compartment: x - - formula: C10H13N5O3 + - compartment: "x" + - formula: "C10H13N5O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01100x + - id: "m01100x" - name: "5-formyl-THF" - - compartment: x - - formula: C20H21N7O7 + - compartment: "x" + - formula: "C20H21N7O7" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01107x + - id: "m01107x" - name: "5-hydroxy-L-tryptophan" - - compartment: x - - formula: C11H12N2O3 + - compartment: "x" + - formula: "C11H12N2O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01109x + - id: "m01109x" - name: "5-hydroxy-omeprazole" - - compartment: x - - formula: C17H19N3O4S + - compartment: "x" + - formula: "C17H19N3O4S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01111x + - id: "m01111x" - name: "5-L-gamma-glutamyl" - - compartment: x - - formula: C5H7NO3 + - compartment: "x" + - formula: "C5H7NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01115x + - id: "m01115x" - name: "5-methyl-THF" - - compartment: x - - formula: C20H24N7O6 + - compartment: "x" + - formula: "C20H24N7O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01158x + - id: "m01158x" - name: "6beta-hydroxytestosterone" - - compartment: x - - formula: C19H28O3 + - compartment: "x" + - formula: "C19H28O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01159x + - id: "m01159x" - name: "6-deoxy-L-galactose" - - compartment: x - - formula: C6H12O5 + - compartment: "x" + - formula: "C6H12O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01163x + - id: "m01163x" - name: "6-hydroxypaclitaxel" - - compartment: x - - formula: C47H31NO15 + - compartment: "x" + - formula: "C47H31NO15" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01174x + - id: "m01174x" - name: "7,12-dimethylbenz[a]anthracene" - - compartment: x - - formula: C20H16 + - compartment: "x" + - formula: "C20H16" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01244x + - id: "m01244x" - name: "9-O-acetylated-GD3" - - compartment: x - - formula: C54H90N3O29RCO + - compartment: "x" + - formula: "C54H90N3O29RCO" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01245x + - id: "m01245x" - name: "9-O-acetylated-GT3" - - compartment: x - - formula: C65H106N4O37RCO + - compartment: "x" + - formula: "C65H106N4O37RCO" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01249x + - id: "m01249x" - name: "acetaldehyde" - - compartment: x - - formula: C2H4O + - compartment: "x" + - formula: "C2H4O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01252x + - id: "m01252x" - name: "acetate" - - compartment: x - - formula: C2H3O2 + - compartment: "x" + - formula: "C2H3O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01253x + - id: "m01253x" - name: "acetoacetate" - - compartment: x - - formula: C4H5O3 + - compartment: "x" + - formula: "C4H5O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01256x + - id: "m01256x" - name: "acetone" - - compartment: x - - formula: C3H6O + - compartment: "x" + - formula: "C3H6O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01260x + - id: "m01260x" - name: "acetylcholine" - - compartment: x - - formula: C7H16NO2 + - compartment: "x" + - formula: "C7H16NO2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01279x + - id: "m01279x" - name: "adenine" - - compartment: x - - formula: C5H5N5 + - compartment: "x" + - formula: "C5H5N5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01280x + - id: "m01280x" - name: "adenosine" - - compartment: x - - formula: C10H13N5O4 + - compartment: "x" + - formula: "C10H13N5O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01285x + - id: "m01285x" - name: "ADP" - - compartment: x - - formula: C10H12N5O10P2 + - compartment: "x" + - formula: "C10H12N5O10P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01286x + - id: "m01286x" - name: "ADP-glucose" - - compartment: x - - formula: C16H23N5O15P2 + - compartment: "x" + - formula: "C16H23N5O15P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01287x + - id: "m01287x" - name: "ADP-mannose" - - compartment: x - - formula: C16H23N5O15P2 + - compartment: "x" + - formula: "C16H23N5O15P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01288x + - id: "m01288x" - name: "ADP-ribose" - - compartment: x - - formula: C15H21N5O14P2 + - compartment: "x" + - formula: "C15H21N5O14P2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01289x + - id: "m01289x" - name: "ADP-ribose-2-phosphate" - - compartment: x - - formula: C15H20N5O17P3 + - compartment: "x" + - formula: "C15H20N5O17P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01290x + - id: "m01290x" - name: "adrenaline" - - compartment: x - - formula: C9H14NO3 + - compartment: "x" + - formula: "C9H14NO3" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01296x + - id: "m01296x" - name: "aflatoxin B1" - - compartment: x - - formula: C17H12O6 + - compartment: "x" + - formula: "C17H12O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01298x + - id: "m01298x" - name: "aflatoxin B1-exo-8,9-epoxide" - - compartment: x - - formula: C17H12O7 + - compartment: "x" + - formula: "C17H12O7" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01303x + - id: "m01303x" - name: "agmatine" - - compartment: x - - formula: C5H16N4 + - compartment: "x" + - formula: "C5H16N4" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01306x + - id: "m01306x" - name: "AKG" - - compartment: x - - formula: C5H4O5 + - compartment: "x" + - formula: "C5H4O5" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01307x + - id: "m01307x" - name: "alanine" - - compartment: x - - formula: C3H7NO2 + - compartment: "x" + - formula: "C3H7NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01308x + - id: "m01308x" - name: "albumin" - - compartment: x - - formula: C3076H4833N821O919S42 + - compartment: "x" + - formula: "C3076H4833N821O919S42" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01309x + - id: "m01309x" - name: "aldosterone" - - compartment: x - - formula: C21H28O5 + - compartment: "x" + - formula: "C21H28O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01326x + - id: "m01326x" - name: "alpha-pinene-oxide" - - compartment: x - - formula: C10H16O + - compartment: "x" + - formula: "C10H16O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01327x + - id: "m01327x" - name: "alpha-tocopherol" - - compartment: x - - formula: C29H50O2 + - compartment: "x" + - formula: "C29H50O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01330x + - id: "m01330x" - name: "alpha-tocotrienol" - - compartment: x - - formula: C29H44O2 + - compartment: "x" + - formula: "C29H44O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01334x + - id: "m01334x" - name: "AMP" - - compartment: x - - formula: C10H12N5O7P + - compartment: "x" + - formula: "C10H12N5O7P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01338x + - id: "m01338x" - name: "androsterone" - - compartment: x - - formula: C19H30O2 + - compartment: "x" + - formula: "C19H30O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01339x + - id: "m01339x" - name: "androsterone-glucuronide" - - compartment: x - - formula: C25H38O8 + - compartment: "x" + - formula: "C25H38O8" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01344x + - id: "m01344x" - name: "antipyrine" - - compartment: x - - formula: C11H12N2O + - compartment: "x" + - formula: "C11H12N2O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01356x + - id: "m01356x" - name: "apoC-lys" - - compartment: x - - formula: C6H13N2OX + - compartment: "x" + - formula: "C6H13N2OX" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01361x + - id: "m01361x" - name: "aquacob(III)alamin" - - compartment: x - - formula: C62H90CoN13O15P + - compartment: "x" + - formula: "C62H90CoN13O15P" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01365x + - id: "m01365x" - name: "arginine" - - compartment: x - - formula: C6H15N4O2 + - compartment: "x" + - formula: "C6H15N4O2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01368x + - id: "m01368x" - name: "ascorbate" - - compartment: x - - formula: C6H7O6 + - compartment: "x" + - formula: "C6H7O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01369x + - id: "m01369x" - name: "asparagine" - - compartment: x - - formula: C4H8N2O3 + - compartment: "x" + - formula: "C4H8N2O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01370x + - id: "m01370x" - name: "aspartate" - - compartment: x - - formula: C4H6NO4 + - compartment: "x" + - formula: "C4H6NO4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01374x + - id: "m01374x" - name: "benzo[a]pyrene" - - compartment: x - - formula: C20H12 + - compartment: "x" + - formula: "C20H12" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01383x + - id: "m01383x" - name: "beta-alanine" - - compartment: x - - formula: C3H7NO2 + - compartment: "x" + - formula: "C3H7NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01385x + - id: "m01385x" - name: "beta-carotene" - - compartment: x - - formula: C40H56 + - compartment: "x" + - formula: "C40H56" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01393x + - id: "m01393x" - name: "betaine" - - compartment: x - - formula: C5H11NO2 + - compartment: "x" + - formula: "C5H11NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01396x + - id: "m01396x" - name: "bilirubin" - - compartment: x - - formula: C33H34N4O6 + - compartment: "x" + - formula: "C33H34N4O6" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01397x + - id: "m01397x" - name: "bilirubin-bisglucuronoside" - - compartment: x - - formula: C45H50N4O18 + - compartment: "x" + - formula: "C45H50N4O18" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01398x + - id: "m01398x" - name: "bilirubin-monoglucuronoside" - - compartment: x - - formula: C39H42N4O12 + - compartment: "x" + - formula: "C39H42N4O12" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01400x + - id: "m01400x" - name: "biocytin" - - compartment: x - - formula: C16H28N4O4S + - compartment: "x" + - formula: "C16H28N4O4S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01401x + - id: "m01401x" - name: "biotin" - - compartment: x - - formula: C10H15N2O3S + - compartment: "x" + - formula: "C10H15N2O3S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01403x + - id: "m01403x" - name: "bromobenzene" - - compartment: x - - formula: C6H5Br + - compartment: "x" + - formula: "C6H5Br" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01410x + - id: "m01410x" - name: "butyrate" - - compartment: x - - formula: C4H7O2 + - compartment: "x" + - formula: "C4H7O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01413x + - id: "m01413x" - name: "Ca2+" - - compartment: x - - formula: Ca + - compartment: "x" + - formula: "Ca" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01415x + - id: "m01415x" - name: "calcidiol" - - compartment: x - - formula: C27H44O2 + - compartment: "x" + - formula: "C27H44O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01418x + - id: "m01418x" - name: "calcitroic acid" - - compartment: x - - formula: C23H33O4 + - compartment: "x" + - formula: "C23H33O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01419x + - id: "m01419x" - name: "cAMP" - - compartment: x - - formula: C10H11N5O6P + - compartment: "x" + - formula: "C10H11N5O6P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01433x + - id: "m01433x" - name: "cGMP" - - compartment: x - - formula: C10H11N5O7P + - compartment: "x" + - formula: "C10H11N5O7P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01438x + - id: "m01438x" - name: "chitin-component" - - compartment: x - - formula: C8H13NO5 + - compartment: "x" + - formula: "C8H13NO5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01442x + - id: "m01442x" - name: "chloride" - - compartment: x - - formula: Cl + - compartment: "x" + - formula: "Cl" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01445x + - id: "m01445x" - name: "cholate" - - compartment: x - - formula: C24H39O5 + - compartment: "x" + - formula: "C24H39O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01450x + - id: "m01450x" - name: "cholesterol" - - compartment: x - - formula: C27H46O + - compartment: "x" + - formula: "C27H46O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01513x + - id: "m01513x" - name: "choline" - - compartment: x - - formula: C5H14NO + - compartment: "x" + - formula: "C5H14NO" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01517x + - id: "m01517x" - name: "chondroitin sulfate A (GalNAc4S-GlcA) proteoglycan" - - compartment: x - - formula: C45H66N2O45S3X + - compartment: "x" + - formula: "C45H66N2O45S3X" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01525x + - id: "m01525x" - name: "chondroitin sulfate B - dermatan sulfate (IdoA2S-GalNAc4S) proteoglycan" - - compartment: x - - formula: C45H65N2O48S4X + - compartment: "x" + - formula: "C45H65N2O48S4X" - charge: -6 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01533x + - id: "m01533x" - name: "chondroitin sulfate C (GalNAc6S-GlcA) proteoglycan" - - compartment: x - - formula: C45H66N2O45S3X + - compartment: "x" + - formula: "C45H66N2O45S3X" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01543x + - id: "m01543x" - name: "chondroitin sulfate D (GlcNAc6S-GlcA2S) proteoglycan" - - compartment: x - - formula: C45H64N2O51S5X + - compartment: "x" + - formula: "C45H64N2O51S5X" - charge: -7 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01554x + - id: "m01554x" - name: "chondroitin sulfate E (GalNAc4,6diS-GlcA) proteoglycan" - - compartment: x - - formula: C45H63N2O54S6X + - compartment: "x" + - formula: "C45H63N2O54S6X" - charge: -8 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01569x + - id: "m01569x" - name: "chylomicron remnant" - - compartment: x - - formula: C25519H39954N6593O8030P6S113R283 + - compartment: "x" + - formula: "C25519H39954N6593O8030P6S113R283" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01570x + - id: "m01570x" - name: "chylomicron" - - compartment: x - - formula: C488977H426169N6593O471488P6S113R232012 + - compartment: "x" + - formula: "C488977H426169N6593O471488P6S113R232012" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01587x + - id: "m01587x" - name: "citrate" - - compartment: x - - formula: C6H5O7 + - compartment: "x" + - formula: "C6H5O7" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01588x + - id: "m01588x" - name: "citrulline" - - compartment: x - - formula: C6H13N3O3 + - compartment: "x" + - formula: "C6H13N3O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01590x + - id: "m01590x" - name: "CMP" - - compartment: x - - formula: C9H12N3O8P + - compartment: "x" + - formula: "C9H12N3O8P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01595x + - id: "m01595x" - name: "CO" - - compartment: x - - formula: CO + - compartment: "x" + - formula: "CO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01596x + - id: "m01596x" - name: "CO2" - - compartment: x - - formula: CO2 + - compartment: "x" + - formula: "CO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01603x + - id: "m01603x" - name: "coproporphyrin I" - - compartment: x - - formula: C36H34N4O8 + - compartment: "x" + - formula: "C36H34N4O8" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01604x + - id: "m01604x" - name: "coproporphyrin III" - - compartment: x - - formula: C36H34N4O8 + - compartment: "x" + - formula: "C36H34N4O8" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01610x + - id: "m01610x" - name: "core 5" - - compartment: x - - formula: C16H27N2O10X + - compartment: "x" + - formula: "C16H27N2O10X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01612x + - id: "m01612x" - name: "core 7" - - compartment: x - - formula: C16H27N2O10X + - compartment: "x" + - formula: "C16H27N2O10X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01613x + - id: "m01613x" - name: "core 8" - - compartment: x - - formula: C14H24NO10X + - compartment: "x" + - formula: "C14H24NO10X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01614x + - id: "m01614x" - name: "corticosterone" - - compartment: x - - formula: C21H30O4 + - compartment: "x" + - formula: "C21H30O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01615x + - id: "m01615x" - name: "cortisol" - - compartment: x - - formula: C21H30O5 + - compartment: "x" + - formula: "C21H30O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01617x + - id: "m01617x" - name: "coumarin" - - compartment: x - - formula: C9H6O2 + - compartment: "x" + - formula: "C9H6O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01619x + - id: "m01619x" - name: "creatine" - - compartment: x - - formula: C4H9N3O2 + - compartment: "x" + - formula: "C4H9N3O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01621x + - id: "m01621x" - name: "creatinine" - - compartment: x - - formula: C4H7N3O + - compartment: "x" + - formula: "C4H7N3O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01626x + - id: "m01626x" - name: "cys-gly" - - compartment: x - - formula: C5H10N2O3S + - compartment: "x" + - formula: "C5H10N2O3S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01628x + - id: "m01628x" - name: "cysteine" - - compartment: x - - formula: C3H7NO2S + - compartment: "x" + - formula: "C3H7NO2S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01629x + - id: "m01629x" - name: "cystine" - - compartment: x - - formula: C6H12N2O4S2 + - compartment: "x" + - formula: "C6H12N2O4S2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01630x + - id: "m01630x" - name: "cytidine" - - compartment: x - - formula: C9H13N3O5 + - compartment: "x" + - formula: "C9H13N3O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01632x + - id: "m01632x" - name: "cytosine" - - compartment: x - - formula: C4H5N3O + - compartment: "x" + - formula: "C4H5N3O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01633x + - id: "m01633x" - name: "D-3-amino-isobutanoate" - - compartment: x - - formula: C4H9NO2 + - compartment: "x" + - formula: "C4H9NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01638x + - id: "m01638x" - name: "D-alanine" - - compartment: x - - formula: C3H7NO2 + - compartment: "x" + - formula: "C3H7NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01640x + - id: "m01640x" - name: "D-arginine" - - compartment: x - - formula: C6H15N4O2 + - compartment: "x" + - formula: "C6H15N4O2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01641x + - id: "m01641x" - name: "D-aspartate" - - compartment: x - - formula: C4H6NO4 + - compartment: "x" + - formula: "C4H6NO4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01647x + - id: "m01647x" - name: "debrisoquin" - - compartment: x - - formula: C10H14N3 + - compartment: "x" + - formula: "C10H14N3" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01648x + - id: "m01648x" - name: "decanoic acid" - - compartment: x - - formula: C10H19O2 + - compartment: "x" + - formula: "C10H19O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01652x + - id: "m01652x" - name: "de-Fuc form of PA6" - - compartment: x - - formula: C84H135N6O61X + - compartment: "x" + - formula: "C84H135N6O61X" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01655x + - id: "m01655x" - name: "dehydroascorbic acid" - - compartment: x - - formula: C6H5O6 + - compartment: "x" + - formula: "C6H5O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01659x + - id: "m01659x" - name: "dehydroepiandrosterone sulfate" - - compartment: x - - formula: C19H27O5S + - compartment: "x" + - formula: "C19H27O5S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01665x + - id: "m01665x" - name: "dem2emgacpail_prot heparan sulfate" - - compartment: x - - formula: C39H70N3O38P3R2X + - compartment: "x" + - formula: "C39H70N3O38P3R2X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01666x + - id: "m01666x" - name: "deoxyadenosine" - - compartment: x - - formula: C10H13N5O3 + - compartment: "x" + - formula: "C10H13N5O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01668x + - id: "m01668x" - name: "deoxycytidine" - - compartment: x - - formula: C9H13N3O4 + - compartment: "x" + - formula: "C9H13N3O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01669x + - id: "m01669x" - name: "deoxyguanosine" - - compartment: x - - formula: C10H13N5O4 + - compartment: "x" + - formula: "C10H13N5O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01671x + - id: "m01671x" - name: "deoxyinosine" - - compartment: x - - formula: C10H12N4O4 + - compartment: "x" + - formula: "C10H12N4O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01672x + - id: "m01672x" - name: "deoxyribose" - - compartment: x - - formula: C5H10O4 + - compartment: "x" + - formula: "C5H10O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01673x + - id: "m01673x" - name: "deoxyuridine" - - compartment: x - - formula: C9H12N2O5 + - compartment: "x" + - formula: "C9H12N2O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01682x + - id: "m01682x" - name: "D-glucitol" - - compartment: x - - formula: C6H14O6 + - compartment: "x" + - formula: "C6H14O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01687x + - id: "m01687x" - name: "dgpi_prot heparan sulfate" - - compartment: x - - formula: C41H76N4O41P4R2X + - compartment: "x" + - formula: "C41H76N4O41P4R2X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01695x + - id: "m01695x" - name: "digalactosylceramidesulfate" - - compartment: x - - formula: C30H55NO15SRCO + - compartment: "x" + - formula: "C30H55NO15SRCO" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01700x + - id: "m01700x" - name: "dihydrofolate" - - compartment: x - - formula: C19H19N7O6 + - compartment: "x" + - formula: "C19H19N7O6" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01704x + - id: "m01704x" - name: "dihydroneopterin" - - compartment: x - - formula: C9H13N5O4 + - compartment: "x" + - formula: "C9H13N5O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01711x + - id: "m01711x" - name: "disialylgalactosylgloboside" - - compartment: x - - formula: C72H121N4O43RCO + - compartment: "x" + - formula: "C72H121N4O43RCO" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01712x + - id: "m01712x" - name: "disialyl-T antigen" - - compartment: x - - formula: C36H56N3O26X + - compartment: "x" + - formula: "C36H56N3O26X" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01714x + - id: "m01714x" - name: "dITP" - - compartment: x - - formula: C10H11N4O13P3 + - compartment: "x" + - formula: "C10H11N4O13P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01716x + - id: "m01716x" - name: "D-lactate" - - compartment: x - - formula: C3H5O3 + - compartment: "x" + - formula: "C3H5O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01730x + - id: "m01730x" - name: "dolichol" - - compartment: x - - formula: C100H164O + - compartment: "x" + - formula: "C100H164O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01736x + - id: "m01736x" - name: "dopamine" - - compartment: x - - formula: C8H12NO2 + - compartment: "x" + - formula: "C8H12NO2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01737x + - id: "m01737x" - name: "dopamine-3-O-sulfate" - - compartment: x - - formula: C8H11NO5S + - compartment: "x" + - formula: "C8H11NO5S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01740x + - id: "m01740x" - name: "D-ornithine" - - compartment: x - - formula: C5H13N2O2 + - compartment: "x" + - formula: "C5H13N2O2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01742x + - id: "m01742x" - name: "D-proline" - - compartment: x - - formula: C5H9NO2 + - compartment: "x" + - formula: "C5H9NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01743x + - id: "m01743x" - name: "D-ribulose" - - compartment: x - - formula: C5H10O5 + - compartment: "x" + - formula: "C5H10O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01744x + - id: "m01744x" - name: "D-serine" - - compartment: x - - formula: C3H7NO3 + - compartment: "x" + - formula: "C3H7NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01745x + - id: "m01745x" - name: "D-tagatose" - - compartment: x - - formula: C6H12O6 + - compartment: "x" + - formula: "C6H12O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01758x + - id: "m01758x" - name: "D-xylose" - - compartment: x - - formula: C5H10O5 + - compartment: "x" + - formula: "C5H10O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01765x + - id: "m01765x" - name: "ebastine" - - compartment: x - - formula: C32H39NO2 + - compartment: "x" + - formula: "C32H39NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01768x + - id: "m01768x" - name: "edaravone" - - compartment: x - - formula: C10H10N2O + - compartment: "x" + - formula: "C10H10N2O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01786x + - id: "m01786x" - name: "estradiol-17beta 3-glucuronide" - - compartment: x - - formula: C24H32O8 + - compartment: "x" + - formula: "C24H32O8" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01787x + - id: "m01787x" - name: "estradiol-17beta" - - compartment: x - - formula: C18H24O2 + - compartment: "x" + - formula: "C18H24O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01788x + - id: "m01788x" - name: "estriol" - - compartment: x - - formula: C18H24O3 + - compartment: "x" + - formula: "C18H24O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01789x + - id: "m01789x" - name: "estrone 3-sulfate" - - compartment: x - - formula: C18H21O5S + - compartment: "x" + - formula: "C18H21O5S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01795x + - id: "m01795x" - name: "estrone-glucuronide" - - compartment: x - - formula: C24H30O8 + - compartment: "x" + - formula: "C24H30O8" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01796x + - id: "m01796x" - name: "ethanol" - - compartment: x - - formula: C2H6O + - compartment: "x" + - formula: "C2H6O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01797x + - id: "m01797x" - name: "ethanolamine" - - compartment: x - - formula: C2H8NO + - compartment: "x" + - formula: "C2H8NO" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01799x + - id: "m01799x" - name: "etiocholan-3alpha-ol-17-one 3-glucuronide" - - compartment: x - - formula: C25H38O8 + - compartment: "x" + - formula: "C25H38O8" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01800x + - id: "m01800x" - name: "etiocholanolone" - - compartment: x - - formula: C19H30O2 + - compartment: "x" + - formula: "C19H30O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02458x + - id: "m02458x" - name: "eumelanin" - - compartment: x - - formula: C17H9N2O7 + - compartment: "x" + - formula: "C17H9N2O7" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01821x + - id: "m01821x" - name: "Fe2+" - - compartment: x - - formula: Fe + - compartment: "x" + - formula: "Fe" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01822x + - id: "m01822x" - name: "Fe3+" - - compartment: x - - formula: Fe + - compartment: "x" + - formula: "Fe" - charge: 3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01830x + - id: "m01830x" - name: "folate" - - compartment: x - - formula: C19H18N7O6 + - compartment: "x" + - formula: "C19H18N7O6" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01833x + - id: "m01833x" - name: "formate" - - compartment: x - - formula: CH1O2 + - compartment: "x" + - formula: "CH1O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01840x + - id: "m01840x" - name: "fructose" - - compartment: x - - formula: C6H12O6 + - compartment: "x" + - formula: "C6H12O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01850x + - id: "m01850x" - name: "fucacgalfucgalacglcgalgluside heparan sulfate" - - compartment: x - - formula: C64H112N3O35RCO + - compartment: "x" + - formula: "C64H112N3O35RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01851x + - id: "m01851x" - name: "fucfuc132galacglcgal14acglcgalgluside heparan sulfate" - - compartment: x - - formula: C70H122N3O40RCO + - compartment: "x" + - formula: "C70H122N3O40RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01852x + - id: "m01852x" - name: "fucfucfucgalacglc13galacglcgal14acglcgalgluside heparan sulfate" - - compartment: x - - formula: C90H155N4O54RCO + - compartment: "x" + - formula: "C90H155N4O54RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01853x + - id: "m01853x" - name: "fucfucfucgalacglcgal14acglcgalgluside heparan sulfate" - - compartment: x - - formula: C76H132N3O44RCO + - compartment: "x" + - formula: "C76H132N3O44RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01859x + - id: "m01859x" - name: "fucgalfucgalacglcgalgluside heparan sulfate" - - compartment: x - - formula: C62H109N2O35RCO + - compartment: "x" + - formula: "C62H109N2O35RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01861x + - id: "m01861x" - name: "fucosyl-galactosylgloboside" - - compartment: x - - formula: C56H99N2O31RCO + - compartment: "x" + - formula: "C56H99N2O31RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01870x + - id: "m01870x" - name: "G00022" - - compartment: x - - formula: C74H122N7O50X + - compartment: "x" + - formula: "C74H122N7O50X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01872x + - id: "m01872x" - name: "G00032" - - compartment: x - - formula: C22H37N2O15X + - compartment: "x" + - formula: "C22H37N2O15X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01874x + - id: "m01874x" - name: "G00040" - - compartment: x - - formula: C62H109N2O35RCO + - compartment: "x" + - formula: "C62H109N2O35RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01881x + - id: "m01881x" - name: "G00079" - - compartment: x - - formula: C85H145N4O51R + - compartment: "x" + - formula: "C85H145N4O51R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01883x + - id: "m01883x" - name: "G00082" - - compartment: x - - formula: C76H132N3O44RCO + - compartment: "x" + - formula: "C76H132N3O44RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01884x + - id: "m01884x" - name: "G00083" - - compartment: x - - formula: C70H122N3O41RCO + - compartment: "x" + - formula: "C70H122N3O41RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01887x + - id: "m01887x" - name: "G00086" - - compartment: x - - formula: C90H155N4O54RCO + - compartment: "x" + - formula: "C90H155N4O54RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01910x + - id: "m01910x" - name: "galactose" - - compartment: x - - formula: C6H12O6 + - compartment: "x" + - formula: "C6H12O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01913x + - id: "m01913x" - name: "galactosylglycerol" - - compartment: x - - formula: C9H18O8 + - compartment: "x" + - formula: "C9H18O8" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01914x + - id: "m01914x" - name: "galfuc12gal14acglcgalgluside heparan sulfate" - - compartment: x - - formula: C56H99N2O31RCO + - compartment: "x" + - formula: "C56H99N2O31RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01915x + - id: "m01915x" - name: "galfucgalacglcgal14acglcgalgluside heparan sulfate" - - compartment: x - - formula: C70H122N3O41RCO + - compartment: "x" + - formula: "C70H122N3O41RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01916x + - id: "m01916x" - name: "galgalfucfucgalacglcgalacglcgal14acglcgalgluside heparan sulfate" - - compartment: x - - formula: C96H165N4O60RCO + - compartment: "x" + - formula: "C96H165N4O60RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01917x + - id: "m01917x" - name: "galgalgalthcrm heparan sulfate" - - compartment: x - - formula: C54H96NO32RCO + - compartment: "x" + - formula: "C54H96NO32RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01919x + - id: "m01919x" - name: "gal-glcnac-gal-globoside" - - compartment: x - - formula: C64H112N3O37RCO + - compartment: "x" + - formula: "C64H112N3O37RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01935x + - id: "m01935x" - name: "gamma-tocopherol" - - compartment: x - - formula: C28H48O2 + - compartment: "x" + - formula: "C28H48O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01938x + - id: "m01938x" - name: "gamma-tocotrienol" - - compartment: x - - formula: C28H42O2 + - compartment: "x" + - formula: "C28H42O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01944x + - id: "m01944x" - name: "GD1beta" - - compartment: x - - formula: C66H111N4O38RCO + - compartment: "x" + - formula: "C66H111N4O38RCO" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01945x + - id: "m01945x" - name: "GD1c" - - compartment: x - - formula: C66H111N4O38RCO + - compartment: "x" + - formula: "C66H111N4O38RCO" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01948x + - id: "m01948x" - name: "GDP" - - compartment: x - - formula: C10H12N5O11P2 + - compartment: "x" + - formula: "C10H12N5O11P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01955x + - id: "m01955x" - name: "glcnac-alpha-1,4-core 2" - - compartment: x - - formula: C30H50N3O20X + - compartment: "x" + - formula: "C30H50N3O20X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01959x + - id: "m01959x" - name: "globoside" - - compartment: x - - formula: C44H79N2O22RCO + - compartment: "x" + - formula: "C44H79N2O22RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01962x + - id: "m01962x" - name: "glucosamine" - - compartment: x - - formula: C6H14NO5 + - compartment: "x" + - formula: "C6H14NO5" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01965x + - id: "m01965x" - name: "glucose" - - compartment: x - - formula: C6H12O6 + - compartment: "x" + - formula: "C6H12O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01966x + - id: "m01966x" - name: "glucose-1,6-bisphosphate" - - compartment: x - - formula: C6H11O12P2 + - compartment: "x" + - formula: "C6H11O12P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01974x + - id: "m01974x" - name: "glutamate" - - compartment: x - - formula: C5H8NO4 + - compartment: "x" + - formula: "C5H8NO4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01975x + - id: "m01975x" - name: "glutamine" - - compartment: x - - formula: C5H10N2O3 + - compartment: "x" + - formula: "C5H10N2O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01982x + - id: "m01982x" - name: "glycerate" - - compartment: x - - formula: C3H5O4 + - compartment: "x" + - formula: "C3H5O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01983x + - id: "m01983x" - name: "glycerol" - - compartment: x - - formula: C3H8O3 + - compartment: "x" + - formula: "C3H8O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01986x + - id: "m01986x" - name: "glycine" - - compartment: x - - formula: C2H5NO2 + - compartment: "x" + - formula: "C2H5NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01987x + - id: "m01987x" - name: "glycochenodeoxycholate" - - compartment: x - - formula: C26H43NO5 + - compartment: "x" + - formula: "C26H43NO5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01988x + - id: "m01988x" - name: "glycocholate" - - compartment: x - - formula: C26H43NO6 + - compartment: "x" + - formula: "C26H43NO6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01989x + - id: "m01989x" - name: "glycodeoxycholate" - - compartment: x - - formula: C26H43NO5 + - compartment: "x" + - formula: "C26H43NO5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03161x + - id: "m03161x" - name: "glycogen" - - compartment: x - - formula: C6H10O5 + - compartment: "x" + - formula: "C6H10O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01999x + - id: "m01999x" - name: "glycolipid" - - compartment: x - - formula: C56H99N2O30RCO + - compartment: "x" + - formula: "C56H99N2O30RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02001x + - id: "m02001x" - name: "glycophosphatidylinositol-(GPI)-anchored-protein-precursor" - - compartment: x - - formula: XY + - compartment: "x" + - formula: "XY" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02016x + - id: "m02016x" - name: "GMP" - - compartment: x - - formula: C10H12N5O8P + - compartment: "x" + - formula: "C10H12N5O8P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02018x + - id: "m02018x" - name: "GP1c" - - compartment: x - - formula: C99H159N7O62RCO + - compartment: "x" + - formula: "C99H159N7O62RCO" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02019x + - id: "m02019x" - name: "GP1calpha" - - compartment: x - - formula: C99H159N7O62RCO + - compartment: "x" + - formula: "C99H159N7O62RCO" - charge: -5 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02022x + - id: "m02022x" - name: "gpi_sig" - - compartment: x - - formula: Y + - compartment: "x" + - formula: "Y" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02023x + - id: "m02023x" - name: "GQ1b" - - compartment: x - - formula: C88H143N6O54RCO + - compartment: "x" + - formula: "C88H143N6O54RCO" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02024x + - id: "m02024x" - name: "GQ1balpha" - - compartment: x - - formula: C88H143N6O54RCO + - compartment: "x" + - formula: "C88H143N6O54RCO" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02026x + - id: "m02026x" - name: "GSH" - - compartment: x - - formula: C10H16N3O6S + - compartment: "x" + - formula: "C10H16N3O6S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02027x + - id: "m02027x" - name: "GSSG" - - compartment: x - - formula: C20H30N6O12S2 + - compartment: "x" + - formula: "C20H30N6O12S2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02028x + - id: "m02028x" - name: "GT1a" - - compartment: x - - formula: C77H127N5O46RCO + - compartment: "x" + - formula: "C77H127N5O46RCO" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02034x + - id: "m02034x" - name: "GTP" - - compartment: x - - formula: C10H12N5O14P3 + - compartment: "x" + - formula: "C10H12N5O14P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02037x + - id: "m02037x" - name: "guanine" - - compartment: x - - formula: C5H5N5O + - compartment: "x" + - formula: "C5H5N5O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02038x + - id: "m02038x" - name: "guanosine" - - compartment: x - - formula: C10H13N5O5 + - compartment: "x" + - formula: "C10H13N5O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02039x + - id: "m02039x" - name: "H+" - - compartment: x - - formula: H + - compartment: "x" + - formula: "H" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02040x + - id: "m02040x" - name: "H2O" - - compartment: x - - formula: H2O + - compartment: "x" + - formula: "H2O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02041x + - id: "m02041x" - name: "H2O2" - - compartment: x - - formula: H2O2 + - compartment: "x" + - formula: "H2O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02042x + - id: "m02042x" - name: "H2S" - - compartment: x - - formula: HS + - compartment: "x" + - formula: "HS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02046x + - id: "m02046x" - name: "HCO3-" - - compartment: x - - formula: CHO3 + - compartment: "x" + - formula: "CHO3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02047x + - id: "m02047x" - name: "HDL remnant" - - compartment: x - - formula: C5849H10226N1057O2508P220S8R365 + - compartment: "x" + - formula: "C5849H10226N1057O2508P220S8R365" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02048x + - id: "m02048x" - name: "HDL" - - compartment: x - - formula: C10869H18346N1057O2848P220S8R525 + - compartment: "x" + - formula: "C10869H18346N1057O2848P220S8R525" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02049x + - id: "m02049x" - name: "heme" - - compartment: x - - formula: C34H30FeN4O4 + - compartment: "x" + - formula: "C34H30FeN4O4" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02050x + - id: "m02050x" - name: "hemoglobin" - - compartment: x - - formula: C91H118N4O6Fe + - compartment: "x" + - formula: "C91H118N4O6Fe" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02054x + - id: "m02054x" - name: "heparan sulfate proteoglycan" - - compartment: x - - formula: C79H113N5O101S12X + - compartment: "x" + - formula: "C79H113N5O101S12X" - charge: -13 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02104x + - id: "m02104x" - name: "heptaglutamyl-folate(DHF)" - - compartment: x - - formula: C49H55N13O24 + - compartment: "x" + - formula: "C49H55N13O24" - charge: -8 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02105x + - id: "m02105x" - name: "heptaglutamyl-folate(THF)" - - compartment: x - - formula: C49H57N13O24 + - compartment: "x" + - formula: "C49H57N13O24" - charge: -8 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02108x + - id: "m02108x" - name: "heptylic acid" - - compartment: x - - formula: C7H13O2 + - compartment: "x" + - formula: "C7H13O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02118x + - id: "m02118x" - name: "hexaglutamyl-folate(DHF)" - - compartment: x - - formula: C44H49N12O21 + - compartment: "x" + - formula: "C44H49N12O21" - charge: -7 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02119x + - id: "m02119x" - name: "hexaglutamyl-folate(THF)" - - compartment: x - - formula: C44H51N12O21 + - compartment: "x" + - formula: "C44H51N12O21" - charge: -7 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02120x + - id: "m02120x" - name: "hexanoic acid" - - compartment: x - - formula: C6H11O2 + - compartment: "x" + - formula: "C6H11O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02125x + - id: "m02125x" - name: "histidine" - - compartment: x - - formula: C6H9N3O2 + - compartment: "x" + - formula: "C6H9N3O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02136x + - id: "m02136x" - name: "homoserine" - - compartment: x - - formula: C4H9NO3 + - compartment: "x" + - formula: "C4H9NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02137x + - id: "m02137x" - name: "homovanillate" - - compartment: x - - formula: C9H9O4 + - compartment: "x" + - formula: "C9H9O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02139x + - id: "m02139x" - name: "hyaluronan biosynthesis, precursor 1" - - compartment: x - - formula: C14H20NO11 + - compartment: "x" + - formula: "C14H20NO11" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02141x + - id: "m02141x" - name: "hyaluronate" - - compartment: x - - formula: C28H40N2O22 + - compartment: "x" + - formula: "C28H40N2O22" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02145x + - id: "m02145x" - name: "hydrogen-cyanide" - - compartment: x - - formula: CHN + - compartment: "x" + - formula: "CHN" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02147x + - id: "m02147x" - name: "hydroxide" - - compartment: x - - formula: HO + - compartment: "x" + - formula: "HO" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02150x + - id: "m02150x" - name: "hydroxylated-ebastine" - - compartment: x - - formula: C32H39NO3 + - compartment: "x" + - formula: "C32H39NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02153x + - id: "m02153x" - name: "hydroxy-nifedipine" - - compartment: x - - formula: C17H18N2O7 + - compartment: "x" + - formula: "C17H18N2O7" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02155x + - id: "m02155x" - name: "hyodeoxycholate" - - compartment: x - - formula: C24H40O4 + - compartment: "x" + - formula: "C24H40O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02159x + - id: "m02159x" - name: "hypoxanthine" - - compartment: x - - formula: C5H4N4O + - compartment: "x" + - formula: "C5H4N4O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02161x + - id: "m02161x" - name: "IDP" - - compartment: x - - formula: C10H11N4O11P2 + - compartment: "x" + - formula: "C10H11N4O11P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02164x + - id: "m02164x" - name: "III3Fuc-nLc6Cer" - - compartment: x - - formula: C64H112N3O36RCO + - compartment: "x" + - formula: "C64H112N3O36RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02167x + - id: "m02167x" - name: "IMP" - - compartment: x - - formula: C10H11N4O8P + - compartment: "x" + - formula: "C10H11N4O8P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02170x + - id: "m02170x" - name: "inosine" - - compartment: x - - formula: C10H12N4O5 + - compartment: "x" + - formula: "C10H12N4O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02171x + - id: "m02171x" - name: "inositol" - - compartment: x - - formula: C6H12O6 + - compartment: "x" + - formula: "C6H12O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02174x + - id: "m02174x" - name: "iodide" - - compartment: x - - formula: I + - compartment: "x" + - formula: "I" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02182x + - id: "m02182x" - name: "isocaproic-aldehyde" - - compartment: x - - formula: C6H12O + - compartment: "x" + - formula: "C6H12O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02184x + - id: "m02184x" - name: "isoleucine" - - compartment: x - - formula: C6H13NO2 + - compartment: "x" + - formula: "C6H13NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02191x + - id: "m02191x" - name: "itaconate" - - compartment: x - - formula: C5H4O4 + - compartment: "x" + - formula: "C5H4O4" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02193x + - id: "m02193x" - name: "ITP" - - compartment: x - - formula: C10H11N4O14P3 + - compartment: "x" + - formula: "C10H11N4O14P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02198x + - id: "m02198x" - name: "IV3Neu5Ac,III4Fuc-Lc4Cer" - - compartment: x - - formula: C61H105N3O34RCO + - compartment: "x" + - formula: "C61H105N3O34RCO" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02199x + - id: "m02199x" - name: "IV3NeuAc,III3Fuc-nLc4Cer" - - compartment: x - - formula: C61H105N3O34RCO + - compartment: "x" + - formula: "C61H105N3O34RCO" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02200x + - id: "m02200x" - name: "K+" - - compartment: x - - formula: K + - compartment: "x" + - formula: "K" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02237x + - id: "m02237x" - name: "keratan sulfate I, degradation product 1" - - compartment: x - - formula: C241H383N17O209S12X + - compartment: "x" + - formula: "C241H383N17O209S12X" - charge: -13 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02278x + - id: "m02278x" - name: "keratan sulfate I" - - compartment: x - - formula: C247H393N17O213S12X + - compartment: "x" + - formula: "C247H393N17O213S12X" - charge: -13 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02288x + - id: "m02288x" - name: "keratan sulfate II (core 2-linked)" - - compartment: x - - formula: C81H129N6O67S3X + - compartment: "x" + - formula: "C81H129N6O67S3X" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02303x + - id: "m02303x" - name: "keratan sulfate II (core 4-linked)" - - compartment: x - - formula: C89H142N7O72S3X + - compartment: "x" + - formula: "C89H142N7O72S3X" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02325x + - id: "m02325x" - name: "L-3-amino-isobutanoate" - - compartment: x - - formula: C4H9NO2 + - compartment: "x" + - formula: "C4H9NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02331x + - id: "m02331x" - name: "lacto-N-fucopentaosyl-III-ceramide" - - compartment: x - - formula: C50H89N2O26RCO + - compartment: "x" + - formula: "C50H89N2O26RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02332x + - id: "m02332x" - name: "lactose" - - compartment: x - - formula: C12H22O11 + - compartment: "x" + - formula: "C12H22O11" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02337x + - id: "m02337x" - name: "L-arabinose" - - compartment: x - - formula: C5H10O5 + - compartment: "x" + - formula: "C5H10O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02338x + - id: "m02338x" - name: "L-arabitol" - - compartment: x - - formula: C5H12O5 + - compartment: "x" + - formula: "C5H12O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02348x + - id: "m02348x" - name: "L-carnitine" - - compartment: x - - formula: C7H15NO3 + - compartment: "x" + - formula: "C7H15NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02352x + - id: "m02352x" - name: "LDL remnant" - - compartment: x - - formula: C33247H54819N7242O13369P860S104R1315 + - compartment: "x" + - formula: "C33247H54819N7242O13369P860S104R1315" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02353x + - id: "m02353x" - name: "LDL" - - compartment: x - - formula: C94027H154274N7242O17079P860S104R2830 + - compartment: "x" + - formula: "C94027H154274N7242O17079P860S104R2830" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02354x + - id: "m02354x" - name: "L-dopa" - - compartment: x - - formula: C9H11NO4 + - compartment: "x" + - formula: "C9H11NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02357x + - id: "m02357x" - name: "lepidimoide" - - compartment: x - - formula: X + - compartment: "x" + - formula: "X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02360x + - id: "m02360x" - name: "leucine" - - compartment: x - - formula: C6H13NO2 + - compartment: "x" + - formula: "C6H13NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02362x + - id: "m02362x" - name: "leukotriene A4" - - compartment: x - - formula: C20H29O3 + - compartment: "x" + - formula: "C20H29O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02364x + - id: "m02364x" - name: "leukotriene B4" - - compartment: x - - formula: C20H31O4 + - compartment: "x" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02366x + - id: "m02366x" - name: "leukotriene C4" - - compartment: x - - formula: C30H45N3O9S + - compartment: "x" + - formula: "C30H45N3O9S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02369x + - id: "m02369x" - name: "leukotriene E4" - - compartment: x - - formula: C23H36NO5S + - compartment: "x" + - formula: "C23H36NO5S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02370x + - id: "m02370x" - name: "leukotriene F4" - - compartment: x - - formula: C28H42N2O8S + - compartment: "x" + - formula: "C28H42N2O8S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02384x + - id: "m02384x" - name: "L-iduronic acid" - - compartment: x - - formula: C6H9O7 + - compartment: "x" + - formula: "C6H9O7" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02386x + - id: "m02386x" - name: "limonene" - - compartment: x - - formula: C10H16 + - compartment: "x" + - formula: "C10H16" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02387x + - id: "m02387x" - name: "linoleate" - - compartment: x - - formula: C18H31O2 + - compartment: "x" + - formula: "C18H31O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02389x + - id: "m02389x" - name: "linolenate" - - compartment: x - - formula: C18H29O2 + - compartment: "x" + - formula: "C18H29O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02394x + - id: "m02394x" - name: "lipoic acid" - - compartment: x - - formula: C8H13O2S2 + - compartment: "x" + - formula: "C8H13O2S2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02403x + - id: "m02403x" - name: "L-lactate" - - compartment: x - - formula: C3H5O3 + - compartment: "x" + - formula: "C3H5O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02407x + - id: "m02407x" - name: "L-metanephrine" - - compartment: x - - formula: C10H16NO3 + - compartment: "x" + - formula: "C10H16NO3" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02414x + - id: "m02414x" - name: "LPL" - - compartment: x - - formula: C2380H3698N650O700S17 + - compartment: "x" + - formula: "C2380H3698N650O700S17" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02418x + - id: "m02418x" - name: "LTD4" - - compartment: x - - formula: C25H39N2O6S + - compartment: "x" + - formula: "C25H39N2O6S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02426x + - id: "m02426x" - name: "lysine" - - compartment: x - - formula: C6H15N2O2 + - compartment: "x" + - formula: "C6H15N2O2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02434x + - id: "m02434x" - name: "m3gacpail_prot heparan sulfate" - - compartment: x - - formula: C51H88NO33PR2X + - compartment: "x" + - formula: "C51H88NO33PR2X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02440x + - id: "m02440x" - name: "malonate" - - compartment: x - - formula: C3H2O4 + - compartment: "x" + - formula: "C3H2O4" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02445x + - id: "m02445x" - name: "maltodecaose" - - compartment: x - - formula: C60H102O51 + - compartment: "x" + - formula: "C60H102O51" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02450x + - id: "m02450x" - name: "maltose" - - compartment: x - - formula: C12H22O11 + - compartment: "x" + - formula: "C12H22O11" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02452x + - id: "m02452x" - name: "maltotriose" - - compartment: x - - formula: C18H32O16 + - compartment: "x" + - formula: "C18H32O16" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02453x + - id: "m02453x" - name: "mannose" - - compartment: x - - formula: C6H12O6 + - compartment: "x" + - formula: "C6H12O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02462x + - id: "m02462x" - name: "mem2emgacpail_prot heparan sulfate" - - compartment: x - - formula: C61H110N3O44P3R2X + - compartment: "x" + - formula: "C61H110N3O44P3R2X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02470x + - id: "m02470x" - name: "methanol" - - compartment: x - - formula: CH4O1 + - compartment: "x" + - formula: "CH4O1" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02471x + - id: "m02471x" - name: "methionine" - - compartment: x - - formula: C5H11NO2S + - compartment: "x" + - formula: "C5H11NO2S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02475x + - id: "m02475x" - name: "methylglyoxal" - - compartment: x - - formula: C3H4O2 + - compartment: "x" + - formula: "C3H4O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02477x + - id: "m02477x" - name: "methylimidazoleacetic acid" - - compartment: x - - formula: C6H7N2O2 + - compartment: "x" + - formula: "C6H7N2O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02510x + - id: "m02510x" - name: "n2m2nmasn" - - compartment: x - - formula: C58H96N5O40X + - compartment: "x" + - formula: "C58H96N5O40X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02516x + - id: "m02516x" - name: "n5m2masn" - - compartment: x - - formula: C74H122N7O50X + - compartment: "x" + - formula: "C74H122N7O50X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02519x + - id: "m02519x" - name: "Na+" - - compartment: x - - formula: Na + - compartment: "x" + - formula: "Na" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02524x + - id: "m02524x" - name: "N-acetyl-D-mannosamine" - - compartment: x - - formula: C8H15NO6 + - compartment: "x" + - formula: "C8H15NO6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02527x + - id: "m02527x" - name: "N-acetylglucosamine" - - compartment: x - - formula: C8H15NO6 + - compartment: "x" + - formula: "C8H15NO6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02552x + - id: "m02552x" - name: "NAD+" - - compartment: x - - formula: C21H26N7O14P2 + - compartment: "x" + - formula: "C21H26N7O14P2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02554x + - id: "m02554x" - name: "NADP+" - - compartment: x - - formula: C21H25N7O17P3 + - compartment: "x" + - formula: "C21H25N7O17P3" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02556x + - id: "m02556x" - name: "naphthalene" - - compartment: x - - formula: C10H8 + - compartment: "x" + - formula: "C10H8" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02560x + - id: "m02560x" - name: "NEFA blood pool in" - - compartment: x - - formula: CHO2R + - compartment: "x" + - formula: "CHO2R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02561x + - id: "m02561x" - name: "NEFA blood pool out" - - compartment: x - - formula: CHO2R + - compartment: "x" + - formula: "CHO2R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02578x + - id: "m02578x" - name: "NH3" - - compartment: x - - formula: H3N + - compartment: "x" + - formula: "H3N" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02583x + - id: "m02583x" - name: "nicotinamide" - - compartment: x - - formula: C6H6N2O + - compartment: "x" + - formula: "C6H6N2O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02586x + - id: "m02586x" - name: "nicotinate" - - compartment: x - - formula: C6H4NO2 + - compartment: "x" + - formula: "C6H4NO2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02587x + - id: "m02587x" - name: "nifedipine" - - compartment: x - - formula: C17H18N2O6 + - compartment: "x" + - formula: "C17H18N2O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02588x + - id: "m02588x" - name: "nitrite" - - compartment: x - - formula: NO2 + - compartment: "x" + - formula: "NO2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02609x + - id: "m02609x" - name: "NO" - - compartment: x - - formula: NO + - compartment: "x" + - formula: "NO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02614x + - id: "m02614x" - name: "nonanoic acid" - - compartment: x - - formula: C9H17O2 + - compartment: "x" + - formula: "C9H17O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02617x + - id: "m02617x" - name: "noradrenaline" - - compartment: x - - formula: C8H12NO3 + - compartment: "x" + - formula: "C8H12NO3" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02620x + - id: "m02620x" - name: "norepinephrine sulfate" - - compartment: x - - formula: C8H11NO6S + - compartment: "x" + - formula: "C8H11NO6S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02630x + - id: "m02630x" - name: "O2" - - compartment: x - - formula: O2 + - compartment: "x" + - formula: "O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02631x + - id: "m02631x" - name: "O2-" - - compartment: x - - formula: O2 + - compartment: "x" + - formula: "O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02642x + - id: "m02642x" - name: "octanoic acid" - - compartment: x - - formula: C8H15O2 + - compartment: "x" + - formula: "C8H15O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02653x + - id: "m02653x" - name: "omeprazole" - - compartment: x - - formula: C17H19N3O3S + - compartment: "x" + - formula: "C17H19N3O3S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02658x + - id: "m02658x" - name: "ornithine" - - compartment: x - - formula: C5H13N2O2 + - compartment: "x" + - formula: "C5H13N2O2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02659x + - id: "m02659x" - name: "orotate" - - compartment: x - - formula: C5H3N2O4 + - compartment: "x" + - formula: "C5H3N2O4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02661x + - id: "m02661x" - name: "oxalate" - - compartment: x - - formula: C2O4 + - compartment: "x" + - formula: "C2O4" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02672x + - id: "m02672x" - name: "PA6" - - compartment: x - - formula: C90H145N6O65X + - compartment: "x" + - formula: "C90H145N6O65X" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02673x + - id: "m02673x" - name: "paclitaxel" - - compartment: x - - formula: C47H31NO14 + - compartment: "x" + - formula: "C47H31NO14" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02680x + - id: "m02680x" - name: "pantothenate" - - compartment: x - - formula: C9H16NO5 + - compartment: "x" + - formula: "C9H16NO5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02691x + - id: "m02691x" - name: "pentaglutamyl-folate(DHF)" - - compartment: x - - formula: C39H43N11O18 + - compartment: "x" + - formula: "C39H43N11O18" - charge: -6 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02692x + - id: "m02692x" - name: "pentaglutamyl-folate(THF)" - - compartment: x - - formula: C39H45N11O18 + - compartment: "x" + - formula: "C39H45N11O18" - charge: -6 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02712x + - id: "m02712x" - name: "perillyl alcohol" - - compartment: x - - formula: C10H16O + - compartment: "x" + - formula: "C10H16O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02722x + - id: "m02722x" - name: "phenylacetylglutamine" - - compartment: x - - formula: C13H16N2O4 + - compartment: "x" + - formula: "C13H16N2O4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02723x + - id: "m02723x" - name: "phenylacetylglycine" - - compartment: x - - formula: C10H11NO3 + - compartment: "x" + - formula: "C10H11NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02724x + - id: "m02724x" - name: "phenylalanine" - - compartment: x - - formula: C9H11NO2 + - compartment: "x" + - formula: "C9H11NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02740x + - id: "m02740x" - name: "phospholipids extracellular pool" - - compartment: x - - formula: C5H5O8PR3 + - compartment: "x" + - formula: "C5H5O8PR3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02744x + - id: "m02744x" - name: "phylloquinone" - - compartment: x - - formula: C31H46O2 + - compartment: "x" + - formula: "C31H46O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02746x + - id: "m02746x" - name: "phytanic acid" - - compartment: x - - formula: C20H39O2 + - compartment: "x" + - formula: "C20H39O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02751x + - id: "m02751x" - name: "Pi" - - compartment: x - - formula: HO4P + - compartment: "x" + - formula: "HO4P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02754x + - id: "m02754x" - name: "PNP" - - compartment: x - - formula: C6H5NO3 + - compartment: "x" + - formula: "C6H5NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02769x + - id: "m02769x" - name: "progesterone" - - compartment: x - - formula: C21H30O2 + - compartment: "x" + - formula: "C21H30O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02770x + - id: "m02770x" - name: "proline" - - compartment: x - - formula: C5H9NO2 + - compartment: "x" + - formula: "C5H9NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02772x + - id: "m02772x" - name: "propanoate" - - compartment: x - - formula: C3H5O2 + - compartment: "x" + - formula: "C3H5O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02783x + - id: "m02783x" - name: "prostaglandin D2" - - compartment: x - - formula: C20H31O5 + - compartment: "x" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02785x + - id: "m02785x" - name: "prostaglandin E1" - - compartment: x - - formula: C20H33O5 + - compartment: "x" + - formula: "C20H33O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02786x + - id: "m02786x" - name: "prostaglandin E2" - - compartment: x - - formula: C20H31O5 + - compartment: "x" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02789x + - id: "m02789x" - name: "prostaglandin F2alpha" - - compartment: x - - formula: C20H33O5 + - compartment: "x" + - formula: "C20H33O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02813x + - id: "m02813x" - name: "pyridoxal" - - compartment: x - - formula: C8H9NO3 + - compartment: "x" + - formula: "C8H9NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02814x + - id: "m02814x" - name: "pyridoxal-phosphate" - - compartment: x - - formula: C8H8NO6P + - compartment: "x" + - formula: "C8H8NO6P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02815x + - id: "m02815x" - name: "pyridoxamine" - - compartment: x - - formula: C8H13N2O2 + - compartment: "x" + - formula: "C8H13N2O2" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02817x + - id: "m02817x" - name: "pyridoxine" - - compartment: x - - formula: C8H11NO3 + - compartment: "x" + - formula: "C8H11NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02819x + - id: "m02819x" - name: "pyruvate" - - compartment: x - - formula: C3H3O3 + - compartment: "x" + - formula: "C3H3O3" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02833x + - id: "m02833x" - name: "retinoate" - - compartment: x - - formula: C20H27O2 + - compartment: "x" + - formula: "C20H27O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02834x + - id: "m02834x" - name: "retinol" - - compartment: x - - formula: C20H30O + - compartment: "x" + - formula: "C20H30O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02836x + - id: "m02836x" - name: "retinoyl-glucuronide" - - compartment: x - - formula: C26H35O8 + - compartment: "x" + - formula: "C26H35O8" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02841x + - id: "m02841x" - name: "ribitol" - - compartment: x - - formula: C5H12O5 + - compartment: "x" + - formula: "C5H12O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02842x + - id: "m02842x" - name: "riboflavin" - - compartment: x - - formula: C17H20N4O6 + - compartment: "x" + - formula: "C17H20N4O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02843x + - id: "m02843x" - name: "ribose" - - compartment: x - - formula: C5H10O5 + - compartment: "x" + - formula: "C5H10O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02880x + - id: "m02880x" - name: "sarcosine" - - compartment: x - - formula: C3H7NO2 + - compartment: "x" + - formula: "C3H7NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02885x + - id: "m02885x" - name: "selenate" - - compartment: x - - formula: O4Se + - compartment: "x" + - formula: "O4Se" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02896x + - id: "m02896x" - name: "serine" - - compartment: x - - formula: C3H7NO3 + - compartment: "x" + - formula: "C3H7NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02897x + - id: "m02897x" - name: "serotonin" - - compartment: x - - formula: C10H13N2O + - compartment: "x" + - formula: "C10H13N2O" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02902x + - id: "m02902x" - name: "sialyl(1,3)-sialyl(2,6)-galactosylgloboside" - - compartment: x - - formula: C72H121N4O43RCO + - compartment: "x" + - formula: "C72H121N4O43RCO" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02903x + - id: "m02903x" - name: "sialyl(2,3)-sialyl(2,6)-galactosylgloboside" - - compartment: x - - formula: C72H121N4O43RCO + - compartment: "x" + - formula: "C72H121N4O43RCO" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02907x + - id: "m02907x" - name: "sialyl-Tn antigen" - - compartment: x - - formula: C19H30N2O13X + - compartment: "x" + - formula: "C19H30N2O13X" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02909x + - id: "m02909x" - name: "SMCFA-blood-pool" - - compartment: x - - formula: CHO2R + - compartment: "x" + - formula: "CHO2R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02924x + - id: "m02924x" - name: "spermine dialdehyde" - - compartment: x - - formula: C10H22N2O2 + - compartment: "x" + - formula: "C10H22N2O2" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02926x + - id: "m02926x" - name: "spermine" - - compartment: x - - formula: C10H30N4 + - compartment: "x" + - formula: "C10H30N4" - charge: 4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02928x + - id: "m02928x" - name: "sphinganine-1-phosphate" - - compartment: x - - formula: C18H39NO5P + - compartment: "x" + - formula: "C18H39NO5P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02930x + - id: "m02930x" - name: "sphingosine-1-phosphate" - - compartment: x - - formula: C18H37NO5P + - compartment: "x" + - formula: "C18H37NO5P" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02931x + - id: "m02931x" - name: "sphingosylphosphorylcholine" - - compartment: x - - formula: C23H50N2O5P + - compartment: "x" + - formula: "C23H50N2O5P" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02936x + - id: "m02936x" - name: "starch structure 1" - - compartment: x - - formula: C66H112O56 + - compartment: "x" + - formula: "C66H112O56" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02937x + - id: "m02937x" - name: "starch structure 2" - - compartment: x - - formula: C18H32O16 + - compartment: "x" + - formula: "C18H32O16" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02943x + - id: "m02943x" - name: "succinate" - - compartment: x - - formula: C4H4O4 + - compartment: "x" + - formula: "C4H4O4" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02945x + - id: "m02945x" - name: "sucrose" - - compartment: x - - formula: C12H22O11 + - compartment: "x" + - formula: "C12H22O11" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02946x + - id: "m02946x" - name: "sulfate" - - compartment: x - - formula: O4S + - compartment: "x" + - formula: "O4S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02949x + - id: "m02949x" - name: "sulfite" - - compartment: x - - formula: O3S + - compartment: "x" + - formula: "O3S" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02957x + - id: "m02957x" - name: "TAG-extraction" - - compartment: x - - formula: C6H5O6R3 + - compartment: "x" + - formula: "C6H5O6R3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02961x + - id: "m02961x" - name: "taurine" - - compartment: x - - formula: C2H7NO3S + - compartment: "x" + - formula: "C2H7NO3S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02962x + - id: "m02962x" - name: "taurochenodeoxycholate" - - compartment: x - - formula: C26H45NO6S + - compartment: "x" + - formula: "C26H45NO6S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02963x + - id: "m02963x" - name: "taurocholate" - - compartment: x - - formula: C26H45NO7S + - compartment: "x" + - formula: "C26H45NO7S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02967x + - id: "m02967x" - name: "testosterone glucuronide" - - compartment: x - - formula: C25H36O8 + - compartment: "x" + - formula: "C25H36O8" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02968x + - id: "m02968x" - name: "testosterone sulfate" - - compartment: x - - formula: C19H27O5S + - compartment: "x" + - formula: "C19H27O5S" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02969x + - id: "m02969x" - name: "testosterone" - - compartment: x - - formula: C19H28O2 + - compartment: "x" + - formula: "C19H28O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02980x + - id: "m02980x" - name: "THF" - - compartment: x - - formula: C19H21N7O6 + - compartment: "x" + - formula: "C19H21N7O6" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02982x + - id: "m02982x" - name: "thiamin" - - compartment: x - - formula: C12H17N4OS + - compartment: "x" + - formula: "C12H17N4OS" - charge: 1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02983x + - id: "m02983x" - name: "thiamin-P" - - compartment: x - - formula: C12H16N4O4PS + - compartment: "x" + - formula: "C12H16N4O4PS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02985x + - id: "m02985x" - name: "thiamin-PPP" - - compartment: x - - formula: C12H16N4O10P3S + - compartment: "x" + - formula: "C12H16N4O10P3S" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02986x + - id: "m02986x" - name: "thiocyanate" - - compartment: x - - formula: CNS + - compartment: "x" + - formula: "CNS" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02991x + - id: "m02991x" - name: "thiosulfate" - - compartment: x - - formula: O3S2 + - compartment: "x" + - formula: "O3S2" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02993x + - id: "m02993x" - name: "threonine" - - compartment: x - - formula: C4H9NO3 + - compartment: "x" + - formula: "C4H9NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02994x + - id: "m02994x" - name: "thromboxane A2" - - compartment: x - - formula: C20H31O5 + - compartment: "x" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02996x + - id: "m02996x" - name: "thymidine" - - compartment: x - - formula: C10H14N2O5 + - compartment: "x" + - formula: "C10H14N2O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02997x + - id: "m02997x" - name: "thymine" - - compartment: x - - formula: C5H6N2O2 + - compartment: "x" + - formula: "C5H6N2O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m02998x + - id: "m02998x" - name: "thyroxine" - - compartment: x - - formula: C15H11I4NO4 + - compartment: "x" + - formula: "C15H11I4NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03001x + - id: "m03001x" - name: "tolbutamide" - - compartment: x - - formula: C12H18N2O3S + - compartment: "x" + - formula: "C12H18N2O3S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03039x + - id: "m03039x" - name: "trehalose" - - compartment: x - - formula: C12H22O11 + - compartment: "x" + - formula: "C12H22O11" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03044x + - id: "m03044x" - name: "trichloroethene" - - compartment: x - - formula: C2HCl3 + - compartment: "x" + - formula: "C2HCl3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03052x + - id: "m03052x" - name: "triiodothyronine" - - compartment: x - - formula: C15H12I3NO4 + - compartment: "x" + - formula: "C15H12I3NO4" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03089x + - id: "m03089x" - name: "tryptophan" - - compartment: x - - formula: C11H12N2O2 + - compartment: "x" + - formula: "C11H12N2O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03096x + - id: "m03096x" - name: "type III A glycolipid" - - compartment: x - - formula: C78H135N4O45RCO + - compartment: "x" + - formula: "C78H135N4O45RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03098x + - id: "m03098x" - name: "type IIIAb" - - compartment: x - - formula: C92H158N5O55RCO + - compartment: "x" + - formula: "C92H158N5O55RCO" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03100x + - id: "m03100x" - name: "tyramine-O-sulfate" - - compartment: x - - formula: C8H11NO4S + - compartment: "x" + - formula: "C8H11NO4S" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03101x + - id: "m03101x" - name: "tyrosine" - - compartment: x - - formula: C9H11NO3 + - compartment: "x" + - formula: "C9H11NO3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03106x + - id: "m03106x" - name: "UDP" - - compartment: x - - formula: C9H11N2O12P2 + - compartment: "x" + - formula: "C9H11N2O12P2" - charge: -3 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03113x + - id: "m03113x" - name: "umbelliferone" - - compartment: x - - formula: C9H6O3 + - compartment: "x" + - formula: "C9H6O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03114x + - id: "m03114x" - name: "UMP" - - compartment: x - - formula: C9H11N2O9P + - compartment: "x" + - formula: "C9H11N2O9P" - charge: -2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03117x + - id: "m03117x" - name: "undecylic acid" - - compartment: x - - formula: C11H21O2 + - compartment: "x" + - formula: "C11H21O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03118x + - id: "m03118x" - name: "uracil" - - compartment: x - - formula: C4H4N2O2 + - compartment: "x" + - formula: "C4H4N2O2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03120x + - id: "m03120x" - name: "urate" - - compartment: x - - formula: C5H4N4O3 + - compartment: "x" + - formula: "C5H4N4O3" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03121x + - id: "m03121x" - name: "urea" - - compartment: x - - formula: CH4N2O + - compartment: "x" + - formula: "CH4N2O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03123x + - id: "m03123x" - name: "uridine" - - compartment: x - - formula: C9H12N2O6 + - compartment: "x" + - formula: "C9H12N2O6" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03130x + - id: "m03130x" - name: "UTP" - - compartment: x - - formula: C9H11N2O15P3 + - compartment: "x" + - formula: "C9H11N2O15P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03131x + - id: "m03131x" - name: "V3(NeuAc)2-Gb5Cer" - - compartment: x - - formula: C70H119N4O41R + - compartment: "x" + - formula: "C70H119N4O41R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03134x + - id: "m03134x" - name: "valeric acid" - - compartment: x - - formula: C5H9O2 + - compartment: "x" + - formula: "C5H9O2" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03135x + - id: "m03135x" - name: "valine" - - compartment: x - - formula: C5H11NO2 + - compartment: "x" + - formula: "C5H11NO2" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03138x + - id: "m03138x" - name: "VI3NeuAc-nLc6Cer" - - compartment: x - - formula: C69H118N4O40RCO + - compartment: "x" + - formula: "C69H118N4O40RCO" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03141x + - id: "m03141x" - name: "vitamin D2" - - compartment: x - - formula: C28H44O + - compartment: "x" + - formula: "C28H44O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03142x + - id: "m03142x" - name: "vitamin D3" - - compartment: x - - formula: C27H44O + - compartment: "x" + - formula: "C27H44O" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03146x + - id: "m03146x" - name: "VLDL remnant" - - compartment: x - - formula: C136286H232084N13476O38613P3271S174R7267 + - compartment: "x" + - formula: "C136286H232084N13476O38613P3271S174R7267" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03147x + - id: "m03147x" - name: "VLDL" - - compartment: x - - formula: C198596H284009N13476O100923P3271S174R38422 + - compartment: "x" + - formula: "C198596H284009N13476O100923P3271S174R38422" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03151x + - id: "m03151x" - name: "xanthurenate" - - compartment: x - - formula: C10H6NO4 + - compartment: "x" + - formula: "C10H6NO4" - charge: -1 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03154x + - id: "m03154x" - name: "XTP" - - compartment: x - - formula: C10H11N4O15P3 + - compartment: "x" + - formula: "C10H11N4O15P3" - charge: -4 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03155x + - id: "m03155x" - name: "xylitol" - - compartment: x - - formula: C5H12O5 + - compartment: "x" + - formula: "C5H12O5" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03157x + - id: "m03157x" - name: "zinc" - - compartment: x - - formula: Zn + - compartment: "x" + - formula: "Zn" - charge: 2 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01602c + - id: "m01602c" - name: "cofactors and vitamins" - - compartment: c - - formula: X + - compartment: "c" + - formula: "X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03139c + - id: "m03139c" - name: "vitamin A derivatives" - - compartment: c - - formula: X + - compartment: "c" + - formula: "X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03140c + - id: "m03140c" - name: "vitamin D derivatives" - - compartment: c - - formula: X + - compartment: "c" + - formula: "X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m03143c + - id: "m03143c" - name: "vitamin E derivatives" - - compartment: c - - formula: X + - compartment: "c" + - formula: "X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: temp001x + - id: "temp001x" - name: "biomass" - - compartment: x - - formula: X + - compartment: "x" + - formula: "X" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m10000x + - id: "m10000x" - name: "others" - - compartment: x - - formula: + - compartment: "x" + - formula: "" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m10001x + - id: "m10001x" - name: "steroids" - - compartment: x - - formula: + - compartment: "x" + - formula: "" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m10002x + - id: "m10002x" - name: "xenobiotics" - - compartment: x - - formula: + - compartment: "x" + - formula: "" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m10003x + - id: "m10003x" - name: "arachidonate derivatives" - - compartment: x - - formula: + - compartment: "x" + - formula: "" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01451x + - id: "m01451x" - name: "cholesterol-ester pool" - - compartment: x - - formula: C28H45O2R + - compartment: "x" + - formula: "C28H45O2R" - charge: 0 - - inchis: - - metFrom: HMRdatabase + - inchis: "" + - metFrom: "HMRdatabase" - !!omap - - id: m01004m + - id: "m01004m" - name: "4-hydroxyphenyllactate" - - compartment: m - - formula: C9H9O4 + - compartment: "m" + - formula: "C9H9O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hibutcoa_m + - id: "3hibutcoa_m" - name: "(S)-3-Hydroxyisobutyryl Coenzyme A" - - compartment: m - - formula: C25H38N7O18P3S + - compartment: "m" + - formula: "C25H38N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00799c + - id: "m00799c" - name: "3-hydroxypropionyl-CoA" - - compartment: c - - formula: C24H36N7O18P3S + - compartment: "c" + - formula: "C24H36N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02142c + - id: "m02142c" - name: "hydracrylate" - - compartment: c - - formula: C3H5O3 + - compartment: "c" + - formula: "C3H5O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00900c + - id: "m00900c" - name: "3-oxopropanoate" - - compartment: c - - formula: C3H3O3 + - compartment: "c" + - formula: "C3H3O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3amp_l + - id: "3amp_l" - name: "3-Adenosine Monophosphate" - - compartment: l - - formula: C10H12N5O7P + - compartment: "l" + - formula: "C10H12N5O7P" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00982m + - id: "m00982m" - name: "4-coumaroyl-CoA" - - compartment: m - - formula: C30H38N7O18P3S1 + - compartment: "m" + - formula: "C30H38N7O18P3S1" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00996m + - id: "m00996m" - name: "4-hydroxybenzoyl-CoA" - - compartment: m - - formula: C28H36N7O18P3S + - compartment: "m" + - formula: "C28H36N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02182r + - id: "m02182r" - name: "isocaproic-aldehyde" - - compartment: r - - formula: C6H12O + - compartment: "r" + - formula: "C6H12O" - charge: 0 - - inchis: 1S/C6H12O/c1-6(2)4-3-5-7/h5-6H,3-4H2,1-2H3 - - metFrom: Recon3D + - inchis: "1S/C6H12O/c1-6(2)4-3-5-7/h5-6H,3-4H2,1-2H3" + - metFrom: "Recon3D" - !!omap - - id: m01102m + - id: "m01102m" - name: "5-hydroxyindoleacetaldehyde" - - compartment: m - - formula: C10H9NO2 + - compartment: "m" + - formula: "C10H9NO2" - charge: 0 - - inchis: 1S/C10H9NO2/c12-4-3-7-6-11-10-2-1-8(13)5-9(7)10/h1-2,4-6,11,13H,3H2 - - metFrom: Recon3D + - inchis: "1S/C10H9NO2/c12-4-3-7-6-11-10-2-1-8(13)5-9(7)10/h1-2,4-6,11,13H,3H2" + - metFrom: "Recon3D" - !!omap - - id: m01103m + - id: "m01103m" - name: "5-hydroxyindoleacetate" - - compartment: m - - formula: C10H8NO3 + - compartment: "m" + - formula: "C10H8NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02805r + - id: "m02805r" - name: "provitamin D3" - - compartment: r - - formula: C27H44O + - compartment: "r" + - formula: "C27H44O" - charge: 0 - - inchis: 1S/C27H44O/c1-18(2)7-6-8-19(3)23-11-12-24-22-10-9-20-17-21(28)13-15-26(20,4)25(22)14-16-27(23,24)5/h9-10,18-19,21,23-25,28H,6-8,11-17H2,1-5H3/t19-,21+,23-,24+,25+,26+,27-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C27H44O/c1-18(2)7-6-8-19(3)23-11-12-24-22-10-9-20-17-21(28)13-15-26(20,4)25(22)14-16-27(23,24)5/h9-10,18-19,21,23-25,28H,6-8,11-17H2,1-5H3/t19-,21+,23-,24+,25+,26+,27-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m00141c + - id: "m00141c" - name: "(alpha-D-mannosyl)2-beta-D-mannosyl-N-acetylglucosamine" - - compartment: c - - formula: C26H45NO21 + - compartment: "c" + - formula: "C26H45NO21" - charge: 0 - - inchis: 1S/C26H45NO21/c1-6(32)27-11-15(36)20(10(5-31)42-23(11)41)46-25-18(39)22(14(35)8(3-29)44-25)48-26-19(40)21(13(34)9(4-30)45-26)47-24-17(38)16(37)12(33)7(2-28)43-24/h7-26,28-31,33-41H,2-5H2,1H3,(H,27,32)/t7-,8-,9-,10+,11+,12-,13-,14-,15+,16+,17+,18+,19+,20+,21+,22+,23+,24-,25+,26+/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C26H45NO21/c1-6(32)27-11-15(36)20(10(5-31)42-23(11)41)46-25-18(39)22(14(35)8(3-29)44-25)48-26-19(40)21(13(34)9(4-30)45-26)47-24-17(38)16(37)12(33)7(2-28)43-24/h7-26,28-31,33-41H,2-5H2,1H3,(H,27,32)/t7-,8-,9-,10+,11+,12-,13-,14-,15+,16+,17+,18+,19+,20+,21+,22+,23+,24-,25+,26+/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m01382c + - id: "m01382c" - name: "beta-1,4-mannose-N-acetylglucosamine" - - compartment: c - - formula: C14H25NO11 + - compartment: "c" + - formula: "C14H25NO11" - charge: 0 - - inchis: 1S/C14H25NO11/c1-4(18)15-7-9(20)12(6(3-17)24-13(7)23)26-14-11(22)10(21)8(19)5(2-16)25-14/h5-14,16-17,19-23H,2-3H2,1H3,(H,15,18)/t5-,6-,7-,8-,9-,10+,11+,12-,13-,14-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C14H25NO11/c1-4(18)15-7-9(20)12(6(3-17)24-13(7)23)26-14-11(22)10(21)8(19)5(2-16)25-14/h5-14,16-17,19-23H,2-3H2,1H3,(H,15,18)/t5-,6-,7-,8-,9-,10+,11+,12-,13-,14-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: galgluside_hs_c + - id: "galgluside_hs_c" - name: "Galactosyl Glucosyl Ceramide" - - compartment: c - - formula: C30H56NO12RCO + - compartment: "c" + - formula: "C30H56NO12RCO" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: galgluside_hs_g + - id: "galgluside_hs_g" - name: "Galactosyl Glucosyl Ceramide" - - compartment: g - - formula: C30H56NO12RCO + - compartment: "g" + - formula: "C30H56NO12RCO" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01253p + - id: "m01253p" - name: "acetoacetate" - - compartment: p - - formula: C4H5O3 + - compartment: "p" + - formula: "C4H5O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01288m + - id: "m01288m" - name: "ADP-ribose" - - compartment: m - - formula: C15H21N5O14P2 + - compartment: "m" + - formula: "C15H21N5O14P2" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02845m + - id: "m02845m" - name: "ribose-5-phosphate" - - compartment: m - - formula: C5H9O8P + - compartment: "m" + - formula: "C5H9O8P" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00119p + - id: "m00119p" - name: "(7Z,10Z,13Z,16Z)-docosatetraenoyl-CoA" - - compartment: p - - formula: C43H66N7O17P3S + - compartment: "p" + - formula: "C43H66N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: Rtotal2_c + - id: "Rtotal2_c" - name: "R Total 2 Position" - - compartment: c - - formula: CO2R2 + - compartment: "c" + - formula: "CO2R2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: Rtotal2coa_c + - id: "Rtotal2coa_c" - name: "R Total 2 Coenzyme A" - - compartment: c - - formula: CO2R2C21H31N7O15P3S + - compartment: "c" + - formula: "CO2R2C21H31N7O15P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: alpa_hs_c + - id: "alpa_hs_c" - name: "Lysophosphatidic Acid" - - compartment: c - - formula: C3H6O5PRCO2 + - compartment: "c" + - formula: "C3H6O5PRCO2" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: alkylR1oh_p + - id: "alkylR1oh_p" - name: "Hydroxy Alkyl Chain" - - compartment: p - - formula: HOR + - compartment: "p" + - formula: "HOR" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: Rtotal_p + - id: "Rtotal_p" - name: "R Total" - - compartment: p - - formula: CO2R + - compartment: "p" + - formula: "CO2R" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00564c + - id: "m00564c" - name: "2(S)-pristanal" - - compartment: c - - formula: C19H38O + - compartment: "c" + - formula: "C19H38O" - charge: 0 - - inchis: 1/C19H38O/c1-16(2)9-6-10-17(3)11-7-12-18(4)13-8-14-19(5)15-20/h15-19H,6-14H2,1-5H3 - - metFrom: Recon3D + - inchis: "1/C19H38O/c1-16(2)9-6-10-17(3)11-7-12-18(4)13-8-14-19(5)15-20/h15-19H,6-14H2,1-5H3" + - metFrom: "Recon3D" - !!omap - - id: m02766c + - id: "m02766c" - name: "pristanic acid" - - compartment: c - - formula: C19H37O2 + - compartment: "c" + - formula: "C19H37O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01984c + - id: "m01984c" - name: "glycerone" - - compartment: c - - formula: C3H6O3 + - compartment: "c" + - formula: "C3H6O3" - charge: 0 - - inchis: 1S/C3H6O3/c4-1-3(6)2-5/h4-5H,1-2H2 - - metFrom: Recon3D + - inchis: "1S/C3H6O3/c4-1-3(6)2-5/h4-5H,1-2H2" + - metFrom: "Recon3D" - !!omap - - id: m00755r + - id: "m00755r" - name: "3alpha,7alpha-dihydroxy-5beta-cholest-24-enoyl-CoA" - - compartment: r - - formula: C48H74N7O19P3S + - compartment: "r" + - formula: "C48H74N7O19P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00618r + - id: "m00618r" - name: "25(S)THCA-CoA" - - compartment: r - - formula: C48H76N7O20P3S + - compartment: "r" + - formula: "C48H76N7O20P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01992s + - id: "m01992s" - name: "glycogenin G4G7" - - compartment: s - - formula: C1845H2835N455O583S14 + - compartment: "s" + - formula: "C1845H2835N455O583S14" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glygn4_s + - id: "glygn4_s" - name: "Glycogen, Structure 4 (Glycogenin-1,6-{2[1,4-Glc], [1,4-Glc]})" - - compartment: s - - formula: C1797H2755N455O543S14 + - compartment: "s" + - formula: "C1797H2755N455O543S14" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00185m + - id: "m00185m" - name: "[apocarboxlase]" - - compartment: m - - formula: XH + - compartment: "m" + - formula: "XH" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01356m + - id: "m01356m" - name: "apoC-lys" - - compartment: m - - formula: C6H13N2OX + - compartment: "m" + - formula: "C6H13N2OX" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01357m + - id: "m01357m" - name: "apoC-lys_btn" - - compartment: m - - formula: C16H27N4O3SX + - compartment: "m" + - formula: "C16H27N4O3SX" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01400m + - id: "m01400m" - name: "biocytin" - - compartment: m - - formula: C16H28N4O4S + - compartment: "m" + - formula: "C16H28N4O4S" - charge: 0 - - inchis: 1S/C16H28N4O4S/c17-10(15(22)23)5-3-4-8-18-13(21)7-2-1-6-12-14-11(9-25-12)19-16(24)20-14/h10-12,14H,1-9,17H2,(H,18,21)(H,22,23)(H2,19,20,24)/t10-,11-,12-,14-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C16H28N4O4S/c17-10(15(22)23)5-3-4-8-18-13(21)7-2-1-6-12-14-11(9-25-12)19-16(24)20-14/h10-12,14H,1-9,17H2,(H,18,21)(H,22,23)(H2,19,20,24)/t10-,11-,12-,14-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: Rtotal_c + - id: "Rtotal_c" - name: "R Total" - - compartment: c - - formula: CO2R + - compartment: "c" + - formula: "CO2R" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: Rtotalcoa_c + - id: "Rtotalcoa_c" - name: "R Total Coenzyme A" - - compartment: c - - formula: CO2RC21H31N7O15P3S + - compartment: "c" + - formula: "CO2RC21H31N7O15P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: Rtotal3coa_c + - id: "Rtotal3coa_c" - name: "R Total 3 Coenzyme A" - - compartment: c - - formula: CO2R3C21H31N7O15P3S + - compartment: "c" + - formula: "CO2R3C21H31N7O15P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: Rtotal3_c + - id: "Rtotal3_c" - name: "R Total 3 Position" - - compartment: c - - formula: CO2R3 + - compartment: "c" + - formula: "CO2R3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: R1coa_hs_c + - id: "R1coa_hs_c" - name: "R Group 1 Coenzyme A" - - compartment: c - - formula: XCO2C21H31N7O15P3S + - compartment: "c" + - formula: "XCO2C21H31N7O15P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: R2coa_hs_c + - id: "R2coa_hs_c" - name: "R Group 2 Coenzyme A" - - compartment: c - - formula: XCO2C21H31N7O15P3S + - compartment: "c" + - formula: "XCO2C21H31N7O15P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: R3coa_hs_c + - id: "R3coa_hs_c" - name: "R Group 3 Coenzyme A" - - compartment: c - - formula: XCO2C21H31N7O15P3S + - compartment: "c" + - formula: "XCO2C21H31N7O15P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: octd11ecoa_c + - id: "octd11ecoa_c" - name: "11-Octadecenoyl Coenzyme A" - - compartment: c - - formula: C39H64N7O17P3S + - compartment: "c" + - formula: "C39H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: R4coa_hs_c + - id: "R4coa_hs_c" - name: "R Group 4 Coenzyme A" - - compartment: c - - formula: XCO2C21H31N7O15P3S + - compartment: "c" + - formula: "XCO2C21H31N7O15P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: R5coa_hs_c + - id: "R5coa_hs_c" - name: "R Group 5 Coenzyme A" - - compartment: c - - formula: XCO2C21H31N7O15P3S + - compartment: "c" + - formula: "XCO2C21H31N7O15P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00051c + - id: "m00051c" - name: "(2E)-hexadecenoyl-CoA" - - compartment: c - - formula: C37H60N7O17P3S + - compartment: "c" + - formula: "C37H60N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: R6coa_hs_c + - id: "R6coa_hs_c" - name: "R Group 6 Coenzyme A" - - compartment: c - - formula: XCO2C21H31N7O15P3S + - compartment: "c" + - formula: "XCO2C21H31N7O15P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: Rtotalcoa_m + - id: "Rtotalcoa_m" - name: "R Total Coenzyme A" - - compartment: m - - formula: CO2RC21H31N7O15P3S + - compartment: "m" + - formula: "CO2RC21H31N7O15P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: Rtotal2coa_m + - id: "Rtotal2coa_m" - name: "R Total 2 Coenzyme A" - - compartment: m - - formula: CO2R2C21H31N7O15P3S + - compartment: "m" + - formula: "CO2R2C21H31N7O15P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: Rtotal3coa_m + - id: "Rtotal3coa_m" - name: "R Total 3 Coenzyme A" - - compartment: m - - formula: CO2R3C21H31N7O15P3S + - compartment: "m" + - formula: "CO2R3C21H31N7O15P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: Rtotal_l + - id: "Rtotal_l" - name: "R Total" - - compartment: l - - formula: CO2R + - compartment: "l" + - formula: "CO2R" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gm1_hs_g + - id: "gm1_hs_g" - name: "Ganglioside Gm1" - - compartment: g - - formula: C55H95N3O30RCO + - compartment: "g" + - formula: "C55H95N3O30RCO" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: galacglcgalacglcgal14acglcgalgluside_hs_g + - id: "galacglcgalacglcgal14acglcgalgluside_hs_g" - name: "I-Antigen" - - compartment: g - - formula: C72H125N4O42RCO + - compartment: "g" + - formula: "C72H125N4O42RCO" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01988p + - id: "m01988p" - name: "glycocholate" - - compartment: p - - formula: C26H43NO6 + - compartment: "p" + - formula: "C26H43NO6" - charge: 0 - - inchis: 1S/C26H43NO6/c1-14(4-7-22(31)27-13-23(32)33)17-5-6-18-24-19(12-21(30)26(17,18)3)25(2)9-8-16(28)10-15(25)11-20(24)29/h14-21,24,28-30H,4-13H2,1-3H3,(H,27,31)(H,32,33)/t14-,15+,16-,17-,18+,19+,20-,21+,24+,25+,26-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C26H43NO6/c1-14(4-7-22(31)27-13-23(32)33)17-5-6-18-24-19(12-21(30)26(17,18)3)25(2)9-8-16(28)10-15(25)11-20(24)29/h14-21,24,28-30H,4-13H2,1-3H3,(H,27,31)(H,32,33)/t14-,15+,16-,17-,18+,19+,20-,21+,24+,25+,26-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: dgcholcoa_p + - id: "dgcholcoa_p" - name: "Chenodeoxyglycocholoyl Coenzyme A" - - compartment: p - - formula: C45H70N7O19P3S + - compartment: "p" + - formula: "C45H70N7O19P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01987p + - id: "m01987p" - name: "glycochenodeoxycholate" - - compartment: p - - formula: C26H43NO5 + - compartment: "p" + - formula: "C26H43NO5" - charge: 0 - - inchis: 1S/C26H43NO5/c1-15(4-7-22(30)27-14-23(31)32)18-5-6-19-24-20(9-11-26(18,19)3)25(2)10-8-17(28)12-16(25)13-21(24)29/h15-21,24,28-29H,4-14H2,1-3H3,(H,27,30)(H,31,32)/t15-,16+,17-,18-,19+,20+,21-,24+,25+,26-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C26H43NO5/c1-15(4-7-22(30)27-14-23(31)32)18-5-6-19-24-20(9-11-26(18,19)3)25(2)10-8-17(28)12-16(25)13-21(24)29/h15-21,24,28-29H,4-14H2,1-3H3,(H,27,30)(H,31,32)/t15-,16+,17-,18-,19+,20+,21-,24+,25+,26-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m01401m + - id: "m01401m" - name: "biotin" - - compartment: m - - formula: C10H15N2O3S + - compartment: "m" + - formula: "C10H15N2O3S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01402m + - id: "m01402m" - name: "biotinyl-5-AMP" - - compartment: m - - formula: C20H27N7O9PS + - compartment: "m" + - formula: "C20H27N7O9PS" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00760m + - id: "m00760m" - name: "3-amino-propanal" - - compartment: m - - formula: C3H8NO + - compartment: "m" + - formula: "C3H8NO" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01410m + - id: "m01410m" - name: "butyrate" - - compartment: m - - formula: C4H7O2 + - compartment: "m" + - formula: "C4H7O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: bvite_s + - id: "bvite_s" - name: "Beta-Tocopherol" - - compartment: s - - formula: C28H48O2 + - compartment: "s" + - formula: "C28H48O2" - charge: 0 - - inchis: 1S/C28H48O2/c1-20(2)11-8-12-21(3)13-9-14-22(4)15-10-17-28(7)18-16-25-24(6)26(29)19-23(5)27(25)30-28/h19-22,29H,8-18H2,1-7H3/t21-,22-,28-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C28H48O2/c1-20(2)11-8-12-21(3)13-9-14-22(4)15-10-17-28(7)18-16-25-24(6)26(29)19-23(5)27(25)30-28/h19-22,29H,8-18H2,1-7H3/t21-,22-,28-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: bvite_c + - id: "bvite_c" - name: "Beta-Tocopherol" - - compartment: c - - formula: C28H48O2 + - compartment: "c" + - formula: "C28H48O2" - charge: 0 - - inchis: 1S/C28H48O2/c1-20(2)11-8-12-21(3)13-9-14-22(4)15-10-17-28(7)18-16-25-24(6)26(29)19-23(5)27(25)30-28/h19-22,29H,8-18H2,1-7H3/t21-,22-,28-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C28H48O2/c1-20(2)11-8-12-21(3)13-9-14-22(4)15-10-17-28(7)18-16-25-24(6)26(29)19-23(5)27(25)30-28/h19-22,29H,8-18H2,1-7H3/t21-,22-,28-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m01380s + - id: "m01380s" - name: "benzoate" - - compartment: s - - formula: C7H5O2 + - compartment: "s" + - formula: "C7H5O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00941r + - id: "m00941r" - name: "4,4-dimethyl-5alpha-cholesta-8,14,24-trien-3beta-ol" - - compartment: r - - formula: C29H46O + - compartment: "r" + - formula: "C29H46O" - charge: 0 - - inchis: 1S/C29H46O/c1-19(2)9-8-10-20(3)22-12-13-23-21-11-14-25-27(4,5)26(30)16-18-29(25,7)24(21)15-17-28(22,23)6/h9,13,20,22,25-26,30H,8,10-12,14-18H2,1-7H3/t20-,22-,25+,26+,28-,29-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C29H46O/c1-19(2)9-8-10-20(3)22-12-13-23-21-11-14-25-27(4,5)26(30)16-18-29(25,7)24(21)15-17-28(22,23)6/h9,13,20,22,25-26,30H,8,10-12,14-18H2,1-7H3/t20-,22-,25+,26+,28-,29-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m00367r + - id: "m00367r" - name: "14-demethyllanosterol" - - compartment: r - - formula: C29H48O + - compartment: "r" + - formula: "C29H48O" - charge: 0 - - inchis: 1S/C29H48O/c1-19(2)9-8-10-20(3)22-12-13-23-21-11-14-25-27(4,5)26(30)16-18-29(25,7)24(21)15-17-28(22,23)6/h9,20,22-23,25-26,30H,8,10-18H2,1-7H3/t20-,22-,23+,25+,26+,28-,29-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C29H48O/c1-19(2)9-8-10-20(3)22-12-13-23-21-11-14-25-27(4,5)26(30)16-18-29(25,7)24(21)15-17-28(22,23)6/h9,20,22-23,25-26,30H,8,10-18H2,1-7H3/t20-,22-,23+,25+,26+,28-,29-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m00953r + - id: "m00953r" - name: "4alpha-carboxy-4beta-methyl-5alpha-cholesta-8,24-dien-3beta-ol" - - compartment: r - - formula: C29H46O3 + - compartment: "r" + - formula: "C29H46O3" - charge: 0 - - inchis: 1S/C29H46O3/c1-18(2)8-7-9-19(3)21-11-12-22-20-10-13-24-28(5,23(20)14-16-27(21,22)4)17-15-25(30)29(24,6)26(31)32/h8,19,21-22,24-25,30H,7,9-17H2,1-6H3,(H,31,32)/t19-,21?,22?,24-,25+,27-,28-,29+/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C29H46O3/c1-18(2)8-7-9-19(3)21-11-12-22-20-10-13-24-28(5,23(20)14-16-27(21,22)4)17-15-25(30)29(24,6)26(31)32/h8,19,21-22,24-25,30H,7,9-17H2,1-6H3,(H,31,32)/t19-,21?,22?,24-,25+,27-,28-,29+/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m00809r + - id: "m00809r" - name: "3-keto-4-methylzymosterol" - - compartment: r - - formula: C28H44O + - compartment: "r" + - formula: "C28H44O" - charge: 0 - - inchis: 1S/C28H44O/c1-18(2)8-7-9-19(3)22-12-13-24-21-10-11-23-20(4)26(29)15-17-28(23,6)25(21)14-16-27(22,24)5/h8,19-20,22-24H,7,9-17H2,1-6H3/t19-,20?,22?,23+,24?,27-,28+/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C28H44O/c1-18(2)8-7-9-19(3)22-12-13-24-21-10-11-23-20(4)26(29)15-17-28(23,6)25(21)14-16-27(22,24)5/h8,19-20,22-24H,7,9-17H2,1-6H3/t19-,20?,22?,23+,24?,27-,28+/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: zym_int2_r + - id: "zym_int2_r" - name: "Zymosterol Intermediate 2" - - compartment: r - - formula: C27H42O + - compartment: "r" + - formula: "C27H42O" - charge: 0 - - inchis: 1/C27H42O/c1-18(2)7-6-8-19(3)23-11-12-24-22-10-9-20-17-21(28)13-15-26(20,4)25(22)14-16-27(23,24)5/h7,19-20,23-24H,6,8-17H2,1-5H3/t19-,20+,23-,24+,26+,27-/s2 - - metFrom: Recon3D + - inchis: "1/C27H42O/c1-18(2)7-6-8-19(3)23-11-12-24-22-10-9-20-17-21(28)13-15-26(20,4)25(22)14-16-27(23,24)5/h7,19-20,23-24H,6,8-17H2,1-5H3/t19-,20+,23-,24+,26+,27-/s2" + - metFrom: "Recon3D" - !!omap - - id: m03158r + - id: "m03158r" - name: "zymosterol" - - compartment: r - - formula: C27H44O + - compartment: "r" + - formula: "C27H44O" - charge: 0 - - inchis: 1S/C27H44O/c1-18(2)7-6-8-19(3)23-11-12-24-22-10-9-20-17-21(28)13-15-26(20,4)25(22)14-16-27(23,24)5/h7,19-21,23-24,28H,6,8-17H2,1-5H3/t19-,20+,21+,23-,24+,26+,27-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C27H44O/c1-18(2)7-6-8-19(3)23-11-12-24-22-10-9-20-17-21(28)13-15-26(20,4)25(22)14-16-27(23,24)5/h7,19-21,23-24,28H,6,8-17H2,1-5H3/t19-,20+,21+,23-,24+,26+,27-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m02579r + - id: "m02579r" - name: "NH4+" - - compartment: r - - formula: H4N + - compartment: "r" + - formula: "H4N" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01427m + - id: "m01427m" - name: "CDP-diacylglycerol-LD-PI pool" - - compartment: m - - formula: C14H17N3O15P2R2 + - compartment: "m" + - formula: "C14H17N3O15P2R2" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02733m + - id: "m02733m" - name: "phosphatidate-LD-TAG pool" - - compartment: m - - formula: C5H5O8PR2 + - compartment: "m" + - formula: "C5H5O8PR2" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00121p + - id: "m00121p" - name: "(7Z,10Z,13Z,16Z,19Z)-docosapentaenoyl-CoA" - - compartment: p - - formula: C43H64N7O17P3S + - compartment: "p" + - formula: "C43H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02715c + - id: "m02715c" - name: "PG-CL pool" - - compartment: c - - formula: C8H12O10PR2 + - compartment: "c" + - formula: "C8H12O10PR2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01596n + - id: "m01596n" - name: "CO2" - - compartment: n - - formula: CO2 + - compartment: "n" + - formula: "CO2" - charge: 0 - - inchis: 1S/CO2/c2-1-3 - - metFrom: Recon3D + - inchis: "1S/CO2/c2-1-3" + - metFrom: "Recon3D" - !!omap - - id: 2dpmhobq_m + - id: "2dpmhobq_m" - name: "2-Decaprenyl-5-Hydroxy-6-Methoxy-3-Methyl-1,4-Benzoquinone" - - compartment: m - - formula: C58H88O4 + - compartment: "m" + - formula: "C58H88O4" - charge: 0 - - inchis: 1S/C58H88O4/c1-43(2)23-14-24-44(3)25-15-26-45(4)27-16-28-46(5)29-17-30-47(6)31-18-32-48(7)33-19-34-49(8)35-20-36-50(9)37-21-38-51(10)39-22-40-52(11)41-42-54-53(12)55(59)57(61)58(62-13)56(54)60/h23,25,27,29,31,33,35,37,39,41,61H,14-22,24,26,28,30,32,34,36,38,40,42H2,1-13H3/b44-25+,45-27+,46-29+,47-31+,48-33+,49-35+,50-37+,51-39+,52-41+ - - metFrom: Recon3D + - inchis: "1S/C58H88O4/c1-43(2)23-14-24-44(3)25-15-26-45(4)27-16-28-46(5)29-17-30-47(6)31-18-32-48(7)33-19-34-49(8)35-20-36-50(9)37-21-38-51(10)39-22-40-52(11)41-42-54-53(12)55(59)57(61)58(62-13)56(54)60/h23,25,27,29,31,33,35,37,39,41,61H,14-22,24,26,28,30,32,34,36,38,40,42H2,1-13H3/b44-25+,45-27+,46-29+,47-31+,48-33+,49-35+,50-37+,51-39+,52-41+" + - metFrom: "Recon3D" - !!omap - - id: 2dp6mobq_m + - id: "2dp6mobq_m" - name: "2-Decaprenyl-6-Methoxy-1,4-Benzoquinone" - - compartment: m - - formula: C57H86O3 + - compartment: "m" + - formula: "C57H86O3" - charge: 0 - - inchis: 1S/C57H86O3/c1-44(2)22-13-23-45(3)24-14-25-46(4)26-15-27-47(5)28-16-29-48(6)30-17-31-49(7)32-18-33-50(8)34-19-35-51(9)36-20-37-52(10)38-21-39-53(11)40-41-54-42-55(58)43-56(60-12)57(54)59/h22,24,26,28,30,32,34,36,38,40,42-43H,13-21,23,25,27,29,31,33,35,37,39,41H2,1-12H3/b45-24+,46-26+,47-28+,48-30+,49-32+,50-34+,51-36+,52-38+,53-40+ - - metFrom: Recon3D + - inchis: "1S/C57H86O3/c1-44(2)22-13-23-45(3)24-14-25-46(4)26-15-27-47(5)28-16-29-48(6)30-17-31-49(7)32-18-33-50(8)34-19-35-51(9)36-20-37-52(10)38-21-39-53(11)40-41-54-42-55(58)43-56(60-12)57(54)59/h22,24,26,28,30,32,34,36,38,40,42-43H,13-21,23,25,27,29,31,33,35,37,39,41H2,1-12H3/b45-24+,46-26+,47-28+,48-30+,49-32+,50-34+,51-36+,52-38+,53-40+" + - metFrom: "Recon3D" - !!omap - - id: 2dp6mobq_me_m + - id: "2dp6mobq_me_m" - name: "2-Decaprenyl-6-Methoxy-3-Methyl-1,4-Benzoquinone" - - compartment: m - - formula: C58H88O3 + - compartment: "m" + - formula: "C58H88O3" - charge: 0 - - inchis: 1S/C58H88O3/c1-44(2)23-14-24-45(3)25-15-26-46(4)27-16-28-47(5)29-17-30-48(6)31-18-32-49(7)33-19-34-50(8)35-20-36-51(9)37-21-38-52(10)39-22-40-53(11)41-42-55-54(12)56(59)43-57(61-13)58(55)60/h23,25,27,29,31,33,35,37,39,41,43H,14-22,24,26,28,30,32,34,36,38,40,42H2,1-13H3/b45-25+,46-27+,47-29+,48-31+,49-33+,50-35+,51-37+,52-39+,53-41+ - - metFrom: Recon3D + - inchis: "1S/C58H88O3/c1-44(2)23-14-24-45(3)25-15-26-46(4)27-16-28-47(5)29-17-30-48(6)31-18-32-49(7)33-19-34-50(8)35-20-36-51(9)37-21-38-52(10)39-22-40-53(11)41-42-55-54(12)56(59)43-57(61-13)58(55)60/h23,25,27,29,31,33,35,37,39,41,43H,14-22,24,26,28,30,32,34,36,38,40,42H2,1-13H3/b45-25+,46-27+,47-29+,48-31+,49-33+,50-35+,51-37+,52-39+,53-41+" + - metFrom: "Recon3D" - !!omap - - id: m00981m + - id: "m00981m" - name: "4-coumarate" - - compartment: m - - formula: C9H7O3 + - compartment: "m" + - formula: "C9H7O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01431s + - id: "m01431s" - name: "ceramide-1P pool" - - compartment: s - - formula: C18H35NO5PRCO + - compartment: "s" + - formula: "C18H35NO5PRCO" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00950p + - id: "m00950p" - name: "4,8-dimethylnonanoylcarnitine" - - compartment: p - - formula: C18H35NO4 + - compartment: "p" + - formula: "C18H35NO4" - charge: 0 - - inchis: 1S/C18H35NO4/c1-14(2)8-7-9-15(3)10-11-18(22)23-16(12-17(20)21)13-19(4,5)6/h14-16H,7-13H2,1-6H3/t15?,16-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C18H35NO4/c1-14(2)8-7-9-15(3)10-11-18(22)23-16(12-17(20)21)13-19(4,5)6/h14-16H,7-13H2,1-6H3/t15?,16-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: dmnoncoa_p + - id: "dmnoncoa_p" - name: "4,8-Dimethylnonanoyl Coenzyme A" - - compartment: p - - formula: C32H52N7O17P3S + - compartment: "p" + - formula: "C32H52N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02579n + - id: "m02579n" - name: "NH4+" - - compartment: n - - formula: H4N + - compartment: "n" + - formula: "H4N" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00240r + - id: "m00240r" - name: "1,2-diacylglycerol-LD-TAG pool" - - compartment: r - - formula: C5H6O5R2 + - compartment: "r" + - formula: "C5H6O5R2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02733n + - id: "m02733n" - name: "phosphatidate-LD-TAG pool" - - compartment: n - - formula: C5H5O8PR2 + - compartment: "n" + - formula: "C5H5O8PR2" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00240s + - id: "m00240s" - name: "1,2-diacylglycerol-LD-TAG pool" - - compartment: s - - formula: C5H6O5R2 + - compartment: "s" + - formula: "C5H6O5R2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02579p + - id: "m02579p" - name: "NH4+" - - compartment: p - - formula: H4N + - compartment: "p" + - formula: "H4N" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02959c + - id: "m02959c" - name: "TAG-VLDL pool" - - compartment: c - - formula: C6H5O6R3 + - compartment: "c" + - formula: "C6H5O6R3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: Rtotalcoa_p + - id: "Rtotalcoa_p" - name: "R Total Coenzyme A" - - compartment: p - - formula: CO2RC21H31N7O15P3S + - compartment: "p" + - formula: "CO2RC21H31N7O15P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01449r + - id: "m01449r" - name: "cholestenol" - - compartment: r - - formula: C27H46O + - compartment: "r" + - formula: "C27H46O" - charge: 0 - - inchis: 1S/C27H46O/c1-18(2)7-6-8-19(3)23-11-12-24-22-10-9-20-17-21(28)13-15-26(20,4)25(22)14-16-27(23,24)5/h18-21,23-24,28H,6-17H2,1-5H3/t19-,20+,21+,23-,24+,26+,27-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C27H46O/c1-18(2)7-6-8-19(3)23-11-12-24-22-10-9-20-17-21(28)13-15-26(20,4)25(22)14-16-27(23,24)5/h18-21,23-24,28H,6-17H2,1-5H3/t19-,20+,21+,23-,24+,26+,27-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m01066r + - id: "m01066r" - name: "5alpha-cholesta-7,24-dien-3beta-ol" - - compartment: r - - formula: C27H44O + - compartment: "r" + - formula: "C27H44O" - charge: 0 - - inchis: 1S/C27H44O/c1-18(2)7-6-8-19(3)23-11-12-24-22-10-9-20-17-21(28)13-15-26(20,4)25(22)14-16-27(23,24)5/h7,10,19-21,23-25,28H,6,8-9,11-17H2,1-5H3/t19-,20+,21+,23-,24+,25+,26+,27-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C27H44O/c1-18(2)7-6-8-19(3)23-11-12-24-22-10-9-20-17-21(28)13-15-26(20,4)25(22)14-16-27(23,24)5/h7,10,19-21,23-25,28H,6,8-9,11-17H2,1-5H3/t19-,20+,21+,23-,24+,25+,26+,27-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m02343r + - id: "m02343r" - name: "lathosterol" - - compartment: r - - formula: C27H46O + - compartment: "r" + - formula: "C27H46O" - charge: 0 - - inchis: 1S/C27H46O/c1-18(2)7-6-8-19(3)23-11-12-24-22-10-9-20-17-21(28)13-15-26(20,4)25(22)14-16-27(23,24)5/h10,18-21,23-25,28H,6-9,11-17H2,1-5H3/t19-,20+,21+,23-,24+,25+,26+,27-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C27H46O/c1-18(2)7-6-8-19(3)23-11-12-24-22-10-9-20-17-21(28)13-15-26(20,4)25(22)14-16-27(23,24)5/h10,18-21,23-25,28H,6-9,11-17H2,1-5H3/t19-,20+,21+,23-,24+,25+,26+,27-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m01675r + - id: "m01675r" - name: "desmosterol" - - compartment: r - - formula: C27H44O + - compartment: "r" + - formula: "C27H44O" - charge: 0 - - inchis: 1S/C27H44O/c1-18(2)7-6-8-19(3)23-11-12-24-22-10-9-20-17-21(28)13-15-26(20,4)25(22)14-16-27(23,24)5/h7,9,19,21-25,28H,6,8,10-17H2,1-5H3/t19-,21+,22+,23-,24+,25+,26+,27-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C27H44O/c1-18(2)7-6-8-19(3)23-11-12-24-22-10-9-20-17-21(28)13-15-26(20,4)25(22)14-16-27(23,24)5/h7,9,19,21-25,28H,6,8,10-17H2,1-5H3/t19-,21+,22+,23-,24+,25+,26+,27-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m01189r + - id: "m01189r" - name: "7-dehydrodesmosterol" - - compartment: r - - formula: C27H42O + - compartment: "r" + - formula: "C27H42O" - charge: 0 - - inchis: 1S/C27H42O/c1-18(2)7-6-8-19(3)23-11-12-24-22-10-9-20-17-21(28)13-15-26(20,4)25(22)14-16-27(23,24)5/h7,9-10,19,21,23-25,28H,6,8,11-17H2,1-5H3/t19-,21+,23-,24+,25+,26+,27-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C27H42O/c1-18(2)7-6-8-19(3)23-11-12-24-22-10-9-20-17-21(28)13-15-26(20,4)25(22)14-16-27(23,24)5/h7,9-10,19,21,23-25,28H,6,8,11-17H2,1-5H3/t19-,21+,23-,24+,25+,26+,27-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m00348n + - id: "m00348n" - name: "13-cis-oxo-retinoate" - - compartment: n - - formula: C20H27O3 + - compartment: "n" + - formula: "C20H27O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00350n + - id: "m00350n" - name: "13-cis-retinoate" - - compartment: n - - formula: C20H27O2 + - compartment: "n" + - formula: "C20H27O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01006n + - id: "m01006n" - name: "4-hydroxyretinoic acid" - - compartment: n - - formula: C20H27O3 + - compartment: "n" + - formula: "C20H27O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: melanin_c + - id: "melanin_c" - name: "Melanin" - - compartment: c - - formula: C9H6NO4 + - compartment: "c" + - formula: "C9H6NO4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01026n + - id: "m01026n" - name: "4-oxo-13-cis-retinoate" - - compartment: n - - formula: C20H27O3 + - compartment: "n" + - formula: "C20H27O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: Ser_Thr_l + - id: "Ser_Thr_l" - name: "Protein-Linked Serine Or Threonine Residue (O-Glycosylation Site)" - - compartment: l - - formula: XH + - compartment: "l" + - formula: "XH" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01706p + - id: "m01706p" - name: "dimethylallyl-PP" - - compartment: p - - formula: C5H9O7P2 + - compartment: "p" + - formula: "C5H9O7P2" - charge: -3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01953p + - id: "m01953p" - name: "geranyl-PP" - - compartment: p - - formula: C10H17O7P2 + - compartment: "p" + - formula: "C10H17O7P2" - charge: -3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: dmhptcoa_m + - id: "dmhptcoa_m" - name: "2,6-Dimethylheptanoyl Coenzyme A" - - compartment: m - - formula: C30H48N7O17P3S + - compartment: "m" + - formula: "C30H48N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: dmnoncoa_c + - id: "dmnoncoa_c" - name: "4,8-Dimethylnonanoyl Coenzyme A" - - compartment: c - - formula: C32H52N7O17P3S + - compartment: "c" + - formula: "C32H52N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: dmnoncoa_m + - id: "dmnoncoa_m" - name: "4,8-Dimethylnonanoyl Coenzyme A" - - compartment: m - - formula: C32H52N7O17P3S + - compartment: "m" + - formula: "C32H52N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01731c + - id: "m01731c" - name: "dolichyl-D-glucosyl-phosphate" - - compartment: c - - formula: C106H174O9P + - compartment: "c" + - formula: "C106H174O9P" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00164p + - id: "m00164p" - name: "(R)-5-diphosphomevalonate" - - compartment: p - - formula: C6H10O10P2 + - compartment: "p" + - formula: "C6H10O10P2" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01742p + - id: "m01742p" - name: "D-proline" - - compartment: p - - formula: C5H9NO2 + - compartment: "p" + - formula: "C5H9NO2" - charge: 0 - - inchis: 1S/C5H9NO2/c7-5(8)4-2-1-3-6-4/h4,6H,1-3H2,(H,7,8)/t4-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C5H9NO2/c7-5(8)4-2-1-3-6-4/h4,6H,1-3H2,(H,7,8)/t4-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m00558p + - id: "m00558p" - name: "1-pyrroline-2-carboxylate" - - compartment: p - - formula: C5H6NO2 + - compartment: "p" + - formula: "C5H6NO2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pecgon_r + - id: "pecgon_r" - name: "Pseudoecgonine" - - compartment: r - - formula: C9H14NO3 + - compartment: "r" + - formula: "C9H14NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01651c + - id: "m01651c" - name: "de-Fuc form of PA6 (wo peptide linkage)" - - compartment: c - - formula: C84H136N6O62 + - compartment: "c" + - formula: "C84H136N6O62" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01653c + - id: "m01653c" - name: "de-Fuc, GlcNAc removed PA6 (wo peptide linkage)" - - compartment: c - - formula: C76H123N5O57 + - compartment: "c" + - formula: "C76H123N5O57" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02511c + - id: "m02511c" - name: "n2m2nmn" - - compartment: c - - formula: C50H84N4O36 + - compartment: "c" + - formula: "C50H84N4O36" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02509c + - id: "m02509c" - name: "n2m2nm" - - compartment: c - - formula: C58H97N5O41 + - compartment: "c" + - formula: "C58H97N5O41" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glc1man_g + - id: "glc1man_g" - name: "Glucose-1,3-Mannose Oligosaccharide" - - compartment: g - - formula: C12H22O11 + - compartment: "g" + - formula: "C12H22O11" - charge: 0 - - inchis: 1S/C12H22O11/c13-1-3-5(15)7(17)8(18)12(22-3)23-10-6(16)4(2-14)21-11(20)9(10)19/h3-20H,1-2H2/t3-,4-,5-,6-,7+,8-,9+,10+,11-,12-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C12H22O11/c13-1-3-5(15)7(17)8(18)12(22-3)23-10-6(16)4(2-14)21-11(20)9(10)19/h3-20H,1-2H2/t3-,4-,5-,6-,7+,8-,9+,10+,11-,12-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: glc2man_g + - id: "glc2man_g" - name: "(2)[Glucose-1,3]-Mannose Oligosaccharide" - - compartment: g - - formula: C18H32O16 + - compartment: "g" + - formula: "C18H32O16" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glc3man_g + - id: "glc3man_g" - name: "Glucose-1,2-(2)[Glucose-1,3]-Mannose Oligosaccharide" - - compartment: g - - formula: C24H42O21 + - compartment: "g" + - formula: "C24H42O21" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: etfox_m + - id: "etfox_m" - name: "Electron Transfer Flavoprotein Oxidized" - - compartment: m - - formula: R + - compartment: "m" + - formula: "R" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: etfrd_m + - id: "etfrd_m" - name: "Electron Transfer Flavoprotein Reduced" - - compartment: m - - formula: RH2 + - compartment: "m" + - formula: "RH2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 1glyc_hs_s + - id: "1glyc_hs_s" - name: "1-Acyl Phosphoglycerol" - - compartment: s - - formula: C6H13O7PRCO2 + - compartment: "s" + - formula: "C6H13O7PRCO2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 9_cis_retfa_s + - id: "9_cis_retfa_s" - name: "Fatty Acid 9-Cis-Retinol" - - compartment: s - - formula: C21H29O2R + - compartment: "s" + - formula: "C21H29O2R" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: fucfuc12gal14acglcgalgluside_hs_s + - id: "fucfuc12gal14acglcgalgluside_hs_s" - name: "Ley Glycolipid" - - compartment: s - - formula: C56H99N2O30RCO + - compartment: "s" + - formula: "C56H99N2O30RCO" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: fucfucgalacglcgalgluside_hs_s + - id: "fucfucgalacglcgalgluside_hs_s" - name: "Leb Glycolipid" - - compartment: s - - formula: C56H99N2O30RCO + - compartment: "s" + - formula: "C56H99N2O30RCO" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glyc_S_s + - id: "glyc_S_s" - name: "(S)-Glycerate" - - compartment: s - - formula: C3H5O4 + - compartment: "s" + - formula: "C3H5O4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glygn5_s + - id: "glygn5_s" - name: "Glycogen, Structure 5 (Glycogenin-2[1,4-Glc])" - - compartment: s - - formula: C1791H2745N455O538S14 + - compartment: "s" + - formula: "C1791H2745N455O538S14" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00656s + - id: "m00656s" - name: "2-lysolecithin pool" - - compartment: s - - formula: C8H19NO5PRCO2 + - compartment: "s" + - formula: "C8H19NO5PRCO2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02715s + - id: "m02715s" - name: "PG-CL pool" - - compartment: s - - formula: C8H12O10PR2 + - compartment: "s" + - formula: "C8H12O10PR2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: phyt_s + - id: "phyt_s" - name: "Phytanate" - - compartment: s - - formula: C20H39O2 + - compartment: "s" + - formula: "C20H39O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02808s + - id: "m02808s" - name: "PS-LD pool" - - compartment: s - - formula: C8H11NO10PR2 + - compartment: "s" + - formula: "C8H11NO10PR2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01232s + - id: "m01232s" - name: "9-cis-retinol" - - compartment: s - - formula: C20H30O + - compartment: "s" + - formula: "C20H30O" - charge: 0 - - inchis: 1S/C20H30O/c1-16(8-6-9-17(2)13-15-21)11-12-19-18(3)10-7-14-20(19,4)5/h6,8-9,11-13,21H,7,10,14-15H2,1-5H3/b9-6+,12-11+,16-8+,17-13+ - - metFrom: Recon3D + - inchis: "1S/C20H30O/c1-16(8-6-9-17(2)13-15-21)11-12-19-18(3)10-7-14-20(19,4)5/h6,8-9,11-13,21H,7,10,14-15H2,1-5H3/b9-6+,12-11+,16-8+,17-13+" + - metFrom: "Recon3D" - !!omap - - id: m00291s + - id: "m00291s" - name: "11-cis-retinol" - - compartment: s - - formula: C20H30O + - compartment: "s" + - formula: "C20H30O" - charge: 0 - - inchis: 1S/C20H30O/c1-16(8-6-9-17(2)13-15-21)11-12-19-18(3)10-7-14-20(19,4)5/h6,8-9,11-13,21H,7,10,14-15H2,1-5H3/b9-6-,12-11+,16-8-,17-13+ - - metFrom: Recon3D + - inchis: "1S/C20H30O/c1-16(8-6-9-17(2)13-15-21)11-12-19-18(3)10-7-14-20(19,4)5/h6,8-9,11-13,21H,7,10,14-15H2,1-5H3/b9-6-,12-11+,16-8-,17-13+" + - metFrom: "Recon3D" - !!omap - - id: Rtotal_s + - id: "Rtotal_s" - name: "R Total" - - compartment: s - - formula: CO2R + - compartment: "s" + - formula: "CO2R" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: Rtotal2_s + - id: "Rtotal2_s" - name: "R Total 2 Position" - - compartment: s - - formula: CO2R2 + - compartment: "s" + - formula: "CO2R2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: Rtotal3_s + - id: "Rtotal3_s" - name: "R Total 3 Position" - - compartment: s - - formula: CO2R3 + - compartment: "s" + - formula: "CO2R3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: Tyr_ggn_s + - id: "Tyr_ggn_s" - name: "Tyr-194 Of Apo-Glycogenin Protein (Primer For Glycogen Synthesis)" - - compartment: s - - formula: C1779H2725N455O528S14 + - compartment: "s" + - formula: "C1779H2725N455O528S14" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: xolest_hs_s + - id: "xolest_hs_s" - name: "Cholesterol Ester" - - compartment: s - - formula: C27H45XCO2 + - compartment: "s" + - formula: "C27H45XCO2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01446s + - id: "m01446s" - name: "cholest-5-ene-3beta,7alpha,24(S)-triol" - - compartment: s - - formula: C27H46O3 + - compartment: "s" + - formula: "C27H46O3" - charge: 0 - - inchis: 1/C27H46O3/c1-16(2)23(29)9-6-17(3)20-7-8-21-25-22(11-13-27(20,21)5)26(4)12-10-19(28)14-18(26)15-24(25)30/h15-17,19-25,28-30H,6-14H2,1-5H3/t17-,19+,20-,21+,22+,23+,24-,25+,26+,27-/s2 - - metFrom: Recon3D + - inchis: "1/C27H46O3/c1-16(2)23(29)9-6-17(3)20-7-8-21-25-22(11-13-27(20,21)5)26(4)12-10-19(28)14-18(26)15-24(25)30/h15-17,19-25,28-30H,6-14H2,1-5H3/t17-,19+,20-,21+,22+,23+,24-,25+,26+,27-/s2" + - metFrom: "Recon3D" - !!omap - - id: m01447s + - id: "m01447s" - name: "cholest-5-ene-3beta,7alpha,25-triol" - - compartment: s - - formula: C27H46O3 + - compartment: "s" + - formula: "C27H46O3" - charge: 0 - - inchis: 1S/C27H46O3/c1-17(7-6-12-25(2,3)30)20-8-9-21-24-22(11-14-27(20,21)5)26(4)13-10-19(28)15-18(26)16-23(24)29/h16-17,19-24,28-30H,6-15H2,1-5H3/t17-,19+,20-,21+,22+,23-,24+,26+,27-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C27H46O3/c1-17(7-6-12-25(2,3)30)20-8-9-21-24-22(11-14-27(20,21)5)26(4)13-10-19(28)15-18(26)16-23(24)29/h16-17,19-24,28-30H,6-15H2,1-5H3/t17-,19+,20-,21+,22+,23-,24+,26+,27-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m01448s + - id: "m01448s" - name: "cholest-5-ene-3beta,7alpha,27-triol" - - compartment: s - - formula: C27H46O3 + - compartment: "s" + - formula: "C27H46O3" - charge: 0 - - inchis: 1S/C27H46O3/c1-17(16-28)6-5-7-18(2)21-8-9-22-25-23(11-13-27(21,22)4)26(3)12-10-20(29)14-19(26)15-24(25)30/h15,17-18,20-25,28-30H,5-14,16H2,1-4H3/t17?,18-,20+,21-,22+,23+,24-,25+,26+,27-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C27H46O3/c1-17(16-28)6-5-7-18(2)21-8-9-22-25-23(11-13-27(21,22)4)26(3)12-10-20(29)14-19(26)15-24(25)30/h15,17-18,20-25,28-30H,5-14,16H2,1-4H3/t17?,18-,20+,21-,22+,23+,24-,25+,26+,27-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: tdeACP_c + - id: "tdeACP_c" - name: "Cis-Tetradec-7-Enoyl-[Acyl-Carrier Protein] (N-C14:1)" - - compartment: c - - formula: C25H45N2O8PRS + - compartment: "c" + - formula: "C25H45N2O8PRS" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hdeACP_c + - id: "hdeACP_c" - name: "Cis-Hexadec-9-Enoyl-[Acyl-Carrier Protein] (N-C16:1)" - - compartment: c - - formula: C27H49N2O8PRS + - compartment: "c" + - formula: "C27H49N2O8PRS" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ocdcaACP_c + - id: "ocdcaACP_c" - name: "Octadecanoyl-ACP (N-C18:0ACP)" - - compartment: c - - formula: C29H55N2O8PRS + - compartment: "c" + - formula: "C29H55N2O8PRS" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: octeACP_c + - id: "octeACP_c" - name: "Cis-Octadec-11-Enoyl-[Acyl-Carrier Protein] (N-C18:1)" - - compartment: c - - formula: C29H53N2O8PRS + - compartment: "c" + - formula: "C29H53N2O8PRS" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lnlcACP_c + - id: "lnlcACP_c" - name: "Linoleic Acid ACP (All Cis)" - - compartment: c - - formula: C29H51N2O8PRS + - compartment: "c" + - formula: "C29H51N2O8PRS" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lneldcACP_c + - id: "lneldcACP_c" - name: "Linoelaidic Acid ACP (All Trans)" - - compartment: c - - formula: C29H51N2O8PRS + - compartment: "c" + - formula: "C29H51N2O8PRS" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ocdcyaACP_c + - id: "ocdcyaACP_c" - name: "Octadecynoyl-ACP (N-C18:2ACP)" - - compartment: c - - formula: C29H51N2O8PRS + - compartment: "c" + - formula: "C29H51N2O8PRS" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ocdcya_c + - id: "ocdcya_c" - name: "Octadecadienoate (N-C18:2)" - - compartment: c - - formula: C18H31O2 + - compartment: "c" + - formula: "C18H31O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pristcoa_c + - id: "pristcoa_c" - name: "Pristanoyl Coenzyme A" - - compartment: c - - formula: C40H68N7O17P3S + - compartment: "c" + - formula: "C40H68N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: phyt_c + - id: "phyt_c" - name: "Phytanate" - - compartment: c - - formula: C20H39O2 + - compartment: "c" + - formula: "C20H39O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: octd11ecoa_m + - id: "octd11ecoa_m" - name: "11-Octadecenoyl Coenzyme A" - - compartment: m - - formula: C39H64N7O17P3S + - compartment: "m" + - formula: "C39H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00108p + - id: "m00108p" - name: "(6Z,9Z,12Z,15Z)-octadecatetraenoyl-CoA" - - compartment: p - - formula: C39H58N7O17P3S + - compartment: "p" + - formula: "C39H58N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00103p + - id: "m00103p" - name: "(5Z,8Z,11Z,14Z,17Z)-eicosapentaenoyl-CoA" - - compartment: p - - formula: C41H60N7O17P3S + - compartment: "p" + - formula: "C41H60N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tag1p_D_c + - id: "tag1p_D_c" - name: "D-Tagatose 1-Phosphate" - - compartment: c - - formula: C6H11O9P + - compartment: "c" + - formula: "C6H11O9P" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01806p + - id: "m01806p" - name: "farnesyl-PP" - - compartment: p - - formula: C15H25O7P2 + - compartment: "p" + - formula: "C15H25O7P2" - charge: -3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01806r + - id: "m01806r" - name: "farnesyl-PP" - - compartment: r - - formula: C15H25O7P2 + - compartment: "r" + - formula: "C15H25O7P2" - charge: -3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: fucfuc12gal14acglcgalgluside_hs_c + - id: "fucfuc12gal14acglcgalgluside_hs_c" - name: "Ley Glycolipid" - - compartment: c - - formula: C56H99N2O30RCO + - compartment: "c" + - formula: "C56H99N2O30RCO" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: fucfuc12gal14acglcgalgluside_hs_g + - id: "fucfuc12gal14acglcgalgluside_hs_g" - name: "Ley Glycolipid" - - compartment: g - - formula: C56H99N2O30RCO + - compartment: "g" + - formula: "C56H99N2O30RCO" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: fucfucgalacglcgalgluside_hs_c + - id: "fucfucgalacglcgalgluside_hs_c" - name: "Leb Glycolipid" - - compartment: c - - formula: C56H99N2O30RCO + - compartment: "c" + - formula: "C56H99N2O30RCO" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: fucfucgalacglcgalgluside_hs_g + - id: "fucfucgalacglcgalgluside_hs_g" - name: "Leb Glycolipid" - - compartment: g - - formula: C56H99N2O30RCO + - compartment: "g" + - formula: "C56H99N2O30RCO" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: galgluside_hs_l + - id: "galgluside_hs_l" - name: "Galactosyl Glucosyl Ceramide" - - compartment: l - - formula: C30H56NO12RCO + - compartment: "l" + - formula: "C30H56NO12RCO" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: Ser_Thr_g + - id: "Ser_Thr_g" - name: "Protein-Linked Serine Or Threonine Residue (O-Glycosylation Site)" - - compartment: g - - formula: XH + - compartment: "g" + - formula: "XH" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: Tyr_ggn_c + - id: "Tyr_ggn_c" - name: "Tyr-194 Of Apo-Glycogenin Protein (Primer For Glycogen Synthesis)" - - compartment: c - - formula: C1779H2725N455O528S14 + - compartment: "c" + - formula: "C1779H2725N455O528S14" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00789m + - id: "m00789m" - name: "3-hydroxy-N6,N6,N6-trimethyl-L-lysine" - - compartment: m - - formula: C9H20N2O3 + - compartment: "m" + - formula: "C9H20N2O3" - charge: 0 - - inchis: 1S/C9H20N2O3/c1-11(2,3)6-4-5-7(12)8(10)9(13)14/h7-8,12H,4-6,10H2,1-3H3/t7?,8-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C9H20N2O3/c1-11(2,3)6-4-5-7(12)8(10)9(13)14/h7-8,12H,4-6,10H2,1-3H3/t7?,8-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m01034m + - id: "m01034m" - name: "4-trimethylammoniobutanal" - - compartment: m - - formula: C7H16NO + - compartment: "m" + - formula: "C7H16NO" - charge: 1 - - inchis: 1S/C7H16NO/c1-8(2,3)6-4-5-7-9/h7H,4-6H2,1-3H3/q+1 - - metFrom: Recon3D + - inchis: "1S/C7H16NO/c1-8(2,3)6-4-5-7-9/h7H,4-6H2,1-3H3/q+1" + - metFrom: "Recon3D" - !!omap - - id: m01685m + - id: "m01685m" - name: "D-glucurono-6,3-lactone" - - compartment: m - - formula: C6H8O6 + - compartment: "m" + - formula: "C6H8O6" - charge: 0 - - inchis: 1S/C6H8O6/c7-1-2(8)5-3(9)4(10)6(11)12-5/h1-5,8-10H/t2-,3+,4-,5+/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C6H8O6/c7-1-2(8)5-3(9)4(10)6(11)12-5/h1-5,8-10H/t2-,3+,4-,5+/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m01681m + - id: "m01681m" - name: "D-glucarate" - - compartment: m - - formula: C6H8O8 + - compartment: "m" + - formula: "C6H8O8" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glyc_S_c + - id: "glyc_S_c" - name: "(S)-Glycerate" - - compartment: c - - formula: C3H5O4 + - compartment: "c" + - formula: "C3H5O4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: alpa_hs_m + - id: "alpa_hs_m" - name: "Lysophosphatidic Acid" - - compartment: m - - formula: C3H6O5PRCO2 + - compartment: "m" + - formula: "C3H6O5PRCO2" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m_em_3gacpail_r + - id: "m_em_3gacpail_r" - name: "Mannosyl-3-(Phosphoethanolaminyl-Mannosyl)-Glucosaminyl-Acylphosphatidylinositol (M4A)" - - compartment: r - - formula: C63H116N4O47P4R2 + - compartment: "r" + - formula: "C63H116N4O47P4R2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02110m + - id: "m02110m" - name: "hexacosanoyl-CoA" - - compartment: m - - formula: C47H82N7O17P3S + - compartment: "m" + - formula: "C47H82N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02109m + - id: "m02109m" - name: "hexacosanoylcarnitine" - - compartment: m - - formula: C33H65NO4 + - compartment: "m" + - formula: "C33H65NO4" - charge: 0 - - inchis: 1/C33H65NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-22-23-24-25-26-27-28-33(37)38-31(29-32(35)36)30-34(2,3)4/h31H,5-30H2,1-4H3 - - metFrom: Recon3D + - inchis: "1/C33H65NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-22-23-24-25-26-27-28-33(37)38-31(29-32(35)36)30-34(2,3)4/h31H,5-30H2,1-4H3" + - metFrom: "Recon3D" - !!omap - - id: m02131r + - id: "m02131r" - name: "HMG-CoA" - - compartment: r - - formula: C27H39N7O20P3S + - compartment: "r" + - formula: "C27H39N7O20P3S" - charge: -5 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00167r + - id: "m00167r" - name: "(R)-mevalonate" - - compartment: r - - formula: C6H11O4 + - compartment: "r" + - formula: "C6H11O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02159l + - id: "m02159l" - name: "hypoxanthine" - - compartment: l - - formula: C5H4N4O + - compartment: "l" + - formula: "C5H4N4O" - charge: 0 - - inchis: 1S/C5H4N4O/c10-5-3-4(7-1-6-3)8-2-9-5/h1-2H,(H2,6,7,8,9,10) - - metFrom: Recon3D + - inchis: "1S/C5H4N4O/c10-5-3-4(7-1-6-3)8-2-9-5/h1-2H,(H2,6,7,8,9,10)" + - metFrom: "Recon3D" - !!omap - - id: m02170l + - id: "m02170l" - name: "inosine" - - compartment: l - - formula: C10H12N4O5 + - compartment: "l" + - formula: "C10H12N4O5" - charge: 0 - - inchis: 1S/C10H12N4O5/c15-1-4-6(16)7(17)10(19-4)14-3-13-5-8(14)11-2-12-9(5)18/h2-4,6-7,10,15-17H,1H2,(H,11,12,18)/t4-,6-,7-,10-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C10H12N4O5/c15-1-4-6(16)7(17)10(19-4)14-3-13-5-8(14)11-2-12-9(5)18/h2-4,6-7,10,15-17H,1H2,(H,11,12,18)/t4-,6-,7-,10-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m02187r + - id: "m02187r" - name: "isopentenyl-pPP" - - compartment: r - - formula: C5H9O7P2 + - compartment: "r" + - formula: "C5H9O7P2" - charge: -3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01715m + - id: "m01715m" - name: "D-lactaldehyde" - - compartment: m - - formula: C3H6O2 + - compartment: "m" + - formula: "C3H6O2" - charge: 0 - - inchis: 1S/C3H6O2/c1-3(5)2-4/h2-3,5H,1H3/t3-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C3H6O2/c1-3(5)2-4/h2-3,5H,1H3/t3-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m02971m + - id: "m02971m" - name: "tetracosanoyl-CoA" - - compartment: m - - formula: C45H78N7O17P3S + - compartment: "m" + - formula: "C45H78N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02970m + - id: "m02970m" - name: "tetracosanoylcarnitine" - - compartment: m - - formula: C31H61NO4 + - compartment: "m" + - formula: "C31H61NO4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lnlncacrn_c + - id: "lnlncacrn_c" - name: "Alpha-Linolenyl Carnitine" - - compartment: c - - formula: C25H43NO4 + - compartment: "c" + - formula: "C25H43NO4" - charge: 0 - - inchis: 1S/C25H43NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-25(29)30-23(26(2,3)4)21-22-24(27)28/h6-7,9-10,12-13,23H,5,8,11,14-22H2,1-4H3/b7-6-,10-9-,13-12-/t23-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C25H43NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-25(29)30-23(26(2,3)4)21-22-24(27)28/h6-7,9-10,12-13,23H,5,8,11,14-22H2,1-4H3/b7-6-,10-9-,13-12-/t23-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: lnlncacrn_m + - id: "lnlncacrn_m" - name: "Alpha-Linolenyl Carnitine" - - compartment: m - - formula: C25H43NO4 + - compartment: "m" + - formula: "C25H43NO4" - charge: 0 - - inchis: 1S/C25H43NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-25(29)30-23(26(2,3)4)21-22-24(27)28/h6-7,9-10,12-13,23H,5,8,11,14-22H2,1-4H3/b7-6-,10-9-,13-12-/t23-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C25H43NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-25(29)30-23(26(2,3)4)21-22-24(27)28/h6-7,9-10,12-13,23H,5,8,11,14-22H2,1-4H3/b7-6-,10-9-,13-12-/t23-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m02336r + - id: "m02336r" - name: "lanosterol" - - compartment: r - - formula: C30H50O + - compartment: "r" + - formula: "C30H50O" - charge: 0 - - inchis: 1S/C30H50O/c1-20(2)10-9-11-21(3)22-14-18-30(8)24-12-13-25-27(4,5)26(31)16-17-28(25,6)23(24)15-19-29(22,30)7/h10,21-22,25-26,31H,9,11-19H2,1-8H3/t21-,22-,25+,26+,28-,29-,30+/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C30H50O/c1-20(2)10-9-11-21(3)22-14-18-30(8)24-12-13-25-27(4,5)26(31)16-17-28(25,6)23(24)15-19-29(22,30)7/h10,21-22,25-26,31H,9,11-19H2,1-8H3/t21-,22-,25+,26+,28-,29-,30+/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m02932r + - id: "m02932r" - name: "squalene 2,3-oxide" - - compartment: r - - formula: C30H50O + - compartment: "r" + - formula: "C30H50O" - charge: 0 - - inchis: 1/C30H50O/c1-24(2)14-11-17-27(5)20-12-18-25(3)15-9-10-16-26(4)19-13-21-28(6)22-23-29-30(7,8)31-29/h14-16,20-21,29H,9-13,17-19,22-23H2,1-8H3/t29-/s2 - - metFrom: Recon3D + - inchis: "1/C30H50O/c1-24(2)14-11-17-27(5)20-12-18-25(3)15-9-10-16-26(4)19-13-21-28(6)22-23-29-30(7,8)31-29/h14-16,20-21,29H,9-13,17-19,22-23H2,1-8H3/t29-/s2" + - metFrom: "Recon3D" - !!omap - - id: 9_cis_retfa_c + - id: "9_cis_retfa_c" - name: "Fatty Acid 9-Cis-Retinol" - - compartment: c - - formula: C21H29O2R + - compartment: "c" + - formula: "C21H29O2R" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m_em_3gacpail_hs_r + - id: "m_em_3gacpail_hs_r" - name: "Mannosyl-3-(Phosphoethanolaminyl-Mannosyl)-Glucosaminyl-Acylphosphatidylinositol (M4A))" - - compartment: r - - formula: C63H116N4O47P4R2 + - compartment: "r" + - formula: "C63H116N4O47P4R2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m_em_3gacpail_prot_hs_r + - id: "m_em_3gacpail_prot_hs_r" - name: "Mannosyl-3-(Phosphoethanolaminyl-Mannosyl)-Glucosaminyl-Acylphosphatidylinositol-Protein (M4A)" - - compartment: r - - formula: C63H116N4O47P4R2X + - compartment: "r" + - formula: "C63H116N4O47P4R2X" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00184m + - id: "m00184m" - name: "[ACP]" - - compartment: m - - formula: C11H21N2O7PRS + - compartment: "m" + - formula: "C11H21N2O7PRS" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02442m + - id: "m02442m" - name: "malonyl-[ACP]" - - compartment: m - - formula: C14H22N2O10PRS + - compartment: "m" + - formula: "C14H22N2O10PRS" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00165p + - id: "m00165p" - name: "(R)-5-phosphomevalonate" - - compartment: p - - formula: C6H10O7P + - compartment: "p" + - formula: "C6H10O7P" - charge: -3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02480c + - id: "m02480c" - name: "methylmalonyl-CoA" - - compartment: c - - formula: C25H35N7O19P3S + - compartment: "c" + - formula: "C25H35N7O19P3S" - charge: -5 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02480p + - id: "m02480p" - name: "methylmalonyl-CoA" - - compartment: p - - formula: C25H35N7O19P3S + - compartment: "p" + - formula: "C25H35N7O19P3S" - charge: -5 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02514m + - id: "m02514m" - name: "N4-acetylaminobutanal" - - compartment: m - - formula: C6H11NO2 + - compartment: "m" + - formula: "C6H11NO2" - charge: 0 - - inchis: 1S/C6H11NO2/c1-6(9)7-4-2-3-5-8/h5H,2-4H2,1H3,(H,7,9) - - metFrom: Recon3D + - inchis: "1S/C6H11NO2/c1-6(9)7-4-2-3-5-8/h5H,2-4H2,1H3,(H,7,9)" + - metFrom: "Recon3D" - !!omap - - id: m00952m + - id: "m00952m" - name: "4-acetamidobutanoate" - - compartment: m - - formula: C6H10NO3 + - compartment: "m" + - formula: "C6H10NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01646m + - id: "m01646m" - name: "deamido-NAD" - - compartment: m - - formula: C21H24N6O15P2 + - compartment: "m" + - formula: "C21H24N6O15P2" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02585m + - id: "m02585m" - name: "nicotinate ribonucleotide" - - compartment: m - - formula: C11H12NO9P + - compartment: "m" + - formula: "C11H12NO9P" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00025m + - id: "m00025m" - name: "(15Z)-tetracosenoyl-CoA" - - compartment: m - - formula: C45H76N7O17P3S + - compartment: "m" + - formula: "C45H76N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00024m + - id: "m00024m" - name: "(15Z)-tetracosenoylcarnitine" - - compartment: m - - formula: C31H59NO4 + - compartment: "m" + - formula: "C31H59NO4" - charge: 0 - - inchis: 1S/C31H59NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-22-23-24-25-26-31(35)36-29(27-30(33)34)28-32(2,3)4/h12-13,29H,5-11,14-28H2,1-4H3/t29-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C31H59NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-22-23-24-25-26-31(35)36-29(27-30(33)34)28-32(2,3)4/h12-13,29H,5-11,14-28H2,1-4H3/t29-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m01446r + - id: "m01446r" - name: "cholest-5-ene-3beta,7alpha,24(S)-triol" - - compartment: r - - formula: C27H46O3 + - compartment: "r" + - formula: "C27H46O3" - charge: 0 - - inchis: 1/C27H46O3/c1-16(2)23(29)9-6-17(3)20-7-8-21-25-22(11-13-27(20,21)5)26(4)12-10-19(28)14-18(26)15-24(25)30/h15-17,19-25,28-30H,6-14H2,1-5H3/t17-,19+,20-,21+,22+,23+,24-,25+,26+,27-/s2 - - metFrom: Recon3D + - inchis: "1/C27H46O3/c1-16(2)23(29)9-6-17(3)20-7-8-21-25-22(11-13-27(20,21)5)26(4)12-10-19(28)14-18(26)15-24(25)30/h15-17,19-25,28-30H,6-14H2,1-5H3/t17-,19+,20-,21+,22+,23+,24-,25+,26+,27-/s2" + - metFrom: "Recon3D" - !!omap - - id: m00610r + - id: "m00610r" - name: "24-hydroxycholesterol" - - compartment: r - - formula: C27H46O2 + - compartment: "r" + - formula: "C27H46O2" - charge: 0 - - inchis: 1S/C27H46O2/c1-17(2)25(29)11-6-18(3)22-9-10-23-21-8-7-19-16-20(28)12-14-26(19,4)24(21)13-15-27(22,23)5/h7,17-18,20-25,28-29H,6,8-16H2,1-5H3/t18-,20+,21+,22-,23+,24+,25+,26+,27-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C27H46O2/c1-17(2)25(29)11-6-18(3)22-9-10-23-21-8-7-19-16-20(28)12-14-26(19,4)24(21)13-15-27(22,23)5/h7,17-18,20-25,28-29H,6,8-16H2,1-5H3/t18-,20+,21+,22-,23+,24+,25+,26+,27-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m01448r + - id: "m01448r" - name: "cholest-5-ene-3beta,7alpha,27-triol" - - compartment: r - - formula: C27H46O3 + - compartment: "r" + - formula: "C27H46O3" - charge: 0 - - inchis: 1S/C27H46O3/c1-17(16-28)6-5-7-18(2)21-8-9-22-25-23(11-13-27(21,22)4)26(3)12-10-20(29)14-19(26)15-24(25)30/h15,17-18,20-25,28-30H,5-14,16H2,1-4H3/t17?,18-,20+,21-,22+,23+,24-,25+,26+,27-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C27H46O3/c1-17(16-28)6-5-7-18(2)21-8-9-22-25-23(11-13-27(21,22)4)26(3)12-10-20(29)14-19(26)15-24(25)30/h15,17-18,20-25,28-30H,5-14,16H2,1-4H3/t17?,18-,20+,21-,22+,23+,24-,25+,26+,27-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m00592m + - id: "m00592m" - name: "20-hydroxycholesterol" - - compartment: m - - formula: C27H46O2 + - compartment: "m" + - formula: "C27H46O2" - charge: 0 - - inchis: 1S/C27H46O2/c1-18(2)7-6-14-27(5,29)24-11-10-22-21-9-8-19-17-20(28)12-15-25(19,3)23(21)13-16-26(22,24)4/h8,18,20-24,28-29H,6-7,9-17H2,1-5H3/t20-,21-,22-,23-,24-,25-,26-,27-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C27H46O2/c1-18(2)7-6-14-27(5,29)24-11-10-22-21-9-8-19-17-20(28)12-15-25(19,3)23(21)13-16-26(22,24)4/h8,18,20-24,28-29H,6-7,9-17H2,1-5H3/t20-,21-,22-,23-,24-,25-,26-,27-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m02733g + - id: "m02733g" - name: "phosphatidate-LD-TAG pool" - - compartment: g - - formula: C5H5O8PR2 + - compartment: "g" + - formula: "C5H5O8PR2" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02684m + - id: "m02684m" - name: "PC-LD pool" - - compartment: m - - formula: C10H18NO8PR2 + - compartment: "m" + - formula: "C10H18NO8PR2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pecgoncoa_r + - id: "pecgoncoa_r" - name: "Pseudoecgonyl Coenzyme A" - - compartment: r - - formula: C30H46N8O18P3S + - compartment: "r" + - formula: "C30H46N8O18P3S" - charge: -3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pristcoa_p + - id: "pristcoa_p" - name: "Pristanoyl Coenzyme A" - - compartment: p - - formula: C40H68N7O17P3S + - compartment: "p" + - formula: "C40H68N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02717c + - id: "m02717c" - name: "PGP-CL pool" - - compartment: c - - formula: C8H11O13P2R2 + - compartment: "c" + - formula: "C8H11O13P2R2" - charge: -3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02725m + - id: "m02725m" - name: "phenylpyruvate" - - compartment: m - - formula: C9H7O3 + - compartment: "m" + - formula: "C9H7O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00553r + - id: "m00553r" - name: "1-phosphatidyl-1D-myo-inositol-4-phosphate" - - compartment: r - - formula: C11H15O16P2R2 + - compartment: "r" + - formula: "C11H15O16P2R2" - charge: -3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00551r + - id: "m00551r" - name: "1-phosphatidyl-1D-myo-inositol-3,4-bisphosphate" - - compartment: r - - formula: C11H14O19P3R2 + - compartment: "r" + - formula: "C11H14O19P3R2" - charge: -5 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02680m + - id: "m02680m" - name: "pantothenate" - - compartment: m - - formula: C9H16NO5 + - compartment: "m" + - formula: "C9H16NO5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01636m + - id: "m01636m" - name: "D-4-phosphopantothenate" - - compartment: m - - formula: C9H15NO8P + - compartment: "m" + - formula: "C9H15NO8P" - charge: -3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01306r + - id: "m01306r" - name: "AKG" - - compartment: r - - formula: C5H4O5 + - compartment: "r" + - formula: "C5H4O5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02943r + - id: "m02943r" - name: "succinate" - - compartment: r - - formula: C4H4O4 + - compartment: "r" + - formula: "C4H4O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02770r + - id: "m02770r" - name: "proline" - - compartment: r - - formula: C5H9NO2 + - compartment: "r" + - formula: "C5H9NO2" - charge: 0 - - inchis: 1S/C5H9NO2/c7-5(8)4-2-1-3-6-4/h4,6H,1-3H2,(H,7,8)/t4-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C5H9NO2/c7-5(8)4-2-1-3-6-4/h4,6H,1-3H2,(H,7,8)/t4-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m03037r + - id: "m03037r" - name: "trans-4-hydroxy-L-proline" - - compartment: r - - formula: C5H9NO3 + - compartment: "r" + - formula: "C5H9NO3" - charge: 0 - - inchis: 1S/C5H9NO3/c7-3-1-4(5(8)9)6-2-3/h3-4,6-7H,1-2H2,(H,8,9)/t3-,4+/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C5H9NO3/c7-3-1-4(5(8)9)6-2-3/h3-4,6-7H,1-2H2,(H,8,9)/t3-,4+/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m00799p + - id: "m00799p" - name: "3-hydroxypropionyl-CoA" - - compartment: p - - formula: C24H36N7O18P3S + - compartment: "p" + - formula: "C24H36N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01265p + - id: "m01265p" - name: "acrylyl-CoA" - - compartment: p - - formula: C24H34N7O17P3S + - compartment: "p" + - formula: "C24H34N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02808g + - id: "m02808g" - name: "PS-LD pool" - - compartment: g - - formula: C8H11NO10PR2 + - compartment: "g" + - formula: "C8H11NO10PR2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02808m + - id: "m02808m" - name: "PS-LD pool" - - compartment: m - - formula: C8H11NO10PR2 + - compartment: "m" + - formula: "C8H11NO10PR2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: phyt_p + - id: "phyt_p" - name: "Phytanate" - - compartment: p - - formula: C20H39O2 + - compartment: "p" + - formula: "C20H39O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01291p + - id: "m01291p" - name: "adrenic acid" - - compartment: p - - formula: C22H35O2 + - compartment: "p" + - formula: "C22H35O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02816m + - id: "m02816m" - name: "pyridoxamine-phosphate" - - compartment: m - - formula: C8H12N2O5P + - compartment: "m" + - formula: "C8H12N2O5P" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02814m + - id: "m02814m" - name: "pyridoxal-phosphate" - - compartment: m - - formula: C8H8NO6P + - compartment: "m" + - formula: "C8H8NO6P" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02833n + - id: "m02833n" - name: "retinoate" - - compartment: n - - formula: C20H27O2 + - compartment: "n" + - formula: "C20H27O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: Rtotal2crn_c + - id: "Rtotal2crn_c" - name: "R Total 2 Carnitine" - - compartment: c - - formula: CO2R2C7H14NO2 + - compartment: "c" + - formula: "CO2R2C7H14NO2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: Rtotal2crn_m + - id: "Rtotal2crn_m" - name: "R Total 2 Carnitine" - - compartment: m - - formula: CO2R2C7H14NO2 + - compartment: "m" + - formula: "CO2R2C7H14NO2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: Rtotal3crn_c + - id: "Rtotal3crn_c" - name: "R Total 3 Carnitine" - - compartment: c - - formula: CO2R3C7H14NO2 + - compartment: "c" + - formula: "CO2R3C7H14NO2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: Rtotal3crn_m + - id: "Rtotal3crn_m" - name: "R Total 3 Carnitine" - - compartment: m - - formula: CO2R3C7H14NO2 + - compartment: "m" + - formula: "CO2R3C7H14NO2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: Rtotalcrn_c + - id: "Rtotalcrn_c" - name: "R Total Carnitine" - - compartment: c - - formula: CO2RC7H14NO2 + - compartment: "c" + - formula: "CO2RC7H14NO2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: Rtotalcrn_m + - id: "Rtotalcrn_m" - name: "R Total Carnitine" - - compartment: m - - formula: CO2RC7H14NO2 + - compartment: "m" + - formula: "CO2RC7H14NO2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02324c + - id: "m02324c" - name: "l2n2m2mn" - - compartment: c - - formula: C54H91N3O41 + - compartment: "c" + - formula: "C54H91N3O41" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: xolest_hs_c + - id: "xolest_hs_c" - name: "Cholesterol Ester" - - compartment: c - - formula: C27H45XCO2 + - compartment: "c" + - formula: "C27H45XCO2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: R1coa_hs_r + - id: "R1coa_hs_r" - name: "R Group 1 Coenzyme A" - - compartment: r - - formula: XCO2C21H31N7O15P3S + - compartment: "r" + - formula: "XCO2C21H31N7O15P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: xolest_hs_r + - id: "xolest_hs_r" - name: "Cholesterol Ester" - - compartment: r - - formula: C27H45XCO2 + - compartment: "r" + - formula: "C27H45XCO2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: R2coa_hs_r + - id: "R2coa_hs_r" - name: "R Group 2 Coenzyme A" - - compartment: r - - formula: XCO2C21H31N7O15P3S + - compartment: "r" + - formula: "XCO2C21H31N7O15P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02933r + - id: "m02933r" - name: "squalene" - - compartment: r - - formula: C30H50 + - compartment: "r" + - formula: "C30H50" - charge: 0 - - inchis: 1S/C30H50/c1-25(2)15-11-19-29(7)23-13-21-27(5)17-9-10-18-28(6)22-14-24-30(8)20-12-16-26(3)4/h15-18,23-24H,9-14,19-22H2,1-8H3/b27-17+,28-18+,29-23+,30-24+ - - metFrom: Recon3D + - inchis: "1S/C30H50/c1-25(2)15-11-19-29(7)23-13-21-27(5)17-9-10-18-28(6)22-14-24-30(8)20-12-16-26(3)4/h15-18,23-24H,9-14,19-22H2,1-8H3/b27-17+,28-18+,29-23+,30-24+" + - metFrom: "Recon3D" - !!omap - - id: m00134m + - id: "m00134m" - name: "(9Z,12Z,15Z,18Z,21Z)-tetracosapentaenoyl-CoA" - - compartment: m - - formula: C45H68N7O17P3S + - compartment: "m" + - formula: "C45H68N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00133m + - id: "m00133m" - name: "(9Z,12Z,15Z,18Z,21Z)-tetracosapentaenoylcarnitine" - - compartment: m - - formula: C31H51NO4 + - compartment: "m" + - formula: "C31H51NO4" - charge: 0 - - inchis: 1/C31H51NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-22-23-24-25-26-31(35)36-29(27-30(33)34)28-32(2,3)4/h6-7,9-10,12-13,15-16,18-19,29H,5,8,11,14,17,20-28H2,1-4H3 - - metFrom: Recon3D + - inchis: "1/C31H51NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-22-23-24-25-26-31(35)36-29(27-30(33)34)28-32(2,3)4/h6-7,9-10,12-13,15-16,18-19,29H,5,8,11,14,17,20-28H2,1-4H3" + - metFrom: "Recon3D" - !!omap - - id: m00110m + - id: "m00110m" - name: "(6Z,9Z,12Z,15Z,18Z)-tetracosapentaenoyl-CoA" - - compartment: m - - formula: C45H68N7O17P3S + - compartment: "m" + - formula: "C45H68N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00109m + - id: "m00109m" - name: "(6Z,9Z,12Z,15Z,18Z)-tetracosapentaenoylcarnitine" - - compartment: m - - formula: C31H51NO4 + - compartment: "m" + - formula: "C31H51NO4" - charge: 0 - - inchis: 1/C31H51NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-22-23-24-25-26-31(35)36-29(27-30(33)34)28-32(2,3)4/h9-10,12-13,15-16,18-19,21-22,29H,5-8,11,14,17,20,23-28H2,1-4H3 - - metFrom: Recon3D + - inchis: "1/C31H51NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-22-23-24-25-26-31(35)36-29(27-30(33)34)28-32(2,3)4/h9-10,12-13,15-16,18-19,21-22,29H,5-8,11,14,17,20,23-28H2,1-4H3" + - metFrom: "Recon3D" - !!omap - - id: m00131m + - id: "m00131m" - name: "(9Z,12Z,15Z,18Z)-tetracosatetraenoyl-CoA" - - compartment: m - - formula: C45H70N7O17P3S + - compartment: "m" + - formula: "C45H70N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00130m + - id: "m00130m" - name: "(9Z,12Z,15Z,18Z)-tetracosatetraenoylcarnitine" - - compartment: m - - formula: C31H53NO4 + - compartment: "m" + - formula: "C31H53NO4" - charge: 0 - - inchis: 1/C31H53NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-22-23-24-25-26-31(35)36-29(27-30(33)34)28-32(2,3)4/h9-10,12-13,15-16,18-19,29H,5-8,11,14,17,20-28H2,1-4H3/t29-/s2 - - metFrom: Recon3D + - inchis: "1/C31H53NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-22-23-24-25-26-31(35)36-29(27-30(33)34)28-32(2,3)4/h9-10,12-13,15-16,18-19,29H,5-8,11,14,17,20-28H2,1-4H3/t29-/s2" + - metFrom: "Recon3D" - !!omap - - id: m02982m + - id: "m02982m" - name: "thiamin" - - compartment: m - - formula: C12H17N4OS + - compartment: "m" + - formula: "C12H17N4OS" - charge: 1 - - inchis: 1S/C12H17N4OS/c1-8-11(3-4-17)18-7-16(8)6-10-5-14-9(2)15-12(10)13/h5,7,17H,3-4,6H2,1-2H3,(H2,13,14,15)/q+1 - - metFrom: Recon3D + - inchis: "1S/C12H17N4OS/c1-8-11(3-4-17)18-7-16(8)6-10-5-14-9(2)15-12(10)13/h5,7,17H,3-4,6H2,1-2H3,(H2,13,14,15)/q+1" + - metFrom: "Recon3D" - !!omap - - id: m03103c + - id: "m03103c" - name: "ubiquinone" - - compartment: c - - formula: C59H90O4 + - compartment: "c" + - formula: "C59H90O4" - charge: 0 - - inchis: 1S/C59H90O4/c1-44(2)24-15-25-45(3)26-16-27-46(4)28-17-29-47(5)30-18-31-48(6)32-19-33-49(7)34-20-35-50(8)36-21-37-51(9)38-22-39-52(10)40-23-41-53(11)42-43-55-54(12)56(60)58(62-13)59(63-14)57(55)61/h24,26,28,30,32,34,36,38,40,42H,15-23,25,27,29,31,33,35,37,39,41,43H2,1-14H3/b45-26+,46-28+,47-30+,48-32+,49-34+,50-36+,51-38+,52-40+,53-42+ - - metFrom: Recon3D + - inchis: "1S/C59H90O4/c1-44(2)24-15-25-45(3)26-16-27-46(4)28-17-29-47(5)30-18-31-48(6)32-19-33-49(7)34-20-35-50(8)36-21-37-51(9)38-22-39-52(10)40-23-41-53(11)42-43-55-54(12)56(60)58(62-13)59(63-14)57(55)61/h24,26,28,30,32,34,36,38,40,42H,15-23,25,27,29,31,33,35,37,39,41,43H2,1-14H3/b45-26+,46-28+,47-30+,48-32+,49-34+,50-36+,51-38+,52-40+,53-42+" + - metFrom: "Recon3D" - !!omap - - id: m03102c + - id: "m03102c" - name: "ubiquinol" - - compartment: c - - formula: C59H92O4 + - compartment: "c" + - formula: "C59H92O4" - charge: 0 - - inchis: 1S/C59H92O4/c1-44(2)24-15-25-45(3)26-16-27-46(4)28-17-29-47(5)30-18-31-48(6)32-19-33-49(7)34-20-35-50(8)36-21-37-51(9)38-22-39-52(10)40-23-41-53(11)42-43-55-54(12)56(60)58(62-13)59(63-14)57(55)61/h24,26,28,30,32,34,36,38,40,42,60-61H,15-23,25,27,29,31,33,35,37,39,41,43H2,1-14H3/b45-26+,46-28+,47-30+,48-32+,49-34+,50-36+,51-38+,52-40+,53-42+ - - metFrom: Recon3D + - inchis: "1S/C59H92O4/c1-44(2)24-15-25-45(3)26-16-27-46(4)28-17-29-47(5)30-18-31-48(6)32-19-33-49(7)34-20-35-50(8)36-21-37-51(9)38-22-39-52(10)40-23-41-53(11)42-43-55-54(12)56(60)58(62-13)59(63-14)57(55)61/h24,26,28,30,32,34,36,38,40,42,60-61H,15-23,25,27,29,31,33,35,37,39,41,43H2,1-14H3/b45-26+,46-28+,47-30+,48-32+,49-34+,50-36+,51-38+,52-40+,53-42+" + - metFrom: "Recon3D" - !!omap - - id: m03039c + - id: "m03039c" - name: "trehalose" - - compartment: c - - formula: C12H22O11 + - compartment: "c" + - formula: "C12H22O11" - charge: 0 - - inchis: 1S/C12H22O11/c13-1-3-5(15)7(17)9(19)11(21-3)23-12-10(20)8(18)6(16)4(2-14)22-12/h3-20H,1-2H2/t3-,4-,5-,6-,7+,8+,9-,10-,11-,12-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C12H22O11/c13-1-3-5(15)7(17)9(19)11(21-3)23-12-10(20)8(18)6(16)4(2-14)22-12/h3-20H,1-2H2/t3-,4-,5-,6-,7+,8+,9-,10-,11-,12-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m01095r + - id: "m01095r" - name: "5beta-cholestane-3alpha,7alpha-diol" - - compartment: r - - formula: C27H48O2 + - compartment: "r" + - formula: "C27H48O2" - charge: 0 - - inchis: 1/C27H48O2/c1-17(2)7-6-8-18(3)21-9-10-22-25-23(12-14-27(21,22)5)26(4)13-11-20(28)15-19(26)16-24(25)29/h17-25,28-29H,6-16H2,1-5H3/t18-,19+,20-,21-,22+,23+,24-,25+,26+,27-/s2 - - metFrom: Recon3D + - inchis: "1/C27H48O2/c1-17(2)7-6-8-18(3)21-9-10-22-25-23(12-14-27(21,22)5)26(4)13-11-20(28)15-19(26)16-24(25)29/h17-25,28-29H,6-16H2,1-5H3/t18-,19+,20-,21-,22+,23+,24-,25+,26+,27-/s2" + - metFrom: "Recon3D" - !!omap - - id: m01178m + - id: "m01178m" - name: "7alpha,12alpha-dihydroxycholest-4-en-3-one" - - compartment: m - - formula: C27H44O3 + - compartment: "m" + - formula: "C27H44O3" - charge: 0 - - inchis: 1S/C27H44O3/c1-16(2)7-6-8-17(3)20-9-10-21-25-22(15-24(30)27(20,21)5)26(4)12-11-19(28)13-18(26)14-23(25)29/h13,16-17,20-25,29-30H,6-12,14-15H2,1-5H3/t17-,20-,21+,22+,23-,24+,25+,26+,27-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C27H44O3/c1-16(2)7-6-8-17(3)20-9-10-21-25-22(15-24(30)27(20,21)5)26(4)12-11-19(28)13-18(26)14-23(25)29/h13,16-17,20-25,29-30H,6-12,14-15H2,1-5H3/t17-,20-,21+,22+,23-,24+,25+,26+,27-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m01447c + - id: "m01447c" - name: "cholest-5-ene-3beta,7alpha,25-triol" - - compartment: c - - formula: C27H46O3 + - compartment: "c" + - formula: "C27H46O3" - charge: 0 - - inchis: 1S/C27H46O3/c1-17(7-6-12-25(2,3)30)20-8-9-21-24-22(11-14-27(20,21)5)26(4)13-10-19(28)15-18(26)16-23(24)29/h16-17,19-24,28-30H,6-15H2,1-5H3/t17-,19+,20-,21+,22+,23-,24+,26+,27-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C27H46O3/c1-17(7-6-12-25(2,3)30)20-8-9-21-24-22(11-14-27(20,21)5)26(4)13-10-19(28)15-18(26)16-23(24)29/h16-17,19-24,28-30H,6-15H2,1-5H3/t17-,19+,20-,21+,22+,23-,24+,26+,27-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m01155s + - id: "m01155s" - name: "6-[(1S,2R)-1,2-dihydroxy-3-triphosphooxypropyl]-7,8-dihydropterin" - - compartment: s - - formula: C9H12N5O13P3 + - compartment: "s" + - formula: "C9H12N5O13P3" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01686s + - id: "m01686s" - name: "dGMP" - - compartment: s - - formula: C10H12N5O7P + - compartment: "s" + - formula: "C10H12N5O7P" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01688s + - id: "m01688s" - name: "dGTP" - - compartment: s - - formula: C10H12N5O13P3 + - compartment: "s" + - formula: "C10H12N5O13P3" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01752s + - id: "m01752s" - name: "dTMP" - - compartment: s - - formula: C10H13N2O8P + - compartment: "s" + - formula: "C10H13N2O8P" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01753s + - id: "m01753s" - name: "dTTP" - - compartment: s - - formula: C10H13N2O14P3 + - compartment: "s" + - formula: "C10H13N2O14P3" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01831s + - id: "m01831s" - name: "formaldehyde" - - compartment: s - - formula: CH2O + - compartment: "s" + - formula: "CH2O" - charge: 0 - - inchis: 1S/CH2O/c1-2/h1H2 - - metFrom: Recon3D + - inchis: "1S/CH2O/c1-2/h1H2" + - metFrom: "Recon3D" - !!omap - - id: m01967s + - id: "m01967s" - name: "glucose-1-phosphate" - - compartment: s - - formula: C6H11O9P + - compartment: "s" + - formula: "C6H11O9P" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m03127s + - id: "m03127s" - name: "uroporphyrinogen I" - - compartment: s - - formula: C40H36N4O16 + - compartment: "s" + - formula: "C40H36N4O16" - charge: -8 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01605s + - id: "m01605s" - name: "coproporphyrinogen I" - - compartment: s - - formula: C36H40N4O8 + - compartment: "s" + - formula: "C36H40N4O8" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02011s + - id: "m02011s" - name: "GM2" - - compartment: s - - formula: C50H85N3O26R + - compartment: "s" + - formula: "C50H85N3O26R" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02008s + - id: "m02008s" - name: "GM1" - - compartment: s - - formula: C56H95N3O31R + - compartment: "s" + - formula: "C56H95N3O31R" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m03108s + - id: "m03108s" - name: "UDP-glucose" - - compartment: s - - formula: C15H22N2O17P2 + - compartment: "s" + - formula: "C15H22N2O17P2" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: HC02119_c + - id: "HC02119_c" - name: "Adenosylmethioninamine-Potential" - - compartment: c - - formula: X + - compartment: "c" + - formula: "X" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02764r + - id: "m02764r" - name: "presqualene-PP" - - compartment: r - - formula: C30H49O7P2 + - compartment: "r" + - formula: "C30H49O7P2" - charge: -3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02411p + - id: "m02411p" - name: "L-palmitoylcarnitine" - - compartment: p - - formula: C23H45NO4 + - compartment: "p" + - formula: "C23H45NO4" - charge: 0 - - inchis: 1S/C23H45NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-23(27)28-21(19-22(25)26)20-24(2,3)4/h21H,5-20H2,1-4H3/t21-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C23H45NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-23(27)28-21(19-22(25)26)20-24(2,3)4/h21H,5-20H2,1-4H3/t21-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m02388p + - id: "m02388p" - name: "linoleic-carnitine" - - compartment: p - - formula: C25H45NO4 + - compartment: "p" + - formula: "C25H45NO4" - charge: 0 - - inchis: 1S/C25H45NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-25(29)30-23(21-24(27)28)22-26(2,3)4/h9-10,12-13,23H,5-8,11,14-22H2,1-4H3/b10-9-,13-12-/t23-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C25H45NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-25(29)30-23(21-24(27)28)22-26(2,3)4/h9-10,12-13,23H,5-8,11,14-22H2,1-4H3/b10-9-,13-12-/t23-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m01363p + - id: "m01363p" - name: "arachidonyl-carnitine" - - compartment: p - - formula: C27H45NO4 + - compartment: "p" + - formula: "C27H45NO4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01747s + - id: "m01747s" - name: "dTDP" - - compartment: s - - formula: C10H13N2O11P2 + - compartment: "s" + - formula: "C10H13N2O11P2" - charge: -3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00755c + - id: "m00755c" - name: "3alpha,7alpha-dihydroxy-5beta-cholest-24-enoyl-CoA" - - compartment: c - - formula: C48H74N7O19P3S + - compartment: "c" + - formula: "C48H74N7O19P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: C02528_r + - id: "C02528_r" - name: "Chenodeoxycholate" - - compartment: r - - formula: C24H39O4 + - compartment: "r" + - formula: "C24H39O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: C02528_c + - id: "C02528_c" - name: "Chenodeoxycholate" - - compartment: c - - formula: C24H39O4 + - compartment: "c" + - formula: "C24H39O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00726m + - id: "m00726m" - name: "3,4-dihydroxymandelaldehyde" - - compartment: m - - formula: C8H8O4 + - compartment: "m" + - formula: "C8H8O4" - charge: 0 - - inchis: 1/C8H8O4/c9-4-8(12)5-1-2-6(10)7(11)3-5/h1-4,8,10-12H - - metFrom: Recon3D + - inchis: "1/C8H8O4/c9-4-8(12)5-1-2-6(10)7(11)3-5/h1-4,8,10-12H" + - metFrom: "Recon3D" - !!omap - - id: m00727m + - id: "m00727m" - name: "3,4-dihydroxymandelate" - - compartment: m - - formula: C8H7O5 + - compartment: "m" + - formula: "C8H7O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02137m + - id: "m02137m" - name: "homovanillate" - - compartment: m - - formula: C9H9O4 + - compartment: "m" + - formula: "C9H9O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00818m + - id: "m00818m" - name: "3-methoxy-4-hydroxyphenylacetaldehyde" - - compartment: m - - formula: C9H10O3 + - compartment: "m" + - formula: "C9H10O3" - charge: 0 - - inchis: 1S/C9H10O3/c1-12-9-6-7(4-5-10)2-3-8(9)11/h2-3,5-6,11H,4H2,1H3 - - metFrom: Recon3D + - inchis: "1S/C9H10O3/c1-12-9-6-7(4-5-10)2-3-8(9)11/h2-3,5-6,11H,4H2,1H3" + - metFrom: "Recon3D" - !!omap - - id: m00820m + - id: "m00820m" - name: "3-methoxy-4-hydroxyphenylglycolaldehyde" - - compartment: m - - formula: C9H10O4 + - compartment: "m" + - formula: "C9H10O4" - charge: 0 - - inchis: 1/C9H10O4/c1-13-9-4-6(8(12)5-10)2-3-7(9)11/h2-5,8,11-12H,1H3 - - metFrom: Recon3D + - inchis: "1/C9H10O4/c1-13-9-4-6(8(12)5-10)2-3-7(9)11/h2-5,8,11-12H,1H3" + - metFrom: "Recon3D" - !!omap - - id: m03136m + - id: "m03136m" - name: "vanillylmandelate" - - compartment: m - - formula: C9H9O5 + - compartment: "m" + - formula: "C9H9O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02336p + - id: "m02336p" - name: "lanosterol" - - compartment: p - - formula: C30H50O + - compartment: "p" + - formula: "C30H50O" - charge: 0 - - inchis: 1S/C30H50O/c1-20(2)10-9-11-21(3)22-14-18-30(8)24-12-13-25-27(4,5)26(31)16-17-28(25,6)23(24)15-19-29(22,30)7/h10,21-22,25-26,31H,9,11-19H2,1-8H3/t21-,22-,25+,26+,28-,29-,30+/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C30H50O/c1-20(2)10-9-11-21(3)22-14-18-30(8)24-12-13-25-27(4,5)26(31)16-17-28(25,6)23(24)15-19-29(22,30)7/h10,21-22,25-26,31H,9,11-19H2,1-8H3/t21-,22-,25+,26+,28-,29-,30+/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: C02528_s + - id: "C02528_s" - name: "Chenodeoxycholate" - - compartment: s - - formula: C24H39O4 + - compartment: "s" + - formula: "C24H39O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00755m + - id: "m00755m" - name: "3alpha,7alpha-dihydroxy-5beta-cholest-24-enoyl-CoA" - - compartment: m - - formula: C48H74N7O19P3S + - compartment: "m" + - formula: "C48H74N7O19P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00968r + - id: "m00968r" - name: "4alpha-methylzymosterol" - - compartment: r - - formula: C28H46O + - compartment: "r" + - formula: "C28H46O" - charge: 0 - - inchis: 1S/C28H46O/c1-18(2)8-7-9-19(3)22-12-13-24-21-10-11-23-20(4)26(29)15-17-28(23,6)25(21)14-16-27(22,24)5/h8,19-20,22-24,26,29H,7,9-17H2,1-6H3/t19-,20+,22-,23+,24+,26+,27-,28+/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C28H46O/c1-18(2)8-7-9-19(3)22-12-13-24-21-10-11-23-20(4)26(29)15-17-28(23,6)25(21)14-16-27(22,24)5/h8,19-20,22-24,26,29H,7,9-17H2,1-6H3/t19-,20+,22-,23+,24+,26+,27-,28+/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m00051r + - id: "m00051r" - name: "(2E)-hexadecenoyl-CoA" - - compartment: r - - formula: C37H60N7O17P3S + - compartment: "r" + - formula: "C37H60N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: HC02097_c + - id: "HC02097_c" - name: "3-Oxostearoyl-ACP" - - compartment: c - - formula: C29H53N2O9PRS + - compartment: "c" + - formula: "C29H53N2O9PRS" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: HC02098_c + - id: "HC02098_c" - name: "3-Hydroxystearoyl-ACP" - - compartment: c - - formula: C29H55N2O9PSR + - compartment: "c" + - formula: "C29H55N2O9PSR" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: HC02099_c + - id: "HC02099_c" - name: "(2E)-Octadecenoyl-ACP" - - compartment: c - - formula: C29H53N2O8PSR + - compartment: "c" + - formula: "C29H53N2O8PSR" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: HC01988_c + - id: "HC01988_c" - name: "Stearoyl-ACP" - - compartment: c - - formula: C29H55N2O8PRS + - compartment: "c" + - formula: "C29H55N2O8PRS" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: HC02111_c + - id: "HC02111_c" - name: "Adenosine-5'-Triphosphate-Energy" - - compartment: c - - formula: X + - compartment: "c" + - formula: "X" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: HC02111_m + - id: "HC02111_m" - name: "Adenosine-5'-Triphosphate-Energy" - - compartment: m - - formula: X + - compartment: "m" + - formula: "X" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: HC02112_r + - id: "HC02112_r" - name: "Nadh-Redox-Potential" - - compartment: r - - formula: X + - compartment: "r" + - formula: "X" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: HC02112_c + - id: "HC02112_c" - name: "Nadh-Redox-Potential" - - compartment: c - - formula: X + - compartment: "c" + - formula: "X" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: HC02112_m + - id: "HC02112_m" - name: "Nadh-Redox-Potential" - - compartment: m - - formula: X + - compartment: "m" + - formula: "X" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: HC02112_p + - id: "HC02112_p" - name: "Nadh-Redox-Potential" - - compartment: p - - formula: X + - compartment: "p" + - formula: "X" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: HC02113_r + - id: "HC02113_r" - name: "Nadph-Redox-Potential" - - compartment: r - - formula: X + - compartment: "r" + - formula: "X" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: HC02113_c + - id: "HC02113_c" - name: "Nadph-Redox-Potential" - - compartment: c - - formula: X + - compartment: "c" + - formula: "X" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: HC02113_m + - id: "HC02113_m" - name: "Nadph-Redox-Potential" - - compartment: m - - formula: X + - compartment: "m" + - formula: "X" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: HC02113_p + - id: "HC02113_p" - name: "Nadph-Redox-Potential" - - compartment: p - - formula: X + - compartment: "p" + - formula: "X" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: HC02114_c + - id: "HC02114_c" - name: "Fadh-Redox-Potential" - - compartment: c - - formula: X + - compartment: "c" + - formula: "X" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: HC02115_m + - id: "HC02115_m" - name: "Proton-Gradient" - - compartment: m - - formula: X + - compartment: "m" + - formula: "X" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: HC02115_c + - id: "HC02115_c" - name: "Proton-Gradient" - - compartment: c - - formula: X + - compartment: "c" + - formula: "X" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE0692_m + - id: "CE0692_m" - name: "3-Oxolaur-Cis-5-Enoyl Coenzyme A" - - compartment: m - - formula: C33H50N7O18P3S + - compartment: "m" + - formula: "C33H50N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: HC02154_c + - id: "HC02154_c" - name: "Gm4-Pool" - - compartment: c - - formula: X + - compartment: "c" + - formula: "X" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: HC02154_s + - id: "HC02154_s" - name: "Gm4-Pool" - - compartment: s - - formula: X + - compartment: "s" + - formula: "X" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00270s + - id: "m00270s" - name: "10-HETE" - - compartment: s - - formula: C20H31O3 + - compartment: "s" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: C01241_m + - id: "C01241_m" - name: "Phosphatidyl-N-Methylethanolamine" - - compartment: m - - formula: C8H14NO8PR2 + - compartment: "m" + - formula: "C8H14NO8PR2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: C04308_m + - id: "C04308_m" - name: "Phosphatidyl-N-Dimethylethanolamine" - - compartment: m - - formula: C9H15NO8PR2 + - compartment: "m" + - formula: "C9H15NO8PR2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: C01241_r + - id: "C01241_r" - name: "Phosphatidyl-N-Methylethanolamine" - - compartment: r - - formula: C8H14NO8PR2 + - compartment: "r" + - formula: "C8H14NO8PR2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: C04308_r + - id: "C04308_r" - name: "Phosphatidyl-N-Dimethylethanolamine" - - compartment: r - - formula: C9H15NO8PR2 + - compartment: "r" + - formula: "C9H15NO8PR2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02938m + - id: "m02938m" - name: "stearate" - - compartment: m - - formula: C18H35O2 + - compartment: "m" + - formula: "C18H35O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02938p + - id: "m02938p" - name: "stearate" - - compartment: p - - formula: C18H35O2 + - compartment: "p" + - formula: "C18H35O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00083c + - id: "m00083c" - name: "(3S)-3-hydroxylinoleoyl-CoA" - - compartment: c - - formula: C39H62N7O18P3S + - compartment: "c" + - formula: "C39H62N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00884c + - id: "m00884c" - name: "3-oxolinoleoyl-CoA" - - compartment: c - - formula: C39H60N7O18P3S + - compartment: "c" + - formula: "C39H60N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01597s + - id: "m01597s" - name: "CoA" - - compartment: s - - formula: C21H32N7O16P3S + - compartment: "s" + - formula: "C21H32N7O16P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02444s + - id: "m02444s" - name: "malonyl-CoA" - - compartment: s - - formula: C24H33N7O19P3S + - compartment: "s" + - formula: "C24H33N7O19P3S" - charge: -5 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01773s + - id: "m01773s" - name: "eicosanoyl-CoA" - - compartment: s - - formula: C41H70N7O17P3S + - compartment: "s" + - formula: "C41H70N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00866s + - id: "m00866s" - name: "3-oxodocosanoyl-CoA" - - compartment: s - - formula: C43H72N7O18P3S + - compartment: "s" + - formula: "C43H72N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00040n + - id: "m00040n" - name: "(2E)-docosenoyl-CoA" - - compartment: n - - formula: C43H72N7O17P3S + - compartment: "n" + - formula: "C43H72N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01725n + - id: "m01725n" - name: "docosanoyl-CoA" - - compartment: n - - formula: C43H74N7O17P3S + - compartment: "n" + - formula: "C43H74N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02444n + - id: "m02444n" - name: "malonyl-CoA" - - compartment: n - - formula: C24H33N7O19P3S + - compartment: "n" + - formula: "C24H33N7O19P3S" - charge: -5 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00904n + - id: "m00904n" - name: "3-oxotetracosanoyl-CoA" - - compartment: n - - formula: C45H76N7O18P3S + - compartment: "n" + - formula: "C45H76N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01771m + - id: "m01771m" - name: "eicosanoate" - - compartment: m - - formula: C20H39O2 + - compartment: "m" + - formula: "C20H39O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01771p + - id: "m01771p" - name: "eicosanoate" - - compartment: p - - formula: C20H39O2 + - compartment: "p" + - formula: "C20H39O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01373m + - id: "m01373m" - name: "behenic acid" - - compartment: m - - formula: C22H43O2 + - compartment: "m" + - formula: "C22H43O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01373p + - id: "m01373p" - name: "behenic acid" - - compartment: p - - formula: C22H43O2 + - compartment: "p" + - formula: "C22H43O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02385m + - id: "m02385m" - name: "lignocerate" - - compartment: m - - formula: C24H47O2 + - compartment: "m" + - formula: "C24H47O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02385p + - id: "m02385p" - name: "lignocerate" - - compartment: p - - formula: C24H47O2 + - compartment: "p" + - formula: "C24H47O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01596l + - id: "m01596l" - name: "CO2" - - compartment: l - - formula: CO2 + - compartment: "l" + - formula: "CO2" - charge: 0 - - inchis: 1S/CO2/c2-1-3 - - metFrom: Recon3D + - inchis: "1S/CO2/c2-1-3" + - metFrom: "Recon3D" - !!omap - - id: m00890l + - id: "m00890l" - name: "3-oxooctadecanoyl-CoA" - - compartment: l - - formula: C39H64N7O18P3S + - compartment: "l" + - formula: "C39H64N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02678l + - id: "m02678l" - name: "palmitoyl-CoA" - - compartment: l - - formula: C37H62N7O17P3S + - compartment: "l" + - formula: "C37H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02444l + - id: "m02444l" - name: "malonyl-CoA" - - compartment: l - - formula: C24H33N7O19P3S + - compartment: "l" + - formula: "C24H33N7O19P3S" - charge: -5 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00890r + - id: "m00890r" - name: "3-oxooctadecanoyl-CoA" - - compartment: r - - formula: C39H64N7O18P3S + - compartment: "r" + - formula: "C39H64N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00793r + - id: "m00793r" - name: "3-hydroxyoctadecanoyl-CoA" - - compartment: r - - formula: C39H66N7O18P3S + - compartment: "r" + - formula: "C39H66N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00057n + - id: "m00057n" - name: "(2E)-octadecenoyl-CoA" - - compartment: n - - formula: C39H64N7O17P3S + - compartment: "n" + - formula: "C39H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00793n + - id: "m00793n" - name: "3-hydroxyoctadecanoyl-CoA" - - compartment: n - - formula: C39H66N7O18P3S + - compartment: "n" + - formula: "C39H66N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02941n + - id: "m02941n" - name: "stearoyl-CoA" - - compartment: n - - formula: C39H66N7O17P3S + - compartment: "n" + - formula: "C39H66N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02158s + - id: "m02158s" - name: "hypothiocyanite" - - compartment: s - - formula: CHNOS + - compartment: "s" + - formula: "CHNOS" - charge: 0 - - inchis: 1S/CHNOS/c2-1-4-3/h3H - - metFrom: Recon3D + - inchis: "1S/CHNOS/c2-1-4-3/h3H" + - metFrom: "Recon3D" - !!omap - - id: m02986l + - id: "m02986l" - name: "thiocyanate" - - compartment: l - - formula: CNS + - compartment: "l" + - formula: "CNS" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02158l + - id: "m02158l" - name: "hypothiocyanite" - - compartment: l - - formula: CHNOS + - compartment: "l" + - formula: "CHNOS" - charge: 0 - - inchis: 1S/CHNOS/c2-1-4-3/h3H - - metFrom: Recon3D + - inchis: "1S/CHNOS/c2-1-4-3/h3H" + - metFrom: "Recon3D" - !!omap - - id: m02158m + - id: "m02158m" - name: "hypothiocyanite" - - compartment: m - - formula: CHNOS + - compartment: "m" + - formula: "CHNOS" - charge: 0 - - inchis: 1S/CHNOS/c2-1-4-3/h3H - - metFrom: Recon3D + - inchis: "1S/CHNOS/c2-1-4-3/h3H" + - metFrom: "Recon3D" - !!omap - - id: m02986n + - id: "m02986n" - name: "thiocyanate" - - compartment: n - - formula: CNS + - compartment: "n" + - formula: "CNS" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02158n + - id: "m02158n" - name: "hypothiocyanite" - - compartment: n - - formula: CHNOS + - compartment: "n" + - formula: "CHNOS" - charge: 0 - - inchis: 1S/CHNOS/c2-1-4-3/h3H - - metFrom: Recon3D + - inchis: "1S/CHNOS/c2-1-4-3/h3H" + - metFrom: "Recon3D" - !!omap - - id: m02946g + - id: "m02946g" - name: "sulfate" - - compartment: g - - formula: O4S + - compartment: "g" + - formula: "O4S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00721g + - id: "m00721g" - name: "3,3-diiodo-L-thyronine-4-O-sulfate" - - compartment: g - - formula: C15H12I2NO7S + - compartment: "g" + - formula: "C15H12I2NO7S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00720g + - id: "m00720g" - name: "3,3-diiodo-L-thyronine" - - compartment: g - - formula: C15H13I2NO4 + - compartment: "g" + - formula: "C15H13I2NO4" - charge: 0 - - inchis: 1S/C15H13I2NO4/c16-10-7-9(2-3-13(10)19)22-14-4-1-8(5-11(14)17)6-12(18)15(20)21/h1-5,7,12,19H,6,18H2,(H,20,21)/t12-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C15H13I2NO4/c16-10-7-9(2-3-13(10)19)22-14-4-1-8(5-11(14)17)6-12(18)15(20)21/h1-5,7,12,19H,6,18H2,(H,20,21)/t12-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m00721r + - id: "m00721r" - name: "3,3-diiodo-L-thyronine-4-O-sulfate" - - compartment: r - - formula: C15H12I2NO7S + - compartment: "r" + - formula: "C15H12I2NO7S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: maltttr_c + - id: "maltttr_c" - name: "Maltotetraose" - - compartment: c - - formula: C24H42O21 + - compartment: "c" + - formula: "C24H42O21" - charge: 0 - - inchis: 1S/C24H42O21/c25-1-5-9(29)10(30)15(35)22(40-5)44-19-7(3-27)42-24(17(37)12(19)32)45-20-8(4-28)41-23(16(36)13(20)33)43-18-6(2-26)39-21(38)14(34)11(18)31/h5-38H,1-4H2/t5-,6-,7-,8-,9-,10+,11-,12-,13-,14-,15-,16-,17-,18-,19-,20-,21?,22-,23-,24-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C24H42O21/c25-1-5-9(29)10(30)15(35)22(40-5)44-19-7(3-27)42-24(17(37)12(19)32)45-20-8(4-28)41-23(16(36)13(20)33)43-18-6(2-26)39-21(38)14(34)11(18)31/h5-38H,1-4H2/t5-,6-,7-,8-,9-,10+,11-,12-,13-,14-,15-,16-,17-,18-,19-,20-,21?,22-,23-,24-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: maltttr_s + - id: "maltttr_s" - name: "Maltotetraose" - - compartment: s - - formula: C24H42O21 + - compartment: "s" + - formula: "C24H42O21" - charge: 0 - - inchis: 1S/C24H42O21/c25-1-5-9(29)10(30)15(35)22(40-5)44-19-7(3-27)42-24(17(37)12(19)32)45-20-8(4-28)41-23(16(36)13(20)33)43-18-6(2-26)39-21(38)14(34)11(18)31/h5-38H,1-4H2/t5-,6-,7-,8-,9-,10+,11-,12-,13-,14-,15-,16-,17-,18-,19-,20-,21?,22-,23-,24-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C24H42O21/c25-1-5-9(29)10(30)15(35)22(40-5)44-19-7(3-27)42-24(17(37)12(19)32)45-20-8(4-28)41-23(16(36)13(20)33)43-18-6(2-26)39-21(38)14(34)11(18)31/h5-38H,1-4H2/t5-,6-,7-,8-,9-,10+,11-,12-,13-,14-,15-,16-,17-,18-,19-,20-,21?,22-,23-,24-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m00737g + - id: "m00737g" - name: "3,5-diiodo-L-thyronine-4-O-sulfate" - - compartment: g - - formula: C15H12I2NO7S + - compartment: "g" + - formula: "C15H12I2NO7S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00736g + - id: "m00736g" - name: "3,5-diiodo-L-thyronine" - - compartment: g - - formula: C15H13I2NO4 + - compartment: "g" + - formula: "C15H13I2NO4" - charge: 0 - - inchis: 1S/C15H13I2NO4/c16-11-6-10(7-12(17)14(11)19)22-9-3-1-8(2-4-9)5-13(18)15(20)21/h1-4,6-7,13,19H,5,18H2,(H,20,21)/t13-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C15H13I2NO4/c16-11-6-10(7-12(17)14(11)19)22-9-3-1-8(2-4-9)5-13(18)15(20)21/h1-4,6-7,13,19H,5,18H2,(H,20,21)/t13-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m00737r + - id: "m00737r" - name: "3,5-diiodo-L-thyronine-4-O-sulfate" - - compartment: r - - formula: C15H12I2NO7S + - compartment: "r" + - formula: "C15H12I2NO7S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00829g + - id: "m00829g" - name: "3-monoiodo-L-thyronine-4-O-sulfate" - - compartment: g - - formula: C15H13INO7S + - compartment: "g" + - formula: "C15H13INO7S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00828g + - id: "m00828g" - name: "3-monoiodo-L-thyronine" - - compartment: g - - formula: C15H14INO4 + - compartment: "g" + - formula: "C15H14INO4" - charge: 0 - - inchis: 1/C15H14INO4/c16-12-7-9(8-13(17)15(19)20)1-6-14(12)21-11-4-2-10(18)3-5-11/h1-7,13,18H,8,17H2,(H,19,20) - - metFrom: Recon3D + - inchis: "1/C15H14INO4/c16-12-7-9(8-13(17)15(19)20)1-6-14(12)21-11-4-2-10(18)3-5-11/h1-7,13,18H,8,17H2,(H,19,20)" + - metFrom: "Recon3D" - !!omap - - id: m00829r + - id: "m00829r" - name: "3-monoiodo-L-thyronine-4-O-sulfate" - - compartment: r - - formula: C15H13INO7S + - compartment: "r" + - formula: "C15H13INO7S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE2881_c + - id: "CE2881_c" - name: "3,5,3,5-Tetraiodothyroacetate" - - compartment: c - - formula: C14H7I4O4 + - compartment: "c" + - formula: "C14H7I4O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE2885_c + - id: "CE2885_c" - name: "3,5,3,5-Tetraiodothyroacetate-Beta-D-Glucuronoside" - - compartment: c - - formula: C20H14I4O10 + - compartment: "c" + - formula: "C20H14I4O10" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE2881_r + - id: "CE2881_r" - name: "3,5,3,5-Tetraiodothyroacetate" - - compartment: r - - formula: C14H7I4O4 + - compartment: "r" + - formula: "C14H7I4O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE2885_r + - id: "CE2885_r" - name: "3,5,3,5-Tetraiodothyroacetate-Beta-D-Glucuronoside" - - compartment: r - - formula: C20H14I4O10 + - compartment: "r" + - formula: "C20H14I4O10" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE2882_c + - id: "CE2882_c" - name: "3,3,5-Triiodothyroacetate" - - compartment: c - - formula: C14H8I3O4 + - compartment: "c" + - formula: "C14H8I3O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE2886_c + - id: "CE2886_c" - name: "3,3,5-Triiodothyroacetate-Beta-D-Glucuronoside" - - compartment: c - - formula: C20H15I3O10 + - compartment: "c" + - formula: "C20H15I3O10" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE2882_r + - id: "CE2882_r" - name: "3,3,5-Triiodothyroacetate" - - compartment: r - - formula: C14H8I3O4 + - compartment: "r" + - formula: "C14H8I3O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE2886_r + - id: "CE2886_r" - name: "3,3,5-Triiodothyroacetate-Beta-D-Glucuronoside" - - compartment: r - - formula: C20H15I3O10 + - compartment: "r" + - formula: "C20H15I3O10" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: maltpt_s + - id: "maltpt_s" - name: "Maltopentaose" - - compartment: s - - formula: C30H52O26 + - compartment: "s" + - formula: "C30H52O26" - charge: 0 - - inchis: 1S/C30H52O26/c31-1-6-11(36)12(37)18(43)27(49-6)54-23-8(3-33)51-29(20(45)14(23)39)56-25-10(5-35)52-30(21(46)16(25)41)55-24-9(4-34)50-28(19(44)15(24)40)53-22-7(2-32)48-26(47)17(42)13(22)38/h6-47H,1-5H2/t6-,7-,8-,9-,10-,11-,12+,13-,14-,15-,16-,17-,18-,19-,20-,21-,22-,23-,24-,25-,26?,27-,28-,29-,30-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C30H52O26/c31-1-6-11(36)12(37)18(43)27(49-6)54-23-8(3-33)51-29(20(45)14(23)39)56-25-10(5-35)52-30(21(46)16(25)41)55-24-9(4-34)50-28(19(44)15(24)40)53-22-7(2-32)48-26(47)17(42)13(22)38/h6-47H,1-5H2/t6-,7-,8-,9-,10-,11-,12+,13-,14-,15-,16-,17-,18-,19-,20-,21-,22-,23-,24-,25-,26?,27-,28-,29-,30-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: CE2883_c + - id: "CE2883_c" - name: "3,5,3-Triiodothyroacetate" - - compartment: c - - formula: C14H8I3O4 + - compartment: "c" + - formula: "C14H8I3O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE2887_c + - id: "CE2887_c" - name: "3,5,3-Triiodothyroacetate-Beta-D-Glucuronoside" - - compartment: c - - formula: C20H15I3O10 + - compartment: "c" + - formula: "C20H15I3O10" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE2883_r + - id: "CE2883_r" - name: "3,5,3-Triiodothyroacetate" - - compartment: r - - formula: C14H8I3O4 + - compartment: "r" + - formula: "C14H8I3O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE2887_r + - id: "CE2887_r" - name: "3,5,3-Triiodothyroacetate-Beta-D-Glucuronoside" - - compartment: r - - formula: C20H15I3O10 + - compartment: "r" + - formula: "C20H15I3O10" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE2884_c + - id: "CE2884_c" - name: "3,5-Diiodothyroacetate" - - compartment: c - - formula: C14H9I2O4 + - compartment: "c" + - formula: "C14H9I2O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE2888_c + - id: "CE2888_c" - name: "3,5-Diiodothyroacetate-Beta-D-Glucuronoside" - - compartment: c - - formula: C20H16I2O10 + - compartment: "c" + - formula: "C20H16I2O10" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE2884_r + - id: "CE2884_r" - name: "3,5-Diiodothyroacetate" - - compartment: r - - formula: C14H9I2O4 + - compartment: "r" + - formula: "C14H9I2O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE2888_r + - id: "CE2888_r" - name: "3,5-Diiodothyroacetate-Beta-D-Glucuronoside" - - compartment: r - - formula: C20H16I2O10 + - compartment: "r" + - formula: "C20H16I2O10" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: malthx_s + - id: "malthx_s" - name: "Maltohexaose" - - compartment: s - - formula: C36H62O31 + - compartment: "s" + - formula: "C36H62O31" - charge: 0 - - inchis: 1S/C36H62O31/c37-1-7-13(43)14(44)21(51)32(58-7)64-27-9(3-39)60-34(23(53)16(27)46)66-29-11(5-41)62-36(25(55)18(29)48)67-30-12(6-42)61-35(24(54)19(30)49)65-28-10(4-40)59-33(22(52)17(28)47)63-26-8(2-38)57-31(56)20(50)15(26)45/h7-56H,1-6H2/t7-,8-,9-,10-,11-,12-,13-,14+,15-,16-,17-,18-,19-,20-,21-,22-,23-,24-,25-,26-,27-,28-,29-,30-,31?,32-,33-,34-,35-,36-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C36H62O31/c37-1-7-13(43)14(44)21(51)32(58-7)64-27-9(3-39)60-34(23(53)16(27)46)66-29-11(5-41)62-36(25(55)18(29)48)67-30-12(6-42)61-35(24(54)19(30)49)65-28-10(4-40)59-33(22(52)17(28)47)63-26-8(2-38)57-31(56)20(50)15(26)45/h7-56H,1-6H2/t7-,8-,9-,10-,11-,12-,13-,14+,15-,16-,17-,18-,19-,20-,21-,22-,23-,24-,25-,26-,27-,28-,29-,30-,31?,32-,33-,34-,35-,36-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m01387s + - id: "m01387s" - name: "beta-casomorphin" - - compartment: s - - formula: C44H60N7O11 + - compartment: "s" + - formula: "C44H60N7O11" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01386s + - id: "m01386s" - name: "beta-casomorphin (1-6)" - - compartment: s - - formula: C38H49N6O10 + - compartment: "s" + - formula: "C38H49N6O10" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02563s + - id: "m02563s" - name: "neocasomorphin" - - compartment: s - - formula: C35H51N6O10 + - compartment: "s" + - formula: "C35H51N6O10" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02562s + - id: "m02562s" - name: "neocasomorphin (1-5)" - - compartment: s - - formula: C29H40N5O9 + - compartment: "s" + - formula: "C29H40N5O9" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01348s + - id: "m01348s" - name: "apelin-13" - - compartment: s - - formula: C69H114N23O16S + - compartment: "s" + - formula: "C69H114N23O16S" - charge: 3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01347s + - id: "m01347s" - name: "apelin-(1-12)" - - compartment: s - - formula: C60H105N22O15S + - compartment: "s" + - formula: "C60H105N22O15S" - charge: 3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: malthp_s + - id: "malthp_s" - name: "Maltoheptaose" - - compartment: s - - formula: C42H72O36 + - compartment: "s" + - formula: "C42H72O36" - charge: 0 - - inchis: 1S/C42H72O36/c43-1-8-15(50)16(51)24(59)37(67-8)74-31-10(3-45)69-39(26(61)18(31)53)76-33-12(5-47)71-41(28(63)20(33)55)78-35-14(7-49)72-42(29(64)22(35)57)77-34-13(6-48)70-40(27(62)21(34)56)75-32-11(4-46)68-38(25(60)19(32)54)73-30-9(2-44)66-36(65)23(58)17(30)52/h8-65H,1-7H2/t8-,9-,10-,11-,12-,13-,14-,15-,16+,17-,18-,19-,20-,21-,22-,23-,24-,25-,26-,27-,28-,29-,30-,31-,32-,33-,34-,35-,36?,37-,38-,39-,40-,41-,42-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C42H72O36/c43-1-8-15(50)16(51)24(59)37(67-8)74-31-10(3-45)69-39(26(61)18(31)53)76-33-12(5-47)71-41(28(63)20(33)55)78-35-14(7-49)72-42(29(64)22(35)57)77-34-13(6-48)70-40(27(62)21(34)56)75-32-11(4-46)68-38(25(60)19(32)54)73-30-9(2-44)66-36(65)23(58)17(30)52/h8-65H,1-7H2/t8-,9-,10-,11-,12-,13-,14-,15-,16+,17-,18-,19-,20-,21-,22-,23-,24-,25-,26-,27-,28-,29-,30-,31-,32-,33-,34-,35-,36?,37-,38-,39-,40-,41-,42-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: CE1950_c + - id: "CE1950_c" - name: "Cyanosulfurous Acid Anion" - - compartment: c - - formula: CH2NO2S + - compartment: "c" + - formula: "CH2NO2S" - charge: 0 - - inchis: 1S/CH2NO2S/c2-1-5(3)4/h3-4H - - metFrom: Recon3D + - inchis: "1S/CH2NO2S/c2-1-5(3)4/h3-4H" + - metFrom: "Recon3D" - !!omap - - id: cynt_c + - id: "cynt_c" - name: "Cyanate" - - compartment: c - - formula: CNO + - compartment: "c" + - formula: "CNO" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE1950_s + - id: "CE1950_s" - name: "Cyanosulfurous Acid Anion" - - compartment: s - - formula: CH2NO2S + - compartment: "s" + - formula: "CH2NO2S" - charge: 0 - - inchis: 1S/CH2NO2S/c2-1-5(3)4/h3-4H - - metFrom: Recon3D + - inchis: "1S/CH2NO2S/c2-1-5(3)4/h3-4H" + - metFrom: "Recon3D" - !!omap - - id: cynt_s + - id: "cynt_s" - name: "Cyanate" - - compartment: s - - formula: CNO + - compartment: "s" + - formula: "CNO" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02949l + - id: "m02949l" - name: "sulfite" - - compartment: l - - formula: O3S + - compartment: "l" + - formula: "O3S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE1950_l + - id: "CE1950_l" - name: "Cyanosulfurous Acid Anion" - - compartment: l - - formula: CH2NO2S + - compartment: "l" + - formula: "CH2NO2S" - charge: 0 - - inchis: 1S/CH2NO2S/c2-1-5(3)4/h3-4H - - metFrom: Recon3D + - inchis: "1S/CH2NO2S/c2-1-5(3)4/h3-4H" + - metFrom: "Recon3D" - !!omap - - id: cynt_l + - id: "cynt_l" - name: "Cyanate" - - compartment: l - - formula: CNO + - compartment: "l" + - formula: "CNO" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02949n + - id: "m02949n" - name: "sulfite" - - compartment: n - - formula: O3S + - compartment: "n" + - formula: "O3S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE1950_n + - id: "CE1950_n" - name: "Cyanosulfurous Acid Anion" - - compartment: n - - formula: CH2NO2S + - compartment: "n" + - formula: "CH2NO2S" - charge: 0 - - inchis: 1S/CH2NO2S/c2-1-5(3)4/h3-4H - - metFrom: Recon3D + - inchis: "1S/CH2NO2S/c2-1-5(3)4/h3-4H" + - metFrom: "Recon3D" - !!omap - - id: cynt_n + - id: "cynt_n" - name: "Cyanate" - - compartment: n - - formula: CNO + - compartment: "n" + - formula: "CNO" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02573m + - id: "m02573m" - name: "neurotensin" - - compartment: m - - formula: C78H122N21O20 + - compartment: "m" + - formula: "C78H122N21O20" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02571m + - id: "m02571m" - name: "neurotensin 1-10" - - compartment: m - - formula: C57H91N18O16 + - compartment: "m" + - formula: "C57H91N18O16" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02572m + - id: "m02572m" - name: "neurotensin 11-13" - - compartment: m - - formula: C21H33N3O5 + - compartment: "m" + - formula: "C21H33N3O5" - charge: 0 - - inchis: 1S/C21H33N3O5/c1-5-13(4)18(20(27)23-17(21(28)29)10-12(2)3)24-19(26)16(22)11-14-6-8-15(25)9-7-14/h6-9,12-13,16-18,25H,5,10-11,22H2,1-4H3,(H,23,27)(H,24,26)(H,28,29)/t13?,16-,17-,18+/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C21H33N3O5/c1-5-13(4)18(20(27)23-17(21(28)29)10-12(2)3)24-19(26)16(22)11-14-6-8-15(25)9-7-14/h6-9,12-13,16-18,25H,5,10-11,22H2,1-4H3,(H,23,27)(H,24,26)(H,28,29)/t13?,16-,17-,18+/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: CE2891_c + - id: "CE2891_c" - name: "Dynorphin B" - - compartment: c - - formula: C74H118N21O17 + - compartment: "c" + - formula: "C74H118N21O17" - charge: 3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE4753_c + - id: "CE4753_c" - name: "Dynorphin B (10-13)" - - compartment: c - - formula: C20H40N5O6 + - compartment: "c" + - formula: "C20H40N5O6" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE4754_c + - id: "CE4754_c" - name: "Dynorphin B (6-9)" - - compartment: c - - formula: C26H45N11O6 + - compartment: "c" + - formula: "C26H45N11O6" - charge: 2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00971m + - id: "m00971m" - name: "4-androstene-3,17-dione" - - compartment: m - - formula: C19H26O2 + - compartment: "m" + - formula: "C19H26O2" - charge: 0 - - inchis: 1S/C19H26O2/c1-18-9-7-13(20)11-12(18)3-4-14-15-5-6-17(21)19(15,2)10-8-16(14)18/h11,14-16H,3-10H2,1-2H3/t14-,15-,16-,18-,19-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C19H26O2/c1-18-9-7-13(20)11-12(18)3-4-14-15-5-6-17(21)19(15,2)10-8-16(14)18/h11,14-16H,3-10H2,1-2H3/t14-,15-,16-,18-,19-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m00409m + - id: "m00409m" - name: "17alpha-hydroxyprogesterone" - - compartment: m - - formula: C21H30O3 + - compartment: "m" + - formula: "C21H30O3" - charge: 0 - - inchis: 1S/C21H30O3/c1-13(22)21(24)11-8-18-16-5-4-14-12-15(23)6-9-19(14,2)17(16)7-10-20(18,21)3/h12,16-18,24H,4-11H2,1-3H3/t16-,17+,18+,19+,20+,21+/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C21H30O3/c1-13(22)21(24)11-8-18-16-5-4-14-12-15(23)6-9-19(14,2)17(16)7-10-20(18,21)3/h12,16-18,24H,4-11H2,1-3H3/t16-,17+,18+,19+,20+,21+/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m00408g + - id: "m00408g" - name: "17alpha-hydroxypregnenolone" - - compartment: g - - formula: C21H32O3 + - compartment: "g" + - formula: "C21H32O3" - charge: 0 - - inchis: 1S/C21H32O3/c1-13(22)21(24)11-8-18-16-5-4-14-12-15(23)6-9-19(14,2)17(16)7-10-20(18,21)3/h4,15-18,23-24H,5-12H2,1-3H3/t15-,16+,17-,18-,19-,20-,21-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C21H32O3/c1-13(22)21(24)11-8-18-16-5-4-14-12-15(23)6-9-19(14,2)17(16)7-10-20(18,21)3/h4,15-18,23-24H,5-12H2,1-3H3/t15-,16+,17-,18-,19-,20-,21-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m00407g + - id: "m00407g" - name: "17alpha-hydroxypregnenolone sulfate" - - compartment: g - - formula: C21H31O6S + - compartment: "g" + - formula: "C21H31O6S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00408l + - id: "m00408l" - name: "17alpha-hydroxypregnenolone" - - compartment: l - - formula: C21H32O3 + - compartment: "l" + - formula: "C21H32O3" - charge: 0 - - inchis: 1S/C21H32O3/c1-13(22)21(24)11-8-18-16-5-4-14-12-15(23)6-9-19(14,2)17(16)7-10-20(18,21)3/h4,15-18,23-24H,5-12H2,1-3H3/t15-,16+,17-,18-,19-,20-,21-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C21H32O3/c1-13(22)21(24)11-8-18-16-5-4-14-12-15(23)6-9-19(14,2)17(16)7-10-20(18,21)3/h4,15-18,23-24H,5-12H2,1-3H3/t15-,16+,17-,18-,19-,20-,21-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m00407l + - id: "m00407l" - name: "17alpha-hydroxypregnenolone sulfate" - - compartment: l - - formula: C21H31O6S + - compartment: "l" + - formula: "C21H31O6S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00407r + - id: "m00407r" - name: "17alpha-hydroxypregnenolone sulfate" - - compartment: r - - formula: C21H31O6S + - compartment: "r" + - formula: "C21H31O6S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01512g + - id: "m01512g" - name: "cholesterol-sulfate" - - compartment: g - - formula: C27H45O4S + - compartment: "g" + - formula: "C27H45O4S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01512l + - id: "m01512l" - name: "cholesterol-sulfate" - - compartment: l - - formula: C27H45O4S + - compartment: "l" + - formula: "C27H45O4S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01660m + - id: "m01660m" - name: "dehydroepiandrosterone" - - compartment: m - - formula: C19H28O2 + - compartment: "m" + - formula: "C19H28O2" - charge: 0 - - inchis: 1S/C19H28O2/c1-18-9-7-13(20)11-12(18)3-4-14-15-5-6-17(21)19(15,2)10-8-16(14)18/h3,13-16,20H,4-11H2,1-2H3/t13-,14-,15-,16-,18-,19-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C19H28O2/c1-18-9-7-13(20)11-12(18)3-4-14-15-5-6-17(21)19(15,2)10-8-16(14)18/h3,13-16,20H,4-11H2,1-2H3/t13-,14-,15-,16-,18-,19-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m00408m + - id: "m00408m" - name: "17alpha-hydroxypregnenolone" - - compartment: m - - formula: C21H32O3 + - compartment: "m" + - formula: "C21H32O3" - charge: 0 - - inchis: 1S/C21H32O3/c1-13(22)21(24)11-8-18-16-5-4-14-12-15(23)6-9-19(14,2)17(16)7-10-20(18,21)3/h4,15-18,23-24H,5-12H2,1-3H3/t15-,16+,17-,18-,19-,20-,21-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C21H32O3/c1-13(22)21(24)11-8-18-16-5-4-14-12-15(23)6-9-19(14,2)17(16)7-10-20(18,21)3/h4,15-18,23-24H,5-12H2,1-3H3/t15-,16+,17-,18-,19-,20-,21-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m02763g + - id: "m02763g" - name: "pregnenolone" - - compartment: g - - formula: C21H32O2 + - compartment: "g" + - formula: "C21H32O2" - charge: 0 - - inchis: 1S/C21H32O2/c1-13(22)17-6-7-18-16-5-4-14-12-15(23)8-10-20(14,2)19(16)9-11-21(17,18)3/h4,15-19,23H,5-12H2,1-3H3/t15-,16-,17+,18-,19-,20-,21+/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C21H32O2/c1-13(22)17-6-7-18-16-5-4-14-12-15(23)8-10-20(14,2)19(16)9-11-21(17,18)3/h4,15-19,23H,5-12H2,1-3H3/t15-,16-,17+,18-,19-,20-,21+/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m02762g + - id: "m02762g" - name: "pregnenolone sulfate" - - compartment: g - - formula: C21H31O5S + - compartment: "g" + - formula: "C21H31O5S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02763l + - id: "m02763l" - name: "pregnenolone" - - compartment: l - - formula: C21H32O2 + - compartment: "l" + - formula: "C21H32O2" - charge: 0 - - inchis: 1S/C21H32O2/c1-13(22)17-6-7-18-16-5-4-14-12-15(23)8-10-20(14,2)19(16)9-11-21(17,18)3/h4,15-19,23H,5-12H2,1-3H3/t15-,16-,17+,18-,19-,20-,21+/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C21H32O2/c1-13(22)17-6-7-18-16-5-4-14-12-15(23)8-10-20(14,2)19(16)9-11-21(17,18)3/h4,15-19,23H,5-12H2,1-3H3/t15-,16-,17+,18-,19-,20-,21+/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m02762l + - id: "m02762l" - name: "pregnenolone sulfate" - - compartment: l - - formula: C21H31O5S + - compartment: "l" + - formula: "C21H31O5S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02319m + - id: "m02319m" - name: "kynurenine" - - compartment: m - - formula: C10H12N2O3 + - compartment: "m" + - formula: "C10H12N2O3" - charge: 0 - - inchis: 1/C10H12N2O3/c11-7-4-2-1-3-6(7)9(13)5-8(12)10(14)15/h1-4,8H,5,11-12H2,(H,14,15)/t8-/s2 - - metFrom: Recon3D + - inchis: "1/C10H12N2O3/c11-7-4-2-1-3-6(7)9(13)5-8(12)10(14)15/h1-4,8H,5,11-12H2,(H,14,15)/t8-/s2" + - metFrom: "Recon3D" - !!omap - - id: m00990m + - id: "m00990m" - name: "4-hydroxy-2-quinolinecarboxylic acid" - - compartment: m - - formula: C10H6NO3 + - compartment: "m" + - formula: "C10H6NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02736m + - id: "m02736m" - name: "phosphatidylinositol-4,5-bisphosphate" - - compartment: m - - formula: C11H14O19P3R2 + - compartment: "m" + - formula: "C11H14O19P3R2" - charge: -5 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00554m + - id: "m00554m" - name: "1-phosphatidyl-1D-myo-inositol-5-phosphate" - - compartment: m - - formula: C11H15O16P2R2 + - compartment: "m" + - formula: "C11H15O16P2R2" - charge: -3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02387m + - id: "m02387m" - name: "linoleate" - - compartment: m - - formula: C18H31O2 + - compartment: "m" + - formula: "C18H31O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02387p + - id: "m02387p" - name: "linoleate" - - compartment: p - - formula: C18H31O2 + - compartment: "p" + - formula: "C18H31O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00081c + - id: "m00081c" - name: "(3S)-3-hydroxy-cis,cis-palmito-7,10-dienoyl-CoA" - - compartment: c - - formula: C37H58N7O18P3S + - compartment: "c" + - formula: "C37H58N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00855c + - id: "m00855c" - name: "3-oxo-cis,cis-7,10-hexadecadienoyl-CoA" - - compartment: c - - formula: C37H56N7O18P3S + - compartment: "c" + - formula: "C37H56N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00696c + - id: "m00696c" - name: "3(S)-hydroxy-(5Z,8Z)-tetradecadienoyl-CoA" - - compartment: c - - formula: C35H54N7O18P3S + - compartment: "c" + - formula: "C35H54N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00854c + - id: "m00854c" - name: "3-oxo-cis,cis-5,8-tetradecadienoyl-CoA" - - compartment: c - - formula: C35H52N7O18P3S + - compartment: "c" + - formula: "C35H52N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00082c + - id: "m00082c" - name: "(3S)-3-hydroxydodec-cis-6-enoyl-CoA" - - compartment: c - - formula: C33H52N7O18P3S + - compartment: "c" + - formula: "C33H52N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00883c + - id: "m00883c" - name: "3-oxolaur-6-cis-enoyl-CoA" - - compartment: c - - formula: C33H50N7O18P3S + - compartment: "c" + - formula: "C33H50N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01110m + - id: "m01110m" - name: "5-hydroxytryptophol" - - compartment: m - - formula: C10H11NO2 + - compartment: "m" + - formula: "C10H11NO2" - charge: 0 - - inchis: 1S/C10H11NO2/c12-4-3-7-6-11-10-2-1-8(13)5-9(7)10/h1-2,5-6,11-13H,3-4H2 - - metFrom: Recon3D + - inchis: "1S/C10H11NO2/c12-4-3-7-6-11-10-2-1-8(13)5-9(7)10/h1-2,5-6,11-13H,3-4H2" + - metFrom: "Recon3D" - !!omap - - id: m01183c + - id: "m01183c" - name: "7alpha-hydroxycholesterol" - - compartment: c - - formula: C27H46O2 + - compartment: "c" + - formula: "C27H46O2" - charge: 0 - - inchis: 1S/C27H46O2/c1-18(2)7-6-14-27(5,29)24-11-10-22-21-9-8-19-17-20(28)12-15-25(19,3)23(21)13-16-26(22,24)4/h8,18,20-24,28-29H,6-7,9-17H2,1-5H3/t20-,21-,22-,23-,24-,25-,26-,27-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C27H46O2/c1-18(2)7-6-14-27(5,29)24-11-10-22-21-9-8-19-17-20(28)12-15-25(19,3)23(21)13-16-26(22,24)4/h8,18,20-24,28-29H,6-7,9-17H2,1-5H3/t20-,21-,22-,23-,24-,25-,26-,27-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m01182m + - id: "m01182m" - name: "7alpha-hydroxycholest-4-en-3-one" - - compartment: m - - formula: C27H44O2 + - compartment: "m" + - formula: "C27H44O2" - charge: 0 - - inchis: 1S/C27H44O2/c1-17(2)7-6-8-18(3)21-9-10-22-25-23(12-14-27(21,22)5)26(4)13-11-20(28)15-19(26)16-24(25)29/h15,17-18,21-25,29H,6-14,16H2,1-5H3/t18-,21-,22+,23+,24-,25+,26+,27-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C27H44O2/c1-17(2)7-6-8-18(3)21-9-10-22-25-23(12-14-27(21,22)5)26(4)13-11-20(28)15-19(26)16-24(25)29/h15,17-18,21-25,29H,6-14,16H2,1-5H3/t18-,21-,22+,23+,24-,25+,26+,27-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: CE0233_c + - id: "CE0233_c" - name: "5Beta-Cholestane-3Alpha,7Alpha,27-Triol" - - compartment: c - - formula: C27H48O3 + - compartment: "c" + - formula: "C27H48O3" - charge: 0 - - inchis: 1S/C27H48O3/c1-17(7-6-12-25(2,3)30)20-8-9-21-24-22(11-14-27(20,21)5)26(4)13-10-19(28)15-18(26)16-23(24)29/h17-24,28-30H,6-16H2,1-5H3/t17-,18-,19+,20-,21-,22-,23+,24-,26?,27-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C27H48O3/c1-17(7-6-12-25(2,3)30)20-8-9-21-24-22(11-14-27(20,21)5)26(4)13-10-19(28)15-18(26)16-23(24)29/h17-24,28-30H,6-16H2,1-5H3/t17-,18-,19+,20-,21-,22-,23+,24-,26?,27-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m01089c + - id: "m01089c" - name: "5beta-cholestane-3alpha,7alpha,12alpha,25-tetrol" - - compartment: c - - formula: C27H48O4 + - compartment: "c" + - formula: "C27H48O4" - charge: 0 - - inchis: 1/C27H48O4/c1-16(7-6-11-25(2,3)31)19-8-9-20-24-21(15-23(30)27(19,20)5)26(4)12-10-18(28)13-17(26)14-22(24)29/h16-24,28-31H,6-15H2,1-5H3/t16-,17?,18?,19-,20+,21+,22?,23?,24+,26+,27-/s2 - - metFrom: Recon3D + - inchis: "1/C27H48O4/c1-16(7-6-11-25(2,3)31)19-8-9-20-24-21(15-23(30)27(19,20)5)26(4)12-10-18(28)13-17(26)14-22(24)29/h16-24,28-31H,6-15H2,1-5H3/t16-,17?,18?,19-,20+,21+,22?,23?,24+,26+,27-/s2" + - metFrom: "Recon3D" - !!omap - - id: m01085c + - id: "m01085c" - name: "5beta-cholestane-3alpha,7alpha,12alpha,23,25-pentol" - - compartment: c - - formula: C27H48O5 + - compartment: "c" + - formula: "C27H48O5" - charge: 0 - - inchis: 1/C27H48O5/c1-15(10-18(29)14-25(2,3)32)19-6-7-20-24-21(13-23(31)27(19,20)5)26(4)9-8-17(28)11-16(26)12-22(24)30/h15-24,28-32H,6-14H2,1-5H3/t15-,16+,17-,18?,19-,20+,21+,22-,23+,24+,26+,27-/s2 - - metFrom: Recon3D + - inchis: "1/C27H48O5/c1-15(10-18(29)14-25(2,3)32)19-6-7-20-24-21(13-23(31)27(19,20)5)26(4)9-8-17(28)11-16(26)12-22(24)30/h15-24,28-32H,6-14H2,1-5H3/t15-,16+,17-,18?,19-,20+,21+,22-,23+,24+,26+,27-/s2" + - metFrom: "Recon3D" - !!omap - - id: m01086c + - id: "m01086c" - name: "5beta-cholestane-3alpha,7alpha,12alpha,24r,25-pentol" - - compartment: c - - formula: C27H48O5 + - compartment: "c" + - formula: "C27H48O5" - charge: 0 - - inchis: 1/C27H48O5/c1-15(6-9-22(30)25(2,3)32)18-7-8-19-24-20(14-23(31)27(18,19)5)26(4)11-10-17(28)12-16(26)13-21(24)29/h15-24,28-32H,6-14H2,1-5H3/t15-,16?,17-,18-,19+,20+,21-,22?,23+,24+,26+,27-/s2 - - metFrom: Recon3D + - inchis: "1/C27H48O5/c1-15(6-9-22(30)25(2,3)32)18-7-8-19-24-20(14-23(31)27(18,19)5)26(4)11-10-17(28)12-16(26)13-21(24)29/h15-24,28-32H,6-14H2,1-5H3/t15-,16?,17-,18-,19+,20+,21-,22?,23+,24+,26+,27-/s2" + - metFrom: "Recon3D" - !!omap - - id: m01088c + - id: "m01088c" - name: "5beta-cholestane-3alpha,7alpha,12alpha,25,27-pentol" - - compartment: c - - formula: C27H48O5 + - compartment: "c" + - formula: "C27H48O5" - charge: 0 - - inchis: 1S/C27H48O5/c1-16(6-5-10-25(2,32)15-28)19-7-8-20-24-21(14-23(31)27(19,20)4)26(3)11-9-18(29)12-17(26)13-22(24)30/h16-24,28-32H,5-15H2,1-4H3/t16-,17+,18-,19-,20+,21+,22-,23+,24+,25?,26+,27-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C27H48O5/c1-16(6-5-10-25(2,32)15-28)19-7-8-20-24-21(14-23(31)27(19,20)4)26(3)11-9-18(29)12-17(26)13-22(24)30/h16-24,28-32H,5-15H2,1-4H3/t16-,17+,18-,19-,20+,21+,22-,23+,24+,25?,26+,27-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: CE0233_m + - id: "CE0233_m" - name: "5Beta-Cholestane-3Alpha,7Alpha,27-Triol" - - compartment: m - - formula: C27H48O3 + - compartment: "m" + - formula: "C27H48O3" - charge: 0 - - inchis: 1S/C27H48O3/c1-17(7-6-12-25(2,3)30)20-8-9-21-24-22(11-14-27(20,21)5)26(4)13-10-19(28)15-18(26)16-23(24)29/h17-24,28-30H,6-16H2,1-5H3/t17-,18-,19+,20-,21-,22-,23+,24-,26?,27-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C27H48O3/c1-17(7-6-12-25(2,3)30)20-8-9-21-24-22(11-14-27(20,21)5)26(4)13-10-19(28)15-18(26)16-23(24)29/h17-24,28-30H,6-16H2,1-5H3/t17-,18-,19+,20-,21-,22-,23+,24-,26?,27-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m00763c + - id: "m00763c" - name: "3beta-hydroxy-5-cholestenal" - - compartment: c - - formula: C27H44O2 + - compartment: "c" + - formula: "C27H44O2" - charge: 0 - - inchis: 1/C27H44O2/c1-18(17-28)6-5-7-19(2)23-10-11-24-22-9-8-20-16-21(29)12-14-26(20,3)25(22)13-15-27(23,24)4/h8,17-19,21-25,29H,5-7,9-16H2,1-4H3/t18?,19?,21-,22?,23+,24?,25?,26-,27+/s2 - - metFrom: Recon3D + - inchis: "1/C27H44O2/c1-18(17-28)6-5-7-19(2)23-10-11-24-22-9-8-20-16-21(29)12-14-26(20,3)25(22)13-15-27(23,24)4/h8,17-19,21-25,29H,5-7,9-16H2,1-4H3/t18?,19?,21-,22?,23+,24?,25?,26-,27+/s2" + - metFrom: "Recon3D" - !!omap - - id: m00764c + - id: "m00764c" - name: "3beta-hydroxy-5-cholestene-27-oate" - - compartment: c - - formula: C27H43O3 + - compartment: "c" + - formula: "C27H43O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00761c + - id: "m00761c" - name: "3beta,7alpha-dihydroxy-5-cholestenoate" - - compartment: c - - formula: C27H43O4 + - compartment: "c" + - formula: "C27H43O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01180c + - id: "m01180c" - name: "7alpha-hydroxy-3-oxo-4-cholestenoic acid" - - compartment: c - - formula: C27H41O4 + - compartment: "c" + - formula: "C27H41O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01434m + - id: "m01434m" - name: "chenodeoxycholoyl-CoA" - - compartment: m - - formula: C45H70N7O19P3S + - compartment: "m" + - formula: "C45H70N7O19P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: C02528_m + - id: "C02528_m" - name: "Chenodeoxycholate" - - compartment: m - - formula: C24H39O4 + - compartment: "m" + - formula: "C24H39O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00614m + - id: "m00614m" - name: "25(R)DHCA-CoA" - - compartment: m - - formula: C48H76N7O19P3S + - compartment: "m" + - formula: "C48H76N7O19P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00570s + - id: "m00570s" - name: "2,3-cyclic-UMP" - - compartment: s - - formula: C9H10N2O8P + - compartment: "s" + - formula: "C9H10N2O8P" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00921s + - id: "m00921s" - name: "3-UMP" - - compartment: s - - formula: C9H11N2O9P + - compartment: "s" + - formula: "C9H11N2O9P" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02356p + - id: "m02356p" - name: "L-dopaquinone" - - compartment: p - - formula: C9H9NO4 + - compartment: "p" + - formula: "C9H9NO4" - charge: 0 - - inchis: 1S/C9H9NO4/c10-6(9(13)14)3-5-1-2-7(11)8(12)4-5/h1-2,4,6H,3,10H2,(H,13,14)/t6-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C9H9NO4/c10-6(9(13)14)3-5-1-2-7(11)8(12)4-5/h1-2,4,6H,3,10H2,(H,13,14)/t6-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m01139p + - id: "m01139p" - name: "5-S-glutathionyl-L-dopa" - - compartment: p - - formula: C19H25N4O10S + - compartment: "p" + - formula: "C19H25N4O10S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02734g + - id: "m02734g" - name: "phosphatidylinositol-3,4,5-trisphosphate" - - compartment: g - - formula: C11H13O22P4R2 + - compartment: "g" + - formula: "C11H13O22P4R2" - charge: -7 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02735g + - id: "m02735g" - name: "phosphatidylinositol-3,5-bisphosphate" - - compartment: g - - formula: C11H14O19P3R2 + - compartment: "g" + - formula: "C11H14O19P3R2" - charge: -5 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02734r + - id: "m02734r" - name: "phosphatidylinositol-3,4,5-trisphosphate" - - compartment: r - - formula: C11H13O22P4R2 + - compartment: "r" + - formula: "C11H13O22P4R2" - charge: -7 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00098n + - id: "m00098n" - name: "(5S,6S)-epoxy-(15R)-hydroxy-ETE" - - compartment: n - - formula: C20H29O4 + - compartment: "n" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00374n + - id: "m00374n" - name: "15(R)-HETE" - - compartment: n - - formula: C20H31O3 + - compartment: "n" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00635r + - id: "m00635r" - name: "2-arachidonoylglycerol" - - compartment: r - - formula: C23H38O4 + - compartment: "r" + - formula: "C23H38O4" - charge: 0 - - inchis: 1S/C23H38O4/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-23(26)27-22(20-24)21-25/h6-7,9-10,12-13,15-16,22,24-25H,2-5,8,11,14,17-21H2,1H3/b7-6-,10-9-,13-12-,16-15- - - metFrom: Recon3D + - inchis: "1S/C23H38O4/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-23(26)27-22(20-24)21-25/h6-7,9-10,12-13,15-16,22,24-25H,2-5,8,11,14,17-21H2,1H3/b7-6-,10-9-,13-12-,16-15-" + - metFrom: "Recon3D" - !!omap - - id: m00322r + - id: "m00322r" - name: "12-hydroperoxyeicosatetraenoate-glyceryl-ester" - - compartment: r - - formula: C23H38O6 + - compartment: "r" + - formula: "C23H38O6" - charge: 0 - - inchis: 1S/C23H38O6/c1-2-3-4-5-10-13-16-21(29-27)17-14-11-8-6-7-9-12-15-18-23(26)28-22(19-24)20-25/h7-11,13-14,17,21-22,24-25,27H,2-6,12,15-16,18-20H2,1H3/t21-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C23H38O6/c1-2-3-4-5-10-13-16-21(29-27)17-14-11-8-6-7-9-12-15-18-23(26)28-22(19-24)20-25/h7-11,13-14,17,21-22,24-25,27H,2-6,12,15-16,18-20H2,1H3/t21-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m00635g + - id: "m00635g" - name: "2-arachidonoylglycerol" - - compartment: g - - formula: C23H38O4 + - compartment: "g" + - formula: "C23H38O4" - charge: 0 - - inchis: 1S/C23H38O4/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-23(26)27-22(20-24)21-25/h6-7,9-10,12-13,15-16,22,24-25H,2-5,8,11,14,17-21H2,1H3/b7-6-,10-9-,13-12-,16-15- - - metFrom: Recon3D + - inchis: "1S/C23H38O4/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-23(26)27-22(20-24)21-25/h6-7,9-10,12-13,15-16,22,24-25H,2-5,8,11,14,17-21H2,1H3/b7-6-,10-9-,13-12-,16-15-" + - metFrom: "Recon3D" - !!omap - - id: m00534g + - id: "m00534g" - name: "1-lyso-2-arachidonoyl-phosphatidate" - - compartment: g - - formula: C23H37O7P + - compartment: "g" + - formula: "C23H37O7P" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00534r + - id: "m00534r" - name: "1-lyso-2-arachidonoyl-phosphatidate" - - compartment: r - - formula: C23H37O7P + - compartment: "r" + - formula: "C23H37O7P" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02786m + - id: "m02786m" - name: "prostaglandin E2" - - compartment: m - - formula: C20H31O5 + - compartment: "m" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02777m + - id: "m02777m" - name: "prostaglandin A2" - - compartment: m - - formula: C20H29O4 + - compartment: "m" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE2953_c + - id: "CE2953_c" - name: "Rac-5,6-Epoxy-Retinoate" - - compartment: c - - formula: C20H27O3 + - compartment: "c" + - formula: "C20H27O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE1162_c + - id: "CE1162_c" - name: "Vitamin A2" - - compartment: c - - formula: C20H28O + - compartment: "c" + - formula: "C20H28O" - charge: 0 - - inchis: 1S/C20H28O/c1-16(8-6-9-17(2)13-15-21)11-12-19-18(3)10-7-14-20(19,4)5/h6-13,21H,14-15H2,1-5H3/b9-6+,12-11+,16-8+,17-13+ - - metFrom: Recon3D + - inchis: "1S/C20H28O/c1-16(8-6-9-17(2)13-15-21)11-12-19-18(3)10-7-14-20(19,4)5/h6-13,21H,14-15H2,1-5H3/b9-6+,12-11+,16-8+,17-13+" + - metFrom: "Recon3D" - !!omap - - id: CE2955_c + - id: "CE2955_c" - name: "All-Trans-3,4-Didehydroretinoate" - - compartment: c - - formula: C20H25O2 + - compartment: "c" + - formula: "C20H25O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01314r + - id: "m01314r" - name: "allopregnanolone" - - compartment: r - - formula: C21H34O2 + - compartment: "r" + - formula: "C21H34O2" - charge: 0 - - inchis: 1S/C21H34O2/c1-13(22)17-6-7-18-16-5-4-14-12-15(23)8-10-20(14,2)19(16)9-11-21(17,18)3/h14-19,23H,4-12H2,1-3H3/t14-,15+,16-,17+,18-,19-,20-,21+/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C21H34O2/c1-13(22)17-6-7-18-16-5-4-14-12-15(23)8-10-20(14,2)19(16)9-11-21(17,18)3/h14-19,23H,4-12H2,1-3H3/t14-,15+,16-,17+,18-,19-,20-,21+/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m00604r + - id: "m00604r" - name: "21-hydroxyallopregnanolone" - - compartment: r - - formula: C21H34O3 + - compartment: "r" + - formula: "C21H34O3" - charge: 0 - - inchis: 1S/C21H34O3/c1-20-9-7-14(23)11-13(20)3-4-15-16-5-6-18(19(24)12-22)21(16,2)10-8-17(15)20/h13-18,22-23H,3-12H2,1-2H3/t13-,14+,15-,16-,17-,18+,20-,21-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C21H34O3/c1-20-9-7-14(23)11-13(20)3-4-15-16-5-6-18(19(24)12-22)21(16,2)10-8-17(15)20/h13-18,22-23H,3-12H2,1-2H3/t13-,14+,15-,16-,17-,18+,20-,21-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: CE5775_c + - id: "CE5775_c" - name: "Iso-A2E(9-Cis)" - - compartment: c - - formula: C42H58NO + - compartment: "c" + - formula: "C42H58NO" - charge: 1 - - inchis: 1S/C42H58NO/c1-32(20-22-39-35(4)17-12-25-41(39,6)7)14-10-16-34(3)30-38-31-37(24-27-43(38)28-29-44)19-11-15-33(2)21-23-40-36(5)18-13-26-42(40,8)9/h10-11,14-16,19-24,27,30-31,44H,12-13,17-18,25-26,28-29H2,1-9H3/q+1 - - metFrom: Recon3D + - inchis: "1S/C42H58NO/c1-32(20-22-39-35(4)17-12-25-41(39,6)7)14-10-16-34(3)30-38-31-37(24-27-43(38)28-29-44)19-11-15-33(2)21-23-40-36(5)18-13-26-42(40,8)9/h10-11,14-16,19-24,27,30-31,44H,12-13,17-18,25-26,28-29H2,1-9H3/q+1" + - metFrom: "Recon3D" - !!omap - - id: CE5776_c + - id: "CE5776_c" - name: "Iso-A2E(11-Cis)" - - compartment: c - - formula: C42H58NO + - compartment: "c" + - formula: "C42H58NO" - charge: 1 - - inchis: 1S/C42H58NO/c1-32(20-22-39-35(4)17-12-25-41(39,6)7)14-10-16-34(3)30-38-31-37(24-27-43(38)28-29-44)19-11-15-33(2)21-23-40-36(5)18-13-26-42(40,8)9/h10-11,14-16,19-24,27,30-31,44H,12-13,17-18,25-26,28-29H2,1-9H3/q+1 - - metFrom: Recon3D + - inchis: "1S/C42H58NO/c1-32(20-22-39-35(4)17-12-25-41(39,6)7)14-10-16-34(3)30-38-31-37(24-27-43(38)28-29-44)19-11-15-33(2)21-23-40-36(5)18-13-26-42(40,8)9/h10-11,14-16,19-24,27,30-31,44H,12-13,17-18,25-26,28-29H2,1-9H3/q+1" + - metFrom: "Recon3D" - !!omap - - id: CE1297_c + - id: "CE1297_c" - name: "8-Dehydrocholesterol" - - compartment: c - - formula: C27H44O + - compartment: "c" + - formula: "C27H44O" - charge: 0 - - inchis: 1S/C27H44O/c1-18(2)7-6-8-19(3)23-11-12-24-22-10-9-20-17-21(28)13-15-26(20,4)25(22)14-16-27(23,24)5/h9,18-19,21,23-24,28H,6-8,10-17H2,1-5H3/t19-,21+,23-,24+,26+,27-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C27H44O/c1-18(2)7-6-8-19(3)23-11-12-24-22-10-9-20-17-21(28)13-15-26(20,4)25(22)14-16-27(23,24)5/h9,18-19,21,23-24,28H,6-8,10-17H2,1-5H3/t19-,21+,23-,24+,26+,27-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: CE1294_c + - id: "CE1294_c" - name: "27Alpha-Hydroxy-8-Dehydrocholesterol" - - compartment: c - - formula: C27H44O2 + - compartment: "c" + - formula: "C27H44O2" - charge: 0 - - inchis: 1/C27H44O2/c1-18(17-28)6-5-7-19(2)23-10-11-24-22-9-8-20-16-21(29)12-14-26(20,3)25(22)13-15-27(23,24)4/h8,18-19,21,23-24,28-29H,5-7,9-17H2,1-4H3/t18?,19?,21-,23?,24?,26-,27+/s2 - - metFrom: Recon3D + - inchis: "1/C27H44O2/c1-18(17-28)6-5-7-19(2)23-10-11-24-22-9-8-20-16-21(29)12-14-26(20,3)25(22)13-15-27(23,24)4/h8,18-19,21,23-24,28-29H,5-7,9-17H2,1-4H3/t18?,19?,21-,23?,24?,26-,27+/s2" + - metFrom: "Recon3D" - !!omap - - id: CE1297_m + - id: "CE1297_m" - name: "8-Dehydrocholesterol" - - compartment: m - - formula: C27H44O + - compartment: "m" + - formula: "C27H44O" - charge: 0 - - inchis: 1S/C27H44O/c1-18(2)7-6-8-19(3)23-11-12-24-22-10-9-20-17-21(28)13-15-26(20,4)25(22)14-16-27(23,24)5/h9,18-19,21,23-24,28H,6-8,10-17H2,1-5H3/t19-,21+,23-,24+,26+,27-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C27H44O/c1-18(2)7-6-8-19(3)23-11-12-24-22-10-9-20-17-21(28)13-15-26(20,4)25(22)14-16-27(23,24)5/h9,18-19,21,23-24,28H,6-8,10-17H2,1-5H3/t19-,21+,23-,24+,26+,27-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: CE1294_m + - id: "CE1294_m" - name: "27Alpha-Hydroxy-8-Dehydrocholesterol" - - compartment: m - - formula: C27H44O2 + - compartment: "m" + - formula: "C27H44O2" - charge: 0 - - inchis: 1/C27H44O2/c1-18(17-28)6-5-7-19(2)23-10-11-24-22-9-8-20-16-21(29)12-14-26(20,3)25(22)13-15-27(23,24)4/h8,18-19,21,23-24,28-29H,5-7,9-17H2,1-4H3/t18?,19?,21-,23?,24?,26-,27+/s2 - - metFrom: Recon3D + - inchis: "1/C27H44O2/c1-18(17-28)6-5-7-19(2)23-10-11-24-22-9-8-20-16-21(29)12-14-26(20,3)25(22)13-15-27(23,24)4/h8,18-19,21,23-24,28-29H,5-7,9-17H2,1-4H3/t18?,19?,21-,23?,24?,26-,27+/s2" + - metFrom: "Recon3D" - !!omap - - id: CE5932_c + - id: "CE5932_c" - name: "13,14-Epoxy-Retinol" - - compartment: c - - formula: C20H30O2 + - compartment: "c" + - formula: "C20H30O2" - charge: 0 - - inchis: 1/C20H30O2/c1-15(8-6-13-20(5)18(14-21)22-20)10-11-17-16(2)9-7-12-19(17,3)4/h6,8,10-11,13,18,21H,7,9,12,14H2,1-5H3/b11-10+,13-6+,15-8- - - metFrom: Recon3D + - inchis: "1/C20H30O2/c1-15(8-6-13-20(5)18(14-21)22-20)10-11-17-16(2)9-7-12-19(17,3)4/h6,8,10-11,13,18,21H,7,9,12,14H2,1-5H3/b11-10+,13-6+,15-8-" + - metFrom: "Recon3D" - !!omap - - id: CE5013_c + - id: "CE5013_c" - name: "14-Hydroxy-4,14-Retro-Retinol" - - compartment: c - - formula: C20H30O2 + - compartment: "c" + - formula: "C20H30O2" - charge: 0 - - inchis: 1S/C20H30O2/c1-15(8-6-9-17(3)19(22)14-21)11-12-18-16(2)10-7-13-20(18,4)5/h6,8-12,19,21-22H,7,13-14H2,1-5H3/b8-6+,15-11+,17-9+,18-12- - - metFrom: Recon3D + - inchis: "1S/C20H30O2/c1-15(8-6-9-17(3)19(22)14-21)11-12-18-16(2)10-7-13-20(18,4)5/h6,8-12,19,21-22H,7,13-14H2,1-5H3/b8-6+,15-11+,17-9+,18-12-" + - metFrom: "Recon3D" - !!omap - - id: m02315s + - id: "m02315s" - name: "kinetensin 1-7" - - compartment: s - - formula: C41H67N15O9 + - compartment: "s" + - formula: "C41H67N15O9" - charge: 2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02316s + - id: "m02316s" - name: "kinetensin 1-8" - - compartment: s - - formula: C50H76N16O10 + - compartment: "s" + - formula: "C50H76N16O10" - charge: 2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02568l + - id: "m02568l" - name: "neuromedin B" - - compartment: l - - formula: C52H74N15O12S + - compartment: "l" + - formula: "C52H74N15O12S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02566l + - id: "m02566l" - name: "neuromedin B(1-3)" - - compartment: l - - formula: C12H22N4O5 + - compartment: "l" + - formula: "C12H22N4O5" - charge: 0 - - inchis: 1S/C12H22N4O5/c1-6(2)3-8(12(20)21)16-11(19)7(4-9(14)17)15-10(18)5-13/h6-8H,3-5,13H2,1-2H3,(H2,14,17)(H,15,18)(H,16,19)(H,20,21)/t7-,8+/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C12H22N4O5/c1-6(2)3-8(12(20)21)16-11(19)7(4-9(14)17)15-10(18)5-13/h6-8H,3-5,13H2,1-2H3,(H2,14,17)(H,15,18)(H,16,19)(H,20,21)/t7-,8+/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m02567l + - id: "m02567l" - name: "neuromedin B(4-10)" - - compartment: l - - formula: C40H54N11O8S + - compartment: "l" + - formula: "C40H54N11O8S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02570s + - id: "m02570s" - name: "neuromedin N" - - compartment: s - - formula: C32H51N5O7 + - compartment: "s" + - formula: "C32H51N5O7" - charge: 0 - - inchis: 1S/C32H51N5O7/c1-7-19(5)26(33)31(42)37-15-9-10-25(37)29(40)34-23(17-21-11-13-22(38)14-12-21)28(39)36-27(20(6)8-2)30(41)35-24(32(43)44)16-18(3)4/h11-14,18-20,23-27,38H,7-10,15-17,33H2,1-6H3,(H,34,40)(H,35,41)(H,36,39)(H,43,44)/t19-,20-,23+,24+,25+,26-,27-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C32H51N5O7/c1-7-19(5)26(33)31(42)37-15-9-10-25(37)29(40)34-23(17-21-11-13-22(38)14-12-21)28(39)36-27(20(6)8-2)30(41)35-24(32(43)44)16-18(3)4/h11-14,18-20,23-27,38H,7-10,15-17,33H2,1-6H3,(H,34,40)(H,35,41)(H,36,39)(H,43,44)/t19-,20-,23+,24+,25+,26-,27-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m02569s + - id: "m02569s" - name: "neuromedin N(1-4)" - - compartment: s - - formula: C26H40N4O6 + - compartment: "s" + - formula: "C26H40N4O6" - charge: 0 - - inchis: 1S/C26H40N4O6/c1-5-15(3)21(27)25(34)30-13-7-8-20(30)24(33)28-19(14-17-9-11-18(31)12-10-17)23(32)29-22(26(35)36)16(4)6-2/h9-12,15-16,19-22,31H,5-8,13-14,27H2,1-4H3,(H,28,33)(H,29,32)(H,35,36)/t15-,16-,19+,20+,21-,22-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C26H40N4O6/c1-5-15(3)21(27)25(34)30-13-7-8-20(30)24(33)28-19(14-17-9-11-18(31)12-10-17)23(32)29-22(26(35)36)16(4)6-2/h9-12,15-16,19-22,31H,5-8,13-14,27H2,1-4H3,(H,28,33)(H,29,32)(H,35,36)/t15-,16-,19+,20+,21-,22-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m01738p + - id: "m01738p" - name: "dopamine-O-quinone" - - compartment: p - - formula: C8H10NO2 + - compartment: "p" + - formula: "C8H10NO2" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01138p + - id: "m01138p" - name: "5-S-glutathionyl-dopamine" - - compartment: p - - formula: C18H26N4O8S + - compartment: "p" + - formula: "C18H26N4O8S" - charge: 0 - - inchis: 1/C18H26N4O8S/c19-4-3-9-5-12(23)16(27)13(6-9)31-8-11(17(28)21-7-15(25)26)22-14(24)2-1-10(20)18(29)30/h5-6,10-11,23,27H,1-4,7-8,19-20H2,(H,21,28)(H,22,24)(H,25,26)(H,29,30)/t10-,11-/s2 - - metFrom: Recon3D + - inchis: "1/C18H26N4O8S/c19-4-3-9-5-12(23)16(27)13(6-9)31-8-11(17(28)21-7-15(25)26)22-14(24)2-1-10(20)18(29)30/h5-6,10-11,23,27H,1-4,7-8,19-20H2,(H,21,28)(H,22,24)(H,25,26)(H,29,30)/t10-,11-/s2" + - metFrom: "Recon3D" - !!omap - - id: m00788m + - id: "m00788m" - name: "3-hydroxy-L-kynurenine" - - compartment: m - - formula: C10H12N2O4 + - compartment: "m" + - formula: "C10H12N2O4" - charge: 0 - - inchis: 1/C10H12N2O4/c11-6(10(15)16)4-8(14)5-2-1-3-7(13)9(5)12/h1-3,6,13H,4,11-12H2,(H,15,16)/t6-/s2 - - metFrom: Recon3D + - inchis: "1/C10H12N2O4/c11-6(10(15)16)4-8(14)5-2-1-3-7(13)9(5)12/h1-3,6,13H,4,11-12H2,(H,15,16)/t6-/s2" + - metFrom: "Recon3D" - !!omap - - id: m03151m + - id: "m03151m" - name: "xanthurenate" - - compartment: m - - formula: C10H6NO4 + - compartment: "m" + - formula: "C10H6NO4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE5837_c + - id: "CE5837_c" - name: "7,8-Epoxy-8Alpha-Hydroperoxytocopherone" - - compartment: c - - formula: C29H50O5 + - compartment: "c" + - formula: "C29H50O5" - charge: 0 - - inchis: 1S/C29H50O5/c1-20(2)12-9-13-21(3)14-10-15-22(4)16-11-18-26(6)19-17-24-23(5)25(30)27(7)28(8,33-27)29(24,32-26)34-31/h20-22,31H,9-19H2,1-8H3/t21-,22-,26?,27?,28?,29-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C29H50O5/c1-20(2)12-9-13-21(3)14-10-15-22(4)16-11-18-26(6)19-17-24-23(5)25(30)27(7)28(8,33-27)29(24,32-26)34-31/h20-22,31H,9-19H2,1-8H3/t21-,22-,26?,27?,28?,29-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: CE5838_c + - id: "CE5838_c" - name: "5,6-Epoxy-Alpha-Tocopheryl Quinone" - - compartment: c - - formula: C29H50O4 + - compartment: "c" + - formula: "C29H50O4" - charge: 0 - - inchis: 1/C29H50O4/c1-20(2)12-9-13-21(3)14-10-15-22(4)16-11-18-27(6,32)19-17-24-23(5)25(30)28(7)29(8,33-28)26(24)31/h20-22,32H,9-19H2,1-8H3/t21-,22-,27+,28?,29?/s2 - - metFrom: Recon3D + - inchis: "1/C29H50O4/c1-20(2)12-9-13-21(3)14-10-15-22(4)16-11-18-27(6,32)19-17-24-23(5)25(30)28(7)29(8,33-28)26(24)31/h20-22,32H,9-19H2,1-8H3/t21-,22-,27+,28?,29?/s2" + - metFrom: "Recon3D" - !!omap - - id: CE5839_c + - id: "CE5839_c" - name: "4Alpha,5-Epoxy-8Alpha-Hydroperoxytocopherone" - - compartment: c - - formula: C29H50O5 + - compartment: "c" + - formula: "C29H50O5" - charge: 0 - - inchis: 1S/C29H50O5/c1-20(2)12-9-13-21(3)14-10-15-22(4)16-11-17-26(7)18-19-28-27(8,33-28)25(30)23(5)24(6)29(28,32-26)34-31/h20-22,31H,9-19H2,1-8H3/t21-,22-,26?,27?,28?,29?/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C29H50O5/c1-20(2)12-9-13-21(3)14-10-15-22(4)16-11-17-26(7)18-19-28-27(8,33-28)25(30)23(5)24(6)29(28,32-26)34-31/h20-22,31H,9-19H2,1-8H3/t21-,22-,26?,27?,28?,29?/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: CE5840_c + - id: "CE5840_c" - name: "2,3-Epoxy-Alpha-Tocopheryl Quinone" - - compartment: c - - formula: C29H50O4 + - compartment: "c" + - formula: "C29H50O4" - charge: 0 - - inchis: 1/C29H50O4/c1-20(2)12-9-13-21(3)14-10-15-22(4)16-11-17-27(7,32)18-19-29-26(31)24(6)23(5)25(30)28(29,8)33-29/h20-22,32H,9-19H2,1-8H3/t21-,22-,27+,28?,29?/s2 - - metFrom: Recon3D + - inchis: "1/C29H50O4/c1-20(2)12-9-13-21(3)14-10-15-22(4)16-11-17-27(7,32)18-19-29-26(31)24(6)23(5)25(30)28(29,8)33-29/h20-22,32H,9-19H2,1-8H3/t21-,22-,27+,28?,29?/s2" + - metFrom: "Recon3D" - !!omap - - id: m00766r + - id: "m00766r" - name: "3-carboxy-alpha-chromanol" - - compartment: r - - formula: C16H21O4 + - compartment: "r" + - formula: "C16H21O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01321r + - id: "m01321r" - name: "alpha-CEHC-glucuronide" - - compartment: r - - formula: C22H29O10 + - compartment: "r" + - formula: "C22H29O10" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01923r + - id: "m01923r" - name: "gamma-carboxyethyl-hydroxychroman" - - compartment: r - - formula: C15H19O4 + - compartment: "r" + - formula: "C15H19O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01924r + - id: "m01924r" - name: "gamma-CEHC-glucuronide" - - compartment: r - - formula: C21H27O10 + - compartment: "r" + - formula: "C21H27O10" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01675n + - id: "m01675n" - name: "desmosterol" - - compartment: n - - formula: C27H44O + - compartment: "n" + - formula: "C27H44O" - charge: 0 - - inchis: 1S/C27H44O/c1-18(2)7-6-8-19(3)23-11-12-24-22-10-9-20-17-21(28)13-15-26(20,4)25(22)14-16-27(23,24)5/h7,9,19,21-25,28H,6,8,10-17H2,1-5H3/t19-,21+,22+,23-,24+,25+,26+,27-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C27H44O/c1-18(2)7-6-8-19(3)23-11-12-24-22-10-9-20-17-21(28)13-15-26(20,4)25(22)14-16-27(23,24)5/h7,9,19,21-25,28H,6,8,10-17H2,1-5H3/t19-,21+,22+,23-,24+,25+,26+,27-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m01189n + - id: "m01189n" - name: "7-dehydrodesmosterol" - - compartment: n - - formula: C27H42O + - compartment: "n" + - formula: "C27H42O" - charge: 0 - - inchis: 1S/C27H42O/c1-18(2)7-6-8-19(3)23-11-12-24-22-10-9-20-17-21(28)13-15-26(20,4)25(22)14-16-27(23,24)5/h7,9-10,19,21,23-25,28H,6,8,11-17H2,1-5H3/t19-,21+,23-,24+,25+,26+,27-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C27H42O/c1-18(2)7-6-8-19(3)23-11-12-24-22-10-9-20-17-21(28)13-15-26(20,4)25(22)14-16-27(23,24)5/h7,9-10,19,21,23-25,28H,6,8,11-17H2,1-5H3/t19-,21+,23-,24+,25+,26+,27-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m00787m + - id: "m00787m" - name: "3-hydroxykynurenine-O-beta-D-glucoside" - - compartment: m - - formula: C16H22N2O9 + - compartment: "m" + - formula: "C16H22N2O9" - charge: 0 - - inchis: 1S/C16H22N2O9/c17-7(15(24)25)4-8(20)6-2-1-3-9(11(6)18)26-16-14(23)13(22)12(21)10(5-19)27-16/h1-3,7,10,12-14,16,19,21-23H,4-5,17-18H2,(H,24,25)/t7-,10+,12-,13-,14-,16+/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C16H22N2O9/c17-7(15(24)25)4-8(20)6-2-1-3-9(11(6)18)26-16-14(23)13(22)12(21)10(5-19)27-16/h1-3,7,10,12-14,16,19,21-23H,4-5,17-18H2,(H,24,25)/t7-,10+,12-,13-,14-,16+/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m01979m + - id: "m01979m" - name: "glutathionyl-3-hydroxykynurenine glucoside" - - compartment: m - - formula: C26H36N5O14S + - compartment: "m" + - formula: "C26H36N5O14S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE5829_c + - id: "CE5829_c" - name: "5-Ht-Moduline" - - compartment: c - - formula: C18H34N4O6 + - compartment: "c" + - formula: "C18H34N4O6" - charge: 0 - - inchis: 1S/C18H34N4O6/c1-9(2)6-12(19)16(25)22-14(8-23)17(26)20-11(5)15(24)21-13(18(27)28)7-10(3)4/h9-14,23H,6-8,19H2,1-5H3,(H,20,26)(H,21,24)(H,22,25)(H,27,28)/t11-,12-,13+,14+/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C18H34N4O6/c1-9(2)6-12(19)16(25)22-14(8-23)17(26)20-11(5)15(24)21-13(18(27)28)7-10(3)4/h9-14,23H,6-8,19H2,1-5H3,(H,20,26)(H,21,24)(H,22,25)(H,27,28)/t11-,12-,13+,14+/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: CE5865_c + - id: "CE5865_c" - name: "L-Leucyl-L-Serine" - - compartment: c - - formula: C9H18N2O4 + - compartment: "c" + - formula: "C9H18N2O4" - charge: 0 - - inchis: 1S/C9H18N2O4/c1-5(2)3-6(10)8(13)11-7(4-12)9(14)15/h5-7,12H,3-4,10H2,1-2H3,(H,11,13)(H,14,15)/t6-,7+/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C9H18N2O4/c1-5(2)3-6(10)8(13)11-7(4-12)9(14)15/h5-7,12H,3-4,10H2,1-2H3,(H,11,13)(H,14,15)/t6-,7+/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: CE5866_c + - id: "CE5866_c" - name: "L-Alanyl-L-Leucine" - - compartment: c - - formula: C9H18N2O3 + - compartment: "c" + - formula: "C9H18N2O3" - charge: 0 - - inchis: 1S/C9H18N2O3/c1-5(2)4-7(9(13)14)11-8(12)6(3)10/h5-7H,4,10H2,1-3H3,(H,11,12)(H,13,14)/t6-,7+/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C9H18N2O3/c1-5(2)4-7(9(13)14)11-8(12)6(3)10/h5-7H,4,10H2,1-3H3,(H,11,12)(H,13,14)/t6-,7+/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m02551s + - id: "m02551s" - name: "N-acetyl-seryl-aspartyl-lysyl-proline" - - compartment: s - - formula: C20H32N5O9 + - compartment: "s" + - formula: "C20H32N5O9" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02550s + - id: "m02550s" - name: "N-acetyl-seryl-aspartate" - - compartment: s - - formula: C9H12N2O7 + - compartment: "s" + - formula: "C9H12N2O7" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02429s + - id: "m02429s" - name: "lysyl-proline" - - compartment: s - - formula: C11H22N3O3 + - compartment: "s" + - formula: "C11H22N3O3" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE5016_c + - id: "CE5016_c" - name: "13,14-Dihydroxy-Retinol" - - compartment: c - - formula: C20H32O3 + - compartment: "c" + - formula: "C20H32O3" - charge: 0 - - inchis: 1/C20H32O3/c1-15(8-6-13-20(5,23)18(22)14-21)10-11-17-16(2)9-7-12-19(17,3)4/h6,8,10-11,13,18,21-23H,7,9,12,14H2,1-5H3/b11-10+,13-6+,15-8+ - - metFrom: Recon3D + - inchis: "1/C20H32O3/c1-15(8-6-13-20(5,23)18(22)14-21)10-11-17-16(2)9-7-12-19(17,3)4/h6,8,10-11,13,18,21-23H,7,9,12,14H2,1-5H3/b11-10+,13-6+,15-8+" + - metFrom: "Recon3D" - !!omap - - id: C06948_c + - id: "C06948_c" - name: "Diazepam" - - compartment: c - - formula: C16ClH13N2O + - compartment: "c" + - formula: "C16ClH13N2O" - charge: 0 - - inchis: 1S/C16H13ClN2O/c1-19-14-8-7-12(17)9-13(14)16(18-10-15(19)20)11-5-3-2-4-6-11/h2-9H,10H2,1H3 - - metFrom: Recon3D + - inchis: "1S/C16H13ClN2O/c1-19-14-8-7-12(17)9-13(14)16(18-10-15(19)20)11-5-3-2-4-6-11/h2-9H,10H2,1H3" + - metFrom: "Recon3D" - !!omap - - id: C07486_c + - id: "C07486_c" - name: "Nordazepam" - - compartment: c - - formula: C15ClH11N2O + - compartment: "c" + - formula: "C15ClH11N2O" - charge: 0 - - inchis: 1S/C15H11ClN2O/c16-11-6-7-13-12(8-11)15(17-9-14(19)18-13)10-4-2-1-3-5-10/h1-8H,9H2,(H,18,19) - - metFrom: Recon3D + - inchis: "1S/C15H11ClN2O/c16-11-6-7-13-12(8-11)15(17-9-14(19)18-13)10-4-2-1-3-5-10/h1-8H,9H2,(H,18,19)" + - metFrom: "Recon3D" - !!omap - - id: m01831r + - id: "m01831r" - name: "formaldehyde" - - compartment: r - - formula: CH2O + - compartment: "r" + - formula: "CH2O" - charge: 0 - - inchis: 1S/CH2O/c1-2/h1H2 - - metFrom: Recon3D + - inchis: "1S/CH2O/c1-2/h1H2" + - metFrom: "Recon3D" - !!omap - - id: C06948_r + - id: "C06948_r" - name: "Diazepam" - - compartment: r - - formula: C16ClH13N2O + - compartment: "r" + - formula: "C16ClH13N2O" - charge: 0 - - inchis: 1S/C16H13ClN2O/c1-19-14-8-7-12(17)9-13(14)16(18-10-15(19)20)11-5-3-2-4-6-11/h2-9H,10H2,1H3 - - metFrom: Recon3D + - inchis: "1S/C16H13ClN2O/c1-19-14-8-7-12(17)9-13(14)16(18-10-15(19)20)11-5-3-2-4-6-11/h2-9H,10H2,1H3" + - metFrom: "Recon3D" - !!omap - - id: C07486_r + - id: "C07486_r" - name: "Nordazepam" - - compartment: r - - formula: C15ClH11N2O + - compartment: "r" + - formula: "C15ClH11N2O" - charge: 0 - - inchis: 1S/C15H11ClN2O/c16-11-6-7-13-12(8-11)15(17-9-14(19)18-13)10-4-2-1-3-5-10/h1-8H,9H2,(H,18,19) - - metFrom: Recon3D + - inchis: "1S/C15H11ClN2O/c16-11-6-7-13-12(8-11)15(17-9-14(19)18-13)10-4-2-1-3-5-10/h1-8H,9H2,(H,18,19)" + - metFrom: "Recon3D" - !!omap - - id: C06453_c + - id: "C06453_c" - name: "Methylcobalamin" - - compartment: c - - formula: C63CoH91N13O14P + - compartment: "c" + - formula: "C63CoH91N13O14P" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02156s + - id: "m02156s" - name: "hypochlorite" - - compartment: s - - formula: ClHO + - compartment: "s" + - formula: "ClHO" - charge: 0 - - inchis: 1S/ClHO/c1-2/h2H - - metFrom: Recon3D + - inchis: "1S/ClHO/c1-2/h2H" + - metFrom: "Recon3D" - !!omap - - id: m01442l + - id: "m01442l" - name: "chloride" - - compartment: l - - formula: Cl + - compartment: "l" + - formula: "Cl" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02156l + - id: "m02156l" - name: "hypochlorite" - - compartment: l - - formula: ClHO + - compartment: "l" + - formula: "ClHO" - charge: 0 - - inchis: 1S/ClHO/c1-2/h2H - - metFrom: Recon3D + - inchis: "1S/ClHO/c1-2/h2H" + - metFrom: "Recon3D" - !!omap - - id: m01442n + - id: "m01442n" - name: "chloride" - - compartment: n - - formula: Cl + - compartment: "n" + - formula: "Cl" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02156n + - id: "m02156n" - name: "hypochlorite" - - compartment: n - - formula: ClHO + - compartment: "n" + - formula: "ClHO" - charge: 0 - - inchis: 1S/ClHO/c1-2/h2H - - metFrom: Recon3D + - inchis: "1S/ClHO/c1-2/h2H" + - metFrom: "Recon3D" - !!omap - - id: m02591s + - id: "m02591s" - name: "nitryl-chloride" - - compartment: s - - formula: ClNO2 + - compartment: "s" + - formula: "ClNO2" - charge: 0 - - inchis: 1S/ClNO2/c1-4-2-3 - - metFrom: Recon3D + - inchis: "1S/ClNO2/c1-4-2-3" + - metFrom: "Recon3D" - !!omap - - id: m02588l + - id: "m02588l" - name: "nitrite" - - compartment: l - - formula: NO2 + - compartment: "l" + - formula: "NO2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02591l + - id: "m02591l" - name: "nitryl-chloride" - - compartment: l - - formula: ClNO2 + - compartment: "l" + - formula: "ClNO2" - charge: 0 - - inchis: 1S/ClNO2/c1-4-2-3 - - metFrom: Recon3D + - inchis: "1S/ClNO2/c1-4-2-3" + - metFrom: "Recon3D" - !!omap - - id: m02588n + - id: "m02588n" - name: "nitrite" - - compartment: n - - formula: NO2 + - compartment: "n" + - formula: "NO2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02591n + - id: "m02591n" - name: "nitryl-chloride" - - compartment: n - - formula: ClNO2 + - compartment: "n" + - formula: "ClNO2" - charge: 0 - - inchis: 1S/ClNO2/c1-4-2-3 - - metFrom: Recon3D + - inchis: "1S/ClNO2/c1-4-2-3" + - metFrom: "Recon3D" - !!omap - - id: m01292p + - id: "m01292p" - name: "adrenochrome" - - compartment: p - - formula: C9H9NO3 + - compartment: "p" + - formula: "C9H9NO3" - charge: 0 - - inchis: 1/C9H9NO3/c1-10-4-9(13)5-2-7(11)8(12)3-6(5)10/h2-3,9,13H,4H2,1H3 - - metFrom: Recon3D + - inchis: "1/C9H9NO3/c1-10-4-9(13)5-2-7(11)8(12)3-6(5)10/h2-3,9,13H,4H2,1H3" + - metFrom: "Recon3D" - !!omap - - id: m01135p + - id: "m01135p" - name: "5-S-glutathionyl-adrenochrome hydroquinone" - - compartment: p - - formula: C19H25N4O9S + - compartment: "p" + - formula: "C19H25N4O9S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02618p + - id: "m02618p" - name: "noradrenochrome" - - compartment: p - - formula: C8H7NO3 + - compartment: "p" + - formula: "C8H7NO3" - charge: 0 - - inchis: 1/C8H7NO3/c10-6-1-4-5(2-7(6)11)9-3-8(4)12/h1,8,12H,2-3H2 - - metFrom: Recon3D + - inchis: "1/C8H7NO3/c10-6-1-4-5(2-7(6)11)9-3-8(4)12/h1,8,12H,2-3H2" + - metFrom: "Recon3D" - !!omap - - id: m01140p + - id: "m01140p" - name: "5-S-glutathionyl-noradrenochrome hydroquinone" - - compartment: p - - formula: C18H23N4O9S + - compartment: "p" + - formula: "C18H23N4O9S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02355p + - id: "m02355p" - name: "L-dopachrome" - - compartment: p - - formula: C9H6NO4 + - compartment: "p" + - formula: "C9H6NO4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01137p + - id: "m01137p" - name: "5-S-glutathionyl-dopachrome hydroquinone" - - compartment: p - - formula: C19H22N4O10S + - compartment: "p" + - formula: "C19H22N4O10S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01739p + - id: "m01739p" - name: "dopaminochrome" - - compartment: p - - formula: C8H7NO2 + - compartment: "p" + - formula: "C8H7NO2" - charge: 0 - - inchis: 1S/C8H7NO2/c10-7-3-5-1-2-9-6(5)4-8(7)11/h1-4,9-11H - - metFrom: Recon3D + - inchis: "1S/C8H7NO2/c10-7-3-5-1-2-9-6(5)4-8(7)11/h1-4,9-11H" + - metFrom: "Recon3D" - !!omap - - id: m01136p + - id: "m01136p" - name: "5-S-glutathionyl-aminochrome reduced" - - compartment: p - - formula: C18H23N4O8S + - compartment: "p" + - formula: "C18H23N4O8S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01973s + - id: "m01973s" - name: "glucuronate" - - compartment: s - - formula: C6H9O7 + - compartment: "s" + - formula: "C6H9O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01923s + - id: "m01923s" - name: "gamma-carboxyethyl-hydroxychroman" - - compartment: s - - formula: C15H19O4 + - compartment: "s" + - formula: "C15H19O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01924s + - id: "m01924s" - name: "gamma-CEHC-glucuronide" - - compartment: s - - formula: C21H27O10 + - compartment: "s" + - formula: "C21H27O10" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01923l + - id: "m01923l" - name: "gamma-carboxyethyl-hydroxychroman" - - compartment: l - - formula: C15H19O4 + - compartment: "l" + - formula: "C15H19O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01924l + - id: "m01924l" - name: "gamma-CEHC-glucuronide" - - compartment: l - - formula: C21H27O10 + - compartment: "l" + - formula: "C21H27O10" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE2615_c + - id: "CE2615_c" - name: "2-Hydroxyamino-3,8-Dimethylimidazo[4,5-F]Quinoxaline" - - compartment: c - - formula: C11H11N5O + - compartment: "c" + - formula: "C11H11N5O" - charge: 0 - - inchis: 1S/C11H11N5O/c1-6-5-12-7-3-4-8-10(9(7)13-6)14-11(15-17)16(8)2/h3-5,17H,1-2H3,(H,14,15) - - metFrom: Recon3D + - inchis: "1S/C11H11N5O/c1-6-5-12-7-3-4-8-10(9(7)13-6)14-11(15-17)16(8)2/h3-5,17H,1-2H3,(H,14,15)" + - metFrom: "Recon3D" - !!omap - - id: CE2616_c + - id: "CE2616_c" - name: "2-Hydroxyamino-Meiqx-N2-(Beta-1-Glucosiduronyl)-2-Hydroxyamino-3,8-Dimethylimidazo[4,5-F]Quinoxaline" - - compartment: c - - formula: C17H18N5O7 + - compartment: "c" + - formula: "C17H18N5O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE2615_r + - id: "CE2615_r" - name: "2-Hydroxyamino-3,8-Dimethylimidazo[4,5-F]Quinoxaline" - - compartment: r - - formula: C11H11N5O + - compartment: "r" + - formula: "C11H11N5O" - charge: 0 - - inchis: 1S/C11H11N5O/c1-6-5-12-7-3-4-8-10(9(7)13-6)14-11(15-17)16(8)2/h3-5,17H,1-2H3,(H,14,15) - - metFrom: Recon3D + - inchis: "1S/C11H11N5O/c1-6-5-12-7-3-4-8-10(9(7)13-6)14-11(15-17)16(8)2/h3-5,17H,1-2H3,(H,14,15)" + - metFrom: "Recon3D" - !!omap - - id: CE2616_r + - id: "CE2616_r" - name: "2-Hydroxyamino-Meiqx-N2-(Beta-1-Glucosiduronyl)-2-Hydroxyamino-3,8-Dimethylimidazo[4,5-F]Quinoxaline" - - compartment: r - - formula: C17H18N5O7 + - compartment: "r" + - formula: "C17H18N5O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00751c + - id: "m00751c" - name: "3alpha,7alpha,12alpha-trihydroxy-5beta-cholestan-27-al" - - compartment: c - - formula: C27H46O4 + - compartment: "c" + - formula: "C27H46O4" - charge: 0 - - inchis: 1S/C27H46O4/c1-16(15-28)6-5-7-17(2)20-8-9-21-25-22(14-24(31)27(20,21)4)26(3)11-10-19(29)12-18(26)13-23(25)30/h15-25,29-31H,5-14H2,1-4H3/t16?,17-,18?,19+,20-,21?,22?,23+,24-,25?,26?,27-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C27H46O4/c1-16(15-28)6-5-7-17(2)20-8-9-21-25-22(14-24(31)27(20,21)4)26(3)11-10-19(29)12-18(26)13-23(25)30/h15-25,29-31H,5-14H2,1-4H3/t16?,17-,18?,19+,20-,21?,22?,23+,24-,25?,26?,27-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m01087c + - id: "m01087c" - name: "5beta-cholestane-3alpha,7alpha,12alpha,24s,25-pentol" - - compartment: c - - formula: C27H48O5 + - compartment: "c" + - formula: "C27H48O5" - charge: 0 - - inchis: 1S/C27H48O5/c1-15(6-9-22(30)25(2,3)32)18-7-8-19-24-20(14-23(31)27(18,19)5)26(4)11-10-17(28)12-16(26)13-21(24)29/h15-24,28-32H,6-14H2,1-5H3/t15-,16+,17-,18-,19+,20+,21-,22+,23+,24+,26+,27-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C27H48O5/c1-15(6-9-22(30)25(2,3)32)18-7-8-19-24-20(14-23(31)27(18,19)5)26(4)11-10-17(28)12-16(26)13-21(24)29/h15-24,28-32H,6-14H2,1-5H3/t15-,16+,17-,18-,19+,20+,21-,22+,23+,24+,26+,27-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m00747c + - id: "m00747c" - name: "3alpha,7alpha,12alpha,25-tetrahydroxy-5beta-cholestane-24-one" - - compartment: c - - formula: C27H46O5 + - compartment: "c" + - formula: "C27H46O5" - charge: 0 - - inchis: 1/C27H46O5/c1-15(6-9-22(30)25(2,3)32)18-7-8-19-24-20(14-23(31)27(18,19)5)26(4)11-10-17(28)12-16(26)13-21(24)29/h15-21,23-24,28-29,31-32H,6-14H2,1-5H3/t15?,16?,17?,18-,19?,20?,21?,23?,24?,26+,27-/s2 - - metFrom: Recon3D + - inchis: "1/C27H46O5/c1-15(6-9-22(30)25(2,3)32)18-7-8-19-24-20(14-23(31)27(18,19)5)26(4)11-10-17(28)12-16(26)13-21(24)29/h15-21,23-24,28-29,31-32H,6-14H2,1-5H3/t15?,16?,17?,18-,19?,20?,21?,23?,24?,26+,27-/s2" + - metFrom: "Recon3D" - !!omap - - id: m03107s + - id: "m03107s" - name: "UDP-galactose" - - compartment: s - - formula: C15H22N2O17P2 + - compartment: "s" + - formula: "C15H22N2O17P2" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01679s + - id: "m01679s" - name: "D-galactosyl-N-acylsphingosine" - - compartment: s - - formula: C24H46NO7RCO + - compartment: "s" + - formula: "C24H46NO7RCO" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01430s + - id: "m01430s" - name: "ceramide pool" - - compartment: s - - formula: C18H36NO2RCO + - compartment: "s" + - formula: "C18H36NO2RCO" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m03107n + - id: "m03107n" - name: "UDP-galactose" - - compartment: n - - formula: C15H22N2O17P2 + - compartment: "n" + - formula: "C15H22N2O17P2" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01679n + - id: "m01679n" - name: "D-galactosyl-N-acylsphingosine" - - compartment: n - - formula: C24H46NO7RCO + - compartment: "n" + - formula: "C24H46NO7RCO" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01430n + - id: "m01430n" - name: "ceramide pool" - - compartment: n - - formula: C18H36NO2RCO + - compartment: "n" + - formula: "C18H36NO2RCO" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02810g + - id: "m02810g" - name: "psychosine" - - compartment: g - - formula: C24H48NO7 + - compartment: "g" + - formula: "C24H48NO7" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02809g + - id: "m02809g" - name: "psychosine sulfate" - - compartment: g - - formula: C24H47NO10S + - compartment: "g" + - formula: "C24H47NO10S" - charge: 0 - - inchis: 1S/C24H47NO10S/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-19(26)18(25)16-33-24-23(29)22(28)21(27)20(35-24)17-34-36(30,31)32/h14-15,18-24,26-29H,2-13,16-17,25H2,1H3,(H,30,31,32)/b15-14+/t18-,19+,20+,21-,22-,23+,24+/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C24H47NO10S/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-19(26)18(25)16-33-24-23(29)22(28)21(27)20(35-24)17-34-36(30,31)32/h14-15,18-24,26-29H,2-13,16-17,25H2,1H3,(H,30,31,32)/b15-14+/t18-,19+,20+,21-,22-,23+,24+/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m02334g + - id: "m02334g" - name: "lactosylceramide sulfate" - - compartment: g - - formula: C31H56NO16SR + - compartment: "g" + - formula: "C31H56NO16SR" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m03121n + - id: "m03121n" - name: "urea" - - compartment: n - - formula: CH4N2O + - compartment: "n" + - formula: "CH4N2O" - charge: 0 - - inchis: 1S/CH4N2O/c2-1(3)4/h(H4,2,3,4) - - metFrom: Recon3D + - inchis: "1S/CH4N2O/c2-1(3)4/h(H4,2,3,4)" + - metFrom: "Recon3D" - !!omap - - id: m03120n + - id: "m03120n" - name: "urate" - - compartment: n - - formula: C5H4N4O3 + - compartment: "n" + - formula: "C5H4N4O3" - charge: 0 - - inchis: 1S/C5H4N4O3/c10-3-1-2(7-4(11)6-1)8-5(12)9-3/h(H4,6,7,8,9,10,11,12) - - metFrom: Recon3D + - inchis: "1S/C5H4N4O3/c10-3-1-2(7-4(11)6-1)8-5(12)9-3/h(H4,6,7,8,9,10,11,12)" + - metFrom: "Recon3D" - !!omap - - id: m01315n + - id: "m01315n" - name: "alloxan" - - compartment: n - - formula: C4N2O4 + - compartment: "n" + - formula: "C4N2O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00177c + - id: "m00177c" - name: "(S)-3-hydroxypalmitoleoyl-CoA" - - compartment: c - - formula: C37H60N7O18P3S + - compartment: "c" + - formula: "C37H60N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00894c + - id: "m00894c" - name: "3-oxopalmitoleoyl-CoA" - - compartment: c - - formula: C37H58N7O18P3S + - compartment: "c" + - formula: "C37H58N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01574c + - id: "m01574c" - name: "cis-(3S)-hydroxytetradec-7-enoyl-CoA" - - compartment: c - - formula: C35H56N7O18P3S + - compartment: "c" + - formula: "C35H56N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00886c + - id: "m00886c" - name: "3-oxomyrist-7-enoyl-CoA" - - compartment: c - - formula: C35H54N7O18P3S + - compartment: "c" + - formula: "C35H54N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE2597_c + - id: "CE2597_c" - name: "3(S)-3-Hydroxydodecen-(5Z)-Oyl Coenzyme A" - - compartment: c - - formula: C33H52N7O18P3S + - compartment: "c" + - formula: "C33H52N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE0692_c + - id: "CE0692_c" - name: "3-Oxolaur-Cis-5-Enoyl Coenzyme A" - - compartment: c - - formula: C33H50N7O18P3S + - compartment: "c" + - formula: "C33H50N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE2597_m + - id: "CE2597_m" - name: "3(S)-3-Hydroxydodecen-(5Z)-Oyl Coenzyme A" - - compartment: m - - formula: C33H52N7O18P3S + - compartment: "m" + - formula: "C33H52N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE2597_p + - id: "CE2597_p" - name: "3(S)-3-Hydroxydodecen-(5Z)-Oyl Coenzyme A" - - compartment: p - - formula: C33H52N7O18P3S + - compartment: "p" + - formula: "C33H52N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE0692_p + - id: "CE0692_p" - name: "3-Oxolaur-Cis-5-Enoyl Coenzyme A" - - compartment: p - - formula: C33H50N7O18P3S + - compartment: "p" + - formula: "C33H50N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: C03372_c + - id: "C03372_c" - name: "1-Acylglycerone 3-Phosphate" - - compartment: c - - formula: C4H4O7PR + - compartment: "c" + - formula: "C4H4O7PR" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02675m + - id: "m02675m" - name: "palmitolate" - - compartment: m - - formula: C16H29O2 + - compartment: "m" + - formula: "C16H29O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02675p + - id: "m02675p" - name: "palmitolate" - - compartment: p - - formula: C16H29O2 + - compartment: "p" + - formula: "C16H29O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE2596_m + - id: "CE2596_m" - name: "Trans,Cis-Dodeca-2,5-Dienoyl Coenzyme A" - - compartment: m - - formula: C33H50N7O17P3S + - compartment: "m" + - formula: "C33H50N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE2596_p + - id: "CE2596_p" - name: "Trans,Cis-Dodeca-2,5-Dienoyl Coenzyme A" - - compartment: p - - formula: C33H50N7O17P3S + - compartment: "p" + - formula: "C33H50N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02736g + - id: "m02736g" - name: "phosphatidylinositol-4,5-bisphosphate" - - compartment: g - - formula: C11H14O19P3R2 + - compartment: "g" + - formula: "C11H14O19P3R2" - charge: -5 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02736r + - id: "m02736r" - name: "phosphatidylinositol-4,5-bisphosphate" - - compartment: r - - formula: C11H14O19P3R2 + - compartment: "r" + - formula: "C11H14O19P3R2" - charge: -5 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02735n + - id: "m02735n" - name: "phosphatidylinositol-3,5-bisphosphate" - - compartment: n - - formula: C11H14O19P3R2 + - compartment: "n" + - formula: "C11H14O19P3R2" - charge: -5 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00552g + - id: "m00552g" - name: "1-phosphatidyl-1D-myo-inositol-3-phosphate" - - compartment: g - - formula: C11H15O16P2R2 + - compartment: "g" + - formula: "C11H15O16P2R2" - charge: -3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: C03968_c + - id: "C03968_c" - name: "1-Alkyl-Sn-Glycerol 3-Phosphate" - - compartment: c - - formula: C3H6O6PR + - compartment: "c" + - formula: "C3H6O6PR" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE5117_m + - id: "CE5117_m" - name: "(3E,5Z,8Z)-Tetradecatrienoyl Coenzyme A" - - compartment: m - - formula: C35H52N7O17P3S + - compartment: "m" + - formula: "C35H52N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE5118_m + - id: "CE5118_m" - name: "Trans-2-Cis,Cis-4,8-Tetradecatrienoyl Coenzyme A" - - compartment: m - - formula: C35H52N7O17P3S + - compartment: "m" + - formula: "C35H52N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE5119_m + - id: "CE5119_m" - name: "Trans-3-Cis-8-Tetradecadienoyl Coenzyme A" - - compartment: m - - formula: C35H54N7O17P3S + - compartment: "m" + - formula: "C35H54N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE5120_m + - id: "CE5120_m" - name: "Trans-2-Cis-8-Tetradecadienoyl Coenzyme A" - - compartment: m - - formula: C35H54N7O17P3S + - compartment: "m" + - formula: "C35H54N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE4790_m + - id: "CE4790_m" - name: "(3S)-3-Hydroxy-Cis-8-Tetradecenoyl Coenzyme A" - - compartment: m - - formula: C35H56N7O18P3S + - compartment: "m" + - formula: "C35H56N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE4792_m + - id: "CE4792_m" - name: "3-Oxo-Cis-8-Tetradecenoyl Coenzyme A" - - compartment: m - - formula: C35H54N7O18P3S + - compartment: "m" + - formula: "C35H54N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE4794_m + - id: "CE4794_m" - name: "Cis-6-Dodecenoyl Coenzyme A" - - compartment: m - - formula: C33H52N7O17P3S + - compartment: "m" + - formula: "C33H52N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: C01264_c + - id: "C01264_c" - name: "1-Alkyl-2-Acetyl-Sn-Glycerol 3-Phosphate" - - compartment: c - - formula: C5H8O7PR + - compartment: "c" + - formula: "C5H8O7PR" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE5122_p + - id: "CE5122_p" - name: "3(S)-Phytanoyl Coenzyme A" - - compartment: p - - formula: C41H70N7O17P3S + - compartment: "p" + - formula: "C41H70N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE5123_p + - id: "CE5123_p" - name: "3(S)-2-Hydroxyphytanoyl Coenzyme A" - - compartment: p - - formula: C41H70N7O18P3S + - compartment: "p" + - formula: "C41H70N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE5122_c + - id: "CE5122_c" - name: "3(S)-Phytanoyl Coenzyme A" - - compartment: c - - formula: C41H70N7O17P3S + - compartment: "c" + - formula: "C41H70N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00075c + - id: "m00075c" - name: "(2R)-pristanoyl-CoA" - - compartment: c - - formula: C40H68N7O17P3S + - compartment: "c" + - formula: "C40H68N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01736l + - id: "m01736l" - name: "dopamine" - - compartment: l - - formula: C8H12NO2 + - compartment: "l" + - formula: "C8H12NO2" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01738l + - id: "m01738l" - name: "dopamine-O-quinone" - - compartment: l - - formula: C8H10NO2 + - compartment: "l" + - formula: "C8H10NO2" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01736p + - id: "m01736p" - name: "dopamine" - - compartment: p - - formula: C8H12NO2 + - compartment: "p" + - formula: "C8H12NO2" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00859r + - id: "m00859r" - name: "3-oxo-dihomo-gamma-linolenoyl-CoA" - - compartment: r - - formula: C41H62N7O18P3S + - compartment: "r" + - formula: "C41H62N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m03029r + - id: "m03029r" - name: "trans-2-cis,cis,cis-8,11,14-eicosatetraenoyl-CoA" - - compartment: r - - formula: C41H62N7O17P3S + - compartment: "r" + - formula: "C41H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01769r + - id: "m01769r" - name: "eicosa-(2E,8Z,11Z,14Z,17Z)-pentaenoyl-CoA" - - compartment: r - - formula: C41H60N7O17P3S + - compartment: "r" + - formula: "C41H60N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00811r + - id: "m00811r" - name: "3-keto-eicosa-8,11,14,17-all-cis-tetraenoyl-CoA" - - compartment: r - - formula: C41H60N7O18P3S + - compartment: "r" + - formula: "C41H60N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01069m + - id: "m01069m" - name: "5-alpha-dihydrotestosterone" - - compartment: m - - formula: C19H30O2 + - compartment: "m" + - formula: "C19H30O2" - charge: 0 - - inchis: 1S/C19H30O2/c1-18-9-7-13(20)11-12(18)3-4-14-15-5-6-17(21)19(15,2)10-8-16(14)18/h12,14-17,21H,3-11H2,1-2H3/t12-,14-,15-,16-,17-,18-,19-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C19H30O2/c1-18-9-7-13(20)11-12(18)3-4-14-15-5-6-17(21)19(15,2)10-8-16(14)18/h12,14-17,21H,3-11H2,1-2H3/t12-,14-,15-,16-,17-,18-,19-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m01336m + - id: "m01336m" - name: "androstenediol" - - compartment: m - - formula: C19H30O2 + - compartment: "m" + - formula: "C19H30O2" - charge: 0 - - inchis: 1S/C19H30O2/c1-18-9-7-13(20)11-12(18)3-4-14-15-5-6-17(21)19(15,2)10-8-16(14)18/h3,13-17,20-21H,4-11H2,1-2H3/t13-,14-,15-,16-,17-,18-,19-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C19H30O2/c1-18-9-7-13(20)11-12(18)3-4-14-15-5-6-17(21)19(15,2)10-8-16(14)18/h3,13-17,20-21H,4-11H2,1-2H3/t13-,14-,15-,16-,17-,18-,19-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m00708r + - id: "m00708r" - name: "3(S)-hydroxy-all-cis-8,11,14,17-eicosatetraenoyl-CoA" - - compartment: r - - formula: C41H62N7O18P3S + - compartment: "r" + - formula: "C41H62N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00679r + - id: "m00679r" - name: "2-trans-7,10,13,16,19-all-cis-docosahexaenoyl-CoA" - - compartment: r - - formula: C43H62N7O17P3S + - compartment: "r" + - formula: "C43H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00863r + - id: "m00863r" - name: "3-oxo-docosa-7,10,13,16,19-all-cis-pentaenoyl-CoA" - - compartment: r - - formula: C43H62N7O18P3S + - compartment: "r" + - formula: "C43H62N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00713r + - id: "m00713r" - name: "3(S)-hydroxy-docosa-7,10,13,16,19-all-cis-pentaenoyl-CoA" - - compartment: r - - formula: C43H64N7O18P3S + - compartment: "r" + - formula: "C43H64N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00680r + - id: "m00680r" - name: "2-trans-9,12,15,18,21-all-cis-tetracosahexaenoyl-CoA" - - compartment: r - - formula: C45H66N7O17P3S + - compartment: "r" + - formula: "C45H66N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE4824_r + - id: "CE4824_r" - name: "Tetracosa-9,12,15,18,21-All-Cis-Pentaenoyl Coenzyme A" - - compartment: r - - formula: C45H68N7O17P3S + - compartment: "r" + - formula: "C45H68N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00853r + - id: "m00853r" - name: "3-oxo-all-cis-6,9,12,15,18-tetracosapentaenoyl-CoA" - - compartment: r - - formula: C45H66N7O18P3S + - compartment: "r" + - formula: "C45H66N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00718r + - id: "m00718r" - name: "3(S)-hydroxy-tetracosa-9,12,15,18,21-all-cis-pentaenoyl-CoA" - - compartment: r - - formula: C45H68N7O18P3S + - compartment: "r" + - formula: "C45H68N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01450n + - id: "m01450n" - name: "cholesterol" - - compartment: n - - formula: C27H46O + - compartment: "n" + - formula: "C27H46O" - charge: 0 - - inchis: 1S/C27H46O/c1-18(2)7-6-8-19(3)23-11-12-24-22-10-9-20-17-21(28)13-15-26(20,4)25(22)14-16-27(23,24)5/h9,18-19,21-25,28H,6-8,10-17H2,1-5H3/t19-,21+,22+,23-,24+,25+,26+,27-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C27H46O/c1-18(2)7-6-8-19(3)23-11-12-24-22-10-9-20-17-21(28)13-15-26(20,4)25(22)14-16-27(23,24)5/h9,18-19,21-25,28H,6-8,10-17H2,1-5H3/t19-,21+,22+,23-,24+,25+,26+,27-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: CE2313_c + - id: "CE2313_c" - name: "4,4-Dimethylcholesta-8(9),14-Dien-3Beta-Ol" - - compartment: c - - formula: C29H48O + - compartment: "c" + - formula: "C29H48O" - charge: 0 - - inchis: 1/C29H48O/c1-19(2)9-8-10-20(3)22-12-13-23-21-11-14-25-27(4,5)26(30)16-18-29(25,7)24(21)15-17-28(22,23)6/h13,19-20,22,25-26,30H,8-12,14-18H2,1-7H3/t20?,22-,25?,26+,28-,29-/s2 - - metFrom: Recon3D + - inchis: "1/C29H48O/c1-19(2)9-8-10-20(3)22-12-13-23-21-11-14-25-27(4,5)26(30)16-18-29(25,7)24(21)15-17-28(22,23)6/h13,19-20,22,25-26,30H,8-12,14-18H2,1-7H3/t20?,22-,25?,26+,28-,29-/s2" + - metFrom: "Recon3D" - !!omap - - id: CE2313_r + - id: "CE2313_r" - name: "4,4-Dimethylcholesta-8(9),14-Dien-3Beta-Ol" - - compartment: r - - formula: C29H48O + - compartment: "r" + - formula: "C29H48O" - charge: 0 - - inchis: 1/C29H48O/c1-19(2)9-8-10-20(3)22-12-13-23-21-11-14-25-27(4,5)26(30)16-18-29(25,7)24(21)15-17-28(22,23)6/h13,19-20,22,25-26,30H,8-12,14-18H2,1-7H3/t20?,22-,25?,26+,28-,29-/s2 - - metFrom: Recon3D + - inchis: "1/C29H48O/c1-19(2)9-8-10-20(3)22-12-13-23-21-11-14-25-27(4,5)26(30)16-18-29(25,7)24(21)15-17-28(22,23)6/h13,19-20,22,25-26,30H,8-12,14-18H2,1-7H3/t20?,22-,25?,26+,28-,29-/s2" + - metFrom: "Recon3D" - !!omap - - id: m00943r + - id: "m00943r" - name: "4,4-dimethyl-5alpha-cholesta-8-en-3-beta-ol" - - compartment: r - - formula: C29H50O + - compartment: "r" + - formula: "C29H50O" - charge: 0 - - inchis: 1S/C29H50O/c1-19(2)9-8-10-20(3)22-12-13-23-21-11-14-25-27(4,5)26(30)16-18-29(25,7)24(21)15-17-28(22,23)6/h19-20,22-23,25-26,30H,8-18H2,1-7H3/t20-,22-,23?,25+,26+,28-,29-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C29H50O/c1-19(2)9-8-10-20(3)22-12-13-23-21-11-14-25-27(4,5)26(30)16-18-29(25,7)24(21)15-17-28(22,23)6/h19-20,22-23,25-26,30H,8-18H2,1-7H3/t20-,22-,23?,25+,26+,28-,29-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: CE6027_c + - id: "CE6027_c" - name: "24,25,26,27-Tetranor-23-Oxo-Hydroxyvitamin D3" - - compartment: c - - formula: C23H34O3 + - compartment: "c" + - formula: "C23H34O3" - charge: 0 - - inchis: 1S/C23H34O3/c1-15(10-12-24)20-8-9-21-17(5-4-11-23(20,21)3)6-7-18-13-19(25)14-22(26)16(18)2/h6-7,12,15,19-22,25-26H,2,4-5,8-11,13-14H2,1,3H3/b17-6+,18-7-/t15-,19+,20-,21+,22+,23?/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C23H34O3/c1-15(10-12-24)20-8-9-21-17(5-4-11-23(20,21)3)6-7-18-13-19(25)14-22(26)16(18)2/h6-7,12,15,19-22,25-26H,2,4-5,8-11,13-14H2,1,3H3/b17-6+,18-7-/t15-,19+,20-,21+,22+,23?/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: CE6027_m + - id: "CE6027_m" - name: "24,25,26,27-Tetranor-23-Oxo-Hydroxyvitamin D3" - - compartment: m - - formula: C23H34O3 + - compartment: "m" + - formula: "C23H34O3" - charge: 0 - - inchis: 1S/C23H34O3/c1-15(10-12-24)20-8-9-21-17(5-4-11-23(20,21)3)6-7-18-13-19(25)14-22(26)16(18)2/h6-7,12,15,19-22,25-26H,2,4-5,8-11,13-14H2,1,3H3/b17-6+,18-7-/t15-,19+,20-,21+,22+,23?/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C23H34O3/c1-15(10-12-24)20-8-9-21-17(5-4-11-23(20,21)3)6-7-18-13-19(25)14-22(26)16(18)2/h6-7,12,15,19-22,25-26H,2,4-5,8-11,13-14H2,1,3H3/b17-6+,18-7-/t15-,19+,20-,21+,22+,23?/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: CE4837_c + - id: "CE4837_c" - name: "Tetracosa-9,12,15,18-All-Cis-Tetraenoyl Coenzyme A" - - compartment: c - - formula: C45H70N7O17P3S + - compartment: "c" + - formula: "C45H70N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00681r + - id: "m00681r" - name: "2-trans-9,12,15,18-all-cis-tetracosapentaenoyl-CoA" - - compartment: r - - formula: C45H68N7O17P3S + - compartment: "r" + - formula: "C45H68N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE4837_r + - id: "CE4837_r" - name: "Tetracosa-9,12,15,18-All-Cis-Tetraenoyl Coenzyme A" - - compartment: r - - formula: C45H70N7O17P3S + - compartment: "r" + - formula: "C45H70N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00864r + - id: "m00864r" - name: "3-oxo-docosa-7,10,13,16-all-cis-tetraenoyl-CoA" - - compartment: r - - formula: C43H64N7O18P3S + - compartment: "r" + - formula: "C43H64N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00714r + - id: "m00714r" - name: "3(S)-hydroxy-docosa-7,10,13,16-all-cis-tetraenoyl-CoA" - - compartment: r - - formula: C43H66N7O18P3S + - compartment: "r" + - formula: "C43H66N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00074r + - id: "m00074r" - name: "(2E,7Z,10Z,13Z,16Z)-docosapentaenoyl-CoA" - - compartment: r - - formula: C43H64N7O17P3S + - compartment: "r" + - formula: "C43H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00903r + - id: "m00903r" - name: "3-oxo-tetracosa-9,12,15,18-all-cis-tetraenoyl-CoA" - - compartment: r - - formula: C45H68N7O18P3S + - compartment: "r" + - formula: "C45H68N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00716r + - id: "m00716r" - name: "3(S)-hydroxy-tetracosa-12,15,18,21-all-cis-tetraenoyl-CoA" - - compartment: r - - formula: C45H70N7O18P3S + - compartment: "r" + - formula: "C45H70N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00870r + - id: "m00870r" - name: "3-oxoeicosa-cis,cis-11,14-dienoyl-CoA" - - compartment: r - - formula: C41H64N7O18P3S + - compartment: "r" + - formula: "C41H64N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00087r + - id: "m00087r" - name: "(3S)-hydroxy-eicosa-cis,cis-11,14-dienoyl-CoA" - - compartment: r - - formula: C41H66N7O18P3S + - compartment: "r" + - formula: "C41H66N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m03007r + - id: "m03007r" - name: "trans,cis,cis-2,11,14-eicosatrienoyl-CoA" - - compartment: r - - formula: C41H64N7O17P3S + - compartment: "r" + - formula: "C41H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00865r + - id: "m00865r" - name: "3-oxo-docosa-cis,cis,cis-10,13,16-trienoyl-CoA" - - compartment: r - - formula: C43H66N7O18P3S + - compartment: "r" + - formula: "C43H66N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00698r + - id: "m00698r" - name: "3(S)-hydroxy-10,13,16-all-cis-docosatrienoyl-CoA" - - compartment: r - - formula: C43H68N7O18P3S + - compartment: "r" + - formula: "C43H68N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m03004r + - id: "m03004r" - name: "trans,cis,cis,cis-2,10,13,16-docosatetraenoyl-CoA" - - compartment: r - - formula: C43H66N7O17P3S + - compartment: "r" + - formula: "C43H66N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m03002r + - id: "m03002r" - name: "trans,cis,cis,cis,cis-2,10,13,16,19-docosapentaenoyl-CoA" - - compartment: r - - formula: C43H64N7O17P3S + - compartment: "r" + - formula: "C43H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00861r + - id: "m00861r" - name: "3-oxo-docosa-10,13,16,19-all-cis-tetraenoyl-CoA" - - compartment: r - - formula: C43H64N7O18P3S + - compartment: "r" + - formula: "C43H64N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00711r + - id: "m00711r" - name: "3(S)-hydroxy-docosa-10,13,16,19-all-cis-tetraenoyl-CoA" - - compartment: r - - formula: C43H66N7O18P3S + - compartment: "r" + - formula: "C43H66N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m03003r + - id: "m03003r" - name: "trans,cis,cis,cis,cis-2,12,15,18,21-tetracosapentaenoyl-CoA" - - compartment: r - - formula: C45H68N7O17P3S + - compartment: "r" + - formula: "C45H68N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00901r + - id: "m00901r" - name: "3-oxo-tetracosa-12,15,18,21-all-cis-tetraenoyl-CoA" - - compartment: r - - formula: C45H68N7O18P3S + - compartment: "r" + - formula: "C45H68N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE5049_c + - id: "CE5049_c" - name: "One Carbon Unit" - - compartment: c - - formula: CH2 + - compartment: "c" + - formula: "CH2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01071l + - id: "m01071l" - name: "5alpha-dihydrotestosterone-sulfate" - - compartment: l - - formula: C19H29O5S + - compartment: "l" + - formula: "C19H29O5S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01069l + - id: "m01069l" - name: "5-alpha-dihydrotestosterone" - - compartment: l - - formula: C19H30O2 + - compartment: "l" + - formula: "C19H30O2" - charge: 0 - - inchis: 1S/C19H30O2/c1-18-9-7-13(20)11-12(18)3-4-14-15-5-6-17(21)19(15,2)10-8-16(14)18/h12,14-17,21H,3-11H2,1-2H3/t12-,14-,15-,16-,17-,18-,19-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C19H30O2/c1-18-9-7-13(20)11-12(18)3-4-14-15-5-6-17(21)19(15,2)10-8-16(14)18/h12,14-17,21H,3-11H2,1-2H3/t12-,14-,15-,16-,17-,18-,19-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m01071r + - id: "m01071r" - name: "5alpha-dihydrotestosterone-sulfate" - - compartment: r - - formula: C19H29O5S + - compartment: "r" + - formula: "C19H29O5S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01338l + - id: "m01338l" - name: "androsterone" - - compartment: l - - formula: C19H30O2 + - compartment: "l" + - formula: "C19H30O2" - charge: 0 - - inchis: 1S/C19H30O2/c1-18-9-7-13(20)11-12(18)3-4-14-15-5-6-17(21)19(15,2)10-8-16(14)18/h12-16,20H,3-11H2,1-2H3/t12-,13+,14-,15-,16-,18-,19-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C19H30O2/c1-18-9-7-13(20)11-12(18)3-4-14-15-5-6-17(21)19(15,2)10-8-16(14)18/h12-16,20H,3-11H2,1-2H3/t12-,13+,14-,15-,16-,18-,19-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m01337l + - id: "m01337l" - name: "androsterone sulfate" - - compartment: l - - formula: C19H29O5S + - compartment: "l" + - formula: "C19H29O5S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01337r + - id: "m01337r" - name: "androsterone sulfate" - - compartment: r - - formula: C19H29O5S + - compartment: "r" + - formula: "C19H29O5S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00840r + - id: "m00840r" - name: "3-oxo-11-cis-eicosenoyl-CoA" - - compartment: r - - formula: C41H66N7O18P3S + - compartment: "r" + - formula: "C41H66N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00842r + - id: "m00842r" - name: "3-oxo-13cis-docosenoyl-CoA" - - compartment: r - - formula: C43H70N7O18P3S + - compartment: "r" + - formula: "C43H70N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00856r + - id: "m00856r" - name: "3-oxo-cis-15-tetracosaenoyl-CoA" - - compartment: r - - formula: C45H74N7O18P3S + - compartment: "r" + - formula: "C45H74N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00700r + - id: "m00700r" - name: "3(S)-hydroxy-11-cis-eicosenoyl-CoA" - - compartment: r - - formula: C41H68N7O18P3S + - compartment: "r" + - formula: "C41H68N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m03012r + - id: "m03012r" - name: "trans,cis-2,11-eicosadienoyl-CoA" - - compartment: r - - formula: C41H66N7O17P3S + - compartment: "r" + - formula: "C41H66N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00701r + - id: "m00701r" - name: "3(S)-hydroxy-13-cis-docosenoyl-CoA" - - compartment: r - - formula: C43H72N7O18P3S + - compartment: "r" + - formula: "C43H72N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m03013r + - id: "m03013r" - name: "trans,cis-2,13-docosadienoyl-CoA" - - compartment: r - - formula: C43H70N7O17P3S + - compartment: "r" + - formula: "C43H70N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02138g + - id: "m02138g" - name: "hordenine" - - compartment: g - - formula: C10H16NO + - compartment: "g" + - formula: "C10H16NO" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02499g + - id: "m02499g" - name: "N,N-dimethyldopaminequinone" - - compartment: g - - formula: C10H14NO2 + - compartment: "g" + - formula: "C10H14NO2" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02138l + - id: "m02138l" - name: "hordenine" - - compartment: l - - formula: C10H16NO + - compartment: "l" + - formula: "C10H16NO" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02499l + - id: "m02499l" - name: "N,N-dimethyldopaminequinone" - - compartment: l - - formula: C10H14NO2 + - compartment: "l" + - formula: "C10H14NO2" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00709r + - id: "m00709r" - name: "3(S)-hydroxy-cis-15-tetracosaenoyl-CoA" - - compartment: r - - formula: C45H76N7O18P3S + - compartment: "r" + - formula: "C45H76N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m03015r + - id: "m03015r" - name: "trans,cis-2,15-tetracosadienoyl-CoA" - - compartment: r - - formula: C45H74N7O17P3S + - compartment: "r" + - formula: "C45H74N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE5160_c + - id: "CE5160_c" - name: "3-Oxo-Cis-9-Octadecenoyl Coenzyme A" - - compartment: c - - formula: C39H62N7O18P3S + - compartment: "c" + - formula: "C39H62N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE5160_r + - id: "CE5160_r" - name: "3-Oxo-Cis-9-Octadecenoyl Coenzyme A" - - compartment: r - - formula: C39H62N7O18P3S + - compartment: "r" + - formula: "C39H62N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE5161_c + - id: "CE5161_c" - name: "3(S)-Hydroxy-Cis-9-Octadecenoyl Coenzyme A" - - compartment: c - - formula: C39H64N7O18P3S + - compartment: "c" + - formula: "C39H64N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE5161_r + - id: "CE5161_r" - name: "3(S)-Hydroxy-Cis-9-Octadecenoyl Coenzyme A" - - compartment: r - - formula: C39H64N7O18P3S + - compartment: "r" + - formula: "C39H64N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE5162_c + - id: "CE5162_c" - name: "Trans,Cis-2,9-Octadecadienoyl Coenzyme A" - - compartment: c - - formula: C39H62N7O17P3S + - compartment: "c" + - formula: "C39H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE5162_r + - id: "CE5162_r" - name: "Trans,Cis-2,9-Octadecadienoyl Coenzyme A" - - compartment: r - - formula: C39H62N7O17P3S + - compartment: "r" + - formula: "C39H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE5168_m + - id: "CE5168_m" - name: "24(R),25(R)-Varanoyl Coenzyme A" - - compartment: m - - formula: C48H76N7O21P3S + - compartment: "m" + - formula: "C48H76N7O21P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE5168_p + - id: "CE5168_p" - name: "24(R),25(R)-Varanoyl Coenzyme A" - - compartment: p - - formula: C48H76N7O21P3S + - compartment: "p" + - formula: "C48H76N7O21P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE5168_c + - id: "CE5168_c" - name: "24(R),25(R)-Varanoyl Coenzyme A" - - compartment: c - - formula: C48H76N7O21P3S + - compartment: "c" + - formula: "C48H76N7O21P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE5169_c + - id: "CE5169_c" - name: "24-Oxo-25(R)-Trihydroxycoprostanoyl Coenzyme A" - - compartment: c - - formula: C48H74N7O21P3S + - compartment: "c" + - formula: "C48H74N7O21P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE5169_m + - id: "CE5169_m" - name: "24-Oxo-25(R)-Trihydroxycoprostanoyl Coenzyme A" - - compartment: m - - formula: C48H74N7O21P3S + - compartment: "m" + - formula: "C48H74N7O21P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE5169_p + - id: "CE5169_p" - name: "24-Oxo-25(R)-Trihydroxycoprostanoyl Coenzyme A" - - compartment: p - - formula: C48H74N7O21P3S + - compartment: "p" + - formula: "C48H74N7O21P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01428s + - id: "m01428s" - name: "CDP-ethanolamine" - - compartment: s - - formula: C11H19N4O11P2 + - compartment: "s" + - formula: "C11H19N4O11P2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 12dgr120_s + - id: "12dgr120_s" - name: "1,2-Diacyl-Sn-Glycerol (Didodecanoyl, N-C12:0)" - - compartment: s - - formula: C27H52O5 + - compartment: "s" + - formula: "C27H52O5" - charge: 0 - - inchis: 1S/C27H52O5/c1-3-5-7-9-11-13-15-17-19-21-26(29)31-24-25(23-28)32-27(30)22-20-18-16-14-12-10-8-6-4-2/h25,28H,3-24H2,1-2H3 - - metFrom: Recon3D + - inchis: "1S/C27H52O5/c1-3-5-7-9-11-13-15-17-19-21-26(29)31-24-25(23-28)32-27(30)22-20-18-16-14-12-10-8-6-4-2/h25,28H,3-24H2,1-2H3" + - metFrom: "Recon3D" - !!omap - - id: 12dgr120_g + - id: "12dgr120_g" - name: "1,2-Diacyl-Sn-Glycerol (Didodecanoyl, N-C12:0)" - - compartment: g - - formula: C27H52O5 + - compartment: "g" + - formula: "C27H52O5" - charge: 0 - - inchis: 1S/C27H52O5/c1-3-5-7-9-11-13-15-17-19-21-26(29)31-24-25(23-28)32-27(30)22-20-18-16-14-12-10-8-6-4-2/h25,28H,3-24H2,1-2H3 - - metFrom: Recon3D + - inchis: "1S/C27H52O5/c1-3-5-7-9-11-13-15-17-19-21-26(29)31-24-25(23-28)32-27(30)22-20-18-16-14-12-10-8-6-4-2/h25,28H,3-24H2,1-2H3" + - metFrom: "Recon3D" - !!omap - - id: m01428m + - id: "m01428m" - name: "CDP-ethanolamine" - - compartment: m - - formula: C11H19N4O11P2 + - compartment: "m" + - formula: "C11H19N4O11P2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 12dgr120_m + - id: "12dgr120_m" - name: "1,2-Diacyl-Sn-Glycerol (Didodecanoyl, N-C12:0)" - - compartment: m - - formula: C27H52O5 + - compartment: "m" + - formula: "C27H52O5" - charge: 0 - - inchis: 1S/C27H52O5/c1-3-5-7-9-11-13-15-17-19-21-26(29)31-24-25(23-28)32-27(30)22-20-18-16-14-12-10-8-6-4-2/h25,28H,3-24H2,1-2H3 - - metFrom: Recon3D + - inchis: "1S/C27H52O5/c1-3-5-7-9-11-13-15-17-19-21-26(29)31-24-25(23-28)32-27(30)22-20-18-16-14-12-10-8-6-4-2/h25,28H,3-24H2,1-2H3" + - metFrom: "Recon3D" - !!omap - - id: m01428n + - id: "m01428n" - name: "CDP-ethanolamine" - - compartment: n - - formula: C11H19N4O11P2 + - compartment: "n" + - formula: "C11H19N4O11P2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02685n + - id: "m02685n" - name: "PE-LD pool" - - compartment: n - - formula: C7H12NO8PR2 + - compartment: "n" + - formula: "C7H12NO8PR2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 12dgr120_n + - id: "12dgr120_n" - name: "1,2-Diacyl-Sn-Glycerol (Didodecanoyl, N-C12:0)" - - compartment: n - - formula: C27H52O5 + - compartment: "n" + - formula: "C27H52O5" - charge: 0 - - inchis: 1S/C27H52O5/c1-3-5-7-9-11-13-15-17-19-21-26(29)31-24-25(23-28)32-27(30)22-20-18-16-14-12-10-8-6-4-2/h25,28H,3-24H2,1-2H3 - - metFrom: Recon3D + - inchis: "1S/C27H52O5/c1-3-5-7-9-11-13-15-17-19-21-26(29)31-24-25(23-28)32-27(30)22-20-18-16-14-12-10-8-6-4-2/h25,28H,3-24H2,1-2H3" + - metFrom: "Recon3D" - !!omap - - id: m01428r + - id: "m01428r" - name: "CDP-ethanolamine" - - compartment: r - - formula: C11H19N4O11P2 + - compartment: "r" + - formula: "C11H19N4O11P2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 12dgr120_r + - id: "12dgr120_r" - name: "1,2-Diacyl-Sn-Glycerol (Didodecanoyl, N-C12:0)" - - compartment: r - - formula: C27H52O5 + - compartment: "r" + - formula: "C27H52O5" - charge: 0 - - inchis: 1S/C27H52O5/c1-3-5-7-9-11-13-15-17-19-21-26(29)31-24-25(23-28)32-27(30)22-20-18-16-14-12-10-8-6-4-2/h25,28H,3-24H2,1-2H3 - - metFrom: Recon3D + - inchis: "1S/C27H52O5/c1-3-5-7-9-11-13-15-17-19-21-26(29)31-24-25(23-28)32-27(30)22-20-18-16-14-12-10-8-6-4-2/h25,28H,3-24H2,1-2H3" + - metFrom: "Recon3D" - !!omap - - id: m02171g + - id: "m02171g" - name: "inositol" - - compartment: g - - formula: C6H12O6 + - compartment: "g" + - formula: "C6H12O6" - charge: 0 - - inchis: 1S/C6H12O6/c7-1-2(8)4(10)6(12)5(11)3(1)9/h1-12H/t1-,2-,3-,4+,5-,6- - - metFrom: Recon3D + - inchis: "1S/C6H12O6/c7-1-2(8)4(10)6(12)5(11)3(1)9/h1-12H/t1-,2-,3-,4+,5-,6-" + - metFrom: "Recon3D" - !!omap - - id: m00279r + - id: "m00279r" - name: "11,12-EET" - - compartment: r - - formula: C20H31O3 + - compartment: "r" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02896g + - id: "m02896g" - name: "serine" - - compartment: g - - formula: C3H7NO3 + - compartment: "g" + - formula: "C3H7NO3" - charge: 0 - - inchis: 1S/C3H7NO3/c4-2(1-5)3(6)7/h2,5H,1,4H2,(H,6,7)/t2-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C3H7NO3/c4-2(1-5)3(6)7/h2,5H,1,4H2,(H,6,7)/t2-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m02896r + - id: "m02896r" - name: "serine" - - compartment: r - - formula: C3H7NO3 + - compartment: "r" + - formula: "C3H7NO3" - charge: 0 - - inchis: 1S/C3H7NO3/c4-2(1-5)3(6)7/h2,5H,1,4H2,(H,6,7)/t2-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C3H7NO3/c4-2(1-5)3(6)7/h2,5H,1,4H2,(H,6,7)/t2-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m00740c + - id: "m00740c" - name: "3,5-dioxo-12(R)-hydroxy-eicosa-(8E,10E,14Z)-trienoyl-CoA" - - compartment: c - - formula: C41H60N7O20P3S + - compartment: "c" + - formula: "C41H60N7O20P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00689c + - id: "m00689c" - name: "3(S),12(R)-dihydroxy-5-oxo-eicosa-(8E,10E,14Z)-trienoyl-CoA" - - compartment: c - - formula: C41H62N7O20P3S + - compartment: "c" + - formula: "C41H62N7O20P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00836c + - id: "m00836c" - name: "3-oxo-10(R)-hydroxy-octadeca-(6E,8E,12Z)-trienoyl-CoA" - - compartment: c - - formula: C39H58N7O19P3S + - compartment: "c" + - formula: "C39H58N7O19P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00690c + - id: "m00690c" - name: "3(S),12(S)-dihydroxy-5-oxo-eicosa-(8E,10E,14Z)-trienoyl-CoA" - - compartment: c - - formula: C41H62N7O20P3S + - compartment: "c" + - formula: "C41H62N7O20P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00741c + - id: "m00741c" - name: "3,5-dioxo-12(S)-hydroxy-eicosa-(8E,10E,14Z)-trienoyl-CoA" - - compartment: c - - formula: C41H60N7O20P3S + - compartment: "c" + - formula: "C41H60N7O20P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00838c + - id: "m00838c" - name: "3-oxo-10(S)-hydroxy-octadeca-(6E,8E,12Z)-trienoyl-CoA" - - compartment: c - - formula: C39H58N7O19P3S + - compartment: "c" + - formula: "C39H58N7O19P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00751r + - id: "m00751r" - name: "3alpha,7alpha,12alpha-trihydroxy-5beta-cholestan-27-al" - - compartment: r - - formula: C27H46O4 + - compartment: "r" + - formula: "C27H46O4" - charge: 0 - - inchis: 1S/C27H46O4/c1-16(15-28)6-5-7-17(2)20-8-9-21-25-22(14-24(31)27(20,21)4)26(3)11-10-19(29)12-18(26)13-23(25)30/h15-25,29-31H,5-14H2,1-4H3/t16?,17-,18?,19+,20-,21?,22?,23+,24-,25?,26?,27-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C27H46O4/c1-16(15-28)6-5-7-17(2)20-8-9-21-25-22(14-24(31)27(20,21)4)26(3)11-10-19(29)12-18(26)13-23(25)30/h15-25,29-31H,5-14H2,1-4H3/t16?,17-,18?,19+,20-,21?,22?,23+,24-,25?,26?,27-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m00766s + - id: "m00766s" - name: "3-carboxy-alpha-chromanol" - - compartment: s - - formula: C16H21O4 + - compartment: "s" + - formula: "C16H21O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01321s + - id: "m01321s" - name: "alpha-CEHC-glucuronide" - - compartment: s - - formula: C22H29O10 + - compartment: "s" + - formula: "C22H29O10" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00766l + - id: "m00766l" - name: "3-carboxy-alpha-chromanol" - - compartment: l - - formula: C16H21O4 + - compartment: "l" + - formula: "C16H21O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01321l + - id: "m01321l" - name: "alpha-CEHC-glucuronide" - - compartment: l - - formula: C22H29O10 + - compartment: "l" + - formula: "C22H29O10" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02796m + - id: "m02796m" - name: "prostaglandin J2" - - compartment: m - - formula: C20H29O4 + - compartment: "m" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01662m + - id: "m01662m" - name: "delta-12-prostaglandin J2" - - compartment: m - - formula: C20H29O4 + - compartment: "m" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00252r + - id: "m00252r" - name: "10,11-dihydro-12-epi-LTB4" - - compartment: r - - formula: C20H33O4 + - compartment: "r" + - formula: "C20H33O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00688c + - id: "m00688c" - name: "3(S),10(R)-OH-octadeca-6-trans-4,12-cis-trienoyl-CoA" - - compartment: c - - formula: C39H60N7O19P3S + - compartment: "c" + - formula: "C39H60N7O19P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00687c + - id: "m00687c" - name: "3(S),10(R)-OH-octadeca-6-trans-4,12-cis-trienoate" - - compartment: c - - formula: C18H29O4 + - compartment: "c" + - formula: "C18H29O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00846c + - id: "m00846c" - name: "3-oxo-5(S),12(R)-dihydroxy-eicosa-8-trans-6,14-cis-trienoyl-CoA" - - compartment: c - - formula: C41H62N7O20P3S + - compartment: "c" + - formula: "C41H62N7O20P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00691c + - id: "m00691c" - name: "3(S),5(S),12(R)-trihydroxy-eicosa-8-trans-6,14-cis-trienoyl-CoA" - - compartment: c - - formula: C41H64N7O20P3S + - compartment: "c" + - formula: "C41H64N7O20P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01123m + - id: "m01123m" - name: "5-oxo-12-HETE" - - compartment: m - - formula: C20H29O4 + - compartment: "m" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01123p + - id: "m01123p" - name: "5-oxo-12-HETE" - - compartment: p - - formula: C20H29O4 + - compartment: "p" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00590r + - id: "m00590r" - name: "20-hydroxy-5S-HETE" - - compartment: r - - formula: C20H31O4 + - compartment: "r" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01040n + - id: "m01040n" - name: "5(S)-HETE" - - compartment: n - - formula: C20H31O3 + - compartment: "n" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01050n + - id: "m01050n" - name: "5,15-DiHETE" - - compartment: n - - formula: C20H31O4 + - compartment: "n" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01126m + - id: "m01126m" - name: "5-oxo-ETE" - - compartment: m - - formula: C20H29O3 + - compartment: "m" + - formula: "C20H29O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01040p + - id: "m01040p" - name: "5(S)-HETE" - - compartment: p - - formula: C20H31O3 + - compartment: "p" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01126p + - id: "m01126p" - name: "5-oxo-ETE" - - compartment: p - - formula: C20H29O3 + - compartment: "p" + - formula: "C20H29O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01056n + - id: "m01056n" - name: "5,6-epoxy,(18R)-HEPE" - - compartment: n - - formula: C20H27O4 + - compartment: "n" + - formula: "C20H27O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00028n + - id: "m00028n" - name: "(18R)-HEPE" - - compartment: n - - formula: C20H29O3 + - compartment: "n" + - formula: "C20H29O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02364n + - id: "m02364n" - name: "leukotriene B4" - - compartment: n - - formula: C20H31O4 + - compartment: "n" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00307n + - id: "m00307n" - name: "12(S)-HETE" - - compartment: n - - formula: C20H31O3 + - compartment: "n" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01047r + - id: "m01047r" - name: "5,12,20-TriHETE" - - compartment: r - - formula: C20H31O5 + - compartment: "r" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: C08276_c + - id: "C08276_c" - name: "3-(Methylthio)Propionate" - - compartment: c - - formula: C4H7O2S + - compartment: "c" + - formula: "C4H7O2S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ch4s_c + - id: "ch4s_c" - name: "Methanethiol" - - compartment: c - - formula: CH4S + - compartment: "c" + - formula: "CH4S" - charge: 0 - - inchis: 1S/CH4S/c1-2/h2H,1H3 - - metFrom: Recon3D + - inchis: "1S/CH4S/c1-2/h2H,1H3" + - metFrom: "Recon3D" - !!omap - - id: acryl_c + - id: "acryl_c" - name: "Acrylate" - - compartment: c - - formula: C3H3O2 + - compartment: "c" + - formula: "C3H3O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00309m + - id: "m00309m" - name: "12(S)-HPETE" - - compartment: m - - formula: C20H31O4 + - compartment: "m" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02096m + - id: "m02096m" - name: "hepoxilin A3" - - compartment: m - - formula: C20H31O4 + - compartment: "m" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00309n + - id: "m00309n" - name: "12(S)-HPETE" - - compartment: n - - formula: C20H31O4 + - compartment: "n" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02096n + - id: "m02096n" - name: "hepoxilin A3" - - compartment: n - - formula: C20H31O4 + - compartment: "n" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02097m + - id: "m02097m" - name: "hepoxilin A3-c" - - compartment: m - - formula: C30H47N3O10S + - compartment: "m" + - formula: "C30H47N3O10S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01234m + - id: "m01234m" - name: "9-deoxy-delta12-PGD2" - - compartment: m - - formula: C20H31O4 + - compartment: "m" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02859m + - id: "m02859m" - name: "S-(9-deoxy-delta12-PGD2)-glutathione" - - compartment: m - - formula: C30H47N3O10S + - compartment: "m" + - formula: "C30H47N3O10S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01234r + - id: "m01234r" - name: "9-deoxy-delta12-PGD2" - - compartment: r - - formula: C20H31O4 + - compartment: "r" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02859r + - id: "m02859r" - name: "S-(9-deoxy-delta12-PGD2)-glutathione" - - compartment: r - - formula: C30H47N3O10S + - compartment: "r" + - formula: "C30H47N3O10S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02864m + - id: "m02864m" - name: "S-(PGJ2)-glutathione" - - compartment: m - - formula: C30H45N3O10S + - compartment: "m" + - formula: "C30H45N3O10S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02864r + - id: "m02864r" - name: "S-(PGJ2)-glutathione" - - compartment: r - - formula: C30H45N3O10S + - compartment: "r" + - formula: "C30H45N3O10S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02860m + - id: "m02860m" - name: "S-(9-deoxy-delta9,12-PGD2)-glutathione" - - compartment: m - - formula: C30H45N3O10S + - compartment: "m" + - formula: "C30H45N3O10S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02860r + - id: "m02860r" - name: "S-(9-deoxy-delta9,12-PGD2)-glutathione" - - compartment: r - - formula: C30H45N3O10S + - compartment: "r" + - formula: "C30H45N3O10S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02863m + - id: "m02863m" - name: "S-(PGA2)-glutathione" - - compartment: m - - formula: C30H45N3O10S + - compartment: "m" + - formula: "C30H45N3O10S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02777r + - id: "m02777r" - name: "prostaglandin A2" - - compartment: r - - formula: C20H29O4 + - compartment: "r" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02863r + - id: "m02863r" - name: "S-(PGA2)-glutathione" - - compartment: r - - formula: C30H45N3O10S + - compartment: "r" + - formula: "C30H45N3O10S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02776m + - id: "m02776m" - name: "prostaglandin A1" - - compartment: m - - formula: C20H31O4 + - compartment: "m" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02862m + - id: "m02862m" - name: "S-(PGA1)-glutathione" - - compartment: m - - formula: C30H47N3O10S + - compartment: "m" + - formula: "C30H47N3O10S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02776r + - id: "m02776r" - name: "prostaglandin A1" - - compartment: r - - formula: C20H31O4 + - compartment: "r" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02862r + - id: "m02862r" - name: "S-(PGA1)-glutathione" - - compartment: r - - formula: C30H47N3O10S + - compartment: "r" + - formula: "C30H47N3O10S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00421c + - id: "m00421c" - name: "18-CoA-18-oxo-dinor-LTB4" - - compartment: c - - formula: C39H55N7O21P3S + - compartment: "c" + - formula: "C39H55N7O21P3S" - charge: -5 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02649c + - id: "m02649c" - name: "omega-carboxy-trinor-LTB4" - - compartment: c - - formula: C18H24O6 + - compartment: "c" + - formula: "C18H24O6" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00420c + - id: "m00420c" - name: "18,20-dioxo-20-CoA-LTB4" - - compartment: c - - formula: C41H57N7O22P3S + - compartment: "c" + - formula: "C41H57N7O22P3S" - charge: -5 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00581c + - id: "m00581c" - name: "20-CoA-20-oxo-18r-hydroxy-LTB4" - - compartment: c - - formula: C41H59N7O22P3S + - compartment: "c" + - formula: "C41H59N7O22P3S" - charge: -5 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE2516_c + - id: "CE2516_c" - name: "(8Z,11Z,14Z)-Eicosatrienoic Acid" - - compartment: c - - formula: C20H33O2 + - compartment: "c" + - formula: "C20H33O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02785n + - id: "m02785n" - name: "prostaglandin E1" - - compartment: n - - formula: C20H33O5 + - compartment: "n" + - formula: "C20H33O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02793n + - id: "m02793n" - name: "prostaglandin H1" - - compartment: n - - formula: C20H33O5 + - compartment: "n" + - formula: "C20H33O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00329m + - id: "m00329m" - name: "12-oxo-20-carboxy-LTB4" - - compartment: m - - formula: C20H26O6 + - compartment: "m" + - formula: "C20H26O6" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00328m + - id: "m00328m" - name: "12-oxo-10,11-dihydro-20-COOH-LTB4" - - compartment: m - - formula: C20H28O6 + - compartment: "m" + - formula: "C20H28O6" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00329p + - id: "m00329p" - name: "12-oxo-20-carboxy-LTB4" - - compartment: p - - formula: C20H26O6 + - compartment: "p" + - formula: "C20H26O6" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00328p + - id: "m00328p" - name: "12-oxo-10,11-dihydro-20-COOH-LTB4" - - compartment: p - - formula: C20H28O6 + - compartment: "p" + - formula: "C20H28O6" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE4794_p + - id: "CE4794_p" - name: "Cis-6-Dodecenoyl Coenzyme A" - - compartment: p - - formula: C33H52N7O17P3S + - compartment: "p" + - formula: "C33H52N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00678c + - id: "m00678c" - name: "2-trans-4-cis-decadienoyl-CoA" - - compartment: c - - formula: C31H46N7O17P3S + - compartment: "c" + - formula: "C31H46N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m03035c + - id: "m03035c" - name: "trans-3-decenoyl-CoA" - - compartment: c - - formula: C31H48N7O17P3S + - compartment: "c" + - formula: "C31H48N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02891r + - id: "m02891r" - name: "selenomethionine" - - compartment: r - - formula: C5H11NO2Se + - compartment: "r" + - formula: "C5H11NO2Se" - charge: 0 - - inchis: 1/C5H11NO2Se/c1-9-3-2-4(6)5(7)8/h4H,2-3,6H2,1H3,(H,7,8) - - metFrom: Recon3D + - inchis: "1/C5H11NO2Se/c1-9-3-2-4(6)5(7)8/h4H,2-3,6H2,1H3,(H,7,8)" + - metFrom: "Recon3D" - !!omap - - id: m02892r + - id: "m02892r" - name: "selenomethionine-se-oxide" - - compartment: r - - formula: C5H11NO3Se + - compartment: "r" + - formula: "C5H11NO3Se" - charge: 0 - - inchis: 1S/C5H11NO3Se/c1-10(9)3-2-4(6)5(7)8/h4H,2-3,6H2,1H3,(H,7,8)/t4-,10?/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C5H11NO3Se/c1-10(9)3-2-4(6)5(7)8/h4H,2-3,6H2,1H3,(H,7,8)/t4-,10?/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m01115n + - id: "m01115n" - name: "5-methyl-THF" - - compartment: n - - formula: C20H24N7O6 + - compartment: "n" + - formula: "C20H24N7O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02980n + - id: "m02980n" - name: "THF" - - compartment: n - - formula: C19H21N7O6 + - compartment: "n" + - formula: "C19H21N7O6" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02890n + - id: "m02890n" - name: "selenohomocysteine" - - compartment: n - - formula: C4H9NO2Se + - compartment: "n" + - formula: "C4H9NO2Se" - charge: 0 - - inchis: 1S/C4H9NO2Se/c5-3(1-2-8)4(6)7/h3,8H,1-2,5H2,(H,6,7)/t3-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C4H9NO2Se/c5-3(1-2-8)4(6)7/h3,8H,1-2,5H2,(H,6,7)/t3-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m02891n + - id: "m02891n" - name: "selenomethionine" - - compartment: n - - formula: C5H11NO2Se + - compartment: "n" + - formula: "C5H11NO2Se" - charge: 0 - - inchis: 1/C5H11NO2Se/c1-9-3-2-4(6)5(7)8/h4H,2-3,6H2,1H3,(H,7,8) - - metFrom: Recon3D + - inchis: "1/C5H11NO2Se/c1-9-3-2-4(6)5(7)8/h4H,2-3,6H2,1H3,(H,7,8)" + - metFrom: "Recon3D" - !!omap - - id: m01115r + - id: "m01115r" - name: "5-methyl-THF" - - compartment: r - - formula: C20H24N7O6 + - compartment: "r" + - formula: "C20H24N7O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02980r + - id: "m02980r" - name: "THF" - - compartment: r - - formula: C19H21N7O6 + - compartment: "r" + - formula: "C19H21N7O6" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02890r + - id: "m02890r" - name: "selenohomocysteine" - - compartment: r - - formula: C4H9NO2Se + - compartment: "r" + - formula: "C4H9NO2Se" - charge: 0 - - inchis: 1S/C4H9NO2Se/c5-3(1-2-8)4(6)7/h3,8H,1-2,5H2,(H,6,7)/t3-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C4H9NO2Se/c5-3(1-2-8)4(6)7/h3,8H,1-2,5H2,(H,6,7)/t3-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m02617r + - id: "m02617r" - name: "noradrenaline" - - compartment: r - - formula: C8H12NO3 + - compartment: "r" + - formula: "C8H12NO3" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02618r + - id: "m02618r" - name: "noradrenochrome" - - compartment: r - - formula: C8H7NO3 + - compartment: "r" + - formula: "C8H7NO3" - charge: 0 - - inchis: 1/C8H7NO3/c10-6-1-4-5(2-7(6)11)9-3-8(4)12/h1,8,12H,2-3H2 - - metFrom: Recon3D + - inchis: "1/C8H7NO3/c10-6-1-4-5(2-7(6)11)9-3-8(4)12/h1,8,12H,2-3H2" + - metFrom: "Recon3D" - !!omap - - id: CN0012_c + - id: "CN0012_c" - name: "Benzo[A]Pyrene-2,3-Oxide" - - compartment: c - - formula: C20H12O + - compartment: "c" + - formula: "C20H12O" - charge: 0 - - inchis: 1/C20H12O/c1-2-4-14-11(3-1)9-12-6-8-16-19-13(10-17-20(16)21-17)5-7-15(14)18(12)19/h1-10,17,20H - - metFrom: Recon3D + - inchis: "1/C20H12O/c1-2-4-14-11(3-1)9-12-6-8-16-19-13(10-17-20(16)21-17)5-7-15(14)18(12)19/h1-10,17,20H" + - metFrom: "Recon3D" - !!omap - - id: m01374r + - id: "m01374r" - name: "benzo[a]pyrene" - - compartment: r - - formula: C20H12 + - compartment: "r" + - formula: "C20H12" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CN0012_r + - id: "CN0012_r" - name: "Benzo[A]Pyrene-2,3-Oxide" - - compartment: r - - formula: C20H12O + - compartment: "r" + - formula: "C20H12O" - charge: 0 - - inchis: 1/C20H12O/c1-2-4-14-11(3-1)9-12-6-8-16-19-13(10-17-20(16)21-17)5-7-15(14)18(12)19/h1-10,17,20H - - metFrom: Recon3D + - inchis: "1/C20H12O/c1-2-4-14-11(3-1)9-12-6-8-16-19-13(10-17-20(16)21-17)5-7-15(14)18(12)19/h1-10,17,20H" + - metFrom: "Recon3D" - !!omap - - id: CN0009_c + - id: "CN0009_c" - name: "Benzo[A]Pyrene-2,3-Diol" - - compartment: c - - formula: C20H14O2 + - compartment: "c" + - formula: "C20H14O2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CN0009_r + - id: "CN0009_r" - name: "Benzo[A]Pyrene-2,3-Diol" - - compartment: r - - formula: C20H14O2 + - compartment: "r" + - formula: "C20H14O2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CN0012_p + - id: "CN0012_p" - name: "Benzo[A]Pyrene-2,3-Oxide" - - compartment: p - - formula: C20H12O + - compartment: "p" + - formula: "C20H12O" - charge: 0 - - inchis: 1/C20H12O/c1-2-4-14-11(3-1)9-12-6-8-16-19-13(10-17-20(16)21-17)5-7-15(14)18(12)19/h1-10,17,20H - - metFrom: Recon3D + - inchis: "1/C20H12O/c1-2-4-14-11(3-1)9-12-6-8-16-19-13(10-17-20(16)21-17)5-7-15(14)18(12)19/h1-10,17,20H" + - metFrom: "Recon3D" - !!omap - - id: CN0009_p + - id: "CN0009_p" - name: "Benzo[A]Pyrene-2,3-Diol" - - compartment: p - - formula: C20H14O2 + - compartment: "p" + - formula: "C20H14O2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CN0010_c + - id: "CN0010_c" - name: "Benzo[A]Pyrene-4,5-Diol" - - compartment: c - - formula: C20H12O2 + - compartment: "c" + - formula: "C20H12O2" - charge: 0 - - inchis: 1S/C20H12O2/c21-19-15-7-3-5-11-8-9-14-13-6-2-1-4-12(13)10-16(20(19)22)18(14)17(11)15/h1-10,21-22H - - metFrom: Recon3D + - inchis: "1S/C20H12O2/c21-19-15-7-3-5-11-8-9-14-13-6-2-1-4-12(13)10-16(20(19)22)18(14)17(11)15/h1-10,21-22H" + - metFrom: "Recon3D" - !!omap - - id: m01375r + - id: "m01375r" - name: "benzo[a]pyrene-4,5-oxide" - - compartment: r - - formula: C20H12O + - compartment: "r" + - formula: "C20H12O" - charge: 0 - - inchis: 1/C20H12O/c1-2-6-13-12(4-1)10-16-18-14(13)9-8-11-5-3-7-15(17(11)18)19-20(16)21-19/h1-10,19-20H - - metFrom: Recon3D + - inchis: "1/C20H12O/c1-2-6-13-12(4-1)10-16-18-14(13)9-8-11-5-3-7-15(17(11)18)19-20(16)21-19/h1-10,19-20H" + - metFrom: "Recon3D" - !!omap - - id: CN0010_r + - id: "CN0010_r" - name: "Benzo[A]Pyrene-4,5-Diol" - - compartment: r - - formula: C20H12O2 + - compartment: "r" + - formula: "C20H12O2" - charge: 0 - - inchis: 1S/C20H12O2/c21-19-15-7-3-5-11-8-9-14-13-6-2-1-4-12(13)10-16(20(19)22)18(14)17(11)15/h1-10,21-22H - - metFrom: Recon3D + - inchis: "1S/C20H12O2/c21-19-15-7-3-5-11-8-9-14-13-6-2-1-4-12(13)10-16(20(19)22)18(14)17(11)15/h1-10,21-22H" + - metFrom: "Recon3D" - !!omap - - id: m01375p + - id: "m01375p" - name: "benzo[a]pyrene-4,5-oxide" - - compartment: p - - formula: C20H12O + - compartment: "p" + - formula: "C20H12O" - charge: 0 - - inchis: 1/C20H12O/c1-2-6-13-12(4-1)10-16-18-14(13)9-8-11-5-3-7-15(17(11)18)19-20(16)21-19/h1-10,19-20H - - metFrom: Recon3D + - inchis: "1/C20H12O/c1-2-6-13-12(4-1)10-16-18-14(13)9-8-11-5-3-7-15(17(11)18)19-20(16)21-19/h1-10,19-20H" + - metFrom: "Recon3D" - !!omap - - id: CN0010_p + - id: "CN0010_p" - name: "Benzo[A]Pyrene-4,5-Diol" - - compartment: p - - formula: C20H12O2 + - compartment: "p" + - formula: "C20H12O2" - charge: 0 - - inchis: 1S/C20H12O2/c21-19-15-7-3-5-11-8-9-14-13-6-2-1-4-12(13)10-16(20(19)22)18(14)17(11)15/h1-10,21-22H - - metFrom: Recon3D + - inchis: "1S/C20H12O2/c21-19-15-7-3-5-11-8-9-14-13-6-2-1-4-12(13)10-16(20(19)22)18(14)17(11)15/h1-10,21-22H" + - metFrom: "Recon3D" - !!omap - - id: CN0011_c + - id: "CN0011_c" - name: "Benzo[A]Pyrene-9,10-Diol" - - compartment: c - - formula: C20H12O2 + - compartment: "c" + - formula: "C20H12O2" - charge: 0 - - inchis: 1S/C20H12O2/c21-16-9-7-14-10-13-5-4-11-2-1-3-12-6-8-15(18(13)17(11)12)19(14)20(16)22/h1-10,21-22H - - metFrom: Recon3D + - inchis: "1S/C20H12O2/c21-16-9-7-14-10-13-5-4-11-2-1-3-12-6-8-15(18(13)17(11)12)19(14)20(16)22/h1-10,21-22H" + - metFrom: "Recon3D" - !!omap - - id: m01379r + - id: "m01379r" - name: "benzo[a]pyrene-9,10-oxide" - - compartment: r - - formula: C20H12O + - compartment: "r" + - formula: "C20H12O" - charge: 0 - - inchis: 1/C20H12O/c1-2-11-4-5-13-10-14-7-9-16-20(21-16)19(14)15-8-6-12(3-1)17(11)18(13)15/h1-10,16,20H - - metFrom: Recon3D + - inchis: "1/C20H12O/c1-2-11-4-5-13-10-14-7-9-16-20(21-16)19(14)15-8-6-12(3-1)17(11)18(13)15/h1-10,16,20H" + - metFrom: "Recon3D" - !!omap - - id: CN0011_r + - id: "CN0011_r" - name: "Benzo[A]Pyrene-9,10-Diol" - - compartment: r - - formula: C20H12O2 + - compartment: "r" + - formula: "C20H12O2" - charge: 0 - - inchis: 1S/C20H12O2/c21-16-9-7-14-10-13-5-4-11-2-1-3-12-6-8-15(18(13)17(11)12)19(14)20(16)22/h1-10,21-22H - - metFrom: Recon3D + - inchis: "1S/C20H12O2/c21-16-9-7-14-10-13-5-4-11-2-1-3-12-6-8-15(18(13)17(11)12)19(14)20(16)22/h1-10,21-22H" + - metFrom: "Recon3D" - !!omap - - id: m01379p + - id: "m01379p" - name: "benzo[a]pyrene-9,10-oxide" - - compartment: p - - formula: C20H12O + - compartment: "p" + - formula: "C20H12O" - charge: 0 - - inchis: 1/C20H12O/c1-2-11-4-5-13-10-14-7-9-16-20(21-16)19(14)15-8-6-12(3-1)17(11)18(13)15/h1-10,16,20H - - metFrom: Recon3D + - inchis: "1/C20H12O/c1-2-11-4-5-13-10-14-7-9-16-20(21-16)19(14)15-8-6-12(3-1)17(11)18(13)15/h1-10,16,20H" + - metFrom: "Recon3D" - !!omap - - id: CN0011_p + - id: "CN0011_p" - name: "Benzo[A]Pyrene-9,10-Diol" - - compartment: p - - formula: C20H12O2 + - compartment: "p" + - formula: "C20H12O2" - charge: 0 - - inchis: 1S/C20H12O2/c21-16-9-7-14-10-13-5-4-11-2-1-3-12-6-8-15(18(13)17(11)12)19(14)20(16)22/h1-10,21-22H - - metFrom: Recon3D + - inchis: "1S/C20H12O2/c21-16-9-7-14-10-13-5-4-11-2-1-3-12-6-8-15(18(13)17(11)12)19(14)20(16)22/h1-10,21-22H" + - metFrom: "Recon3D" - !!omap - - id: CN0021_c + - id: "CN0021_c" - name: "7,12-Dimethylbenz[A]Anthracene-3,4-Oxide" - - compartment: c - - formula: C20H16O + - compartment: "c" + - formula: "C20H16O" - charge: 0 - - inchis: 1/C20H16O/c1-11-13-5-3-4-6-14(13)12(2)19-15(11)7-8-17-16(19)9-10-18-20(17)21-18/h3-10,18,20H,1-2H3 - - metFrom: Recon3D + - inchis: "1/C20H16O/c1-11-13-5-3-4-6-14(13)12(2)19-15(11)7-8-17-16(19)9-10-18-20(17)21-18/h3-10,18,20H,1-2H3" + - metFrom: "Recon3D" - !!omap - - id: m01174r + - id: "m01174r" - name: "7,12-dimethylbenz[a]anthracene" - - compartment: r - - formula: C20H16 + - compartment: "r" + - formula: "C20H16" - charge: 0 - - inchis: 1S/C20H16/c1-13-16-8-5-6-9-17(16)14(2)20-18(13)12-11-15-7-3-4-10-19(15)20/h3-12H,1-2H3 - - metFrom: Recon3D + - inchis: "1S/C20H16/c1-13-16-8-5-6-9-17(16)14(2)20-18(13)12-11-15-7-3-4-10-19(15)20/h3-12H,1-2H3" + - metFrom: "Recon3D" - !!omap - - id: CN0021_r + - id: "CN0021_r" - name: "7,12-Dimethylbenz[A]Anthracene-3,4-Oxide" - - compartment: r - - formula: C20H16O + - compartment: "r" + - formula: "C20H16O" - charge: 0 - - inchis: 1/C20H16O/c1-11-13-5-3-4-6-14(13)12(2)19-15(11)7-8-17-16(19)9-10-18-20(17)21-18/h3-10,18,20H,1-2H3 - - metFrom: Recon3D + - inchis: "1/C20H16O/c1-11-13-5-3-4-6-14(13)12(2)19-15(11)7-8-17-16(19)9-10-18-20(17)21-18/h3-10,18,20H,1-2H3" + - metFrom: "Recon3D" - !!omap - - id: CN0022_c + - id: "CN0022_c" - name: "7,12-Dimethylbenz[A]Anthracene-3,4-Diol" - - compartment: c - - formula: C20H18O2 + - compartment: "c" + - formula: "C20H18O2" - charge: 0 - - inchis: 1/C20H18O2/c1-11-13-5-3-4-6-14(13)12(2)19-15(11)7-8-17-16(19)9-10-18(21)20(17)22/h3-10,18,20-22H,1-2H3 - - metFrom: Recon3D + - inchis: "1/C20H18O2/c1-11-13-5-3-4-6-14(13)12(2)19-15(11)7-8-17-16(19)9-10-18(21)20(17)22/h3-10,18,20-22H,1-2H3" + - metFrom: "Recon3D" - !!omap - - id: CN0022_r + - id: "CN0022_r" - name: "7,12-Dimethylbenz[A]Anthracene-3,4-Diol" - - compartment: r - - formula: C20H18O2 + - compartment: "r" + - formula: "C20H18O2" - charge: 0 - - inchis: 1/C20H18O2/c1-11-13-5-3-4-6-14(13)12(2)19-15(11)7-8-17-16(19)9-10-18(21)20(17)22/h3-10,18,20-22H,1-2H3 - - metFrom: Recon3D + - inchis: "1/C20H18O2/c1-11-13-5-3-4-6-14(13)12(2)19-15(11)7-8-17-16(19)9-10-18(21)20(17)22/h3-10,18,20-22H,1-2H3" + - metFrom: "Recon3D" - !!omap - - id: CN0021_p + - id: "CN0021_p" - name: "7,12-Dimethylbenz[A]Anthracene-3,4-Oxide" - - compartment: p - - formula: C20H16O + - compartment: "p" + - formula: "C20H16O" - charge: 0 - - inchis: 1/C20H16O/c1-11-13-5-3-4-6-14(13)12(2)19-15(11)7-8-17-16(19)9-10-18-20(17)21-18/h3-10,18,20H,1-2H3 - - metFrom: Recon3D + - inchis: "1/C20H16O/c1-11-13-5-3-4-6-14(13)12(2)19-15(11)7-8-17-16(19)9-10-18-20(17)21-18/h3-10,18,20H,1-2H3" + - metFrom: "Recon3D" - !!omap - - id: CN0022_p + - id: "CN0022_p" - name: "7,12-Dimethylbenz[A]Anthracene-3,4-Diol" - - compartment: p - - formula: C20H18O2 + - compartment: "p" + - formula: "C20H18O2" - charge: 0 - - inchis: 1/C20H18O2/c1-11-13-5-3-4-6-14(13)12(2)19-15(11)7-8-17-16(19)9-10-18(21)20(17)22/h3-10,18,20-22H,1-2H3 - - metFrom: Recon3D + - inchis: "1/C20H18O2/c1-11-13-5-3-4-6-14(13)12(2)19-15(11)7-8-17-16(19)9-10-18(21)20(17)22/h3-10,18,20-22H,1-2H3" + - metFrom: "Recon3D" - !!omap - - id: CN0023_c + - id: "CN0023_c" - name: "7,12-Dimethylbenz[A]Anthracene-3,4-Diol-1,2-Epoxide" - - compartment: c - - formula: C20H18O3 + - compartment: "c" + - formula: "C20H18O3" - charge: 0 - - inchis: 1/C20H18O3/c1-9-11-5-3-4-6-12(11)10(2)15-13(9)7-8-14-16(15)19-20(23-19)18(22)17(14)21/h3-8,17-22H,1-2H3 - - metFrom: Recon3D + - inchis: "1/C20H18O3/c1-9-11-5-3-4-6-12(11)10(2)15-13(9)7-8-14-16(15)19-20(23-19)18(22)17(14)21/h3-8,17-22H,1-2H3" + - metFrom: "Recon3D" - !!omap - - id: CN0023_r + - id: "CN0023_r" - name: "7,12-Dimethylbenz[A]Anthracene-3,4-Diol-1,2-Epoxide" - - compartment: r - - formula: C20H18O3 + - compartment: "r" + - formula: "C20H18O3" - charge: 0 - - inchis: 1/C20H18O3/c1-9-11-5-3-4-6-12(11)10(2)15-13(9)7-8-14-16(15)19-20(23-19)18(22)17(14)21/h3-8,17-22H,1-2H3 - - metFrom: Recon3D + - inchis: "1/C20H18O3/c1-9-11-5-3-4-6-12(11)10(2)15-13(9)7-8-14-16(15)19-20(23-19)18(22)17(14)21/h3-8,17-22H,1-2H3" + - metFrom: "Recon3D" - !!omap - - id: CN0016_c + - id: "CN0016_c" - name: "Dibenzo[A,L]Pyrene" - - compartment: c - - formula: C24H14 + - compartment: "c" + - formula: "C24H14" - charge: 0 - - inchis: 1S/C24H14/c1-2-8-18-16(6-1)14-17-13-12-15-7-5-11-20-19-9-3-4-10-21(19)24(18)23(17)22(15)20/h1-14H - - metFrom: Recon3D + - inchis: "1S/C24H14/c1-2-8-18-16(6-1)14-17-13-12-15-7-5-11-20-19-9-3-4-10-21(19)24(18)23(17)22(15)20/h1-14H" + - metFrom: "Recon3D" - !!omap - - id: CN0017_c + - id: "CN0017_c" - name: "Dibenzo[A,L]Pyrene-11,12-Epoxide" - - compartment: c - - formula: C24H14O + - compartment: "c" + - formula: "C24H14O" - charge: 0 - - inchis: 1S/C24H14O/c1-2-6-17-15(5-1)16-7-3-4-13-8-9-14-12-19-18(10-11-20-24(19)25-20)23(17)22(14)21(13)16/h1-12,20,24H - - metFrom: Recon3D + - inchis: "1S/C24H14O/c1-2-6-17-15(5-1)16-7-3-4-13-8-9-14-12-19-18(10-11-20-24(19)25-20)23(17)22(14)21(13)16/h1-12,20,24H" + - metFrom: "Recon3D" - !!omap - - id: CN0016_r + - id: "CN0016_r" - name: "Dibenzo[A,L]Pyrene" - - compartment: r - - formula: C24H14 + - compartment: "r" + - formula: "C24H14" - charge: 0 - - inchis: 1S/C24H14/c1-2-8-18-16(6-1)14-17-13-12-15-7-5-11-20-19-9-3-4-10-21(19)24(18)23(17)22(15)20/h1-14H - - metFrom: Recon3D + - inchis: "1S/C24H14/c1-2-8-18-16(6-1)14-17-13-12-15-7-5-11-20-19-9-3-4-10-21(19)24(18)23(17)22(15)20/h1-14H" + - metFrom: "Recon3D" - !!omap - - id: CN0017_r + - id: "CN0017_r" - name: "Dibenzo[A,L]Pyrene-11,12-Epoxide" - - compartment: r - - formula: C24H14O + - compartment: "r" + - formula: "C24H14O" - charge: 0 - - inchis: 1S/C24H14O/c1-2-6-17-15(5-1)16-7-3-4-13-8-9-14-12-19-18(10-11-20-24(19)25-20)23(17)22(14)21(13)16/h1-12,20,24H - - metFrom: Recon3D + - inchis: "1S/C24H14O/c1-2-6-17-15(5-1)16-7-3-4-13-8-9-14-12-19-18(10-11-20-24(19)25-20)23(17)22(14)21(13)16/h1-12,20,24H" + - metFrom: "Recon3D" - !!omap - - id: CN0018_c + - id: "CN0018_c" - name: "Dibenzo[A,L]Pyrene-11,12-Diol" - - compartment: c - - formula: C24H16O2 + - compartment: "c" + - formula: "C24H16O2" - charge: 0 - - inchis: 1S/C24H16O2/c25-20-11-10-18-19(24(20)26)12-14-9-8-13-4-3-7-16-15-5-1-2-6-17(15)23(18)22(14)21(13)16/h1-12,20,24-26H/t20-,24-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C24H16O2/c25-20-11-10-18-19(24(20)26)12-14-9-8-13-4-3-7-16-15-5-1-2-6-17(15)23(18)22(14)21(13)16/h1-12,20,24-26H/t20-,24-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: CN0018_r + - id: "CN0018_r" - name: "Dibenzo[A,L]Pyrene-11,12-Diol" - - compartment: r - - formula: C24H16O2 + - compartment: "r" + - formula: "C24H16O2" - charge: 0 - - inchis: 1S/C24H16O2/c25-20-11-10-18-19(24(20)26)12-14-9-8-13-4-3-7-16-15-5-1-2-6-17(15)23(18)22(14)21(13)16/h1-12,20,24-26H/t20-,24-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C24H16O2/c25-20-11-10-18-19(24(20)26)12-14-9-8-13-4-3-7-16-15-5-1-2-6-17(15)23(18)22(14)21(13)16/h1-12,20,24-26H/t20-,24-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: CN0017_p + - id: "CN0017_p" - name: "Dibenzo[A,L]Pyrene-11,12-Epoxide" - - compartment: p - - formula: C24H14O + - compartment: "p" + - formula: "C24H14O" - charge: 0 - - inchis: 1S/C24H14O/c1-2-6-17-15(5-1)16-7-3-4-13-8-9-14-12-19-18(10-11-20-24(19)25-20)23(17)22(14)21(13)16/h1-12,20,24H - - metFrom: Recon3D + - inchis: "1S/C24H14O/c1-2-6-17-15(5-1)16-7-3-4-13-8-9-14-12-19-18(10-11-20-24(19)25-20)23(17)22(14)21(13)16/h1-12,20,24H" + - metFrom: "Recon3D" - !!omap - - id: CN0018_p + - id: "CN0018_p" - name: "Dibenzo[A,L]Pyrene-11,12-Diol" - - compartment: p - - formula: C24H16O2 + - compartment: "p" + - formula: "C24H16O2" - charge: 0 - - inchis: 1S/C24H16O2/c25-20-11-10-18-19(24(20)26)12-14-9-8-13-4-3-7-16-15-5-1-2-6-17(15)23(18)22(14)21(13)16/h1-12,20,24-26H/t20-,24-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C24H16O2/c25-20-11-10-18-19(24(20)26)12-14-9-8-13-4-3-7-16-15-5-1-2-6-17(15)23(18)22(14)21(13)16/h1-12,20,24-26H/t20-,24-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: CN0019_c + - id: "CN0019_c" - name: "Dibenzo[A,L]Pyrene-11,12-Diol-13,14-Epoxide" - - compartment: c - - formula: C24H14O3 + - compartment: "c" + - formula: "C24H14O3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CN0019_r + - id: "CN0019_r" - name: "Dibenzo[A,L]Pyrene-11,12-Diol-13,14-Epoxide" - - compartment: r - - formula: C24H14O3 + - compartment: "r" + - formula: "C24H14O3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02999c + - id: "m02999c" - name: "tiglyl-CoA" - - compartment: c - - formula: C26H38N7O17P3S + - compartment: "c" + - formula: "C26H38N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00159c + - id: "m00159c" - name: "(R)-3-hydroxybutanoyl-CoA" - - compartment: c - - formula: C25H38N7O18P3S + - compartment: "c" + - formula: "C25H38N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: adpac_c + - id: "adpac_c" - name: "Adipic Acid" - - compartment: c - - formula: C6H8O4 + - compartment: "c" + - formula: "C6H8O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: adpcoa_c + - id: "adpcoa_c" - name: "Adipoyl Coenzyme A" - - compartment: c - - formula: C27H39N7O19P3S + - compartment: "c" + - formula: "C27H39N7O19P3S" - charge: -5 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: adpac_p + - id: "adpac_p" - name: "Adipic Acid" - - compartment: p - - formula: C6H8O4 + - compartment: "p" + - formula: "C6H8O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: adpcoa_p + - id: "adpcoa_p" - name: "Adipoyl Coenzyme A" - - compartment: p - - formula: C27H39N7O19P3S + - compartment: "p" + - formula: "C27H39N7O19P3S" - charge: -5 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: c6dc_p + - id: "c6dc_p" - name: "Adipoyl Carnitine" - - compartment: p - - formula: C13H22NO6 + - compartment: "p" + - formula: "C13H22NO6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3bcrn_c + - id: "3bcrn_c" - name: "3-Hydroxy Butyryl Carnitine" - - compartment: c - - formula: C11H21NO5 + - compartment: "c" + - formula: "C11H21NO5" - charge: 0 - - inchis: 1/C11H21NO5/c1-8(13)5-11(16)17-9(6-10(14)15)7-12(2,3)4/h8-9,13H,5-7H2,1-4H3 - - metFrom: Recon3D + - inchis: "1/C11H21NO5/c1-8(13)5-11(16)17-9(6-10(14)15)7-12(2,3)4/h8-9,13H,5-7H2,1-4H3" + - metFrom: "Recon3D" - !!omap - - id: 3bcrn_s + - id: "3bcrn_s" - name: "3-Hydroxy Butyryl Carnitine" - - compartment: s - - formula: C11H21NO5 + - compartment: "s" + - formula: "C11H21NO5" - charge: 0 - - inchis: 1/C11H21NO5/c1-8(13)5-11(16)17-9(6-10(14)15)7-12(2,3)4/h8-9,13H,5-7H2,1-4H3 - - metFrom: Recon3D + - inchis: "1/C11H21NO5/c1-8(13)5-11(16)17-9(6-10(14)15)7-12(2,3)4/h8-9,13H,5-7H2,1-4H3" + - metFrom: "Recon3D" - !!omap - - id: c10crn_c + - id: "c10crn_c" - name: "Decanoyl Carnitine" - - compartment: c - - formula: C17H33NO4 + - compartment: "c" + - formula: "C17H33NO4" - charge: 0 - - inchis: 1/C17H33NO4/c1-5-6-7-8-9-10-11-12-17(21)22-15(13-16(19)20)14-18(2,3)4/h15H,5-14H2,1-4H3 - - metFrom: Recon3D + - inchis: "1/C17H33NO4/c1-5-6-7-8-9-10-11-12-17(21)22-15(13-16(19)20)14-18(2,3)4/h15H,5-14H2,1-4H3" + - metFrom: "Recon3D" - !!omap - - id: c101coa_c + - id: "c101coa_c" - name: "Decenoyl Coenzyme A" - - compartment: c - - formula: C31H48N7O17P3S + - compartment: "c" + - formula: "C31H48N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: c101crn_c + - id: "c101crn_c" - name: "Decenoyl Carnitine" - - compartment: c - - formula: C17H31NO4 + - compartment: "c" + - formula: "C17H31NO4" - charge: 0 - - inchis: 1/C17H31NO4/c1-5-6-7-8-9-10-11-12-17(21)22-15(13-16(19)20)14-18(2,3)4/h5,15H,1,6-14H2,2-4H3 - - metFrom: Recon3D + - inchis: "1/C17H31NO4/c1-5-6-7-8-9-10-11-12-17(21)22-15(13-16(19)20)14-18(2,3)4/h5,15H,1,6-14H2,2-4H3" + - metFrom: "Recon3D" - !!omap - - id: c101crn_s + - id: "c101crn_s" - name: "Decenoyl Carnitine" - - compartment: s - - formula: C17H31NO4 + - compartment: "s" + - formula: "C17H31NO4" - charge: 0 - - inchis: 1/C17H31NO4/c1-5-6-7-8-9-10-11-12-17(21)22-15(13-16(19)20)14-18(2,3)4/h5,15H,1,6-14H2,2-4H3 - - metFrom: Recon3D + - inchis: "1/C17H31NO4/c1-5-6-7-8-9-10-11-12-17(21)22-15(13-16(19)20)14-18(2,3)4/h5,15H,1,6-14H2,2-4H3" + - metFrom: "Recon3D" - !!omap - - id: decdicoa_c + - id: "decdicoa_c" - name: "Decadienoyl Coenzyme A" - - compartment: c - - formula: C31H46N7O17P3S + - compartment: "c" + - formula: "C31H46N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: decdicrn_c + - id: "decdicrn_c" - name: "Decadienoyl Carnitine" - - compartment: c - - formula: C17H29NO4 + - compartment: "c" + - formula: "C17H29NO4" - charge: 0 - - inchis: 1S/C17H29NO4/c1-5-6-7-8-9-10-11-12-17(21)22-15(18(2,3)4)13-14-16(19)20/h9-12,15H,5-8,13-14H2,1-4H3/b10-9-,12-11+/t15-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C17H29NO4/c1-5-6-7-8-9-10-11-12-17(21)22-15(18(2,3)4)13-14-16(19)20/h9-12,15H,5-8,13-14H2,1-4H3/b10-9-,12-11+/t15-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: c10crn_s + - id: "c10crn_s" - name: "Decanoyl Carnitine" - - compartment: s - - formula: C17H33NO4 + - compartment: "s" + - formula: "C17H33NO4" - charge: 0 - - inchis: 1/C17H33NO4/c1-5-6-7-8-9-10-11-12-17(21)22-15(13-16(19)20)14-18(2,3)4/h15H,5-14H2,1-4H3 - - metFrom: Recon3D + - inchis: "1/C17H33NO4/c1-5-6-7-8-9-10-11-12-17(21)22-15(13-16(19)20)14-18(2,3)4/h15H,5-14H2,1-4H3" + - metFrom: "Recon3D" - !!omap - - id: c10dc_p + - id: "c10dc_p" - name: "Sebacoyl Carnitine" - - compartment: p - - formula: C17H30NO6 + - compartment: "p" + - formula: "C17H30NO6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: c10dc_c + - id: "c10dc_c" - name: "Sebacoyl Carnitine" - - compartment: c - - formula: C17H30NO6 + - compartment: "c" + - formula: "C17H30NO6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sebcoa_c + - id: "sebcoa_c" - name: "Sebacoyl Coenzyme A" - - compartment: c - - formula: C31H47N7O19P3S + - compartment: "c" + - formula: "C31H47N7O19P3S" - charge: -5 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: c10dc_s + - id: "c10dc_s" - name: "Sebacoyl Carnitine" - - compartment: s - - formula: C17H30NO6 + - compartment: "s" + - formula: "C17H30NO6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00181c + - id: "m00181c" - name: "(S)-hydroxydecanoyl-CoA" - - compartment: c - - formula: C31H50N7O18P3S + - compartment: "c" + - formula: "C31H50N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3deccrn_c + - id: "3deccrn_c" - name: "3-Hydroxydecanoylcarnitine" - - compartment: c - - formula: C17H33NO5 + - compartment: "c" + - formula: "C17H33NO5" - charge: 0 - - inchis: 1/C17H33NO5/c1-5-6-7-8-9-10-14(19)13-17(22)23-15(18(2,3)4)11-12-16(20)21/h14-15,19H,5-13H2,1-4H3 - - metFrom: Recon3D + - inchis: "1/C17H33NO5/c1-5-6-7-8-9-10-14(19)13-17(22)23-15(18(2,3)4)11-12-16(20)21/h14-15,19H,5-13H2,1-4H3" + - metFrom: "Recon3D" - !!omap - - id: ddeccrn_c + - id: "ddeccrn_c" - name: "Lauroyl Carnitine" - - compartment: c - - formula: C19H37NO4 + - compartment: "c" + - formula: "C19H37NO4" - charge: 0 - - inchis: 1S/C19H37NO4/c1-5-6-7-8-9-10-11-12-13-14-19(23)24-17(15-18(21)22)16-20(2,3)4/h17H,5-16H2,1-4H3/t17-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C19H37NO4/c1-5-6-7-8-9-10-11-12-13-14-19(23)24-17(15-18(21)22)16-20(2,3)4/h17H,5-16H2,1-4H3/t17-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m00042c + - id: "m00042c" - name: "(2E)-dodecenoyl-CoA" - - compartment: c - - formula: C33H52N7O17P3S + - compartment: "c" + - formula: "C33H52N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ddece1crn_c + - id: "ddece1crn_c" - name: "Dodecenoyl Carnitine" - - compartment: c - - formula: C19H35NO4 + - compartment: "c" + - formula: "C19H35NO4" - charge: 0 - - inchis: 1/C19H35NO4/c1-5-6-7-8-9-10-11-12-13-14-19(23)24-17(20(2,3)4)15-16-18(21)22/h10-11,17H,5-9,12-16H2,1-4H3/b11-10- - - metFrom: Recon3D + - inchis: "1/C19H35NO4/c1-5-6-7-8-9-10-11-12-13-14-19(23)24-17(20(2,3)4)15-16-18(21)22/h10-11,17H,5-9,12-16H2,1-4H3/b11-10-" + - metFrom: "Recon3D" - !!omap - - id: c12dccoa_p + - id: "c12dccoa_p" - name: "Dodecanedioyl Coenzyme A" - - compartment: p - - formula: C33H51N7O19P3S + - compartment: "p" + - formula: "C33H51N7O19P3S" - charge: -5 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: dodecanac_p + - id: "dodecanac_p" - name: "Dodecanedioic Acid" - - compartment: p - - formula: C12H20O4 + - compartment: "p" + - formula: "C12H20O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: c12dccoa_c + - id: "c12dccoa_c" - name: "Dodecanedioyl Coenzyme A" - - compartment: c - - formula: C33H51N7O19P3S + - compartment: "c" + - formula: "C33H51N7O19P3S" - charge: -5 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: dodecanac_c + - id: "dodecanac_c" - name: "Dodecanedioic Acid" - - compartment: c - - formula: C12H20O4 + - compartment: "c" + - formula: "C12H20O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: c12dc_c + - id: "c12dc_c" - name: "Dodecanedioyl Carnitine" - - compartment: c - - formula: C19H34NO6 + - compartment: "c" + - formula: "C19H34NO6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: c12dc_s + - id: "c12dc_s" - name: "Dodecanedioyl Carnitine" - - compartment: s - - formula: C19H34NO6 + - compartment: "s" + - formula: "C19H34NO6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00174c + - id: "m00174c" - name: "(S)-3-hydroxydodecanoyl-CoA" - - compartment: c - - formula: C33H54N7O18P3S + - compartment: "c" + - formula: "C33H54N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3ddcrn_c + - id: "3ddcrn_c" - name: "3-Hydroxydodecanoylcarnitine" - - compartment: c - - formula: C19H37NO5 + - compartment: "c" + - formula: "C19H37NO5" - charge: 0 - - inchis: 1/C19H37NO5/c1-5-6-7-8-9-10-11-12-16(21)13-19(24)25-17(14-18(22)23)15-20(2,3)4/h16-17,21H,5-15H2,1-4H3 - - metFrom: Recon3D + - inchis: "1/C19H37NO5/c1-5-6-7-8-9-10-11-12-16(21)13-19(24)25-17(14-18(22)23)15-20(2,3)4/h16-17,21H,5-15H2,1-4H3" + - metFrom: "Recon3D" - !!omap - - id: 3tetd7ecoa_m + - id: "3tetd7ecoa_m" - name: "3-Hydroxy Tetradecenoyl-7 Coenzyme A" - - compartment: m - - formula: C35H56N7O18P3S + - compartment: "m" + - formula: "C35H56N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3tetd7ecoa_c + - id: "3tetd7ecoa_c" - name: "3-Hydroxy Tetradecenoyl-7 Coenzyme A" - - compartment: c - - formula: C35H56N7O18P3S + - compartment: "c" + - formula: "C35H56N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tetdece1coa_c + - id: "tetdece1coa_c" - name: "Tetradecenoyl Coenzyme A" - - compartment: c - - formula: C35H56N7O17P3S + - compartment: "c" + - formula: "C35H56N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tetdece1crn_c + - id: "tetdece1crn_c" - name: "Tetradecenoyl Carnitine" - - compartment: c - - formula: C21H39NO4 + - compartment: "c" + - formula: "C21H39NO4" - charge: 0 - - inchis: 1/C21H39NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-21(25)26-19(17-20(23)24)18-22(2,3)4/h12-13,19H,5-11,14-18H2,1-4H3/b13-12- - - metFrom: Recon3D + - inchis: "1/C21H39NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-21(25)26-19(17-20(23)24)18-22(2,3)4/h12-13,19H,5-11,14-18H2,1-4H3/b13-12-" + - metFrom: "Recon3D" - !!omap - - id: 3tetd7ecoacrn_c + - id: "3tetd7ecoacrn_c" - name: "3-Hydroxy Tetradecenoyl-7-Carnitine" - - compartment: c - - formula: C21H39NO5 + - compartment: "c" + - formula: "C21H39NO5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3tetd7ecoacrn_s + - id: "3tetd7ecoacrn_s" - name: "3-Hydroxy Tetradecenoyl-7-Carnitine" - - compartment: s - - formula: C21H39NO5 + - compartment: "s" + - formula: "C21H39NO5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3ttetddcoa_m + - id: "3ttetddcoa_m" - name: "3-Hydroxy Trans5,8Tetradecadienoyl Coenzyme A" - - compartment: m - - formula: C35H54N7O18P3S + - compartment: "m" + - formula: "C35H54N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3ttetddcoa_c + - id: "3ttetddcoa_c" - name: "3-Hydroxy Trans5,8Tetradecadienoyl Coenzyme A" - - compartment: c - - formula: C35H54N7O18P3S + - compartment: "c" + - formula: "C35H54N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tetdec2coa_c + - id: "tetdec2coa_c" - name: "Tetradecadienoyl Coenzyme A" - - compartment: c - - formula: C35H54N7O17P3S + - compartment: "c" + - formula: "C35H54N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tetdec2crn_c + - id: "tetdec2crn_c" - name: "Tetradecadienoyl Carnitine" - - compartment: c - - formula: C21H37NO4 + - compartment: "c" + - formula: "C21H37NO4" - charge: 0 - - inchis: 1/C21H37NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-21(25)26-19(17-20(23)24)18-22(2,3)4/h12-15,19H,5-11,16-18H2,1-4H3/b13-12-,15-14+ - - metFrom: Recon3D + - inchis: "1/C21H37NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-21(25)26-19(17-20(23)24)18-22(2,3)4/h12-15,19H,5-11,16-18H2,1-4H3/b13-12-,15-14+" + - metFrom: "Recon3D" - !!omap - - id: 3ttetddcoacrn_c + - id: "3ttetddcoacrn_c" - name: "3-Hydroxy Trans5,8Tetradecadienoyl Carnitine" - - compartment: c - - formula: C21H37NO5 + - compartment: "c" + - formula: "C21H37NO5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3ttetddcoacrn_s + - id: "3ttetddcoacrn_s" - name: "3-Hydroxy Trans5,8Tetradecadienoyl Carnitine" - - compartment: s - - formula: C21H37NO5 + - compartment: "s" + - formula: "C21H37NO5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00178c + - id: "m00178c" - name: "(S)-3-hydroxytetradecanoyl-CoA" - - compartment: c - - formula: C35H58N7O18P3S + - compartment: "c" + - formula: "C35H58N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3tdcrn_c + - id: "3tdcrn_c" - name: "3-Hydroxy-Tetradecanoyl Carnitine" - - compartment: c - - formula: C21H41NO5 + - compartment: "c" + - formula: "C21H41NO5" - charge: 0 - - inchis: 1/C21H41NO5/c1-5-6-7-8-9-10-11-12-13-14-18(23)15-21(26)27-19(16-20(24)25)17-22(2,3)4/h18-19,23H,5-17H2,1-4H3 - - metFrom: Recon3D + - inchis: "1/C21H41NO5/c1-5-6-7-8-9-10-11-12-13-14-18(23)15-21(26)27-19(16-20(24)25)17-22(2,3)4/h18-19,23H,5-17H2,1-4H3" + - metFrom: "Recon3D" - !!omap - - id: 3hdeccoa_c + - id: "3hdeccoa_c" - name: "3-Hydroxyhexadecenoyl Coenzyme A" - - compartment: c - - formula: C37H60N7O18P3S + - compartment: "c" + - formula: "C37H60N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hdececrn_c + - id: "3hdececrn_c" - name: "3-Hydroxyhexadecenoylcarnitine" - - compartment: c - - formula: C23H43NO5 + - compartment: "c" + - formula: "C23H43NO5" - charge: 0 - - inchis: 1S/C23H43NO5/c1-5-6-7-8-9-10-11-12-13-14-15-16-20(25)19-23(28)29-21(24(2,3)4)17-18-22(26)27/h10-11,20-21,25H,5-9,12-19H2,1-4H3/b11-10+/t20?,21-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C23H43NO5/c1-5-6-7-8-9-10-11-12-13-14-15-16-20(25)19-23(28)29-21(24(2,3)4)17-18-22(26)27/h10-11,20-21,25H,5-9,12-19H2,1-4H3/b11-10+/t20?,21-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: 3thexddcoa_m + - id: "3thexddcoa_m" - name: "3-Hydroxy Trans7,10-Hexadecadienoyl Coenzyme A" - - compartment: m - - formula: C37H58N7O18P3S + - compartment: "m" + - formula: "C37H58N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3thexddcoa_c + - id: "3thexddcoa_c" - name: "3-Hydroxy Trans7,10-Hexadecadienoyl Coenzyme A" - - compartment: c - - formula: C37H58N7O18P3S + - compartment: "c" + - formula: "C37H58N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3thexddcoacrn_c + - id: "3thexddcoacrn_c" - name: "3-Hydroxy Trans7,10-Hexadecadienoyl Carnitine" - - compartment: c - - formula: C23H41NO5 + - compartment: "c" + - formula: "C23H41NO5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3thexddcoacrn_s + - id: "3thexddcoacrn_s" - name: "3-Hydroxy Trans7,10-Hexadecadienoyl Carnitine" - - compartment: s - - formula: C23H41NO5 + - compartment: "s" + - formula: "C23H41NO5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hexdicoa_c + - id: "hexdicoa_c" - name: "Hexadecanedioyl Coenzyme A" - - compartment: c - - formula: C37H59N7O19P3S + - compartment: "c" + - formula: "C37H59N7O19P3S" - charge: -5 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: c16dc_c + - id: "c16dc_c" - name: "Hexadecanedioic Acid Mono-L-Carnitine Ester" - - compartment: c - - formula: C23H42NO6 + - compartment: "c" + - formula: "C23H42NO6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: c16dc_s + - id: "c16dc_s" - name: "Hexadecanedioic Acid Mono-L-Carnitine Ester" - - compartment: s - - formula: C23H42NO6 + - compartment: "s" + - formula: "C23H42NO6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hexdcoa_c + - id: "3hexdcoa_c" - name: "3-Hydroxyhexadecanoyl Coenzyme A" - - compartment: c - - formula: C37H62N7O18P3S + - compartment: "c" + - formula: "C37H62N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hexdcrn_c + - id: "3hexdcrn_c" - name: "3-Hydroxyhexadecanoylcarnitine" - - compartment: c - - formula: C23H45NO5 + - compartment: "c" + - formula: "C23H45NO5" - charge: 0 - - inchis: 1S/C23H45NO5/c1-5-6-7-8-9-10-11-12-13-14-15-16-20(25)19-23(28)29-21(24(2,3)4)17-18-22(26)27/h20-21,25H,5-19H2,1-4H3/t20?,21-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C23H45NO5/c1-5-6-7-8-9-10-11-12-13-14-15-16-20(25)19-23(28)29-21(24(2,3)4)17-18-22(26)27/h20-21,25H,5-19H2,1-4H3/t20?,21-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: 3octdece1coa_c + - id: "3octdece1coa_c" - name: "3-Hydroxyoctadecenoyl Coenzyme A" - - compartment: c - - formula: C39H64N7O18P3S + - compartment: "c" + - formula: "C39H64N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3octdece1crn_c + - id: "3octdece1crn_c" - name: "3-Hydroxy-Octadecenoyl Carnitine" - - compartment: c - - formula: C25H47NO5 + - compartment: "c" + - formula: "C25H47NO5" - charge: 0 - - inchis: 1S/C25H47NO5/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-22(27)21-25(30)31-23(26(2,3)4)19-20-24(28)29/h10-11,22-23,27H,5-9,12-21H2,1-4H3/b11-10-/t22?,23-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C25H47NO5/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-22(27)21-25(30)31-23(26(2,3)4)19-20-24(28)29/h10-11,22-23,27H,5-9,12-21H2,1-4H3/b11-10-/t22?,23-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: 3ocddcoa_c + - id: "3ocddcoa_c" - name: "3-Hydroxyoctadecadienoyl Coenzyme A" - - compartment: c - - formula: C39H62N7O18P3S + - compartment: "c" + - formula: "C39H62N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3octdec2crn_c + - id: "3octdec2crn_c" - name: "3-Hydroxyoctadecadienoylcarnitine" - - compartment: c - - formula: C25H45NO5 + - compartment: "c" + - formula: "C25H45NO5" - charge: 0 - - inchis: 1/C25H45NO5/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-22(27)19-25(30)31-23(20-24(28)29)21-26(2,3)4/h9-10,12-13,22-23,27H,5-8,11,14-21H2,1-4H3 - - metFrom: Recon3D + - inchis: "1/C25H45NO5/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-22(27)19-25(30)31-23(20-24(28)29)21-26(2,3)4/h9-10,12-13,22-23,27H,5-8,11,14-21H2,1-4H3" + - metFrom: "Recon3D" - !!omap - - id: 3hodcoa_c + - id: "3hodcoa_c" - name: "(S)-3-Hydroxyoctadecanoyl Coenzyme A" - - compartment: c - - formula: C39H66N7O18P3S + - compartment: "c" + - formula: "C39H66N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3octdeccrn_c + - id: "3octdeccrn_c" - name: "3-Hydroxyoctadecanoyl Carnitine" - - compartment: c - - formula: C25H49NO5 + - compartment: "c" + - formula: "C25H49NO5" - charge: 0 - - inchis: 1/C25H49NO5/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-22(27)19-25(30)31-23(20-24(28)29)21-26(2,3)4/h22-23,27H,5-21H2,1-4H3 - - metFrom: Recon3D + - inchis: "1/C25H49NO5/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-22(27)19-25(30)31-23(20-24(28)29)21-26(2,3)4/h22-23,27H,5-21H2,1-4H3" + - metFrom: "Recon3D" - !!omap - - id: c3dc_c + - id: "c3dc_c" - name: "Malonyl Carnitine" - - compartment: c - - formula: C10H16NO6 + - compartment: "c" + - formula: "C10H16NO6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: c3dc_s + - id: "c3dc_s" - name: "Malonyl Carnitine" - - compartment: s - - formula: C10H16NO6 + - compartment: "s" + - formula: "C10H16NO6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02635s + - id: "m02635s" - name: "O-butanoylcarnitine" - - compartment: s - - formula: C11H21NO4 + - compartment: "s" + - formula: "C11H21NO4" - charge: 0 - - inchis: 1/C11H21NO4/c1-5-6-11(15)16-9(7-10(13)14)8-12(2,3)4/h9H,5-8H2,1-4H3 - - metFrom: Recon3D + - inchis: "1/C11H21NO4/c1-5-6-11(15)16-9(7-10(13)14)8-12(2,3)4/h9H,5-8H2,1-4H3" + - metFrom: "Recon3D" - !!omap - - id: c4dc_p + - id: "c4dc_p" - name: "Succinyl Carnitine" - - compartment: p - - formula: C11H18NO6 + - compartment: "p" + - formula: "C11H18NO6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: c4dc_c + - id: "c4dc_c" - name: "Succinyl Carnitine" - - compartment: c - - formula: C11H18NO6 + - compartment: "c" + - formula: "C11H18NO6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: c4dc_s + - id: "c4dc_s" - name: "Succinyl Carnitine" - - compartment: s - - formula: C11H18NO6 + - compartment: "s" + - formula: "C11H18NO6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02635p + - id: "m02635p" - name: "O-butanoylcarnitine" - - compartment: p - - formula: C11H21NO4 + - compartment: "p" + - formula: "C11H21NO4" - charge: 0 - - inchis: 1/C11H21NO4/c1-5-6-11(15)16-9(7-10(13)14)8-12(2,3)4/h9H,5-8H2,1-4H3 - - metFrom: Recon3D + - inchis: "1/C11H21NO4/c1-5-6-11(15)16-9(7-10(13)14)8-12(2,3)4/h9H,5-8H2,1-4H3" + - metFrom: "Recon3D" - !!omap - - id: m02189c + - id: "m02189c" - name: "isovaleryl-CoA" - - compartment: c - - formula: C26H40N7O17P3S + - compartment: "c" + - formula: "C26H40N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ivcrn_c + - id: "ivcrn_c" - name: "Isovaleryl Carnitine" - - compartment: c - - formula: C12H23NO4 + - compartment: "c" + - formula: "C12H23NO4" - charge: 0 - - inchis: 1/C12H23NO4/c1-9(2)6-12(16)17-10(7-11(14)15)8-13(3,4)5/h9-10H,6-8H2,1-5H3 - - metFrom: Recon3D + - inchis: "1/C12H23NO4/c1-9(2)6-12(16)17-10(7-11(14)15)8-13(3,4)5/h9-10H,6-8H2,1-5H3" + - metFrom: "Recon3D" - !!omap - - id: c51crn_c + - id: "c51crn_c" - name: "Tiglyl Carnitine" - - compartment: c - - formula: C12H21NO4 + - compartment: "c" + - formula: "C12H21NO4" - charge: 0 - - inchis: 1/C12H21NO4/c1-6-9(2)12(16)17-10(7-11(14)15)8-13(3,4)5/h6,10H,7-8H2,1-5H3/b9-6+ - - metFrom: Recon3D + - inchis: "1/C12H21NO4/c1-6-9(2)12(16)17-10(7-11(14)15)8-13(3,4)5/h6,10H,7-8H2,1-5H3/b9-6+" + - metFrom: "Recon3D" - !!omap - - id: c5dc_c + - id: "c5dc_c" - name: "Glutaryl Carnitine" - - compartment: c - - formula: C12H21NO6 + - compartment: "c" + - formula: "C12H21NO6" - charge: 0 - - inchis: 1S/C12H21NO6/c1-13(2,3)8-9(7-11(16)17)19-12(18)6-4-5-10(14)15/h9H,4-8H2,1-3H3,(H-,14,15,16,17)/t9-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C12H21NO6/c1-13(2,3)8-9(7-11(16)17)19-12(18)6-4-5-10(14)15/h9H,4-8H2,1-3H3,(H-,14,15,16,17)/t9-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: c5dc_s + - id: "c5dc_s" - name: "Glutaryl Carnitine" - - compartment: s - - formula: C12H21NO6 + - compartment: "s" + - formula: "C12H21NO6" - charge: 0 - - inchis: 1S/C12H21NO6/c1-13(2,3)8-9(7-11(16)17)19-12(18)6-4-5-10(14)15/h9H,4-8H2,1-3H3,(H-,14,15,16,17)/t9-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C12H21NO6/c1-13(2,3)8-9(7-11(16)17)19-12(18)6-4-5-10(14)15/h9H,4-8H2,1-3H3,(H-,14,15,16,17)/t9-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: c6crn_c + - id: "c6crn_c" - name: "Hexanoyl Carnitine" - - compartment: c - - formula: C13H25NO4 + - compartment: "c" + - formula: "C13H25NO4" - charge: 0 - - inchis: 1/C13H25NO4/c1-5-6-7-8-13(17)18-11(9-12(15)16)10-14(2,3)4/h11H,5-10H2,1-4H3 - - metFrom: Recon3D + - inchis: "1/C13H25NO4/c1-5-6-7-8-13(17)18-11(9-12(15)16)10-14(2,3)4/h11H,5-10H2,1-4H3" + - metFrom: "Recon3D" - !!omap - - id: c6crn_p + - id: "c6crn_p" - name: "Hexanoyl Carnitine" - - compartment: p - - formula: C13H25NO4 + - compartment: "p" + - formula: "C13H25NO4" - charge: 0 - - inchis: 1/C13H25NO4/c1-5-6-7-8-13(17)18-11(9-12(15)16)10-14(2,3)4/h11H,5-10H2,1-4H3 - - metFrom: Recon3D + - inchis: "1/C13H25NO4/c1-5-6-7-8-13(17)18-11(9-12(15)16)10-14(2,3)4/h11H,5-10H2,1-4H3" + - metFrom: "Recon3D" - !!omap - - id: c6crn_s + - id: "c6crn_s" - name: "Hexanoyl Carnitine" - - compartment: s - - formula: C13H25NO4 + - compartment: "s" + - formula: "C13H25NO4" - charge: 0 - - inchis: 1/C13H25NO4/c1-5-6-7-8-13(17)18-11(9-12(15)16)10-14(2,3)4/h11H,5-10H2,1-4H3 - - metFrom: Recon3D + - inchis: "1/C13H25NO4/c1-5-6-7-8-13(17)18-11(9-12(15)16)10-14(2,3)4/h11H,5-10H2,1-4H3" + - metFrom: "Recon3D" - !!omap - - id: c6dc_c + - id: "c6dc_c" - name: "Adipoyl Carnitine" - - compartment: c - - formula: C13H22NO6 + - compartment: "c" + - formula: "C13H22NO6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: c6dc_s + - id: "c6dc_s" - name: "Adipoyl Carnitine" - - compartment: s - - formula: C13H22NO6 + - compartment: "s" + - formula: "C13H22NO6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: c81coa_c + - id: "c81coa_c" - name: "Octenoyl Coenzyme A" - - compartment: c - - formula: C29H44N7O17P3S + - compartment: "c" + - formula: "C29H44N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: c81crn_c + - id: "c81crn_c" - name: "Octenoyl Carnitine" - - compartment: c - - formula: C15H27NO4 + - compartment: "c" + - formula: "C15H27NO4" - charge: 0 - - inchis: 1S/C15H27NO4/c1-5-6-7-8-9-10-15(19)20-13(16(2,3)4)11-12-14(17)18/h9-10,13H,5-8,11-12H2,1-4H3/b10-9+/t13-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C15H27NO4/c1-5-6-7-8-9-10-15(19)20-13(16(2,3)4)11-12-14(17)18/h9-10,13H,5-8,11-12H2,1-4H3/b10-9+/t13-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: c81crn_s + - id: "c81crn_s" - name: "Octenoyl Carnitine" - - compartment: s - - formula: C15H27NO4 + - compartment: "s" + - formula: "C15H27NO4" - charge: 0 - - inchis: 1S/C15H27NO4/c1-5-6-7-8-9-10-15(19)20-13(16(2,3)4)11-12-14(17)18/h9-10,13H,5-8,11-12H2,1-4H3/b10-9+/t13-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C15H27NO4/c1-5-6-7-8-9-10-15(19)20-13(16(2,3)4)11-12-14(17)18/h9-10,13H,5-8,11-12H2,1-4H3/b10-9+/t13-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m02409s + - id: "m02409s" - name: "L-octanoylcarnitine" - - compartment: s - - formula: C15H29NO4 + - compartment: "s" + - formula: "C15H29NO4" - charge: 0 - - inchis: 1S/C15H29NO4/c1-5-6-7-8-9-10-15(19)20-13(11-14(17)18)12-16(2,3)4/h13H,5-12H2,1-4H3/t13-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C15H29NO4/c1-5-6-7-8-9-10-15(19)20-13(11-14(17)18)12-16(2,3)4/h13H,5-12H2,1-4H3/t13-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: sbcoa_c + - id: "sbcoa_c" - name: "Suberyl Coenzyme A" - - compartment: c - - formula: C29H43N7O19P3S + - compartment: "c" + - formula: "C29H43N7O19P3S" - charge: -5 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: c8dc_c + - id: "c8dc_c" - name: "Suberyl Carnitine" - - compartment: c - - formula: C15H26NO6 + - compartment: "c" + - formula: "C15H26NO6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: c8dc_s + - id: "c8dc_s" - name: "Suberyl Carnitine" - - compartment: s - - formula: C15H26NO6 + - compartment: "s" + - formula: "C15H26NO6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01648r + - id: "m01648r" - name: "decanoic acid" - - compartment: r - - formula: C10H19O2 + - compartment: "r" + - formula: "C10H19O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3ddcrn_s + - id: "3ddcrn_s" - name: "3-Hydroxydodecanoylcarnitine" - - compartment: s - - formula: C19H37NO5 + - compartment: "s" + - formula: "C19H37NO5" - charge: 0 - - inchis: 1/C19H37NO5/c1-5-6-7-8-9-10-11-12-16(21)13-19(24)25-17(14-18(22)23)15-20(2,3)4/h16-17,21H,5-15H2,1-4H3 - - metFrom: Recon3D + - inchis: "1/C19H37NO5/c1-5-6-7-8-9-10-11-12-16(21)13-19(24)25-17(14-18(22)23)15-20(2,3)4/h16-17,21H,5-15H2,1-4H3" + - metFrom: "Recon3D" - !!omap - - id: ddeccrn_s + - id: "ddeccrn_s" - name: "Lauroyl Carnitine" - - compartment: s - - formula: C19H37NO4 + - compartment: "s" + - formula: "C19H37NO4" - charge: 0 - - inchis: 1S/C19H37NO4/c1-5-6-7-8-9-10-11-12-13-14-19(23)24-17(15-18(21)22)16-20(2,3)4/h17H,5-16H2,1-4H3/t17-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C19H37NO4/c1-5-6-7-8-9-10-11-12-13-14-19(23)24-17(15-18(21)22)16-20(2,3)4/h17H,5-16H2,1-4H3/t17-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: ddece1crn_s + - id: "ddece1crn_s" - name: "Dodecenoyl Carnitine" - - compartment: s - - formula: C19H35NO4 + - compartment: "s" + - formula: "C19H35NO4" - charge: 0 - - inchis: 1/C19H35NO4/c1-5-6-7-8-9-10-11-12-13-14-19(23)24-17(20(2,3)4)15-16-18(21)22/h10-11,17H,5-9,12-16H2,1-4H3/b11-10- - - metFrom: Recon3D + - inchis: "1/C19H35NO4/c1-5-6-7-8-9-10-11-12-13-14-19(23)24-17(20(2,3)4)15-16-18(21)22/h10-11,17H,5-9,12-16H2,1-4H3/b11-10-" + - metFrom: "Recon3D" - !!omap - - id: 3deccrn_s + - id: "3deccrn_s" - name: "3-Hydroxydecanoylcarnitine" - - compartment: s - - formula: C17H33NO5 + - compartment: "s" + - formula: "C17H33NO5" - charge: 0 - - inchis: 1/C17H33NO5/c1-5-6-7-8-9-10-14(19)13-17(22)23-15(18(2,3)4)11-12-16(20)21/h14-15,19H,5-13H2,1-4H3 - - metFrom: Recon3D + - inchis: "1/C17H33NO5/c1-5-6-7-8-9-10-14(19)13-17(22)23-15(18(2,3)4)11-12-16(20)21/h14-15,19H,5-13H2,1-4H3" + - metFrom: "Recon3D" - !!omap - - id: decdicrn_s + - id: "decdicrn_s" - name: "Decadienoyl Carnitine" - - compartment: s - - formula: C17H29NO4 + - compartment: "s" + - formula: "C17H29NO4" - charge: 0 - - inchis: 1S/C17H29NO4/c1-5-6-7-8-9-10-11-12-17(21)22-15(18(2,3)4)13-14-16(19)20/h9-12,15H,5-8,13-14H2,1-4H3/b10-9-,12-11+/t15-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C17H29NO4/c1-5-6-7-8-9-10-11-12-17(21)22-15(18(2,3)4)13-14-16(19)20/h9-12,15H,5-8,13-14H2,1-4H3/b10-9-,12-11+/t15-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: doco13ecoa_c + - id: "doco13ecoa_c" - name: "13-Docosenoyl Coenzyme A" - - compartment: c - - formula: C43H72N7O17P3S + - compartment: "c" + - formula: "C43H72N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: doco13ecoa_p + - id: "doco13ecoa_p" - name: "13-Docosenoyl Coenzyme A" - - compartment: p - - formula: C43H72N7O17P3S + - compartment: "p" + - formula: "C43H72N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: docosdiac_r + - id: "docosdiac_r" - name: "Docosanedioicacid" - - compartment: r - - formula: C22H40O4 + - compartment: "r" + - formula: "C22H40O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: docosdiac_c + - id: "docosdiac_c" - name: "Docosanedioicacid" - - compartment: c - - formula: C22H40O4 + - compartment: "c" + - formula: "C22H40O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: docosdiac_s + - id: "docosdiac_s" - name: "Docosanedioicacid" - - compartment: s - - formula: C22H40O4 + - compartment: "s" + - formula: "C22H40O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hdececrn_s + - id: "3hdececrn_s" - name: "3-Hydroxyhexadecenoylcarnitine" - - compartment: s - - formula: C23H43NO5 + - compartment: "s" + - formula: "C23H43NO5" - charge: 0 - - inchis: 1S/C23H43NO5/c1-5-6-7-8-9-10-11-12-13-14-15-16-20(25)19-23(28)29-21(24(2,3)4)17-18-22(26)27/h10-11,20-21,25H,5-9,12-19H2,1-4H3/b11-10+/t20?,21-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C23H43NO5/c1-5-6-7-8-9-10-11-12-13-14-15-16-20(25)19-23(28)29-21(24(2,3)4)17-18-22(26)27/h10-11,20-21,25H,5-9,12-19H2,1-4H3/b11-10+/t20?,21-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: 3hexdcrn_s + - id: "3hexdcrn_s" - name: "3-Hydroxyhexadecanoylcarnitine" - - compartment: s - - formula: C23H45NO5 + - compartment: "s" + - formula: "C23H45NO5" - charge: 0 - - inchis: 1S/C23H45NO5/c1-5-6-7-8-9-10-11-12-13-14-15-16-20(25)19-23(28)29-21(24(2,3)4)17-18-22(26)27/h20-21,25H,5-19H2,1-4H3/t20?,21-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C23H45NO5/c1-5-6-7-8-9-10-11-12-13-14-15-16-20(25)19-23(28)29-21(24(2,3)4)17-18-22(26)27/h20-21,25H,5-19H2,1-4H3/t20?,21-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: 3ivcrn_s + - id: "3ivcrn_s" - name: "3-Hydroxy-Isovaleryl Carnitine" - - compartment: s - - formula: C12H23NO5 + - compartment: "s" + - formula: "C12H23NO5" - charge: 0 - - inchis: 1/C12H23NO5/c1-12(2,17)7-11(16)18-9(6-10(14)15)8-13(3,4)5/h9,17H,6-8H2,1-5H3 - - metFrom: Recon3D + - inchis: "1/C12H23NO5/c1-12(2,17)7-11(16)18-9(6-10(14)15)8-13(3,4)5/h9,17H,6-8H2,1-5H3" + - metFrom: "Recon3D" - !!omap - - id: 3octdec2crn_s + - id: "3octdec2crn_s" - name: "3-Hydroxyoctadecadienoylcarnitine" - - compartment: s - - formula: C25H45NO5 + - compartment: "s" + - formula: "C25H45NO5" - charge: 0 - - inchis: 1/C25H45NO5/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-22(27)19-25(30)31-23(20-24(28)29)21-26(2,3)4/h9-10,12-13,22-23,27H,5-8,11,14-21H2,1-4H3 - - metFrom: Recon3D + - inchis: "1/C25H45NO5/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-22(27)19-25(30)31-23(20-24(28)29)21-26(2,3)4/h9-10,12-13,22-23,27H,5-8,11,14-21H2,1-4H3" + - metFrom: "Recon3D" - !!omap - - id: 3octdeccrn_s + - id: "3octdeccrn_s" - name: "3-Hydroxyoctadecanoyl Carnitine" - - compartment: s - - formula: C25H49NO5 + - compartment: "s" + - formula: "C25H49NO5" - charge: 0 - - inchis: 1/C25H49NO5/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-22(27)19-25(30)31-23(20-24(28)29)21-26(2,3)4/h22-23,27H,5-21H2,1-4H3 - - metFrom: Recon3D + - inchis: "1/C25H49NO5/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-22(27)19-25(30)31-23(20-24(28)29)21-26(2,3)4/h22-23,27H,5-21H2,1-4H3" + - metFrom: "Recon3D" - !!omap - - id: 3octdece1crn_s + - id: "3octdece1crn_s" - name: "3-Hydroxy-Octadecenoyl Carnitine" - - compartment: s - - formula: C25H47NO5 + - compartment: "s" + - formula: "C25H47NO5" - charge: 0 - - inchis: 1S/C25H47NO5/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-22(27)21-25(30)31-23(26(2,3)4)19-20-24(28)29/h10-11,22-23,27H,5-9,12-21H2,1-4H3/b11-10-/t22?,23-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C25H47NO5/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-22(27)21-25(30)31-23(26(2,3)4)19-20-24(28)29/h10-11,22-23,27H,5-9,12-21H2,1-4H3/b11-10-/t22?,23-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: 3tdcrn_s + - id: "3tdcrn_s" - name: "3-Hydroxy-Tetradecanoyl Carnitine" - - compartment: s - - formula: C21H41NO5 + - compartment: "s" + - formula: "C21H41NO5" - charge: 0 - - inchis: 1/C21H41NO5/c1-5-6-7-8-9-10-11-12-13-14-18(23)15-21(26)27-19(16-20(24)25)17-22(2,3)4/h18-19,23H,5-17H2,1-4H3 - - metFrom: Recon3D + - inchis: "1/C21H41NO5/c1-5-6-7-8-9-10-11-12-13-14-18(23)15-21(26)27-19(16-20(24)25)17-22(2,3)4/h18-19,23H,5-17H2,1-4H3" + - metFrom: "Recon3D" - !!omap - - id: c51crn_s + - id: "c51crn_s" - name: "Tiglyl Carnitine" - - compartment: s - - formula: C12H21NO4 + - compartment: "s" + - formula: "C12H21NO4" - charge: 0 - - inchis: 1/C12H21NO4/c1-6-9(2)12(16)17-10(7-11(14)15)8-13(3,4)5/h6,10H,7-8H2,1-5H3/b9-6+ - - metFrom: Recon3D + - inchis: "1/C12H21NO4/c1-6-9(2)12(16)17-10(7-11(14)15)8-13(3,4)5/h6,10H,7-8H2,1-5H3/b9-6+" + - metFrom: "Recon3D" - !!omap - - id: ivcrn_s + - id: "ivcrn_s" - name: "Isovaleryl Carnitine" - - compartment: s - - formula: C12H23NO4 + - compartment: "s" + - formula: "C12H23NO4" - charge: 0 - - inchis: 1/C12H23NO4/c1-9(2)6-12(16)17-10(7-11(14)15)8-13(3,4)5/h9-10H,6-8H2,1-5H3 - - metFrom: Recon3D + - inchis: "1/C12H23NO4/c1-9(2)6-12(16)17-10(7-11(14)15)8-13(3,4)5/h9-10H,6-8H2,1-5H3" + - metFrom: "Recon3D" - !!omap - - id: tetdec2crn_s + - id: "tetdec2crn_s" - name: "Tetradecadienoyl Carnitine" - - compartment: s - - formula: C21H37NO4 + - compartment: "s" + - formula: "C21H37NO4" - charge: 0 - - inchis: 1/C21H37NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-21(25)26-19(17-20(23)24)18-22(2,3)4/h12-15,19H,5-11,16-18H2,1-4H3/b13-12-,15-14+ - - metFrom: Recon3D + - inchis: "1/C21H37NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-21(25)26-19(17-20(23)24)18-22(2,3)4/h12-15,19H,5-11,16-18H2,1-4H3/b13-12-,15-14+" + - metFrom: "Recon3D" - !!omap - - id: tetdece1crn_s + - id: "tetdece1crn_s" - name: "Tetradecenoyl Carnitine" - - compartment: s - - formula: C21H39NO4 + - compartment: "s" + - formula: "C21H39NO4" - charge: 0 - - inchis: 1/C21H39NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-21(25)26-19(17-20(23)24)18-22(2,3)4/h12-13,19H,5-11,14-18H2,1-4H3/b13-12- - - metFrom: Recon3D + - inchis: "1/C21H39NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-21(25)26-19(17-20(23)24)18-22(2,3)4/h12-13,19H,5-11,14-18H2,1-4H3/b13-12-" + - metFrom: "Recon3D" - !!omap - - id: dec47dicoa_m + - id: "dec47dicoa_m" - name: "4,7-Decadienoyl Coenzyme A" - - compartment: m - - formula: C31H46N7O17P3S + - compartment: "m" + - formula: "C31H46N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: dectricoa_m + - id: "dectricoa_m" - name: "2,4,7-Decatrienoyl Coenzyme A" - - compartment: m - - formula: C31H44N7O17P3S + - compartment: "m" + - formula: "C31H44N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: dec47dicoa_p + - id: "dec47dicoa_p" - name: "4,7-Decadienoyl Coenzyme A" - - compartment: p - - formula: C31H46N7O17P3S + - compartment: "p" + - formula: "C31H46N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: dectricoa_p + - id: "dectricoa_p" - name: "2,4,7-Decatrienoyl Coenzyme A" - - compartment: p - - formula: C31H44N7O17P3S + - compartment: "p" + - formula: "C31H44N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2decdicoa_m + - id: "2decdicoa_m" - name: "2,7-Decadienoyl Coenzyme A" - - compartment: m - - formula: C31H46N7O17P3S + - compartment: "m" + - formula: "C31H46N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: octe5coa_m + - id: "octe5coa_m" - name: "5-Octenoyl Coenzyme A" - - compartment: m - - formula: C29H44N7O17P3S + - compartment: "m" + - formula: "C29H44N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2decdicoa_p + - id: "2decdicoa_p" - name: "2,7-Decadienoyl Coenzyme A" - - compartment: p - - formula: C31H46N7O17P3S + - compartment: "p" + - formula: "C31H46N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: octe5coa_p + - id: "octe5coa_p" - name: "5-Octenoyl Coenzyme A" - - compartment: p - - formula: C29H44N7O17P3S + - compartment: "p" + - formula: "C29H44N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3decdicoa_m + - id: "3decdicoa_m" - name: "3,7-Decadienoyl Coenzyme A" - - compartment: m - - formula: C31H46N7O17P3S + - compartment: "m" + - formula: "C31H46N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3decdicoa_p + - id: "3decdicoa_p" - name: "3,7-Decadienoyl Coenzyme A" - - compartment: p - - formula: C31H46N7O17P3S + - compartment: "p" + - formula: "C31H46N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sebcoa_p + - id: "sebcoa_p" - name: "Sebacoyl Coenzyme A" - - compartment: p - - formula: C31H47N7O19P3S + - compartment: "p" + - formula: "C31H47N7O19P3S" - charge: -5 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sbcoa_p + - id: "sbcoa_p" - name: "Suberyl Coenzyme A" - - compartment: p - - formula: C29H43N7O19P3S + - compartment: "p" + - formula: "C29H43N7O19P3S" - charge: -5 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tmuncoa_p + - id: "tmuncoa_p" - name: "2,6,10-Trimethyl Undecanoyl Coenzyme A" - - compartment: p - - formula: C35H58N7O17P3S + - compartment: "p" + - formula: "C35H58N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: undcoa_m + - id: "undcoa_m" - name: "Undecanoyl Coenzyme A" - - compartment: m - - formula: C32H52N7O17P3S + - compartment: "m" + - formula: "C32H52N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: noncoa_m + - id: "noncoa_m" - name: "Nonanoyl Coenzyme A" - - compartment: m - - formula: C30H48N7O17P3S + - compartment: "m" + - formula: "C30H48N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: dd5ecoa_m + - id: "dd5ecoa_m" - name: "5-Dodecenoyl Coenzyme A" - - compartment: m - - formula: C33H52N7O17P3S + - compartment: "m" + - formula: "C33H52N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2ddecdicoa_m + - id: "2ddecdicoa_m" - name: "2,6-Dodecadienoyl Coenzyme A" - - compartment: m - - formula: C33H50N7O17P3S + - compartment: "m" + - formula: "C33H50N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3ddecdicoa_m + - id: "3ddecdicoa_m" - name: "3,6-Dodecadienoyl Coenzyme A" - - compartment: m - - formula: C33H50N7O17P3S + - compartment: "m" + - formula: "C33H50N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2ddecdicoa_p + - id: "2ddecdicoa_p" - name: "2,6-Dodecadienoyl Coenzyme A" - - compartment: p - - formula: C33H50N7O17P3S + - compartment: "p" + - formula: "C33H50N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3ddecdicoa_p + - id: "3ddecdicoa_p" - name: "3,6-Dodecadienoyl Coenzyme A" - - compartment: p - - formula: C33H50N7O17P3S + - compartment: "p" + - formula: "C33H50N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2dodtricoa_m + - id: "2dodtricoa_m" - name: "2,6,9-Dodecatrienoyl Coenzyme A" - - compartment: m - - formula: C33H48N7O17P3S + - compartment: "m" + - formula: "C33H48N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2dodtricoa_p + - id: "2dodtricoa_p" - name: "2,6,9-Dodecatrienoyl Coenzyme A" - - compartment: p - - formula: C33H48N7O17P3S + - compartment: "p" + - formula: "C33H48N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3dodtricoa_m + - id: "3dodtricoa_m" - name: "3,6,9-Dodecatrienoyl Coenzyme A" - - compartment: m - - formula: C33H48N7O17P3S + - compartment: "m" + - formula: "C33H48N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3dodtricoa_p + - id: "3dodtricoa_p" - name: "3,6,9-Dodecatrienoyl Coenzyme A" - - compartment: p - - formula: C33H48N7O17P3S + - compartment: "p" + - formula: "C33H48N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: c12dc_p + - id: "c12dc_p" - name: "Dodecanedioyl Carnitine" - - compartment: p - - formula: C19H34NO6 + - compartment: "p" + - formula: "C19H34NO6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tridcoa_m + - id: "tridcoa_m" - name: "Tridecanoyl Coenzyme A" - - compartment: m - - formula: C34H56N7O17P3S + - compartment: "m" + - formula: "C34H56N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tetd7ecoa_m + - id: "tetd7ecoa_m" - name: "7-Tetradecenoyl Coenzyme A" - - compartment: m - - formula: C35H56N7O17P3S + - compartment: "m" + - formula: "C35H56N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tetde5coa_p + - id: "tetde5coa_p" - name: "5-Tetradecenoyl Coenzyme A" - - compartment: p - - formula: C35H56N7O17P3S + - compartment: "p" + - formula: "C35H56N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tetdecdicoa_m + - id: "tetdecdicoa_m" - name: "5,8-Tetradecadienoyl Coenzyme A" - - compartment: m - - formula: C35H54N7O17P3S + - compartment: "m" + - formula: "C35H54N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tetdecdicoa_p + - id: "tetdecdicoa_p" - name: "5,8-Tetradecadienoyl Coenzyme A" - - compartment: p - - formula: C35H54N7O17P3S + - compartment: "p" + - formula: "C35H54N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ttetddcoa_m + - id: "ttetddcoa_m" - name: "Trans5,8Tetradecadienoyl Coenzyme A" - - compartment: m - - formula: C35H54N7O17P3S + - compartment: "m" + - formula: "C35H54N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 5tedtricoa_m + - id: "5tedtricoa_m" - name: "5,8,11-Tetradecatrienoyl Coenzyme A" - - compartment: m - - formula: C35H52N7O17P3S + - compartment: "m" + - formula: "C35H52N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 5tedtricoa_p + - id: "5tedtricoa_p" - name: "5,8,11-Tetradecatrienoyl Coenzyme A" - - compartment: p - - formula: C35H52N7O17P3S + - compartment: "p" + - formula: "C35H52N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: c14dccoa_p + - id: "c14dccoa_p" - name: "Tetradecanedioyl Coenzyme A" - - compartment: p - - formula: C35H55N7O19P3S + - compartment: "p" + - formula: "C35H55N7O19P3S" - charge: -5 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hexde7coa_p + - id: "hexde7coa_p" - name: "7-Hexadecenoyl Coenzyme A" - - compartment: p - - formula: C37H60N7O17P3S + - compartment: "p" + - formula: "C37H60N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hdeccoa_m + - id: "3hdeccoa_m" - name: "3-Hydroxyhexadecenoyl Coenzyme A" - - compartment: m - - formula: C37H60N7O18P3S + - compartment: "m" + - formula: "C37H60N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hexddcoa_m + - id: "hexddcoa_m" - name: "7,10-Hexadecadienoyl Coenzyme A" - - compartment: m - - formula: C37H58N7O17P3S + - compartment: "m" + - formula: "C37H58N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: thexddcoa_m + - id: "thexddcoa_m" - name: "Trans7,10-Hexadecadienoyl Coenzyme A" - - compartment: m - - formula: C37H58N7O17P3S + - compartment: "m" + - formula: "C37H58N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2hexdtricoa_p + - id: "2hexdtricoa_p" - name: "2,7,10-Hexadecatrienoyl Coenzyme A" - - compartment: p - - formula: C37H56N7O17P3S + - compartment: "p" + - formula: "C37H56N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hexdtrcoa_m + - id: "hexdtrcoa_m" - name: "7,10,13-Hexadecatrienoyl Coenzyme A" - - compartment: m - - formula: C37H56N7O17P3S + - compartment: "m" + - formula: "C37H56N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 4hexdtricoa_m + - id: "4hexdtricoa_m" - name: "4,7,10-Hexadecatrienoyl Coenzyme A" - - compartment: m - - formula: C37H56N7O17P3S + - compartment: "m" + - formula: "C37H56N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hexdectecoa_m + - id: "hexdectecoa_m" - name: "2,4,7,10-Hexadecatetraenoyl Coenzyme A" - - compartment: m - - formula: C37H54N7O17P3S + - compartment: "m" + - formula: "C37H54N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 4hexdtricoa_p + - id: "4hexdtricoa_p" - name: "4,7,10-Hexadecatrienoyl Coenzyme A" - - compartment: p - - formula: C37H56N7O17P3S + - compartment: "p" + - formula: "C37H56N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hexdectecoa_p + - id: "hexdectecoa_p" - name: "2,4,7,10-Hexadecatetraenoyl Coenzyme A" - - compartment: p - - formula: C37H54N7O17P3S + - compartment: "p" + - formula: "C37H54N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2hexdtricoa_m + - id: "2hexdtricoa_m" - name: "2,7,10-Hexadecatrienoyl Coenzyme A" - - compartment: m - - formula: C37H56N7O17P3S + - compartment: "m" + - formula: "C37H56N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hexdtricoa_m + - id: "3hexdtricoa_m" - name: "3,7,10-Hexadecatrienoyl Coenzyme A" - - compartment: m - - formula: C37H56N7O17P3S + - compartment: "m" + - formula: "C37H56N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hexdtricoa_p + - id: "3hexdtricoa_p" - name: "3,7,10-Hexadecatrienoyl Coenzyme A" - - compartment: p - - formula: C37H56N7O17P3S + - compartment: "p" + - formula: "C37H56N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2hexdtetcoa_m + - id: "2hexdtetcoa_m" - name: "2,7,10,13-Hexadecatetraenoyl Coenzyme A" - - compartment: m - - formula: C37H54N7O17P3S + - compartment: "m" + - formula: "C37H54N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2hexdtetcoa_p + - id: "2hexdtetcoa_p" - name: "2,7,10,13-Hexadecatetraenoyl Coenzyme A" - - compartment: p - - formula: C37H54N7O17P3S + - compartment: "p" + - formula: "C37H54N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 4hexdtetcoa_m + - id: "4hexdtetcoa_m" - name: "4,7,10,13-Hexadecatetraenoyl Coenzyme A" - - compartment: m - - formula: C37H54N7O17P3S + - compartment: "m" + - formula: "C37H54N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hexdpencoa_m + - id: "hexdpencoa_m" - name: "2,4,7,10,13-Hexadecapentaenoyl Coenzyme A" - - compartment: m - - formula: C37H52N7O17P3S + - compartment: "m" + - formula: "C37H52N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 4hexdtetcoa_p + - id: "4hexdtetcoa_p" - name: "4,7,10,13-Hexadecatetraenoyl Coenzyme A" - - compartment: p - - formula: C37H54N7O17P3S + - compartment: "p" + - formula: "C37H54N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hexdpencoa_p + - id: "hexdpencoa_p" - name: "2,4,7,10,13-Hexadecapentaenoyl Coenzyme A" - - compartment: p - - formula: C37H52N7O17P3S + - compartment: "p" + - formula: "C37H52N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hexdtetcoa_m + - id: "3hexdtetcoa_m" - name: "3,7,10,13-Hexadecatetraenoyl Coenzyme A" - - compartment: m - - formula: C37H54N7O17P3S + - compartment: "m" + - formula: "C37H54N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hexdtetcoa_p + - id: "3hexdtetcoa_p" - name: "3,7,10,13-Hexadecatetraenoyl Coenzyme A" - - compartment: p - - formula: C37H54N7O17P3S + - compartment: "p" + - formula: "C37H54N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hexdcoa_m + - id: "3hexdcoa_m" - name: "3-Hydroxyhexadecanoyl Coenzyme A" - - compartment: m - - formula: C37H62N7O18P3S + - compartment: "m" + - formula: "C37H62N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hexdicoa_p + - id: "hexdicoa_p" - name: "Hexadecanedioyl Coenzyme A" - - compartment: p - - formula: C37H59N7O19P3S + - compartment: "p" + - formula: "C37H59N7O19P3S" - charge: -5 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hexdicoa_r + - id: "hexdicoa_r" - name: "Hexadecanedioyl Coenzyme A" - - compartment: r - - formula: C37H59N7O19P3S + - compartment: "r" + - formula: "C37H59N7O19P3S" - charge: -5 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hexdiac_r + - id: "hexdiac_r" - name: "Hexadecanediocacid" - - compartment: r - - formula: C16H28O4 + - compartment: "r" + - formula: "C16H28O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00403r + - id: "m00403r" - name: "16-hydroxyhexadecanoic acid" - - compartment: r - - formula: C16H31O3 + - compartment: "r" + - formula: "C16H31O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ocde9ecoa_p + - id: "ocde9ecoa_p" - name: "9-Octadecenoyl Coenzyme A" - - compartment: p - - formula: C39H64N7O17P3S + - compartment: "p" + - formula: "C39H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3octdece1coa_m + - id: "3octdece1coa_m" - name: "3-Hydroxyoctadecenoyl Coenzyme A" - - compartment: m - - formula: C39H64N7O18P3S + - compartment: "m" + - formula: "C39H64N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: octdececoa_m + - id: "octdececoa_m" - name: "Octadecenoyl Coenzyme A" - - compartment: m - - formula: C39H64N7O17P3S + - compartment: "m" + - formula: "C39H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3ocddcoa_m + - id: "3ocddcoa_m" - name: "3-Hydroxyoctadecadienoyl Coenzyme A" - - compartment: m - - formula: C39H62N7O18P3S + - compartment: "m" + - formula: "C39H62N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2octdectecoa_m + - id: "2octdectecoa_m" - name: "2,6,9,12-Octadecatetraenoyl Coenzyme A" - - compartment: m - - formula: C39H58N7O17P3S + - compartment: "m" + - formula: "C39H58N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2octdectecoa_p + - id: "2octdectecoa_p" - name: "2,6,9,12-Octadecatetraenoyl Coenzyme A" - - compartment: p - - formula: C39H58N7O17P3S + - compartment: "p" + - formula: "C39H58N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3octdectecoa_m + - id: "3octdectecoa_m" - name: "3,6,9,12-Octadecatetraenoyl Coenzyme A" - - compartment: m - - formula: C39H58N7O17P3S + - compartment: "m" + - formula: "C39H58N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3octdectecoa_p + - id: "3octdectecoa_p" - name: "3,6,9,12-Octadecatetraenoyl Coenzyme A" - - compartment: p - - formula: C39H58N7O17P3S + - compartment: "p" + - formula: "C39H58N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2octpencoa_m + - id: "2octpencoa_m" - name: "2,6,9,12,15-Octadecapentenoyl Coenzyme A" - - compartment: m - - formula: C39H56N7O17P3S + - compartment: "m" + - formula: "C39H56N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3octpencoa_m + - id: "3octpencoa_m" - name: "3,6,9,12,15-Octadecapentenoyl Coenzyme A" - - compartment: m - - formula: C39H56N7O17P3S + - compartment: "m" + - formula: "C39H56N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hodcoa_m + - id: "3hodcoa_m" - name: "(S)-3-Hydroxyoctadecanoyl Coenzyme A" - - compartment: m - - formula: C39H66N7O18P3S + - compartment: "m" + - formula: "C39H66N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ei11ecoa_p + - id: "ei11ecoa_p" - name: "11-Eicosenoyl Coenzyme A" - - compartment: p - - formula: C41H68N7O17P3S + - compartment: "p" + - formula: "C41H68N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: eitetcoa_m + - id: "eitetcoa_m" - name: "5,8,11,14-Eicosatetraenoyl Coenzyme A" - - compartment: m - - formula: C41H62N7O17P3S + - compartment: "m" + - formula: "C41H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: eitetcoa_p + - id: "eitetcoa_p" - name: "5,8,11,14-Eicosatetraenoyl Coenzyme A" - - compartment: p - - formula: C41H62N7O17P3S + - compartment: "p" + - formula: "C41H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: eipencoa_p + - id: "eipencoa_p" - name: "2,5,8,11,14-Eicosapentaenoyl Coenzyme A" - - compartment: p - - formula: C41H60N7O17P3S + - compartment: "p" + - formula: "C41H60N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 5eipencoa_m + - id: "5eipencoa_m" - name: "5,8,11,14,17-Eicosapentenoyl Coenzyme A" - - compartment: m - - formula: C41H60N7O17P3S + - compartment: "m" + - formula: "C41H60N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2docopencoa_m + - id: "2docopencoa_m" - name: "2,7,10,13,16-Docosapentenoyl Coenzyme A" - - compartment: m - - formula: C43H64N7O17P3S + - compartment: "m" + - formula: "C43H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2docopencoa_p + - id: "2docopencoa_p" - name: "2,7,10,13,16-Docosapentenoyl Coenzyme A" - - compartment: p - - formula: C43H64N7O17P3S + - compartment: "p" + - formula: "C43H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: docohexcoa_m + - id: "docohexcoa_m" - name: "2,4,7,10,13,16-Docosahexenoyl Coenzyme A" - - compartment: m - - formula: C43H62N7O17P3S + - compartment: "m" + - formula: "C43H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: docohexcoa_p + - id: "docohexcoa_p" - name: "2,4,7,10,13,16-Docosahexenoyl Coenzyme A" - - compartment: p - - formula: C43H62N7O17P3S + - compartment: "p" + - formula: "C43H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3docopencoa_m + - id: "3docopencoa_m" - name: "3,7,10,13,16-Docosapentenoyl Coenzyme A" - - compartment: m - - formula: C43H64N7O17P3S + - compartment: "m" + - formula: "C43H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3docopencoa_p + - id: "3docopencoa_p" - name: "3,7,10,13,16-Docosapentenoyl Coenzyme A" - - compartment: p - - formula: C43H64N7O17P3S + - compartment: "p" + - formula: "C43H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2docohexecoa_m + - id: "2docohexecoa_m" - name: "2,7,10,13,16,19-Docosahexenoyl Coenzyme A" - - compartment: m - - formula: C43H62N7O17P3S + - compartment: "m" + - formula: "C43H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: docohepcoa_m + - id: "docohepcoa_m" - name: "2,4,7,10,13,16,19-Docosaheptenoyl Coenzyme A" - - compartment: m - - formula: C43H60N7O17P3S + - compartment: "m" + - formula: "C43H60N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: docosahexcoa_m + - id: "docosahexcoa_m" - name: "3,7,10,13,16,19-Docosahexenoyl Coenzyme A" - - compartment: m - - formula: C43H62N7O17P3S + - compartment: "m" + - formula: "C43H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: omhdocosac_r + - id: "omhdocosac_r" - name: "W-Hydroxydocosanoicacid" - - compartment: r - - formula: C22H42O3 + - compartment: "r" + - formula: "C22H42O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pentcoa_m + - id: "pentcoa_m" - name: "Pentanoyl Coenzyme A" - - compartment: m - - formula: C26H40N7O17P3S + - compartment: "m" + - formula: "C26H40N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01977c + - id: "m01977c" - name: "glutaryl-CoA" - - compartment: c - - formula: C26H37N7O19P3S + - compartment: "c" + - formula: "C26H37N7O19P3S" - charge: -5 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3ivcoa_m + - id: "3ivcoa_m" - name: "3-Hydroxyisovaleryl Coenzyme A" - - compartment: m - - formula: C26H40N7O18P3S + - compartment: "m" + - formula: "C26H40N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3ivcrn_c + - id: "3ivcrn_c" - name: "3-Hydroxy-Isovaleryl Carnitine" - - compartment: c - - formula: C12H23NO5 + - compartment: "c" + - formula: "C12H23NO5" - charge: 0 - - inchis: 1/C12H23NO5/c1-12(2,17)7-11(16)18-9(6-10(14)15)8-13(3,4)5/h9,17H,6-8H2,1-5H3 - - metFrom: Recon3D + - inchis: "1/C12H23NO5/c1-12(2,17)7-11(16)18-9(6-10(14)15)8-13(3,4)5/h9,17H,6-8H2,1-5H3" + - metFrom: "Recon3D" - !!omap - - id: 3ivcoa_c + - id: "3ivcoa_c" - name: "3-Hydroxyisovaleryl Coenzyme A" - - compartment: c - - formula: C26H40N7O18P3S + - compartment: "c" + - formula: "C26H40N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hexe3coa_m + - id: "hexe3coa_m" - name: "3-Hexenoyl Coenzyme A" - - compartment: m - - formula: C27H40N7O17P3S + - compartment: "m" + - formula: "C27H40N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hexe3coa_p + - id: "hexe3coa_p" - name: "3-Hexenoyl Coenzyme A" - - compartment: p - - formula: C27H40N7O17P3S + - compartment: "p" + - formula: "C27H40N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02944p + - id: "m02944p" - name: "succinyl-CoA" - - compartment: p - - formula: C25H35N7O19P3S + - compartment: "p" + - formula: "C25H35N7O19P3S" - charge: -5 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hepcoa_m + - id: "hepcoa_m" - name: "Heptanoyl Coenzyme A" - - compartment: m - - formula: C28H44N7O17P3S + - compartment: "m" + - formula: "C28H44N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: dmhepcoa_m + - id: "dmhepcoa_m" - name: "2,6-Dimethyl Heptanoyl Coenzyme A" - - compartment: m - - formula: C30H48N7O17P3S + - compartment: "m" + - formula: "C30H48N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: omhdecacid_r + - id: "omhdecacid_r" - name: "W-Hydroxydecanoicacid" - - compartment: r - - formula: C10H19O3 + - compartment: "r" + - formula: "C10H19O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hexdiac_c + - id: "hexdiac_c" - name: "Hexadecanediocacid" - - compartment: c - - formula: C16H28O4 + - compartment: "c" + - formula: "C16H28O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: omhdocosac_c + - id: "omhdocosac_c" - name: "W-Hydroxydocosanoicacid" - - compartment: c - - formula: C22H42O3 + - compartment: "c" + - formula: "C22H42O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: omhdecacid_c + - id: "omhdecacid_c" - name: "W-Hydroxydecanoicacid" - - compartment: c - - formula: C10H19O3 + - compartment: "c" + - formula: "C10H19O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sebacid_c + - id: "sebacid_c" - name: "Sebacicacid" - - compartment: c - - formula: C10H16O4 + - compartment: "c" + - formula: "C10H16O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tdec4ecoa_m + - id: "tdec4ecoa_m" - name: "Trans4Decenoyl Coenzyme A" - - compartment: m - - formula: C31H48N7O17P3S + - compartment: "m" + - formula: "C31H48N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ctdecdcoa_m + - id: "ctdecdcoa_m" - name: "Cis2Trans4Decadienoyl Coenzyme A" - - compartment: m - - formula: C31H46N7O17P3S + - compartment: "m" + - formula: "C31H46N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tddedi2coa_m + - id: "tddedi2coa_m" - name: "Trans2,6Dodecadienoyl Coenzyme A" - - compartment: m - - formula: C33H50N7O17P3S + - compartment: "m" + - formula: "C33H50N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tddedicoa_m + - id: "tddedicoa_m" - name: "Trans3,6Dodecadienoyl Coenzyme A" - - compartment: m - - formula: C33H50N7O17P3S + - compartment: "m" + - formula: "C33H50N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ocdececrn_c + - id: "ocdececrn_c" - name: "11-Octadecenoyl Carnitine" - - compartment: c - - formula: C25H47NO4 + - compartment: "c" + - formula: "C25H47NO4" - charge: 0 - - inchis: 1S/C25H47NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-25(29)30-23(26(2,3)4)21-22-24(27)28/h10-11,23H,5-9,12-22H2,1-4H3/b11-10+/t23-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C25H47NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-25(29)30-23(26(2,3)4)21-22-24(27)28/h10-11,23H,5-9,12-22H2,1-4H3/b11-10+/t23-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: ocdececrn_m + - id: "ocdececrn_m" - name: "11-Octadecenoyl Carnitine" - - compartment: m - - formula: C25H47NO4 + - compartment: "m" + - formula: "C25H47NO4" - charge: 0 - - inchis: 1S/C25H47NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-25(29)30-23(26(2,3)4)21-22-24(27)28/h10-11,23H,5-9,12-22H2,1-4H3/b11-10+/t23-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C25H47NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-25(29)30-23(26(2,3)4)21-22-24(27)28/h10-11,23H,5-9,12-22H2,1-4H3/b11-10+/t23-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: octdececrn_c + - id: "octdececrn_c" - name: "Octadecenoyl Carnitine (Hypothetical, Position Of Double Bond Unknown)" - - compartment: c - - formula: C25H47NO4 + - compartment: "c" + - formula: "C25H47NO4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: octdececrn_m + - id: "octdececrn_m" - name: "Octadecenoyl Carnitine (Hypothetical, Position Of Double Bond Unknown)" - - compartment: m - - formula: C25H47NO4 + - compartment: "m" + - formula: "C25H47NO4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: octdececoa_c + - id: "octdececoa_c" - name: "Octadecenoyl Coenzyme A" - - compartment: c - - formula: C39H64N7O17P3S + - compartment: "c" + - formula: "C39H64N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: subeac_p + - id: "subeac_p" - name: "Suberic Acid" - - compartment: p - - formula: C8H12O4 + - compartment: "p" + - formula: "C8H12O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sebacid_p + - id: "sebacid_p" - name: "Sebacicacid" - - compartment: p - - formula: C10H16O4 + - compartment: "p" + - formula: "C10H16O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: subeac_c + - id: "subeac_c" - name: "Suberic Acid" - - compartment: c - - formula: C8H12O4 + - compartment: "c" + - formula: "C8H12O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: c8dc_p + - id: "c8dc_p" - name: "Suberyl Carnitine" - - compartment: p - - formula: C15H26NO6 + - compartment: "p" + - formula: "C15H26NO6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02974s + - id: "m02974s" - name: "tetradecenoylcarnitine(5)" - - compartment: s - - formula: C21H39NO4 + - compartment: "s" + - formula: "C21H39NO4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m03037s + - id: "m03037s" - name: "trans-4-hydroxy-L-proline" - - compartment: s - - formula: C5H9NO3 + - compartment: "s" + - formula: "C5H9NO3" - charge: 0 - - inchis: 1S/C5H9NO3/c7-3-1-4(5(8)9)6-2-3/h3-4,6-7H,1-2H2,(H,8,9)/t3-,4+/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C5H9NO3/c7-3-1-4(5(8)9)6-2-3/h3-4,6-7H,1-2H2,(H,8,9)/t3-,4+/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: alaala_c + - id: "alaala_c" - name: "D-Alanyl-D-Alanine" - - compartment: c - - formula: C6H12N2O3 + - compartment: "c" + - formula: "C6H12N2O3" - charge: 0 - - inchis: 1S/C6H12N2O3/c1-3(7)5(9)8-4(2)6(10)11/h3-4H,7H2,1-2H3,(H,8,9)(H,10,11)/t3-,4-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C6H12N2O3/c1-3(7)5(9)8-4(2)6(10)11/h3-4H,7H2,1-2H3,(H,8,9)(H,10,11)/t3-,4-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: alaala_s + - id: "alaala_s" - name: "D-Alanyl-D-Alanine" - - compartment: s - - formula: C6H12N2O3 + - compartment: "s" + - formula: "C6H12N2O3" - charge: 0 - - inchis: 1S/C6H12N2O3/c1-3(7)5(9)8-4(2)6(10)11/h3-4H,7H2,1-2H3,(H,8,9)(H,10,11)/t3-,4-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C6H12N2O3/c1-3(7)5(9)8-4(2)6(10)11/h3-4H,7H2,1-2H3,(H,8,9)(H,10,11)/t3-,4-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: bglc_s + - id: "bglc_s" - name: "Beta-Glucans" - - compartment: s - - formula: C1200000H2200000O1100000 + - compartment: "s" + - formula: "C1200000H2200000O1100000" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glgchlo_s + - id: "glgchlo_s" - name: "Beta Glucan-Glycocholate Complex" - - compartment: s - - formula: C1200026H2200043NO1100006 + - compartment: "s" + - formula: "C1200026H2200043NO1100006" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gltcho_s + - id: "gltcho_s" - name: "Beta Glucan-Taurocholic Acid Complex" - - compartment: s - - formula: C1200026H2200045NO1100007S + - compartment: "s" + - formula: "C1200026H2200045NO1100007S" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02964s + - id: "m02964s" - name: "taurodeoxycholate" - - compartment: s - - formula: C26H44NO6S + - compartment: "s" + - formula: "C26H44NO6S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gltdechol_s + - id: "gltdechol_s" - name: "Beta Glucan-Taurodeoxycholic Acid Complex" - - compartment: s - - formula: C1200026H2200044NO1100006S + - compartment: "s" + - formula: "C1200026H2200044NO1100006S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01423s + - id: "m01423s" - name: "carnosine" - - compartment: s - - formula: C9H14N4O3 + - compartment: "s" + - formula: "C9H14N4O3" - charge: 0 - - inchis: 1S/C9H14N4O3/c10-2-1-8(14)13-7(9(15)16)3-6-4-11-5-12-6/h4-5,7H,1-3,10H2,(H,11,12)(H,13,14)(H,15,16)/t7-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C9H14N4O3/c10-2-1-8(14)13-7(9(15)16)3-6-4-11-5-12-6/h4-5,7H,1-3,10H2,(H,11,12)(H,13,14)(H,15,16)/t7-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m01423l + - id: "m01423l" - name: "carnosine" - - compartment: l - - formula: C9H14N4O3 + - compartment: "l" + - formula: "C9H14N4O3" - charge: 0 - - inchis: 1S/C9H14N4O3/c10-2-1-8(14)13-7(9(15)16)3-6-4-11-5-12-6/h4-5,7H,1-3,10H2,(H,11,12)(H,13,14)(H,15,16)/t7-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C9H14N4O3/c10-2-1-8(14)13-7(9(15)16)3-6-4-11-5-12-6/h4-5,7H,1-3,10H2,(H,11,12)(H,13,14)(H,15,16)/t7-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m01600c + - id: "m01600c" - name: "cobamide-coenzyme" - - compartment: c - - formula: C72H100CoN18O17P + - compartment: "c" + - formula: "C72H100CoN18O17P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01600s + - id: "m01600s" - name: "cobamide-coenzyme" - - compartment: s - - formula: C72H100CoN18O17P + - compartment: "s" + - formula: "C72H100CoN18O17P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glygly_c + - id: "glygly_c" - name: "Glycyl-Glycine" - - compartment: c - - formula: C4H8N2O3 + - compartment: "c" + - formula: "C4H8N2O3" - charge: 0 - - inchis: 1S/C4H8N2O3/c5-1-3(7)6-2-4(8)9/h1-2,5H2,(H,6,7)(H,8,9) - - metFrom: Recon3D + - inchis: "1S/C4H8N2O3/c5-1-3(7)6-2-4(8)9/h1-2,5H2,(H,6,7)(H,8,9)" + - metFrom: "Recon3D" - !!omap - - id: glygly_s + - id: "glygly_s" - name: "Glycyl-Glycine" - - compartment: s - - formula: C4H8N2O3 + - compartment: "s" + - formula: "C4H8N2O3" - charge: 0 - - inchis: 1S/C4H8N2O3/c5-1-3(7)6-2-4(8)9/h1-2,5H2,(H,6,7)(H,8,9) - - metFrom: Recon3D + - inchis: "1S/C4H8N2O3/c5-1-3(7)6-2-4(8)9/h1-2,5H2,(H,6,7)(H,8,9)" + - metFrom: "Recon3D" - !!omap - - id: glyphe_s + - id: "glyphe_s" - name: "Glycyl-Phenylalanine" - - compartment: s - - formula: C11H14N2O3 + - compartment: "s" + - formula: "C11H14N2O3" - charge: 0 - - inchis: 1S/C11H14N2O3/c12-7-10(14)13-9(11(15)16)6-8-4-2-1-3-5-8/h1-5,9H,6-7,12H2,(H,13,14)(H,15,16) - - metFrom: Recon3D + - inchis: "1S/C11H14N2O3/c12-7-10(14)13-9(11(15)16)6-8-4-2-1-3-5-8/h1-5,9H,6-7,12H2,(H,13,14)(H,15,16)" + - metFrom: "Recon3D" - !!omap - - id: glyphe_c + - id: "glyphe_c" - name: "Glycyl-Phenylalanine" - - compartment: c - - formula: C11H14N2O3 + - compartment: "c" + - formula: "C11H14N2O3" - charge: 0 - - inchis: 1S/C11H14N2O3/c12-7-10(14)13-9(11(15)16)6-8-4-2-1-3-5-8/h1-5,9H,6-7,12H2,(H,13,14)(H,15,16) - - metFrom: Recon3D + - inchis: "1S/C11H14N2O3/c12-7-10(14)13-9(11(15)16)6-8-4-2-1-3-5-8/h1-5,9H,6-7,12H2,(H,13,14)(H,15,16)" + - metFrom: "Recon3D" - !!omap - - id: glypro_s + - id: "glypro_s" - name: "Glycylproline" - - compartment: s - - formula: C7H12N2O3 + - compartment: "s" + - formula: "C7H12N2O3" - charge: 0 - - inchis: 1/C7H12N2O3/c8-4-6(10)9-3-1-2-5(9)7(11)12/h5H,1-4,8H2,(H,11,12)/t5-/s2 - - metFrom: Recon3D + - inchis: "1/C7H12N2O3/c8-4-6(10)9-3-1-2-5(9)7(11)12/h5H,1-4,8H2,(H,11,12)/t5-/s2" + - metFrom: "Recon3D" - !!omap - - id: glypro_c + - id: "glypro_c" - name: "Glycylproline" - - compartment: c - - formula: C7H12N2O3 + - compartment: "c" + - formula: "C7H12N2O3" - charge: 0 - - inchis: 1/C7H12N2O3/c8-4-6(10)9-3-1-2-5(9)7(11)12/h5H,1-4,8H2,(H,11,12)/t5-/s2 - - metFrom: Recon3D + - inchis: "1/C7H12N2O3/c8-4-6(10)9-3-1-2-5(9)7(11)12/h5H,1-4,8H2,(H,11,12)/t5-/s2" + - metFrom: "Recon3D" - !!omap - - id: glysar_c + - id: "glysar_c" - name: "Glycylsarcosine" - - compartment: c - - formula: C5H10N2O3 + - compartment: "c" + - formula: "C5H10N2O3" - charge: 0 - - inchis: 1S/C5H10N2O3/c1-7(3-5(9)10)4(8)2-6/h2-3,6H2,1H3,(H,9,10) - - metFrom: Recon3D + - inchis: "1S/C5H10N2O3/c1-7(3-5(9)10)4(8)2-6/h2-3,6H2,1H3,(H,9,10)" + - metFrom: "Recon3D" - !!omap - - id: glysar_s + - id: "glysar_s" - name: "Glycylsarcosine" - - compartment: s - - formula: C5H10N2O3 + - compartment: "s" + - formula: "C5H10N2O3" - charge: 0 - - inchis: 1S/C5H10N2O3/c1-7(3-5(9)10)4(8)2-6/h2-3,6H2,1H3,(H,9,10) - - metFrom: Recon3D + - inchis: "1S/C5H10N2O3/c1-7(3-5(9)10)4(8)2-6/h2-3,6H2,1H3,(H,9,10)" + - metFrom: "Recon3D" - !!omap - - id: m00745s + - id: "m00745s" - name: "3alpha,12alpha-dihydroxy-5beta-cholanate" - - compartment: s - - formula: C24H39O4 + - compartment: "s" + - formula: "C24H39O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gum_s + - id: "gum_s" - name: "Gums" - - compartment: s - - formula: C2760000H5060000O2530000 + - compartment: "s" + - formula: "C2760000H5060000O2530000" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gumdchac_s + - id: "gumdchac_s" - name: "Guar Gum-Deoxyxholic Acid Complex" - - compartment: s - - formula: C2760024H5060039O2530004 + - compartment: "s" + - formula: "C2760024H5060039O2530004" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gumgchol_s + - id: "gumgchol_s" - name: "Guar Gum-Glycocholate Complex" - - compartment: s - - formula: C2760026H5060043NO2530006 + - compartment: "s" + - formula: "C2760026H5060043NO2530006" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gumtchol_s + - id: "gumtchol_s" - name: "Guar Gum-Taurocholic Acid Complex" - - compartment: s - - formula: C2760026H5060045NO2530007S + - compartment: "s" + - formula: "C2760026H5060045NO2530007S" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01042r + - id: "m01042r" - name: "5(S)-HPETE" - - compartment: r - - formula: C20H31O4 + - compartment: "r" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: leugly_s + - id: "leugly_s" - name: "Leucyl-Glycine" - - compartment: s - - formula: C8H16N2O3 + - compartment: "s" + - formula: "C8H16N2O3" - charge: 0 - - inchis: 1S/C8H16N2O3/c1-5(2)3-6(9)8(13)10-4-7(11)12/h5-6H,3-4,9H2,1-2H3,(H,10,13)(H,11,12)/t6-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C8H16N2O3/c1-5(2)3-6(9)8(13)10-4-7(11)12/h5-6H,3-4,9H2,1-2H3,(H,10,13)(H,11,12)/t6-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: leugly_c + - id: "leugly_c" - name: "Leucyl-Glycine" - - compartment: c - - formula: C8H16N2O3 + - compartment: "c" + - formula: "C8H16N2O3" - charge: 0 - - inchis: 1S/C8H16N2O3/c1-5(2)3-6(9)8(13)10-4-7(11)12/h5-6H,3-4,9H2,1-2H3,(H,10,13)(H,11,12)/t6-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C8H16N2O3/c1-5(2)3-6(9)8(13)10-4-7(11)12/h5-6H,3-4,9H2,1-2H3,(H,10,13)(H,11,12)/t6-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: leuleu_c + - id: "leuleu_c" - name: "Leucylleucine" - - compartment: c - - formula: C12H24N2O3 + - compartment: "c" + - formula: "C12H24N2O3" - charge: 0 - - inchis: 1/C12H24N2O3/c1-7(2)5-9(13)11(15)14-10(12(16)17)6-8(3)4/h7-10H,5-6,13H2,1-4H3,(H,14,15)(H,16,17) - - metFrom: Recon3D + - inchis: "1/C12H24N2O3/c1-7(2)5-9(13)11(15)14-10(12(16)17)6-8(3)4/h7-10H,5-6,13H2,1-4H3,(H,14,15)(H,16,17)" + - metFrom: "Recon3D" - !!omap - - id: leuleu_s + - id: "leuleu_s" - name: "Leucylleucine" - - compartment: s - - formula: C12H24N2O3 + - compartment: "s" + - formula: "C12H24N2O3" - charge: 0 - - inchis: 1/C12H24N2O3/c1-7(2)5-9(13)11(15)14-10(12(16)17)6-8(3)4/h7-10H,5-6,13H2,1-4H3,(H,14,15)(H,16,17) - - metFrom: Recon3D + - inchis: "1/C12H24N2O3/c1-7(2)5-9(13)11(15)14-10(12(16)17)6-8(3)4/h7-10H,5-6,13H2,1-4H3,(H,14,15)(H,16,17)" + - metFrom: "Recon3D" - !!omap - - id: pect_s + - id: "pect_s" - name: "Pectin" - - compartment: s - - formula: C2535H3509O2535 + - compartment: "s" + - formula: "C2535H3509O2535" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pectindchac_s + - id: "pectindchac_s" - name: "Pectin-Deoxycholic Acid Complex" - - compartment: s - - formula: C2559H3549O2539 + - compartment: "s" + - formula: "C2559H3549O2539" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pectingchol_s + - id: "pectingchol_s" - name: "Pectin-Glycocholate Complex" - - compartment: s - - formula: C2561H3553NO2541 + - compartment: "s" + - formula: "C2561H3553NO2541" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pectintchol_s + - id: "pectintchol_s" - name: "Pectin-Taurocholic Acid Complex" - - compartment: s - - formula: C2561H3555NO2542S + - compartment: "s" + - formula: "C2561H3555NO2542S" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: progly_s + - id: "progly_s" - name: "L-Prolinylglycine" - - compartment: s - - formula: C7H12N2O3 + - compartment: "s" + - formula: "C7H12N2O3" - charge: 0 - - inchis: 1S/C7H12N2O3/c10-6(11)4-9-7(12)5-2-1-3-8-5/h5,8H,1-4H2,(H,9,12)(H,10,11)/t5-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C7H12N2O3/c10-6(11)4-9-7(12)5-2-1-3-8-5/h5,8H,1-4H2,(H,9,12)(H,10,11)/t5-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: progly_c + - id: "progly_c" - name: "L-Prolinylglycine" - - compartment: c - - formula: C7H12N2O3 + - compartment: "c" + - formula: "C7H12N2O3" - charge: 0 - - inchis: 1S/C7H12N2O3/c10-6(11)4-9-7(12)5-2-1-3-8-5/h5,8H,1-4H2,(H,9,12)(H,10,11)/t5-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C7H12N2O3/c10-6(11)4-9-7(12)5-2-1-3-8-5/h5,8H,1-4H2,(H,9,12)(H,10,11)/t5-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: psyl_s + - id: "psyl_s" - name: "Psyllium" - - compartment: s - - formula: C9642006H15428700O8667414 + - compartment: "s" + - formula: "C9642006H15428700O8667414" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: psylchol_s + - id: "psylchol_s" - name: "Psillium-Glycocholic Acid Complex" - - compartment: s - - formula: C9642032H15428743NO8667420 + - compartment: "s" + - formula: "C9642032H15428743NO8667420" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: psyltchol_s + - id: "psyltchol_s" - name: "Psyllium-Taurocholic Acid Complex" - - compartment: s - - formula: C9642032H15428745NO8667421S + - compartment: "s" + - formula: "C9642032H15428745NO8667421S" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: psyltdechol_s + - id: "psyltdechol_s" - name: "Psyllium-Taurodeoxycholic Acid Complex" - - compartment: s - - formula: C9642032H15428744NO8667420S + - compartment: "s" + - formula: "C9642032H15428744NO8667420S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01417n + - id: "m01417n" - name: "calcitriol" - - compartment: n - - formula: C27H44O3 + - compartment: "n" + - formula: "C27H44O3" - charge: 0 - - inchis: 1S/C27H44O3/c1-18(8-6-14-26(3,4)30)23-12-13-24-20(9-7-15-27(23,24)5)10-11-21-16-22(28)17-25(29)19(21)2/h10-11,18,22-25,28-30H,2,6-9,12-17H2,1,3-5H3/b20-10+,21-11-/t18-,22-,23-,24+,25+,27-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C27H44O3/c1-18(8-6-14-26(3,4)30)23-12-13-24-20(9-7-15-27(23,24)5)10-11-21-16-22(28)17-25(29)19(21)2/h10-11,18,22-25,28-30H,2,6-9,12-17H2,1,3-5H3/b20-10+,21-11-/t18-,22-,23-,24+,25+,27-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m00970n + - id: "m00970n" - name: "4-aminobutyrate" - - compartment: n - - formula: C4H9NO2 + - compartment: "n" + - formula: "C4H9NO2" - charge: 0 - - inchis: 1S/C4H9NO2/c5-3-1-2-4(6)7/h1-3,5H2,(H,6,7) - - metFrom: Recon3D + - inchis: "1S/C4H9NO2/c5-3-1-2-4(6)7/h1-3,5H2,(H,6,7)" + - metFrom: "Recon3D" - !!omap - - id: m02157s + - id: "m02157s" - name: "hypotaurine" - - compartment: s - - formula: C2H7NO2S + - compartment: "s" + - formula: "C2H7NO2S" - charge: 0 - - inchis: 1S/C2H7NO2S/c3-1-2-6(4)5/h1-3H2,(H,4,5) - - metFrom: Recon3D + - inchis: "1S/C2H7NO2S/c3-1-2-6(4)5/h1-3H2,(H,4,5)" + - metFrom: "Recon3D" - !!omap - - id: m01627s + - id: "m01627s" - name: "cysteamine" - - compartment: s - - formula: C2H8NS + - compartment: "s" + - formula: "C2H8NS" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m03103s + - id: "m03103s" - name: "ubiquinone" - - compartment: s - - formula: C59H90O4 + - compartment: "s" + - formula: "C59H90O4" - charge: 0 - - inchis: 1S/C59H90O4/c1-44(2)24-15-25-45(3)26-16-27-46(4)28-17-29-47(5)30-18-31-48(6)32-19-33-49(7)34-20-35-50(8)36-21-37-51(9)38-22-39-52(10)40-23-41-53(11)42-43-55-54(12)56(60)58(62-13)59(63-14)57(55)61/h24,26,28,30,32,34,36,38,40,42H,15-23,25,27,29,31,33,35,37,39,41,43H2,1-14H3/b45-26+,46-28+,47-30+,48-32+,49-34+,50-36+,51-38+,52-40+,53-42+ - - metFrom: Recon3D + - inchis: "1S/C59H90O4/c1-44(2)24-15-25-45(3)26-16-27-46(4)28-17-29-47(5)30-18-31-48(6)32-19-33-49(7)34-20-35-50(8)36-21-37-51(9)38-22-39-52(10)40-23-41-53(11)42-43-55-54(12)56(60)58(62-13)59(63-14)57(55)61/h24,26,28,30,32,34,36,38,40,42H,15-23,25,27,29,31,33,35,37,39,41,43H2,1-14H3/b45-26+,46-28+,47-30+,48-32+,49-34+,50-36+,51-38+,52-40+,53-42+" + - metFrom: "Recon3D" - !!omap - - id: m01674s + - id: "m01674s" - name: "dephospho-CoA" - - compartment: s - - formula: C21H33N7O13P2S + - compartment: "s" + - formula: "C21H33N7O13P2S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02741s + - id: "m02741s" - name: "phosphopantetheine" - - compartment: s - - formula: C11H21N2O7PS + - compartment: "s" + - formula: "C11H21N2O7PS" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: slfcys_s + - id: "slfcys_s" - name: "S-Sulfo-L-Cysteine" - - compartment: s - - formula: C3H8NO5S2 + - compartment: "s" + - formula: "C3H8NO5S2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01828s + - id: "m01828s" - name: "FMN" - - compartment: s - - formula: C17H19N4O9P + - compartment: "s" + - formula: "C17H19N4O9P" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02679s + - id: "m02679s" - name: "pantetheine" - - compartment: s - - formula: C11H22N2O4S + - compartment: "s" + - formula: "C11H22N2O4S" - charge: 0 - - inchis: 1S/C11H22N2O4S/c1-11(2,7-14)9(16)10(17)13-4-3-8(15)12-5-6-18/h9,14,16,18H,3-7H2,1-2H3,(H,12,15)(H,13,17)/t9-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C11H22N2O4S/c1-11(2,7-14)9(16)10(17)13-4-3-8(15)12-5-6-18/h9,14,16,18H,3-7H2,1-2H3,(H,12,15)(H,13,17)/t9-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m03102s + - id: "m03102s" - name: "ubiquinol" - - compartment: s - - formula: C59H92O4 + - compartment: "s" + - formula: "C59H92O4" - charge: 0 - - inchis: 1S/C59H92O4/c1-44(2)24-15-25-45(3)26-16-27-46(4)28-17-29-47(5)30-18-31-48(6)32-19-33-49(7)34-20-35-50(8)36-21-37-51(9)38-22-39-52(10)40-23-41-53(11)42-43-55-54(12)56(60)58(62-13)59(63-14)57(55)61/h24,26,28,30,32,34,36,38,40,42,60-61H,15-23,25,27,29,31,33,35,37,39,41,43H2,1-14H3/b45-26+,46-28+,47-30+,48-32+,49-34+,50-36+,51-38+,52-40+,53-42+ - - metFrom: Recon3D + - inchis: "1S/C59H92O4/c1-44(2)24-15-25-45(3)26-16-27-46(4)28-17-29-47(5)30-18-31-48(6)32-19-33-49(7)34-20-35-50(8)36-21-37-51(9)38-22-39-52(10)40-23-41-53(11)42-43-55-54(12)56(60)58(62-13)59(63-14)57(55)61/h24,26,28,30,32,34,36,38,40,42,60-61H,15-23,25,27,29,31,33,35,37,39,41,43H2,1-14H3/b45-26+,46-28+,47-30+,48-32+,49-34+,50-36+,51-38+,52-40+,53-42+" + - metFrom: "Recon3D" - !!omap - - id: m02439p + - id: "m02439p" - name: "malate" - - compartment: p - - formula: C4H4O5 + - compartment: "p" + - formula: "C4H4O5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: slfcys_c + - id: "slfcys_c" - name: "S-Sulfo-L-Cysteine" - - compartment: c - - formula: C3H8NO5S2 + - compartment: "c" + - formula: "C3H8NO5S2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01005s + - id: "m01005s" - name: "4-hydroxyphenylpyruvate" - - compartment: s - - formula: C9H7O4 + - compartment: "s" + - formula: "C9H7O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00824s + - id: "m00824s" - name: "3-methyl-2-oxobutyrate" - - compartment: s - - formula: C5H7O3 + - compartment: "s" + - formula: "C5H7O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00669s + - id: "m00669s" - name: "2-oxo-3-methylvalerate" - - compartment: s - - formula: C6H9O3 + - compartment: "s" + - formula: "C6H9O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01013s + - id: "m01013s" - name: "4-methyl-2-oxopentanoate" - - compartment: s - - formula: C6H9O3 + - compartment: "s" + - formula: "C6H9O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01116s + - id: "m01116s" - name: "5-methylthioadenosine" - - compartment: s - - formula: C11H15N5O3S + - compartment: "s" + - formula: "C11H15N5O3S" - charge: 0 - - inchis: 1S/C11H15N5O3S/c1-20-2-5-7(17)8(18)11(19-5)16-4-15-6-9(12)13-3-14-10(6)16/h3-5,7-8,11,17-18H,2H2,1H3,(H2,12,13,14)/t5-,7-,8-,11-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C11H15N5O3S/c1-20-2-5-7(17)8(18)11(19-5)16-4-15-6-9(12)13-3-14-10(6)16/h3-5,7-8,11,17-18H,2H2,1H3,(H2,12,13,14)/t5-,7-,8-,11-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m01127s + - id: "m01127s" - name: "5-oxoproline" - - compartment: s - - formula: C5H6NO3 + - compartment: "s" + - formula: "C5H6NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02871s + - id: "m02871s" - name: "SAH" - - compartment: s - - formula: C14H20N6O5S + - compartment: "s" + - formula: "C14H20N6O5S" - charge: 0 - - inchis: 1/C14H20N6O5S/c15-6(14(23)24)1-2-26-3-7-9(21)10(22)13(25-7)20-5-19-8-11(16)17-4-18-12(8)20/h4-7,9-10,13,21-22H,1-3,15H2,(H,23,24)(H2,16,17,18)/t6-,7+,9+,10+,13+/s2 - - metFrom: Recon3D + - inchis: "1/C14H20N6O5S/c15-6(14(23)24)1-2-26-3-7-9(21)10(22)13(25-7)20-5-19-8-11(16)17-4-18-12(8)20/h4-7,9-10,13,21-22H,1-3,15H2,(H,23,24)(H2,16,17,18)/t6-,7+,9+,10+,13+/s2" + - metFrom: "Recon3D" - !!omap - - id: m01304s + - id: "m01304s" - name: "AICAR" - - compartment: s - - formula: C9H13N4O8P + - compartment: "s" + - formula: "C9H13N4O8P" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01342s + - id: "m01342s" - name: "anthranilate" - - compartment: s - - formula: C7H6NO2 + - compartment: "s" + - formula: "C7H6NO2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02559s + - id: "m02559s" - name: "N-carbamoyl-L-aspartate" - - compartment: s - - formula: C5H6N2O5 + - compartment: "s" + - formula: "C5H6N2O5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02439s + - id: "m02439s" - name: "malate" - - compartment: s - - formula: C4H4O5 + - compartment: "s" + - formula: "C4H4O5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01103s + - id: "m01103s" - name: "5-hydroxyindoleacetate" - - compartment: s - - formula: C10H8NO3 + - compartment: "s" + - formula: "C10H8NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01981s + - id: "m01981s" - name: "glyceraldehyde" - - compartment: s - - formula: C3H6O3 + - compartment: "s" + - formula: "C3H6O3" - charge: 0 - - inchis: 1S/C3H6O3/c4-1-3(6)2-5/h1,3,5-6H,2H2/t3-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C3H6O3/c4-1-3(6)2-5/h1,3,5-6H,2H2/t3-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m02696s + - id: "m02696s" - name: "PEP" - - compartment: s - - formula: C3H2O6P + - compartment: "s" + - formula: "C3H2O6P" - charge: -3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02036s + - id: "m02036s" - name: "guanidinoacetate" - - compartment: s - - formula: C3H7N3O2 + - compartment: "s" + - formula: "C3H7N3O2" - charge: 0 - - inchis: 1S/C3H7N3O2/c4-3(5)6-1-2(7)8/h1H2,(H,7,8)(H4,4,5,6) - - metFrom: Recon3D + - inchis: "1S/C3H7N3O2/c4-3(5)6-1-2(7)8/h1H2,(H,7,8)(H4,4,5,6)" + - metFrom: "Recon3D" - !!omap - - id: m02319s + - id: "m02319s" - name: "kynurenine" - - compartment: s - - formula: C10H12N2O3 + - compartment: "s" + - formula: "C10H12N2O3" - charge: 0 - - inchis: 1/C10H12N2O3/c11-7-4-2-1-3-6(7)9(13)5-8(12)10(14)15/h1-4,8H,5,11-12H2,(H,14,15)/t8-/s2 - - metFrom: Recon3D + - inchis: "1/C10H12N2O3/c11-7-4-2-1-3-6(7)9(13)5-8(12)10(14)15/h1-4,8H,5,11-12H2,(H,14,15)/t8-/s2" + - metFrom: "Recon3D" - !!omap - - id: m00923s + - id: "m00923s" - name: "3-ureidopropionate" - - compartment: s - - formula: C4H7N2O3 + - compartment: "s" + - formula: "C4H7N2O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00990s + - id: "m00990s" - name: "4-hydroxy-2-quinolinecarboxylic acid" - - compartment: s - - formula: C10H6NO3 + - compartment: "s" + - formula: "C10H6NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00775s + - id: "m00775s" - name: "3-hydroxyanthranilate" - - compartment: s - - formula: C7H7NO3 + - compartment: "s" + - formula: "C7H7NO3" - charge: 0 - - inchis: 1S/C7H7NO3/c8-6-4(7(10)11)2-1-3-5(6)9/h1-3,9H,8H2,(H,10,11) - - metFrom: Recon3D + - inchis: "1S/C7H7NO3/c8-6-4(7(10)11)2-1-3-5(6)9/h1-3,9H,8H2,(H,10,11)" + - metFrom: "Recon3D" - !!omap - - id: m00788s + - id: "m00788s" - name: "3-hydroxy-L-kynurenine" - - compartment: s - - formula: C10H12N2O4 + - compartment: "s" + - formula: "C10H12N2O4" - charge: 0 - - inchis: 1/C10H12N2O4/c11-6(10(15)16)4-8(14)5-2-1-3-7(13)9(5)12/h1-3,6,13H,4,11-12H2,(H,15,16)/t6-/s2 - - metFrom: Recon3D + - inchis: "1/C10H12N2O4/c11-6(10(15)16)4-8(14)5-2-1-3-7(13)9(5)12/h1-3,6,13H,4,11-12H2,(H,15,16)/t6-/s2" + - metFrom: "Recon3D" - !!omap - - id: m02822s + - id: "m02822s" - name: "quinolinate" - - compartment: s - - formula: C7H3NO4 + - compartment: "s" + - formula: "C7H3NO4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00674s + - id: "m00674s" - name: "2-phospho-D-glycerate" - - compartment: s - - formula: C3H4O7P + - compartment: "s" + - formula: "C3H4O7P" - charge: -3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02738s + - id: "m02738s" - name: "phosphocholine" - - compartment: s - - formula: C5H13NO4P + - compartment: "s" + - formula: "C5H13NO4P" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02349s + - id: "m02349s" - name: "L-cystathionine" - - compartment: s - - formula: C7H14N2O4S + - compartment: "s" + - formula: "C7H14N2O4S" - charge: 0 - - inchis: 1S/C7H14N2O4S/c8-4(6(10)11)1-2-14-3-5(9)7(12)13/h4-5H,1-3,8-9H2,(H,10,11)(H,12,13)/t4-,5-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C7H14N2O4S/c8-4(6(10)11)1-2-14-3-5(9)7(12)13/h4-5H,1-3,8-9H2,(H,10,11)(H,12,13)/t4-,5-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m01644s + - id: "m01644s" - name: "dCMP" - - compartment: s - - formula: C9H12N3O7P + - compartment: "s" + - formula: "C9H12N3O7P" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01708s + - id: "m01708s" - name: "dimethylglycine" - - compartment: s - - formula: C4H9NO2 + - compartment: "s" + - formula: "C4H9NO2" - charge: 0 - - inchis: 1S/C4H9NO2/c1-5(2)3-4(6)7/h3H2,1-2H3,(H,6,7) - - metFrom: Recon3D + - inchis: "1S/C4H9NO2/c1-5(2)3-4(6)7/h3H2,1-2H3,(H,6,7)" + - metFrom: "Recon3D" - !!omap - - id: m01798s + - id: "m01798s" - name: "ethanolamine-phosphate" - - compartment: s - - formula: C2H7NO4P + - compartment: "s" + - formula: "C2H7NO4P" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01862s + - id: "m01862s" - name: "fumarate" - - compartment: s - - formula: C4H2O4 + - compartment: "s" + - formula: "C4H2O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02912s + - id: "m02912s" - name: "sn-glycerol-3-PC" - - compartment: s - - formula: C8H20NO6P + - compartment: "s" + - formula: "C8H20NO6P" - charge: 0 - - inchis: 1S/C8H20NO6P/c1-9(2,3)4-5-14-16(12,13)15-7-8(11)6-10/h8,10-11H,4-7H2,1-3H3/t8-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C8H20NO6P/c1-9(2,3)4-5-14-16(12,13)15-7-8(11)6-10/h8,10-11H,4-7H2,1-3H3/t8-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m02183s + - id: "m02183s" - name: "isocitrate" - - compartment: s - - formula: C6H5O7 + - compartment: "s" + - formula: "C6H5O7" - charge: -3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02322s + - id: "m02322s" - name: "L-2-aminoadipate" - - compartment: s - - formula: C6H10NO4 + - compartment: "s" + - formula: "C6H10NO4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m03148s + - id: "m03148s" - name: "xanthine" - - compartment: s - - formula: C5H4N4O2 + - compartment: "s" + - formula: "C5H4N4O2" - charge: 0 - - inchis: 1S/C5H4N4O2/c10-4-2-3(7-1-6-2)8-5(11)9-4/h1H,(H3,6,7,8,9,10,11) - - metFrom: Recon3D + - inchis: "1S/C5H4N4O2/c10-4-2-3(7-1-6-2)8-5(11)9-4/h1H,(H3,6,7,8,9,10,11)" + - metFrom: "Recon3D" - !!omap - - id: m03150s + - id: "m03150s" - name: "xanthosine-5-phosphate" - - compartment: s - - formula: C10H11N4O9P + - compartment: "s" + - formula: "C10H11N4O9P" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m03149s + - id: "m03149s" - name: "xanthosine" - - compartment: s - - formula: C10H12N4O6 + - compartment: "s" + - formula: "C10H12N4O6" - charge: 0 - - inchis: 1S/C10H12N4O6/c15-1-3-5(16)6(17)9(20-3)14-2-11-4-7(14)12-10(19)13-8(4)18/h2-3,5-6,9,15-17H,1H2,(H2,12,13,18,19)/t3-,5-,6-,9-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C10H12N4O6/c15-1-3-5(16)6(17)9(20-3)14-2-11-4-7(14)12-10(19)13-8(4)18/h2-3,5-6,9,15-17H,1H2,(H2,12,13,18,19)/t3-,5-,6-,9-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m00913s + - id: "m00913s" - name: "3-phospho-D-glycerate" - - compartment: s - - formula: C3H4O7P + - compartment: "s" + - formula: "C3H4O7P" - charge: -3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m03109s + - id: "m03109s" - name: "UDP-glucuronate" - - compartment: s - - formula: C15H19N2O18P2 + - compartment: "s" + - formula: "C15H19N2O18P2" - charge: -3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02914s + - id: "m02914s" - name: "sn-glycerol-3-phosphate" - - compartment: s - - formula: C3H7O6P + - compartment: "s" + - formula: "C3H7O6P" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02585s + - id: "m02585s" - name: "nicotinate ribonucleotide" - - compartment: s - - formula: C11H12NO9P + - compartment: "s" + - formula: "C11H12NO9P" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02660s + - id: "m02660s" - name: "orotidine-5-phosphate" - - compartment: s - - formula: C10H10N2O11P + - compartment: "s" + - formula: "C10H10N2O11P" - charge: -3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02133s + - id: "m02133s" - name: "homocysteine" - - compartment: s - - formula: C4H9NO2S + - compartment: "s" + - formula: "C4H9NO2S" - charge: 0 - - inchis: 1S/C4H9NO2S/c5-3(1-2-8)4(6)7/h3,8H,1-2,5H2,(H,6,7)/t3-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C4H9NO2S/c5-3(1-2-8)4(6)7/h3,8H,1-2,5H2,(H,6,7)/t3-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m02832s + - id: "m02832s" - name: "retinal" - - compartment: s - - formula: C20H28O + - compartment: "s" + - formula: "C20H28O" - charge: 0 - - inchis: 1S/C20H28O/c1-16(8-6-9-17(2)13-15-21)11-12-19-18(3)10-7-14-20(19,4)5/h6,8-9,11-13,15H,7,10,14H2,1-5H3 - - metFrom: Recon3D + - inchis: "1S/C20H28O/c1-16(8-6-9-17(2)13-15-21)11-12-19-18(3)10-7-14-20(19,4)5/h6,8-9,11-13,15H,7,10,14H2,1-5H3" + - metFrom: "Recon3D" - !!omap - - id: m01366s + - id: "m01366s" - name: "argininosuccinate" - - compartment: s - - formula: C10H17N4O6 + - compartment: "s" + - formula: "C10H17N4O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02634s + - id: "m02634s" - name: "O-acetylcarnitine" - - compartment: s - - formula: C9H17NO4 + - compartment: "s" + - formula: "C9H17NO4" - charge: 0 - - inchis: 1S/C9H17NO4/c1-7(11)14-8(5-9(12)13)6-10(2,3)4/h8H,5-6H2,1-4H3/t8-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C9H17NO4/c1-7(11)14-8(5-9(12)13)6-10(2,3)4/h8H,5-6H2,1-4H3/t8-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m02657s + - id: "m02657s" - name: "O-propanoylcarnitine" - - compartment: s - - formula: C10H19NO4 + - compartment: "s" + - formula: "C10H19NO4" - charge: 0 - - inchis: 1/C10H19NO4/c1-5-10(14)15-8(6-9(12)13)7-11(2,3)4/h8H,5-7H2,1-4H3 - - metFrom: Recon3D + - inchis: "1/C10H19NO4/c1-5-10(14)15-8(6-9(12)13)7-11(2,3)4/h8H,5-7H2,1-4H3" + - metFrom: "Recon3D" - !!omap - - id: m00105s + - id: "m00105s" - name: "(6Z,9Z)-octadecadienoylcarnitine" - - compartment: s - - formula: C25H45NO4 + - compartment: "s" + - formula: "C25H45NO4" - charge: 0 - - inchis: 1/C25H45NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-25(29)30-23(21-24(27)28)22-26(2,3)4/h9-10,12-13,23H,5-8,11,14-22H2,1-4H3/b10-9+,13-12+ - - metFrom: Recon3D + - inchis: "1/C25H45NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-25(29)30-23(21-24(27)28)22-26(2,3)4/h9-10,12-13,23H,5-8,11,14-22H2,1-4H3/b10-9+,13-12+" + - metFrom: "Recon3D" - !!omap - - id: m02639s + - id: "m02639s" - name: "octadecenoylcarnitine(5)" - - compartment: s - - formula: C25H47NO4 + - compartment: "s" + - formula: "C25H47NO4" - charge: 0 - - inchis: 1S/C25H47NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-25(29)30-23(21-24(27)28)22-26(2,3)4/h12-13,23H,5-11,14-22H2,1-4H3/t23-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C25H47NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-25(29)30-23(21-24(27)28)22-26(2,3)4/h12-13,23H,5-11,14-22H2,1-4H3/t23-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m02940s + - id: "m02940s" - name: "stearoylcarnitine" - - compartment: s - - formula: C25H49NO4 + - compartment: "s" + - formula: "C25H49NO4" - charge: 0 - - inchis: 1/C25H49NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-25(29)30-23(21-24(27)28)22-26(2,3)4/h23H,5-22H2,1-4H3 - - metFrom: Recon3D + - inchis: "1/C25H49NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-25(29)30-23(21-24(27)28)22-26(2,3)4/h23H,5-22H2,1-4H3" + - metFrom: "Recon3D" - !!omap - - id: m02411s + - id: "m02411s" - name: "L-palmitoylcarnitine" - - compartment: s - - formula: C23H45NO4 + - compartment: "s" + - formula: "C23H45NO4" - charge: 0 - - inchis: 1S/C23H45NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-23(27)28-21(19-22(25)26)20-24(2,3)4/h21H,5-20H2,1-4H3/t21-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C23H45NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-23(27)28-21(19-22(25)26)20-24(2,3)4/h21H,5-20H2,1-4H3/t21-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m02676s + - id: "m02676s" - name: "palmitoleoyl-carnitine" - - compartment: s - - formula: C23H43NO4 + - compartment: "s" + - formula: "C23H43NO4" - charge: 0 - - inchis: 1S/C23H43NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-23(27)28-21(19-22(25)26)20-24(2,3)4/h10-11,21H,5-9,12-20H2,1-4H3/b11-10-/t21-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C23H43NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-23(27)28-21(19-22(25)26)20-24(2,3)4/h10-11,21H,5-9,12-20H2,1-4H3/b11-10-/t21-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m01620s + - id: "m01620s" - name: "creatine-phosphate" - - compartment: s - - formula: C4H8N3O5P + - compartment: "s" + - formula: "C4H8N3O5P" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01580s + - id: "m01580s" - name: "cis-aconitate" - - compartment: s - - formula: C6H3O6 + - compartment: "s" + - formula: "C6H3O6" - charge: -3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01372s + - id: "m01372s" - name: "azelaic acid" - - compartment: s - - formula: C9H14O4 + - compartment: "s" + - formula: "C9H14O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02123s + - id: "m02123s" - name: "hippurate" - - compartment: s - - formula: C9H8NO3 + - compartment: "s" + - formula: "C9H8NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: alpa_hs_p + - id: "alpa_hs_p" - name: "Lysophosphatidic Acid" - - compartment: p - - formula: C3H6O5PRCO2 + - compartment: "p" + - formula: "C3H6O5PRCO2" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 15kprostgf2_c + - id: "15kprostgf2_c" - name: "15-Keto-Prostaglandin F2A" - - compartment: c - - formula: C20H31O5 + - compartment: "c" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: adpoh_c + - id: "adpoh_c" - name: "2-Hydroxyadipic Acid" - - compartment: c - - formula: C6H8O5 + - compartment: "c" + - formula: "C6H8O5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: phlac_c + - id: "phlac_c" - name: "Phenyllactate" - - compartment: c - - formula: C9H9O3 + - compartment: "c" + - formula: "C9H9O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: and19one_c + - id: "and19one_c" - name: "19-Hydroxyandrost-4-Ene-3,17-Dione" - - compartment: c - - formula: C19H26O3 + - compartment: "c" + - formula: "C19H26O3" - charge: 0 - - inchis: 1/C19H26O3/c1-18-8-7-16-14(15(18)4-5-17(18)22)3-2-12-10-13(21)6-9-19(12,16)11-20/h10,14-16,20H,2-9,11H2,1H3/t14?,15?,16?,18-,19+/s2 - - metFrom: Recon3D + - inchis: "1/C19H26O3/c1-18-8-7-16-14(15(18)4-5-17(18)22)3-2-12-10-13(21)6-9-19(12,16)11-20/h10,14-16,20H,2-9,11H2,1H3/t14?,15?,16?,18-,19+/s2" + - metFrom: "Recon3D" - !!omap - - id: ttdceacoa_c + - id: "ttdceacoa_c" - name: "Tetradecenoyl Coenzyme A (N-C14:1)" - - compartment: c - - formula: C35H56N7O17P3S + - compartment: "c" + - formula: "C35H56N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 21hprgnlone_c + - id: "21hprgnlone_c" - name: "21-Hydroxypregnenolone" - - compartment: c - - formula: C21H32O3 + - compartment: "c" + - formula: "C21H32O3" - charge: 0 - - inchis: 1/C21H32O3/c1-20-9-7-14(23)11-13(20)3-4-15-16-5-6-18(19(24)12-22)21(16,2)10-8-17(15)20/h3,14-18,22-23H,4-12H2,1-2H3/t14-,15?,16?,17?,18+,20-,21-/s2 - - metFrom: Recon3D + - inchis: "1/C21H32O3/c1-20-9-7-14(23)11-13(20)3-4-15-16-5-6-18(19(24)12-22)21(16,2)10-8-17(15)20/h3,14-18,22-23H,4-12H2,1-2H3/t14-,15?,16?,17?,18+,20-,21-/s2" + - metFrom: "Recon3D" - !!omap - - id: 3mhis_c + - id: "3mhis_c" - name: "3-Methylhistidine" - - compartment: c - - formula: C7H11N3O2 + - compartment: "c" + - formula: "C7H11N3O2" - charge: 0 - - inchis: 1S/C7H11N3O2/c1-10-4-9-3-5(10)2-6(8)7(11)12/h3-4,6H,2,8H2,1H3,(H,11,12)/t6-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C7H11N3O2/c1-10-4-9-3-5(10)2-6(8)7(11)12/h3-4,6H,2,8H2,1H3,(H,11,12)/t6-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: hmcr_c + - id: "hmcr_c" - name: "Homocitrulline" - - compartment: c - - formula: C7H15N3O3 + - compartment: "c" + - formula: "C7H15N3O3" - charge: 0 - - inchis: 1S/C7H15N3O3/c8-5(6(11)12)3-1-2-4-10-7(9)13/h5H,1-4,8H2,(H,11,12)(H3,9,10,13)/t5-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C7H15N3O3/c8-5(6(11)12)3-1-2-4-10-7(9)13/h5H,1-4,8H2,(H,11,12)(H3,9,10,13)/t5-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: phacgly_c + - id: "phacgly_c" - name: "Phenylacetylglycine_phacgly" - - compartment: c - - formula: C10H10NO3 + - compartment: "c" + - formula: "C10H10NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholmyr_hs_s + - id: "pcholmyr_hs_s" - name: "1-Myristoylglycerophosphocholine" - - compartment: s - - formula: C22H47NO7P + - compartment: "s" + - formula: "C22H47NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholole_hs_s + - id: "pcholole_hs_s" - name: "1-Oleoylglycerophosphocholine (Delta 9)" - - compartment: s - - formula: C26H53NO7P + - compartment: "s" + - formula: "C26H53NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: peole_hs_s + - id: "peole_hs_s" - name: "1-Oleoylglycerophosphoethanolamine (Delta 9)" - - compartment: s - - formula: C23H46NO7P + - compartment: "s" + - formula: "C23H46NO7P" - charge: 0 - - inchis: 1/C23H46NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-23(26)29-20-22(25)21-31-32(27,28)30-19-18-24/h9-10,22,25H,2-8,11-21,24H2,1H3,(H,27,28)/b10-9+ - - metFrom: Recon3D + - inchis: "1/C23H46NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-23(26)29-20-22(25)21-31-32(27,28)30-19-18-24/h9-10,22,25H,2-8,11-21,24H2,1H3,(H,27,28)/b10-9+" + - metFrom: "Recon3D" - !!omap - - id: pcholpalme_hs_s + - id: "pcholpalme_hs_s" - name: "1-Palmitoleoylglycerophosphocholine (Delta 9)" - - compartment: s - - formula: C24H49NO7P + - compartment: "s" + - formula: "C24H49NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholpalm_hs_s + - id: "pcholpalm_hs_s" - name: "1-Palmitoylglycerophosphocholine" - - compartment: s - - formula: C24H51NO7P + - compartment: "s" + - formula: "C24H51NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pepalm_hs_s + - id: "pepalm_hs_s" - name: "1-Palmitoylglycerophosphoethanolamine" - - compartment: s - - formula: C21H44NO7P + - compartment: "s" + - formula: "C21H44NO7P" - charge: 0 - - inchis: 1/C21H44NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-21(24)27-18-20(23)19-29-30(25,26)28-17-16-22/h20,23H,2-19,22H2,1H3,(H,25,26) - - metFrom: Recon3D + - inchis: "1/C21H44NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-21(24)27-18-20(23)19-29-30(25,26)28-17-16-22/h20,23H,2-19,22H2,1H3,(H,25,26)" + - metFrom: "Recon3D" - !!omap - - id: m02750s + - id: "m02750s" - name: "PI pool" - - compartment: s - - formula: C11H16O13PR2 + - compartment: "s" + - formula: "C11H16O13PR2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pailpalm_hs_s + - id: "pailpalm_hs_s" - name: "1-Palmitoylglycerophosphoinositol" - - compartment: s - - formula: C25H48O12P + - compartment: "s" + - formula: "C25H48O12P" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholste_hs_s + - id: "pcholste_hs_s" - name: "1-Stearoylglycerophosphocholine" - - compartment: s - - formula: C26H55NO7P + - compartment: "s" + - formula: "C26H55NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: peste_hs_s + - id: "peste_hs_s" - name: "1-Stearoylglycerophosphoethanolamine" - - compartment: s - - formula: C23H48NO7P + - compartment: "s" + - formula: "C23H48NO7P" - charge: 0 - - inchis: 1/C23H48NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-23(26)29-20-22(25)21-31-32(27,28)30-19-18-24/h22,25H,2-21,24H2,1H3,(H,27,28)/t22-/s2 - - metFrom: Recon3D + - inchis: "1/C23H48NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-23(26)29-20-22(25)21-31-32(27,28)30-19-18-24/h22,25H,2-21,24H2,1H3,(H,27,28)/t22-/s2" + - metFrom: "Recon3D" - !!omap - - id: pailste_hs_s + - id: "pailste_hs_s" - name: "1-Stearoylglycerophosphoinositol" - - compartment: s - - formula: C27H52O12P + - compartment: "s" + - formula: "C27H52O12P" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pchol2linl_hs_s + - id: "pchol2linl_hs_s" - name: "2-Linoleoylglycerophosphocholine" - - compartment: s - - formula: C26H51NO7P + - compartment: "s" + - formula: "C26H51NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pe2linl_hs_s + - id: "pe2linl_hs_s" - name: "2-Linoleoylglycerophosphoethanolamine" - - compartment: s - - formula: C23H44NO7P + - compartment: "s" + - formula: "C23H44NO7P" - charge: 0 - - inchis: 1/C23H44NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-23(26)31-22(20-25)21-30-32(27,28)29-19-18-24/h6-7,9-10,22,25H,2-5,8,11-21,24H2,1H3,(H,27,28)/b7-6-,10-9-/t22-/s2 - - metFrom: Recon3D + - inchis: "1/C23H44NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-23(26)31-22(20-25)21-30-32(27,28)29-19-18-24/h6-7,9-10,22,25H,2-5,8,11-21,24H2,1H3,(H,27,28)/b7-6-,10-9-/t22-/s2" + - metFrom: "Recon3D" - !!omap - - id: pchol2ole_hs_s + - id: "pchol2ole_hs_s" - name: "2-Oleoylglycerophosphocholine" - - compartment: s - - formula: C26H53NO7P + - compartment: "s" + - formula: "C26H53NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pchol2palm_hs_s + - id: "pchol2palm_hs_s" - name: "2-Palmitoylglycerophosphocholine" - - compartment: s - - formula: C24H51NO7P + - compartment: "s" + - formula: "C24H51NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pchol2ste_hs_s + - id: "pchol2ste_hs_s" - name: "2-Stearoylglycerophosphocholine" - - compartment: s - - formula: C26H55NO7P + - compartment: "s" + - formula: "C26H55NO7P" - charge: 0 - - inchis: 1/C26H55NO7P/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-26(29)32-23-25(28)24-34-35(30,31)33-22-21-27(2,3)4/h25,28H,5-24H2,1-4H3,(H,30,31) - - metFrom: Recon3D + - inchis: "1/C26H55NO7P/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-26(29)32-23-25(28)24-34-35(30,31)33-22-21-27(2,3)4/h25,28H,5-24H2,1-4H3,(H,30,31)" + - metFrom: "Recon3D" - !!omap - - id: xolest183_hs_s + - id: "xolest183_hs_s" - name: "1-Gamma-Linolenoyl-Cholesterol, Cholesterol-Ester (18:3, Delta 6, 9, 12)" - - compartment: s - - formula: C45H74O2 + - compartment: "s" + - formula: "C45H74O2" - charge: 0 - - inchis: 1S/C45H74O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-25-43(46)47-38-30-32-44(5)37(34-38)26-27-39-41-29-28-40(36(4)24-22-23-35(2)3)45(41,6)33-31-42(39)44/h11-12,14-15,17-18,26,35-36,38-42H,7-10,13,16,19-25,27-34H2,1-6H3/b12-11-,15-14-,18-17-/t36-,38+,39?,40?,41?,42?,44+,45-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C45H74O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-25-43(46)47-38-30-32-44(5)37(34-38)26-27-39-41-29-28-40(36(4)24-22-23-35(2)3)45(41,6)33-31-42(39)44/h11-12,14-15,17-18,26,35-36,38-42H,7-10,13,16,19-25,27-34H2,1-6H3/b12-11-,15-14-,18-17-/t36-,38+,39?,40?,41?,42?,44+,45-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: xolest181_hs_s + - id: "xolest181_hs_s" - name: "1-Vaccenoyl-Cholesterol, Cholesterol-Ester (18:1, Delta 11)" - - compartment: s - - formula: C45H78O2 + - compartment: "s" + - formula: "C45H78O2" - charge: 0 - - inchis: 1/C45H78O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-25-43(46)47-38-30-32-44(5)37(34-38)26-27-39-41-29-28-40(36(4)24-22-23-35(2)3)45(41,6)33-31-42(39)44/h12-13,26,35-36,38-42H,7-11,14-25,27-34H2,1-6H3/b13-12+/t36-,38+,39+,40-,41+,42+,44+,45-/s2 - - metFrom: Recon3D + - inchis: "1/C45H78O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-25-43(46)47-38-30-32-44(5)37(34-38)26-27-39-41-29-28-40(36(4)24-22-23-35(2)3)45(41,6)33-31-42(39)44/h12-13,26,35-36,38-42H,7-11,14-25,27-34H2,1-6H3/b13-12+/t36-,38+,39+,40-,41+,42+,44+,45-/s2" + - metFrom: "Recon3D" - !!omap - - id: xolest205_hs_s + - id: "xolest205_hs_s" - name: "1-Timnodnoyl-Cholesterol, Cholesterol-Ester (20:5, Delta 5,8,11,14,17)" - - compartment: s - - formula: C47H74O2 + - compartment: "s" + - formula: "C47H74O2" - charge: 0 - - inchis: 1/C47H74O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-22-23-27-45(48)49-40-32-34-46(5)39(36-40)28-29-41-43-31-30-42(38(4)26-24-25-37(2)3)47(43,6)35-33-44(41)46/h8-9,11-12,14-15,17-18,20-21,28,37-38,40-44H,7,10,13,16,19,22-27,29-36H2,1-6H3/b9-8-,12-11-,15-14-,18-17-,21-20-/t38-,40+,41+,42-,43+,44+,46+,47-/s2 - - metFrom: Recon3D + - inchis: "1/C47H74O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-22-23-27-45(48)49-40-32-34-46(5)39(36-40)28-29-41-43-31-30-42(38(4)26-24-25-37(2)3)47(43,6)35-33-44(41)46/h8-9,11-12,14-15,17-18,20-21,28,37-38,40-44H,7,10,13,16,19,22-27,29-36H2,1-6H3/b9-8-,12-11-,15-14-,18-17-,21-20-/t38-,40+,41+,42-,43+,44+,46+,47-/s2" + - metFrom: "Recon3D" - !!omap - - id: xolest204_hs_s + - id: "xolest204_hs_s" - name: "Cholesteryl Arachidonate, Cholesterol-Ester (20:4, Delta 5,8,11,14)" - - compartment: s - - formula: C47H76O2 + - compartment: "s" + - formula: "C47H76O2" - charge: 0 - - inchis: 1S/C47H76O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-22-23-27-45(48)49-40-32-34-46(5)39(36-40)28-29-41-43-31-30-42(38(4)26-24-25-37(2)3)47(43,6)35-33-44(41)46/h11-12,14-15,17-18,20-21,28,37-38,40-44H,7-10,13,16,19,22-27,29-36H2,1-6H3/b12-11-,15-14-,18-17-,21-20-/t38-,40+,41+,42-,43+,44+,46+,47-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C47H76O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-22-23-27-45(48)49-40-32-34-46(5)39(36-40)28-29-41-43-31-30-42(38(4)26-24-25-37(2)3)47(43,6)35-33-44(41)46/h11-12,14-15,17-18,20-21,28,37-38,40-44H,7-10,13,16,19,22-27,29-36H2,1-6H3/b12-11-,15-14-,18-17-,21-20-/t38-,40+,41+,42-,43+,44+,46+,47-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: xolest226_hs_s + - id: "xolest226_hs_s" - name: "Cholesteryl Docosahexanoate, Cholesterol-Ester (22:6, Delta 4,7,10,13,16,19)" - - compartment: s - - formula: C49H76O2 + - compartment: "s" + - formula: "C49H76O2" - charge: 0 - - inchis: 1S/C49H76O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-22-23-24-25-29-47(50)51-42-34-36-48(5)41(38-42)30-31-43-45-33-32-44(40(4)28-26-27-39(2)3)49(45,6)37-35-46(43)48/h8-9,11-12,14-15,17-18,20-21,23-24,30,39-40,42-46H,7,10,13,16,19,22,25-29,31-38H2,1-6H3/b9-8+,12-11+,15-14+,18-17+,21-20+,24-23-/t40-,42+,43+,44-,45+,46+,48+,49-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C49H76O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-22-23-24-25-29-47(50)51-42-34-36-48(5)41(38-42)30-31-43-45-33-32-44(40(4)28-26-27-39(2)3)49(45,6)37-35-46(43)48/h8-9,11-12,14-15,17-18,20-21,23-24,30,39-40,42-46H,7,10,13,16,19,22,25-29,31-38H2,1-6H3/b9-8+,12-11+,15-14+,18-17+,21-20+,24-23-/t40-,42+,43+,44-,45+,46+,48+,49-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: pcholn15_hs_s + - id: "pcholn15_hs_s" - name: "1-Pentadecanoylglycerophosphocholine, Sn1-Lpc (15:0)" - - compartment: s - - formula: C23H49NO7P + - compartment: "s" + - formula: "C23H49NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholar_hs_s + - id: "pcholar_hs_s" - name: "1-Arachidonoyl-Glycero-3-Phosphocholine" - - compartment: s - - formula: C28H51NO7P + - compartment: "s" + - formula: "C28H51NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholn183_hs_s + - id: "pcholn183_hs_s" - name: "1-Octadeca-Trienoylglycerophosphocholine, Sn1-Lpc (18:3, Delta 9, 12, 15)" - - compartment: s - - formula: C26H49NO7P + - compartment: "s" + - formula: "C26H49NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholn1836_hs_s + - id: "pcholn1836_hs_s" - name: "1-Octadeca-Trienoylglycerophosphocholine, Sn1-Lpc (18:3, Delta 6, 9, 12)" - - compartment: s - - formula: C26H49NO7P + - compartment: "s" + - formula: "C26H49NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholn19_hs_s + - id: "pcholn19_hs_s" - name: "1-Nonadecanoylglycerophosphocholine, Sn1-Lpc (19:0)" - - compartment: s - - formula: C27H57NO7P + - compartment: "s" + - formula: "C27H57NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholn201_hs_s + - id: "pcholn201_hs_s" - name: "1-Eicosenoylglycerophosphocholine (Delta 11) ,Sn1-Lpc (20:1)" - - compartment: s - - formula: C28H57NO7P + - compartment: "s" + - formula: "C28H57NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholn204_hs_s + - id: "pcholn204_hs_s" - name: "1-Eicosatetraenoylglycerophosphocholine (Delta 8, 11, 14, 17), Sn1-Lpc (20:4)" - - compartment: s - - formula: C28H51NO7P + - compartment: "s" + - formula: "C28H51NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholn205_hs_s + - id: "pcholn205_hs_s" - name: "1-Eicosapentenoylglycerophosphocholine (Delta 5, 8, 11, 14, 17), Sn1-Lpc (20:5)" - - compartment: s - - formula: C28H49NO7P + - compartment: "s" + - formula: "C28H49NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholn224_hs_s + - id: "pcholn224_hs_s" - name: "1-Docosatetraenoylglycerophosphocholine (Delta 7, 10, 13, 16), Sn1-Lpc (22:4)" - - compartment: s - - formula: C30H55NO7P + - compartment: "s" + - formula: "C30H55NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholn225_hs_s + - id: "pcholn225_hs_s" - name: "1-Docosapentenoylglycerophosphocholine (Delta 7, 10, 13, 16, 19), Sn1-Lpc (22:5)-W3" - - compartment: s - - formula: C30H53NO7P + - compartment: "s" + - formula: "C30H53NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholn2254_hs_s + - id: "pcholn2254_hs_s" - name: "1-Docosapentenoylglycerophosphocholine (Delta 4, 7, 10, 13, 16), Sn1-Lpc (22:5)-W6" - - compartment: s - - formula: C30H53NO7P + - compartment: "s" + - formula: "C30H53NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholn226_hs_s + - id: "pcholn226_hs_s" - name: "1-Docosahexenoylglycerophosphocholine (Delta 4, 7, 10, 13, 16, 19), Sn1-Lpc (22:6)" - - compartment: s - - formula: C30H51NO7P + - compartment: "s" + - formula: "C30H51NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pear_hs_s + - id: "pear_hs_s" - name: "1-Arachidonoyl-Sn-Glycero-3-Phosphoethanolamine" - - compartment: s - - formula: C25H44NO7P + - compartment: "s" + - formula: "C25H44NO7P" - charge: 0 - - inchis: 1/C25H44NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-25(28)31-22-24(27)23-33-34(29,30)32-21-20-26/h6-7,9-10,12-13,15-16,24,27H,2-5,8,11,14,17-23,26H2,1H3,(H,29,30)/b7-6-,10-9-,13-12-,16-15- - - metFrom: Recon3D + - inchis: "1/C25H44NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-25(28)31-22-24(27)23-33-34(29,30)32-21-20-26/h6-7,9-10,12-13,15-16,24,27H,2-5,8,11,14,17-23,26H2,1H3,(H,29,30)/b7-6-,10-9-,13-12-,16-15-" + - metFrom: "Recon3D" - !!omap - - id: pe203_hs_s + - id: "pe203_hs_s" - name: "1-Eicosatrienoylglycerophosphoethanolamine (Delta 11, 14, 17), Lpe (20:3)" - - compartment: s - - formula: C25H46NO7P + - compartment: "s" + - formula: "C25H46NO7P" - charge: 0 - - inchis: 1/C25H46NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-25(28)31-22-24(27)23-33-34(29,30)32-21-20-26/h3-4,6-7,9-10,24,27H,2,5,8,11-23,26H2,1H3,(H,29,30)/b4-3+,7-6+,10-9+/t24-/s2 - - metFrom: Recon3D + - inchis: "1/C25H46NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-25(28)31-22-24(27)23-33-34(29,30)32-21-20-26/h3-4,6-7,9-10,24,27H,2,5,8,11-23,26H2,1H3,(H,29,30)/b4-3+,7-6+,10-9+/t24-/s2" + - metFrom: "Recon3D" - !!omap - - id: pe226_hs_s + - id: "pe226_hs_s" - name: "1-Docosahexenoylglyceroethanolamine (Delta 4, 7, 10, 13, 16, 19), Lpe (22:6)" - - compartment: s - - formula: C27H46NO7P + - compartment: "s" + - formula: "C27H46NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pe224_hs_s + - id: "pe224_hs_s" - name: "1-Docosatetraenoyglycerophosphoethanolamine (22:4, Delta 7, 10, 13, 16)" - - compartment: s - - formula: C27H48NO7P + - compartment: "s" + - formula: "C27H48NO7P" - charge: 0 - - inchis: 1/C27H48NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-27(30)33-24-26(29)25-35-36(31,32)34-23-22-28/h6-7,9-10,12-13,15-16,26,29H,2-5,8,11,14,17-25,28H2,1H3,(H,31,32)/b7-6+,10-9+,13-12+,16-15+/t26-/s2 - - metFrom: Recon3D + - inchis: "1/C27H48NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-27(30)33-24-26(29)25-35-36(31,32)34-23-22-28/h6-7,9-10,12-13,15-16,26,29H,2-5,8,11,14,17-25,28H2,1H3,(H,31,32)/b7-6+,10-9+,13-12+,16-15+/t26-/s2" + - metFrom: "Recon3D" - !!omap - - id: pedh203_hs_s + - id: "pedh203_hs_s" - name: "1-Dihomo-Linolenoylglycerophosphoethanolamine (20:3, Delta 8, 11, 14)" - - compartment: s - - formula: C25H46NO7P + - compartment: "s" + - formula: "C25H46NO7P" - charge: 0 - - inchis: 1/C25H46NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-25(28)31-22-24(27)23-33-34(29,30)32-21-20-26/h6-7,9-10,12-13,24,27H,2-5,8,11,14-23,26H2,1H3,(H,29,30)/b7-6-,10-9-,13-12- - - metFrom: Recon3D + - inchis: "1/C25H46NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-25(28)31-22-24(27)23-33-34(29,30)32-21-20-26/h6-7,9-10,12-13,24,27H,2-5,8,11,14-23,26H2,1H3,(H,29,30)/b7-6-,10-9-,13-12-" + - metFrom: "Recon3D" - !!omap - - id: pe12_hs_s + - id: "pe12_hs_s" - name: "1-Didecanoylglycerophosphoethanolamine (C12:0 Pe)" - - compartment: s - - formula: C17H36NO7P + - compartment: "s" + - formula: "C17H36NO7P" - charge: 0 - - inchis: 1/C17H36NO7P/c1-2-3-4-5-6-7-8-9-10-11-17(20)23-14-16(19)15-25-26(21,22)24-13-12-18/h16,19H,2-15,18H2,1H3,(H,21,22) - - metFrom: Recon3D + - inchis: "1/C17H36NO7P/c1-2-3-4-5-6-7-8-9-10-11-17(20)23-14-16(19)15-25-26(21,22)24-13-12-18/h16,19H,2-15,18H2,1H3,(H,21,22)" + - metFrom: "Recon3D" - !!omap - - id: pe14_hs_s + - id: "pe14_hs_s" - name: "1-Myristoylglycerophosphoethanolamine (C14:0 Pe)" - - compartment: s - - formula: C19H40NO7P + - compartment: "s" + - formula: "C19H40NO7P" - charge: 0 - - inchis: 1/C19H40NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-19(22)25-16-18(21)17-27-28(23,24)26-15-14-20/h18,21H,2-17,20H2,1H3,(H,23,24) - - metFrom: Recon3D + - inchis: "1/C19H40NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-19(22)25-16-18(21)17-27-28(23,24)26-15-14-20/h18,21H,2-17,20H2,1H3,(H,23,24)" + - metFrom: "Recon3D" - !!omap - - id: pe161_hs_s + - id: "pe161_hs_s" - name: "1-Hexadecenoylglycerophosphoethanolamine (C16:1 Pe, Delta 9)" - - compartment: s - - formula: C21H42NO7P + - compartment: "s" + - formula: "C21H42NO7P" - charge: 0 - - inchis: 1/C21H42NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-21(24)27-18-20(23)19-29-30(25,26)28-17-16-22/h7-8,20,23H,2-6,9-19,22H2,1H3,(H,25,26)/b8-7+ - - metFrom: Recon3D + - inchis: "1/C21H42NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-21(24)27-18-20(23)19-29-30(25,26)28-17-16-22/h7-8,20,23H,2-6,9-19,22H2,1H3,(H,25,26)/b8-7+" + - metFrom: "Recon3D" - !!omap - - id: pe13_hs_s + - id: "pe13_hs_s" - name: "1-Tridecanoylglycerophosphoethanolamine (C13:0 Pe)" - - compartment: s - - formula: C18H38NO7P + - compartment: "s" + - formula: "C18H38NO7P" - charge: 0 - - inchis: 1/C18H38NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-18(21)24-15-17(20)16-26-27(22,23)25-14-13-19/h17,20H,2-16,19H2,1H3,(H,22,23) - - metFrom: Recon3D + - inchis: "1/C18H38NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-18(21)24-15-17(20)16-26-27(22,23)25-14-13-19/h17,20H,2-16,19H2,1H3,(H,22,23)" + - metFrom: "Recon3D" - !!omap - - id: pe15_hs_s + - id: "pe15_hs_s" - name: "1-Pentadecanoylglycerophosphoethanolamine (C15:0 Pe)" - - compartment: s - - formula: C20H42NO7P + - compartment: "s" + - formula: "C20H42NO7P" - charge: 0 - - inchis: 1/C20H42NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-20(23)28-19(17-22)18-27-29(24,25)26-16-15-21/h19,22H,2-18,21H2,1H3,(H,24,25)/t19-/s2 - - metFrom: Recon3D + - inchis: "1/C20H42NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-20(23)28-19(17-22)18-27-29(24,25)26-16-15-21/h19,22H,2-18,21H2,1H3,(H,24,25)/t19-/s2" + - metFrom: "Recon3D" - !!omap - - id: pe17_hs_s + - id: "pe17_hs_s" - name: "1-Heptadecanoylglycerophosphoethanolamine (C17:0 Pe)" - - compartment: s - - formula: C22H46NO7P + - compartment: "s" + - formula: "C22H46NO7P" - charge: 0 - - inchis: 1/C22H46NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-22(25)28-19-21(24)20-30-31(26,27)29-18-17-23/h21,24H,2-20,23H2,1H3,(H,26,27) - - metFrom: Recon3D + - inchis: "1/C22H46NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-22(25)28-19-21(24)20-30-31(26,27)29-18-17-23/h21,24H,2-20,23H2,1H3,(H,26,27)" + - metFrom: "Recon3D" - !!omap - - id: pcholn203_hs_s + - id: "pcholn203_hs_s" - name: "1-Dihomo-Linolenoylglycerophosphocholine (20:3, Delta 8, 11, 14), Lysopc A C20:3" - - compartment: s - - formula: C28H53NO7P + - compartment: "s" + - formula: "C28H53NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pailar_hs_s + - id: "pailar_hs_s" - name: "1-Arachidonoylglycerophosphoinositol" - - compartment: s - - formula: C29H48O12P + - compartment: "s" + - formula: "C29H48O12P" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholn24_hs_s + - id: "pcholn24_hs_s" - name: "1-Lignocericylglycerophosphocholine (24:0), Lysopc A C24" - - compartment: s - - formula: C32H67NO7P + - compartment: "s" + - formula: "C32H67NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholn261_hs_s + - id: "pcholn261_hs_s" - name: "Lysopc A C26:1 (Delta 5)" - - compartment: s - - formula: C34H69NO7P + - compartment: "s" + - formula: "C34H69NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholn281_hs_s + - id: "pcholn281_hs_s" - name: "Lysopc A C28:1 (Delta 5)" - - compartment: s - - formula: C36H73NO7P + - compartment: "s" + - formula: "C36H73NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholn28_hs_s + - id: "pcholn28_hs_s" - name: "Lysopc A C28:0" - - compartment: s - - formula: C36H75NO7P + - compartment: "s" + - formula: "C36H75NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholdoc_hs_s + - id: "pcholdoc_hs_s" - name: "1-Docosahexaenoylglycerophosphocholine" - - compartment: s - - formula: C34H59NO7P + - compartment: "s" + - formula: "C34H59NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholeic_hs_s + - id: "pcholeic_hs_s" - name: "1-Eicosadienoylglycerophosphocholine (Delta 11,14)" - - compartment: s - - formula: C28H55NO7P + - compartment: "s" + - formula: "C28H55NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholet_hs_s + - id: "pcholet_hs_s" - name: "1-Eicosatrienoylglycerophosphocholine (Delta 11, 14, 17)" - - compartment: s - - formula: C28H53NO7P + - compartment: "s" + - formula: "C28H53NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholhep_hs_s + - id: "pcholhep_hs_s" - name: "1-Heptadecanoylglycerophosphocholine" - - compartment: s - - formula: C25H53NO7P + - compartment: "s" + - formula: "C25H53NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pchollinl_hs_s + - id: "pchollinl_hs_s" - name: "1-Linoleoylglycerophosphocholine (Delta 9,12)" - - compartment: s - - formula: C26H51NO7P + - compartment: "s" + - formula: "C26H51NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pelinl_hs_s + - id: "pelinl_hs_s" - name: "1-Linoleoylglycerophosphoethanolamine (Delta 9,12)" - - compartment: s - - formula: C23H44NO7P + - compartment: "s" + - formula: "C23H44NO7P" - charge: 0 - - inchis: 1/C23H44NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-23(26)29-20-22(25)21-31-32(27,28)30-19-18-24/h6-7,9-10,22,25H,2-5,8,11-21,24H2,1H3,(H,27,28)/b7-6+,10-9+ - - metFrom: Recon3D + - inchis: "1/C23H44NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-23(26)29-20-22(25)21-31-32(27,28)30-19-18-24/h6-7,9-10,22,25H,2-5,8,11-21,24H2,1H3,(H,27,28)/b7-6+,10-9+" + - metFrom: "Recon3D" - !!omap - - id: sphmyln18114_hs_c + - id: "sphmyln18114_hs_c" - name: "Sm (D18:1/14:0), Sphingomyelin" - - compartment: c - - formula: C37H76N2O6P + - compartment: "c" + - formula: "C37H76N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln18121_hs_c + - id: "sphmyln18121_hs_c" - name: "Sm (D18:1/21:0), Sphingomyelin" - - compartment: c - - formula: C44H90N2O6P + - compartment: "c" + - formula: "C44H90N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln181221_hs_c + - id: "sphmyln181221_hs_c" - name: "Sm (D18:1/22:1), Sphingomyelin" - - compartment: c - - formula: C45H90N2O6P + - compartment: "c" + - formula: "C45H90N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln18122_hs_c + - id: "sphmyln18122_hs_c" - name: "Sm (D18:1/22:0), Sphingomyelin" - - compartment: c - - formula: C45H92N2O6P + - compartment: "c" + - formula: "C45H92N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln18123_hs_c + - id: "sphmyln18123_hs_c" - name: "Sm (D18:1/23:0), Sphingomyelin" - - compartment: c - - formula: C46H94N2O6P + - compartment: "c" + - formula: "C46H94N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln180241_hs_c + - id: "sphmyln180241_hs_c" - name: "Sm (D18:0/24:1), Sphingomyelin" - - compartment: c - - formula: C47H96N2O6P + - compartment: "c" + - formula: "C47H96N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln1824_hs_c + - id: "sphmyln1824_hs_c" - name: "Sm (D18:0/24:0), Sphingomyelin" - - compartment: c - - formula: C47H98N2O6P + - compartment: "c" + - formula: "C47H98N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln1825_hs_c + - id: "sphmyln1825_hs_c" - name: "Sm (D18:0/25:0), Sphingomyelin" - - compartment: c - - formula: C48H100N2O6P + - compartment: "c" + - formula: "C48H100N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln18115_hs_c + - id: "sphmyln18115_hs_c" - name: "Sm (D18:1/15:0), Sphingomyelin" - - compartment: c - - formula: C38H78N2O6P + - compartment: "c" + - formula: "C38H78N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln181161_hs_c + - id: "sphmyln181161_hs_c" - name: "Sm (D18:1/16:1), Sphingomyelin" - - compartment: c - - formula: C39H78N2O6P + - compartment: "c" + - formula: "C39H78N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln18116_hs_c + - id: "sphmyln18116_hs_c" - name: "Sm (D18:1/16:0), Sphingomyelin" - - compartment: c - - formula: C39H80N2O6P + - compartment: "c" + - formula: "C39H80N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln18117_hs_c + - id: "sphmyln18117_hs_c" - name: "Sm (D18:1/17:0), Sphingomyelin" - - compartment: c - - formula: C40H82N2O6P + - compartment: "c" + - formula: "C40H82N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln18118_hs_c + - id: "sphmyln18118_hs_c" - name: "Sm (D18:1/18:0), Sphingomyelin" - - compartment: c - - formula: C41H84N2O6P + - compartment: "c" + - formula: "C41H84N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln181181_hs_c + - id: "sphmyln181181_hs_c" - name: "Sm (D18:1/18:1), Sphingomyelin" - - compartment: c - - formula: C41H82N2O6P + - compartment: "c" + - formula: "C41H82N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln181201_hs_c + - id: "sphmyln181201_hs_c" - name: "Sm (D18:1/20:1), Sphingomyelin" - - compartment: c - - formula: C43H86N2O6P + - compartment: "c" + - formula: "C43H86N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln18120_hs_c + - id: "sphmyln18120_hs_c" - name: "Sm (D18:1/20:0), Sphingomyelin" - - compartment: c - - formula: C43H88N2O6P + - compartment: "c" + - formula: "C43H88N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: xolest183_hs_l + - id: "xolest183_hs_l" - name: "1-Gamma-Linolenoyl-Cholesterol, Cholesterol-Ester (18:3, Delta 6, 9, 12)" - - compartment: l - - formula: C45H74O2 + - compartment: "l" + - formula: "C45H74O2" - charge: 0 - - inchis: 1S/C45H74O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-25-43(46)47-38-30-32-44(5)37(34-38)26-27-39-41-29-28-40(36(4)24-22-23-35(2)3)45(41,6)33-31-42(39)44/h11-12,14-15,17-18,26,35-36,38-42H,7-10,13,16,19-25,27-34H2,1-6H3/b12-11-,15-14-,18-17-/t36-,38+,39?,40?,41?,42?,44+,45-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C45H74O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-25-43(46)47-38-30-32-44(5)37(34-38)26-27-39-41-29-28-40(36(4)24-22-23-35(2)3)45(41,6)33-31-42(39)44/h11-12,14-15,17-18,26,35-36,38-42H,7-10,13,16,19-25,27-34H2,1-6H3/b12-11-,15-14-,18-17-/t36-,38+,39?,40?,41?,42?,44+,45-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: xolest182_hs_l + - id: "xolest182_hs_l" - name: "1-Linoleoyl-Cholesterol, Cholesterol-Ester (18:2, Delta 9, 12)" - - compartment: l - - formula: C45H76O2 + - compartment: "l" + - formula: "C45H76O2" - charge: 0 - - inchis: 1/C45H76O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-25-43(46)47-38-30-32-44(5)37(34-38)26-27-39-41-29-28-40(36(4)24-22-23-35(2)3)45(41,6)33-31-42(39)44/h11-12,14-15,26,35-36,38-42H,7-10,13,16-25,27-34H2,1-6H3/b12-11-,15-14+/t36-,38+,39+,40-,41+,42+,44+,45-/s2 - - metFrom: Recon3D + - inchis: "1/C45H76O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-25-43(46)47-38-30-32-44(5)37(34-38)26-27-39-41-29-28-40(36(4)24-22-23-35(2)3)45(41,6)33-31-42(39)44/h11-12,14-15,26,35-36,38-42H,7-10,13,16-25,27-34H2,1-6H3/b12-11-,15-14+/t36-,38+,39+,40-,41+,42+,44+,45-/s2" + - metFrom: "Recon3D" - !!omap - - id: xolest181_hs_l + - id: "xolest181_hs_l" - name: "1-Vaccenoyl-Cholesterol, Cholesterol-Ester (18:1, Delta 11)" - - compartment: l - - formula: C45H78O2 + - compartment: "l" + - formula: "C45H78O2" - charge: 0 - - inchis: 1/C45H78O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-25-43(46)47-38-30-32-44(5)37(34-38)26-27-39-41-29-28-40(36(4)24-22-23-35(2)3)45(41,6)33-31-42(39)44/h12-13,26,35-36,38-42H,7-11,14-25,27-34H2,1-6H3/b13-12+/t36-,38+,39+,40-,41+,42+,44+,45-/s2 - - metFrom: Recon3D + - inchis: "1/C45H78O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-25-43(46)47-38-30-32-44(5)37(34-38)26-27-39-41-29-28-40(36(4)24-22-23-35(2)3)45(41,6)33-31-42(39)44/h12-13,26,35-36,38-42H,7-11,14-25,27-34H2,1-6H3/b13-12+/t36-,38+,39+,40-,41+,42+,44+,45-/s2" + - metFrom: "Recon3D" - !!omap - - id: xolest205_hs_l + - id: "xolest205_hs_l" - name: "1-Timnodnoyl-Cholesterol, Cholesterol-Ester (20:5, Delta 5,8,11,14,17)" - - compartment: l - - formula: C47H74O2 + - compartment: "l" + - formula: "C47H74O2" - charge: 0 - - inchis: 1/C47H74O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-22-23-27-45(48)49-40-32-34-46(5)39(36-40)28-29-41-43-31-30-42(38(4)26-24-25-37(2)3)47(43,6)35-33-44(41)46/h8-9,11-12,14-15,17-18,20-21,28,37-38,40-44H,7,10,13,16,19,22-27,29-36H2,1-6H3/b9-8-,12-11-,15-14-,18-17-,21-20-/t38-,40+,41+,42-,43+,44+,46+,47-/s2 - - metFrom: Recon3D + - inchis: "1/C47H74O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-22-23-27-45(48)49-40-32-34-46(5)39(36-40)28-29-41-43-31-30-42(38(4)26-24-25-37(2)3)47(43,6)35-33-44(41)46/h8-9,11-12,14-15,17-18,20-21,28,37-38,40-44H,7,10,13,16,19,22-27,29-36H2,1-6H3/b9-8-,12-11-,15-14-,18-17-,21-20-/t38-,40+,41+,42-,43+,44+,46+,47-/s2" + - metFrom: "Recon3D" - !!omap - - id: xolest204_hs_l + - id: "xolest204_hs_l" - name: "Cholesteryl Arachidonate, Cholesterol-Ester (20:4, Delta 5,8,11,14)" - - compartment: l - - formula: C47H76O2 + - compartment: "l" + - formula: "C47H76O2" - charge: 0 - - inchis: 1S/C47H76O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-22-23-27-45(48)49-40-32-34-46(5)39(36-40)28-29-41-43-31-30-42(38(4)26-24-25-37(2)3)47(43,6)35-33-44(41)46/h11-12,14-15,17-18,20-21,28,37-38,40-44H,7-10,13,16,19,22-27,29-36H2,1-6H3/b12-11-,15-14-,18-17-,21-20-/t38-,40+,41+,42-,43+,44+,46+,47-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C47H76O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-22-23-27-45(48)49-40-32-34-46(5)39(36-40)28-29-41-43-31-30-42(38(4)26-24-25-37(2)3)47(43,6)35-33-44(41)46/h11-12,14-15,17-18,20-21,28,37-38,40-44H,7-10,13,16,19,22-27,29-36H2,1-6H3/b12-11-,15-14-,18-17-,21-20-/t38-,40+,41+,42-,43+,44+,46+,47-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: xolest226_hs_l + - id: "xolest226_hs_l" - name: "Cholesteryl Docosahexanoate, Cholesterol-Ester (22:6, Delta 4,7,10,13,16,19)" - - compartment: l - - formula: C49H76O2 + - compartment: "l" + - formula: "C49H76O2" - charge: 0 - - inchis: 1S/C49H76O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-22-23-24-25-29-47(50)51-42-34-36-48(5)41(38-42)30-31-43-45-33-32-44(40(4)28-26-27-39(2)3)49(45,6)37-35-46(43)48/h8-9,11-12,14-15,17-18,20-21,23-24,30,39-40,42-46H,7,10,13,16,19,22,25-29,31-38H2,1-6H3/b9-8+,12-11+,15-14+,18-17+,21-20+,24-23-/t40-,42+,43+,44-,45+,46+,48+,49-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C49H76O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-22-23-24-25-29-47(50)51-42-34-36-48(5)41(38-42)30-31-43-45-33-32-44(40(4)28-26-27-39(2)3)49(45,6)37-35-46(43)48/h8-9,11-12,14-15,17-18,20-21,23-24,30,39-40,42-46H,7,10,13,16,19,22,25-29,31-38H2,1-6H3/b9-8+,12-11+,15-14+,18-17+,21-20+,24-23-/t40-,42+,43+,44-,45+,46+,48+,49-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: maglinl_hs_s + - id: "maglinl_hs_s" - name: "1-Linoleoylglycerol" - - compartment: s - - formula: C21H38O4 + - compartment: "s" + - formula: "C21H38O4" - charge: 0 - - inchis: 1/C21H38O4/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-21(24)25-19-20(23)18-22/h6-7,9-10,20,22-23H,2-5,8,11-19H2,1H3/b7-6-,10-9-/t20-/s2 - - metFrom: Recon3D + - inchis: "1/C21H38O4/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-21(24)25-19-20(23)18-22/h6-7,9-10,20,22-23H,2-5,8,11-19H2,1H3/b7-6-,10-9-/t20-/s2" + - metFrom: "Recon3D" - !!omap - - id: magole_hs_s + - id: "magole_hs_s" - name: "1-Oleoylglycerol" - - compartment: s - - formula: C21H40O4 + - compartment: "s" + - formula: "C21H40O4" - charge: 0 - - inchis: 1/C21H40O4/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-21(24)25-19-20(23)18-22/h9-10,20,22-23H,2-8,11-19H2,1H3/b10-9- - - metFrom: Recon3D + - inchis: "1/C21H40O4/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-21(24)25-19-20(23)18-22/h9-10,20,22-23H,2-8,11-19H2,1H3/b10-9-" + - metFrom: "Recon3D" - !!omap - - id: magpalm_hs_s + - id: "magpalm_hs_s" - name: "1-Palmitoylglycerol" - - compartment: s - - formula: C19H38O4 + - compartment: "s" + - formula: "C19H38O4" - charge: 0 - - inchis: 1/C19H38O4/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-19(22)23-17-18(21)16-20/h18,20-21H,2-17H2,1H3 - - metFrom: Recon3D + - inchis: "1/C19H38O4/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-19(22)23-17-18(21)16-20/h18,20-21H,2-17H2,1H3" + - metFrom: "Recon3D" - !!omap - - id: magste_hs_s + - id: "magste_hs_s" - name: "1-Stearoylglycerol" - - compartment: s - - formula: C21H42O4 + - compartment: "s" + - formula: "C21H42O4" - charge: 0 - - inchis: 1/C21H42O4/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-21(24)25-19-20(23)18-22/h20,22-23H,2-19H2,1H3 - - metFrom: Recon3D + - inchis: "1/C21H42O4/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-21(24)25-19-20(23)18-22/h20,22-23H,2-19H2,1H3" + - metFrom: "Recon3D" - !!omap - - id: magarachi_hs_s + - id: "magarachi_hs_s" - name: "1-Arachidonoyl Glycerol" - - compartment: s - - formula: C23H38O4 + - compartment: "s" + - formula: "C23H38O4" - charge: 0 - - inchis: 1/C23H38O4/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-23(26)27-21-22(25)20-24/h6-7,9-10,12-13,15-16,22,24-25H,2-5,8,11,14,17-21H2,1H3/b7-6-,10-9-,13-12-,16-15- - - metFrom: Recon3D + - inchis: "1/C23H38O4/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-23(26)27-21-22(25)20-24/h6-7,9-10,12-13,15-16,22,24-25H,2-5,8,11,14,17-21H2,1H3/b7-6-,10-9-,13-12-,16-15-" + - metFrom: "Recon3D" - !!omap - - id: pcholmyr_hs_c + - id: "pcholmyr_hs_c" - name: "1-Myristoylglycerophosphocholine" - - compartment: c - - formula: C22H47NO7P + - compartment: "c" + - formula: "C22H47NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholole_hs_c + - id: "pcholole_hs_c" - name: "1-Oleoylglycerophosphocholine (Delta 9)" - - compartment: c - - formula: C26H53NO7P + - compartment: "c" + - formula: "C26H53NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: peole_hs_c + - id: "peole_hs_c" - name: "1-Oleoylglycerophosphoethanolamine (Delta 9)" - - compartment: c - - formula: C23H46NO7P + - compartment: "c" + - formula: "C23H46NO7P" - charge: 0 - - inchis: 1/C23H46NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-23(26)29-20-22(25)21-31-32(27,28)30-19-18-24/h9-10,22,25H,2-8,11-21,24H2,1H3,(H,27,28)/b10-9+ - - metFrom: Recon3D + - inchis: "1/C23H46NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-23(26)29-20-22(25)21-31-32(27,28)30-19-18-24/h9-10,22,25H,2-8,11-21,24H2,1H3,(H,27,28)/b10-9+" + - metFrom: "Recon3D" - !!omap - - id: pcholpalme_hs_c + - id: "pcholpalme_hs_c" - name: "1-Palmitoleoylglycerophosphocholine (Delta 9)" - - compartment: c - - formula: C24H49NO7P + - compartment: "c" + - formula: "C24H49NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholpalm_hs_c + - id: "pcholpalm_hs_c" - name: "1-Palmitoylglycerophosphocholine" - - compartment: c - - formula: C24H51NO7P + - compartment: "c" + - formula: "C24H51NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pepalm_hs_c + - id: "pepalm_hs_c" - name: "1-Palmitoylglycerophosphoethanolamine" - - compartment: c - - formula: C21H44NO7P + - compartment: "c" + - formula: "C21H44NO7P" - charge: 0 - - inchis: 1/C21H44NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-21(24)27-18-20(23)19-29-30(25,26)28-17-16-22/h20,23H,2-19,22H2,1H3,(H,25,26) - - metFrom: Recon3D + - inchis: "1/C21H44NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-21(24)27-18-20(23)19-29-30(25,26)28-17-16-22/h20,23H,2-19,22H2,1H3,(H,25,26)" + - metFrom: "Recon3D" - !!omap - - id: pailpalm_hs_c + - id: "pailpalm_hs_c" - name: "1-Palmitoylglycerophosphoinositol" - - compartment: c - - formula: C25H48O12P + - compartment: "c" + - formula: "C25H48O12P" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholste_hs_c + - id: "pcholste_hs_c" - name: "1-Stearoylglycerophosphocholine" - - compartment: c - - formula: C26H55NO7P + - compartment: "c" + - formula: "C26H55NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pchol2linl_hs_c + - id: "pchol2linl_hs_c" - name: "2-Linoleoylglycerophosphocholine" - - compartment: c - - formula: C26H51NO7P + - compartment: "c" + - formula: "C26H51NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pe2linl_hs_c + - id: "pe2linl_hs_c" - name: "2-Linoleoylglycerophosphoethanolamine" - - compartment: c - - formula: C23H44NO7P + - compartment: "c" + - formula: "C23H44NO7P" - charge: 0 - - inchis: 1/C23H44NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-23(26)31-22(20-25)21-30-32(27,28)29-19-18-24/h6-7,9-10,22,25H,2-5,8,11-21,24H2,1H3,(H,27,28)/b7-6-,10-9-/t22-/s2 - - metFrom: Recon3D + - inchis: "1/C23H44NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-23(26)31-22(20-25)21-30-32(27,28)29-19-18-24/h6-7,9-10,22,25H,2-5,8,11-21,24H2,1H3,(H,27,28)/b7-6-,10-9-/t22-/s2" + - metFrom: "Recon3D" - !!omap - - id: pchol2ole_hs_c + - id: "pchol2ole_hs_c" - name: "2-Oleoylglycerophosphocholine" - - compartment: c - - formula: C26H53NO7P + - compartment: "c" + - formula: "C26H53NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pchol2palm_hs_c + - id: "pchol2palm_hs_c" - name: "2-Palmitoylglycerophosphocholine" - - compartment: c - - formula: C24H51NO7P + - compartment: "c" + - formula: "C24H51NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pchol2ste_hs_c + - id: "pchol2ste_hs_c" - name: "2-Stearoylglycerophosphocholine" - - compartment: c - - formula: C26H55NO7P + - compartment: "c" + - formula: "C26H55NO7P" - charge: 0 - - inchis: 1/C26H55NO7P/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-26(29)32-23-25(28)24-34-35(30,31)33-22-21-27(2,3)4/h25,28H,5-24H2,1-4H3,(H,30,31) - - metFrom: Recon3D + - inchis: "1/C26H55NO7P/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-26(29)32-23-25(28)24-34-35(30,31)33-22-21-27(2,3)4/h25,28H,5-24H2,1-4H3,(H,30,31)" + - metFrom: "Recon3D" - !!omap - - id: pcholn15_hs_c + - id: "pcholn15_hs_c" - name: "1-Pentadecanoylglycerophosphocholine, Sn1-Lpc (15:0)" - - compartment: c - - formula: C23H49NO7P + - compartment: "c" + - formula: "C23H49NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholar_hs_c + - id: "pcholar_hs_c" - name: "1-Arachidonoyl-Glycero-3-Phosphocholine" - - compartment: c - - formula: C28H51NO7P + - compartment: "c" + - formula: "C28H51NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholn183_hs_c + - id: "pcholn183_hs_c" - name: "1-Octadeca-Trienoylglycerophosphocholine, Sn1-Lpc (18:3, Delta 9, 12, 15)" - - compartment: c - - formula: C26H49NO7P + - compartment: "c" + - formula: "C26H49NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholn1836_hs_c + - id: "pcholn1836_hs_c" - name: "1-Octadeca-Trienoylglycerophosphocholine, Sn1-Lpc (18:3, Delta 6, 9, 12)" - - compartment: c - - formula: C26H49NO7P + - compartment: "c" + - formula: "C26H49NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholn19_hs_c + - id: "pcholn19_hs_c" - name: "1-Nonadecanoylglycerophosphocholine, Sn1-Lpc (19:0)" - - compartment: c - - formula: C27H57NO7P + - compartment: "c" + - formula: "C27H57NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholn201_hs_c + - id: "pcholn201_hs_c" - name: "1-Eicosenoylglycerophosphocholine (Delta 11) ,Sn1-Lpc (20:1)" - - compartment: c - - formula: C28H57NO7P + - compartment: "c" + - formula: "C28H57NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholn204_hs_c + - id: "pcholn204_hs_c" - name: "1-Eicosatetraenoylglycerophosphocholine (Delta 8, 11, 14, 17), Sn1-Lpc (20:4)" - - compartment: c - - formula: C28H51NO7P + - compartment: "c" + - formula: "C28H51NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholn205_hs_c + - id: "pcholn205_hs_c" - name: "1-Eicosapentenoylglycerophosphocholine (Delta 5, 8, 11, 14, 17), Sn1-Lpc (20:5)" - - compartment: c - - formula: C28H49NO7P + - compartment: "c" + - formula: "C28H49NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholn224_hs_c + - id: "pcholn224_hs_c" - name: "1-Docosatetraenoylglycerophosphocholine (Delta 7, 10, 13, 16), Sn1-Lpc (22:4)" - - compartment: c - - formula: C30H55NO7P + - compartment: "c" + - formula: "C30H55NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholn225_hs_c + - id: "pcholn225_hs_c" - name: "1-Docosapentenoylglycerophosphocholine (Delta 7, 10, 13, 16, 19), Sn1-Lpc (22:5)-W3" - - compartment: c - - formula: C30H53NO7P + - compartment: "c" + - formula: "C30H53NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholn2254_hs_c + - id: "pcholn2254_hs_c" - name: "1-Docosapentenoylglycerophosphocholine (Delta 4, 7, 10, 13, 16), Sn1-Lpc (22:5)-W6" - - compartment: c - - formula: C30H53NO7P + - compartment: "c" + - formula: "C30H53NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholn226_hs_c + - id: "pcholn226_hs_c" - name: "1-Docosahexenoylglycerophosphocholine (Delta 4, 7, 10, 13, 16, 19), Sn1-Lpc (22:6)" - - compartment: c - - formula: C30H51NO7P + - compartment: "c" + - formula: "C30H51NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pear_hs_c + - id: "pear_hs_c" - name: "1-Arachidonoyl-Sn-Glycero-3-Phosphoethanolamine" - - compartment: c - - formula: C25H44NO7P + - compartment: "c" + - formula: "C25H44NO7P" - charge: 0 - - inchis: 1/C25H44NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-25(28)31-22-24(27)23-33-34(29,30)32-21-20-26/h6-7,9-10,12-13,15-16,24,27H,2-5,8,11,14,17-23,26H2,1H3,(H,29,30)/b7-6-,10-9-,13-12-,16-15- - - metFrom: Recon3D + - inchis: "1/C25H44NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-25(28)31-22-24(27)23-33-34(29,30)32-21-20-26/h6-7,9-10,12-13,15-16,24,27H,2-5,8,11,14,17-23,26H2,1H3,(H,29,30)/b7-6-,10-9-,13-12-,16-15-" + - metFrom: "Recon3D" - !!omap - - id: pe203_hs_c + - id: "pe203_hs_c" - name: "1-Eicosatrienoylglycerophosphoethanolamine (Delta 11, 14, 17), Lpe (20:3)" - - compartment: c - - formula: C25H46NO7P + - compartment: "c" + - formula: "C25H46NO7P" - charge: 0 - - inchis: 1/C25H46NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-25(28)31-22-24(27)23-33-34(29,30)32-21-20-26/h3-4,6-7,9-10,24,27H,2,5,8,11-23,26H2,1H3,(H,29,30)/b4-3+,7-6+,10-9+/t24-/s2 - - metFrom: Recon3D + - inchis: "1/C25H46NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-25(28)31-22-24(27)23-33-34(29,30)32-21-20-26/h3-4,6-7,9-10,24,27H,2,5,8,11-23,26H2,1H3,(H,29,30)/b4-3+,7-6+,10-9+/t24-/s2" + - metFrom: "Recon3D" - !!omap - - id: pe226_hs_c + - id: "pe226_hs_c" - name: "1-Docosahexenoylglyceroethanolamine (Delta 4, 7, 10, 13, 16, 19), Lpe (22:6)" - - compartment: c - - formula: C27H46NO7P + - compartment: "c" + - formula: "C27H46NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pe224_hs_c + - id: "pe224_hs_c" - name: "1-Docosatetraenoyglycerophosphoethanolamine (22:4, Delta 7, 10, 13, 16)" - - compartment: c - - formula: C27H48NO7P + - compartment: "c" + - formula: "C27H48NO7P" - charge: 0 - - inchis: 1/C27H48NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-27(30)33-24-26(29)25-35-36(31,32)34-23-22-28/h6-7,9-10,12-13,15-16,26,29H,2-5,8,11,14,17-25,28H2,1H3,(H,31,32)/b7-6+,10-9+,13-12+,16-15+/t26-/s2 - - metFrom: Recon3D + - inchis: "1/C27H48NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-27(30)33-24-26(29)25-35-36(31,32)34-23-22-28/h6-7,9-10,12-13,15-16,26,29H,2-5,8,11,14,17-25,28H2,1H3,(H,31,32)/b7-6+,10-9+,13-12+,16-15+/t26-/s2" + - metFrom: "Recon3D" - !!omap - - id: pedh203_hs_c + - id: "pedh203_hs_c" - name: "1-Dihomo-Linolenoylglycerophosphoethanolamine (20:3, Delta 8, 11, 14)" - - compartment: c - - formula: C25H46NO7P + - compartment: "c" + - formula: "C25H46NO7P" - charge: 0 - - inchis: 1/C25H46NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-25(28)31-22-24(27)23-33-34(29,30)32-21-20-26/h6-7,9-10,12-13,24,27H,2-5,8,11,14-23,26H2,1H3,(H,29,30)/b7-6-,10-9-,13-12- - - metFrom: Recon3D + - inchis: "1/C25H46NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-25(28)31-22-24(27)23-33-34(29,30)32-21-20-26/h6-7,9-10,12-13,24,27H,2-5,8,11,14-23,26H2,1H3,(H,29,30)/b7-6-,10-9-,13-12-" + - metFrom: "Recon3D" - !!omap - - id: pe12_hs_c + - id: "pe12_hs_c" - name: "1-Didecanoylglycerophosphoethanolamine (C12:0 Pe)" - - compartment: c - - formula: C17H36NO7P + - compartment: "c" + - formula: "C17H36NO7P" - charge: 0 - - inchis: 1/C17H36NO7P/c1-2-3-4-5-6-7-8-9-10-11-17(20)23-14-16(19)15-25-26(21,22)24-13-12-18/h16,19H,2-15,18H2,1H3,(H,21,22) - - metFrom: Recon3D + - inchis: "1/C17H36NO7P/c1-2-3-4-5-6-7-8-9-10-11-17(20)23-14-16(19)15-25-26(21,22)24-13-12-18/h16,19H,2-15,18H2,1H3,(H,21,22)" + - metFrom: "Recon3D" - !!omap - - id: pe14_hs_c + - id: "pe14_hs_c" - name: "1-Myristoylglycerophosphoethanolamine (C14:0 Pe)" - - compartment: c - - formula: C19H40NO7P + - compartment: "c" + - formula: "C19H40NO7P" - charge: 0 - - inchis: 1/C19H40NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-19(22)25-16-18(21)17-27-28(23,24)26-15-14-20/h18,21H,2-17,20H2,1H3,(H,23,24) - - metFrom: Recon3D + - inchis: "1/C19H40NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-19(22)25-16-18(21)17-27-28(23,24)26-15-14-20/h18,21H,2-17,20H2,1H3,(H,23,24)" + - metFrom: "Recon3D" - !!omap - - id: pe161_hs_c + - id: "pe161_hs_c" - name: "1-Hexadecenoylglycerophosphoethanolamine (C16:1 Pe, Delta 9)" - - compartment: c - - formula: C21H42NO7P + - compartment: "c" + - formula: "C21H42NO7P" - charge: 0 - - inchis: 1/C21H42NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-21(24)27-18-20(23)19-29-30(25,26)28-17-16-22/h7-8,20,23H,2-6,9-19,22H2,1H3,(H,25,26)/b8-7+ - - metFrom: Recon3D + - inchis: "1/C21H42NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-21(24)27-18-20(23)19-29-30(25,26)28-17-16-22/h7-8,20,23H,2-6,9-19,22H2,1H3,(H,25,26)/b8-7+" + - metFrom: "Recon3D" - !!omap - - id: pe13_hs_c + - id: "pe13_hs_c" - name: "1-Tridecanoylglycerophosphoethanolamine (C13:0 Pe)" - - compartment: c - - formula: C18H38NO7P + - compartment: "c" + - formula: "C18H38NO7P" - charge: 0 - - inchis: 1/C18H38NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-18(21)24-15-17(20)16-26-27(22,23)25-14-13-19/h17,20H,2-16,19H2,1H3,(H,22,23) - - metFrom: Recon3D + - inchis: "1/C18H38NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-18(21)24-15-17(20)16-26-27(22,23)25-14-13-19/h17,20H,2-16,19H2,1H3,(H,22,23)" + - metFrom: "Recon3D" - !!omap - - id: pe15_hs_c + - id: "pe15_hs_c" - name: "1-Pentadecanoylglycerophosphoethanolamine (C15:0 Pe)" - - compartment: c - - formula: C20H42NO7P + - compartment: "c" + - formula: "C20H42NO7P" - charge: 0 - - inchis: 1/C20H42NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-20(23)28-19(17-22)18-27-29(24,25)26-16-15-21/h19,22H,2-18,21H2,1H3,(H,24,25)/t19-/s2 - - metFrom: Recon3D + - inchis: "1/C20H42NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-20(23)28-19(17-22)18-27-29(24,25)26-16-15-21/h19,22H,2-18,21H2,1H3,(H,24,25)/t19-/s2" + - metFrom: "Recon3D" - !!omap - - id: pe17_hs_c + - id: "pe17_hs_c" - name: "1-Heptadecanoylglycerophosphoethanolamine (C17:0 Pe)" - - compartment: c - - formula: C22H46NO7P + - compartment: "c" + - formula: "C22H46NO7P" - charge: 0 - - inchis: 1/C22H46NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-22(25)28-19-21(24)20-30-31(26,27)29-18-17-23/h21,24H,2-20,23H2,1H3,(H,26,27) - - metFrom: Recon3D + - inchis: "1/C22H46NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-22(25)28-19-21(24)20-30-31(26,27)29-18-17-23/h21,24H,2-20,23H2,1H3,(H,26,27)" + - metFrom: "Recon3D" - !!omap - - id: pcholn203_hs_c + - id: "pcholn203_hs_c" - name: "1-Dihomo-Linolenoylglycerophosphocholine (20:3, Delta 8, 11, 14), Lysopc A C20:3" - - compartment: c - - formula: C28H53NO7P + - compartment: "c" + - formula: "C28H53NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pailar_hs_c + - id: "pailar_hs_c" - name: "1-Arachidonoylglycerophosphoinositol" - - compartment: c - - formula: C29H48O12P + - compartment: "c" + - formula: "C29H48O12P" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholn24_hs_c + - id: "pcholn24_hs_c" - name: "1-Lignocericylglycerophosphocholine (24:0), Lysopc A C24" - - compartment: c - - formula: C32H67NO7P + - compartment: "c" + - formula: "C32H67NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholn261_hs_c + - id: "pcholn261_hs_c" - name: "Lysopc A C26:1 (Delta 5)" - - compartment: c - - formula: C34H69NO7P + - compartment: "c" + - formula: "C34H69NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholn281_hs_c + - id: "pcholn281_hs_c" - name: "Lysopc A C28:1 (Delta 5)" - - compartment: c - - formula: C36H73NO7P + - compartment: "c" + - formula: "C36H73NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholn28_hs_c + - id: "pcholn28_hs_c" - name: "Lysopc A C28:0" - - compartment: c - - formula: C36H75NO7P + - compartment: "c" + - formula: "C36H75NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholdoc_hs_c + - id: "pcholdoc_hs_c" - name: "1-Docosahexaenoylglycerophosphocholine" - - compartment: c - - formula: C34H59NO7P + - compartment: "c" + - formula: "C34H59NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholeic_hs_c + - id: "pcholeic_hs_c" - name: "1-Eicosadienoylglycerophosphocholine (Delta 11,14)" - - compartment: c - - formula: C28H55NO7P + - compartment: "c" + - formula: "C28H55NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholet_hs_c + - id: "pcholet_hs_c" - name: "1-Eicosatrienoylglycerophosphocholine (Delta 11, 14, 17)" - - compartment: c - - formula: C28H53NO7P + - compartment: "c" + - formula: "C28H53NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholhep_hs_c + - id: "pcholhep_hs_c" - name: "1-Heptadecanoylglycerophosphocholine" - - compartment: c - - formula: C25H53NO7P + - compartment: "c" + - formula: "C25H53NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pchollinl_hs_c + - id: "pchollinl_hs_c" - name: "1-Linoleoylglycerophosphocholine (Delta 9,12)" - - compartment: c - - formula: C26H51NO7P + - compartment: "c" + - formula: "C26H51NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pelinl_hs_c + - id: "pelinl_hs_c" - name: "1-Linoleoylglycerophosphoethanolamine (Delta 9,12)" - - compartment: c - - formula: C23H44NO7P + - compartment: "c" + - formula: "C23H44NO7P" - charge: 0 - - inchis: 1/C23H44NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-23(26)29-20-22(25)21-31-32(27,28)30-19-18-24/h6-7,9-10,22,25H,2-5,8,11-21,24H2,1H3,(H,27,28)/b7-6+,10-9+ - - metFrom: Recon3D + - inchis: "1/C23H44NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-23(26)29-20-22(25)21-31-32(27,28)30-19-18-24/h6-7,9-10,22,25H,2-5,8,11-21,24H2,1H3,(H,27,28)/b7-6+,10-9+" + - metFrom: "Recon3D" - !!omap - - id: eidi1114ac_c + - id: "eidi1114ac_c" - name: "Cis,Cis-11,14-Eicosadienoic Acid" - - compartment: c - - formula: C20H35O2 + - compartment: "c" + - formula: "C20H35O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hxa_c + - id: "hxa_c" - name: "Hexanoate (N-C6:0)" - - compartment: c - - formula: C6H11O2 + - compartment: "c" + - formula: "C6H11O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tetdeca511ac_c + - id: "tetdeca511ac_c" - name: "Cia-5,8, Tetradecadienoic Acid" - - compartment: c - - formula: C14H23O2 + - compartment: "c" + - formula: "C14H23O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glyc2p_c + - id: "glyc2p_c" - name: "Glycerol 2-Phosphate" - - compartment: c - - formula: C3H7O6P + - compartment: "c" + - formula: "C3H7O6P" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: aclys_c + - id: "aclys_c" - name: "Acetyl-L-Lysine" - - compartment: c - - formula: C8H16N2O3 + - compartment: "c" + - formula: "C8H16N2O3" - charge: 0 - - inchis: 1S/C8H16N2O3/c1-6(11)10-7(8(12)13)4-2-3-5-9/h7H,2-5,9H2,1H3,(H,10,11)(H,12,13)/t7-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C8H16N2O3/c1-6(11)10-7(8(12)13)4-2-3-5-9/h7H,2-5,9H2,1H3,(H,10,11)(H,12,13)/t7-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: hmcarn_c + - id: "hmcarn_c" - name: "Homocarnosine" - - compartment: c - - formula: C10H16N4O3 + - compartment: "c" + - formula: "C10H16N4O3" - charge: 0 - - inchis: 1S/C10H16N4O3/c11-3-1-2-9(15)14-8(10(16)17)4-7-5-12-6-13-7/h5-6,8H,1-4,11H2,(H,12,13)(H,14,15)(H,16,17)/t8-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C10H16N4O3/c11-3-1-2-9(15)14-8(10(16)17)4-7-5-12-6-13-7/h5-6,8H,1-4,11H2,(H,12,13)(H,14,15)(H,16,17)/t8-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: 4mtob_c + - id: "4mtob_c" - name: "4-Methyl-Thio-Oxo-Butyrate" - - compartment: c - - formula: C5H7O3S + - compartment: "c" + - formula: "C5H7O3S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3mtp_c + - id: "3mtp_c" - name: "3-Methyl-Thio-Propionate" - - compartment: c - - formula: C4H8OS + - compartment: "c" + - formula: "C4H8OS" - charge: 0 - - inchis: 1S/C4H8OS/c1-3-4(5)6-2/h3H2,1-2H3 - - metFrom: Recon3D + - inchis: "1S/C4H8OS/c1-3-4(5)6-2/h3H2,1-2H3" + - metFrom: "Recon3D" - !!omap - - id: 3mtp_s + - id: "3mtp_s" - name: "3-Methyl-Thio-Propionate" - - compartment: s - - formula: C4H8OS + - compartment: "s" + - formula: "C4H8OS" - charge: 0 - - inchis: 1S/C4H8OS/c1-3-4(5)6-2/h3H2,1-2H3 - - metFrom: Recon3D + - inchis: "1S/C4H8OS/c1-3-4(5)6-2/h3H2,1-2H3" + - metFrom: "Recon3D" - !!omap - - id: m00126s + - id: "m00126s" - name: "(9E)-octadecenoylcarnitine" - - compartment: s - - formula: C25H47NO4 + - compartment: "s" + - formula: "C25H47NO4" - charge: 0 - - inchis: 1/C25H47NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-25(29)30-23(21-24(27)28)22-26(2,3)4/h12-13,23H,5-11,14-22H2,1-4H3/b13-12+ - - metFrom: Recon3D + - inchis: "1/C25H47NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-25(29)30-23(21-24(27)28)22-26(2,3)4/h12-13,23H,5-11,14-22H2,1-4H3/b13-12+" + - metFrom: "Recon3D" - !!omap - - id: m02388s + - id: "m02388s" - name: "linoleic-carnitine" - - compartment: s - - formula: C25H45NO4 + - compartment: "s" + - formula: "C25H45NO4" - charge: 0 - - inchis: 1S/C25H45NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-25(29)30-23(21-24(27)28)22-26(2,3)4/h9-10,12-13,23H,5-8,11,14-22H2,1-4H3/b10-9-,13-12-/t23-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C25H45NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-25(29)30-23(21-24(27)28)22-26(2,3)4/h9-10,12-13,23H,5-8,11,14-22H2,1-4H3/b10-9-,13-12-/t23-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: phlac_s + - id: "phlac_s" - name: "Phenyllactate" - - compartment: s - - formula: C9H9O3 + - compartment: "s" + - formula: "C9H9O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00380s + - id: "m00380s" - name: "15(S)-HPETE" - - compartment: s - - formula: C20H31O4 + - compartment: "s" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 15kprostgf2_s + - id: "15kprostgf2_s" - name: "15-Keto-Prostaglandin F2A" - - compartment: s - - formula: C20H31O5 + - compartment: "s" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 21hprgnlone_s + - id: "21hprgnlone_s" - name: "21-Hydroxypregnenolone" - - compartment: s - - formula: C21H32O3 + - compartment: "s" + - formula: "C21H32O3" - charge: 0 - - inchis: 1/C21H32O3/c1-20-9-7-14(23)11-13(20)3-4-15-16-5-6-18(19(24)12-22)21(16,2)10-8-17(15)20/h3,14-18,22-23H,4-12H2,1-2H3/t14-,15?,16?,17?,18+,20-,21-/s2 - - metFrom: Recon3D + - inchis: "1/C21H32O3/c1-20-9-7-14(23)11-13(20)3-4-15-16-5-6-18(19(24)12-22)21(16,2)10-8-17(15)20/h3,14-18,22-23H,4-12H2,1-2H3/t14-,15?,16?,17?,18+,20-,21-/s2" + - metFrom: "Recon3D" - !!omap - - id: m00670s + - id: "m00670s" - name: "2-oxoadipate" - - compartment: s - - formula: C6H6O5 + - compartment: "s" + - formula: "C6H6O5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01004s + - id: "m01004s" - name: "4-hydroxyphenyllactate" - - compartment: s - - formula: C9H9O4 + - compartment: "s" + - formula: "C9H9O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00784c + - id: "m00784c" - name: "3-hydroxyisobutyrate" - - compartment: c - - formula: C4H7O3 + - compartment: "c" + - formula: "C4H7O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00784s + - id: "m00784s" - name: "3-hydroxyisobutyrate" - - compartment: s - - formula: C4H7O3 + - compartment: "s" + - formula: "C4H7O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hpppnohgluc_c + - id: "3hpppnohgluc_c" - name: "3-(3-Hydroxy-Phenyl)Propionate Hydroxy Derivative Glucuronide" - - compartment: c - - formula: C15H16O10 + - compartment: "c" + - formula: "C15H16O10" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hpppnohgluc_s + - id: "3hpppnohgluc_s" - name: "3-(3-Hydroxy-Phenyl)Propionate Hydroxy Derivative Glucuronide" - - compartment: s - - formula: C15H16O10 + - compartment: "s" + - formula: "C15H16O10" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hpppn_c + - id: "3hpppn_c" - name: "3-(3-Hydroxy-Phenyl)Propionate" - - compartment: c - - formula: C9H9O3 + - compartment: "c" + - formula: "C9H9O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hpppnoh_c + - id: "3hpppnoh_c" - name: "3-(3-Hydroxy-Phenyl)Propionate Hydroxy Derivative" - - compartment: c - - formula: C9H9O4 + - compartment: "c" + - formula: "C9H9O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02142s + - id: "m02142s" - name: "hydracrylate" - - compartment: s - - formula: C3H5O3 + - compartment: "s" + - formula: "C3H5O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3mhis_s + - id: "3mhis_s" - name: "3-Methylhistidine" - - compartment: s - - formula: C7H11N3O2 + - compartment: "s" + - formula: "C7H11N3O2" - charge: 0 - - inchis: 1S/C7H11N3O2/c1-10-4-9-3-5(10)2-6(8)7(11)12/h3-4,6H,2,8H2,1H3,(H,11,12)/t6-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C7H11N3O2/c1-10-4-9-3-5(10)2-6(8)7(11)12/h3-4,6H,2,8H2,1H3,(H,11,12)/t6-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m00821s + - id: "m00821s" - name: "3-methoxytyramine" - - compartment: s - - formula: C9H14NO2 + - compartment: "s" + - formula: "C9H14NO2" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00922s + - id: "m00922s" - name: "3-ureidoisobutyrate" - - compartment: s - - formula: C5H9N2O3 + - compartment: "s" + - formula: "C5H9N2O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00952s + - id: "m00952s" - name: "4-acetamidobutanoate" - - compartment: s - - formula: C6H10NO3 + - compartment: "s" + - formula: "C6H10NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01922s + - id: "m01922s" - name: "gamma-butyrobetaine" - - compartment: s - - formula: C7H15NO2 + - compartment: "s" + - formula: "C7H15NO2" - charge: 0 - - inchis: 1S/C7H15NO2/c1-8(2,3)6-4-5-7(9)10/h4-6H2,1-3H3 - - metFrom: Recon3D + - inchis: "1S/C7H15NO2/c1-8(2,3)6-4-5-7(9)10/h4-6H2,1-3H3" + - metFrom: "Recon3D" - !!omap - - id: m01705s + - id: "m01705s" - name: "dihydrothymine" - - compartment: s - - formula: C5H8N2O2 + - compartment: "s" + - formula: "C5H8N2O2" - charge: 0 - - inchis: 1/C5H8N2O2/c1-3-2-6-5(9)7-4(3)8/h3H,2H2,1H3,(H2,6,7,8,9) - - metFrom: Recon3D + - inchis: "1/C5H8N2O2/c1-3-2-6-5(9)7-4(3)8/h3H,2H2,1H3,(H2,6,7,8,9)" + - metFrom: "Recon3D" - !!omap - - id: m01052s + - id: "m01052s" - name: "5,6-Dihydrouracil" - - compartment: s - - formula: C4H6N2O2 + - compartment: "s" + - formula: "C4H6N2O2" - charge: 0 - - inchis: 1S/C4H6N2O2/c7-3-1-2-5-4(8)6-3/h1-2H2,(H2,5,6,7,8) - - metFrom: Recon3D + - inchis: "1S/C4H6N2O2/c7-3-1-2-5-4(8)6-3/h1-2H2,(H2,5,6,7,8)" + - metFrom: "Recon3D" - !!omap - - id: m01074s + - id: "m01074s" - name: "5-aminolevulinate" - - compartment: s - - formula: C5H9NO3 + - compartment: "s" + - formula: "C5H9NO3" - charge: 0 - - inchis: 1S/C5H9NO3/c6-3-4(7)1-2-5(8)9/h1-3,6H2,(H,8,9) - - metFrom: Recon3D + - inchis: "1S/C5H9NO3/c6-3-4(7)1-2-5(8)9/h1-3,6H2,(H,8,9)" + - metFrom: "Recon3D" - !!omap - - id: m01042s + - id: "m01042s" - name: "5(S)-HPETE" - - compartment: s - - formula: C20H31O4 + - compartment: "s" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02805s + - id: "m02805s" - name: "provitamin D3" - - compartment: s - - formula: C27H44O + - compartment: "s" + - formula: "C27H44O" - charge: 0 - - inchis: 1S/C27H44O/c1-18(2)7-6-8-19(3)23-11-12-24-22-10-9-20-17-21(28)13-15-26(20,4)25(22)14-16-27(23,24)5/h9-10,18-19,21,23-25,28H,6-8,11-17H2,1-5H3/t19-,21+,23-,24+,25+,26+,27-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C27H44O/c1-18(2)7-6-8-19(3)23-11-12-24-22-10-9-20-17-21(28)13-15-26(20,4)25(22)14-16-27(23,24)5/h9-10,18-19,21,23-25,28H,6-8,11-17H2,1-5H3/t19-,21+,23-,24+,25+,26+,27-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: abt_D_s + - id: "abt_D_s" - name: "D-Arabitol" - - compartment: s - - formula: C5H12O5 + - compartment: "s" + - formula: "C5H12O5" - charge: 0 - - inchis: 1S/C5H12O5/c6-1-3(8)5(10)4(9)2-7/h3-10H,1-2H2/t3-,4-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C5H12O5/c6-1-3(8)5(10)4(9)2-7/h3-10H,1-2H2/t3-,4-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: abt_D_c + - id: "abt_D_c" - name: "D-Arabitol" - - compartment: c - - formula: C5H12O5 + - compartment: "c" + - formula: "C5H12O5" - charge: 0 - - inchis: 1S/C5H12O5/c6-1-3(8)5(10)4(9)2-7/h3-10H,1-2H2/t3-,4-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C5H12O5/c6-1-3(8)5(10)4(9)2-7/h3-10H,1-2H2/t3-,4-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m02536c + - id: "m02536c" - name: "N-acetyl-L-glutamate" - - compartment: c - - formula: C7H9NO5 + - compartment: "c" + - formula: "C7H9NO5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02536s + - id: "m02536s" - name: "N-acetyl-L-glutamate" - - compartment: s - - formula: C7H9NO5 + - compartment: "s" + - formula: "C7H9NO5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: acgly_m + - id: "acgly_m" - name: "Acetyl-Glycine" - - compartment: m - - formula: C4H6NO3 + - compartment: "m" + - formula: "C4H6NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: acgly_c + - id: "acgly_c" - name: "Acetyl-Glycine" - - compartment: c - - formula: C4H6NO3 + - compartment: "c" + - formula: "C4H6NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: acgly_s + - id: "acgly_s" - name: "Acetyl-Glycine" - - compartment: s - - formula: C4H6NO3 + - compartment: "s" + - formula: "C4H6NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: aclys_s + - id: "aclys_s" - name: "Acetyl-L-Lysine" - - compartment: s - - formula: C8H16N2O3 + - compartment: "s" + - formula: "C8H16N2O3" - charge: 0 - - inchis: 1S/C8H16N2O3/c1-6(11)10-7(8(12)13)4-2-3-5-9/h7H,2-5,9H2,1H3,(H,10,11)(H,12,13)/t7-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C8H16N2O3/c1-6(11)10-7(8(12)13)4-2-3-5-9/h7H,2-5,9H2,1H3,(H,10,11)(H,12,13)/t7-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: aclys_m + - id: "aclys_m" - name: "Acetyl-L-Lysine" - - compartment: m - - formula: C8H16N2O3 + - compartment: "m" + - formula: "C8H16N2O3" - charge: 0 - - inchis: 1S/C8H16N2O3/c1-6(11)10-7(8(12)13)4-2-3-5-9/h7H,2-5,9H2,1H3,(H,10,11)(H,12,13)/t7-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C8H16N2O3/c1-6(11)10-7(8(12)13)4-2-3-5-9/h7H,2-5,9H2,1H3,(H,10,11)(H,12,13)/t7-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m02546s + - id: "m02546s" - name: "N-acetylornithine" - - compartment: s - - formula: C7H14N2O3 + - compartment: "s" + - formula: "C7H14N2O3" - charge: 0 - - inchis: 1S/C7H14N2O3/c1-5(10)9-6(7(11)12)3-2-4-8/h6H,2-4,8H2,1H3,(H,9,10)(H,11,12)/t6-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C7H14N2O3/c1-5(10)9-6(7(11)12)3-2-4-8/h6H,2-4,8H2,1H3,(H,9,10)(H,11,12)/t6-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: acthr_L_m + - id: "acthr_L_m" - name: "Acetyl-Threonine" - - compartment: m - - formula: C6H10NO4 + - compartment: "m" + - formula: "C6H10NO4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: acthr_L_c + - id: "acthr_L_c" - name: "Acetyl-Threonine" - - compartment: c - - formula: C6H10NO4 + - compartment: "c" + - formula: "C6H10NO4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: acthr_L_s + - id: "acthr_L_s" - name: "Acetyl-Threonine" - - compartment: s - - formula: C6H10NO4 + - compartment: "s" + - formula: "C6H10NO4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: adpac_s + - id: "adpac_s" - name: "Adipic Acid" - - compartment: s - - formula: C6H8O4 + - compartment: "s" + - formula: "C6H8O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: adpoh_s + - id: "adpoh_s" - name: "2-Hydroxyadipic Acid" - - compartment: s - - formula: C6H8O5 + - compartment: "s" + - formula: "C6H8O5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01313s + - id: "m01313s" - name: "allantoin" - - compartment: s - - formula: C4H6N4O3 + - compartment: "s" + - formula: "C4H6N4O3" - charge: 0 - - inchis: 1/C4H6N4O3/c5-3(10)6-1-2(9)8-4(11)7-1/h1H,(H3,5,6,10)(H2,7,8,9,11) - - metFrom: Recon3D + - inchis: "1/C4H6N4O3/c5-3(10)6-1-2(9)8-4(11)7-1/h1H,(H3,5,6,10)(H2,7,8,9,11)" + - metFrom: "Recon3D" - !!omap - - id: m02877s + - id: "m02877s" - name: "SAM" - - compartment: s - - formula: C15H23N6O5S + - compartment: "s" + - formula: "C15H23N6O5S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: and19one_s + - id: "and19one_s" - name: "19-Hydroxyandrost-4-Ene-3,17-Dione" - - compartment: s - - formula: C19H26O3 + - compartment: "s" + - formula: "C19H26O3" - charge: 0 - - inchis: 1/C19H26O3/c1-18-8-7-16-14(15(18)4-5-17(18)22)3-2-12-10-13(21)6-9-19(12,16)11-20/h10,14-16,20H,2-9,11H2,1H3/t14?,15?,16?,18-,19+/s2 - - metFrom: Recon3D + - inchis: "1/C19H26O3/c1-18-8-7-16-14(15(18)4-5-17(18)22)3-2-12-10-13(21)6-9-19(12,16)11-20/h10,14-16,20H,2-9,11H2,1H3/t14?,15?,16?,18-,19+/s2" + - metFrom: "Recon3D" - !!omap - - id: m02733s + - id: "m02733s" - name: "phosphatidate-LD-TAG pool" - - compartment: s - - formula: C5H5O8PR2 + - compartment: "s" + - formula: "C5H5O8PR2" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: aracheth_s + - id: "aracheth_s" - name: "O-Arachidonoyl Ethanolamine" - - compartment: s - - formula: C22H38NO2 + - compartment: "s" + - formula: "C22H38NO2" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01399s + - id: "m01399s" - name: "biliverdin" - - compartment: s - - formula: C33H32N4O6 + - compartment: "s" + - formula: "C33H32N4O6" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00169s + - id: "m00169s" - name: "(S)-2-aminobutanoate" - - compartment: s - - formula: C4H9NO2 + - compartment: "s" + - formula: "C4H9NO2" - charge: 0 - - inchis: 1S/C4H9NO2/c1-2-3(5)4(6)7/h3H,2,5H2,1H3,(H,6,7)/t3-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C4H9NO2/c1-2-3(5)4(6)7/h3H,2,5H2,1H3,(H,6,7)/t3-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m02540s + - id: "m02540s" - name: "N-acetylmethionine" - - compartment: s - - formula: C7H12NO3S + - compartment: "s" + - formula: "C7H12NO3S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00337s + - id: "m00337s" - name: "13(S)-HPODE" - - compartment: s - - formula: C18H31O4 + - compartment: "s" + - formula: "C18H31O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01040s + - id: "m01040s" - name: "5(S)-HETE" - - compartment: s - - formula: C20H31O3 + - compartment: "s" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02796s + - id: "m02796s" - name: "prostaglandin J2" - - compartment: s - - formula: C20H29O4 + - compartment: "s" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02395s + - id: "m02395s" - name: "lipoxin A4" - - compartment: s - - formula: C20H31O5 + - compartment: "s" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02396s + - id: "m02396s" - name: "lipoxin B4" - - compartment: s - - formula: C20H31O5 + - compartment: "s" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01335s + - id: "m01335s" - name: "anandamide" - - compartment: s - - formula: C22H37NO2 + - compartment: "s" + - formula: "C22H37NO2" - charge: 0 - - inchis: 1S/C22H37NO2/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-22(25)23-20-21-24/h6-7,9-10,12-13,15-16,24H,2-5,8,11,14,17-21H2,1H3,(H,23,25)/b7-6-,10-9-,13-12-,16-15- - - metFrom: Recon3D + - inchis: "1S/C22H37NO2/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-22(25)23-20-21-24/h6-7,9-10,12-13,15-16,24H,2-5,8,11,14,17-21H2,1H3,(H,23,25)/b7-6-,10-9-,13-12-,16-15-" + - metFrom: "Recon3D" - !!omap - - id: m01054s + - id: "m01054s" - name: "5,6-EET" - - compartment: s - - formula: C20H31O3 + - compartment: "s" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01209s + - id: "m01209s" - name: "8,9-EET" - - compartment: s - - formula: C20H31O3 + - compartment: "s" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00279s + - id: "m00279s" - name: "11,12-EET" - - compartment: s - - formula: C20H31O3 + - compartment: "s" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00366s + - id: "m00366s" - name: "14,15-EET" - - compartment: s - - formula: C20H31O3 + - compartment: "s" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01216s + - id: "m01216s" - name: "9(10)-EpOME" - - compartment: s - - formula: C18H31O3 + - compartment: "s" + - formula: "C18H31O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00305s + - id: "m00305s" - name: "12(13)-EpOME" - - compartment: s - - formula: C18H31O3 + - compartment: "s" + - formula: "C18H31O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01168s + - id: "m01168s" - name: "6-oxo-prostaglandin F1alpha" - - compartment: s - - formula: C20H33O6 + - compartment: "s" + - formula: "C20H33O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00308s + - id: "m00308s" - name: "12(S)-HHT" - - compartment: s - - formula: C17H27O3 + - compartment: "s" + - formula: "C17H27O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01087s + - id: "m01087s" - name: "5beta-cholestane-3alpha,7alpha,12alpha,24s,25-pentol" - - compartment: s - - formula: C27H48O5 + - compartment: "s" + - formula: "C27H48O5" - charge: 0 - - inchis: 1S/C27H48O5/c1-15(6-9-22(30)25(2,3)32)18-7-8-19-24-20(14-23(31)27(18,19)5)26(4)11-10-17(28)12-16(26)13-21(24)29/h15-24,28-32H,6-14H2,1-5H3/t15-,16+,17-,18-,19+,20+,21-,22+,23+,24+,26+,27-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C27H48O5/c1-15(6-9-22(30)25(2,3)32)18-7-8-19-24-20(14-23(31)27(18,19)5)26(4)11-10-17(28)12-16(26)13-21(24)29/h15-24,28-32H,6-14H2,1-5H3/t15-,16+,17-,18-,19+,20+,21-,22+,23+,24+,26+,27-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: CE1297_s + - id: "CE1297_s" - name: "8-Dehydrocholesterol" - - compartment: s - - formula: C27H44O + - compartment: "s" + - formula: "C27H44O" - charge: 0 - - inchis: 1S/C27H44O/c1-18(2)7-6-8-19(3)23-11-12-24-22-10-9-20-17-21(28)13-15-26(20,4)25(22)14-16-27(23,24)5/h9,18-19,21,23-24,28H,6-8,10-17H2,1-5H3/t19-,21+,23-,24+,26+,27-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C27H44O/c1-18(2)7-6-8-19(3)23-11-12-24-22-10-9-20-17-21(28)13-15-26(20,4)25(22)14-16-27(23,24)5/h9,18-19,21,23-24,28H,6-8,10-17H2,1-5H3/t19-,21+,23-,24+,26+,27-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m02530s + - id: "m02530s" - name: "N-acetyl-L-alanine" - - compartment: s - - formula: C5H8NO3 + - compartment: "s" + - formula: "C5H8NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02531s + - id: "m02531s" - name: "N-acetyl-L-asparagine" - - compartment: s - - formula: C6H9N2O4 + - compartment: "s" + - formula: "C6H9N2O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01392s + - id: "m01392s" - name: "beta-hydroxy-beta-methylbutyrate" - - compartment: s - - formula: C5H9O3 + - compartment: "s" + - formula: "C5H9O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00830s + - id: "m00830s" - name: "3-O-methyldopa" - - compartment: s - - formula: C10H13NO4 + - compartment: "s" + - formula: "C10H13NO4" - charge: 0 - - inchis: 1/C10H13NO4/c1-15-9-5-6(2-3-8(9)12)4-7(11)10(13)14/h2-3,5,7,12H,4,11H2,1H3,(H,13,14) - - metFrom: Recon3D + - inchis: "1/C10H13NO4/c1-15-9-5-6(2-3-8(9)12)4-7(11)10(13)14/h2-3,5,7,12H,4,11H2,1H3,(H,13,14)" + - metFrom: "Recon3D" - !!omap - - id: m01172s + - id: "m01172s" - name: "6-trans-LTB4" - - compartment: s - - formula: C20H31O4 + - compartment: "s" + - formula: "C20H31O4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE2516_s + - id: "CE2516_s" - name: "(8Z,11Z,14Z)-Eicosatrienoic Acid" - - compartment: s - - formula: C20H33O2 + - compartment: "s" + - formula: "C20H33O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00378s + - id: "m00378s" - name: "15(S)-HETrE" - - compartment: s - - formula: C20H33O3 + - compartment: "s" + - formula: "C20H33O3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: eidi1114ac_s + - id: "eidi1114ac_s" - name: "Cis,Cis-11,14-Eicosadienoic Acid" - - compartment: s - - formula: C20H35O2 + - compartment: "s" + - formula: "C20H35O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00384s + - id: "m00384s" - name: "15-deoxy-PGD2" - - compartment: s - - formula: C20H29O4 + - compartment: "s" + - formula: "C20H29O4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01337s + - id: "m01337s" - name: "androsterone sulfate" - - compartment: s - - formula: C19H29O5S + - compartment: "s" + - formula: "C19H29O5S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01047s + - id: "m01047s" - name: "5,12,20-TriHETE" - - compartment: s - - formula: C20H31O5 + - compartment: "s" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00376s + - id: "m00376s" - name: "15(S)-HEPE" - - compartment: s - - formula: C20H29O3 + - compartment: "s" + - formula: "C20H29O3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02365s + - id: "m02365s" - name: "leukotriene B5" - - compartment: s - - formula: C20H29O4 + - compartment: "s" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00365s + - id: "m00365s" - name: "14,15-DiHETE" - - compartment: s - - formula: C20H31O4 + - compartment: "s" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01616s + - id: "m01616s" - name: "cortisone" - - compartment: s - - formula: C21H28O5 + - compartment: "s" + - formula: "C21H28O5" - charge: 0 - - inchis: 1S/C21H28O5/c1-19-7-5-13(23)9-12(19)3-4-14-15-6-8-21(26,17(25)11-22)20(15,2)10-16(24)18(14)19/h9,14-15,18,22,26H,3-8,10-11H2,1-2H3/t14-,15-,18+,19-,20-,21-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C21H28O5/c1-19-7-5-13(23)9-12(19)3-4-14-15-6-8-21(26,17(25)11-22)20(15,2)10-16(24)18(14)19/h9,14-15,18,22,26H,3-8,10-11H2,1-2H3/t14-,15-,18+,19-,20-,21-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: didecaeth_s + - id: "didecaeth_s" - name: "C12:0-Ethanolamide, Didecanoyl Ethanolamide" - - compartment: s - - formula: C14H29NO2 + - compartment: "s" + - formula: "C14H29NO2" - charge: 0 - - inchis: 1S/C14H29NO2/c1-2-3-4-5-6-7-8-9-10-11-14(17)15-12-13-16/h16H,2-13H2,1H3,(H,15,17) - - metFrom: Recon3D + - inchis: "1S/C14H29NO2/c1-2-3-4-5-6-7-8-9-10-11-14(17)15-12-13-16/h16H,2-13H2,1H3,(H,15,17)" + - metFrom: "Recon3D" - !!omap - - id: diholineth_s + - id: "diholineth_s" - name: "Dihomo-Gamma-Linolenoyl Ethanolamide" - - compartment: s - - formula: C22H39NO2 + - compartment: "s" + - formula: "C22H39NO2" - charge: 0 - - inchis: 1S/C22H39NO2/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-22(25)23-20-21-24/h6-7,9-10,12-13,24H,2-5,8,11,14-21H2,1H3,(H,23,25)/b7-6+,10-9+,13-12+ - - metFrom: Recon3D + - inchis: "1S/C22H39NO2/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-22(25)23-20-21-24/h6-7,9-10,12-13,24H,2-5,8,11,14-21H2,1H3,(H,23,25)/b7-6+,10-9+,13-12+" + - metFrom: "Recon3D" - !!omap - - id: docohxeth_s + - id: "docohxeth_s" - name: "Docosahexaenoyl Ethanolamide" - - compartment: s - - formula: C24H37NO2 + - compartment: "s" + - formula: "C24H37NO2" - charge: 0 - - inchis: 1S/C24H37NO2/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-24(27)25-22-23-26/h3-4,6-7,9-10,12-13,15-16,18-19,26H,2,5,8,11,14,17,20-23H2,1H3,(H,25,27)/b4-3-,7-6-,10-9-,13-12-,16-15-,19-18- - - metFrom: Recon3D + - inchis: "1S/C24H37NO2/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-24(27)25-22-23-26/h3-4,6-7,9-10,12-13,15-16,18-19,26H,2,5,8,11,14,17,20-23H2,1H3,(H,25,27)/b4-3-,7-6-,10-9-,13-12-,16-15-,19-18-" + - metFrom: "Recon3D" - !!omap - - id: docteteth_s + - id: "docteteth_s" - name: "Docosatetraenoyl Ethanolamide (22:4, Delta 7, 10, 13, 16)" - - compartment: s - - formula: C24H41NO2 + - compartment: "s" + - formula: "C24H41NO2" - charge: 0 - - inchis: 1S/C24H41NO2/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-24(27)25-22-23-26/h6-7,9-10,12-13,15-16,26H,2-5,8,11,14,17-23H2,1H3,(H,25,27)/b7-6+,10-9+,13-12+,16-15+ - - metFrom: Recon3D + - inchis: "1S/C24H41NO2/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-24(27)25-22-23-26/h6-7,9-10,12-13,15-16,26H,2-5,8,11,14,17-23H2,1H3,(H,25,27)/b7-6+,10-9+,13-12+,16-15+" + - metFrom: "Recon3D" - !!omap - - id: dodecanac_s + - id: "dodecanac_s" - name: "Dodecanedioic Acid" - - compartment: s - - formula: C12H20O4 + - compartment: "s" + - formula: "C12H20O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02574s + - id: "m02574s" - name: "N-formimino-L-glutamate" - - compartment: s - - formula: C6H8N2O4 + - compartment: "s" + - formula: "C6H8N2O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02479s + - id: "m02479s" - name: "methylmalonate" - - compartment: s - - formula: C4H4O4 + - compartment: "s" + - formula: "C4H4O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hepdeceth_s + - id: "hepdeceth_s" - name: "Heptadecanoyl Thanolamide (C17:0)" - - compartment: s - - formula: C19H39NO2 + - compartment: "s" + - formula: "C19H39NO2" - charge: 0 - - inchis: 1S/C19H39NO2/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-19(22)20-17-18-21/h21H,2-18H2,1H3,(H,20,22) - - metFrom: Recon3D + - inchis: "1S/C19H39NO2/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-19(22)20-17-18-21/h21H,2-18H2,1H3,(H,20,22)" + - metFrom: "Recon3D" - !!omap - - id: hexdeceeth_s + - id: "hexdeceeth_s" - name: "Hexadecenoyl Ethanolamide, C16:1-Ethanolamide (Delta 9)" - - compartment: s - - formula: C18H35NO2 + - compartment: "s" + - formula: "C18H35NO2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hexdiac_s + - id: "hexdiac_s" - name: "Hexadecanediocacid" - - compartment: s - - formula: C16H28O4 + - compartment: "s" + - formula: "C16H28O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02135s + - id: "m02135s" - name: "homogentisate" - - compartment: s - - formula: C8H7O4 + - compartment: "s" + - formula: "C8H7O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hmcarn_s + - id: "hmcarn_s" - name: "Homocarnosine" - - compartment: s - - formula: C10H16N4O3 + - compartment: "s" + - formula: "C10H16N4O3" - charge: 0 - - inchis: 1S/C10H16N4O3/c11-3-1-2-9(15)14-8(10(16)17)4-7-5-12-6-13-7/h5-6,8H,1-4,11H2,(H,12,13)(H,14,15)(H,16,17)/t8-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C10H16N4O3/c11-3-1-2-9(15)14-8(10(16)17)4-7-5-12-6-13-7/h5-6,8H,1-4,11H2,(H,12,13)(H,14,15)(H,16,17)/t8-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: hmcr_s + - id: "hmcr_s" - name: "Homocitrulline" - - compartment: s - - formula: C7H15N3O3 + - compartment: "s" + - formula: "C7H15N3O3" - charge: 0 - - inchis: 1S/C7H15N3O3/c8-5(6(11)12)3-1-2-4-10-7(9)13/h5H,1-4,8H2,(H,11,12)(H3,9,10,13)/t5-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C7H15N3O3/c8-5(6(11)12)3-1-2-4-10-7(9)13/h5H,1-4,8H2,(H,11,12)(H3,9,10,13)/t5-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m02122s + - id: "m02122s" - name: "hexanoyl-CoA" - - compartment: s - - formula: C27H42N7O17P3S + - compartment: "s" + - formula: "C27H42N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00585s + - id: "m00585s" - name: "20-COOH-LTB4" - - compartment: s - - formula: C20H28O6 + - compartment: "s" + - formula: "C20H28O6" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00599s + - id: "m00599s" - name: "20-OH-LTB4" - - compartment: s - - formula: C20H31O5 + - compartment: "s" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lineth_s + - id: "lineth_s" - name: "Linoleoyl Ethanolamide" - - compartment: s - - formula: C20H37NO2 + - compartment: "s" + - formula: "C20H37NO2" - charge: 0 - - inchis: 1S/C20H37NO2/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-20(23)21-18-19-22/h6-7,9-10,22H,2-5,8,11-19H2,1H3,(H,21,23)/b7-6-,10-9- - - metFrom: Recon3D + - inchis: "1S/C20H37NO2/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-20(23)21-18-19-22/h6-7,9-10,22H,2-5,8,11-19H2,1H3,(H,21,23)/b7-6-,10-9-" + - metFrom: "Recon3D" - !!omap - - id: m02413s + - id: "m02413s" - name: "L-pipecolate" - - compartment: s - - formula: C6H11NO2 + - compartment: "s" + - formula: "C6H11NO2" - charge: 0 - - inchis: 1/C6H11NO2/c8-6(9)5-3-1-2-4-7-5/h5,7H,1-4H2,(H,8,9)/t5-/s2 - - metFrom: Recon3D + - inchis: "1/C6H11NO2/c8-6(9)5-3-1-2-4-7-5/h5,7H,1-4H2,(H,8,9)/t5-/s2" + - metFrom: "Recon3D" - !!omap - - id: m02343s + - id: "m02343s" - name: "lathosterol" - - compartment: s - - formula: C27H46O + - compartment: "s" + - formula: "C27H46O" - charge: 0 - - inchis: 1S/C27H46O/c1-18(2)7-6-8-19(3)23-11-12-24-22-10-9-20-17-21(28)13-15-26(20,4)25(22)14-16-27(23,24)5/h10,18-21,23-25,28H,6-9,11-17H2,1-5H3/t19-,20+,21+,23-,24+,25+,26+,27-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C27H46O/c1-18(2)7-6-8-19(3)23-11-12-24-22-10-9-20-17-21(28)13-15-26(20,4)25(22)14-16-27(23,24)5/h10,18-21,23-25,28H,6-9,11-17H2,1-5H3/t19-,20+,21+,23-,24+,25+,26+,27-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m00167s + - id: "m00167s" - name: "(R)-mevalonate" - - compartment: s - - formula: C6H11O4 + - compartment: "s" + - formula: "C6H11O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02173s + - id: "m02173s" - name: "inositol-1-phosphate" - - compartment: s - - formula: C6H11O9P + - compartment: "s" + - formula: "C6H11O9P" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02532s + - id: "m02532s" - name: "N-acetyl-L-aspartate" - - compartment: s - - formula: C6H7NO5 + - compartment: "s" + - formula: "C6H7NO5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02497s + - id: "m02497s" - name: "N-(omega)-hydroxyarginine" - - compartment: s - - formula: C6H15N4O3 + - compartment: "s" + - formula: "C6H15N4O3" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: oleth_s + - id: "oleth_s" - name: "Oleoyl Ethanolamide" - - compartment: s - - formula: C20H39NO2 + - compartment: "s" + - formula: "C20H39NO2" - charge: 0 - - inchis: 1S/C20H39NO2/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-20(23)21-18-19-22/h9-10,22H,2-8,11-19H2,1H3,(H,21,23)/b10-9- - - metFrom: Recon3D + - inchis: "1S/C20H39NO2/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-20(23)21-18-19-22/h9-10,22H,2-8,11-19H2,1H3,(H,21,23)/b10-9-" + - metFrom: "Recon3D" - !!omap - - id: m02381s + - id: "m02381s" - name: "L-hydroxylysine" - - compartment: s - - formula: C6H14N2O3 + - compartment: "s" + - formula: "C6H14N2O3" - charge: 0 - - inchis: 1/C6H14N2O3/c7-3-4(9)1-2-5(8)6(10)11/h4-5,9H,1-3,7-8H2,(H,10,11)/t4-,5+/s2 - - metFrom: Recon3D + - inchis: "1/C6H14N2O3/c7-3-4(9)1-2-5(8)6(10)11/h4-5,9H,1-3,7-8H2,(H,10,11)/t4-,5+/s2" + - metFrom: "Recon3D" - !!omap - - id: pendecaeth_s + - id: "pendecaeth_s" - name: "Pentadecanoyl Thanolamide (C15:0)" - - compartment: s - - formula: C17H35NO2 + - compartment: "s" + - formula: "C17H35NO2" - charge: 0 - - inchis: 1S/C17H35NO2/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-17(20)18-15-16-19/h19H,2-16H2,1H3,(H,18,20) - - metFrom: Recon3D + - inchis: "1S/C17H35NO2/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-17(20)18-15-16-19/h19H,2-16H2,1H3,(H,18,20)" + - metFrom: "Recon3D" - !!omap - - id: pmeth_s + - id: "pmeth_s" - name: "Palmitoylethanolamide" - - compartment: s - - formula: C18H37NO2 + - compartment: "s" + - formula: "C18H37NO2" - charge: 0 - - inchis: 1S/C18H37NO2/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-18(21)19-16-17-20/h20H,2-17H2,1H3,(H,19,21) - - metFrom: Recon3D + - inchis: "1S/C18H37NO2/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-18(21)19-16-17-20/h20H,2-17H2,1H3,(H,19,21)" + - metFrom: "Recon3D" - !!omap - - id: m02868s + - id: "m02868s" - name: "saccharopine" - - compartment: s - - formula: C11H19N2O6 + - compartment: "s" + - formula: "C11H19N2O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sebacid_s + - id: "sebacid_s" - name: "Sebacicacid" - - compartment: s - - formula: C10H16O4 + - compartment: "s" + - formula: "C10H16O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln180241_hs_s + - id: "sphmyln180241_hs_s" - name: "Sm (D18:0/24:1), Sphingomyelin" - - compartment: s - - formula: C47H96N2O6P + - compartment: "s" + - formula: "C47H96N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln18114_hs_s + - id: "sphmyln18114_hs_s" - name: "Sm (D18:1/14:0), Sphingomyelin" - - compartment: s - - formula: C37H76N2O6P + - compartment: "s" + - formula: "C37H76N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln18115_hs_s + - id: "sphmyln18115_hs_s" - name: "Sm (D18:1/15:0), Sphingomyelin" - - compartment: s - - formula: C38H78N2O6P + - compartment: "s" + - formula: "C38H78N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln18116_hs_s + - id: "sphmyln18116_hs_s" - name: "Sm (D18:1/16:0), Sphingomyelin" - - compartment: s - - formula: C39H80N2O6P + - compartment: "s" + - formula: "C39H80N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln181161_hs_s + - id: "sphmyln181161_hs_s" - name: "Sm (D18:1/16:1), Sphingomyelin" - - compartment: s - - formula: C39H78N2O6P + - compartment: "s" + - formula: "C39H78N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln18117_hs_s + - id: "sphmyln18117_hs_s" - name: "Sm (D18:1/17:0), Sphingomyelin" - - compartment: s - - formula: C40H82N2O6P + - compartment: "s" + - formula: "C40H82N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln18118_hs_s + - id: "sphmyln18118_hs_s" - name: "Sm (D18:1/18:0), Sphingomyelin" - - compartment: s - - formula: C41H84N2O6P + - compartment: "s" + - formula: "C41H84N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln181181_hs_s + - id: "sphmyln181181_hs_s" - name: "Sm (D18:1/18:1), Sphingomyelin" - - compartment: s - - formula: C41H82N2O6P + - compartment: "s" + - formula: "C41H82N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln18120_hs_s + - id: "sphmyln18120_hs_s" - name: "Sm (D18:1/20:0), Sphingomyelin" - - compartment: s - - formula: C43H88N2O6P + - compartment: "s" + - formula: "C43H88N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln181201_hs_s + - id: "sphmyln181201_hs_s" - name: "Sm (D18:1/20:1), Sphingomyelin" - - compartment: s - - formula: C43H86N2O6P + - compartment: "s" + - formula: "C43H86N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln18121_hs_s + - id: "sphmyln18121_hs_s" - name: "Sm (D18:1/21:0), Sphingomyelin" - - compartment: s - - formula: C44H90N2O6P + - compartment: "s" + - formula: "C44H90N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln18122_hs_s + - id: "sphmyln18122_hs_s" - name: "Sm (D18:1/22:0), Sphingomyelin" - - compartment: s - - formula: C45H92N2O6P + - compartment: "s" + - formula: "C45H92N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln181221_hs_s + - id: "sphmyln181221_hs_s" - name: "Sm (D18:1/22:1), Sphingomyelin" - - compartment: s - - formula: C45H90N2O6P + - compartment: "s" + - formula: "C45H90N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln18123_hs_s + - id: "sphmyln18123_hs_s" - name: "Sm (D18:1/23:0), Sphingomyelin" - - compartment: s - - formula: C46H94N2O6P + - compartment: "s" + - formula: "C46H94N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln1824_hs_s + - id: "sphmyln1824_hs_s" - name: "Sm (D18:0/24:0), Sphingomyelin" - - compartment: s - - formula: C47H98N2O6P + - compartment: "s" + - formula: "C47H98N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln1825_hs_s + - id: "sphmyln1825_hs_s" - name: "Sm (D18:0/25:0), Sphingomyelin" - - compartment: s - - formula: C48H100N2O6P + - compartment: "s" + - formula: "C48H100N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: steeth_s + - id: "steeth_s" - name: "Stearoyl Ethanolamide" - - compartment: s - - formula: C20H41NO2 + - compartment: "s" + - formula: "C20H41NO2" - charge: 0 - - inchis: 1S/C20H41NO2/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-20(23)21-18-19-22/h22H,2-19H2,1H3,(H,21,23) - - metFrom: Recon3D + - inchis: "1S/C20H41NO2/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-20(23)21-18-19-22/h22H,2-19H2,1H3,(H,21,23)" + - metFrom: "Recon3D" - !!omap - - id: subeac_s + - id: "subeac_s" - name: "Suberic Acid" - - compartment: s - - formula: C8H12O4 + - compartment: "s" + - formula: "C8H12O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tetdeca511ac_s + - id: "tetdeca511ac_s" - name: "Cia-5,8, Tetradecadienoic Acid" - - compartment: s - - formula: C14H23O2 + - compartment: "s" + - formula: "C14H23O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tetdecaeth_s + - id: "tetdecaeth_s" - name: "C14:0-Ethanolamide, Tetradecanoyl Ethanolamide" - - compartment: s - - formula: C16H33NO2 + - compartment: "s" + - formula: "C16H33NO2" - charge: 0 - - inchis: 1S/C16H33NO2/c1-2-3-4-5-6-7-8-9-10-11-12-13-16(19)17-14-15-18/h18H,2-15H2,1H3,(H,17,19) - - metFrom: Recon3D + - inchis: "1S/C16H33NO2/c1-2-3-4-5-6-7-8-9-10-11-12-13-16(19)17-14-15-18/h18H,2-15H2,1H3,(H,17,19)" + - metFrom: "Recon3D" - !!omap - - id: m02992s + - id: "m02992s" - name: "threonate" - - compartment: s - - formula: C4H7O5 + - compartment: "s" + - formula: "C4H7O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02517s + - id: "m02517s" - name: "N6,N6,N6-trimethyl-L-lysine" - - compartment: s - - formula: C9H20N2O2 + - compartment: "s" + - formula: "C9H20N2O2" - charge: 0 - - inchis: 1S/C9H20N2O2/c1-11(2,3)7-5-4-6-8(10)9(12)13/h8H,4-7,10H2,1-3H3/t8-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C9H20N2O2/c1-11(2,3)7-5-4-6-8(10)9(12)13/h8H,4-7,10H2,1-3H3/t8-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: trideceth_s + - id: "trideceth_s" - name: "Tridecanoyl Thanolamide (C13:0)" - - compartment: s - - formula: C15H31NO2 + - compartment: "s" + - formula: "C15H31NO2" - charge: 0 - - inchis: 1S/C15H31NO2/c1-2-3-4-5-6-7-8-9-10-11-12-15(18)16-13-14-17/h17H,2-14H2,1H3,(H,16,18) - - metFrom: Recon3D + - inchis: "1S/C15H31NO2/c1-2-3-4-5-6-7-8-9-10-11-12-15(18)16-13-14-17/h17H,2-14H2,1H3,(H,16,18)" + - metFrom: "Recon3D" - !!omap - - id: txb2_s + - id: "txb2_s" - name: "Thromboxane B2" - - compartment: s - - formula: C20H33O6 + - compartment: "s" + - formula: "C20H33O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m03124s + - id: "m03124s" - name: "urocanate" - - compartment: s - - formula: C6H5N2O2 + - compartment: "s" + - formula: "C6H5N2O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: xolest182_hs_s + - id: "xolest182_hs_s" - name: "1-Linoleoyl-Cholesterol, Cholesterol-Ester (18:2, Delta 9, 12)" - - compartment: s - - formula: C45H76O2 + - compartment: "s" + - formula: "C45H76O2" - charge: 0 - - inchis: 1/C45H76O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-25-43(46)47-38-30-32-44(5)37(34-38)26-27-39-41-29-28-40(36(4)24-22-23-35(2)3)45(41,6)33-31-42(39)44/h11-12,14-15,26,35-36,38-42H,7-10,13,16-25,27-34H2,1-6H3/b12-11-,15-14+/t36-,38+,39+,40-,41+,42+,44+,45-/s2 - - metFrom: Recon3D + - inchis: "1/C45H76O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-25-43(46)47-38-30-32-44(5)37(34-38)26-27-39-41-29-28-40(36(4)24-22-23-35(2)3)45(41,6)33-31-42(39)44/h11-12,14-15,26,35-36,38-42H,7-10,13,16-25,27-34H2,1-6H3/b12-11-,15-14+/t36-,38+,39+,40-,41+,42+,44+,45-/s2" + - metFrom: "Recon3D" - !!omap - - id: m01909s + - id: "m01909s" - name: "galactitol" - - compartment: s - - formula: C6H14O6 + - compartment: "s" + - formula: "C6H14O6" - charge: 0 - - inchis: 1S/C6H14O6/c7-1-3(9)5(11)6(12)4(10)2-8/h3-12H,1-2H2/t3-,4+,5+,6- - - metFrom: Recon3D + - inchis: "1S/C6H14O6/c7-1-3(9)5(11)6(12)4(10)2-8/h3-12H,1-2H2/t3-,4+,5+,6-" + - metFrom: "Recon3D" - !!omap - - id: glyc2p_s + - id: "glyc2p_s" - name: "Glycerol 2-Phosphate" - - compartment: s - - formula: C3H7O6P + - compartment: "s" + - formula: "C3H7O6P" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01998s + - id: "m01998s" - name: "glycolate" - - compartment: s - - formula: C2H3O3 + - compartment: "s" + - formula: "C2H3O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hpppn_s + - id: "3hpppn_s" - name: "3-(3-Hydroxy-Phenyl)Propionate" - - compartment: s - - formula: C9H9O3 + - compartment: "s" + - formula: "C9H9O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hxa_m + - id: "hxa_m" - name: "Hexanoate (N-C6:0)" - - compartment: m - - formula: C6H11O2 + - compartment: "m" + - formula: "C6H11O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hxa_p + - id: "hxa_p" - name: "Hexanoate (N-C6:0)" - - compartment: p - - formula: C6H11O2 + - compartment: "p" + - formula: "C6H11O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02169s + - id: "m02169s" - name: "indoleacetate" - - compartment: s - - formula: C10H8NO2 + - compartment: "s" + - formula: "C10H8NO2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02350s + - id: "m02350s" - name: "L-cysteate" - - compartment: s - - formula: C3H6NO5S + - compartment: "s" + - formula: "C3H6NO5S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02413c + - id: "m02413c" - name: "L-pipecolate" - - compartment: c - - formula: C6H11NO2 + - compartment: "c" + - formula: "C6H11NO2" - charge: 0 - - inchis: 1/C6H11NO2/c8-6(9)5-3-1-2-4-7-5/h5,7H,1-4H2,(H,8,9)/t5-/s2 - - metFrom: Recon3D + - inchis: "1/C6H11NO2/c8-6(9)5-3-1-2-4-7-5/h5,7H,1-4H2,(H,8,9)/t5-/s2" + - metFrom: "Recon3D" - !!omap - - id: m02633s + - id: "m02633s" - name: "OAA" - - compartment: s - - formula: C4H2O5 + - compartment: "s" + - formula: "C4H2O5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02720s + - id: "m02720s" - name: "phenylacetate" - - compartment: s - - formula: C8H7O2 + - compartment: "s" + - formula: "C8H7O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00916s + - id: "m00916s" - name: "3-phosphoserine" - - compartment: s - - formula: C3H6NO6P + - compartment: "s" + - formula: "C3H6NO6P" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02868c + - id: "m02868c" - name: "saccharopine" - - compartment: c - - formula: C11H19N2O6 + - compartment: "c" + - formula: "C11H19N2O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: txb2_c + - id: "txb2_c" - name: "Thromboxane B2" - - compartment: c - - formula: C20H33O6 + - compartment: "c" + - formula: "C20H33O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: acile_L_m + - id: "acile_L_m" - name: "Acetyl Isoleucine (Chemspider Id: 9964364)" - - compartment: m - - formula: C8H14NO3 + - compartment: "m" + - formula: "C8H14NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: acile_L_c + - id: "acile_L_c" - name: "Acetyl Isoleucine (Chemspider Id: 9964364)" - - compartment: c - - formula: C8H14NO3 + - compartment: "c" + - formula: "C8H14NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: acile_L_s + - id: "acile_L_s" - name: "Acetyl Isoleucine (Chemspider Id: 9964364)" - - compartment: s - - formula: C8H14NO3 + - compartment: "s" + - formula: "C8H14NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: acleu_L_m + - id: "acleu_L_m" - name: "N-Acetylleucine" - - compartment: m - - formula: C8H14NO3 + - compartment: "m" + - formula: "C8H14NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: acleu_L_c + - id: "acleu_L_c" - name: "N-Acetylleucine" - - compartment: c - - formula: C8H14NO3 + - compartment: "c" + - formula: "C8H14NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: acleu_L_s + - id: "acleu_L_s" - name: "N-Acetylleucine" - - compartment: s - - formula: C8H14NO3 + - compartment: "s" + - formula: "C8H14NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: achom_L_m + - id: "achom_L_m" - name: "Acetylhomoserine" - - compartment: m - - formula: C6H10NO4 + - compartment: "m" + - formula: "C6H10NO4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: achom_L_c + - id: "achom_L_c" - name: "Acetylhomoserine" - - compartment: c - - formula: C6H10NO4 + - compartment: "c" + - formula: "C6H10NO4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: achom_L_s + - id: "achom_L_s" - name: "Acetylhomoserine" - - compartment: s - - formula: C6H10NO4 + - compartment: "s" + - formula: "C6H10NO4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: phacgly_s + - id: "phacgly_s" - name: "Phenylacetylglycine_phacgly" - - compartment: s - - formula: C10H10NO3 + - compartment: "s" + - formula: "C10H10NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02136m + - id: "m02136m" - name: "homoserine" - - compartment: m - - formula: C4H9NO3 + - compartment: "m" + - formula: "C4H9NO3" - charge: 0 - - inchis: 1S/C4H9NO3/c5-3(1-2-6)4(7)8/h3,6H,1-2,5H2,(H,7,8)/t3-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C4H9NO3/c5-3(1-2-6)4(7)8/h3,6H,1-2,5H2,(H,7,8)/t3-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: urscholcoa_c + - id: "urscholcoa_c" - name: "Ursodeoxycholyl Coenzyme A" - - compartment: c - - formula: C45H70N7O19P3S + - compartment: "c" + - formula: "C45H70N7O19P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 7klitchol_c + - id: "7klitchol_c" - name: "7-Ketolithocholate" - - compartment: c - - formula: C24H37O4 + - compartment: "c" + - formula: "C24H37O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01380m + - id: "m01380m" - name: "benzoate" - - compartment: m - - formula: C7H5O2 + - compartment: "m" + - formula: "C7H5O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: bzcoa_m + - id: "bzcoa_m" - name: "Benzoyl Coenzyme A" - - compartment: m - - formula: C28H36N7O17P3S + - compartment: "m" + - formula: "C28H36N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02123m + - id: "m02123m" - name: "hippurate" - - compartment: m - - formula: C9H8NO3 + - compartment: "m" + - formula: "C9H8NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02721m + - id: "m02721m" - name: "phenylacetyl-CoA" - - compartment: m - - formula: C29H38N7O17P3S + - compartment: "m" + - formula: "C29H38N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pheacgly_m + - id: "pheacgly_m" - name: "Phenylacetylglycine" - - compartment: m - - formula: C10H10NO3 + - compartment: "m" + - formula: "C10H10NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pheacgly_c + - id: "pheacgly_c" - name: "Phenylacetylglycine" - - compartment: c - - formula: C10H10NO3 + - compartment: "c" + - formula: "C10H10NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pheacgly_s + - id: "pheacgly_s" - name: "Phenylacetylglycine" - - compartment: s - - formula: C10H10NO3 + - compartment: "s" + - formula: "C10H10NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcresol_c + - id: "pcresol_c" - name: "P-Cresol" - - compartment: c - - formula: C7H7O + - compartment: "c" + - formula: "C7H7O" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcs_c + - id: "pcs_c" - name: "P-Cresol Sulfate" - - compartment: c - - formula: C7H7O4S + - compartment: "c" + - formula: "C7H7O4S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: indole_c + - id: "indole_c" - name: "Indole" - - compartment: c - - formula: C8H7N + - compartment: "c" + - formula: "C8H7N" - charge: 0 - - inchis: 1S/C8H7N/c1-2-4-8-7(3-1)5-6-9-8/h1-6,9H - - metFrom: Recon3D + - inchis: "1S/C8H7N/c1-2-4-8-7(3-1)5-6-9-8/h1-6,9H" + - metFrom: "Recon3D" - !!omap - - id: indoxyl_c + - id: "indoxyl_c" - name: "Indoxyl" - - compartment: c - - formula: C8H6NO + - compartment: "c" + - formula: "C8H6NO" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: inds_c + - id: "inds_c" - name: "Indoxyl Sulfate" - - compartment: c - - formula: C8H6NO4S + - compartment: "c" + - formula: "C8H6NO4S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: indole_s + - id: "indole_s" - name: "Indole" - - compartment: s - - formula: C8H7N + - compartment: "s" + - formula: "C8H7N" - charge: 0 - - inchis: 1S/C8H7N/c1-2-4-8-7(3-1)5-6-9-8/h1-6,9H - - metFrom: Recon3D + - inchis: "1S/C8H7N/c1-2-4-8-7(3-1)5-6-9-8/h1-6,9H" + - metFrom: "Recon3D" - !!omap - - id: inds_s + - id: "inds_s" - name: "Indoxyl Sulfate" - - compartment: s - - formula: C8H6NO4S + - compartment: "s" + - formula: "C8H6NO4S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcresol_s + - id: "pcresol_s" - name: "P-Cresol" - - compartment: s - - formula: C7H7O + - compartment: "s" + - formula: "C7H7O" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcs_s + - id: "pcs_s" - name: "P-Cresol Sulfate" - - compartment: s - - formula: C7H7O4S + - compartment: "s" + - formula: "C7H7O4S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hcinnm_s + - id: "3hcinnm_s" - name: "3-Hydroxycinnamic Acid" - - compartment: s - - formula: C9H7O3 + - compartment: "s" + - formula: "C9H7O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hcinnm_c + - id: "3hcinnm_c" - name: "3-Hydroxycinnamic Acid" - - compartment: c - - formula: C9H7O3 + - compartment: "c" + - formula: "C9H7O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hppa_s + - id: "3hppa_s" - name: "3-Hydroxyphenylpropionic Acid (3-Hppa)" - - compartment: s - - formula: C9H9O3 + - compartment: "s" + - formula: "C9H9O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hppa_c + - id: "3hppa_c" - name: "3-Hydroxyphenylpropionic Acid (3-Hppa)" - - compartment: c - - formula: C9H9O3 + - compartment: "c" + - formula: "C9H9O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02622s + - id: "m02622s" - name: "normetanephrine" - - compartment: s - - formula: C9H14NO3 + - compartment: "s" + - formula: "C9H14NO3" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00400s + - id: "m00400s" - name: "16alpha-hydroxyestrone" - - compartment: s - - formula: C18H22O3 + - compartment: "s" + - formula: "C18H22O3" - charge: 0 - - inchis: 1S/C18H22O3/c1-18-7-6-13-12-5-3-11(19)8-10(12)2-4-14(13)15(18)9-16(20)17(18)21/h3,5,8,13-16,19-20H,2,4,6-7,9H2,1H3/t13-,14-,15+,16-,18+/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C18H22O3/c1-18-7-6-13-12-5-3-11(19)8-10(12)2-4-14(13)15(18)9-16(20)17(18)21/h3,5,8,13-16,19-20H,2,4,6-7,9H2,1H3/t13-,14-,15+,16-,18+/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m01698s + - id: "m01698s" - name: "dihydrobiopterin" - - compartment: s - - formula: C9H13N5O3 + - compartment: "s" + - formula: "C9H13N5O3" - charge: 0 - - inchis: 1/C9H13N5O3/c1-3(15)6(16)4-2-11-7-5(12-4)8(17)14-9(10)13-7/h3-4,6,15-16H,2H2,1H3,(H3,10,11,13,14,17) - - metFrom: Recon3D + - inchis: "1/C9H13N5O3/c1-3(15)6(16)4-2-11-7-5(12-4)8(17)14-9(10)13-7/h3-4,6,15-16H,2H2,1H3,(H3,10,11,13,14,17)" + - metFrom: "Recon3D" - !!omap - - id: m02978s + - id: "m02978s" - name: "tetrahydrobiopterin" - - compartment: s - - formula: C9H15N5O3 + - compartment: "s" + - formula: "C9H15N5O3" - charge: 0 - - inchis: 1/C9H15N5O3/c1-3(15)6(16)4-2-11-7-5(12-4)8(17)14-9(10)13-7/h3-4,6,12,15-16H,2H2,1H3,(H4,10,11,13,14,17) - - metFrom: Recon3D + - inchis: "1/C9H15N5O3/c1-3(15)6(16)4-2-11-7-5(12-4)8(17)14-9(10)13-7/h3-4,6,12,15-16H,2H2,1H3,(H4,10,11,13,14,17)" + - metFrom: "Recon3D" - !!omap - - id: alaargcys_s + - id: "alaargcys_s" - name: "Alanyl-Arginyl-Cysteine" - - compartment: s - - formula: C12H25N6O4S + - compartment: "s" + - formula: "C12H25N6O4S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: alaarggly_s + - id: "alaarggly_s" - name: "Alanyl-Arginyl-Glycine" - - compartment: s - - formula: C11H23N6O4 + - compartment: "s" + - formula: "C11H23N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: alaasnleu_s + - id: "alaasnleu_s" - name: "Alanyl-Asparaginyl-Leucine" - - compartment: s - - formula: C13H24N4O5 + - compartment: "s" + - formula: "C13H24N4O5" - charge: 0 - - inchis: 1/C13H24N4O5/c1-6(2)4-9(13(21)22)17-12(20)8(5-10(15)18)16-11(19)7(3)14/h6-9H,4-5,14H2,1-3H3,(H2,15,18)(H,16,19)(H,17,20)(H,21,22) - - metFrom: Recon3D + - inchis: "1/C13H24N4O5/c1-6(2)4-9(13(21)22)17-12(20)8(5-10(15)18)16-11(19)7(3)14/h6-9H,4-5,14H2,1-3H3,(H2,15,18)(H,16,19)(H,17,20)(H,21,22)" + - metFrom: "Recon3D" - !!omap - - id: alaglylys_s + - id: "alaglylys_s" - name: "Alanyl-Glycyl-Lysine" - - compartment: s - - formula: C11H23N4O4 + - compartment: "s" + - formula: "C11H23N4O4" - charge: 2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: alahisala_s + - id: "alahisala_s" - name: "Alanyl-Histidyl-Alanine" - - compartment: s - - formula: C12H19N5O4 + - compartment: "s" + - formula: "C12H19N5O4" - charge: 0 - - inchis: 1S/C12H19N5O4/c1-6(13)10(18)17-9(3-8-4-14-5-15-8)11(19)16-7(2)12(20)21/h4-7,9H,3,13H2,1-2H3,(H,14,15)(H,16,19)(H,17,18)(H,20,21)/t6-,7-,9-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C12H19N5O4/c1-6(13)10(18)17-9(3-8-4-14-5-15-8)11(19)16-7(2)12(20)21/h4-7,9H,3,13H2,1-2H3,(H,14,15)(H,16,19)(H,17,18)(H,20,21)/t6-,7-,9-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: alalysthr_s + - id: "alalysthr_s" - name: "Alanyl-Lysine-Threonine" - - compartment: s - - formula: C13H27N4O5 + - compartment: "s" + - formula: "C13H27N4O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argalaala_s + - id: "argalaala_s" - name: "Arginyl-Alanyl-Alanine" - - compartment: s - - formula: C12H25N6O4 + - compartment: "s" + - formula: "C12H25N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argalaphe_s + - id: "argalaphe_s" - name: "Arginyl-Alanine-Phenylalanine" - - compartment: s - - formula: C18H29N6O4 + - compartment: "s" + - formula: "C18H29N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argalathr_s + - id: "argalathr_s" - name: "Arginyl-Alanyl-Threonine" - - compartment: s - - formula: C13H27N6O5 + - compartment: "s" + - formula: "C13H27N6O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argarg_s + - id: "argarg_s" - name: "Arginyl-Arginine" - - compartment: s - - formula: C12H28N8O3 + - compartment: "s" + - formula: "C12H28N8O3" - charge: 2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argarglys_s + - id: "argarglys_s" - name: "Arginyl-Arginyl-Lysine" - - compartment: s - - formula: C18H41N10O4 + - compartment: "s" + - formula: "C18H41N10O4" - charge: 3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argargmet_s + - id: "argargmet_s" - name: "Arginyl-Arginyl-Metheonine" - - compartment: s - - formula: C17H37N9O4S + - compartment: "s" + - formula: "C17H37N9O4S" - charge: 2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argcysgly_s + - id: "argcysgly_s" - name: "Arginyl-Cystinyl-Glycine" - - compartment: s - - formula: C11H23N6O4S + - compartment: "s" + - formula: "C11H23N6O4S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argcysser_s + - id: "argcysser_s" - name: "Arginyl-Cystinyl-Serine" - - compartment: s - - formula: C12H25N6O5S + - compartment: "s" + - formula: "C12H25N6O5S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: arggluglu_s + - id: "arggluglu_s" - name: "Arginyl-Glutamyl-Glutamate" - - compartment: s - - formula: C16H27N6O8 + - compartment: "s" + - formula: "C16H27N6O8" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argglupro_s + - id: "argglupro_s" - name: "Arginyl-Glutamyl-Proline" - - compartment: s - - formula: C16H28N6O6 + - compartment: "s" + - formula: "C16H28N6O6" - charge: 0 - - inchis: 1/C16H28N6O6/c17-9(3-1-7-20-16(18)19)13(25)21-10(5-6-12(23)24)14(26)22-8-2-4-11(22)15(27)28/h9-11H,1-8,17H2,(H,21,25)(H,23,24)(H,27,28)(H4,18,19,20)/t9-,10+,11-/s2 - - metFrom: Recon3D + - inchis: "1/C16H28N6O6/c17-9(3-1-7-20-16(18)19)13(25)21-10(5-6-12(23)24)14(26)22-8-2-4-11(22)15(27)28/h9-11H,1-8,17H2,(H,21,25)(H,23,24)(H,27,28)(H4,18,19,20)/t9-,10+,11-/s2" + - metFrom: "Recon3D" - !!omap - - id: argglygly_s + - id: "argglygly_s" - name: "Arginyl-Glycyl-Glycine" - - compartment: s - - formula: C10H21N6O4 + - compartment: "s" + - formula: "C10H21N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: arghisthr_s + - id: "arghisthr_s" - name: "Arginyl-Histidyl-Threonine" - - compartment: s - - formula: C16H29N8O5 + - compartment: "s" + - formula: "C16H29N8O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argleuphe_s + - id: "argleuphe_s" - name: "Arginyl-Leucyl-Phenylalanine" - - compartment: s - - formula: C21H35N6O4 + - compartment: "s" + - formula: "C21H35N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: arglysasp_s + - id: "arglysasp_s" - name: "Arginyl-Lysyl-Aspartate" - - compartment: s - - formula: C16H32N7O6 + - compartment: "s" + - formula: "C16H32N7O6" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argphearg_s + - id: "argphearg_s" - name: "Arginyl-Phenylalanine-Arginine" - - compartment: s - - formula: C21H37N9O4 + - compartment: "s" + - formula: "C21H37N9O4" - charge: 2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argpromet_s + - id: "argpromet_s" - name: "Arginyl-Prolyl-Methionine" - - compartment: s - - formula: C16H31N6O4S + - compartment: "s" + - formula: "C16H31N6O4S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argprothr_s + - id: "argprothr_s" - name: "Arginyl-Prolyl-Threonine" - - compartment: s - - formula: C15H29N6O5 + - compartment: "s" + - formula: "C15H29N6O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argserser_s + - id: "argserser_s" - name: "Arginyl-Seryl-Serine" - - compartment: s - - formula: C12H25N6O6 + - compartment: "s" + - formula: "C12H25N6O6" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argtyrval_s + - id: "argtyrval_s" - name: "Argtyrval" - - compartment: s - - formula: C20H33N6O5 + - compartment: "s" + - formula: "C20H33N6O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argvalcys_s + - id: "argvalcys_s" - name: "Arginyl-Valyl-Cysteine" - - compartment: s - - formula: C14H29N6O4S + - compartment: "s" + - formula: "C14H29N6O4S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argvaltrp_s + - id: "argvaltrp_s" - name: "Arginyl-Valyl-Tryptophan" - - compartment: s - - formula: C22H34N7O4 + - compartment: "s" + - formula: "C22H34N7O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: asnasnarg_s + - id: "asnasnarg_s" - name: "Asparaginyl-Asparaginyl-Arginine" - - compartment: s - - formula: C14H27N8O6 + - compartment: "s" + - formula: "C14H27N8O6" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: asncyscys_s + - id: "asncyscys_s" - name: "Asparaginyl-Cysteinyl-Cysteine" - - compartment: s - - formula: C10H18N4O5S2 + - compartment: "s" + - formula: "C10H18N4O5S2" - charge: 0 - - inchis: 1S/C10H18N4O5S2/c11-4(1-7(12)15)8(16)13-5(2-20)9(17)14-6(3-21)10(18)19/h4-6,20-21H,1-3,11H2,(H2,12,15)(H,13,16)(H,14,17)(H,18,19)/t4-,5-,6-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C10H18N4O5S2/c11-4(1-7(12)15)8(16)13-5(2-20)9(17)14-6(3-21)10(18)19/h4-6,20-21H,1-3,11H2,(H2,12,15)(H,13,16)(H,14,17)(H,18,19)/t4-,5-,6-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: asnmetpro_s + - id: "asnmetpro_s" - name: "Asparaginyl-Methionyl-Proline" - - compartment: s - - formula: C14H24N4O5S + - compartment: "s" + - formula: "C14H24N4O5S" - charge: 0 - - inchis: 1/C14H24N4O5S/c1-24-6-4-9(17-12(20)8(15)7-11(16)19)13(21)18-5-2-3-10(18)14(22)23/h8-10H,2-7,15H2,1H3,(H2,16,19)(H,17,20)(H,22,23)/t8-,9+,10?/s2 - - metFrom: Recon3D + - inchis: "1/C14H24N4O5S/c1-24-6-4-9(17-12(20)8(15)7-11(16)19)13(21)18-5-2-3-10(18)14(22)23/h8-10H,2-7,15H2,1H3,(H2,16,19)(H,17,20)(H,22,23)/t8-,9+,10?/s2" + - metFrom: "Recon3D" - !!omap - - id: asnpheasp_s + - id: "asnpheasp_s" - name: "Asparaginyl-Phenylalanyl-Aspartate" - - compartment: s - - formula: C17H21N4O7 + - compartment: "s" + - formula: "C17H21N4O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: asnphecys_s + - id: "asnphecys_s" - name: "Asparaginyl-Phenylalanyl-Cysteine" - - compartment: s - - formula: C16H22N4O5S + - compartment: "s" + - formula: "C16H22N4O5S" - charge: 0 - - inchis: 1/C16H22N4O5S/c17-10(7-13(18)21)14(22)19-11(6-9-4-2-1-3-5-9)15(23)20-12(8-26)16(24)25/h1-5,10-12,26H,6-8,17H2,(H2,18,21)(H,19,22)(H,20,23)(H,24,25)/t10-,11+,12-/s2 - - metFrom: Recon3D + - inchis: "1/C16H22N4O5S/c17-10(7-13(18)21)14(22)19-11(6-9-4-2-1-3-5-9)15(23)20-12(8-26)16(24)25/h1-5,10-12,26H,6-8,17H2,(H2,18,21)(H,19,22)(H,20,23)(H,24,25)/t10-,11+,12-/s2" + - metFrom: "Recon3D" - !!omap - - id: asntyrgly_s + - id: "asntyrgly_s" - name: "Asparaginyl-Tyrosyl-Glycine" - - compartment: s - - formula: C15H20N4O6 + - compartment: "s" + - formula: "C15H20N4O6" - charge: 0 - - inchis: 1/C15H20N4O6/c16-10(6-12(17)21)14(24)19-11(15(25)18-7-13(22)23)5-8-1-3-9(20)4-2-8/h1-4,10-11,20H,5-7,16H2,(H2,17,21)(H,18,25)(H,19,24)(H,22,23)/t10-,11+/s2 - - metFrom: Recon3D + - inchis: "1/C15H20N4O6/c16-10(6-12(17)21)14(24)19-11(15(25)18-7-13(22)23)5-8-1-3-9(20)4-2-8/h1-4,10-11,20H,5-7,16H2,(H2,17,21)(H,18,25)(H,19,24)(H,22,23)/t10-,11+/s2" + - metFrom: "Recon3D" - !!omap - - id: asntyrphe_s + - id: "asntyrphe_s" - name: "Asparaginyl-Tyrosyl-Phenylalanine" - - compartment: s - - formula: C22H26N4O6 + - compartment: "s" + - formula: "C22H26N4O6" - charge: 0 - - inchis: 1/C22H26N4O6/c23-16(12-19(24)28)20(29)25-17(10-14-6-8-15(27)9-7-14)21(30)26-18(22(31)32)11-13-4-2-1-3-5-13/h1-9,16-18,27H,10-12,23H2,(H2,24,28)(H,25,29)(H,26,30)(H,31,32)/t16-,17+,18-/s2 - - metFrom: Recon3D + - inchis: "1/C22H26N4O6/c23-16(12-19(24)28)20(29)25-17(10-14-6-8-15(27)9-7-14)21(30)26-18(22(31)32)11-13-4-2-1-3-5-13/h1-9,16-18,27H,10-12,23H2,(H2,24,28)(H,25,29)(H,26,30)(H,31,32)/t16-,17+,18-/s2" + - metFrom: "Recon3D" - !!omap - - id: asntyrthr_s + - id: "asntyrthr_s" - name: "Asparaginyl-Tyrosyl-Threonine" - - compartment: s - - formula: C17H24N4O7 + - compartment: "s" + - formula: "C17H24N4O7" - charge: 0 - - inchis: 1/C17H24N4O7/c1-8(22)14(17(27)28)21-16(26)12(6-9-2-4-10(23)5-3-9)20-15(25)11(18)7-13(19)24/h2-5,8,11-12,14,22-23H,6-7,18H2,1H3,(H2,19,24)(H,20,25)(H,21,26)(H,27,28)/t8-,11+,12-,14+/s2 - - metFrom: Recon3D + - inchis: "1/C17H24N4O7/c1-8(22)14(17(27)28)21-16(26)12(6-9-2-4-10(23)5-3-9)20-15(25)11(18)7-13(19)24/h2-5,8,11-12,14,22-23H,6-7,18H2,1H3,(H2,19,24)(H,20,25)(H,21,26)(H,27,28)/t8-,11+,12-,14+/s2" + - metFrom: "Recon3D" - !!omap - - id: aspalaarg_s + - id: "aspalaarg_s" - name: "Asparaginyl-Alanyl-Arginine" - - compartment: s - - formula: C13H24N6O6 + - compartment: "s" + - formula: "C13H24N6O6" - charge: 0 - - inchis: 1/C13H24N6O6/c1-6(18-11(23)7(14)5-9(20)21)10(22)19-8(12(24)25)3-2-4-17-13(15)16/h6-8H,2-5,14H2,1H3,(H,18,23)(H,19,22)(H,20,21)(H,24,25)(H4,15,16,17)/t6-,7+,8+/s2 - - metFrom: Recon3D + - inchis: "1/C13H24N6O6/c1-6(18-11(23)7(14)5-9(20)21)10(22)19-8(12(24)25)3-2-4-17-13(15)16/h6-8H,2-5,14H2,1H3,(H,18,23)(H,19,22)(H,20,21)(H,24,25)(H4,15,16,17)/t6-,7+,8+/s2" + - metFrom: "Recon3D" - !!omap - - id: aspasnglu_s + - id: "aspasnglu_s" - name: "Aspartyl-Asparaginyl-Glutamate" - - compartment: s - - formula: C13H18N4O9 + - compartment: "s" + - formula: "C13H18N4O9" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: aspglu_s + - id: "aspglu_s" - name: "Aspartyl-Glutamate" - - compartment: s - - formula: C9H12N2O7 + - compartment: "s" + - formula: "C9H12N2O7" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: aspglupro_s + - id: "aspglupro_s" - name: "Aspartyl-Glutamyl-Proline" - - compartment: s - - formula: C14H19N3O8 + - compartment: "s" + - formula: "C14H19N3O8" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: aspglutrp_s + - id: "aspglutrp_s" - name: "Aspartyl-Glutamyl-Tryptophan" - - compartment: s - - formula: C20H22N4O8 + - compartment: "s" + - formula: "C20H22N4O8" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: asphiscys_s + - id: "asphiscys_s" - name: "Aspartyl-Histidyl-Cysteine" - - compartment: s - - formula: C13H18N5O6S + - compartment: "s" + - formula: "C13H18N5O6S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: asphispro_s + - id: "asphispro_s" - name: "Aspartyl-Histidyl-Proline" - - compartment: s - - formula: C15H20N5O6 + - compartment: "s" + - formula: "C15H20N5O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: asplysglu_s + - id: "asplysglu_s" - name: "Aspartyl-Lysyl-Glutamate" - - compartment: s - - formula: C15H25N4O8 + - compartment: "s" + - formula: "C15H25N4O8" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: asplyshis_s + - id: "asplyshis_s" - name: "Aspartyl-Lysyl-Histidine" - - compartment: s - - formula: C16H26N6O6 + - compartment: "s" + - formula: "C16H26N6O6" - charge: 0 - - inchis: 1/C16H26N6O6/c17-4-2-1-3-11(21-14(25)10(18)6-13(23)24)15(26)22-12(16(27)28)5-9-7-19-8-20-9/h7-8,10-12H,1-6,17-18H2,(H,19,20)(H,21,25)(H,22,26)(H,23,24)(H,27,28)/t10-,11+,12-/s2 - - metFrom: Recon3D + - inchis: "1/C16H26N6O6/c17-4-2-1-3-11(21-14(25)10(18)6-13(23)24)15(26)22-12(16(27)28)5-9-7-19-8-20-9/h7-8,10-12H,1-6,17-18H2,(H,19,20)(H,21,25)(H,22,26)(H,23,24)(H,27,28)/t10-,11+,12-/s2" + - metFrom: "Recon3D" - !!omap - - id: aspmetasp_s + - id: "aspmetasp_s" - name: "Aspartyl-Methionyl-Aspartate" - - compartment: s - - formula: C13H19N3O8S + - compartment: "s" + - formula: "C13H19N3O8S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: aspprolys_s + - id: "aspprolys_s" - name: "Aspartyl-Prolyl-Lysine" - - compartment: s - - formula: C15H26N4O6 + - compartment: "s" + - formula: "C15H26N4O6" - charge: 0 - - inchis: 1/C15H26N4O6/c16-6-2-1-4-10(15(24)25)18-13(22)11-5-3-7-19(11)14(23)9(17)8-12(20)21/h9-11H,1-8,16-17H2,(H,18,22)(H,20,21)(H,24,25)/t9-,10-,11-/s2 - - metFrom: Recon3D + - inchis: "1/C15H26N4O6/c16-6-2-1-4-10(15(24)25)18-13(22)11-5-3-7-19(11)14(23)9(17)8-12(20)21/h9-11H,1-8,16-17H2,(H,18,22)(H,20,21)(H,24,25)/t9-,10-,11-/s2" + - metFrom: "Recon3D" - !!omap - - id: aspvalasn_s + - id: "aspvalasn_s" - name: "Aspartyl-Valyl-Asparagine" - - compartment: s - - formula: C13H21N4O7 + - compartment: "s" + - formula: "C13H21N4O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: cysasnmet_s + - id: "cysasnmet_s" - name: "Cystyl-Asparaginyl-Methionine" - - compartment: s - - formula: C12H22N4O5S2 + - compartment: "s" + - formula: "C12H22N4O5S2" - charge: 0 - - inchis: 1/C12H22N4O5S2/c1-23-3-2-7(12(20)21)15-11(19)8(4-9(14)17)16-10(18)6(13)5-22/h6-8,22H,2-5,13H2,1H3,(H2,14,17)(H,15,19)(H,16,18)(H,20,21)/t6-,7-,8+/s2 - - metFrom: Recon3D + - inchis: "1/C12H22N4O5S2/c1-23-3-2-7(12(20)21)15-11(19)8(4-9(14)17)16-10(18)6(13)5-22/h6-8,22H,2-5,13H2,1H3,(H2,14,17)(H,15,19)(H,16,18)(H,20,21)/t6-,7-,8+/s2" + - metFrom: "Recon3D" - !!omap - - id: cysaspphe_s + - id: "cysaspphe_s" - name: "Cystyl-Aspartyl-Phenylalanine" - - compartment: s - - formula: C16H20N3O6S + - compartment: "s" + - formula: "C16H20N3O6S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: cyscys_s + - id: "cyscys_s" - name: "Cystyl-Cysteine" - - compartment: s - - formula: C6H12N2O3S2 + - compartment: "s" + - formula: "C6H12N2O3S2" - charge: 0 - - inchis: 1/C6H12N2O3S2/c7-3(1-12)5(9)8-4(2-13)6(10)11/h3-4,12-13H,1-2,7H2,(H,8,9)(H,10,11)/t3-,4+/s2 - - metFrom: Recon3D + - inchis: "1/C6H12N2O3S2/c7-3(1-12)5(9)8-4(2-13)6(10)11/h3-4,12-13H,1-2,7H2,(H,8,9)(H,10,11)/t3-,4+/s2" + - metFrom: "Recon3D" - !!omap - - id: cysglnmet_s + - id: "cysglnmet_s" - name: "Cystyl-Glutaminyl-Methionine" - - compartment: s - - formula: C13H24N4O5S2 + - compartment: "s" + - formula: "C13H24N4O5S2" - charge: 0 - - inchis: 1/C13H24N4O5S2/c1-24-5-4-9(13(21)22)17-12(20)8(2-3-10(15)18)16-11(19)7(14)6-23/h7-9,23H,2-6,14H2,1H3,(H2,15,18)(H,16,19)(H,17,20)(H,21,22)/t7-,8+,9-/s2 - - metFrom: Recon3D + - inchis: "1/C13H24N4O5S2/c1-24-5-4-9(13(21)22)17-12(20)8(2-3-10(15)18)16-11(19)7(14)6-23/h7-9,23H,2-6,14H2,1H3,(H2,15,18)(H,16,19)(H,17,20)(H,21,22)/t7-,8+,9-/s2" + - metFrom: "Recon3D" - !!omap - - id: cysgluhis_s + - id: "cysgluhis_s" - name: "Cystyl-Glutamyl-Histidine" - - compartment: s - - formula: C14H20N5O6S + - compartment: "s" + - formula: "C14H20N5O6S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: cysglutrp_s + - id: "cysglutrp_s" - name: "Cystyl-Glutamyl-Tryptophan" - - compartment: s - - formula: C19H23N4O6S + - compartment: "s" + - formula: "C19H23N4O6S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: cysleuthr_s + - id: "cysleuthr_s" - name: "Cystyl-Leucyl-Threonine" - - compartment: s - - formula: C13H25N3O5S + - compartment: "s" + - formula: "C13H25N3O5S" - charge: 0 - - inchis: 1/C13H25N3O5S/c1-6(2)4-9(15-11(18)8(14)5-22)12(19)16-10(7(3)17)13(20)21/h6-10,17,22H,4-5,14H2,1-3H3,(H,15,18)(H,16,19)(H,20,21)/t7-,8-,9+,10-/s2 - - metFrom: Recon3D + - inchis: "1/C13H25N3O5S/c1-6(2)4-9(15-11(18)8(14)5-22)12(19)16-10(7(3)17)13(20)21/h6-10,17,22H,4-5,14H2,1-3H3,(H,15,18)(H,16,19)(H,20,21)/t7-,8-,9+,10-/s2" + - metFrom: "Recon3D" - !!omap - - id: cyssermet_s + - id: "cyssermet_s" - name: "Cystyl-Seryl-Methionine" - - compartment: s - - formula: C11H21N3O5S2 + - compartment: "s" + - formula: "C11H21N3O5S2" - charge: 0 - - inchis: 1/C11H21N3O5S2/c1-21-3-2-7(11(18)19)13-10(17)8(4-15)14-9(16)6(12)5-20/h6-8,15,20H,2-5,12H2,1H3,(H,13,17)(H,14,16)(H,18,19)/t6-,7-,8+/s2 - - metFrom: Recon3D + - inchis: "1/C11H21N3O5S2/c1-21-3-2-7(11(18)19)13-10(17)8(4-15)14-9(16)6(12)5-20/h6-8,15,20H,2-5,12H2,1H3,(H,13,17)(H,14,16)(H,18,19)/t6-,7-,8+/s2" + - metFrom: "Recon3D" - !!omap - - id: cystyrasn_s + - id: "cystyrasn_s" - name: "Cystyl-Tyrosyl-Asparagine" - - compartment: s - - formula: C16H22N4O6S + - compartment: "s" + - formula: "C16H22N4O6S" - charge: 0 - - inchis: 1/C16H22N4O6S/c17-10(7-27)14(23)19-11(5-8-1-3-9(21)4-2-8)15(24)20-12(16(25)26)6-13(18)22/h1-4,10-12,21,27H,5-7,17H2,(H2,18,22)(H,19,23)(H,20,24)(H,25,26)/t10-,11+,12-/s2 - - metFrom: Recon3D + - inchis: "1/C16H22N4O6S/c17-10(7-27)14(23)19-11(5-8-1-3-9(21)4-2-8)15(24)20-12(16(25)26)6-13(18)22/h1-4,10-12,21,27H,5-7,17H2,(H2,18,22)(H,19,23)(H,20,24)(H,25,26)/t10-,11+,12-/s2" + - metFrom: "Recon3D" - !!omap - - id: glnasngln_s + - id: "glnasngln_s" - name: "Glutaminyl-Asparaginyl-Glutamine" - - compartment: s - - formula: C14H24N6O7 + - compartment: "s" + - formula: "C14H24N6O7" - charge: 0 - - inchis: 1/C14H24N6O7/c15-6(1-3-9(16)21)12(24)20-8(5-11(18)23)13(25)19-7(14(26)27)2-4-10(17)22/h6-8H,1-5,15H2,(H2,16,21)(H2,17,22)(H2,18,23)(H,19,25)(H,20,24)(H,26,27)/t6-,7-,8+/s2 - - metFrom: Recon3D + - inchis: "1/C14H24N6O7/c15-6(1-3-9(16)21)12(24)20-8(5-11(18)23)13(25)19-7(14(26)27)2-4-10(17)22/h6-8H,1-5,15H2,(H2,16,21)(H2,17,22)(H2,18,23)(H,19,25)(H,20,24)(H,26,27)/t6-,7-,8+/s2" + - metFrom: "Recon3D" - !!omap - - id: glnhishis_s + - id: "glnhishis_s" - name: "Glutaminyl-Histidyl-Histidine" - - compartment: s - - formula: C17H24N8O5 + - compartment: "s" + - formula: "C17H24N8O5" - charge: 0 - - inchis: 1/C17H24N8O5/c18-11(1-2-14(19)26)15(27)24-12(3-9-5-20-7-22-9)16(28)25-13(17(29)30)4-10-6-21-8-23-10/h5-8,11-13H,1-4,18H2,(H2,19,26)(H,20,22)(H,21,23)(H,24,27)(H,25,28)(H,29,30)/t11-,12+,13-/s2 - - metFrom: Recon3D + - inchis: "1/C17H24N8O5/c18-11(1-2-14(19)26)15(27)24-12(3-9-5-20-7-22-9)16(28)25-13(17(29)30)4-10-6-21-8-23-10/h5-8,11-13H,1-4,18H2,(H2,19,26)(H,20,22)(H,21,23)(H,24,27)(H,25,28)(H,29,30)/t11-,12+,13-/s2" + - metFrom: "Recon3D" - !!omap - - id: glnhislys_s + - id: "glnhislys_s" - name: "Glutaminyl-Histidyl-Lysine" - - compartment: s - - formula: C17H30N7O5 + - compartment: "s" + - formula: "C17H30N7O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glnlyslys_s + - id: "glnlyslys_s" - name: "Glutaminyl-Lysyl-Lysine" - - compartment: s - - formula: C17H36N6O5 + - compartment: "s" + - formula: "C17H36N6O5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glnlystrp_s + - id: "glnlystrp_s" - name: "Glutaminyl-Lysyl-Tryptophan" - - compartment: s - - formula: C22H33N6O5 + - compartment: "s" + - formula: "C22H33N6O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glnproglu_s + - id: "glnproglu_s" - name: "Glutaminyl-Prolyl-Glutamate" - - compartment: s - - formula: C15H23N4O7 + - compartment: "s" + - formula: "C15H23N4O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glntrpglu_s + - id: "glntrpglu_s" - name: "Glutaminyl-Tryptophanyl-Glutamate" - - compartment: s - - formula: C21H26N5O7 + - compartment: "s" + - formula: "C21H26N5O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glntyrleu_s + - id: "glntyrleu_s" - name: "Glutaminyl-Tyrosyl-Leucine" - - compartment: s - - formula: C20H30N4O6 + - compartment: "s" + - formula: "C20H30N4O6" - charge: 0 - - inchis: 1/C20H30N4O6/c1-11(2)9-16(20(29)30)24-19(28)15(10-12-3-5-13(25)6-4-12)23-18(27)14(21)7-8-17(22)26/h3-6,11,14-16,25H,7-10,21H2,1-2H3,(H2,22,26)(H,23,27)(H,24,28)(H,29,30)/t14-,15+,16-/s2 - - metFrom: Recon3D + - inchis: "1/C20H30N4O6/c1-11(2)9-16(20(29)30)24-19(28)15(10-12-3-5-13(25)6-4-12)23-18(27)14(21)7-8-17(22)26/h3-6,11,14-16,25H,7-10,21H2,1-2H3,(H2,22,26)(H,23,27)(H,24,28)(H,29,30)/t14-,15+,16-/s2" + - metFrom: "Recon3D" - !!omap - - id: gluargleu_s + - id: "gluargleu_s" - name: "Glutaminyl-Arginyl-Leucine" - - compartment: s - - formula: C17H32N6O6 + - compartment: "s" + - formula: "C17H32N6O6" - charge: 0 - - inchis: 1/C17H32N6O6/c1-9(2)8-12(16(28)29)23-15(27)11(4-3-7-21-17(19)20)22-14(26)10(18)5-6-13(24)25/h9-12H,3-8,18H2,1-2H3,(H,22,26)(H,23,27)(H,24,25)(H,28,29)(H4,19,20,21)/t10-,11+,12-/s2 - - metFrom: Recon3D + - inchis: "1/C17H32N6O6/c1-9(2)8-12(16(28)29)23-15(27)11(4-3-7-21-17(19)20)22-14(26)10(18)5-6-13(24)25/h9-12H,3-8,18H2,1-2H3,(H,22,26)(H,23,27)(H,24,25)(H,28,29)(H4,19,20,21)/t10-,11+,12-/s2" + - metFrom: "Recon3D" - !!omap - - id: gluasnleu_s + - id: "gluasnleu_s" - name: "Glutaminyl-Asparaginyl-Leucine" - - compartment: s - - formula: C15H25N4O7 + - compartment: "s" + - formula: "C15H25N4O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gluglu_s + - id: "gluglu_s" - name: "Glutamyl-Glutamate" - - compartment: s - - formula: C10H14N2O7 + - compartment: "s" + - formula: "C10H14N2O7" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gluilelys_s + - id: "gluilelys_s" - name: "Glutamyl-Isoleucyl-Lysine" - - compartment: s - - formula: C17H32N4O6 + - compartment: "s" + - formula: "C17H32N4O6" - charge: 0 - - inchis: 1/C17H32N4O6/c1-3-10(2)14(21-15(24)11(19)7-8-13(22)23)16(25)20-12(17(26)27)6-4-5-9-18/h10-12,14H,3-9,18-19H2,1-2H3,(H,20,25)(H,21,24)(H,22,23)(H,26,27)/t10?,11-,12-,14+/s2 - - metFrom: Recon3D + - inchis: "1/C17H32N4O6/c1-3-10(2)14(21-15(24)11(19)7-8-13(22)23)16(25)20-12(17(26)27)6-4-5-9-18/h10-12,14H,3-9,18-19H2,1-2H3,(H,20,25)(H,21,24)(H,22,23)(H,26,27)/t10?,11-,12-,14+/s2" + - metFrom: "Recon3D" - !!omap - - id: gluleu_s + - id: "gluleu_s" - name: "Glutamyl-Leucine" - - compartment: s - - formula: C11H19N2O5 + - compartment: "s" + - formula: "C11H19N2O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glumet_s + - id: "glumet_s" - name: "Glutamyl-Methionine" - - compartment: s - - formula: C10H17N2O5S + - compartment: "s" + - formula: "C10H17N2O5S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glumethis_s + - id: "glumethis_s" - name: "Glutamyl-Methioninyl-Histidine" - - compartment: s - - formula: C16H24N5O6S + - compartment: "s" + - formula: "C16H24N5O6S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gluthr_s + - id: "gluthr_s" - name: "Glutamyl-Threonine" - - compartment: s - - formula: C9H15N2O6 + - compartment: "s" + - formula: "C9H15N2O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gluthrlys_s + - id: "gluthrlys_s" - name: "Glutamyl-Threonyl-Lysine" - - compartment: s - - formula: C15H28N4O7 + - compartment: "s" + - formula: "C15H28N4O7" - charge: 0 - - inchis: 1/C15H28N4O7/c1-8(20)12(19-13(23)9(17)5-6-11(21)22)14(24)18-10(15(25)26)4-2-3-7-16/h8-10,12,20H,2-7,16-17H2,1H3,(H,18,24)(H,19,23)(H,21,22)(H,25,26)/t8-,9-,10-,12+/s2 - - metFrom: Recon3D + - inchis: "1/C15H28N4O7/c1-8(20)12(19-13(23)9(17)5-6-11(21)22)14(24)18-10(15(25)26)4-2-3-7-16/h8-10,12,20H,2-7,16-17H2,1H3,(H,18,24)(H,19,23)(H,21,22)(H,25,26)/t8-,9-,10-,12+/s2" + - metFrom: "Recon3D" - !!omap - - id: glutrpala_s + - id: "glutrpala_s" - name: "Glutamyl-Tryptophanyl-Alanine" - - compartment: s - - formula: C19H23N4O6 + - compartment: "s" + - formula: "C19H23N4O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glyhisasn_s + - id: "glyhisasn_s" - name: "Glycyl-Histidyl-Asparagine" - - compartment: s - - formula: C12H18N6O5 + - compartment: "s" + - formula: "C12H18N6O5" - charge: 0 - - inchis: 1/C12H18N6O5/c13-3-10(20)17-7(1-6-4-15-5-16-6)11(21)18-8(12(22)23)2-9(14)19/h4-5,7-8H,1-3,13H2,(H2,14,19)(H,15,16)(H,17,20)(H,18,21)(H,22,23)/t7-,8+/s2 - - metFrom: Recon3D + - inchis: "1/C12H18N6O5/c13-3-10(20)17-7(1-6-4-15-5-16-6)11(21)18-8(12(22)23)2-9(14)19/h4-5,7-8H,1-3,13H2,(H2,14,19)(H,15,16)(H,17,20)(H,18,21)(H,22,23)/t7-,8+/s2" + - metFrom: "Recon3D" - !!omap - - id: glyhislys_s + - id: "glyhislys_s" - name: "Glycyl-Histidyl-Lysine" - - compartment: s - - formula: C14H25N6O4 + - compartment: "s" + - formula: "C14H25N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glylyscys_s + - id: "glylyscys_s" - name: "Glycyl-Lysyl-Cysteine" - - compartment: s - - formula: C11H23N4O4S + - compartment: "s" + - formula: "C11H23N4O4S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glylysphe_s + - id: "glylysphe_s" - name: "Glycyl-Lysyl-Phenylalanine" - - compartment: s - - formula: C17H27N4O4 + - compartment: "s" + - formula: "C17H27N4O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glytyrlys_s + - id: "glytyrlys_s" - name: "Glycyl-Tyrosyl-Lysine" - - compartment: s - - formula: C17H27N4O5 + - compartment: "s" + - formula: "C17H27N4O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glyvalhis_s + - id: "glyvalhis_s" - name: "Glycyl-Valyl-Histidine" - - compartment: s - - formula: C13H21N5O4 + - compartment: "s" + - formula: "C13H21N5O4" - charge: 0 - - inchis: 1/C13H21N5O4/c1-7(2)11(18-10(19)4-14)12(20)17-9(13(21)22)3-8-5-15-6-16-8/h5-7,9,11H,3-4,14H2,1-2H3,(H,15,16)(H,17,20)(H,18,19)(H,21,22)/t9-,11+/s2 - - metFrom: Recon3D + - inchis: "1/C13H21N5O4/c1-7(2)11(18-10(19)4-14)12(20)17-9(13(21)22)3-8-5-15-6-16-8/h5-7,9,11H,3-4,14H2,1-2H3,(H,15,16)(H,17,20)(H,18,19)(H,21,22)/t9-,11+/s2" + - metFrom: "Recon3D" - !!omap - - id: hisargcys_s + - id: "hisargcys_s" - name: "Histidyl-Arginyl-Cysteine" - - compartment: s - - formula: C15H27N8O4S + - compartment: "s" + - formula: "C15H27N8O4S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hisargser_s + - id: "hisargser_s" - name: "Histidyl-Arginyl-Serine" - - compartment: s - - formula: C15H27N8O5 + - compartment: "s" + - formula: "C15H27N8O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hisasp_s + - id: "hisasp_s" - name: "Histidyl-Aspartate" - - compartment: s - - formula: C10H13N4O5 + - compartment: "s" + - formula: "C10H13N4O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hiscyscys_s + - id: "hiscyscys_s" - name: "Histidyl-Cystyl-Cysteine" - - compartment: s - - formula: C12H19N5O4S2 + - compartment: "s" + - formula: "C12H19N5O4S2" - charge: 0 - - inchis: 1/C12H19N5O4S2/c13-7(1-6-2-14-5-15-6)10(18)16-8(3-22)11(19)17-9(4-23)12(20)21/h2,5,7-9,22-23H,1,3-4,13H2,(H,14,15)(H,16,18)(H,17,19)(H,20,21)/t7-,8+,9-/s2 - - metFrom: Recon3D + - inchis: "1/C12H19N5O4S2/c13-7(1-6-2-14-5-15-6)10(18)16-8(3-22)11(19)17-9(4-23)12(20)21/h2,5,7-9,22-23H,1,3-4,13H2,(H,14,15)(H,16,18)(H,17,19)(H,20,21)/t7-,8+,9-/s2" + - metFrom: "Recon3D" - !!omap - - id: hisglnala_s + - id: "hisglnala_s" - name: "Histidyl-Glutaminyl-Alanine" - - compartment: s - - formula: C14H22N6O5 + - compartment: "s" + - formula: "C14H22N6O5" - charge: 0 - - inchis: 1/C14H22N6O5/c1-7(14(24)25)19-13(23)10(2-3-11(16)21)20-12(22)9(15)4-8-5-17-6-18-8/h5-7,9-10H,2-4,15H2,1H3,(H2,16,21)(H,17,18)(H,19,23)(H,20,22)(H,24,25)/t7-,9-,10+/s2 - - metFrom: Recon3D + - inchis: "1/C14H22N6O5/c1-7(14(24)25)19-13(23)10(2-3-11(16)21)20-12(22)9(15)4-8-5-17-6-18-8/h5-7,9-10H,2-4,15H2,1H3,(H2,16,21)(H,17,18)(H,19,23)(H,20,22)(H,24,25)/t7-,9-,10+/s2" + - metFrom: "Recon3D" - !!omap - - id: hisglu_s + - id: "hisglu_s" - name: "Histidyl-Glutamate" - - compartment: s - - formula: C11H15N4O5 + - compartment: "s" + - formula: "C11H15N4O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hisglugln_s + - id: "hisglugln_s" - name: "Histidyl-Glutamyl-Glutamine" - - compartment: s - - formula: C16H23N6O7 + - compartment: "s" + - formula: "C16H23N6O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hisglylys_s + - id: "hisglylys_s" - name: "Histidyl-Lysyl-Lysine" - - compartment: s - - formula: C14H25N6O4 + - compartment: "s" + - formula: "C14H25N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hishislys_s + - id: "hishislys_s" - name: "Histidyl-Histidyl-Lysine" - - compartment: s - - formula: C18H29N8O4 + - compartment: "s" + - formula: "C18H29N8O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hislysala_s + - id: "hislysala_s" - name: "Histidyl-Lysyl-Alanine" - - compartment: s - - formula: C15H27N6O4 + - compartment: "s" + - formula: "C15H27N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hislysglu_s + - id: "hislysglu_s" - name: "Histidyl-Lysyl-Glutamate" - - compartment: s - - formula: C17H28N6O6 + - compartment: "s" + - formula: "C17H28N6O6" - charge: 0 - - inchis: 1/C17H28N6O6/c18-6-2-1-3-12(16(27)23-13(17(28)29)4-5-14(24)25)22-15(26)11(19)7-10-8-20-9-21-10/h8-9,11-13H,1-7,18-19H2,(H,20,21)(H,22,26)(H,23,27)(H,24,25)(H,28,29)/t11-,12+,13-/s2 - - metFrom: Recon3D + - inchis: "1/C17H28N6O6/c18-6-2-1-3-12(16(27)23-13(17(28)29)4-5-14(24)25)22-15(26)11(19)7-10-8-20-9-21-10/h8-9,11-13H,1-7,18-19H2,(H,20,21)(H,22,26)(H,23,27)(H,24,25)(H,28,29)/t11-,12+,13-/s2" + - metFrom: "Recon3D" - !!omap - - id: hislysile_s + - id: "hislysile_s" - name: "Histidyl-Lysyl-Isoleucine" - - compartment: s - - formula: C18H33N6O4 + - compartment: "s" + - formula: "C18H33N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hislysthr_s + - id: "hislysthr_s" - name: "Histidyl-Lysyl-Threonine" - - compartment: s - - formula: C16H29N6O5 + - compartment: "s" + - formula: "C16H29N6O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hislysval_s + - id: "hislysval_s" - name: "Histidyl-Lysyl-Valine" - - compartment: s - - formula: C17H31N6O4 + - compartment: "s" + - formula: "C17H31N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hismet_s + - id: "hismet_s" - name: "Histidyl-Methionine" - - compartment: s - - formula: C11H18N4O3S + - compartment: "s" + - formula: "C11H18N4O3S" - charge: 0 - - inchis: 1S/C11H18N4O3S/c1-19-3-2-9(11(17)18)15-10(16)8(12)4-7-5-13-6-14-7/h5-6,8-9H,2-4,12H2,1H3,(H,13,14)(H,15,16)(H,17,18)/p-1/t8-,9-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C11H18N4O3S/c1-19-3-2-9(11(17)18)15-10(16)8(12)4-7-5-13-6-14-7/h5-6,8-9H,2-4,12H2,1H3,(H,13,14)(H,15,16)(H,17,18)/p-1/t8-,9-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: hismetgln_s + - id: "hismetgln_s" - name: "Histidyl-Methionyl-Glutamine" - - compartment: s - - formula: C16H26N6O5S + - compartment: "s" + - formula: "C16H26N6O5S" - charge: 0 - - inchis: 1/C16H26N6O5S/c1-28-5-4-11(15(25)22-12(16(26)27)2-3-13(18)23)21-14(24)10(17)6-9-7-19-8-20-9/h7-8,10-12H,2-6,17H2,1H3,(H2,18,23)(H,19,20)(H,21,24)(H,22,25)(H,26,27)/t10-,11+,12-/s2 - - metFrom: Recon3D + - inchis: "1/C16H26N6O5S/c1-28-5-4-11(15(25)22-12(16(26)27)2-3-13(18)23)21-14(24)10(17)6-9-7-19-8-20-9/h7-8,10-12H,2-6,17H2,1H3,(H2,18,23)(H,19,20)(H,21,24)(H,22,25)(H,26,27)/t10-,11+,12-/s2" + - metFrom: "Recon3D" - !!omap - - id: hisphearg_s + - id: "hisphearg_s" - name: "Histidyl-Phenylalanyl-Arginine" - - compartment: s - - formula: C21H31N8O4 + - compartment: "s" + - formula: "C21H31N8O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hisprolys_s + - id: "hisprolys_s" - name: "Histidyl-Prolyl-Lysine" - - compartment: s - - formula: C17H29N6O4 + - compartment: "s" + - formula: "C17H29N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: histrphis_s + - id: "histrphis_s" - name: "Histidyl-Tryptophanyl-Histidine" - - compartment: s - - formula: C23H26N8O4 + - compartment: "s" + - formula: "C23H26N8O4" - charge: 0 - - inchis: 1/C23H26N8O4/c24-17(6-14-9-25-11-28-14)21(32)30-19(5-13-8-27-18-4-2-1-3-16(13)18)22(33)31-20(23(34)35)7-15-10-26-12-29-15/h1-4,8-12,17,19-20,27H,5-7,24H2,(H,25,28)(H,26,29)(H,30,32)(H,31,33)(H,34,35)/t17-,19+,20-/s2 - - metFrom: Recon3D + - inchis: "1/C23H26N8O4/c24-17(6-14-9-25-11-28-14)21(32)30-19(5-13-8-27-18-4-2-1-3-16(13)18)22(33)31-20(23(34)35)7-15-10-26-12-29-15/h1-4,8-12,17,19-20,27H,5-7,24H2,(H,25,28)(H,26,29)(H,30,32)(H,31,33)(H,34,35)/t17-,19+,20-/s2" + - metFrom: "Recon3D" - !!omap - - id: ileargile_s + - id: "ileargile_s" - name: "Isoleucyl-Arginyl-Isoleucine" - - compartment: s - - formula: C18H37N6O4 + - compartment: "s" + - formula: "C18H37N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ileasnhis_s + - id: "ileasnhis_s" - name: "Isoleucyl-Asparaginyl-Histidine" - - compartment: s - - formula: C16H26N6O5 + - compartment: "s" + - formula: "C16H26N6O5" - charge: 0 - - inchis: 1/C16H26N6O5/c1-3-8(2)13(18)15(25)21-10(5-12(17)23)14(24)22-11(16(26)27)4-9-6-19-7-20-9/h6-8,10-11,13H,3-5,18H2,1-2H3,(H2,17,23)(H,19,20)(H,21,25)(H,22,24)(H,26,27)/t8?,10-,11+,13+/s2 - - metFrom: Recon3D + - inchis: "1/C16H26N6O5/c1-3-8(2)13(18)15(25)21-10(5-12(17)23)14(24)22-11(16(26)27)4-9-6-19-7-20-9/h6-8,10-11,13H,3-5,18H2,1-2H3,(H2,17,23)(H,19,20)(H,21,25)(H,22,24)(H,26,27)/t8?,10-,11+,13+/s2" + - metFrom: "Recon3D" - !!omap - - id: ileasp_s + - id: "ileasp_s" - name: "Isolecyl-Aspartate" - - compartment: s - - formula: C10H17N2O5 + - compartment: "s" + - formula: "C10H17N2O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ileglnglu_s + - id: "ileglnglu_s" - name: "Isolecyl-Glutaminyl-Glutamate" - - compartment: s - - formula: C16H27N4O7 + - compartment: "s" + - formula: "C16H27N4O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ileglyarg_s + - id: "ileglyarg_s" - name: "Isolecyl-Glycyl-Arginine" - - compartment: s - - formula: C14H29N6O4 + - compartment: "s" + - formula: "C14H29N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ileprolys_s + - id: "ileprolys_s" - name: "Isolecyl-Prolyl-Lysine" - - compartment: s - - formula: C17H33N4O4 + - compartment: "s" + - formula: "C17H33N4O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ileserarg_s + - id: "ileserarg_s" - name: "Isolecyl-Seryl-Arginine" - - compartment: s - - formula: C15H31N6O5 + - compartment: "s" + - formula: "C15H31N6O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: iletrptyr_s + - id: "iletrptyr_s" - name: "Isolecyl-Tryptophanyl-Tyrosine" - - compartment: s - - formula: C26H32N4O5 + - compartment: "s" + - formula: "C26H32N4O5" - charge: 0 - - inchis: 1/C26H32N4O5/c1-3-15(2)23(27)25(33)29-21(13-17-14-28-20-7-5-4-6-19(17)20)24(32)30-22(26(34)35)12-16-8-10-18(31)11-9-16/h4-11,14-15,21-23,28,31H,3,12-13,27H2,1-2H3,(H,29,33)(H,30,32)(H,34,35)/t15?,21-,22+,23+/s2 - - metFrom: Recon3D + - inchis: "1/C26H32N4O5/c1-3-15(2)23(27)25(33)29-21(13-17-14-28-20-7-5-4-6-19(17)20)24(32)30-22(26(34)35)12-16-8-10-18(31)11-9-16/h4-11,14-15,21-23,28,31H,3,12-13,27H2,1-2H3,(H,29,33)(H,30,32)(H,34,35)/t15?,21-,22+,23+/s2" + - metFrom: "Recon3D" - !!omap - - id: leualaarg_s + - id: "leualaarg_s" - name: "Leucyl-Alanyl-Arginine" - - compartment: s - - formula: C15H31N6O4 + - compartment: "s" + - formula: "C15H31N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: leuasnasp_s + - id: "leuasnasp_s" - name: "Leucyl-Asparaginyl-Aspartate" - - compartment: s - - formula: C14H23N4O7 + - compartment: "s" + - formula: "C14H23N4O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: leuasplys_s + - id: "leuasplys_s" - name: "Leucyl-Aspartyl-Lysine" - - compartment: s - - formula: C16H30N4O6 + - compartment: "s" + - formula: "C16H30N4O6" - charge: 0 - - inchis: 1/C16H30N4O6/c1-9(2)7-10(18)14(23)20-12(8-13(21)22)15(24)19-11(16(25)26)5-3-4-6-17/h9-12H,3-8,17-18H2,1-2H3,(H,19,24)(H,20,23)(H,21,22)(H,25,26)/t10-,11-,12+/s2 - - metFrom: Recon3D + - inchis: "1/C16H30N4O6/c1-9(2)7-10(18)14(23)20-12(8-13(21)22)15(24)19-11(16(25)26)5-3-4-6-17/h9-12H,3-8,17-18H2,1-2H3,(H,19,24)(H,20,23)(H,21,22)(H,25,26)/t10-,11-,12+/s2" + - metFrom: "Recon3D" - !!omap - - id: leuleutrp_s + - id: "leuleutrp_s" - name: "Leucyl-Leucyl-Tryptophan" - - compartment: s - - formula: C23H34N4O4 + - compartment: "s" + - formula: "C23H34N4O4" - charge: 0 - - inchis: 1/C23H34N4O4/c1-13(2)9-17(24)21(28)26-19(10-14(3)4)22(29)27-20(23(30)31)11-15-12-25-18-8-6-5-7-16(15)18/h5-8,12-14,17,19-20,25H,9-11,24H2,1-4H3,(H,26,28)(H,27,29)(H,30,31)/t17-,19+,20-/s2 - - metFrom: Recon3D + - inchis: "1/C23H34N4O4/c1-13(2)9-17(24)21(28)26-19(10-14(3)4)22(29)27-20(23(30)31)11-15-12-25-18-8-6-5-7-16(15)18/h5-8,12-14,17,19-20,25H,9-11,24H2,1-4H3,(H,26,28)(H,27,29)(H,30,31)/t17-,19+,20-/s2" + - metFrom: "Recon3D" - !!omap - - id: leupro_s + - id: "leupro_s" - name: "Leucyl-Proline" - - compartment: s - - formula: C11H20N2O3 + - compartment: "s" + - formula: "C11H20N2O3" - charge: 0 - - inchis: 1/C11H20N2O3/c1-7(2)6-8(12)10(14)13-5-3-4-9(13)11(15)16/h7-9H,3-6,12H2,1-2H3,(H,15,16)/t8-,9-/s2 - - metFrom: Recon3D + - inchis: "1/C11H20N2O3/c1-7(2)6-8(12)10(14)13-5-3-4-9(13)11(15)16/h7-9H,3-6,12H2,1-2H3,(H,15,16)/t8-,9-/s2" + - metFrom: "Recon3D" - !!omap - - id: leuproarg_s + - id: "leuproarg_s" - name: "Leucyl-Prolyl-Arginine" - - compartment: s - - formula: C17H33N6O4 + - compartment: "s" + - formula: "C17H33N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: leusertrp_s + - id: "leusertrp_s" - name: "Leucyl-Seryl-Tryptophan" - - compartment: s - - formula: C20H28N4O5 + - compartment: "s" + - formula: "C20H28N4O5" - charge: 0 - - inchis: 1S/C20H28N4O5/c1-11(2)7-14(21)18(26)24-17(10-25)19(27)23-16(20(28)29)8-12-9-22-15-6-4-3-5-13(12)15/h3-6,9,11,14,16-17,22,25H,7-8,10,21H2,1-2H3,(H,23,27)(H,24,26)(H,28,29)/p-1/t14-,16-,17-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C20H28N4O5/c1-11(2)7-14(21)18(26)24-17(10-25)19(27)23-16(20(28)29)8-12-9-22-15-6-4-3-5-13(12)15/h3-6,9,11,14,16-17,22,25H,7-8,10,21H2,1-2H3,(H,23,27)(H,24,26)(H,28,29)/p-1/t14-,16-,17-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: leutrp_s + - id: "leutrp_s" - name: "Leucyl-Tryptophan" - - compartment: s - - formula: C17H23N3O3 + - compartment: "s" + - formula: "C17H23N3O3" - charge: 0 - - inchis: 1/C17H23N3O3/c1-10(2)7-13(18)16(21)20-15(17(22)23)8-11-9-19-14-6-4-3-5-12(11)14/h3-6,9-10,13,15,19H,7-8,18H2,1-2H3,(H,20,21)(H,22,23)/t13-,15+/s2 - - metFrom: Recon3D + - inchis: "1/C17H23N3O3/c1-10(2)7-13(18)16(21)20-15(17(22)23)8-11-9-19-14-6-4-3-5-12(11)14/h3-6,9-10,13,15,19H,7-8,18H2,1-2H3,(H,20,21)(H,22,23)/t13-,15+/s2" + - metFrom: "Recon3D" - !!omap - - id: leutrparg_s + - id: "leutrparg_s" - name: "Leucyl-Tryptophanyl-Arginine" - - compartment: s - - formula: C23H36N7O4 + - compartment: "s" + - formula: "C23H36N7O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: leutyrtyr_s + - id: "leutyrtyr_s" - name: "Leucyl-Tyrosyl-Tyrosine" - - compartment: s - - formula: C24H31N3O6 + - compartment: "s" + - formula: "C24H31N3O6" - charge: 0 - - inchis: 1/C24H31N3O6/c1-14(2)11-19(25)22(30)26-20(12-15-3-7-17(28)8-4-15)23(31)27-21(24(32)33)13-16-5-9-18(29)10-6-16/h3-10,14,19-21,28-29H,11-13,25H2,1-2H3,(H,26,30)(H,27,31)(H,32,33)/t19-,20+,21-/s2 - - metFrom: Recon3D + - inchis: "1/C24H31N3O6/c1-14(2)11-19(25)22(30)26-20(12-15-3-7-17(28)8-4-15)23(31)27-21(24(32)33)13-16-5-9-18(29)10-6-16/h3-10,14,19-21,28-29H,11-13,25H2,1-2H3,(H,26,30)(H,27,31)(H,32,33)/t19-,20+,21-/s2" + - metFrom: "Recon3D" - !!omap - - id: leuval_s + - id: "leuval_s" - name: "Leucyl-Valine" - - compartment: s - - formula: C11H22N2O3 + - compartment: "s" + - formula: "C11H22N2O3" - charge: 0 - - inchis: 1/C11H22N2O3/c1-6(2)5-8(12)10(14)13-9(7(3)4)11(15)16/h6-9H,5,12H2,1-4H3,(H,13,14)(H,15,16)/t8-,9+/s2 - - metFrom: Recon3D + - inchis: "1/C11H22N2O3/c1-6(2)5-8(12)10(14)13-9(7(3)4)11(15)16/h6-9H,5,12H2,1-4H3,(H,13,14)(H,15,16)/t8-,9+/s2" + - metFrom: "Recon3D" - !!omap - - id: lysargleu_s + - id: "lysargleu_s" - name: "Lysyl-Arginyl-Leucine" - - compartment: s - - formula: C18H38N7O4 + - compartment: "s" + - formula: "C18H38N7O4" - charge: 2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lyscyshis_s + - id: "lyscyshis_s" - name: "Lysyl-Cysteinyl-Histidine" - - compartment: s - - formula: C15H27N6O4S + - compartment: "s" + - formula: "C15H27N6O4S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lysglnphe_s + - id: "lysglnphe_s" - name: "Lysyl-Glutaminyl-Phenylalanine" - - compartment: s - - formula: C20H32N5O5 + - compartment: "s" + - formula: "C20H32N5O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lysgluglu_s + - id: "lysgluglu_s" - name: "Lysyl-Glutamyl-Glutamate" - - compartment: s - - formula: C16H27N4O8 + - compartment: "s" + - formula: "C16H27N4O8" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lyslyslys_s + - id: "lyslyslys_s" - name: "Lysyl-Lysyl-Lysine" - - compartment: s - - formula: C18H41N6O4 + - compartment: "s" + - formula: "C18H41N6O4" - charge: 3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lyspheile_s + - id: "lyspheile_s" - name: "Lysyl-Phenylalanyl-Isoleucine" - - compartment: s - - formula: C21H35N4O4 + - compartment: "s" + - formula: "C21H35N4O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lystrparg_s + - id: "lystrparg_s" - name: "Lysyl-Tryptophanyl-Arginine" - - compartment: s - - formula: C23H38N8O4 + - compartment: "s" + - formula: "C23H38N8O4" - charge: 2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lystyrile_s + - id: "lystyrile_s" - name: "Lysyl-Tyrosyl-Isoleucine" - - compartment: s - - formula: C21H35N4O5 + - compartment: "s" + - formula: "C21H35N4O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lysvalphe_s + - id: "lysvalphe_s" - name: "Lysyl-Valyl-Phenylalanine" - - compartment: s - - formula: C20H33N4O4 + - compartment: "s" + - formula: "C20H33N4O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lysvaltrp_s + - id: "lysvaltrp_s" - name: "Lysyl-Valyl-Tryptophan" - - compartment: s - - formula: C22H34N5O4 + - compartment: "s" + - formula: "C22H34N5O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: metargleu_s + - id: "metargleu_s" - name: "Methionyl-Arginyl-Leucine" - - compartment: s - - formula: C17H35N6O4S + - compartment: "s" + - formula: "C17H35N6O4S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: metasntyr_s + - id: "metasntyr_s" - name: "Methionyl-Asparaginyl-Tyrosine" - - compartment: s - - formula: C18H26N4O6S + - compartment: "s" + - formula: "C18H26N4O6S" - charge: 0 - - inchis: 1/C18H26N4O6S/c1-29-7-6-12(19)16(25)21-13(9-15(20)24)17(26)22-14(18(27)28)8-10-2-4-11(23)5-3-10/h2-5,12-14,23H,6-9,19H2,1H3,(H2,20,24)(H,21,25)(H,22,26)(H,27,28)/t12-,13+,14-/s2 - - metFrom: Recon3D + - inchis: "1/C18H26N4O6S/c1-29-7-6-12(19)16(25)21-13(9-15(20)24)17(26)22-14(18(27)28)8-10-2-4-11(23)5-3-10/h2-5,12-14,23H,6-9,19H2,1H3,(H2,20,24)(H,21,25)(H,22,26)(H,27,28)/t12-,13+,14-/s2" + - metFrom: "Recon3D" - !!omap - - id: metglntyr_s + - id: "metglntyr_s" - name: "Methionyl-Glutaminyl-Tyrosine" - - compartment: s - - formula: C19H28N4O6S + - compartment: "s" + - formula: "C19H28N4O6S" - charge: 0 - - inchis: 1S/C19H28N4O6S/c1-30-9-8-13(20)17(26)22-14(6-7-16(21)25)18(27)23-15(19(28)29)10-11-2-4-12(24)5-3-11/h2-5,13-15,24H,6-10,20H2,1H3,(H2,21,25)(H,22,26)(H,23,27)(H,28,29)/t13-,14-,15-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C19H28N4O6S/c1-30-9-8-13(20)17(26)22-14(6-7-16(21)25)18(27)23-15(19(28)29)10-11-2-4-12(24)5-3-11/h2-5,13-15,24H,6-10,20H2,1H3,(H2,21,25)(H,22,26)(H,23,27)(H,28,29)/t13-,14-,15-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: metglyarg_s + - id: "metglyarg_s" - name: "Methionyl-Glycyl-Arginine" - - compartment: s - - formula: C13H27N6O4S + - compartment: "s" + - formula: "C13H27N6O4S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: methislys_s + - id: "methislys_s" - name: "Methionyl-Histidyl-Lysine" - - compartment: s - - formula: C17H31N6O4S + - compartment: "s" + - formula: "C17H31N6O4S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: metmetile_s + - id: "metmetile_s" - name: "Methionyl-Methionyl-Isoleucine" - - compartment: s - - formula: C16H31N3O4S2 + - compartment: "s" + - formula: "C16H31N3O4S2" - charge: 0 - - inchis: 1/C16H31N3O4S2/c1-5-10(2)13(16(22)23)19-15(21)12(7-9-25-4)18-14(20)11(17)6-8-24-3/h10-13H,5-9,17H2,1-4H3,(H,18,20)(H,19,21)(H,22,23)/t10?,11-,12+,13?/s2 - - metFrom: Recon3D + - inchis: "1/C16H31N3O4S2/c1-5-10(2)13(16(22)23)19-15(21)12(7-9-25-4)18-14(20)11(17)6-8-24-3/h10-13H,5-9,17H2,1-4H3,(H,18,20)(H,19,21)(H,22,23)/t10?,11-,12+,13?/s2" + - metFrom: "Recon3D" - !!omap - - id: metphearg_s + - id: "metphearg_s" - name: "Methionyl-Phenylalanyl-Arginine" - - compartment: s - - formula: C20H33N6O4S + - compartment: "s" + - formula: "C20H33N6O4S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: mettrpphe_s + - id: "mettrpphe_s" - name: "Methionyl-Tryptophanyl-Phenylalanine" - - compartment: s - - formula: C25H30N4O4S + - compartment: "s" + - formula: "C25H30N4O4S" - charge: 0 - - inchis: 1/C25H30N4O4S/c1-34-12-11-19(26)23(30)28-21(14-17-15-27-20-10-6-5-9-18(17)20)24(31)29-22(25(32)33)13-16-7-3-2-4-8-16/h2-10,15,19,21-22,27H,11-14,26H2,1H3,(H,28,30)(H,29,31)(H,32,33)/t19-,21+,22-/s2 - - metFrom: Recon3D + - inchis: "1/C25H30N4O4S/c1-34-12-11-19(26)23(30)28-21(14-17-15-27-20-10-6-5-9-18(17)20)24(31)29-22(25(32)33)13-16-7-3-2-4-8-16/h2-10,15,19,21-22,27H,11-14,26H2,1H3,(H,28,30)(H,29,31)(H,32,33)/t19-,21+,22-/s2" + - metFrom: "Recon3D" - !!omap - - id: pheasnmet_s + - id: "pheasnmet_s" - name: "Phenylalanyl-Asparaginyl-Methionine" - - compartment: s - - formula: C18H26N4O5S + - compartment: "s" + - formula: "C18H26N4O5S" - charge: 0 - - inchis: 1/C18H26N4O5S/c1-28-8-7-13(18(26)27)21-17(25)14(10-15(20)23)22-16(24)12(19)9-11-5-3-2-4-6-11/h2-6,12-14H,7-10,19H2,1H3,(H2,20,23)(H,21,25)(H,22,24)(H,26,27)/t12-,13-,14+/s2 - - metFrom: Recon3D + - inchis: "1/C18H26N4O5S/c1-28-8-7-13(18(26)27)21-17(25)14(10-15(20)23)22-16(24)12(19)9-11-5-3-2-4-6-11/h2-6,12-14H,7-10,19H2,1H3,(H2,20,23)(H,21,25)(H,22,24)(H,26,27)/t12-,13-,14+/s2" + - metFrom: "Recon3D" - !!omap - - id: pheasp_s + - id: "pheasp_s" - name: "Phenylalanyl-Aspartate" - - compartment: s - - formula: C13H15N2O5 + - compartment: "s" + - formula: "C13H15N2O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pheglnphe_s + - id: "pheglnphe_s" - name: "Phenylalanyl-Glutaminyl-Phenylalanine" - - compartment: s - - formula: C23H28N4O5 + - compartment: "s" + - formula: "C23H28N4O5" - charge: 0 - - inchis: 1/C23H28N4O5/c24-17(13-15-7-3-1-4-8-15)21(29)26-18(11-12-20(25)28)22(30)27-19(23(31)32)14-16-9-5-2-6-10-16/h1-10,17-19H,11-14,24H2,(H2,25,28)(H,26,29)(H,27,30)(H,31,32)/t17-,18+,19-/s2 - - metFrom: Recon3D + - inchis: "1/C23H28N4O5/c24-17(13-15-7-3-1-4-8-15)21(29)26-18(11-12-20(25)28)22(30)27-19(23(31)32)14-16-9-5-2-6-10-16/h1-10,17-19H,11-14,24H2,(H2,25,28)(H,26,29)(H,27,30)(H,31,32)/t17-,18+,19-/s2" + - metFrom: "Recon3D" - !!omap - - id: pheleu_s + - id: "pheleu_s" - name: "Phenylalanyl-Leucine" - - compartment: s - - formula: C15H22N2O3 + - compartment: "s" + - formula: "C15H22N2O3" - charge: 0 - - inchis: 1/C15H22N2O3/c1-10(2)8-13(15(19)20)17-14(18)12(16)9-11-6-4-3-5-7-11/h3-7,10,12-13H,8-9,16H2,1-2H3,(H,17,18)(H,19,20)/t12-,13+/s2 - - metFrom: Recon3D + - inchis: "1/C15H22N2O3/c1-10(2)8-13(15(19)20)17-14(18)12(16)9-11-6-4-3-5-7-11/h3-7,10,12-13H,8-9,16H2,1-2H3,(H,17,18)(H,19,20)/t12-,13+/s2" + - metFrom: "Recon3D" - !!omap - - id: pheleuasp_s + - id: "pheleuasp_s" - name: "Phenylalanyl-Leucyl-Aspartate" - - compartment: s - - formula: C19H26N3O6 + - compartment: "s" + - formula: "C19H26N3O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pheleuhis_s + - id: "pheleuhis_s" - name: "Phenylalanyl-Leucyl-Histidine" - - compartment: s - - formula: C21H29N5O4 + - compartment: "s" + - formula: "C21H29N5O4" - charge: 0 - - inchis: 1S/C21H29N5O4/c1-13(2)8-17(25-19(27)16(22)9-14-6-4-3-5-7-14)20(28)26-18(21(29)30)10-15-11-23-12-24-15/h3-7,11-13,16-18H,8-10,22H2,1-2H3,(H,23,24)(H,25,27)(H,26,28)(H,29,30)/t16-,17-,18-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C21H29N5O4/c1-13(2)8-17(25-19(27)16(22)9-14-6-4-3-5-7-14)20(28)26-18(21(29)30)10-15-11-23-12-24-15/h3-7,11-13,16-18H,8-10,22H2,1-2H3,(H,23,24)(H,25,27)(H,26,28)(H,29,30)/t16-,17-,18-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: phelysala_s + - id: "phelysala_s" - name: "Phenylalanyl-Lysyl-Alanine" - - compartment: s - - formula: C18H29N4O4 + - compartment: "s" + - formula: "C18H29N4O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: phelyspro_s + - id: "phelyspro_s" - name: "Phenylalanyl-Lysyl-Proline" - - compartment: s - - formula: C20H31N4O4 + - compartment: "s" + - formula: "C20H31N4O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: phephe_s + - id: "phephe_s" - name: "Phenylalanyl-Phenylalanine" - - compartment: s - - formula: C18H20N2O3 + - compartment: "s" + - formula: "C18H20N2O3" - charge: 0 - - inchis: 1/C18H20N2O3/c19-15(11-13-7-3-1-4-8-13)17(21)20-16(18(22)23)12-14-9-5-2-6-10-14/h1-10,15-16H,11-12,19H2,(H,20,21)(H,22,23)/t15-,16+/s2 - - metFrom: Recon3D + - inchis: "1/C18H20N2O3/c19-15(11-13-7-3-1-4-8-13)17(21)20-16(18(22)23)12-14-9-5-2-6-10-14/h1-10,15-16H,11-12,19H2,(H,20,21)(H,22,23)/t15-,16+/s2" + - metFrom: "Recon3D" - !!omap - - id: phepheasn_s + - id: "phepheasn_s" - name: "Phenylalanyl-Phenylalaninyl-Asparagine" - - compartment: s - - formula: C22H26N4O5 + - compartment: "s" + - formula: "C22H26N4O5" - charge: 0 - - inchis: 1/C22H26N4O5/c23-16(11-14-7-3-1-4-8-14)20(28)25-17(12-15-9-5-2-6-10-15)21(29)26-18(22(30)31)13-19(24)27/h1-10,16-18H,11-13,23H2,(H2,24,27)(H,25,28)(H,26,29)(H,30,31)/t16-,17+,18-/s2 - - metFrom: Recon3D + - inchis: "1/C22H26N4O5/c23-16(11-14-7-3-1-4-8-14)20(28)25-17(12-15-9-5-2-6-10-15)21(29)26-18(22(30)31)13-19(24)27/h1-10,16-18H,11-13,23H2,(H2,24,27)(H,25,28)(H,26,29)(H,30,31)/t16-,17+,18-/s2" + - metFrom: "Recon3D" - !!omap - - id: phephethr_s + - id: "phephethr_s" - name: "Phenylalanyl-Phenylalaninyl-Threonine" - - compartment: s - - formula: C22H27N3O5 + - compartment: "s" + - formula: "C22H27N3O5" - charge: 0 - - inchis: 1/C22H27N3O5/c1-14(26)19(22(29)30)25-21(28)18(13-16-10-6-3-7-11-16)24-20(27)17(23)12-15-8-4-2-5-9-15/h2-11,14,17-19,26H,12-13,23H2,1H3,(H,24,27)(H,25,28)(H,29,30)/t14-,17-,18+,19-/s2 - - metFrom: Recon3D + - inchis: "1/C22H27N3O5/c1-14(26)19(22(29)30)25-21(28)18(13-16-10-6-3-7-11-16)24-20(27)17(23)12-15-8-4-2-5-9-15/h2-11,14,17-19,26H,12-13,23H2,1H3,(H,24,27)(H,25,28)(H,29,30)/t14-,17-,18+,19-/s2" + - metFrom: "Recon3D" - !!omap - - id: pheproarg_s + - id: "pheproarg_s" - name: "Phenylalanyl-Prolyl-Arginine" - - compartment: s - - formula: C20H31N6O4 + - compartment: "s" + - formula: "C20H31N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: phesertrp_s + - id: "phesertrp_s" - name: "Phenylalanyl-Seryl-Tryptophan" - - compartment: s - - formula: C23H26N4O5 + - compartment: "s" + - formula: "C23H26N4O5" - charge: 0 - - inchis: 1/C23H26N4O5/c24-17(10-14-6-2-1-3-7-14)21(29)27-20(13-28)22(30)26-19(23(31)32)11-15-12-25-18-9-5-4-8-16(15)18/h1-9,12,17,19-20,25,28H,10-11,13,24H2,(H,26,30)(H,27,29)(H,31,32)/t17-,19-,20+/s2 - - metFrom: Recon3D + - inchis: "1/C23H26N4O5/c24-17(10-14-6-2-1-3-7-14)21(29)27-20(13-28)22(30)26-19(23(31)32)11-15-12-25-18-9-5-4-8-16(15)18/h1-9,12,17,19-20,25,28H,10-11,13,24H2,(H,26,30)(H,27,29)(H,31,32)/t17-,19-,20+/s2" + - metFrom: "Recon3D" - !!omap - - id: phethrlys_s + - id: "phethrlys_s" - name: "Phenylalanyl-Threonyl-Lysine" - - compartment: s - - formula: C19H31N4O5 + - compartment: "s" + - formula: "C19H31N4O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: phetrpleu_s + - id: "phetrpleu_s" - name: "Phenylalanyl-Tryptophanyl-Leucine" - - compartment: s - - formula: C26H32N4O4 + - compartment: "s" + - formula: "C26H32N4O4" - charge: 0 - - inchis: 1/C26H32N4O4/c1-16(2)12-23(26(33)34)30-25(32)22(14-18-15-28-21-11-7-6-10-19(18)21)29-24(31)20(27)13-17-8-4-3-5-9-17/h3-11,15-16,20,22-23,28H,12-14,27H2,1-2H3,(H,29,31)(H,30,32)(H,33,34)/t20-,22+,23-/s2 - - metFrom: Recon3D + - inchis: "1/C26H32N4O4/c1-16(2)12-23(26(33)34)30-25(32)22(14-18-15-28-21-11-7-6-10-19(18)21)29-24(31)20(27)13-17-8-4-3-5-9-17/h3-11,15-16,20,22-23,28H,12-14,27H2,1-2H3,(H,29,31)(H,30,32)(H,33,34)/t20-,22+,23-/s2" + - metFrom: "Recon3D" - !!omap - - id: phetyr_s + - id: "phetyr_s" - name: "Phenylalanyl-Tyrosine" - - compartment: s - - formula: C18H20N2O4 + - compartment: "s" + - formula: "C18H20N2O4" - charge: 0 - - inchis: 1/C18H20N2O4/c19-15(10-12-4-2-1-3-5-12)17(22)20-16(18(23)24)11-13-6-8-14(21)9-7-13/h1-9,15-16,21H,10-11,19H2,(H,20,22)(H,23,24)/t15-,16+/s2 - - metFrom: Recon3D + - inchis: "1/C18H20N2O4/c19-15(10-12-4-2-1-3-5-12)17(22)20-16(18(23)24)11-13-6-8-14(21)9-7-13/h1-9,15-16,21H,10-11,19H2,(H,20,22)(H,23,24)/t15-,16+/s2" + - metFrom: "Recon3D" - !!omap - - id: phetyrgln_s + - id: "phetyrgln_s" - name: "Phenylalanyl-Tyrosinyl-Glutamine" - - compartment: s - - formula: C23H28N4O6 + - compartment: "s" + - formula: "C23H28N4O6" - charge: 0 - - inchis: 1/C23H28N4O6/c24-17(12-14-4-2-1-3-5-14)21(30)27-19(13-15-6-8-16(28)9-7-15)22(31)26-18(23(32)33)10-11-20(25)29/h1-9,17-19,28H,10-13,24H2,(H2,25,29)(H,26,31)(H,27,30)(H,32,33)/t17-,18-,19+/s2 - - metFrom: Recon3D + - inchis: "1/C23H28N4O6/c24-17(12-14-4-2-1-3-5-14)21(30)27-19(13-15-6-8-16(28)9-7-15)22(31)26-18(23(32)33)10-11-20(25)29/h1-9,17-19,28H,10-13,24H2,(H2,25,29)(H,26,31)(H,27,30)(H,32,33)/t17-,18-,19+/s2" + - metFrom: "Recon3D" - !!omap - - id: phetyrlys_s + - id: "phetyrlys_s" - name: "Phenylalanyl-Tyrosinyl-Lysine" - - compartment: s - - formula: C24H33N4O5 + - compartment: "s" + - formula: "C24H33N4O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: proargasp_s + - id: "proargasp_s" - name: "Prolyl-Arginyl-Aspartate" - - compartment: s - - formula: C15H26N6O6 + - compartment: "s" + - formula: "C15H26N6O6" - charge: 0 - - inchis: 1/C15H26N6O6/c16-15(17)19-6-2-4-9(20-12(24)8-3-1-5-18-8)13(25)21-10(14(26)27)7-11(22)23/h8-10,18H,1-7H2,(H,20,24)(H,21,25)(H,22,23)(H,26,27)(H4,16,17,19)/t8?,9-,10+/s2 - - metFrom: Recon3D + - inchis: "1/C15H26N6O6/c16-15(17)19-6-2-4-9(20-12(24)8-3-1-5-18-8)13(25)21-10(14(26)27)7-11(22)23/h8-10,18H,1-7H2,(H,20,24)(H,21,25)(H,22,23)(H,26,27)(H4,16,17,19)/t8?,9-,10+/s2" + - metFrom: "Recon3D" - !!omap - - id: proargcys_s + - id: "proargcys_s" - name: "Prolyl-Arginyl-Cysteine" - - compartment: s - - formula: C14H27N6O4S + - compartment: "s" + - formula: "C14H27N6O4S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: proasncys_s + - id: "proasncys_s" - name: "Prolyl-Asparaginyl-Cysteine" - - compartment: s - - formula: C12H20N4O5S + - compartment: "s" + - formula: "C12H20N4O5S" - charge: 0 - - inchis: 1/C12H20N4O5S/c13-9(17)4-7(11(19)16-8(5-22)12(20)21)15-10(18)6-2-1-3-14-6/h6-8,14,22H,1-5H2,(H2,13,17)(H,15,18)(H,16,19)(H,20,21)/t6?,7-,8+/s2 - - metFrom: Recon3D + - inchis: "1/C12H20N4O5S/c13-9(17)4-7(11(19)16-8(5-22)12(20)21)15-10(18)6-2-1-3-14-6/h6-8,14,22H,1-5H2,(H2,13,17)(H,15,18)(H,16,19)(H,20,21)/t6?,7-,8+/s2" + - metFrom: "Recon3D" - !!omap - - id: procys_s + - id: "procys_s" - name: "Prolyl-Cysteine" - - compartment: s - - formula: C8H14N2O3S + - compartment: "s" + - formula: "C8H14N2O3S" - charge: 0 - - inchis: 1/C8H14N2O3S/c11-7(5-2-1-3-9-5)10-6(4-14)8(12)13/h5-6,9,14H,1-4H2,(H,10,11)(H,12,13)/t5?,6-/s2 - - metFrom: Recon3D + - inchis: "1/C8H14N2O3S/c11-7(5-2-1-3-9-5)10-6(4-14)8(12)13/h5-6,9,14H,1-4H2,(H,10,11)(H,12,13)/t5?,6-/s2" + - metFrom: "Recon3D" - !!omap - - id: proglnpro_s + - id: "proglnpro_s" - name: "Prolyl-Glutaminyl-Proline" - - compartment: s - - formula: C15H24N4O5 + - compartment: "s" + - formula: "C15H24N4O5" - charge: 0 - - inchis: 1/C15H24N4O5/c16-12(20)6-5-10(18-13(21)9-3-1-7-17-9)14(22)19-8-2-4-11(19)15(23)24/h9-11,17H,1-8H2,(H2,16,20)(H,18,21)(H,23,24)/t9?,10-,11-/s2 - - metFrom: Recon3D + - inchis: "1/C15H24N4O5/c16-12(20)6-5-10(18-13(21)9-3-1-7-17-9)14(22)19-8-2-4-11(19)15(23)24/h9-11,17H,1-8H2,(H2,16,20)(H,18,21)(H,23,24)/t9?,10-,11-/s2" + - metFrom: "Recon3D" - !!omap - - id: proglulys_s + - id: "proglulys_s" - name: "Prolyl-Glutamatsyl-Lysine" - - compartment: s - - formula: C16H28N4O6 + - compartment: "s" + - formula: "C16H28N4O6" - charge: 0 - - inchis: 1/C16H28N4O6/c17-8-2-1-4-12(16(25)26)20-15(24)11(6-7-13(21)22)19-14(23)10-5-3-9-18-10/h10-12,18H,1-9,17H2,(H,19,23)(H,20,24)(H,21,22)(H,25,26)/t10?,11-,12+/s2 - - metFrom: Recon3D + - inchis: "1/C16H28N4O6/c17-8-2-1-4-12(16(25)26)20-15(24)11(6-7-13(21)22)19-14(23)10-5-3-9-18-10/h10-12,18H,1-9,17H2,(H,19,23)(H,20,24)(H,21,22)(H,25,26)/t10?,11-,12+/s2" + - metFrom: "Recon3D" - !!omap - - id: prohis_s + - id: "prohis_s" - name: "Prolyl-Histidine" - - compartment: s - - formula: C11H16N4O3 + - compartment: "s" + - formula: "C11H16N4O3" - charge: 0 - - inchis: 1/C11H16N4O3/c16-10(8-2-1-3-13-8)15-9(11(17)18)4-7-5-12-6-14-7/h5-6,8-9,13H,1-4H2,(H,12,14)(H,15,16)(H,17,18)/t8?,9-/s2 - - metFrom: Recon3D + - inchis: "1/C11H16N4O3/c16-10(8-2-1-3-13-8)15-9(11(17)18)4-7-5-12-6-14-7/h5-6,8-9,13H,1-4H2,(H,12,14)(H,15,16)(H,17,18)/t8?,9-/s2" + - metFrom: "Recon3D" - !!omap - - id: prohistyr_s + - id: "prohistyr_s" - name: "Prolyl-Histidyl-Tyrosine" - - compartment: s - - formula: C20H26N5O5 + - compartment: "s" + - formula: "C20H26N5O5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: proleuarg_s + - id: "proleuarg_s" - name: "Prolyl-Leucyl-Arginine" - - compartment: s - - formula: C17H33N6O4 + - compartment: "s" + - formula: "C17H33N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: prolyspro_s + - id: "prolyspro_s" - name: "Prolyl-Lysyl-Proline" - - compartment: s - - formula: C16H29N4O4 + - compartment: "s" + - formula: "C16H29N4O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: prophe_s + - id: "prophe_s" - name: "Prolyl-Phenylalanine" - - compartment: s - - formula: C14H18N2O3 + - compartment: "s" + - formula: "C14H18N2O3" - charge: 1 - - inchis: 1S/C14H18N2O3/c17-13(11-7-4-8-15-11)16-12(14(18)19)9-10-5-2-1-3-6-10/h1-3,5-6,11-12,15H,4,7-9H2,(H,16,17)(H,18,19)/t11-,12-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C14H18N2O3/c17-13(11-7-4-8-15-11)16-12(14(18)19)9-10-5-2-1-3-6-10/h1-3,5-6,11-12,15H,4,7-9H2,(H,16,17)(H,18,19)/t11-,12-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: proproarg_s + - id: "proproarg_s" - name: "Prolyl-Prolyl-Arginine" - - compartment: s - - formula: C16H29N6O4 + - compartment: "s" + - formula: "C16H29N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: propropro_s + - id: "propropro_s" - name: "Prolyl-Prolyl-Proline" - - compartment: s - - formula: C15H23N3O4 + - compartment: "s" + - formula: "C15H23N3O4" - charge: 0 - - inchis: 1/C15H23N3O4/c19-13(10-4-1-7-16-10)17-8-2-5-11(17)14(20)18-9-3-6-12(18)15(21)22/h10-12,16H,1-9H2,(H,21,22)/t10?,11-,12+/s2 - - metFrom: Recon3D + - inchis: "1/C15H23N3O4/c19-13(10-4-1-7-16-10)17-8-2-5-11(17)14(20)18-9-3-6-12(18)15(21)22/h10-12,16H,1-9H2,(H,21,22)/t10?,11-,12+/s2" + - metFrom: "Recon3D" - !!omap - - id: protrplys_s + - id: "protrplys_s" - name: "Prolyl-Tryptophanyl-Lysine" - - compartment: s - - formula: C22H32N5O4 + - compartment: "s" + - formula: "C22H32N5O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: protrpthr_s + - id: "protrpthr_s" - name: "Prolyl-Tryptophanyl-Threonine" - - compartment: s - - formula: C20H26N4O5 + - compartment: "s" + - formula: "C20H26N4O5" - charge: 0 - - inchis: 1S/C20H26N4O5/c1-11(25)17(20(28)29)24-19(27)16(23-18(26)15-7-4-8-21-15)9-12-10-22-14-6-3-2-5-13(12)14/h2-3,5-6,10-11,15-17,21-22,25H,4,7-9H2,1H3,(H,23,26)(H,24,27)(H,28,29)/t11-,15+,16+,17+/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C20H26N4O5/c1-11(25)17(20(28)29)24-19(27)16(23-18(26)15-7-4-8-21-15)9-12-10-22-14-6-3-2-5-13(12)14/h2-3,5-6,10-11,15-17,21-22,25H,4,7-9H2,1H3,(H,23,26)(H,24,27)(H,28,29)/t11-,15+,16+,17+/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: provalgln_s + - id: "provalgln_s" - name: "Prolyl-Valyl-Glutamine" - - compartment: s - - formula: C15H26N4O5 + - compartment: "s" + - formula: "C15H26N4O5" - charge: 0 - - inchis: 1/C15H26N4O5/c1-8(2)12(19-13(21)9-4-3-7-17-9)14(22)18-10(15(23)24)5-6-11(16)20/h8-10,12,17H,3-7H2,1-2H3,(H2,16,20)(H,18,22)(H,19,21)(H,23,24)/t9?,10-,12+/s2 - - metFrom: Recon3D + - inchis: "1/C15H26N4O5/c1-8(2)12(19-13(21)9-4-3-7-17-9)14(22)18-10(15(23)24)5-6-11(16)20/h8-10,12,17H,3-7H2,1-2H3,(H2,16,20)(H,18,22)(H,19,21)(H,23,24)/t9?,10-,12+/s2" + - metFrom: "Recon3D" - !!omap - - id: serargala_s + - id: "serargala_s" - name: "Seryl-Arginyl-Alanine" - - compartment: s - - formula: C12H25N6O5 + - compartment: "s" + - formula: "C12H25N6O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: serargtrp_s + - id: "serargtrp_s" - name: "Seryl-Arginyl-Tryptophan" - - compartment: s - - formula: C20H30N7O5 + - compartment: "s" + - formula: "C20H30N7O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sercysarg_s + - id: "sercysarg_s" - name: "Seryl-Cysteinyl-Arginine" - - compartment: s - - formula: C12H25N6O5S + - compartment: "s" + - formula: "C12H25N6O5S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: serglyglu_s + - id: "serglyglu_s" - name: "Seryl-Glycyl-Glutamate" - - compartment: s - - formula: C10H16N3O7 + - compartment: "s" + - formula: "C10H16N3O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: serlyshis_s + - id: "serlyshis_s" - name: "Seryl-Lysyl-Histidine" - - compartment: s - - formula: C15H27N6O5 + - compartment: "s" + - formula: "C15H27N6O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: serphelys_s + - id: "serphelys_s" - name: "Seryl-Phenylalanyl-Lysine" - - compartment: s - - formula: C18H29N4O5 + - compartment: "s" + - formula: "C18H29N4O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sertrphis_s + - id: "sertrphis_s" - name: "Seryl-Tryptophanyl-Histidine" - - compartment: s - - formula: C20H24N6O5 + - compartment: "s" + - formula: "C20H24N6O5" - charge: 0 - - inchis: 1/C20H24N6O5/c21-14(9-27)18(28)25-16(5-11-7-23-15-4-2-1-3-13(11)15)19(29)26-17(20(30)31)6-12-8-22-10-24-12/h1-4,7-8,10,14,16-17,23,27H,5-6,9,21H2,(H,22,24)(H,25,28)(H,26,29)(H,30,31)/t14-,16+,17-/s2 - - metFrom: Recon3D + - inchis: "1/C20H24N6O5/c21-14(9-27)18(28)25-16(5-11-7-23-15-4-2-1-3-13(11)15)19(29)26-17(20(30)31)6-12-8-22-10-24-12/h1-4,7-8,10,14,16-17,23,27H,5-6,9,21H2,(H,22,24)(H,25,28)(H,26,29)(H,30,31)/t14-,16+,17-/s2" + - metFrom: "Recon3D" - !!omap - - id: thrargtyr_s + - id: "thrargtyr_s" - name: "Threonyl-Arginyl-Tyrosine" - - compartment: s - - formula: C19H31N6O6 + - compartment: "s" + - formula: "C19H31N6O6" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: thrasntyr_s + - id: "thrasntyr_s" - name: "Threonyl-Asparaginyl-Tyrosine" - - compartment: s - - formula: C17H24N4O7 + - compartment: "s" + - formula: "C17H24N4O7" - charge: 0 - - inchis: 1/C17H24N4O7/c1-8(22)14(19)16(26)20-11(7-13(18)24)15(25)21-12(17(27)28)6-9-2-4-10(23)5-3-9/h2-5,8,11-12,14,22-23H,6-7,19H2,1H3,(H2,18,24)(H,20,26)(H,21,25)(H,27,28)/t8-,11+,12-,14-/s2 - - metFrom: Recon3D + - inchis: "1/C17H24N4O7/c1-8(22)14(19)16(26)20-11(7-13(18)24)15(25)21-12(17(27)28)6-9-2-4-10(23)5-3-9/h2-5,8,11-12,14,22-23H,6-7,19H2,1H3,(H2,18,24)(H,20,26)(H,21,25)(H,27,28)/t8-,11+,12-,14-/s2" + - metFrom: "Recon3D" - !!omap - - id: thrglnglu_s + - id: "thrglnglu_s" - name: "Threonyl-Glutaminyl-Glutamate" - - compartment: s - - formula: C14H23N4O8 + - compartment: "s" + - formula: "C14H23N4O8" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: thrglntyr_s + - id: "thrglntyr_s" - name: "Threonyl-Glutaminyl-Tyrosine" - - compartment: s - - formula: C18H26N4O7 + - compartment: "s" + - formula: "C18H26N4O7" - charge: 0 - - inchis: 1/C18H26N4O7/c1-9(23)15(20)17(27)21-12(6-7-14(19)25)16(26)22-13(18(28)29)8-10-2-4-11(24)5-3-10/h2-5,9,12-13,15,23-24H,6-8,20H2,1H3,(H2,19,25)(H,21,27)(H,22,26)(H,28,29)/t9-,12+,13-,15-/s2 - - metFrom: Recon3D + - inchis: "1/C18H26N4O7/c1-9(23)15(20)17(27)21-12(6-7-14(19)25)16(26)22-13(18(28)29)8-10-2-4-11(24)5-3-10/h2-5,9,12-13,15,23-24H,6-8,20H2,1H3,(H2,19,25)(H,21,27)(H,22,26)(H,28,29)/t9-,12+,13-,15-/s2" + - metFrom: "Recon3D" - !!omap - - id: thrhishis_s + - id: "thrhishis_s" - name: "Threonyl-Histidinyl-Histidine" - - compartment: s - - formula: C16H23N7O5 + - compartment: "s" + - formula: "C16H23N7O5" - charge: 0 - - inchis: 1/C16H23N7O5/c1-8(24)13(17)15(26)22-11(2-9-4-18-6-20-9)14(25)23-12(16(27)28)3-10-5-19-7-21-10/h4-8,11-13,24H,2-3,17H2,1H3,(H,18,20)(H,19,21)(H,22,26)(H,23,25)(H,27,28)/t8-,11+,12-,13-/s2 - - metFrom: Recon3D + - inchis: "1/C16H23N7O5/c1-8(24)13(17)15(26)22-11(2-9-4-18-6-20-9)14(25)23-12(16(27)28)3-10-5-19-7-21-10/h4-8,11-13,24H,2-3,17H2,1H3,(H,18,20)(H,19,21)(H,22,26)(H,23,25)(H,27,28)/t8-,11+,12-,13-/s2" + - metFrom: "Recon3D" - !!omap - - id: thrilearg_s + - id: "thrilearg_s" - name: "Threonyl-Isoleucyl-Arginine" - - compartment: s - - formula: C16H33N6O5 + - compartment: "s" + - formula: "C16H33N6O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: thrmetarg_s + - id: "thrmetarg_s" - name: "Threonyl-Methionyl-Arginine" - - compartment: s - - formula: C15H31N6O5S + - compartment: "s" + - formula: "C15H31N6O5S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: thrphearg_s + - id: "thrphearg_s" - name: "Threonyl-Phenylalanyl-Arginine" - - compartment: s - - formula: C19H31N6O5 + - compartment: "s" + - formula: "C19H31N6O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: thrserarg_s + - id: "thrserarg_s" - name: "Threonyl-Seryl-Arginine" - - compartment: s - - formula: C13H27N6O6 + - compartment: "s" + - formula: "C13H27N6O6" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: thrthrarg_s + - id: "thrthrarg_s" - name: "Threonyl-Threonyl-Arginine" - - compartment: s - - formula: C14H29N6O6 + - compartment: "s" + - formula: "C14H29N6O6" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: thrtyrmet_s + - id: "thrtyrmet_s" - name: "Threonyl-Tyrosyl-Methionine" - - compartment: s - - formula: C18H27N3O6S + - compartment: "s" + - formula: "C18H27N3O6S" - charge: 0 - - inchis: 1/C18H27N3O6S/c1-10(22)15(19)17(25)21-14(9-11-3-5-12(23)6-4-11)16(24)20-13(18(26)27)7-8-28-2/h3-6,10,13-15,22-23H,7-9,19H2,1-2H3,(H,20,24)(H,21,25)(H,26,27)/t10-,13-,14+,15-/s2 - - metFrom: Recon3D + - inchis: "1/C18H27N3O6S/c1-10(22)15(19)17(25)21-14(9-11-3-5-12(23)6-4-11)16(24)20-13(18(26)27)7-8-28-2/h3-6,10,13-15,22-23H,7-9,19H2,1-2H3,(H,20,24)(H,21,25)(H,26,27)/t10-,13-,14+,15-/s2" + - metFrom: "Recon3D" - !!omap - - id: trpalapro_s + - id: "trpalapro_s" - name: "Tryptophanyl-Alanyl-Proline" - - compartment: s - - formula: C19H24N4O4 + - compartment: "s" + - formula: "C19H24N4O4" - charge: 0 - - inchis: 1S/C19H24N4O4/c1-11(18(25)23-8-4-7-16(23)19(26)27)22-17(24)14(20)9-12-10-21-15-6-3-2-5-13(12)15/h2-3,5-6,10-11,14,16,21H,4,7-9,20H2,1H3,(H,22,24)(H,26,27)/t11-,14-,16-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C19H24N4O4/c1-11(18(25)23-8-4-7-16(23)19(26)27)22-17(24)14(20)9-12-10-21-15-6-3-2-5-13(12)15/h2-3,5-6,10-11,14,16,21H,4,7-9,20H2,1H3,(H,22,24)(H,26,27)/t11-,14-,16-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: trpargala_s + - id: "trpargala_s" - name: "Tryptophanyl-Arginyl-Alanine" - - compartment: s - - formula: C20H30N7O4 + - compartment: "s" + - formula: "C20H30N7O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: trpaspasp_s + - id: "trpaspasp_s" - name: "Tryptophanyl-Aspartyl-Aspartate" - - compartment: s - - formula: C19H20N4O8 + - compartment: "s" + - formula: "C19H20N4O8" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: trpglngln_s + - id: "trpglngln_s" - name: "Tryptophanyl-Glutaminyl-Glutamine" - - compartment: s - - formula: C21H28N6O6 + - compartment: "s" + - formula: "C21H28N6O6" - charge: 0 - - inchis: 1/C21H28N6O6/c22-13(9-11-10-25-14-4-2-1-3-12(11)14)19(30)26-15(5-7-17(23)28)20(31)27-16(21(32)33)6-8-18(24)29/h1-4,10,13,15-16,25H,5-9,22H2,(H2,23,28)(H2,24,29)(H,26,30)(H,27,31)(H,32,33)/t13-,15+,16-/s2 - - metFrom: Recon3D + - inchis: "1/C21H28N6O6/c22-13(9-11-10-25-14-4-2-1-3-12(11)14)19(30)26-15(5-7-17(23)28)20(31)27-16(21(32)33)6-8-18(24)29/h1-4,10,13,15-16,25H,5-9,22H2,(H2,23,28)(H2,24,29)(H,26,30)(H,27,31)(H,32,33)/t13-,15+,16-/s2" + - metFrom: "Recon3D" - !!omap - - id: trpglugly_s + - id: "trpglugly_s" - name: "Tryptophanyl-Glutamyl-Glycine" - - compartment: s - - formula: C18H21N4O6 + - compartment: "s" + - formula: "C18H21N4O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: trpgluleu_s + - id: "trpgluleu_s" - name: "Tryptophanyl-Glutamyl-Leucine" - - compartment: s - - formula: C22H29N4O6 + - compartment: "s" + - formula: "C22H29N4O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: trpglupro_s + - id: "trpglupro_s" - name: "Tryptophanyl-Glutamyl-Proline" - - compartment: s - - formula: C21H25N4O6 + - compartment: "s" + - formula: "C21H25N4O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: trpglutyr_s + - id: "trpglutyr_s" - name: "Tryptophanyl-Glutamyl-Tyrosine" - - compartment: s - - formula: C25H27N4O7 + - compartment: "s" + - formula: "C25H27N4O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: trpglyleu_s + - id: "trpglyleu_s" - name: "Tryptophanyl-Glycyl-Leucine" - - compartment: s - - formula: C19H26N4O4 + - compartment: "s" + - formula: "C19H26N4O4" - charge: 0 - - inchis: 1/C19H26N4O4/c1-11(2)7-16(19(26)27)23-17(24)10-22-18(25)14(20)8-12-9-21-15-6-4-3-5-13(12)15/h3-6,9,11,14,16,21H,7-8,10,20H2,1-2H3,(H,22,25)(H,23,24)(H,26,27)/t14-,16-/s2 - - metFrom: Recon3D + - inchis: "1/C19H26N4O4/c1-11(2)7-16(19(26)27)23-17(24)10-22-18(25)14(20)8-12-9-21-15-6-4-3-5-13(12)15/h3-6,9,11,14,16,21H,7-8,10,20H2,1-2H3,(H,22,25)(H,23,24)(H,26,27)/t14-,16-/s2" + - metFrom: "Recon3D" - !!omap - - id: trpglyphe_s + - id: "trpglyphe_s" - name: "Tryptophanyl-Glycyl-Phenylalanine" - - compartment: s - - formula: C22H24N4O4 + - compartment: "s" + - formula: "C22H24N4O4" - charge: 0 - - inchis: 1/C22H24N4O4/c23-17(11-15-12-24-18-9-5-4-8-16(15)18)21(28)25-13-20(27)26-19(22(29)30)10-14-6-2-1-3-7-14/h1-9,12,17,19,24H,10-11,13,23H2,(H,25,28)(H,26,27)(H,29,30)/t17-,19-/s2 - - metFrom: Recon3D + - inchis: "1/C22H24N4O4/c23-17(11-15-12-24-18-9-5-4-8-16(15)18)21(28)25-13-20(27)26-19(22(29)30)10-14-6-2-1-3-7-14/h1-9,12,17,19,24H,10-11,13,23H2,(H,25,28)(H,26,27)(H,29,30)/t17-,19-/s2" + - metFrom: "Recon3D" - !!omap - - id: trpglyval_s + - id: "trpglyval_s" - name: "Tryptophanyl-Glycyl-Valine" - - compartment: s - - formula: C18H24N4O4 + - compartment: "s" + - formula: "C18H24N4O4" - charge: 0 - - inchis: 1/C18H24N4O4/c1-10(2)16(18(25)26)22-15(23)9-21-17(24)13(19)7-11-8-20-14-6-4-3-5-12(11)14/h3-6,8,10,13,16,20H,7,9,19H2,1-2H3,(H,21,24)(H,22,23)(H,25,26)/t13-,16-/s2 - - metFrom: Recon3D + - inchis: "1/C18H24N4O4/c1-10(2)16(18(25)26)22-15(23)9-21-17(24)13(19)7-11-8-20-14-6-4-3-5-12(11)14/h3-6,8,10,13,16,20H,7,9,19H2,1-2H3,(H,21,24)(H,22,23)(H,25,26)/t13-,16-/s2" + - metFrom: "Recon3D" - !!omap - - id: trphismet_s + - id: "trphismet_s" - name: "Tryptophanyl-Histidyl-Methionine" - - compartment: s - - formula: C22H28N6O4S + - compartment: "s" + - formula: "C22H28N6O4S" - charge: 0 - - inchis: 1/C22H28N6O4S/c1-33-7-6-18(22(31)32)27-21(30)19(9-14-11-24-12-26-14)28-20(29)16(23)8-13-10-25-17-5-3-2-4-15(13)17/h2-5,10-12,16,18-19,25H,6-9,23H2,1H3,(H,24,26)(H,27,30)(H,28,29)(H,31,32)/t16-,18-,19+/s2 - - metFrom: Recon3D + - inchis: "1/C22H28N6O4S/c1-33-7-6-18(22(31)32)27-21(30)19(9-14-11-24-12-26-14)28-20(29)16(23)8-13-10-25-17-5-3-2-4-15(13)17/h2-5,10-12,16,18-19,25H,6-9,23H2,1H3,(H,24,26)(H,27,30)(H,28,29)(H,31,32)/t16-,18-,19+/s2" + - metFrom: "Recon3D" - !!omap - - id: trpilelys_s + - id: "trpilelys_s" - name: "Tryptophanyl-Isoleucyl-Lysine" - - compartment: s - - formula: C23H36N5O4 + - compartment: "s" + - formula: "C23H36N5O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: trpiletrp_s + - id: "trpiletrp_s" - name: "Tryptophanyl-Isoleucyl-Tryptophan" - - compartment: s - - formula: C28H33N5O4 + - compartment: "s" + - formula: "C28H33N5O4" - charge: 0 - - inchis: 1S/C28H33N5O4/c1-3-16(2)25(33-26(34)21(29)12-17-14-30-22-10-6-4-8-19(17)22)27(35)32-24(28(36)37)13-18-15-31-23-11-7-5-9-20(18)23/h4-11,14-16,21,24-25,30-31H,3,12-13,29H2,1-2H3,(H,32,35)(H,33,34)(H,36,37)/t16-,21-,24-,25-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C28H33N5O4/c1-3-16(2)25(33-26(34)21(29)12-17-14-30-22-10-6-4-8-19(17)22)27(35)32-24(28(36)37)13-18-15-31-23-11-7-5-9-20(18)23/h4-11,14-16,21,24-25,30-31H,3,12-13,29H2,1-2H3,(H,32,35)(H,33,34)(H,36,37)/t16-,21-,24-,25-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: trpleuval_s + - id: "trpleuval_s" - name: "Tryptophanyl-Leucyl-Valine" - - compartment: s - - formula: C22H32N4O4 + - compartment: "s" + - formula: "C22H32N4O4" - charge: 0 - - inchis: 1/C22H32N4O4/c1-12(2)9-18(21(28)26-19(13(3)4)22(29)30)25-20(27)16(23)10-14-11-24-17-8-6-5-7-15(14)17/h5-8,11-13,16,18-19,24H,9-10,23H2,1-4H3,(H,25,27)(H,26,28)(H,29,30)/t16-,18+,19-/s2 - - metFrom: Recon3D + - inchis: "1/C22H32N4O4/c1-12(2)9-18(21(28)26-19(13(3)4)22(29)30)25-20(27)16(23)10-14-11-24-17-8-6-5-7-15(14)17/h5-8,11-13,16,18-19,24H,9-10,23H2,1-4H3,(H,25,27)(H,26,28)(H,29,30)/t16-,18+,19-/s2" + - metFrom: "Recon3D" - !!omap - - id: trplys_s + - id: "trplys_s" - name: "Tryptophanyl-Lysine" - - compartment: s - - formula: C17H25N4O3 + - compartment: "s" + - formula: "C17H25N4O3" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: trpmetarg_s + - id: "trpmetarg_s" - name: "Tryptophanyl-Methionyl-Arginine" - - compartment: s - - formula: C22H34N7O4S + - compartment: "s" + - formula: "C22H34N7O4S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: trpmetval_s + - id: "trpmetval_s" - name: "Tryptophanyl-Methionyl-Valine" - - compartment: s - - formula: C21H30N4O4S + - compartment: "s" + - formula: "C21H30N4O4S" - charge: 0 - - inchis: 1/C21H30N4O4S/c1-12(2)18(21(28)29)25-20(27)17(8-9-30-3)24-19(26)15(22)10-13-11-23-16-7-5-4-6-14(13)16/h4-7,11-12,15,17-18,23H,8-10,22H2,1-3H3,(H,24,26)(H,25,27)(H,28,29)/t15-,17+,18-/s2 - - metFrom: Recon3D + - inchis: "1/C21H30N4O4S/c1-12(2)18(21(28)29)25-20(27)17(8-9-30-3)24-19(26)15(22)10-13-11-23-16-7-5-4-6-14(13)16/h4-7,11-12,15,17-18,23H,8-10,22H2,1-3H3,(H,24,26)(H,25,27)(H,28,29)/t15-,17+,18-/s2" + - metFrom: "Recon3D" - !!omap - - id: trpphe_s + - id: "trpphe_s" - name: "Tryptophanyl-Phenylalanine" - - compartment: s - - formula: C20H21N3O3 + - compartment: "s" + - formula: "C20H21N3O3" - charge: 0 - - inchis: 1/C20H21N3O3/c21-16(11-14-12-22-17-9-5-4-8-15(14)17)19(24)23-18(20(25)26)10-13-6-2-1-3-7-13/h1-9,12,16,18,22H,10-11,21H2,(H,23,24)(H,25,26)/t16-,18+/s2 - - metFrom: Recon3D + - inchis: "1/C20H21N3O3/c21-16(11-14-12-22-17-9-5-4-8-15(14)17)19(24)23-18(20(25)26)10-13-6-2-1-3-7-13/h1-9,12,16,18,22H,10-11,21H2,(H,23,24)(H,25,26)/t16-,18+/s2" + - metFrom: "Recon3D" - !!omap - - id: trpprogly_s + - id: "trpprogly_s" - name: "Tryptophanyl-Prolyl-Glycine" - - compartment: s - - formula: C18H21N4O4 + - compartment: "s" + - formula: "C18H21N4O4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: trpproleu_s + - id: "trpproleu_s" - name: "Tryptophanyl-Prolyl-Leucine" - - compartment: s - - formula: C22H30N4O4 + - compartment: "s" + - formula: "C22H30N4O4" - charge: 0 - - inchis: 1/C22H30N4O4/c1-13(2)10-18(22(29)30)25-20(27)19-8-5-9-26(19)21(28)16(23)11-14-12-24-17-7-4-3-6-15(14)17/h3-4,6-7,12-13,16,18-19,24H,5,8-11,23H2,1-2H3,(H,25,27)(H,29,30)/t16-,18-,19-/s2 - - metFrom: Recon3D + - inchis: "1/C22H30N4O4/c1-13(2)10-18(22(29)30)25-20(27)19-8-5-9-26(19)21(28)16(23)11-14-12-24-17-7-4-3-6-15(14)17/h3-4,6-7,12-13,16,18-19,24H,5,8-11,23H2,1-2H3,(H,25,27)(H,29,30)/t16-,18-,19-/s2" + - metFrom: "Recon3D" - !!omap - - id: trpproval_s + - id: "trpproval_s" - name: "Tryptophanyl-Prolyl-Valine" - - compartment: s - - formula: C21H28N4O4 + - compartment: "s" + - formula: "C21H28N4O4" - charge: 0 - - inchis: 1/C21H28N4O4/c1-12(2)18(21(28)29)24-19(26)17-8-5-9-25(17)20(27)15(22)10-13-11-23-16-7-4-3-6-14(13)16/h3-4,6-7,11-12,15,17-18,23H,5,8-10,22H2,1-2H3,(H,24,26)(H,28,29)/t15-,17-,18-/s2 - - metFrom: Recon3D + - inchis: "1/C21H28N4O4/c1-12(2)18(21(28)29)24-19(26)17-8-5-9-25(17)20(27)15(22)10-13-11-23-16-7-4-3-6-14(13)16/h3-4,6-7,11-12,15,17-18,23H,5,8-10,22H2,1-2H3,(H,24,26)(H,28,29)/t15-,17-,18-/s2" + - metFrom: "Recon3D" - !!omap - - id: trpsertyr_s + - id: "trpsertyr_s" - name: "Tryptophanyl-Seryl-Tyrosine" - - compartment: s - - formula: C23H26N4O6 + - compartment: "s" + - formula: "C23H26N4O6" - charge: 0 - - inchis: 1/C23H26N4O6/c24-17(10-14-11-25-18-4-2-1-3-16(14)18)21(30)27-20(12-28)22(31)26-19(23(32)33)9-13-5-7-15(29)8-6-13/h1-8,11,17,19-20,25,28-29H,9-10,12,24H2,(H,26,31)(H,27,30)(H,32,33)/t17-,19-,20+/s2 - - metFrom: Recon3D + - inchis: "1/C23H26N4O6/c24-17(10-14-11-25-18-4-2-1-3-16(14)18)21(30)27-20(12-28)22(31)26-19(23(32)33)9-13-5-7-15(29)8-6-13/h1-8,11,17,19-20,25,28-29H,9-10,12,24H2,(H,26,31)(H,27,30)(H,32,33)/t17-,19-,20+/s2" + - metFrom: "Recon3D" - !!omap - - id: trpthrglu_s + - id: "trpthrglu_s" - name: "Tryptophanyl-Threonyl-Glutamate" - - compartment: s - - formula: C20H25N4O7 + - compartment: "s" + - formula: "C20H25N4O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: trpthrile_s + - id: "trpthrile_s" - name: "Tryptophanyl-Threonyl-Isoleucine" - - compartment: s - - formula: C21H30N4O5 + - compartment: "s" + - formula: "C21H30N4O5" - charge: 0 - - inchis: 1/C21H30N4O5/c1-4-11(2)17(21(29)30)24-20(28)18(12(3)26)25-19(27)15(22)9-13-10-23-16-8-6-5-7-14(13)16/h5-8,10-12,15,17-18,23,26H,4,9,22H2,1-3H3,(H,24,28)(H,25,27)(H,29,30)/t11?,12-,15-,17-,18+/s2 - - metFrom: Recon3D + - inchis: "1/C21H30N4O5/c1-4-11(2)17(21(29)30)24-20(28)18(12(3)26)25-19(27)15(22)9-13-10-23-16-8-6-5-7-14(13)16/h5-8,10-12,15,17-18,23,26H,4,9,22H2,1-3H3,(H,24,28)(H,25,27)(H,29,30)/t11?,12-,15-,17-,18+/s2" + - metFrom: "Recon3D" - !!omap - - id: trpthrtyr_s + - id: "trpthrtyr_s" - name: "Tryptophanyl-Threonyl-Tyrosine" - - compartment: s - - formula: C24H28N4O6 + - compartment: "s" + - formula: "C24H28N4O6" - charge: 0 - - inchis: 1/C24H28N4O6/c1-13(29)21(23(32)27-20(24(33)34)10-14-6-8-16(30)9-7-14)28-22(31)18(25)11-15-12-26-19-5-3-2-4-17(15)19/h2-9,12-13,18,20-21,26,29-30H,10-11,25H2,1H3,(H,27,32)(H,28,31)(H,33,34)/t13-,18-,20-,21+/s2 - - metFrom: Recon3D + - inchis: "1/C24H28N4O6/c1-13(29)21(23(32)27-20(24(33)34)10-14-6-8-16(30)9-7-14)28-22(31)18(25)11-15-12-26-19-5-3-2-4-17(15)19/h2-9,12-13,18,20-21,26,29-30H,10-11,25H2,1H3,(H,27,32)(H,28,31)(H,33,34)/t13-,18-,20-,21+/s2" + - metFrom: "Recon3D" - !!omap - - id: trptyrgln_s + - id: "trptyrgln_s" - name: "Tryptophanyl-Tyrosyl-Glutamine" - - compartment: s - - formula: C25H29N5O6 + - compartment: "s" + - formula: "C25H29N5O6" - charge: 0 - - inchis: 1S/C25H29N5O6/c26-18(12-15-13-28-19-4-2-1-3-17(15)19)23(33)30-21(11-14-5-7-16(31)8-6-14)24(34)29-20(25(35)36)9-10-22(27)32/h1-8,13,18,20-21,28,31H,9-12,26H2,(H2,27,32)(H,29,34)(H,30,33)(H,35,36)/t18-,20-,21-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C25H29N5O6/c26-18(12-15-13-28-19-4-2-1-3-17(15)19)23(33)30-21(11-14-5-7-16(31)8-6-14)24(34)29-20(25(35)36)9-10-22(27)32/h1-8,13,18,20-21,28,31H,9-12,26H2,(H2,27,32)(H,29,34)(H,30,33)(H,35,36)/t18-,20-,21-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: trptyrtyr_s + - id: "trptyrtyr_s" - name: "Tryptophanyl-Tyrosyl-Tyrosine" - - compartment: s - - formula: C29H30N4O6 + - compartment: "s" + - formula: "C29H30N4O6" - charge: 0 - - inchis: 1/C29H30N4O6/c30-23(15-19-16-31-24-4-2-1-3-22(19)24)27(36)32-25(13-17-5-9-20(34)10-6-17)28(37)33-26(29(38)39)14-18-7-11-21(35)12-8-18/h1-12,16,23,25-26,31,34-35H,13-15,30H2,(H,32,36)(H,33,37)(H,38,39)/t23-,25+,26-/s2 - - metFrom: Recon3D + - inchis: "1/C29H30N4O6/c30-23(15-19-16-31-24-4-2-1-3-22(19)24)27(36)32-25(13-17-5-9-20(34)10-6-17)28(37)33-26(29(38)39)14-18-7-11-21(35)12-8-18/h1-12,16,23,25-26,31,34-35H,13-15,30H2,(H,32,36)(H,33,37)(H,38,39)/t23-,25+,26-/s2" + - metFrom: "Recon3D" - !!omap - - id: trpvalasp_s + - id: "trpvalasp_s" - name: "Tryptophanyl-Valyl-Aspartate" - - compartment: s - - formula: C20H25N4O6 + - compartment: "s" + - formula: "C20H25N4O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tyrala_s + - id: "tyrala_s" - name: "Tyrosyl-Alanine" - - compartment: s - - formula: C12H16N2O4 + - compartment: "s" + - formula: "C12H16N2O4" - charge: 0 - - inchis: 1/C12H16N2O4/c1-7(12(17)18)14-11(16)10(13)6-8-2-4-9(15)5-3-8/h2-5,7,10,15H,6,13H2,1H3,(H,14,16)(H,17,18)/t7-,10+/s2 - - metFrom: Recon3D + - inchis: "1/C12H16N2O4/c1-7(12(17)18)14-11(16)10(13)6-8-2-4-9(15)5-3-8/h2-5,7,10,15H,6,13H2,1H3,(H,14,16)(H,17,18)/t7-,10+/s2" + - metFrom: "Recon3D" - !!omap - - id: tyralaphe_s + - id: "tyralaphe_s" - name: "Tyrosyl-Alaninyl-Phenylalanine" - - compartment: s - - formula: C21H25N3O5 + - compartment: "s" + - formula: "C21H25N3O5" - charge: 0 - - inchis: 1/C21H25N3O5/c1-13(23-20(27)17(22)11-15-7-9-16(25)10-8-15)19(26)24-18(21(28)29)12-14-5-3-2-4-6-14/h2-10,13,17-18,25H,11-12,22H2,1H3,(H,23,27)(H,24,26)(H,28,29)/t13-,17+,18+/s2 - - metFrom: Recon3D + - inchis: "1/C21H25N3O5/c1-13(23-20(27)17(22)11-15-7-9-16(25)10-8-15)19(26)24-18(21(28)29)12-14-5-3-2-4-6-14/h2-10,13,17-18,25H,11-12,22H2,1H3,(H,23,27)(H,24,26)(H,28,29)/t13-,17+,18+/s2" + - metFrom: "Recon3D" - !!omap - - id: tyrargglu_s + - id: "tyrargglu_s" - name: "Tyrosyl-Arginyl-Glutamate" - - compartment: s - - formula: C20H30N6O7 + - compartment: "s" + - formula: "C20H30N6O7" - charge: 0 - - inchis: 1/C20H30N6O7/c21-13(10-11-3-5-12(27)6-4-11)17(30)25-14(2-1-9-24-20(22)23)18(31)26-15(19(32)33)7-8-16(28)29/h3-6,13-15,27H,1-2,7-10,21H2,(H,25,30)(H,26,31)(H,28,29)(H,32,33)(H4,22,23,24)/t13-,14+,15-/s2 - - metFrom: Recon3D + - inchis: "1/C20H30N6O7/c21-13(10-11-3-5-12(27)6-4-11)17(30)25-14(2-1-9-24-20(22)23)18(31)26-15(19(32)33)7-8-16(28)29/h3-6,13-15,27H,1-2,7-10,21H2,(H,25,30)(H,26,31)(H,28,29)(H,32,33)(H4,22,23,24)/t13-,14+,15-/s2" + - metFrom: "Recon3D" - !!omap - - id: tyrargser_s + - id: "tyrargser_s" - name: "Tyrosyl-Arginyl-Serine" - - compartment: s - - formula: C18H29N6O6 + - compartment: "s" + - formula: "C18H29N6O6" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tyrasparg_s + - id: "tyrasparg_s" - name: "Tyrosyl-Aspartyl-Arginine" - - compartment: s - - formula: C19H28N6O7 + - compartment: "s" + - formula: "C19H28N6O7" - charge: 0 - - inchis: 1/C19H28N6O7/c20-12(8-10-3-5-11(26)6-4-10)16(29)25-14(9-15(27)28)17(30)24-13(18(31)32)2-1-7-23-19(21)22/h3-6,12-14,26H,1-2,7-9,20H2,(H,24,30)(H,25,29)(H,27,28)(H,31,32)(H4,21,22,23)/t12-,13-,14+/s2 - - metFrom: Recon3D + - inchis: "1/C19H28N6O7/c20-12(8-10-3-5-11(26)6-4-10)16(29)25-14(9-15(27)28)17(30)24-13(18(31)32)2-1-7-23-19(21)22/h3-6,12-14,26H,1-2,7-9,20H2,(H,24,30)(H,25,29)(H,27,28)(H,31,32)(H4,21,22,23)/t12-,13-,14+/s2" + - metFrom: "Recon3D" - !!omap - - id: tyrcysgly_s + - id: "tyrcysgly_s" - name: "Tyrosyl-Cysteinyl-Glycine" - - compartment: s - - formula: C14H19N3O5S + - compartment: "s" + - formula: "C14H19N3O5S" - charge: 0 - - inchis: 1/C14H19N3O5S/c15-10(5-8-1-3-9(18)4-2-8)13(21)17-11(7-23)14(22)16-6-12(19)20/h1-4,10-11,18,23H,5-7,15H2,(H,16,22)(H,17,21)(H,19,20)/t10-,11+/s2 - - metFrom: Recon3D + - inchis: "1/C14H19N3O5S/c15-10(5-8-1-3-9(18)4-2-8)13(21)17-11(7-23)14(22)16-6-12(19)20/h1-4,10-11,18,23H,5-7,15H2,(H,16,22)(H,17,21)(H,19,20)/t10-,11+/s2" + - metFrom: "Recon3D" - !!omap - - id: tyrcysthr_s + - id: "tyrcysthr_s" - name: "Tyrosyl-Cysteinyl-Threonine" - - compartment: s - - formula: C16H23N3O6S + - compartment: "s" + - formula: "C16H23N3O6S" - charge: 0 - - inchis: 1/C16H23N3O6S/c1-8(20)13(16(24)25)19-15(23)12(7-26)18-14(22)11(17)6-9-2-4-10(21)5-3-9/h2-5,8,11-13,20-21,26H,6-7,17H2,1H3,(H,18,22)(H,19,23)(H,24,25)/t8-,11-,12+,13-/s2 - - metFrom: Recon3D + - inchis: "1/C16H23N3O6S/c1-8(20)13(16(24)25)19-15(23)12(7-26)18-14(22)11(17)6-9-2-4-10(21)5-3-9/h2-5,8,11-13,20-21,26H,6-7,17H2,1H3,(H,18,22)(H,19,23)(H,24,25)/t8-,11-,12+,13-/s2" + - metFrom: "Recon3D" - !!omap - - id: tyrglu_s + - id: "tyrglu_s" - name: "Tyrosyl-Glutamate" - - compartment: s - - formula: C14H17N2O6 + - compartment: "s" + - formula: "C14H17N2O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tyrleuarg_s + - id: "tyrleuarg_s" - name: "Tyrosyl-Leucyl-Arginine" - - compartment: s - - formula: C21H35N6O5 + - compartment: "s" + - formula: "C21H35N6O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tyrphetyr_s + - id: "tyrphetyr_s" - name: "Tyrosyl-Phenylalanyl-Tyrosine" - - compartment: s - - formula: C27H29N3O6 + - compartment: "s" + - formula: "C27H29N3O6" - charge: 0 - - inchis: 1/C27H29N3O6/c28-22(14-18-6-10-20(31)11-7-18)25(33)29-23(15-17-4-2-1-3-5-17)26(34)30-24(27(35)36)16-19-8-12-21(32)13-9-19/h1-13,22-24,31-32H,14-16,28H2,(H,29,33)(H,30,34)(H,35,36)/t22-,23+,24-/s2 - - metFrom: Recon3D + - inchis: "1/C27H29N3O6/c28-22(14-18-6-10-20(31)11-7-18)25(33)29-23(15-17-4-2-1-3-5-17)26(34)30-24(27(35)36)16-19-8-12-21(32)13-9-19/h1-13,22-24,31-32H,14-16,28H2,(H,29,33)(H,30,34)(H,35,36)/t22-,23+,24-/s2" + - metFrom: "Recon3D" - !!omap - - id: tyrthr_s + - id: "tyrthr_s" - name: "Tyrosyl-Threonine" - - compartment: s - - formula: C13H18N2O5 + - compartment: "s" + - formula: "C13H18N2O5" - charge: 0 - - inchis: 1/C13H18N2O5/c1-7(16)11(13(19)20)15-12(18)10(14)6-8-2-4-9(17)5-3-8/h2-5,7,10-11,16-17H,6,14H2,1H3,(H,15,18)(H,19,20)/t7-,10-,11+/s2 - - metFrom: Recon3D + - inchis: "1/C13H18N2O5/c1-7(16)11(13(19)20)15-12(18)10(14)6-8-2-4-9(17)5-3-8/h2-5,7,10-11,16-17H,6,14H2,1H3,(H,15,18)(H,19,20)/t7-,10-,11+/s2" + - metFrom: "Recon3D" - !!omap - - id: tyrtrpphe_s + - id: "tyrtrpphe_s" - name: "Tyrosyl-Tryptophanyl-Phenylalanine" - - compartment: s - - formula: C29H30N4O5 + - compartment: "s" + - formula: "C29H30N4O5" - charge: 0 - - inchis: 1S/C29H30N4O5/c30-23(14-19-10-12-21(34)13-11-19)27(35)32-25(16-20-17-31-24-9-5-4-8-22(20)24)28(36)33-26(29(37)38)15-18-6-2-1-3-7-18/h1-13,17,23,25-26,31,34H,14-16,30H2,(H,32,35)(H,33,36)(H,37,38)/t23-,25-,26-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C29H30N4O5/c30-23(14-19-10-12-21(34)13-11-19)27(35)32-25(16-20-17-31-24-9-5-4-8-22(20)24)28(36)33-26(29(37)38)15-18-6-2-1-3-7-18/h1-13,17,23,25-26,31,34H,14-16,30H2,(H,32,35)(H,33,36)(H,37,38)/t23-,25-,26-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: tyrtyr_s + - id: "tyrtyr_s" - name: "Tyrosyl-Tyrosine" - - compartment: s - - formula: C18H20N2O5 + - compartment: "s" + - formula: "C18H20N2O5" - charge: 0 - - inchis: 1/C18H20N2O5/c19-15(9-11-1-5-13(21)6-2-11)17(23)20-16(18(24)25)10-12-3-7-14(22)8-4-12/h1-8,15-16,21-22H,9-10,19H2,(H,20,23)(H,24,25)/t15-,16+/s2 - - metFrom: Recon3D + - inchis: "1/C18H20N2O5/c19-15(9-11-1-5-13(21)6-2-11)17(23)20-16(18(24)25)10-12-3-7-14(22)8-4-12/h1-8,15-16,21-22H,9-10,19H2,(H,20,23)(H,24,25)/t15-,16+/s2" + - metFrom: "Recon3D" - !!omap - - id: tyrvalmet_s + - id: "tyrvalmet_s" - name: "Tyrosyl-Valyl-Methionine" - - compartment: s - - formula: C19H29N3O5S + - compartment: "s" + - formula: "C19H29N3O5S" - charge: 0 - - inchis: 1/C19H29N3O5S/c1-11(2)16(18(25)21-15(19(26)27)8-9-28-3)22-17(24)14(20)10-12-4-6-13(23)7-5-12/h4-7,11,14-16,23H,8-10,20H2,1-3H3,(H,21,25)(H,22,24)(H,26,27)/t14-,15-,16+/s2 - - metFrom: Recon3D + - inchis: "1/C19H29N3O5S/c1-11(2)16(18(25)21-15(19(26)27)8-9-28-3)22-17(24)14(20)10-12-4-6-13(23)7-5-12/h4-7,11,14-16,23H,8-10,20H2,1-3H3,(H,21,25)(H,22,24)(H,26,27)/t14-,15-,16+/s2" + - metFrom: "Recon3D" - !!omap - - id: valarggly_s + - id: "valarggly_s" - name: "Valyl-Arginyl-Glycine" - - compartment: s - - formula: C13H27N6O4 + - compartment: "s" + - formula: "C13H27N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: valhisasn_s + - id: "valhisasn_s" - name: "Valyl-Histidyl-Asparagine" - - compartment: s - - formula: C15H24N6O5 + - compartment: "s" + - formula: "C15H24N6O5" - charge: 0 - - inchis: 1/C15H24N6O5/c1-7(2)12(17)14(24)20-9(3-8-5-18-6-19-8)13(23)21-10(15(25)26)4-11(16)22/h5-7,9-10,12H,3-4,17H2,1-2H3,(H2,16,22)(H,18,19)(H,20,24)(H,21,23)(H,25,26)/t9-,10+,12+/s2 - - metFrom: Recon3D + - inchis: "1/C15H24N6O5/c1-7(2)12(17)14(24)20-9(3-8-5-18-6-19-8)13(23)21-10(15(25)26)4-11(16)22/h5-7,9-10,12H,3-4,17H2,1-2H3,(H2,16,22)(H,18,19)(H,20,24)(H,21,23)(H,25,26)/t9-,10+,12+/s2" + - metFrom: "Recon3D" - !!omap - - id: valleuphe_s + - id: "valleuphe_s" - name: "Valyl-Leucyl-Phenylalanine" - - compartment: s - - formula: C20H31N3O4 + - compartment: "s" + - formula: "C20H31N3O4" - charge: 0 - - inchis: 1/C20H31N3O4/c1-12(2)10-15(22-19(25)17(21)13(3)4)18(24)23-16(20(26)27)11-14-8-6-5-7-9-14/h5-9,12-13,15-17H,10-11,21H2,1-4H3,(H,22,25)(H,23,24)(H,26,27)/t15-,16+,17+/s2 - - metFrom: Recon3D + - inchis: "1/C20H31N3O4/c1-12(2)10-15(22-19(25)17(21)13(3)4)18(24)23-16(20(26)27)11-14-8-6-5-7-9-14/h5-9,12-13,15-17H,10-11,21H2,1-4H3,(H,22,25)(H,23,24)(H,26,27)/t15-,16+,17+/s2" + - metFrom: "Recon3D" - !!omap - - id: vallystyr_s + - id: "vallystyr_s" - name: "Valyl-Lysyl-Tyrosine" - - compartment: s - - formula: C20H33N4O5 + - compartment: "s" + - formula: "C20H33N4O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: valphearg_s + - id: "valphearg_s" - name: "Valyl-Phenylalanyl-Arginine" - - compartment: s - - formula: C20H33N6O4 + - compartment: "s" + - formula: "C20H33N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: valprotrp_s + - id: "valprotrp_s" - name: "Valyl-Prolyl-Tryptophan" - - compartment: s - - formula: C21H28N4O4 + - compartment: "s" + - formula: "C21H28N4O4" - charge: 0 - - inchis: 1S/C21H28N4O4/c1-12(2)18(22)20(27)25-9-5-8-17(25)19(26)24-16(21(28)29)10-13-11-23-15-7-4-3-6-14(13)15/h3-4,6-7,11-12,16-18,23H,5,8-10,22H2,1-2H3,(H,24,26)(H,28,29)/t16-,17-,18-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C21H28N4O4/c1-12(2)18(22)20(27)25-9-5-8-17(25)19(26)24-16(21(28)29)10-13-11-23-15-7-4-3-6-14(13)15/h3-4,6-7,11-12,16-18,23H,5,8-10,22H2,1-2H3,(H,24,26)(H,28,29)/t16-,17-,18-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: valserarg_s + - id: "valserarg_s" - name: "Valyl-Seryl-Arginine" - - compartment: s - - formula: C14H29N6O5 + - compartment: "s" + - formula: "C14H29N6O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: valtrpphe_s + - id: "valtrpphe_s" - name: "Valyl-Tryptophanyl-Phenylalanine" - - compartment: s - - formula: C25H30N4O4 + - compartment: "s" + - formula: "C25H30N4O4" - charge: 0 - - inchis: 1/C25H30N4O4/c1-15(2)22(26)24(31)28-20(13-17-14-27-19-11-7-6-10-18(17)19)23(30)29-21(25(32)33)12-16-8-4-3-5-9-16/h3-11,14-15,20-22,27H,12-13,26H2,1-2H3,(H,28,31)(H,29,30)(H,32,33)/t20-,21+,22+/s2 - - metFrom: Recon3D + - inchis: "1/C25H30N4O4/c1-15(2)22(26)24(31)28-20(13-17-14-27-19-11-7-6-10-18(17)19)23(30)29-21(25(32)33)12-16-8-4-3-5-9-16/h3-11,14-15,20-22,27H,12-13,26H2,1-2H3,(H,28,31)(H,29,30)(H,32,33)/t20-,21+,22+/s2" + - metFrom: "Recon3D" - !!omap - - id: valtrpval_s + - id: "valtrpval_s" - name: "Valyl-Tryptophanyl-Valine" - - compartment: s - - formula: C21H30N4O4 + - compartment: "s" + - formula: "C21H30N4O4" - charge: 0 - - inchis: 1/C21H30N4O4/c1-11(2)17(22)20(27)24-16(19(26)25-18(12(3)4)21(28)29)9-13-10-23-15-8-6-5-7-14(13)15/h5-8,10-12,16-18,23H,9,22H2,1-4H3,(H,24,27)(H,25,26)(H,28,29)/t16-,17+,18+/s2 - - metFrom: Recon3D + - inchis: "1/C21H30N4O4/c1-11(2)17(22)20(27)24-16(19(26)25-18(12(3)4)21(28)29)9-13-10-23-15-8-6-5-7-14(13)15/h5-8,10-12,16-18,23H,9,22H2,1-4H3,(H,24,27)(H,25,26)(H,28,29)/t16-,17+,18+/s2" + - metFrom: "Recon3D" - !!omap - - id: valval_s + - id: "valval_s" - name: "Valyl-Valine" - - compartment: s - - formula: C10H20N2O3 + - compartment: "s" + - formula: "C10H20N2O3" - charge: 0 - - inchis: 1/C10H20N2O3/c1-5(2)7(11)9(13)12-8(6(3)4)10(14)15/h5-8H,11H2,1-4H3,(H,12,13)(H,14,15)/t7-,8+/s2 - - metFrom: Recon3D + - inchis: "1/C10H20N2O3/c1-5(2)7(11)9(13)12-8(6(3)4)10(14)15/h5-8H,11H2,1-4H3,(H,12,13)(H,14,15)/t7-,8+/s2" + - metFrom: "Recon3D" - !!omap - - id: trpglyasp_s + - id: "trpglyasp_s" - name: "Tryptophanyl-Glycyl-Aspartate" - - compartment: s - - formula: C17H19N4O6 + - compartment: "s" + - formula: "C17H19N4O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: alaargcys_c + - id: "alaargcys_c" - name: "Alanyl-Arginyl-Cysteine" - - compartment: c - - formula: C12H25N6O4S + - compartment: "c" + - formula: "C12H25N6O4S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: alaarggly_c + - id: "alaarggly_c" - name: "Alanyl-Arginyl-Glycine" - - compartment: c - - formula: C11H23N6O4 + - compartment: "c" + - formula: "C11H23N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: alaasnleu_c + - id: "alaasnleu_c" - name: "Alanyl-Asparaginyl-Leucine" - - compartment: c - - formula: C13H24N4O5 + - compartment: "c" + - formula: "C13H24N4O5" - charge: 0 - - inchis: 1/C13H24N4O5/c1-6(2)4-9(13(21)22)17-12(20)8(5-10(15)18)16-11(19)7(3)14/h6-9H,4-5,14H2,1-3H3,(H2,15,18)(H,16,19)(H,17,20)(H,21,22) - - metFrom: Recon3D + - inchis: "1/C13H24N4O5/c1-6(2)4-9(13(21)22)17-12(20)8(5-10(15)18)16-11(19)7(3)14/h6-9H,4-5,14H2,1-3H3,(H2,15,18)(H,16,19)(H,17,20)(H,21,22)" + - metFrom: "Recon3D" - !!omap - - id: alaglylys_c + - id: "alaglylys_c" - name: "Alanyl-Glycyl-Lysine" - - compartment: c - - formula: C11H23N4O4 + - compartment: "c" + - formula: "C11H23N4O4" - charge: 2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: alahisala_c + - id: "alahisala_c" - name: "Alanyl-Histidyl-Alanine" - - compartment: c - - formula: C12H19N5O4 + - compartment: "c" + - formula: "C12H19N5O4" - charge: 0 - - inchis: 1S/C12H19N5O4/c1-6(13)10(18)17-9(3-8-4-14-5-15-8)11(19)16-7(2)12(20)21/h4-7,9H,3,13H2,1-2H3,(H,14,15)(H,16,19)(H,17,18)(H,20,21)/t6-,7-,9-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C12H19N5O4/c1-6(13)10(18)17-9(3-8-4-14-5-15-8)11(19)16-7(2)12(20)21/h4-7,9H,3,13H2,1-2H3,(H,14,15)(H,16,19)(H,17,18)(H,20,21)/t6-,7-,9-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: alalysthr_c + - id: "alalysthr_c" - name: "Alanyl-Lysine-Threonine" - - compartment: c - - formula: C13H27N4O5 + - compartment: "c" + - formula: "C13H27N4O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argalaala_c + - id: "argalaala_c" - name: "Arginyl-Alanyl-Alanine" - - compartment: c - - formula: C12H25N6O4 + - compartment: "c" + - formula: "C12H25N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argalaphe_c + - id: "argalaphe_c" - name: "Arginyl-Alanine-Phenylalanine" - - compartment: c - - formula: C18H29N6O4 + - compartment: "c" + - formula: "C18H29N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argalathr_c + - id: "argalathr_c" - name: "Arginyl-Alanyl-Threonine" - - compartment: c - - formula: C13H27N6O5 + - compartment: "c" + - formula: "C13H27N6O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argarg_c + - id: "argarg_c" - name: "Arginyl-Arginine" - - compartment: c - - formula: C12H28N8O3 + - compartment: "c" + - formula: "C12H28N8O3" - charge: 2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argarglys_c + - id: "argarglys_c" - name: "Arginyl-Arginyl-Lysine" - - compartment: c - - formula: C18H41N10O4 + - compartment: "c" + - formula: "C18H41N10O4" - charge: 3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argargmet_c + - id: "argargmet_c" - name: "Arginyl-Arginyl-Metheonine" - - compartment: c - - formula: C17H37N9O4S + - compartment: "c" + - formula: "C17H37N9O4S" - charge: 2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argcysgly_c + - id: "argcysgly_c" - name: "Arginyl-Cystinyl-Glycine" - - compartment: c - - formula: C11H23N6O4S + - compartment: "c" + - formula: "C11H23N6O4S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argcysser_c + - id: "argcysser_c" - name: "Arginyl-Cystinyl-Serine" - - compartment: c - - formula: C12H25N6O5S + - compartment: "c" + - formula: "C12H25N6O5S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: arggluglu_c + - id: "arggluglu_c" - name: "Arginyl-Glutamyl-Glutamate" - - compartment: c - - formula: C16H27N6O8 + - compartment: "c" + - formula: "C16H27N6O8" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argglupro_c + - id: "argglupro_c" - name: "Arginyl-Glutamyl-Proline" - - compartment: c - - formula: C16H28N6O6 + - compartment: "c" + - formula: "C16H28N6O6" - charge: 0 - - inchis: 1/C16H28N6O6/c17-9(3-1-7-20-16(18)19)13(25)21-10(5-6-12(23)24)14(26)22-8-2-4-11(22)15(27)28/h9-11H,1-8,17H2,(H,21,25)(H,23,24)(H,27,28)(H4,18,19,20)/t9-,10+,11-/s2 - - metFrom: Recon3D + - inchis: "1/C16H28N6O6/c17-9(3-1-7-20-16(18)19)13(25)21-10(5-6-12(23)24)14(26)22-8-2-4-11(22)15(27)28/h9-11H,1-8,17H2,(H,21,25)(H,23,24)(H,27,28)(H4,18,19,20)/t9-,10+,11-/s2" + - metFrom: "Recon3D" - !!omap - - id: argglygly_c + - id: "argglygly_c" - name: "Arginyl-Glycyl-Glycine" - - compartment: c - - formula: C10H21N6O4 + - compartment: "c" + - formula: "C10H21N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: arghisthr_c + - id: "arghisthr_c" - name: "Arginyl-Histidyl-Threonine" - - compartment: c - - formula: C16H29N8O5 + - compartment: "c" + - formula: "C16H29N8O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argleuphe_c + - id: "argleuphe_c" - name: "Arginyl-Leucyl-Phenylalanine" - - compartment: c - - formula: C21H35N6O4 + - compartment: "c" + - formula: "C21H35N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: arglysasp_c + - id: "arglysasp_c" - name: "Arginyl-Lysyl-Aspartate" - - compartment: c - - formula: C16H32N7O6 + - compartment: "c" + - formula: "C16H32N7O6" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argphearg_c + - id: "argphearg_c" - name: "Arginyl-Phenylalanine-Arginine" - - compartment: c - - formula: C21H37N9O4 + - compartment: "c" + - formula: "C21H37N9O4" - charge: 2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argpromet_c + - id: "argpromet_c" - name: "Arginyl-Prolyl-Methionine" - - compartment: c - - formula: C16H31N6O4S + - compartment: "c" + - formula: "C16H31N6O4S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argprothr_c + - id: "argprothr_c" - name: "Arginyl-Prolyl-Threonine" - - compartment: c - - formula: C15H29N6O5 + - compartment: "c" + - formula: "C15H29N6O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argserser_c + - id: "argserser_c" - name: "Arginyl-Seryl-Serine" - - compartment: c - - formula: C12H25N6O6 + - compartment: "c" + - formula: "C12H25N6O6" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argtyrval_c + - id: "argtyrval_c" - name: "Argtyrval" - - compartment: c - - formula: C20H33N6O5 + - compartment: "c" + - formula: "C20H33N6O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argvalcys_c + - id: "argvalcys_c" - name: "Arginyl-Valyl-Cysteine" - - compartment: c - - formula: C14H29N6O4S + - compartment: "c" + - formula: "C14H29N6O4S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argvaltrp_c + - id: "argvaltrp_c" - name: "Arginyl-Valyl-Tryptophan" - - compartment: c - - formula: C22H34N7O4 + - compartment: "c" + - formula: "C22H34N7O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: asnasnarg_c + - id: "asnasnarg_c" - name: "Asparaginyl-Asparaginyl-Arginine" - - compartment: c - - formula: C14H27N8O6 + - compartment: "c" + - formula: "C14H27N8O6" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: asncyscys_c + - id: "asncyscys_c" - name: "Asparaginyl-Cysteinyl-Cysteine" - - compartment: c - - formula: C10H18N4O5S2 + - compartment: "c" + - formula: "C10H18N4O5S2" - charge: 0 - - inchis: 1S/C10H18N4O5S2/c11-4(1-7(12)15)8(16)13-5(2-20)9(17)14-6(3-21)10(18)19/h4-6,20-21H,1-3,11H2,(H2,12,15)(H,13,16)(H,14,17)(H,18,19)/t4-,5-,6-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C10H18N4O5S2/c11-4(1-7(12)15)8(16)13-5(2-20)9(17)14-6(3-21)10(18)19/h4-6,20-21H,1-3,11H2,(H2,12,15)(H,13,16)(H,14,17)(H,18,19)/t4-,5-,6-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: asnmetpro_c + - id: "asnmetpro_c" - name: "Asparaginyl-Methionyl-Proline" - - compartment: c - - formula: C14H24N4O5S + - compartment: "c" + - formula: "C14H24N4O5S" - charge: 0 - - inchis: 1/C14H24N4O5S/c1-24-6-4-9(17-12(20)8(15)7-11(16)19)13(21)18-5-2-3-10(18)14(22)23/h8-10H,2-7,15H2,1H3,(H2,16,19)(H,17,20)(H,22,23)/t8-,9+,10?/s2 - - metFrom: Recon3D + - inchis: "1/C14H24N4O5S/c1-24-6-4-9(17-12(20)8(15)7-11(16)19)13(21)18-5-2-3-10(18)14(22)23/h8-10H,2-7,15H2,1H3,(H2,16,19)(H,17,20)(H,22,23)/t8-,9+,10?/s2" + - metFrom: "Recon3D" - !!omap - - id: asnpheasp_c + - id: "asnpheasp_c" - name: "Asparaginyl-Phenylalanyl-Aspartate" - - compartment: c - - formula: C17H21N4O7 + - compartment: "c" + - formula: "C17H21N4O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: asnphecys_c + - id: "asnphecys_c" - name: "Asparaginyl-Phenylalanyl-Cysteine" - - compartment: c - - formula: C16H22N4O5S + - compartment: "c" + - formula: "C16H22N4O5S" - charge: 0 - - inchis: 1/C16H22N4O5S/c17-10(7-13(18)21)14(22)19-11(6-9-4-2-1-3-5-9)15(23)20-12(8-26)16(24)25/h1-5,10-12,26H,6-8,17H2,(H2,18,21)(H,19,22)(H,20,23)(H,24,25)/t10-,11+,12-/s2 - - metFrom: Recon3D + - inchis: "1/C16H22N4O5S/c17-10(7-13(18)21)14(22)19-11(6-9-4-2-1-3-5-9)15(23)20-12(8-26)16(24)25/h1-5,10-12,26H,6-8,17H2,(H2,18,21)(H,19,22)(H,20,23)(H,24,25)/t10-,11+,12-/s2" + - metFrom: "Recon3D" - !!omap - - id: asntyrgly_c + - id: "asntyrgly_c" - name: "Asparaginyl-Tyrosyl-Glycine" - - compartment: c - - formula: C15H20N4O6 + - compartment: "c" + - formula: "C15H20N4O6" - charge: 0 - - inchis: 1/C15H20N4O6/c16-10(6-12(17)21)14(24)19-11(15(25)18-7-13(22)23)5-8-1-3-9(20)4-2-8/h1-4,10-11,20H,5-7,16H2,(H2,17,21)(H,18,25)(H,19,24)(H,22,23)/t10-,11+/s2 - - metFrom: Recon3D + - inchis: "1/C15H20N4O6/c16-10(6-12(17)21)14(24)19-11(15(25)18-7-13(22)23)5-8-1-3-9(20)4-2-8/h1-4,10-11,20H,5-7,16H2,(H2,17,21)(H,18,25)(H,19,24)(H,22,23)/t10-,11+/s2" + - metFrom: "Recon3D" - !!omap - - id: asntyrphe_c + - id: "asntyrphe_c" - name: "Asparaginyl-Tyrosyl-Phenylalanine" - - compartment: c - - formula: C22H26N4O6 + - compartment: "c" + - formula: "C22H26N4O6" - charge: 0 - - inchis: 1/C22H26N4O6/c23-16(12-19(24)28)20(29)25-17(10-14-6-8-15(27)9-7-14)21(30)26-18(22(31)32)11-13-4-2-1-3-5-13/h1-9,16-18,27H,10-12,23H2,(H2,24,28)(H,25,29)(H,26,30)(H,31,32)/t16-,17+,18-/s2 - - metFrom: Recon3D + - inchis: "1/C22H26N4O6/c23-16(12-19(24)28)20(29)25-17(10-14-6-8-15(27)9-7-14)21(30)26-18(22(31)32)11-13-4-2-1-3-5-13/h1-9,16-18,27H,10-12,23H2,(H2,24,28)(H,25,29)(H,26,30)(H,31,32)/t16-,17+,18-/s2" + - metFrom: "Recon3D" - !!omap - - id: asntyrthr_c + - id: "asntyrthr_c" - name: "Asparaginyl-Tyrosyl-Threonine" - - compartment: c - - formula: C17H24N4O7 + - compartment: "c" + - formula: "C17H24N4O7" - charge: 0 - - inchis: 1/C17H24N4O7/c1-8(22)14(17(27)28)21-16(26)12(6-9-2-4-10(23)5-3-9)20-15(25)11(18)7-13(19)24/h2-5,8,11-12,14,22-23H,6-7,18H2,1H3,(H2,19,24)(H,20,25)(H,21,26)(H,27,28)/t8-,11+,12-,14+/s2 - - metFrom: Recon3D + - inchis: "1/C17H24N4O7/c1-8(22)14(17(27)28)21-16(26)12(6-9-2-4-10(23)5-3-9)20-15(25)11(18)7-13(19)24/h2-5,8,11-12,14,22-23H,6-7,18H2,1H3,(H2,19,24)(H,20,25)(H,21,26)(H,27,28)/t8-,11+,12-,14+/s2" + - metFrom: "Recon3D" - !!omap - - id: aspalaarg_c + - id: "aspalaarg_c" - name: "Asparaginyl-Alanyl-Arginine" - - compartment: c - - formula: C13H24N6O6 + - compartment: "c" + - formula: "C13H24N6O6" - charge: 0 - - inchis: 1/C13H24N6O6/c1-6(18-11(23)7(14)5-9(20)21)10(22)19-8(12(24)25)3-2-4-17-13(15)16/h6-8H,2-5,14H2,1H3,(H,18,23)(H,19,22)(H,20,21)(H,24,25)(H4,15,16,17)/t6-,7+,8+/s2 - - metFrom: Recon3D + - inchis: "1/C13H24N6O6/c1-6(18-11(23)7(14)5-9(20)21)10(22)19-8(12(24)25)3-2-4-17-13(15)16/h6-8H,2-5,14H2,1H3,(H,18,23)(H,19,22)(H,20,21)(H,24,25)(H4,15,16,17)/t6-,7+,8+/s2" + - metFrom: "Recon3D" - !!omap - - id: aspasnglu_c + - id: "aspasnglu_c" - name: "Aspartyl-Asparaginyl-Glutamate" - - compartment: c - - formula: C13H18N4O9 + - compartment: "c" + - formula: "C13H18N4O9" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: aspglu_c + - id: "aspglu_c" - name: "Aspartyl-Glutamate" - - compartment: c - - formula: C9H12N2O7 + - compartment: "c" + - formula: "C9H12N2O7" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: aspglupro_c + - id: "aspglupro_c" - name: "Aspartyl-Glutamyl-Proline" - - compartment: c - - formula: C14H19N3O8 + - compartment: "c" + - formula: "C14H19N3O8" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: aspglutrp_c + - id: "aspglutrp_c" - name: "Aspartyl-Glutamyl-Tryptophan" - - compartment: c - - formula: C20H22N4O8 + - compartment: "c" + - formula: "C20H22N4O8" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: asphiscys_c + - id: "asphiscys_c" - name: "Aspartyl-Histidyl-Cysteine" - - compartment: c - - formula: C13H18N5O6S + - compartment: "c" + - formula: "C13H18N5O6S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: asphispro_c + - id: "asphispro_c" - name: "Aspartyl-Histidyl-Proline" - - compartment: c - - formula: C15H20N5O6 + - compartment: "c" + - formula: "C15H20N5O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: asplysglu_c + - id: "asplysglu_c" - name: "Aspartyl-Lysyl-Glutamate" - - compartment: c - - formula: C15H25N4O8 + - compartment: "c" + - formula: "C15H25N4O8" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: asplyshis_c + - id: "asplyshis_c" - name: "Aspartyl-Lysyl-Histidine" - - compartment: c - - formula: C16H26N6O6 + - compartment: "c" + - formula: "C16H26N6O6" - charge: 0 - - inchis: 1/C16H26N6O6/c17-4-2-1-3-11(21-14(25)10(18)6-13(23)24)15(26)22-12(16(27)28)5-9-7-19-8-20-9/h7-8,10-12H,1-6,17-18H2,(H,19,20)(H,21,25)(H,22,26)(H,23,24)(H,27,28)/t10-,11+,12-/s2 - - metFrom: Recon3D + - inchis: "1/C16H26N6O6/c17-4-2-1-3-11(21-14(25)10(18)6-13(23)24)15(26)22-12(16(27)28)5-9-7-19-8-20-9/h7-8,10-12H,1-6,17-18H2,(H,19,20)(H,21,25)(H,22,26)(H,23,24)(H,27,28)/t10-,11+,12-/s2" + - metFrom: "Recon3D" - !!omap - - id: aspmetasp_c + - id: "aspmetasp_c" - name: "Aspartyl-Methionyl-Aspartate" - - compartment: c - - formula: C13H19N3O8S + - compartment: "c" + - formula: "C13H19N3O8S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: aspprolys_c + - id: "aspprolys_c" - name: "Aspartyl-Prolyl-Lysine" - - compartment: c - - formula: C15H26N4O6 + - compartment: "c" + - formula: "C15H26N4O6" - charge: 0 - - inchis: 1/C15H26N4O6/c16-6-2-1-4-10(15(24)25)18-13(22)11-5-3-7-19(11)14(23)9(17)8-12(20)21/h9-11H,1-8,16-17H2,(H,18,22)(H,20,21)(H,24,25)/t9-,10-,11-/s2 - - metFrom: Recon3D + - inchis: "1/C15H26N4O6/c16-6-2-1-4-10(15(24)25)18-13(22)11-5-3-7-19(11)14(23)9(17)8-12(20)21/h9-11H,1-8,16-17H2,(H,18,22)(H,20,21)(H,24,25)/t9-,10-,11-/s2" + - metFrom: "Recon3D" - !!omap - - id: aspvalasn_c + - id: "aspvalasn_c" - name: "Aspartyl-Valyl-Asparagine" - - compartment: c - - formula: C13H21N4O7 + - compartment: "c" + - formula: "C13H21N4O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: cysasnmet_c + - id: "cysasnmet_c" - name: "Cystyl-Asparaginyl-Methionine" - - compartment: c - - formula: C12H22N4O5S2 + - compartment: "c" + - formula: "C12H22N4O5S2" - charge: 0 - - inchis: 1/C12H22N4O5S2/c1-23-3-2-7(12(20)21)15-11(19)8(4-9(14)17)16-10(18)6(13)5-22/h6-8,22H,2-5,13H2,1H3,(H2,14,17)(H,15,19)(H,16,18)(H,20,21)/t6-,7-,8+/s2 - - metFrom: Recon3D + - inchis: "1/C12H22N4O5S2/c1-23-3-2-7(12(20)21)15-11(19)8(4-9(14)17)16-10(18)6(13)5-22/h6-8,22H,2-5,13H2,1H3,(H2,14,17)(H,15,19)(H,16,18)(H,20,21)/t6-,7-,8+/s2" + - metFrom: "Recon3D" - !!omap - - id: cysaspphe_c + - id: "cysaspphe_c" - name: "Cystyl-Aspartyl-Phenylalanine" - - compartment: c - - formula: C16H20N3O6S + - compartment: "c" + - formula: "C16H20N3O6S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: cyscys_c + - id: "cyscys_c" - name: "Cystyl-Cysteine" - - compartment: c - - formula: C6H12N2O3S2 + - compartment: "c" + - formula: "C6H12N2O3S2" - charge: 0 - - inchis: 1/C6H12N2O3S2/c7-3(1-12)5(9)8-4(2-13)6(10)11/h3-4,12-13H,1-2,7H2,(H,8,9)(H,10,11)/t3-,4+/s2 - - metFrom: Recon3D + - inchis: "1/C6H12N2O3S2/c7-3(1-12)5(9)8-4(2-13)6(10)11/h3-4,12-13H,1-2,7H2,(H,8,9)(H,10,11)/t3-,4+/s2" + - metFrom: "Recon3D" - !!omap - - id: cysglnmet_c + - id: "cysglnmet_c" - name: "Cystyl-Glutaminyl-Methionine" - - compartment: c - - formula: C13H24N4O5S2 + - compartment: "c" + - formula: "C13H24N4O5S2" - charge: 0 - - inchis: 1/C13H24N4O5S2/c1-24-5-4-9(13(21)22)17-12(20)8(2-3-10(15)18)16-11(19)7(14)6-23/h7-9,23H,2-6,14H2,1H3,(H2,15,18)(H,16,19)(H,17,20)(H,21,22)/t7-,8+,9-/s2 - - metFrom: Recon3D + - inchis: "1/C13H24N4O5S2/c1-24-5-4-9(13(21)22)17-12(20)8(2-3-10(15)18)16-11(19)7(14)6-23/h7-9,23H,2-6,14H2,1H3,(H2,15,18)(H,16,19)(H,17,20)(H,21,22)/t7-,8+,9-/s2" + - metFrom: "Recon3D" - !!omap - - id: cysgluhis_c + - id: "cysgluhis_c" - name: "Cystyl-Glutamyl-Histidine" - - compartment: c - - formula: C14H20N5O6S + - compartment: "c" + - formula: "C14H20N5O6S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: cysglutrp_c + - id: "cysglutrp_c" - name: "Cystyl-Glutamyl-Tryptophan" - - compartment: c - - formula: C19H23N4O6S + - compartment: "c" + - formula: "C19H23N4O6S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: cysleuthr_c + - id: "cysleuthr_c" - name: "Cystyl-Leucyl-Threonine" - - compartment: c - - formula: C13H25N3O5S + - compartment: "c" + - formula: "C13H25N3O5S" - charge: 0 - - inchis: 1/C13H25N3O5S/c1-6(2)4-9(15-11(18)8(14)5-22)12(19)16-10(7(3)17)13(20)21/h6-10,17,22H,4-5,14H2,1-3H3,(H,15,18)(H,16,19)(H,20,21)/t7-,8-,9+,10-/s2 - - metFrom: Recon3D + - inchis: "1/C13H25N3O5S/c1-6(2)4-9(15-11(18)8(14)5-22)12(19)16-10(7(3)17)13(20)21/h6-10,17,22H,4-5,14H2,1-3H3,(H,15,18)(H,16,19)(H,20,21)/t7-,8-,9+,10-/s2" + - metFrom: "Recon3D" - !!omap - - id: cyssermet_c + - id: "cyssermet_c" - name: "Cystyl-Seryl-Methionine" - - compartment: c - - formula: C11H21N3O5S2 + - compartment: "c" + - formula: "C11H21N3O5S2" - charge: 0 - - inchis: 1/C11H21N3O5S2/c1-21-3-2-7(11(18)19)13-10(17)8(4-15)14-9(16)6(12)5-20/h6-8,15,20H,2-5,12H2,1H3,(H,13,17)(H,14,16)(H,18,19)/t6-,7-,8+/s2 - - metFrom: Recon3D + - inchis: "1/C11H21N3O5S2/c1-21-3-2-7(11(18)19)13-10(17)8(4-15)14-9(16)6(12)5-20/h6-8,15,20H,2-5,12H2,1H3,(H,13,17)(H,14,16)(H,18,19)/t6-,7-,8+/s2" + - metFrom: "Recon3D" - !!omap - - id: cystyrasn_c + - id: "cystyrasn_c" - name: "Cystyl-Tyrosyl-Asparagine" - - compartment: c - - formula: C16H22N4O6S + - compartment: "c" + - formula: "C16H22N4O6S" - charge: 0 - - inchis: 1/C16H22N4O6S/c17-10(7-27)14(23)19-11(5-8-1-3-9(21)4-2-8)15(24)20-12(16(25)26)6-13(18)22/h1-4,10-12,21,27H,5-7,17H2,(H2,18,22)(H,19,23)(H,20,24)(H,25,26)/t10-,11+,12-/s2 - - metFrom: Recon3D + - inchis: "1/C16H22N4O6S/c17-10(7-27)14(23)19-11(5-8-1-3-9(21)4-2-8)15(24)20-12(16(25)26)6-13(18)22/h1-4,10-12,21,27H,5-7,17H2,(H2,18,22)(H,19,23)(H,20,24)(H,25,26)/t10-,11+,12-/s2" + - metFrom: "Recon3D" - !!omap - - id: glnasngln_c + - id: "glnasngln_c" - name: "Glutaminyl-Asparaginyl-Glutamine" - - compartment: c - - formula: C14H24N6O7 + - compartment: "c" + - formula: "C14H24N6O7" - charge: 0 - - inchis: 1/C14H24N6O7/c15-6(1-3-9(16)21)12(24)20-8(5-11(18)23)13(25)19-7(14(26)27)2-4-10(17)22/h6-8H,1-5,15H2,(H2,16,21)(H2,17,22)(H2,18,23)(H,19,25)(H,20,24)(H,26,27)/t6-,7-,8+/s2 - - metFrom: Recon3D + - inchis: "1/C14H24N6O7/c15-6(1-3-9(16)21)12(24)20-8(5-11(18)23)13(25)19-7(14(26)27)2-4-10(17)22/h6-8H,1-5,15H2,(H2,16,21)(H2,17,22)(H2,18,23)(H,19,25)(H,20,24)(H,26,27)/t6-,7-,8+/s2" + - metFrom: "Recon3D" - !!omap - - id: glnhishis_c + - id: "glnhishis_c" - name: "Glutaminyl-Histidyl-Histidine" - - compartment: c - - formula: C17H24N8O5 + - compartment: "c" + - formula: "C17H24N8O5" - charge: 0 - - inchis: 1/C17H24N8O5/c18-11(1-2-14(19)26)15(27)24-12(3-9-5-20-7-22-9)16(28)25-13(17(29)30)4-10-6-21-8-23-10/h5-8,11-13H,1-4,18H2,(H2,19,26)(H,20,22)(H,21,23)(H,24,27)(H,25,28)(H,29,30)/t11-,12+,13-/s2 - - metFrom: Recon3D + - inchis: "1/C17H24N8O5/c18-11(1-2-14(19)26)15(27)24-12(3-9-5-20-7-22-9)16(28)25-13(17(29)30)4-10-6-21-8-23-10/h5-8,11-13H,1-4,18H2,(H2,19,26)(H,20,22)(H,21,23)(H,24,27)(H,25,28)(H,29,30)/t11-,12+,13-/s2" + - metFrom: "Recon3D" - !!omap - - id: glnhislys_c + - id: "glnhislys_c" - name: "Glutaminyl-Histidyl-Lysine" - - compartment: c - - formula: C17H30N7O5 + - compartment: "c" + - formula: "C17H30N7O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glnlyslys_c + - id: "glnlyslys_c" - name: "Glutaminyl-Lysyl-Lysine" - - compartment: c - - formula: C17H36N6O5 + - compartment: "c" + - formula: "C17H36N6O5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glnlystrp_c + - id: "glnlystrp_c" - name: "Glutaminyl-Lysyl-Tryptophan" - - compartment: c - - formula: C22H33N6O5 + - compartment: "c" + - formula: "C22H33N6O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glnproglu_c + - id: "glnproglu_c" - name: "Glutaminyl-Prolyl-Glutamate" - - compartment: c - - formula: C15H23N4O7 + - compartment: "c" + - formula: "C15H23N4O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glntrpglu_c + - id: "glntrpglu_c" - name: "Glutaminyl-Tryptophanyl-Glutamate" - - compartment: c - - formula: C21H26N5O7 + - compartment: "c" + - formula: "C21H26N5O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glntyrleu_c + - id: "glntyrleu_c" - name: "Glutaminyl-Tyrosyl-Leucine" - - compartment: c - - formula: C20H30N4O6 + - compartment: "c" + - formula: "C20H30N4O6" - charge: 0 - - inchis: 1/C20H30N4O6/c1-11(2)9-16(20(29)30)24-19(28)15(10-12-3-5-13(25)6-4-12)23-18(27)14(21)7-8-17(22)26/h3-6,11,14-16,25H,7-10,21H2,1-2H3,(H2,22,26)(H,23,27)(H,24,28)(H,29,30)/t14-,15+,16-/s2 - - metFrom: Recon3D + - inchis: "1/C20H30N4O6/c1-11(2)9-16(20(29)30)24-19(28)15(10-12-3-5-13(25)6-4-12)23-18(27)14(21)7-8-17(22)26/h3-6,11,14-16,25H,7-10,21H2,1-2H3,(H2,22,26)(H,23,27)(H,24,28)(H,29,30)/t14-,15+,16-/s2" + - metFrom: "Recon3D" - !!omap - - id: gluargleu_c + - id: "gluargleu_c" - name: "Glutaminyl-Arginyl-Leucine" - - compartment: c - - formula: C17H32N6O6 + - compartment: "c" + - formula: "C17H32N6O6" - charge: 0 - - inchis: 1/C17H32N6O6/c1-9(2)8-12(16(28)29)23-15(27)11(4-3-7-21-17(19)20)22-14(26)10(18)5-6-13(24)25/h9-12H,3-8,18H2,1-2H3,(H,22,26)(H,23,27)(H,24,25)(H,28,29)(H4,19,20,21)/t10-,11+,12-/s2 - - metFrom: Recon3D + - inchis: "1/C17H32N6O6/c1-9(2)8-12(16(28)29)23-15(27)11(4-3-7-21-17(19)20)22-14(26)10(18)5-6-13(24)25/h9-12H,3-8,18H2,1-2H3,(H,22,26)(H,23,27)(H,24,25)(H,28,29)(H4,19,20,21)/t10-,11+,12-/s2" + - metFrom: "Recon3D" - !!omap - - id: gluasnleu_c + - id: "gluasnleu_c" - name: "Glutaminyl-Asparaginyl-Leucine" - - compartment: c - - formula: C15H25N4O7 + - compartment: "c" + - formula: "C15H25N4O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gluglu_c + - id: "gluglu_c" - name: "Glutamyl-Glutamate" - - compartment: c - - formula: C10H14N2O7 + - compartment: "c" + - formula: "C10H14N2O7" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gluilelys_c + - id: "gluilelys_c" - name: "Glutamyl-Isoleucyl-Lysine" - - compartment: c - - formula: C17H32N4O6 + - compartment: "c" + - formula: "C17H32N4O6" - charge: 0 - - inchis: 1/C17H32N4O6/c1-3-10(2)14(21-15(24)11(19)7-8-13(22)23)16(25)20-12(17(26)27)6-4-5-9-18/h10-12,14H,3-9,18-19H2,1-2H3,(H,20,25)(H,21,24)(H,22,23)(H,26,27)/t10?,11-,12-,14+/s2 - - metFrom: Recon3D + - inchis: "1/C17H32N4O6/c1-3-10(2)14(21-15(24)11(19)7-8-13(22)23)16(25)20-12(17(26)27)6-4-5-9-18/h10-12,14H,3-9,18-19H2,1-2H3,(H,20,25)(H,21,24)(H,22,23)(H,26,27)/t10?,11-,12-,14+/s2" + - metFrom: "Recon3D" - !!omap - - id: gluleu_c + - id: "gluleu_c" - name: "Glutamyl-Leucine" - - compartment: c - - formula: C11H19N2O5 + - compartment: "c" + - formula: "C11H19N2O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glumet_c + - id: "glumet_c" - name: "Glutamyl-Methionine" - - compartment: c - - formula: C10H17N2O5S + - compartment: "c" + - formula: "C10H17N2O5S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glumethis_c + - id: "glumethis_c" - name: "Glutamyl-Methioninyl-Histidine" - - compartment: c - - formula: C16H24N5O6S + - compartment: "c" + - formula: "C16H24N5O6S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gluthr_c + - id: "gluthr_c" - name: "Glutamyl-Threonine" - - compartment: c - - formula: C9H15N2O6 + - compartment: "c" + - formula: "C9H15N2O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gluthrlys_c + - id: "gluthrlys_c" - name: "Glutamyl-Threonyl-Lysine" - - compartment: c - - formula: C15H28N4O7 + - compartment: "c" + - formula: "C15H28N4O7" - charge: 0 - - inchis: 1/C15H28N4O7/c1-8(20)12(19-13(23)9(17)5-6-11(21)22)14(24)18-10(15(25)26)4-2-3-7-16/h8-10,12,20H,2-7,16-17H2,1H3,(H,18,24)(H,19,23)(H,21,22)(H,25,26)/t8-,9-,10-,12+/s2 - - metFrom: Recon3D + - inchis: "1/C15H28N4O7/c1-8(20)12(19-13(23)9(17)5-6-11(21)22)14(24)18-10(15(25)26)4-2-3-7-16/h8-10,12,20H,2-7,16-17H2,1H3,(H,18,24)(H,19,23)(H,21,22)(H,25,26)/t8-,9-,10-,12+/s2" + - metFrom: "Recon3D" - !!omap - - id: glutrpala_c + - id: "glutrpala_c" - name: "Glutamyl-Tryptophanyl-Alanine" - - compartment: c - - formula: C19H23N4O6 + - compartment: "c" + - formula: "C19H23N4O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glyhisasn_c + - id: "glyhisasn_c" - name: "Glycyl-Histidyl-Asparagine" - - compartment: c - - formula: C12H18N6O5 + - compartment: "c" + - formula: "C12H18N6O5" - charge: 0 - - inchis: 1/C12H18N6O5/c13-3-10(20)17-7(1-6-4-15-5-16-6)11(21)18-8(12(22)23)2-9(14)19/h4-5,7-8H,1-3,13H2,(H2,14,19)(H,15,16)(H,17,20)(H,18,21)(H,22,23)/t7-,8+/s2 - - metFrom: Recon3D + - inchis: "1/C12H18N6O5/c13-3-10(20)17-7(1-6-4-15-5-16-6)11(21)18-8(12(22)23)2-9(14)19/h4-5,7-8H,1-3,13H2,(H2,14,19)(H,15,16)(H,17,20)(H,18,21)(H,22,23)/t7-,8+/s2" + - metFrom: "Recon3D" - !!omap - - id: glyhislys_c + - id: "glyhislys_c" - name: "Glycyl-Histidyl-Lysine" - - compartment: c - - formula: C14H25N6O4 + - compartment: "c" + - formula: "C14H25N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glylyscys_c + - id: "glylyscys_c" - name: "Glycyl-Lysyl-Cysteine" - - compartment: c - - formula: C11H23N4O4S + - compartment: "c" + - formula: "C11H23N4O4S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glylysphe_c + - id: "glylysphe_c" - name: "Glycyl-Lysyl-Phenylalanine" - - compartment: c - - formula: C17H27N4O4 + - compartment: "c" + - formula: "C17H27N4O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glytyrlys_c + - id: "glytyrlys_c" - name: "Glycyl-Tyrosyl-Lysine" - - compartment: c - - formula: C17H27N4O5 + - compartment: "c" + - formula: "C17H27N4O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glyvalhis_c + - id: "glyvalhis_c" - name: "Glycyl-Valyl-Histidine" - - compartment: c - - formula: C13H21N5O4 + - compartment: "c" + - formula: "C13H21N5O4" - charge: 0 - - inchis: 1/C13H21N5O4/c1-7(2)11(18-10(19)4-14)12(20)17-9(13(21)22)3-8-5-15-6-16-8/h5-7,9,11H,3-4,14H2,1-2H3,(H,15,16)(H,17,20)(H,18,19)(H,21,22)/t9-,11+/s2 - - metFrom: Recon3D + - inchis: "1/C13H21N5O4/c1-7(2)11(18-10(19)4-14)12(20)17-9(13(21)22)3-8-5-15-6-16-8/h5-7,9,11H,3-4,14H2,1-2H3,(H,15,16)(H,17,20)(H,18,19)(H,21,22)/t9-,11+/s2" + - metFrom: "Recon3D" - !!omap - - id: hisargcys_c + - id: "hisargcys_c" - name: "Histidyl-Arginyl-Cysteine" - - compartment: c - - formula: C15H27N8O4S + - compartment: "c" + - formula: "C15H27N8O4S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hisargser_c + - id: "hisargser_c" - name: "Histidyl-Arginyl-Serine" - - compartment: c - - formula: C15H27N8O5 + - compartment: "c" + - formula: "C15H27N8O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hisasp_c + - id: "hisasp_c" - name: "Histidyl-Aspartate" - - compartment: c - - formula: C10H13N4O5 + - compartment: "c" + - formula: "C10H13N4O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hiscyscys_c + - id: "hiscyscys_c" - name: "Histidyl-Cystyl-Cysteine" - - compartment: c - - formula: C12H19N5O4S2 + - compartment: "c" + - formula: "C12H19N5O4S2" - charge: 0 - - inchis: 1/C12H19N5O4S2/c13-7(1-6-2-14-5-15-6)10(18)16-8(3-22)11(19)17-9(4-23)12(20)21/h2,5,7-9,22-23H,1,3-4,13H2,(H,14,15)(H,16,18)(H,17,19)(H,20,21)/t7-,8+,9-/s2 - - metFrom: Recon3D + - inchis: "1/C12H19N5O4S2/c13-7(1-6-2-14-5-15-6)10(18)16-8(3-22)11(19)17-9(4-23)12(20)21/h2,5,7-9,22-23H,1,3-4,13H2,(H,14,15)(H,16,18)(H,17,19)(H,20,21)/t7-,8+,9-/s2" + - metFrom: "Recon3D" - !!omap - - id: hisglnala_c + - id: "hisglnala_c" - name: "Histidyl-Glutaminyl-Alanine" - - compartment: c - - formula: C14H22N6O5 + - compartment: "c" + - formula: "C14H22N6O5" - charge: 0 - - inchis: 1/C14H22N6O5/c1-7(14(24)25)19-13(23)10(2-3-11(16)21)20-12(22)9(15)4-8-5-17-6-18-8/h5-7,9-10H,2-4,15H2,1H3,(H2,16,21)(H,17,18)(H,19,23)(H,20,22)(H,24,25)/t7-,9-,10+/s2 - - metFrom: Recon3D + - inchis: "1/C14H22N6O5/c1-7(14(24)25)19-13(23)10(2-3-11(16)21)20-12(22)9(15)4-8-5-17-6-18-8/h5-7,9-10H,2-4,15H2,1H3,(H2,16,21)(H,17,18)(H,19,23)(H,20,22)(H,24,25)/t7-,9-,10+/s2" + - metFrom: "Recon3D" - !!omap - - id: hisglu_c + - id: "hisglu_c" - name: "Histidyl-Glutamate" - - compartment: c - - formula: C11H15N4O5 + - compartment: "c" + - formula: "C11H15N4O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hisglugln_c + - id: "hisglugln_c" - name: "Histidyl-Glutamyl-Glutamine" - - compartment: c - - formula: C16H23N6O7 + - compartment: "c" + - formula: "C16H23N6O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hisglylys_c + - id: "hisglylys_c" - name: "Histidyl-Lysyl-Lysine" - - compartment: c - - formula: C14H25N6O4 + - compartment: "c" + - formula: "C14H25N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hishislys_c + - id: "hishislys_c" - name: "Histidyl-Histidyl-Lysine" - - compartment: c - - formula: C18H29N8O4 + - compartment: "c" + - formula: "C18H29N8O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hislysala_c + - id: "hislysala_c" - name: "Histidyl-Lysyl-Alanine" - - compartment: c - - formula: C15H27N6O4 + - compartment: "c" + - formula: "C15H27N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hislysglu_c + - id: "hislysglu_c" - name: "Histidyl-Lysyl-Glutamate" - - compartment: c - - formula: C17H28N6O6 + - compartment: "c" + - formula: "C17H28N6O6" - charge: 0 - - inchis: 1/C17H28N6O6/c18-6-2-1-3-12(16(27)23-13(17(28)29)4-5-14(24)25)22-15(26)11(19)7-10-8-20-9-21-10/h8-9,11-13H,1-7,18-19H2,(H,20,21)(H,22,26)(H,23,27)(H,24,25)(H,28,29)/t11-,12+,13-/s2 - - metFrom: Recon3D + - inchis: "1/C17H28N6O6/c18-6-2-1-3-12(16(27)23-13(17(28)29)4-5-14(24)25)22-15(26)11(19)7-10-8-20-9-21-10/h8-9,11-13H,1-7,18-19H2,(H,20,21)(H,22,26)(H,23,27)(H,24,25)(H,28,29)/t11-,12+,13-/s2" + - metFrom: "Recon3D" - !!omap - - id: hislysile_c + - id: "hislysile_c" - name: "Histidyl-Lysyl-Isoleucine" - - compartment: c - - formula: C18H33N6O4 + - compartment: "c" + - formula: "C18H33N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hislysthr_c + - id: "hislysthr_c" - name: "Histidyl-Lysyl-Threonine" - - compartment: c - - formula: C16H29N6O5 + - compartment: "c" + - formula: "C16H29N6O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hislysval_c + - id: "hislysval_c" - name: "Histidyl-Lysyl-Valine" - - compartment: c - - formula: C17H31N6O4 + - compartment: "c" + - formula: "C17H31N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hismet_c + - id: "hismet_c" - name: "Histidyl-Methionine" - - compartment: c - - formula: C11H18N4O3S + - compartment: "c" + - formula: "C11H18N4O3S" - charge: 0 - - inchis: 1S/C11H18N4O3S/c1-19-3-2-9(11(17)18)15-10(16)8(12)4-7-5-13-6-14-7/h5-6,8-9H,2-4,12H2,1H3,(H,13,14)(H,15,16)(H,17,18)/p-1/t8-,9-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C11H18N4O3S/c1-19-3-2-9(11(17)18)15-10(16)8(12)4-7-5-13-6-14-7/h5-6,8-9H,2-4,12H2,1H3,(H,13,14)(H,15,16)(H,17,18)/p-1/t8-,9-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: hismetgln_c + - id: "hismetgln_c" - name: "Histidyl-Methionyl-Glutamine" - - compartment: c - - formula: C16H26N6O5S + - compartment: "c" + - formula: "C16H26N6O5S" - charge: 0 - - inchis: 1/C16H26N6O5S/c1-28-5-4-11(15(25)22-12(16(26)27)2-3-13(18)23)21-14(24)10(17)6-9-7-19-8-20-9/h7-8,10-12H,2-6,17H2,1H3,(H2,18,23)(H,19,20)(H,21,24)(H,22,25)(H,26,27)/t10-,11+,12-/s2 - - metFrom: Recon3D + - inchis: "1/C16H26N6O5S/c1-28-5-4-11(15(25)22-12(16(26)27)2-3-13(18)23)21-14(24)10(17)6-9-7-19-8-20-9/h7-8,10-12H,2-6,17H2,1H3,(H2,18,23)(H,19,20)(H,21,24)(H,22,25)(H,26,27)/t10-,11+,12-/s2" + - metFrom: "Recon3D" - !!omap - - id: hisphearg_c + - id: "hisphearg_c" - name: "Histidyl-Phenylalanyl-Arginine" - - compartment: c - - formula: C21H31N8O4 + - compartment: "c" + - formula: "C21H31N8O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hisprolys_c + - id: "hisprolys_c" - name: "Histidyl-Prolyl-Lysine" - - compartment: c - - formula: C17H29N6O4 + - compartment: "c" + - formula: "C17H29N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: histrphis_c + - id: "histrphis_c" - name: "Histidyl-Tryptophanyl-Histidine" - - compartment: c - - formula: C23H26N8O4 + - compartment: "c" + - formula: "C23H26N8O4" - charge: 0 - - inchis: 1/C23H26N8O4/c24-17(6-14-9-25-11-28-14)21(32)30-19(5-13-8-27-18-4-2-1-3-16(13)18)22(33)31-20(23(34)35)7-15-10-26-12-29-15/h1-4,8-12,17,19-20,27H,5-7,24H2,(H,25,28)(H,26,29)(H,30,32)(H,31,33)(H,34,35)/t17-,19+,20-/s2 - - metFrom: Recon3D + - inchis: "1/C23H26N8O4/c24-17(6-14-9-25-11-28-14)21(32)30-19(5-13-8-27-18-4-2-1-3-16(13)18)22(33)31-20(23(34)35)7-15-10-26-12-29-15/h1-4,8-12,17,19-20,27H,5-7,24H2,(H,25,28)(H,26,29)(H,30,32)(H,31,33)(H,34,35)/t17-,19+,20-/s2" + - metFrom: "Recon3D" - !!omap - - id: ileargile_c + - id: "ileargile_c" - name: "Isoleucyl-Arginyl-Isoleucine" - - compartment: c - - formula: C18H37N6O4 + - compartment: "c" + - formula: "C18H37N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ileasnhis_c + - id: "ileasnhis_c" - name: "Isoleucyl-Asparaginyl-Histidine" - - compartment: c - - formula: C16H26N6O5 + - compartment: "c" + - formula: "C16H26N6O5" - charge: 0 - - inchis: 1/C16H26N6O5/c1-3-8(2)13(18)15(25)21-10(5-12(17)23)14(24)22-11(16(26)27)4-9-6-19-7-20-9/h6-8,10-11,13H,3-5,18H2,1-2H3,(H2,17,23)(H,19,20)(H,21,25)(H,22,24)(H,26,27)/t8?,10-,11+,13+/s2 - - metFrom: Recon3D + - inchis: "1/C16H26N6O5/c1-3-8(2)13(18)15(25)21-10(5-12(17)23)14(24)22-11(16(26)27)4-9-6-19-7-20-9/h6-8,10-11,13H,3-5,18H2,1-2H3,(H2,17,23)(H,19,20)(H,21,25)(H,22,24)(H,26,27)/t8?,10-,11+,13+/s2" + - metFrom: "Recon3D" - !!omap - - id: ileasp_c + - id: "ileasp_c" - name: "Isolecyl-Aspartate" - - compartment: c - - formula: C10H17N2O5 + - compartment: "c" + - formula: "C10H17N2O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ileglnglu_c + - id: "ileglnglu_c" - name: "Isolecyl-Glutaminyl-Glutamate" - - compartment: c - - formula: C16H27N4O7 + - compartment: "c" + - formula: "C16H27N4O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ileglyarg_c + - id: "ileglyarg_c" - name: "Isolecyl-Glycyl-Arginine" - - compartment: c - - formula: C14H29N6O4 + - compartment: "c" + - formula: "C14H29N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ileprolys_c + - id: "ileprolys_c" - name: "Isolecyl-Prolyl-Lysine" - - compartment: c - - formula: C17H33N4O4 + - compartment: "c" + - formula: "C17H33N4O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ileserarg_c + - id: "ileserarg_c" - name: "Isolecyl-Seryl-Arginine" - - compartment: c - - formula: C15H31N6O5 + - compartment: "c" + - formula: "C15H31N6O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: iletrptyr_c + - id: "iletrptyr_c" - name: "Isolecyl-Tryptophanyl-Tyrosine" - - compartment: c - - formula: C26H32N4O5 + - compartment: "c" + - formula: "C26H32N4O5" - charge: 0 - - inchis: 1/C26H32N4O5/c1-3-15(2)23(27)25(33)29-21(13-17-14-28-20-7-5-4-6-19(17)20)24(32)30-22(26(34)35)12-16-8-10-18(31)11-9-16/h4-11,14-15,21-23,28,31H,3,12-13,27H2,1-2H3,(H,29,33)(H,30,32)(H,34,35)/t15?,21-,22+,23+/s2 - - metFrom: Recon3D + - inchis: "1/C26H32N4O5/c1-3-15(2)23(27)25(33)29-21(13-17-14-28-20-7-5-4-6-19(17)20)24(32)30-22(26(34)35)12-16-8-10-18(31)11-9-16/h4-11,14-15,21-23,28,31H,3,12-13,27H2,1-2H3,(H,29,33)(H,30,32)(H,34,35)/t15?,21-,22+,23+/s2" + - metFrom: "Recon3D" - !!omap - - id: leualaarg_c + - id: "leualaarg_c" - name: "Leucyl-Alanyl-Arginine" - - compartment: c - - formula: C15H31N6O4 + - compartment: "c" + - formula: "C15H31N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: leuasnasp_c + - id: "leuasnasp_c" - name: "Leucyl-Asparaginyl-Aspartate" - - compartment: c - - formula: C14H23N4O7 + - compartment: "c" + - formula: "C14H23N4O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: leuasplys_c + - id: "leuasplys_c" - name: "Leucyl-Aspartyl-Lysine" - - compartment: c - - formula: C16H30N4O6 + - compartment: "c" + - formula: "C16H30N4O6" - charge: 0 - - inchis: 1/C16H30N4O6/c1-9(2)7-10(18)14(23)20-12(8-13(21)22)15(24)19-11(16(25)26)5-3-4-6-17/h9-12H,3-8,17-18H2,1-2H3,(H,19,24)(H,20,23)(H,21,22)(H,25,26)/t10-,11-,12+/s2 - - metFrom: Recon3D + - inchis: "1/C16H30N4O6/c1-9(2)7-10(18)14(23)20-12(8-13(21)22)15(24)19-11(16(25)26)5-3-4-6-17/h9-12H,3-8,17-18H2,1-2H3,(H,19,24)(H,20,23)(H,21,22)(H,25,26)/t10-,11-,12+/s2" + - metFrom: "Recon3D" - !!omap - - id: leuleutrp_c + - id: "leuleutrp_c" - name: "Leucyl-Leucyl-Tryptophan" - - compartment: c - - formula: C23H34N4O4 + - compartment: "c" + - formula: "C23H34N4O4" - charge: 0 - - inchis: 1/C23H34N4O4/c1-13(2)9-17(24)21(28)26-19(10-14(3)4)22(29)27-20(23(30)31)11-15-12-25-18-8-6-5-7-16(15)18/h5-8,12-14,17,19-20,25H,9-11,24H2,1-4H3,(H,26,28)(H,27,29)(H,30,31)/t17-,19+,20-/s2 - - metFrom: Recon3D + - inchis: "1/C23H34N4O4/c1-13(2)9-17(24)21(28)26-19(10-14(3)4)22(29)27-20(23(30)31)11-15-12-25-18-8-6-5-7-16(15)18/h5-8,12-14,17,19-20,25H,9-11,24H2,1-4H3,(H,26,28)(H,27,29)(H,30,31)/t17-,19+,20-/s2" + - metFrom: "Recon3D" - !!omap - - id: leupro_c + - id: "leupro_c" - name: "Leucyl-Proline" - - compartment: c - - formula: C11H20N2O3 + - compartment: "c" + - formula: "C11H20N2O3" - charge: 0 - - inchis: 1/C11H20N2O3/c1-7(2)6-8(12)10(14)13-5-3-4-9(13)11(15)16/h7-9H,3-6,12H2,1-2H3,(H,15,16)/t8-,9-/s2 - - metFrom: Recon3D + - inchis: "1/C11H20N2O3/c1-7(2)6-8(12)10(14)13-5-3-4-9(13)11(15)16/h7-9H,3-6,12H2,1-2H3,(H,15,16)/t8-,9-/s2" + - metFrom: "Recon3D" - !!omap - - id: leuproarg_c + - id: "leuproarg_c" - name: "Leucyl-Prolyl-Arginine" - - compartment: c - - formula: C17H33N6O4 + - compartment: "c" + - formula: "C17H33N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: leusertrp_c + - id: "leusertrp_c" - name: "Leucyl-Seryl-Tryptophan" - - compartment: c - - formula: C20H28N4O5 + - compartment: "c" + - formula: "C20H28N4O5" - charge: 0 - - inchis: 1S/C20H28N4O5/c1-11(2)7-14(21)18(26)24-17(10-25)19(27)23-16(20(28)29)8-12-9-22-15-6-4-3-5-13(12)15/h3-6,9,11,14,16-17,22,25H,7-8,10,21H2,1-2H3,(H,23,27)(H,24,26)(H,28,29)/p-1/t14-,16-,17-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C20H28N4O5/c1-11(2)7-14(21)18(26)24-17(10-25)19(27)23-16(20(28)29)8-12-9-22-15-6-4-3-5-13(12)15/h3-6,9,11,14,16-17,22,25H,7-8,10,21H2,1-2H3,(H,23,27)(H,24,26)(H,28,29)/p-1/t14-,16-,17-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: leutrp_c + - id: "leutrp_c" - name: "Leucyl-Tryptophan" - - compartment: c - - formula: C17H23N3O3 + - compartment: "c" + - formula: "C17H23N3O3" - charge: 0 - - inchis: 1/C17H23N3O3/c1-10(2)7-13(18)16(21)20-15(17(22)23)8-11-9-19-14-6-4-3-5-12(11)14/h3-6,9-10,13,15,19H,7-8,18H2,1-2H3,(H,20,21)(H,22,23)/t13-,15+/s2 - - metFrom: Recon3D + - inchis: "1/C17H23N3O3/c1-10(2)7-13(18)16(21)20-15(17(22)23)8-11-9-19-14-6-4-3-5-12(11)14/h3-6,9-10,13,15,19H,7-8,18H2,1-2H3,(H,20,21)(H,22,23)/t13-,15+/s2" + - metFrom: "Recon3D" - !!omap - - id: leutrparg_c + - id: "leutrparg_c" - name: "Leucyl-Tryptophanyl-Arginine" - - compartment: c - - formula: C23H36N7O4 + - compartment: "c" + - formula: "C23H36N7O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: leutyrtyr_c + - id: "leutyrtyr_c" - name: "Leucyl-Tyrosyl-Tyrosine" - - compartment: c - - formula: C24H31N3O6 + - compartment: "c" + - formula: "C24H31N3O6" - charge: 0 - - inchis: 1/C24H31N3O6/c1-14(2)11-19(25)22(30)26-20(12-15-3-7-17(28)8-4-15)23(31)27-21(24(32)33)13-16-5-9-18(29)10-6-16/h3-10,14,19-21,28-29H,11-13,25H2,1-2H3,(H,26,30)(H,27,31)(H,32,33)/t19-,20+,21-/s2 - - metFrom: Recon3D + - inchis: "1/C24H31N3O6/c1-14(2)11-19(25)22(30)26-20(12-15-3-7-17(28)8-4-15)23(31)27-21(24(32)33)13-16-5-9-18(29)10-6-16/h3-10,14,19-21,28-29H,11-13,25H2,1-2H3,(H,26,30)(H,27,31)(H,32,33)/t19-,20+,21-/s2" + - metFrom: "Recon3D" - !!omap - - id: leuval_c + - id: "leuval_c" - name: "Leucyl-Valine" - - compartment: c - - formula: C11H22N2O3 + - compartment: "c" + - formula: "C11H22N2O3" - charge: 0 - - inchis: 1/C11H22N2O3/c1-6(2)5-8(12)10(14)13-9(7(3)4)11(15)16/h6-9H,5,12H2,1-4H3,(H,13,14)(H,15,16)/t8-,9+/s2 - - metFrom: Recon3D + - inchis: "1/C11H22N2O3/c1-6(2)5-8(12)10(14)13-9(7(3)4)11(15)16/h6-9H,5,12H2,1-4H3,(H,13,14)(H,15,16)/t8-,9+/s2" + - metFrom: "Recon3D" - !!omap - - id: lysargleu_c + - id: "lysargleu_c" - name: "Lysyl-Arginyl-Leucine" - - compartment: c - - formula: C18H38N7O4 + - compartment: "c" + - formula: "C18H38N7O4" - charge: 2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lyscyshis_c + - id: "lyscyshis_c" - name: "Lysyl-Cysteinyl-Histidine" - - compartment: c - - formula: C15H27N6O4S + - compartment: "c" + - formula: "C15H27N6O4S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lysglnphe_c + - id: "lysglnphe_c" - name: "Lysyl-Glutaminyl-Phenylalanine" - - compartment: c - - formula: C20H32N5O5 + - compartment: "c" + - formula: "C20H32N5O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lysgluglu_c + - id: "lysgluglu_c" - name: "Lysyl-Glutamyl-Glutamate" - - compartment: c - - formula: C16H27N4O8 + - compartment: "c" + - formula: "C16H27N4O8" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lyslyslys_c + - id: "lyslyslys_c" - name: "Lysyl-Lysyl-Lysine" - - compartment: c - - formula: C18H41N6O4 + - compartment: "c" + - formula: "C18H41N6O4" - charge: 3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lyspheile_c + - id: "lyspheile_c" - name: "Lysyl-Phenylalanyl-Isoleucine" - - compartment: c - - formula: C21H35N4O4 + - compartment: "c" + - formula: "C21H35N4O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lystrparg_c + - id: "lystrparg_c" - name: "Lysyl-Tryptophanyl-Arginine" - - compartment: c - - formula: C23H38N8O4 + - compartment: "c" + - formula: "C23H38N8O4" - charge: 2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lystyrile_c + - id: "lystyrile_c" - name: "Lysyl-Tyrosyl-Isoleucine" - - compartment: c - - formula: C21H35N4O5 + - compartment: "c" + - formula: "C21H35N4O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lysvalphe_c + - id: "lysvalphe_c" - name: "Lysyl-Valyl-Phenylalanine" - - compartment: c - - formula: C20H33N4O4 + - compartment: "c" + - formula: "C20H33N4O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lysvaltrp_c + - id: "lysvaltrp_c" - name: "Lysyl-Valyl-Tryptophan" - - compartment: c - - formula: C22H34N5O4 + - compartment: "c" + - formula: "C22H34N5O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: metargleu_c + - id: "metargleu_c" - name: "Methionyl-Arginyl-Leucine" - - compartment: c - - formula: C17H35N6O4S + - compartment: "c" + - formula: "C17H35N6O4S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: metasntyr_c + - id: "metasntyr_c" - name: "Methionyl-Asparaginyl-Tyrosine" - - compartment: c - - formula: C18H26N4O6S + - compartment: "c" + - formula: "C18H26N4O6S" - charge: 0 - - inchis: 1/C18H26N4O6S/c1-29-7-6-12(19)16(25)21-13(9-15(20)24)17(26)22-14(18(27)28)8-10-2-4-11(23)5-3-10/h2-5,12-14,23H,6-9,19H2,1H3,(H2,20,24)(H,21,25)(H,22,26)(H,27,28)/t12-,13+,14-/s2 - - metFrom: Recon3D + - inchis: "1/C18H26N4O6S/c1-29-7-6-12(19)16(25)21-13(9-15(20)24)17(26)22-14(18(27)28)8-10-2-4-11(23)5-3-10/h2-5,12-14,23H,6-9,19H2,1H3,(H2,20,24)(H,21,25)(H,22,26)(H,27,28)/t12-,13+,14-/s2" + - metFrom: "Recon3D" - !!omap - - id: metglntyr_c + - id: "metglntyr_c" - name: "Methionyl-Glutaminyl-Tyrosine" - - compartment: c - - formula: C19H28N4O6S + - compartment: "c" + - formula: "C19H28N4O6S" - charge: 0 - - inchis: 1S/C19H28N4O6S/c1-30-9-8-13(20)17(26)22-14(6-7-16(21)25)18(27)23-15(19(28)29)10-11-2-4-12(24)5-3-11/h2-5,13-15,24H,6-10,20H2,1H3,(H2,21,25)(H,22,26)(H,23,27)(H,28,29)/t13-,14-,15-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C19H28N4O6S/c1-30-9-8-13(20)17(26)22-14(6-7-16(21)25)18(27)23-15(19(28)29)10-11-2-4-12(24)5-3-11/h2-5,13-15,24H,6-10,20H2,1H3,(H2,21,25)(H,22,26)(H,23,27)(H,28,29)/t13-,14-,15-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: metglyarg_c + - id: "metglyarg_c" - name: "Methionyl-Glycyl-Arginine" - - compartment: c - - formula: C13H27N6O4S + - compartment: "c" + - formula: "C13H27N6O4S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: methislys_c + - id: "methislys_c" - name: "Methionyl-Histidyl-Lysine" - - compartment: c - - formula: C17H31N6O4S + - compartment: "c" + - formula: "C17H31N6O4S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: metmetile_c + - id: "metmetile_c" - name: "Methionyl-Methionyl-Isoleucine" - - compartment: c - - formula: C16H31N3O4S2 + - compartment: "c" + - formula: "C16H31N3O4S2" - charge: 0 - - inchis: 1/C16H31N3O4S2/c1-5-10(2)13(16(22)23)19-15(21)12(7-9-25-4)18-14(20)11(17)6-8-24-3/h10-13H,5-9,17H2,1-4H3,(H,18,20)(H,19,21)(H,22,23)/t10?,11-,12+,13?/s2 - - metFrom: Recon3D + - inchis: "1/C16H31N3O4S2/c1-5-10(2)13(16(22)23)19-15(21)12(7-9-25-4)18-14(20)11(17)6-8-24-3/h10-13H,5-9,17H2,1-4H3,(H,18,20)(H,19,21)(H,22,23)/t10?,11-,12+,13?/s2" + - metFrom: "Recon3D" - !!omap - - id: metphearg_c + - id: "metphearg_c" - name: "Methionyl-Phenylalanyl-Arginine" - - compartment: c - - formula: C20H33N6O4S + - compartment: "c" + - formula: "C20H33N6O4S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: mettrpphe_c + - id: "mettrpphe_c" - name: "Methionyl-Tryptophanyl-Phenylalanine" - - compartment: c - - formula: C25H30N4O4S + - compartment: "c" + - formula: "C25H30N4O4S" - charge: 0 - - inchis: 1/C25H30N4O4S/c1-34-12-11-19(26)23(30)28-21(14-17-15-27-20-10-6-5-9-18(17)20)24(31)29-22(25(32)33)13-16-7-3-2-4-8-16/h2-10,15,19,21-22,27H,11-14,26H2,1H3,(H,28,30)(H,29,31)(H,32,33)/t19-,21+,22-/s2 - - metFrom: Recon3D + - inchis: "1/C25H30N4O4S/c1-34-12-11-19(26)23(30)28-21(14-17-15-27-20-10-6-5-9-18(17)20)24(31)29-22(25(32)33)13-16-7-3-2-4-8-16/h2-10,15,19,21-22,27H,11-14,26H2,1H3,(H,28,30)(H,29,31)(H,32,33)/t19-,21+,22-/s2" + - metFrom: "Recon3D" - !!omap - - id: pheasnmet_c + - id: "pheasnmet_c" - name: "Phenylalanyl-Asparaginyl-Methionine" - - compartment: c - - formula: C18H26N4O5S + - compartment: "c" + - formula: "C18H26N4O5S" - charge: 0 - - inchis: 1/C18H26N4O5S/c1-28-8-7-13(18(26)27)21-17(25)14(10-15(20)23)22-16(24)12(19)9-11-5-3-2-4-6-11/h2-6,12-14H,7-10,19H2,1H3,(H2,20,23)(H,21,25)(H,22,24)(H,26,27)/t12-,13-,14+/s2 - - metFrom: Recon3D + - inchis: "1/C18H26N4O5S/c1-28-8-7-13(18(26)27)21-17(25)14(10-15(20)23)22-16(24)12(19)9-11-5-3-2-4-6-11/h2-6,12-14H,7-10,19H2,1H3,(H2,20,23)(H,21,25)(H,22,24)(H,26,27)/t12-,13-,14+/s2" + - metFrom: "Recon3D" - !!omap - - id: pheasp_c + - id: "pheasp_c" - name: "Phenylalanyl-Aspartate" - - compartment: c - - formula: C13H15N2O5 + - compartment: "c" + - formula: "C13H15N2O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pheglnphe_c + - id: "pheglnphe_c" - name: "Phenylalanyl-Glutaminyl-Phenylalanine" - - compartment: c - - formula: C23H28N4O5 + - compartment: "c" + - formula: "C23H28N4O5" - charge: 0 - - inchis: 1/C23H28N4O5/c24-17(13-15-7-3-1-4-8-15)21(29)26-18(11-12-20(25)28)22(30)27-19(23(31)32)14-16-9-5-2-6-10-16/h1-10,17-19H,11-14,24H2,(H2,25,28)(H,26,29)(H,27,30)(H,31,32)/t17-,18+,19-/s2 - - metFrom: Recon3D + - inchis: "1/C23H28N4O5/c24-17(13-15-7-3-1-4-8-15)21(29)26-18(11-12-20(25)28)22(30)27-19(23(31)32)14-16-9-5-2-6-10-16/h1-10,17-19H,11-14,24H2,(H2,25,28)(H,26,29)(H,27,30)(H,31,32)/t17-,18+,19-/s2" + - metFrom: "Recon3D" - !!omap - - id: pheleu_c + - id: "pheleu_c" - name: "Phenylalanyl-Leucine" - - compartment: c - - formula: C15H22N2O3 + - compartment: "c" + - formula: "C15H22N2O3" - charge: 0 - - inchis: 1/C15H22N2O3/c1-10(2)8-13(15(19)20)17-14(18)12(16)9-11-6-4-3-5-7-11/h3-7,10,12-13H,8-9,16H2,1-2H3,(H,17,18)(H,19,20)/t12-,13+/s2 - - metFrom: Recon3D + - inchis: "1/C15H22N2O3/c1-10(2)8-13(15(19)20)17-14(18)12(16)9-11-6-4-3-5-7-11/h3-7,10,12-13H,8-9,16H2,1-2H3,(H,17,18)(H,19,20)/t12-,13+/s2" + - metFrom: "Recon3D" - !!omap - - id: pheleuasp_c + - id: "pheleuasp_c" - name: "Phenylalanyl-Leucyl-Aspartate" - - compartment: c - - formula: C19H26N3O6 + - compartment: "c" + - formula: "C19H26N3O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pheleuhis_c + - id: "pheleuhis_c" - name: "Phenylalanyl-Leucyl-Histidine" - - compartment: c - - formula: C21H29N5O4 + - compartment: "c" + - formula: "C21H29N5O4" - charge: 0 - - inchis: 1S/C21H29N5O4/c1-13(2)8-17(25-19(27)16(22)9-14-6-4-3-5-7-14)20(28)26-18(21(29)30)10-15-11-23-12-24-15/h3-7,11-13,16-18H,8-10,22H2,1-2H3,(H,23,24)(H,25,27)(H,26,28)(H,29,30)/t16-,17-,18-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C21H29N5O4/c1-13(2)8-17(25-19(27)16(22)9-14-6-4-3-5-7-14)20(28)26-18(21(29)30)10-15-11-23-12-24-15/h3-7,11-13,16-18H,8-10,22H2,1-2H3,(H,23,24)(H,25,27)(H,26,28)(H,29,30)/t16-,17-,18-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: phelysala_c + - id: "phelysala_c" - name: "Phenylalanyl-Lysyl-Alanine" - - compartment: c - - formula: C18H29N4O4 + - compartment: "c" + - formula: "C18H29N4O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: phelyspro_c + - id: "phelyspro_c" - name: "Phenylalanyl-Lysyl-Proline" - - compartment: c - - formula: C20H31N4O4 + - compartment: "c" + - formula: "C20H31N4O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: phephe_c + - id: "phephe_c" - name: "Phenylalanyl-Phenylalanine" - - compartment: c - - formula: C18H20N2O3 + - compartment: "c" + - formula: "C18H20N2O3" - charge: 0 - - inchis: 1/C18H20N2O3/c19-15(11-13-7-3-1-4-8-13)17(21)20-16(18(22)23)12-14-9-5-2-6-10-14/h1-10,15-16H,11-12,19H2,(H,20,21)(H,22,23)/t15-,16+/s2 - - metFrom: Recon3D + - inchis: "1/C18H20N2O3/c19-15(11-13-7-3-1-4-8-13)17(21)20-16(18(22)23)12-14-9-5-2-6-10-14/h1-10,15-16H,11-12,19H2,(H,20,21)(H,22,23)/t15-,16+/s2" + - metFrom: "Recon3D" - !!omap - - id: phepheasn_c + - id: "phepheasn_c" - name: "Phenylalanyl-Phenylalaninyl-Asparagine" - - compartment: c - - formula: C22H26N4O5 + - compartment: "c" + - formula: "C22H26N4O5" - charge: 0 - - inchis: 1/C22H26N4O5/c23-16(11-14-7-3-1-4-8-14)20(28)25-17(12-15-9-5-2-6-10-15)21(29)26-18(22(30)31)13-19(24)27/h1-10,16-18H,11-13,23H2,(H2,24,27)(H,25,28)(H,26,29)(H,30,31)/t16-,17+,18-/s2 - - metFrom: Recon3D + - inchis: "1/C22H26N4O5/c23-16(11-14-7-3-1-4-8-14)20(28)25-17(12-15-9-5-2-6-10-15)21(29)26-18(22(30)31)13-19(24)27/h1-10,16-18H,11-13,23H2,(H2,24,27)(H,25,28)(H,26,29)(H,30,31)/t16-,17+,18-/s2" + - metFrom: "Recon3D" - !!omap - - id: phephethr_c + - id: "phephethr_c" - name: "Phenylalanyl-Phenylalaninyl-Threonine" - - compartment: c - - formula: C22H27N3O5 + - compartment: "c" + - formula: "C22H27N3O5" - charge: 0 - - inchis: 1/C22H27N3O5/c1-14(26)19(22(29)30)25-21(28)18(13-16-10-6-3-7-11-16)24-20(27)17(23)12-15-8-4-2-5-9-15/h2-11,14,17-19,26H,12-13,23H2,1H3,(H,24,27)(H,25,28)(H,29,30)/t14-,17-,18+,19-/s2 - - metFrom: Recon3D + - inchis: "1/C22H27N3O5/c1-14(26)19(22(29)30)25-21(28)18(13-16-10-6-3-7-11-16)24-20(27)17(23)12-15-8-4-2-5-9-15/h2-11,14,17-19,26H,12-13,23H2,1H3,(H,24,27)(H,25,28)(H,29,30)/t14-,17-,18+,19-/s2" + - metFrom: "Recon3D" - !!omap - - id: pheproarg_c + - id: "pheproarg_c" - name: "Phenylalanyl-Prolyl-Arginine" - - compartment: c - - formula: C20H31N6O4 + - compartment: "c" + - formula: "C20H31N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: phesertrp_c + - id: "phesertrp_c" - name: "Phenylalanyl-Seryl-Tryptophan" - - compartment: c - - formula: C23H26N4O5 + - compartment: "c" + - formula: "C23H26N4O5" - charge: 0 - - inchis: 1/C23H26N4O5/c24-17(10-14-6-2-1-3-7-14)21(29)27-20(13-28)22(30)26-19(23(31)32)11-15-12-25-18-9-5-4-8-16(15)18/h1-9,12,17,19-20,25,28H,10-11,13,24H2,(H,26,30)(H,27,29)(H,31,32)/t17-,19-,20+/s2 - - metFrom: Recon3D + - inchis: "1/C23H26N4O5/c24-17(10-14-6-2-1-3-7-14)21(29)27-20(13-28)22(30)26-19(23(31)32)11-15-12-25-18-9-5-4-8-16(15)18/h1-9,12,17,19-20,25,28H,10-11,13,24H2,(H,26,30)(H,27,29)(H,31,32)/t17-,19-,20+/s2" + - metFrom: "Recon3D" - !!omap - - id: phethrlys_c + - id: "phethrlys_c" - name: "Phenylalanyl-Threonyl-Lysine" - - compartment: c - - formula: C19H31N4O5 + - compartment: "c" + - formula: "C19H31N4O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: phetrpleu_c + - id: "phetrpleu_c" - name: "Phenylalanyl-Tryptophanyl-Leucine" - - compartment: c - - formula: C26H32N4O4 + - compartment: "c" + - formula: "C26H32N4O4" - charge: 0 - - inchis: 1/C26H32N4O4/c1-16(2)12-23(26(33)34)30-25(32)22(14-18-15-28-21-11-7-6-10-19(18)21)29-24(31)20(27)13-17-8-4-3-5-9-17/h3-11,15-16,20,22-23,28H,12-14,27H2,1-2H3,(H,29,31)(H,30,32)(H,33,34)/t20-,22+,23-/s2 - - metFrom: Recon3D + - inchis: "1/C26H32N4O4/c1-16(2)12-23(26(33)34)30-25(32)22(14-18-15-28-21-11-7-6-10-19(18)21)29-24(31)20(27)13-17-8-4-3-5-9-17/h3-11,15-16,20,22-23,28H,12-14,27H2,1-2H3,(H,29,31)(H,30,32)(H,33,34)/t20-,22+,23-/s2" + - metFrom: "Recon3D" - !!omap - - id: phetyr_c + - id: "phetyr_c" - name: "Phenylalanyl-Tyrosine" - - compartment: c - - formula: C18H20N2O4 + - compartment: "c" + - formula: "C18H20N2O4" - charge: 0 - - inchis: 1/C18H20N2O4/c19-15(10-12-4-2-1-3-5-12)17(22)20-16(18(23)24)11-13-6-8-14(21)9-7-13/h1-9,15-16,21H,10-11,19H2,(H,20,22)(H,23,24)/t15-,16+/s2 - - metFrom: Recon3D + - inchis: "1/C18H20N2O4/c19-15(10-12-4-2-1-3-5-12)17(22)20-16(18(23)24)11-13-6-8-14(21)9-7-13/h1-9,15-16,21H,10-11,19H2,(H,20,22)(H,23,24)/t15-,16+/s2" + - metFrom: "Recon3D" - !!omap - - id: phetyrgln_c + - id: "phetyrgln_c" - name: "Phenylalanyl-Tyrosinyl-Glutamine" - - compartment: c - - formula: C23H28N4O6 + - compartment: "c" + - formula: "C23H28N4O6" - charge: 0 - - inchis: 1/C23H28N4O6/c24-17(12-14-4-2-1-3-5-14)21(30)27-19(13-15-6-8-16(28)9-7-15)22(31)26-18(23(32)33)10-11-20(25)29/h1-9,17-19,28H,10-13,24H2,(H2,25,29)(H,26,31)(H,27,30)(H,32,33)/t17-,18-,19+/s2 - - metFrom: Recon3D + - inchis: "1/C23H28N4O6/c24-17(12-14-4-2-1-3-5-14)21(30)27-19(13-15-6-8-16(28)9-7-15)22(31)26-18(23(32)33)10-11-20(25)29/h1-9,17-19,28H,10-13,24H2,(H2,25,29)(H,26,31)(H,27,30)(H,32,33)/t17-,18-,19+/s2" + - metFrom: "Recon3D" - !!omap - - id: phetyrlys_c + - id: "phetyrlys_c" - name: "Phenylalanyl-Tyrosinyl-Lysine" - - compartment: c - - formula: C24H33N4O5 + - compartment: "c" + - formula: "C24H33N4O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: proargasp_c + - id: "proargasp_c" - name: "Prolyl-Arginyl-Aspartate" - - compartment: c - - formula: C15H26N6O6 + - compartment: "c" + - formula: "C15H26N6O6" - charge: 0 - - inchis: 1/C15H26N6O6/c16-15(17)19-6-2-4-9(20-12(24)8-3-1-5-18-8)13(25)21-10(14(26)27)7-11(22)23/h8-10,18H,1-7H2,(H,20,24)(H,21,25)(H,22,23)(H,26,27)(H4,16,17,19)/t8?,9-,10+/s2 - - metFrom: Recon3D + - inchis: "1/C15H26N6O6/c16-15(17)19-6-2-4-9(20-12(24)8-3-1-5-18-8)13(25)21-10(14(26)27)7-11(22)23/h8-10,18H,1-7H2,(H,20,24)(H,21,25)(H,22,23)(H,26,27)(H4,16,17,19)/t8?,9-,10+/s2" + - metFrom: "Recon3D" - !!omap - - id: proargcys_c + - id: "proargcys_c" - name: "Prolyl-Arginyl-Cysteine" - - compartment: c - - formula: C14H27N6O4S + - compartment: "c" + - formula: "C14H27N6O4S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: proasncys_c + - id: "proasncys_c" - name: "Prolyl-Asparaginyl-Cysteine" - - compartment: c - - formula: C12H20N4O5S + - compartment: "c" + - formula: "C12H20N4O5S" - charge: 0 - - inchis: 1/C12H20N4O5S/c13-9(17)4-7(11(19)16-8(5-22)12(20)21)15-10(18)6-2-1-3-14-6/h6-8,14,22H,1-5H2,(H2,13,17)(H,15,18)(H,16,19)(H,20,21)/t6?,7-,8+/s2 - - metFrom: Recon3D + - inchis: "1/C12H20N4O5S/c13-9(17)4-7(11(19)16-8(5-22)12(20)21)15-10(18)6-2-1-3-14-6/h6-8,14,22H,1-5H2,(H2,13,17)(H,15,18)(H,16,19)(H,20,21)/t6?,7-,8+/s2" + - metFrom: "Recon3D" - !!omap - - id: procys_c + - id: "procys_c" - name: "Prolyl-Cysteine" - - compartment: c - - formula: C8H14N2O3S + - compartment: "c" + - formula: "C8H14N2O3S" - charge: 0 - - inchis: 1/C8H14N2O3S/c11-7(5-2-1-3-9-5)10-6(4-14)8(12)13/h5-6,9,14H,1-4H2,(H,10,11)(H,12,13)/t5?,6-/s2 - - metFrom: Recon3D + - inchis: "1/C8H14N2O3S/c11-7(5-2-1-3-9-5)10-6(4-14)8(12)13/h5-6,9,14H,1-4H2,(H,10,11)(H,12,13)/t5?,6-/s2" + - metFrom: "Recon3D" - !!omap - - id: proglnpro_c + - id: "proglnpro_c" - name: "Prolyl-Glutaminyl-Proline" - - compartment: c - - formula: C15H24N4O5 + - compartment: "c" + - formula: "C15H24N4O5" - charge: 0 - - inchis: 1/C15H24N4O5/c16-12(20)6-5-10(18-13(21)9-3-1-7-17-9)14(22)19-8-2-4-11(19)15(23)24/h9-11,17H,1-8H2,(H2,16,20)(H,18,21)(H,23,24)/t9?,10-,11-/s2 - - metFrom: Recon3D + - inchis: "1/C15H24N4O5/c16-12(20)6-5-10(18-13(21)9-3-1-7-17-9)14(22)19-8-2-4-11(19)15(23)24/h9-11,17H,1-8H2,(H2,16,20)(H,18,21)(H,23,24)/t9?,10-,11-/s2" + - metFrom: "Recon3D" - !!omap - - id: proglulys_c + - id: "proglulys_c" - name: "Prolyl-Glutamatsyl-Lysine" - - compartment: c - - formula: C16H28N4O6 + - compartment: "c" + - formula: "C16H28N4O6" - charge: 0 - - inchis: 1/C16H28N4O6/c17-8-2-1-4-12(16(25)26)20-15(24)11(6-7-13(21)22)19-14(23)10-5-3-9-18-10/h10-12,18H,1-9,17H2,(H,19,23)(H,20,24)(H,21,22)(H,25,26)/t10?,11-,12+/s2 - - metFrom: Recon3D + - inchis: "1/C16H28N4O6/c17-8-2-1-4-12(16(25)26)20-15(24)11(6-7-13(21)22)19-14(23)10-5-3-9-18-10/h10-12,18H,1-9,17H2,(H,19,23)(H,20,24)(H,21,22)(H,25,26)/t10?,11-,12+/s2" + - metFrom: "Recon3D" - !!omap - - id: prohis_c + - id: "prohis_c" - name: "Prolyl-Histidine" - - compartment: c - - formula: C11H16N4O3 + - compartment: "c" + - formula: "C11H16N4O3" - charge: 0 - - inchis: 1/C11H16N4O3/c16-10(8-2-1-3-13-8)15-9(11(17)18)4-7-5-12-6-14-7/h5-6,8-9,13H,1-4H2,(H,12,14)(H,15,16)(H,17,18)/t8?,9-/s2 - - metFrom: Recon3D + - inchis: "1/C11H16N4O3/c16-10(8-2-1-3-13-8)15-9(11(17)18)4-7-5-12-6-14-7/h5-6,8-9,13H,1-4H2,(H,12,14)(H,15,16)(H,17,18)/t8?,9-/s2" + - metFrom: "Recon3D" - !!omap - - id: prohistyr_c + - id: "prohistyr_c" - name: "Prolyl-Histidyl-Tyrosine" - - compartment: c - - formula: C20H26N5O5 + - compartment: "c" + - formula: "C20H26N5O5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: proleuarg_c + - id: "proleuarg_c" - name: "Prolyl-Leucyl-Arginine" - - compartment: c - - formula: C17H33N6O4 + - compartment: "c" + - formula: "C17H33N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: prolyspro_c + - id: "prolyspro_c" - name: "Prolyl-Lysyl-Proline" - - compartment: c - - formula: C16H29N4O4 + - compartment: "c" + - formula: "C16H29N4O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: prophe_c + - id: "prophe_c" - name: "Prolyl-Phenylalanine" - - compartment: c - - formula: C14H18N2O3 + - compartment: "c" + - formula: "C14H18N2O3" - charge: 1 - - inchis: 1S/C14H18N2O3/c17-13(11-7-4-8-15-11)16-12(14(18)19)9-10-5-2-1-3-6-10/h1-3,5-6,11-12,15H,4,7-9H2,(H,16,17)(H,18,19)/t11-,12-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C14H18N2O3/c17-13(11-7-4-8-15-11)16-12(14(18)19)9-10-5-2-1-3-6-10/h1-3,5-6,11-12,15H,4,7-9H2,(H,16,17)(H,18,19)/t11-,12-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: proproarg_c + - id: "proproarg_c" - name: "Prolyl-Prolyl-Arginine" - - compartment: c - - formula: C16H29N6O4 + - compartment: "c" + - formula: "C16H29N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: propropro_c + - id: "propropro_c" - name: "Prolyl-Prolyl-Proline" - - compartment: c - - formula: C15H23N3O4 + - compartment: "c" + - formula: "C15H23N3O4" - charge: 0 - - inchis: 1/C15H23N3O4/c19-13(10-4-1-7-16-10)17-8-2-5-11(17)14(20)18-9-3-6-12(18)15(21)22/h10-12,16H,1-9H2,(H,21,22)/t10?,11-,12+/s2 - - metFrom: Recon3D + - inchis: "1/C15H23N3O4/c19-13(10-4-1-7-16-10)17-8-2-5-11(17)14(20)18-9-3-6-12(18)15(21)22/h10-12,16H,1-9H2,(H,21,22)/t10?,11-,12+/s2" + - metFrom: "Recon3D" - !!omap - - id: protrplys_c + - id: "protrplys_c" - name: "Prolyl-Tryptophanyl-Lysine" - - compartment: c - - formula: C22H32N5O4 + - compartment: "c" + - formula: "C22H32N5O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: protrpthr_c + - id: "protrpthr_c" - name: "Prolyl-Tryptophanyl-Threonine" - - compartment: c - - formula: C20H26N4O5 + - compartment: "c" + - formula: "C20H26N4O5" - charge: 0 - - inchis: 1S/C20H26N4O5/c1-11(25)17(20(28)29)24-19(27)16(23-18(26)15-7-4-8-21-15)9-12-10-22-14-6-3-2-5-13(12)14/h2-3,5-6,10-11,15-17,21-22,25H,4,7-9H2,1H3,(H,23,26)(H,24,27)(H,28,29)/t11-,15+,16+,17+/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C20H26N4O5/c1-11(25)17(20(28)29)24-19(27)16(23-18(26)15-7-4-8-21-15)9-12-10-22-14-6-3-2-5-13(12)14/h2-3,5-6,10-11,15-17,21-22,25H,4,7-9H2,1H3,(H,23,26)(H,24,27)(H,28,29)/t11-,15+,16+,17+/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: provalgln_c + - id: "provalgln_c" - name: "Prolyl-Valyl-Glutamine" - - compartment: c - - formula: C15H26N4O5 + - compartment: "c" + - formula: "C15H26N4O5" - charge: 0 - - inchis: 1/C15H26N4O5/c1-8(2)12(19-13(21)9-4-3-7-17-9)14(22)18-10(15(23)24)5-6-11(16)20/h8-10,12,17H,3-7H2,1-2H3,(H2,16,20)(H,18,22)(H,19,21)(H,23,24)/t9?,10-,12+/s2 - - metFrom: Recon3D + - inchis: "1/C15H26N4O5/c1-8(2)12(19-13(21)9-4-3-7-17-9)14(22)18-10(15(23)24)5-6-11(16)20/h8-10,12,17H,3-7H2,1-2H3,(H2,16,20)(H,18,22)(H,19,21)(H,23,24)/t9?,10-,12+/s2" + - metFrom: "Recon3D" - !!omap - - id: serargala_c + - id: "serargala_c" - name: "Seryl-Arginyl-Alanine" - - compartment: c - - formula: C12H25N6O5 + - compartment: "c" + - formula: "C12H25N6O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: serargtrp_c + - id: "serargtrp_c" - name: "Seryl-Arginyl-Tryptophan" - - compartment: c - - formula: C20H30N7O5 + - compartment: "c" + - formula: "C20H30N7O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sercysarg_c + - id: "sercysarg_c" - name: "Seryl-Cysteinyl-Arginine" - - compartment: c - - formula: C12H25N6O5S + - compartment: "c" + - formula: "C12H25N6O5S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: serglyglu_c + - id: "serglyglu_c" - name: "Seryl-Glycyl-Glutamate" - - compartment: c - - formula: C10H16N3O7 + - compartment: "c" + - formula: "C10H16N3O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: serlyshis_c + - id: "serlyshis_c" - name: "Seryl-Lysyl-Histidine" - - compartment: c - - formula: C15H27N6O5 + - compartment: "c" + - formula: "C15H27N6O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: serphelys_c + - id: "serphelys_c" - name: "Seryl-Phenylalanyl-Lysine" - - compartment: c - - formula: C18H29N4O5 + - compartment: "c" + - formula: "C18H29N4O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sertrphis_c + - id: "sertrphis_c" - name: "Seryl-Tryptophanyl-Histidine" - - compartment: c - - formula: C20H24N6O5 + - compartment: "c" + - formula: "C20H24N6O5" - charge: 0 - - inchis: 1/C20H24N6O5/c21-14(9-27)18(28)25-16(5-11-7-23-15-4-2-1-3-13(11)15)19(29)26-17(20(30)31)6-12-8-22-10-24-12/h1-4,7-8,10,14,16-17,23,27H,5-6,9,21H2,(H,22,24)(H,25,28)(H,26,29)(H,30,31)/t14-,16+,17-/s2 - - metFrom: Recon3D + - inchis: "1/C20H24N6O5/c21-14(9-27)18(28)25-16(5-11-7-23-15-4-2-1-3-13(11)15)19(29)26-17(20(30)31)6-12-8-22-10-24-12/h1-4,7-8,10,14,16-17,23,27H,5-6,9,21H2,(H,22,24)(H,25,28)(H,26,29)(H,30,31)/t14-,16+,17-/s2" + - metFrom: "Recon3D" - !!omap - - id: thrargtyr_c + - id: "thrargtyr_c" - name: "Threonyl-Arginyl-Tyrosine" - - compartment: c - - formula: C19H31N6O6 + - compartment: "c" + - formula: "C19H31N6O6" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: thrasntyr_c + - id: "thrasntyr_c" - name: "Threonyl-Asparaginyl-Tyrosine" - - compartment: c - - formula: C17H24N4O7 + - compartment: "c" + - formula: "C17H24N4O7" - charge: 0 - - inchis: 1/C17H24N4O7/c1-8(22)14(19)16(26)20-11(7-13(18)24)15(25)21-12(17(27)28)6-9-2-4-10(23)5-3-9/h2-5,8,11-12,14,22-23H,6-7,19H2,1H3,(H2,18,24)(H,20,26)(H,21,25)(H,27,28)/t8-,11+,12-,14-/s2 - - metFrom: Recon3D + - inchis: "1/C17H24N4O7/c1-8(22)14(19)16(26)20-11(7-13(18)24)15(25)21-12(17(27)28)6-9-2-4-10(23)5-3-9/h2-5,8,11-12,14,22-23H,6-7,19H2,1H3,(H2,18,24)(H,20,26)(H,21,25)(H,27,28)/t8-,11+,12-,14-/s2" + - metFrom: "Recon3D" - !!omap - - id: thrglnglu_c + - id: "thrglnglu_c" - name: "Threonyl-Glutaminyl-Glutamate" - - compartment: c - - formula: C14H23N4O8 + - compartment: "c" + - formula: "C14H23N4O8" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: thrglntyr_c + - id: "thrglntyr_c" - name: "Threonyl-Glutaminyl-Tyrosine" - - compartment: c - - formula: C18H26N4O7 + - compartment: "c" + - formula: "C18H26N4O7" - charge: 0 - - inchis: 1/C18H26N4O7/c1-9(23)15(20)17(27)21-12(6-7-14(19)25)16(26)22-13(18(28)29)8-10-2-4-11(24)5-3-10/h2-5,9,12-13,15,23-24H,6-8,20H2,1H3,(H2,19,25)(H,21,27)(H,22,26)(H,28,29)/t9-,12+,13-,15-/s2 - - metFrom: Recon3D + - inchis: "1/C18H26N4O7/c1-9(23)15(20)17(27)21-12(6-7-14(19)25)16(26)22-13(18(28)29)8-10-2-4-11(24)5-3-10/h2-5,9,12-13,15,23-24H,6-8,20H2,1H3,(H2,19,25)(H,21,27)(H,22,26)(H,28,29)/t9-,12+,13-,15-/s2" + - metFrom: "Recon3D" - !!omap - - id: thrhishis_c + - id: "thrhishis_c" - name: "Threonyl-Histidinyl-Histidine" - - compartment: c - - formula: C16H23N7O5 + - compartment: "c" + - formula: "C16H23N7O5" - charge: 0 - - inchis: 1/C16H23N7O5/c1-8(24)13(17)15(26)22-11(2-9-4-18-6-20-9)14(25)23-12(16(27)28)3-10-5-19-7-21-10/h4-8,11-13,24H,2-3,17H2,1H3,(H,18,20)(H,19,21)(H,22,26)(H,23,25)(H,27,28)/t8-,11+,12-,13-/s2 - - metFrom: Recon3D + - inchis: "1/C16H23N7O5/c1-8(24)13(17)15(26)22-11(2-9-4-18-6-20-9)14(25)23-12(16(27)28)3-10-5-19-7-21-10/h4-8,11-13,24H,2-3,17H2,1H3,(H,18,20)(H,19,21)(H,22,26)(H,23,25)(H,27,28)/t8-,11+,12-,13-/s2" + - metFrom: "Recon3D" - !!omap - - id: thrilearg_c + - id: "thrilearg_c" - name: "Threonyl-Isoleucyl-Arginine" - - compartment: c - - formula: C16H33N6O5 + - compartment: "c" + - formula: "C16H33N6O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: thrmetarg_c + - id: "thrmetarg_c" - name: "Threonyl-Methionyl-Arginine" - - compartment: c - - formula: C15H31N6O5S + - compartment: "c" + - formula: "C15H31N6O5S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: thrphearg_c + - id: "thrphearg_c" - name: "Threonyl-Phenylalanyl-Arginine" - - compartment: c - - formula: C19H31N6O5 + - compartment: "c" + - formula: "C19H31N6O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: thrserarg_c + - id: "thrserarg_c" - name: "Threonyl-Seryl-Arginine" - - compartment: c - - formula: C13H27N6O6 + - compartment: "c" + - formula: "C13H27N6O6" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: thrthrarg_c + - id: "thrthrarg_c" - name: "Threonyl-Threonyl-Arginine" - - compartment: c - - formula: C14H29N6O6 + - compartment: "c" + - formula: "C14H29N6O6" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: thrtyrmet_c + - id: "thrtyrmet_c" - name: "Threonyl-Tyrosyl-Methionine" - - compartment: c - - formula: C18H27N3O6S + - compartment: "c" + - formula: "C18H27N3O6S" - charge: 0 - - inchis: 1/C18H27N3O6S/c1-10(22)15(19)17(25)21-14(9-11-3-5-12(23)6-4-11)16(24)20-13(18(26)27)7-8-28-2/h3-6,10,13-15,22-23H,7-9,19H2,1-2H3,(H,20,24)(H,21,25)(H,26,27)/t10-,13-,14+,15-/s2 - - metFrom: Recon3D + - inchis: "1/C18H27N3O6S/c1-10(22)15(19)17(25)21-14(9-11-3-5-12(23)6-4-11)16(24)20-13(18(26)27)7-8-28-2/h3-6,10,13-15,22-23H,7-9,19H2,1-2H3,(H,20,24)(H,21,25)(H,26,27)/t10-,13-,14+,15-/s2" + - metFrom: "Recon3D" - !!omap - - id: trpalapro_c + - id: "trpalapro_c" - name: "Tryptophanyl-Alanyl-Proline" - - compartment: c - - formula: C19H24N4O4 + - compartment: "c" + - formula: "C19H24N4O4" - charge: 0 - - inchis: 1S/C19H24N4O4/c1-11(18(25)23-8-4-7-16(23)19(26)27)22-17(24)14(20)9-12-10-21-15-6-3-2-5-13(12)15/h2-3,5-6,10-11,14,16,21H,4,7-9,20H2,1H3,(H,22,24)(H,26,27)/t11-,14-,16-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C19H24N4O4/c1-11(18(25)23-8-4-7-16(23)19(26)27)22-17(24)14(20)9-12-10-21-15-6-3-2-5-13(12)15/h2-3,5-6,10-11,14,16,21H,4,7-9,20H2,1H3,(H,22,24)(H,26,27)/t11-,14-,16-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: trpargala_c + - id: "trpargala_c" - name: "Tryptophanyl-Arginyl-Alanine" - - compartment: c - - formula: C20H30N7O4 + - compartment: "c" + - formula: "C20H30N7O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: trpaspasp_c + - id: "trpaspasp_c" - name: "Tryptophanyl-Aspartyl-Aspartate" - - compartment: c - - formula: C19H20N4O8 + - compartment: "c" + - formula: "C19H20N4O8" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: trpglngln_c + - id: "trpglngln_c" - name: "Tryptophanyl-Glutaminyl-Glutamine" - - compartment: c - - formula: C21H28N6O6 + - compartment: "c" + - formula: "C21H28N6O6" - charge: 0 - - inchis: 1/C21H28N6O6/c22-13(9-11-10-25-14-4-2-1-3-12(11)14)19(30)26-15(5-7-17(23)28)20(31)27-16(21(32)33)6-8-18(24)29/h1-4,10,13,15-16,25H,5-9,22H2,(H2,23,28)(H2,24,29)(H,26,30)(H,27,31)(H,32,33)/t13-,15+,16-/s2 - - metFrom: Recon3D + - inchis: "1/C21H28N6O6/c22-13(9-11-10-25-14-4-2-1-3-12(11)14)19(30)26-15(5-7-17(23)28)20(31)27-16(21(32)33)6-8-18(24)29/h1-4,10,13,15-16,25H,5-9,22H2,(H2,23,28)(H2,24,29)(H,26,30)(H,27,31)(H,32,33)/t13-,15+,16-/s2" + - metFrom: "Recon3D" - !!omap - - id: trpglugly_c + - id: "trpglugly_c" - name: "Tryptophanyl-Glutamyl-Glycine" - - compartment: c - - formula: C18H21N4O6 + - compartment: "c" + - formula: "C18H21N4O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: trpgluleu_c + - id: "trpgluleu_c" - name: "Tryptophanyl-Glutamyl-Leucine" - - compartment: c - - formula: C22H29N4O6 + - compartment: "c" + - formula: "C22H29N4O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: trpglupro_c + - id: "trpglupro_c" - name: "Tryptophanyl-Glutamyl-Proline" - - compartment: c - - formula: C21H25N4O6 + - compartment: "c" + - formula: "C21H25N4O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: trpglutyr_c + - id: "trpglutyr_c" - name: "Tryptophanyl-Glutamyl-Tyrosine" - - compartment: c - - formula: C25H27N4O7 + - compartment: "c" + - formula: "C25H27N4O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: trpglyleu_c + - id: "trpglyleu_c" - name: "Tryptophanyl-Glycyl-Leucine" - - compartment: c - - formula: C19H26N4O4 + - compartment: "c" + - formula: "C19H26N4O4" - charge: 0 - - inchis: 1/C19H26N4O4/c1-11(2)7-16(19(26)27)23-17(24)10-22-18(25)14(20)8-12-9-21-15-6-4-3-5-13(12)15/h3-6,9,11,14,16,21H,7-8,10,20H2,1-2H3,(H,22,25)(H,23,24)(H,26,27)/t14-,16-/s2 - - metFrom: Recon3D + - inchis: "1/C19H26N4O4/c1-11(2)7-16(19(26)27)23-17(24)10-22-18(25)14(20)8-12-9-21-15-6-4-3-5-13(12)15/h3-6,9,11,14,16,21H,7-8,10,20H2,1-2H3,(H,22,25)(H,23,24)(H,26,27)/t14-,16-/s2" + - metFrom: "Recon3D" - !!omap - - id: trpglyphe_c + - id: "trpglyphe_c" - name: "Tryptophanyl-Glycyl-Phenylalanine" - - compartment: c - - formula: C22H24N4O4 + - compartment: "c" + - formula: "C22H24N4O4" - charge: 0 - - inchis: 1/C22H24N4O4/c23-17(11-15-12-24-18-9-5-4-8-16(15)18)21(28)25-13-20(27)26-19(22(29)30)10-14-6-2-1-3-7-14/h1-9,12,17,19,24H,10-11,13,23H2,(H,25,28)(H,26,27)(H,29,30)/t17-,19-/s2 - - metFrom: Recon3D + - inchis: "1/C22H24N4O4/c23-17(11-15-12-24-18-9-5-4-8-16(15)18)21(28)25-13-20(27)26-19(22(29)30)10-14-6-2-1-3-7-14/h1-9,12,17,19,24H,10-11,13,23H2,(H,25,28)(H,26,27)(H,29,30)/t17-,19-/s2" + - metFrom: "Recon3D" - !!omap - - id: trpglyval_c + - id: "trpglyval_c" - name: "Tryptophanyl-Glycyl-Valine" - - compartment: c - - formula: C18H24N4O4 + - compartment: "c" + - formula: "C18H24N4O4" - charge: 0 - - inchis: 1/C18H24N4O4/c1-10(2)16(18(25)26)22-15(23)9-21-17(24)13(19)7-11-8-20-14-6-4-3-5-12(11)14/h3-6,8,10,13,16,20H,7,9,19H2,1-2H3,(H,21,24)(H,22,23)(H,25,26)/t13-,16-/s2 - - metFrom: Recon3D + - inchis: "1/C18H24N4O4/c1-10(2)16(18(25)26)22-15(23)9-21-17(24)13(19)7-11-8-20-14-6-4-3-5-12(11)14/h3-6,8,10,13,16,20H,7,9,19H2,1-2H3,(H,21,24)(H,22,23)(H,25,26)/t13-,16-/s2" + - metFrom: "Recon3D" - !!omap - - id: trphismet_c + - id: "trphismet_c" - name: "Tryptophanyl-Histidyl-Methionine" - - compartment: c - - formula: C22H28N6O4S + - compartment: "c" + - formula: "C22H28N6O4S" - charge: 0 - - inchis: 1/C22H28N6O4S/c1-33-7-6-18(22(31)32)27-21(30)19(9-14-11-24-12-26-14)28-20(29)16(23)8-13-10-25-17-5-3-2-4-15(13)17/h2-5,10-12,16,18-19,25H,6-9,23H2,1H3,(H,24,26)(H,27,30)(H,28,29)(H,31,32)/t16-,18-,19+/s2 - - metFrom: Recon3D + - inchis: "1/C22H28N6O4S/c1-33-7-6-18(22(31)32)27-21(30)19(9-14-11-24-12-26-14)28-20(29)16(23)8-13-10-25-17-5-3-2-4-15(13)17/h2-5,10-12,16,18-19,25H,6-9,23H2,1H3,(H,24,26)(H,27,30)(H,28,29)(H,31,32)/t16-,18-,19+/s2" + - metFrom: "Recon3D" - !!omap - - id: trpilelys_c + - id: "trpilelys_c" - name: "Tryptophanyl-Isoleucyl-Lysine" - - compartment: c - - formula: C23H36N5O4 + - compartment: "c" + - formula: "C23H36N5O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: trpiletrp_c + - id: "trpiletrp_c" - name: "Tryptophanyl-Isoleucyl-Tryptophan" - - compartment: c - - formula: C28H33N5O4 + - compartment: "c" + - formula: "C28H33N5O4" - charge: 0 - - inchis: 1S/C28H33N5O4/c1-3-16(2)25(33-26(34)21(29)12-17-14-30-22-10-6-4-8-19(17)22)27(35)32-24(28(36)37)13-18-15-31-23-11-7-5-9-20(18)23/h4-11,14-16,21,24-25,30-31H,3,12-13,29H2,1-2H3,(H,32,35)(H,33,34)(H,36,37)/t16-,21-,24-,25-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C28H33N5O4/c1-3-16(2)25(33-26(34)21(29)12-17-14-30-22-10-6-4-8-19(17)22)27(35)32-24(28(36)37)13-18-15-31-23-11-7-5-9-20(18)23/h4-11,14-16,21,24-25,30-31H,3,12-13,29H2,1-2H3,(H,32,35)(H,33,34)(H,36,37)/t16-,21-,24-,25-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: trpleuval_c + - id: "trpleuval_c" - name: "Tryptophanyl-Leucyl-Valine" - - compartment: c - - formula: C22H32N4O4 + - compartment: "c" + - formula: "C22H32N4O4" - charge: 0 - - inchis: 1/C22H32N4O4/c1-12(2)9-18(21(28)26-19(13(3)4)22(29)30)25-20(27)16(23)10-14-11-24-17-8-6-5-7-15(14)17/h5-8,11-13,16,18-19,24H,9-10,23H2,1-4H3,(H,25,27)(H,26,28)(H,29,30)/t16-,18+,19-/s2 - - metFrom: Recon3D + - inchis: "1/C22H32N4O4/c1-12(2)9-18(21(28)26-19(13(3)4)22(29)30)25-20(27)16(23)10-14-11-24-17-8-6-5-7-15(14)17/h5-8,11-13,16,18-19,24H,9-10,23H2,1-4H3,(H,25,27)(H,26,28)(H,29,30)/t16-,18+,19-/s2" + - metFrom: "Recon3D" - !!omap - - id: trplys_c + - id: "trplys_c" - name: "Tryptophanyl-Lysine" - - compartment: c - - formula: C17H25N4O3 + - compartment: "c" + - formula: "C17H25N4O3" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: trpmetarg_c + - id: "trpmetarg_c" - name: "Tryptophanyl-Methionyl-Arginine" - - compartment: c - - formula: C22H34N7O4S + - compartment: "c" + - formula: "C22H34N7O4S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: trpmetval_c + - id: "trpmetval_c" - name: "Tryptophanyl-Methionyl-Valine" - - compartment: c - - formula: C21H30N4O4S + - compartment: "c" + - formula: "C21H30N4O4S" - charge: 0 - - inchis: 1/C21H30N4O4S/c1-12(2)18(21(28)29)25-20(27)17(8-9-30-3)24-19(26)15(22)10-13-11-23-16-7-5-4-6-14(13)16/h4-7,11-12,15,17-18,23H,8-10,22H2,1-3H3,(H,24,26)(H,25,27)(H,28,29)/t15-,17+,18-/s2 - - metFrom: Recon3D + - inchis: "1/C21H30N4O4S/c1-12(2)18(21(28)29)25-20(27)17(8-9-30-3)24-19(26)15(22)10-13-11-23-16-7-5-4-6-14(13)16/h4-7,11-12,15,17-18,23H,8-10,22H2,1-3H3,(H,24,26)(H,25,27)(H,28,29)/t15-,17+,18-/s2" + - metFrom: "Recon3D" - !!omap - - id: trpphe_c + - id: "trpphe_c" - name: "Tryptophanyl-Phenylalanine" - - compartment: c - - formula: C20H21N3O3 + - compartment: "c" + - formula: "C20H21N3O3" - charge: 0 - - inchis: 1/C20H21N3O3/c21-16(11-14-12-22-17-9-5-4-8-15(14)17)19(24)23-18(20(25)26)10-13-6-2-1-3-7-13/h1-9,12,16,18,22H,10-11,21H2,(H,23,24)(H,25,26)/t16-,18+/s2 - - metFrom: Recon3D + - inchis: "1/C20H21N3O3/c21-16(11-14-12-22-17-9-5-4-8-15(14)17)19(24)23-18(20(25)26)10-13-6-2-1-3-7-13/h1-9,12,16,18,22H,10-11,21H2,(H,23,24)(H,25,26)/t16-,18+/s2" + - metFrom: "Recon3D" - !!omap - - id: trpprogly_c + - id: "trpprogly_c" - name: "Tryptophanyl-Prolyl-Glycine" - - compartment: c - - formula: C18H21N4O4 + - compartment: "c" + - formula: "C18H21N4O4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: trpproleu_c + - id: "trpproleu_c" - name: "Tryptophanyl-Prolyl-Leucine" - - compartment: c - - formula: C22H30N4O4 + - compartment: "c" + - formula: "C22H30N4O4" - charge: 0 - - inchis: 1/C22H30N4O4/c1-13(2)10-18(22(29)30)25-20(27)19-8-5-9-26(19)21(28)16(23)11-14-12-24-17-7-4-3-6-15(14)17/h3-4,6-7,12-13,16,18-19,24H,5,8-11,23H2,1-2H3,(H,25,27)(H,29,30)/t16-,18-,19-/s2 - - metFrom: Recon3D + - inchis: "1/C22H30N4O4/c1-13(2)10-18(22(29)30)25-20(27)19-8-5-9-26(19)21(28)16(23)11-14-12-24-17-7-4-3-6-15(14)17/h3-4,6-7,12-13,16,18-19,24H,5,8-11,23H2,1-2H3,(H,25,27)(H,29,30)/t16-,18-,19-/s2" + - metFrom: "Recon3D" - !!omap - - id: trpproval_c + - id: "trpproval_c" - name: "Tryptophanyl-Prolyl-Valine" - - compartment: c - - formula: C21H28N4O4 + - compartment: "c" + - formula: "C21H28N4O4" - charge: 0 - - inchis: 1/C21H28N4O4/c1-12(2)18(21(28)29)24-19(26)17-8-5-9-25(17)20(27)15(22)10-13-11-23-16-7-4-3-6-14(13)16/h3-4,6-7,11-12,15,17-18,23H,5,8-10,22H2,1-2H3,(H,24,26)(H,28,29)/t15-,17-,18-/s2 - - metFrom: Recon3D + - inchis: "1/C21H28N4O4/c1-12(2)18(21(28)29)24-19(26)17-8-5-9-25(17)20(27)15(22)10-13-11-23-16-7-4-3-6-14(13)16/h3-4,6-7,11-12,15,17-18,23H,5,8-10,22H2,1-2H3,(H,24,26)(H,28,29)/t15-,17-,18-/s2" + - metFrom: "Recon3D" - !!omap - - id: trpsertyr_c + - id: "trpsertyr_c" - name: "Tryptophanyl-Seryl-Tyrosine" - - compartment: c - - formula: C23H26N4O6 + - compartment: "c" + - formula: "C23H26N4O6" - charge: 0 - - inchis: 1/C23H26N4O6/c24-17(10-14-11-25-18-4-2-1-3-16(14)18)21(30)27-20(12-28)22(31)26-19(23(32)33)9-13-5-7-15(29)8-6-13/h1-8,11,17,19-20,25,28-29H,9-10,12,24H2,(H,26,31)(H,27,30)(H,32,33)/t17-,19-,20+/s2 - - metFrom: Recon3D + - inchis: "1/C23H26N4O6/c24-17(10-14-11-25-18-4-2-1-3-16(14)18)21(30)27-20(12-28)22(31)26-19(23(32)33)9-13-5-7-15(29)8-6-13/h1-8,11,17,19-20,25,28-29H,9-10,12,24H2,(H,26,31)(H,27,30)(H,32,33)/t17-,19-,20+/s2" + - metFrom: "Recon3D" - !!omap - - id: trpthrglu_c + - id: "trpthrglu_c" - name: "Tryptophanyl-Threonyl-Glutamate" - - compartment: c - - formula: C20H25N4O7 + - compartment: "c" + - formula: "C20H25N4O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: trpthrile_c + - id: "trpthrile_c" - name: "Tryptophanyl-Threonyl-Isoleucine" - - compartment: c - - formula: C21H30N4O5 + - compartment: "c" + - formula: "C21H30N4O5" - charge: 0 - - inchis: 1/C21H30N4O5/c1-4-11(2)17(21(29)30)24-20(28)18(12(3)26)25-19(27)15(22)9-13-10-23-16-8-6-5-7-14(13)16/h5-8,10-12,15,17-18,23,26H,4,9,22H2,1-3H3,(H,24,28)(H,25,27)(H,29,30)/t11?,12-,15-,17-,18+/s2 - - metFrom: Recon3D + - inchis: "1/C21H30N4O5/c1-4-11(2)17(21(29)30)24-20(28)18(12(3)26)25-19(27)15(22)9-13-10-23-16-8-6-5-7-14(13)16/h5-8,10-12,15,17-18,23,26H,4,9,22H2,1-3H3,(H,24,28)(H,25,27)(H,29,30)/t11?,12-,15-,17-,18+/s2" + - metFrom: "Recon3D" - !!omap - - id: trpthrtyr_c + - id: "trpthrtyr_c" - name: "Tryptophanyl-Threonyl-Tyrosine" - - compartment: c - - formula: C24H28N4O6 + - compartment: "c" + - formula: "C24H28N4O6" - charge: 0 - - inchis: 1/C24H28N4O6/c1-13(29)21(23(32)27-20(24(33)34)10-14-6-8-16(30)9-7-14)28-22(31)18(25)11-15-12-26-19-5-3-2-4-17(15)19/h2-9,12-13,18,20-21,26,29-30H,10-11,25H2,1H3,(H,27,32)(H,28,31)(H,33,34)/t13-,18-,20-,21+/s2 - - metFrom: Recon3D + - inchis: "1/C24H28N4O6/c1-13(29)21(23(32)27-20(24(33)34)10-14-6-8-16(30)9-7-14)28-22(31)18(25)11-15-12-26-19-5-3-2-4-17(15)19/h2-9,12-13,18,20-21,26,29-30H,10-11,25H2,1H3,(H,27,32)(H,28,31)(H,33,34)/t13-,18-,20-,21+/s2" + - metFrom: "Recon3D" - !!omap - - id: trptyrgln_c + - id: "trptyrgln_c" - name: "Tryptophanyl-Tyrosyl-Glutamine" - - compartment: c - - formula: C25H29N5O6 + - compartment: "c" + - formula: "C25H29N5O6" - charge: 0 - - inchis: 1S/C25H29N5O6/c26-18(12-15-13-28-19-4-2-1-3-17(15)19)23(33)30-21(11-14-5-7-16(31)8-6-14)24(34)29-20(25(35)36)9-10-22(27)32/h1-8,13,18,20-21,28,31H,9-12,26H2,(H2,27,32)(H,29,34)(H,30,33)(H,35,36)/t18-,20-,21-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C25H29N5O6/c26-18(12-15-13-28-19-4-2-1-3-17(15)19)23(33)30-21(11-14-5-7-16(31)8-6-14)24(34)29-20(25(35)36)9-10-22(27)32/h1-8,13,18,20-21,28,31H,9-12,26H2,(H2,27,32)(H,29,34)(H,30,33)(H,35,36)/t18-,20-,21-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: trptyrtyr_c + - id: "trptyrtyr_c" - name: "Tryptophanyl-Tyrosyl-Tyrosine" - - compartment: c - - formula: C29H30N4O6 + - compartment: "c" + - formula: "C29H30N4O6" - charge: 0 - - inchis: 1/C29H30N4O6/c30-23(15-19-16-31-24-4-2-1-3-22(19)24)27(36)32-25(13-17-5-9-20(34)10-6-17)28(37)33-26(29(38)39)14-18-7-11-21(35)12-8-18/h1-12,16,23,25-26,31,34-35H,13-15,30H2,(H,32,36)(H,33,37)(H,38,39)/t23-,25+,26-/s2 - - metFrom: Recon3D + - inchis: "1/C29H30N4O6/c30-23(15-19-16-31-24-4-2-1-3-22(19)24)27(36)32-25(13-17-5-9-20(34)10-6-17)28(37)33-26(29(38)39)14-18-7-11-21(35)12-8-18/h1-12,16,23,25-26,31,34-35H,13-15,30H2,(H,32,36)(H,33,37)(H,38,39)/t23-,25+,26-/s2" + - metFrom: "Recon3D" - !!omap - - id: trpvalasp_c + - id: "trpvalasp_c" - name: "Tryptophanyl-Valyl-Aspartate" - - compartment: c - - formula: C20H25N4O6 + - compartment: "c" + - formula: "C20H25N4O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tyrala_c + - id: "tyrala_c" - name: "Tyrosyl-Alanine" - - compartment: c - - formula: C12H16N2O4 + - compartment: "c" + - formula: "C12H16N2O4" - charge: 0 - - inchis: 1/C12H16N2O4/c1-7(12(17)18)14-11(16)10(13)6-8-2-4-9(15)5-3-8/h2-5,7,10,15H,6,13H2,1H3,(H,14,16)(H,17,18)/t7-,10+/s2 - - metFrom: Recon3D + - inchis: "1/C12H16N2O4/c1-7(12(17)18)14-11(16)10(13)6-8-2-4-9(15)5-3-8/h2-5,7,10,15H,6,13H2,1H3,(H,14,16)(H,17,18)/t7-,10+/s2" + - metFrom: "Recon3D" - !!omap - - id: tyralaphe_c + - id: "tyralaphe_c" - name: "Tyrosyl-Alaninyl-Phenylalanine" - - compartment: c - - formula: C21H25N3O5 + - compartment: "c" + - formula: "C21H25N3O5" - charge: 0 - - inchis: 1/C21H25N3O5/c1-13(23-20(27)17(22)11-15-7-9-16(25)10-8-15)19(26)24-18(21(28)29)12-14-5-3-2-4-6-14/h2-10,13,17-18,25H,11-12,22H2,1H3,(H,23,27)(H,24,26)(H,28,29)/t13-,17+,18+/s2 - - metFrom: Recon3D + - inchis: "1/C21H25N3O5/c1-13(23-20(27)17(22)11-15-7-9-16(25)10-8-15)19(26)24-18(21(28)29)12-14-5-3-2-4-6-14/h2-10,13,17-18,25H,11-12,22H2,1H3,(H,23,27)(H,24,26)(H,28,29)/t13-,17+,18+/s2" + - metFrom: "Recon3D" - !!omap - - id: tyrargglu_c + - id: "tyrargglu_c" - name: "Tyrosyl-Arginyl-Glutamate" - - compartment: c - - formula: C20H30N6O7 + - compartment: "c" + - formula: "C20H30N6O7" - charge: 0 - - inchis: 1/C20H30N6O7/c21-13(10-11-3-5-12(27)6-4-11)17(30)25-14(2-1-9-24-20(22)23)18(31)26-15(19(32)33)7-8-16(28)29/h3-6,13-15,27H,1-2,7-10,21H2,(H,25,30)(H,26,31)(H,28,29)(H,32,33)(H4,22,23,24)/t13-,14+,15-/s2 - - metFrom: Recon3D + - inchis: "1/C20H30N6O7/c21-13(10-11-3-5-12(27)6-4-11)17(30)25-14(2-1-9-24-20(22)23)18(31)26-15(19(32)33)7-8-16(28)29/h3-6,13-15,27H,1-2,7-10,21H2,(H,25,30)(H,26,31)(H,28,29)(H,32,33)(H4,22,23,24)/t13-,14+,15-/s2" + - metFrom: "Recon3D" - !!omap - - id: tyrargser_c + - id: "tyrargser_c" - name: "Tyrosyl-Arginyl-Serine" - - compartment: c - - formula: C18H29N6O6 + - compartment: "c" + - formula: "C18H29N6O6" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tyrasparg_c + - id: "tyrasparg_c" - name: "Tyrosyl-Aspartyl-Arginine" - - compartment: c - - formula: C19H28N6O7 + - compartment: "c" + - formula: "C19H28N6O7" - charge: 0 - - inchis: 1/C19H28N6O7/c20-12(8-10-3-5-11(26)6-4-10)16(29)25-14(9-15(27)28)17(30)24-13(18(31)32)2-1-7-23-19(21)22/h3-6,12-14,26H,1-2,7-9,20H2,(H,24,30)(H,25,29)(H,27,28)(H,31,32)(H4,21,22,23)/t12-,13-,14+/s2 - - metFrom: Recon3D + - inchis: "1/C19H28N6O7/c20-12(8-10-3-5-11(26)6-4-10)16(29)25-14(9-15(27)28)17(30)24-13(18(31)32)2-1-7-23-19(21)22/h3-6,12-14,26H,1-2,7-9,20H2,(H,24,30)(H,25,29)(H,27,28)(H,31,32)(H4,21,22,23)/t12-,13-,14+/s2" + - metFrom: "Recon3D" - !!omap - - id: tyrcysgly_c + - id: "tyrcysgly_c" - name: "Tyrosyl-Cysteinyl-Glycine" - - compartment: c - - formula: C14H19N3O5S + - compartment: "c" + - formula: "C14H19N3O5S" - charge: 0 - - inchis: 1/C14H19N3O5S/c15-10(5-8-1-3-9(18)4-2-8)13(21)17-11(7-23)14(22)16-6-12(19)20/h1-4,10-11,18,23H,5-7,15H2,(H,16,22)(H,17,21)(H,19,20)/t10-,11+/s2 - - metFrom: Recon3D + - inchis: "1/C14H19N3O5S/c15-10(5-8-1-3-9(18)4-2-8)13(21)17-11(7-23)14(22)16-6-12(19)20/h1-4,10-11,18,23H,5-7,15H2,(H,16,22)(H,17,21)(H,19,20)/t10-,11+/s2" + - metFrom: "Recon3D" - !!omap - - id: tyrcysthr_c + - id: "tyrcysthr_c" - name: "Tyrosyl-Cysteinyl-Threonine" - - compartment: c - - formula: C16H23N3O6S + - compartment: "c" + - formula: "C16H23N3O6S" - charge: 0 - - inchis: 1/C16H23N3O6S/c1-8(20)13(16(24)25)19-15(23)12(7-26)18-14(22)11(17)6-9-2-4-10(21)5-3-9/h2-5,8,11-13,20-21,26H,6-7,17H2,1H3,(H,18,22)(H,19,23)(H,24,25)/t8-,11-,12+,13-/s2 - - metFrom: Recon3D + - inchis: "1/C16H23N3O6S/c1-8(20)13(16(24)25)19-15(23)12(7-26)18-14(22)11(17)6-9-2-4-10(21)5-3-9/h2-5,8,11-13,20-21,26H,6-7,17H2,1H3,(H,18,22)(H,19,23)(H,24,25)/t8-,11-,12+,13-/s2" + - metFrom: "Recon3D" - !!omap - - id: tyrglu_c + - id: "tyrglu_c" - name: "Tyrosyl-Glutamate" - - compartment: c - - formula: C14H17N2O6 + - compartment: "c" + - formula: "C14H17N2O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tyrleuarg_c + - id: "tyrleuarg_c" - name: "Tyrosyl-Leucyl-Arginine" - - compartment: c - - formula: C21H35N6O5 + - compartment: "c" + - formula: "C21H35N6O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tyrphetyr_c + - id: "tyrphetyr_c" - name: "Tyrosyl-Phenylalanyl-Tyrosine" - - compartment: c - - formula: C27H29N3O6 + - compartment: "c" + - formula: "C27H29N3O6" - charge: 0 - - inchis: 1/C27H29N3O6/c28-22(14-18-6-10-20(31)11-7-18)25(33)29-23(15-17-4-2-1-3-5-17)26(34)30-24(27(35)36)16-19-8-12-21(32)13-9-19/h1-13,22-24,31-32H,14-16,28H2,(H,29,33)(H,30,34)(H,35,36)/t22-,23+,24-/s2 - - metFrom: Recon3D + - inchis: "1/C27H29N3O6/c28-22(14-18-6-10-20(31)11-7-18)25(33)29-23(15-17-4-2-1-3-5-17)26(34)30-24(27(35)36)16-19-8-12-21(32)13-9-19/h1-13,22-24,31-32H,14-16,28H2,(H,29,33)(H,30,34)(H,35,36)/t22-,23+,24-/s2" + - metFrom: "Recon3D" - !!omap - - id: tyrthr_c + - id: "tyrthr_c" - name: "Tyrosyl-Threonine" - - compartment: c - - formula: C13H18N2O5 + - compartment: "c" + - formula: "C13H18N2O5" - charge: 0 - - inchis: 1/C13H18N2O5/c1-7(16)11(13(19)20)15-12(18)10(14)6-8-2-4-9(17)5-3-8/h2-5,7,10-11,16-17H,6,14H2,1H3,(H,15,18)(H,19,20)/t7-,10-,11+/s2 - - metFrom: Recon3D + - inchis: "1/C13H18N2O5/c1-7(16)11(13(19)20)15-12(18)10(14)6-8-2-4-9(17)5-3-8/h2-5,7,10-11,16-17H,6,14H2,1H3,(H,15,18)(H,19,20)/t7-,10-,11+/s2" + - metFrom: "Recon3D" - !!omap - - id: tyrtrpphe_c + - id: "tyrtrpphe_c" - name: "Tyrosyl-Tryptophanyl-Phenylalanine" - - compartment: c - - formula: C29H30N4O5 + - compartment: "c" + - formula: "C29H30N4O5" - charge: 0 - - inchis: 1S/C29H30N4O5/c30-23(14-19-10-12-21(34)13-11-19)27(35)32-25(16-20-17-31-24-9-5-4-8-22(20)24)28(36)33-26(29(37)38)15-18-6-2-1-3-7-18/h1-13,17,23,25-26,31,34H,14-16,30H2,(H,32,35)(H,33,36)(H,37,38)/t23-,25-,26-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C29H30N4O5/c30-23(14-19-10-12-21(34)13-11-19)27(35)32-25(16-20-17-31-24-9-5-4-8-22(20)24)28(36)33-26(29(37)38)15-18-6-2-1-3-7-18/h1-13,17,23,25-26,31,34H,14-16,30H2,(H,32,35)(H,33,36)(H,37,38)/t23-,25-,26-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: tyrtyr_c + - id: "tyrtyr_c" - name: "Tyrosyl-Tyrosine" - - compartment: c - - formula: C18H20N2O5 + - compartment: "c" + - formula: "C18H20N2O5" - charge: 0 - - inchis: 1/C18H20N2O5/c19-15(9-11-1-5-13(21)6-2-11)17(23)20-16(18(24)25)10-12-3-7-14(22)8-4-12/h1-8,15-16,21-22H,9-10,19H2,(H,20,23)(H,24,25)/t15-,16+/s2 - - metFrom: Recon3D + - inchis: "1/C18H20N2O5/c19-15(9-11-1-5-13(21)6-2-11)17(23)20-16(18(24)25)10-12-3-7-14(22)8-4-12/h1-8,15-16,21-22H,9-10,19H2,(H,20,23)(H,24,25)/t15-,16+/s2" + - metFrom: "Recon3D" - !!omap - - id: tyrvalmet_c + - id: "tyrvalmet_c" - name: "Tyrosyl-Valyl-Methionine" - - compartment: c - - formula: C19H29N3O5S + - compartment: "c" + - formula: "C19H29N3O5S" - charge: 0 - - inchis: 1/C19H29N3O5S/c1-11(2)16(18(25)21-15(19(26)27)8-9-28-3)22-17(24)14(20)10-12-4-6-13(23)7-5-12/h4-7,11,14-16,23H,8-10,20H2,1-3H3,(H,21,25)(H,22,24)(H,26,27)/t14-,15-,16+/s2 - - metFrom: Recon3D + - inchis: "1/C19H29N3O5S/c1-11(2)16(18(25)21-15(19(26)27)8-9-28-3)22-17(24)14(20)10-12-4-6-13(23)7-5-12/h4-7,11,14-16,23H,8-10,20H2,1-3H3,(H,21,25)(H,22,24)(H,26,27)/t14-,15-,16+/s2" + - metFrom: "Recon3D" - !!omap - - id: valarggly_c + - id: "valarggly_c" - name: "Valyl-Arginyl-Glycine" - - compartment: c - - formula: C13H27N6O4 + - compartment: "c" + - formula: "C13H27N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: valhisasn_c + - id: "valhisasn_c" - name: "Valyl-Histidyl-Asparagine" - - compartment: c - - formula: C15H24N6O5 + - compartment: "c" + - formula: "C15H24N6O5" - charge: 0 - - inchis: 1/C15H24N6O5/c1-7(2)12(17)14(24)20-9(3-8-5-18-6-19-8)13(23)21-10(15(25)26)4-11(16)22/h5-7,9-10,12H,3-4,17H2,1-2H3,(H2,16,22)(H,18,19)(H,20,24)(H,21,23)(H,25,26)/t9-,10+,12+/s2 - - metFrom: Recon3D + - inchis: "1/C15H24N6O5/c1-7(2)12(17)14(24)20-9(3-8-5-18-6-19-8)13(23)21-10(15(25)26)4-11(16)22/h5-7,9-10,12H,3-4,17H2,1-2H3,(H2,16,22)(H,18,19)(H,20,24)(H,21,23)(H,25,26)/t9-,10+,12+/s2" + - metFrom: "Recon3D" - !!omap - - id: valleuphe_c + - id: "valleuphe_c" - name: "Valyl-Leucyl-Phenylalanine" - - compartment: c - - formula: C20H31N3O4 + - compartment: "c" + - formula: "C20H31N3O4" - charge: 0 - - inchis: 1/C20H31N3O4/c1-12(2)10-15(22-19(25)17(21)13(3)4)18(24)23-16(20(26)27)11-14-8-6-5-7-9-14/h5-9,12-13,15-17H,10-11,21H2,1-4H3,(H,22,25)(H,23,24)(H,26,27)/t15-,16+,17+/s2 - - metFrom: Recon3D + - inchis: "1/C20H31N3O4/c1-12(2)10-15(22-19(25)17(21)13(3)4)18(24)23-16(20(26)27)11-14-8-6-5-7-9-14/h5-9,12-13,15-17H,10-11,21H2,1-4H3,(H,22,25)(H,23,24)(H,26,27)/t15-,16+,17+/s2" + - metFrom: "Recon3D" - !!omap - - id: vallystyr_c + - id: "vallystyr_c" - name: "Valyl-Lysyl-Tyrosine" - - compartment: c - - formula: C20H33N4O5 + - compartment: "c" + - formula: "C20H33N4O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: valphearg_c + - id: "valphearg_c" - name: "Valyl-Phenylalanyl-Arginine" - - compartment: c - - formula: C20H33N6O4 + - compartment: "c" + - formula: "C20H33N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: valprotrp_c + - id: "valprotrp_c" - name: "Valyl-Prolyl-Tryptophan" - - compartment: c - - formula: C21H28N4O4 + - compartment: "c" + - formula: "C21H28N4O4" - charge: 0 - - inchis: 1S/C21H28N4O4/c1-12(2)18(22)20(27)25-9-5-8-17(25)19(26)24-16(21(28)29)10-13-11-23-15-7-4-3-6-14(13)15/h3-4,6-7,11-12,16-18,23H,5,8-10,22H2,1-2H3,(H,24,26)(H,28,29)/t16-,17-,18-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C21H28N4O4/c1-12(2)18(22)20(27)25-9-5-8-17(25)19(26)24-16(21(28)29)10-13-11-23-15-7-4-3-6-14(13)15/h3-4,6-7,11-12,16-18,23H,5,8-10,22H2,1-2H3,(H,24,26)(H,28,29)/t16-,17-,18-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: valserarg_c + - id: "valserarg_c" - name: "Valyl-Seryl-Arginine" - - compartment: c - - formula: C14H29N6O5 + - compartment: "c" + - formula: "C14H29N6O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: valtrpphe_c + - id: "valtrpphe_c" - name: "Valyl-Tryptophanyl-Phenylalanine" - - compartment: c - - formula: C25H30N4O4 + - compartment: "c" + - formula: "C25H30N4O4" - charge: 0 - - inchis: 1/C25H30N4O4/c1-15(2)22(26)24(31)28-20(13-17-14-27-19-11-7-6-10-18(17)19)23(30)29-21(25(32)33)12-16-8-4-3-5-9-16/h3-11,14-15,20-22,27H,12-13,26H2,1-2H3,(H,28,31)(H,29,30)(H,32,33)/t20-,21+,22+/s2 - - metFrom: Recon3D + - inchis: "1/C25H30N4O4/c1-15(2)22(26)24(31)28-20(13-17-14-27-19-11-7-6-10-18(17)19)23(30)29-21(25(32)33)12-16-8-4-3-5-9-16/h3-11,14-15,20-22,27H,12-13,26H2,1-2H3,(H,28,31)(H,29,30)(H,32,33)/t20-,21+,22+/s2" + - metFrom: "Recon3D" - !!omap - - id: valtrpval_c + - id: "valtrpval_c" - name: "Valyl-Tryptophanyl-Valine" - - compartment: c - - formula: C21H30N4O4 + - compartment: "c" + - formula: "C21H30N4O4" - charge: 0 - - inchis: 1/C21H30N4O4/c1-11(2)17(22)20(27)24-16(19(26)25-18(12(3)4)21(28)29)9-13-10-23-15-8-6-5-7-14(13)15/h5-8,10-12,16-18,23H,9,22H2,1-4H3,(H,24,27)(H,25,26)(H,28,29)/t16-,17+,18+/s2 - - metFrom: Recon3D + - inchis: "1/C21H30N4O4/c1-11(2)17(22)20(27)24-16(19(26)25-18(12(3)4)21(28)29)9-13-10-23-15-8-6-5-7-14(13)15/h5-8,10-12,16-18,23H,9,22H2,1-4H3,(H,24,27)(H,25,26)(H,28,29)/t16-,17+,18+/s2" + - metFrom: "Recon3D" - !!omap - - id: valval_c + - id: "valval_c" - name: "Valyl-Valine" - - compartment: c - - formula: C10H20N2O3 + - compartment: "c" + - formula: "C10H20N2O3" - charge: 0 - - inchis: 1/C10H20N2O3/c1-5(2)7(11)9(13)12-8(6(3)4)10(14)15/h5-8H,11H2,1-4H3,(H,12,13)(H,14,15)/t7-,8+/s2 - - metFrom: Recon3D + - inchis: "1/C10H20N2O3/c1-5(2)7(11)9(13)12-8(6(3)4)10(14)15/h5-8H,11H2,1-4H3,(H,12,13)(H,14,15)/t7-,8+/s2" + - metFrom: "Recon3D" - !!omap - - id: trpglyasp_c + - id: "trpglyasp_c" - name: "Tryptophanyl-Glycyl-Aspartate" - - compartment: c - - formula: C17H19N4O6 + - compartment: "c" + - formula: "C17H19N4O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glyleu_c + - id: "glyleu_c" - name: "Glycylleucine" - - compartment: c - - formula: C8H16N2O3 + - compartment: "c" + - formula: "C8H16N2O3" - charge: 0 - - inchis: 1S/C8H16N2O3/c1-5(2)3-6(8(12)13)10-7(11)4-9/h5-6H,3-4,9H2,1-2H3,(H,10,11)(H,12,13)/t6-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C8H16N2O3/c1-5(2)3-6(8(12)13)10-7(11)4-9/h5-6H,3-4,9H2,1-2H3,(H,10,11)(H,12,13)/t6-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: xolest183_hs_c + - id: "xolest183_hs_c" - name: "1-Gamma-Linolenoyl-Cholesterol, Cholesterol-Ester (18:3, Delta 6, 9, 12)" - - compartment: c - - formula: C45H74O2 + - compartment: "c" + - formula: "C45H74O2" - charge: 0 - - inchis: 1S/C45H74O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-25-43(46)47-38-30-32-44(5)37(34-38)26-27-39-41-29-28-40(36(4)24-22-23-35(2)3)45(41,6)33-31-42(39)44/h11-12,14-15,17-18,26,35-36,38-42H,7-10,13,16,19-25,27-34H2,1-6H3/b12-11-,15-14-,18-17-/t36-,38+,39?,40?,41?,42?,44+,45-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C45H74O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-25-43(46)47-38-30-32-44(5)37(34-38)26-27-39-41-29-28-40(36(4)24-22-23-35(2)3)45(41,6)33-31-42(39)44/h11-12,14-15,17-18,26,35-36,38-42H,7-10,13,16,19-25,27-34H2,1-6H3/b12-11-,15-14-,18-17-/t36-,38+,39?,40?,41?,42?,44+,45-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: xolest182_hs_c + - id: "xolest182_hs_c" - name: "1-Linoleoyl-Cholesterol, Cholesterol-Ester (18:2, Delta 9, 12)" - - compartment: c - - formula: C45H76O2 + - compartment: "c" + - formula: "C45H76O2" - charge: 0 - - inchis: 1/C45H76O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-25-43(46)47-38-30-32-44(5)37(34-38)26-27-39-41-29-28-40(36(4)24-22-23-35(2)3)45(41,6)33-31-42(39)44/h11-12,14-15,26,35-36,38-42H,7-10,13,16-25,27-34H2,1-6H3/b12-11-,15-14+/t36-,38+,39+,40-,41+,42+,44+,45-/s2 - - metFrom: Recon3D + - inchis: "1/C45H76O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-25-43(46)47-38-30-32-44(5)37(34-38)26-27-39-41-29-28-40(36(4)24-22-23-35(2)3)45(41,6)33-31-42(39)44/h11-12,14-15,26,35-36,38-42H,7-10,13,16-25,27-34H2,1-6H3/b12-11-,15-14+/t36-,38+,39+,40-,41+,42+,44+,45-/s2" + - metFrom: "Recon3D" - !!omap - - id: xolest181_hs_c + - id: "xolest181_hs_c" - name: "1-Vaccenoyl-Cholesterol, Cholesterol-Ester (18:1, Delta 11)" - - compartment: c - - formula: C45H78O2 + - compartment: "c" + - formula: "C45H78O2" - charge: 0 - - inchis: 1/C45H78O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-25-43(46)47-38-30-32-44(5)37(34-38)26-27-39-41-29-28-40(36(4)24-22-23-35(2)3)45(41,6)33-31-42(39)44/h12-13,26,35-36,38-42H,7-11,14-25,27-34H2,1-6H3/b13-12+/t36-,38+,39+,40-,41+,42+,44+,45-/s2 - - metFrom: Recon3D + - inchis: "1/C45H78O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-25-43(46)47-38-30-32-44(5)37(34-38)26-27-39-41-29-28-40(36(4)24-22-23-35(2)3)45(41,6)33-31-42(39)44/h12-13,26,35-36,38-42H,7-11,14-25,27-34H2,1-6H3/b13-12+/t36-,38+,39+,40-,41+,42+,44+,45-/s2" + - metFrom: "Recon3D" - !!omap - - id: xolest205_hs_c + - id: "xolest205_hs_c" - name: "1-Timnodnoyl-Cholesterol, Cholesterol-Ester (20:5, Delta 5,8,11,14,17)" - - compartment: c - - formula: C47H74O2 + - compartment: "c" + - formula: "C47H74O2" - charge: 0 - - inchis: 1/C47H74O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-22-23-27-45(48)49-40-32-34-46(5)39(36-40)28-29-41-43-31-30-42(38(4)26-24-25-37(2)3)47(43,6)35-33-44(41)46/h8-9,11-12,14-15,17-18,20-21,28,37-38,40-44H,7,10,13,16,19,22-27,29-36H2,1-6H3/b9-8-,12-11-,15-14-,18-17-,21-20-/t38-,40+,41+,42-,43+,44+,46+,47-/s2 - - metFrom: Recon3D + - inchis: "1/C47H74O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-22-23-27-45(48)49-40-32-34-46(5)39(36-40)28-29-41-43-31-30-42(38(4)26-24-25-37(2)3)47(43,6)35-33-44(41)46/h8-9,11-12,14-15,17-18,20-21,28,37-38,40-44H,7,10,13,16,19,22-27,29-36H2,1-6H3/b9-8-,12-11-,15-14-,18-17-,21-20-/t38-,40+,41+,42-,43+,44+,46+,47-/s2" + - metFrom: "Recon3D" - !!omap - - id: xolest204_hs_c + - id: "xolest204_hs_c" - name: "Cholesteryl Arachidonate, Cholesterol-Ester (20:4, Delta 5,8,11,14)" - - compartment: c - - formula: C47H76O2 + - compartment: "c" + - formula: "C47H76O2" - charge: 0 - - inchis: 1S/C47H76O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-22-23-27-45(48)49-40-32-34-46(5)39(36-40)28-29-41-43-31-30-42(38(4)26-24-25-37(2)3)47(43,6)35-33-44(41)46/h11-12,14-15,17-18,20-21,28,37-38,40-44H,7-10,13,16,19,22-27,29-36H2,1-6H3/b12-11-,15-14-,18-17-,21-20-/t38-,40+,41+,42-,43+,44+,46+,47-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C47H76O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-22-23-27-45(48)49-40-32-34-46(5)39(36-40)28-29-41-43-31-30-42(38(4)26-24-25-37(2)3)47(43,6)35-33-44(41)46/h11-12,14-15,17-18,20-21,28,37-38,40-44H,7-10,13,16,19,22-27,29-36H2,1-6H3/b12-11-,15-14-,18-17-,21-20-/t38-,40+,41+,42-,43+,44+,46+,47-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: xolest226_hs_c + - id: "xolest226_hs_c" - name: "Cholesteryl Docosahexanoate, Cholesterol-Ester (22:6, Delta 4,7,10,13,16,19)" - - compartment: c - - formula: C49H76O2 + - compartment: "c" + - formula: "C49H76O2" - charge: 0 - - inchis: 1S/C49H76O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-22-23-24-25-29-47(50)51-42-34-36-48(5)41(38-42)30-31-43-45-33-32-44(40(4)28-26-27-39(2)3)49(45,6)37-35-46(43)48/h8-9,11-12,14-15,17-18,20-21,23-24,30,39-40,42-46H,7,10,13,16,19,22,25-29,31-38H2,1-6H3/b9-8+,12-11+,15-14+,18-17+,21-20+,24-23-/t40-,42+,43+,44-,45+,46+,48+,49-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C49H76O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-22-23-24-25-29-47(50)51-42-34-36-48(5)41(38-42)30-31-43-45-33-32-44(40(4)28-26-27-39(2)3)49(45,6)37-35-46(43)48/h8-9,11-12,14-15,17-18,20-21,23-24,30,39-40,42-46H,7,10,13,16,19,22,25-29,31-38H2,1-6H3/b9-8+,12-11+,15-14+,18-17+,21-20+,24-23-/t40-,42+,43+,44-,45+,46+,48+,49-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m02908s + - id: "m02908s" - name: "SM pool" - - compartment: s - - formula: C23H48N2O5PRCO + - compartment: "s" + - formula: "C23H48N2O5PRCO" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hxa_s + - id: "hxa_s" - name: "Hexanoate (N-C6:0)" - - compartment: s - - formula: C6H11O2 + - compartment: "s" + - formula: "C6H11O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01954c + - id: "m01954c" - name: "glcnac-alpha-1,4-core 1" - - compartment: c - - formula: C22H37N2O15X + - compartment: "c" + - formula: "C22H37N2O15X" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01954s + - id: "m01954s" - name: "glcnac-alpha-1,4-core 1" - - compartment: s - - formula: C22H37N2O15X + - compartment: "s" + - formula: "C22H37N2O15X" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: Lhcystin_c + - id: "Lhcystin_c" - name: "L-Homocystine" - - compartment: c - - formula: C8H16N2O4S2 + - compartment: "c" + - formula: "C8H16N2O4S2" - charge: 0 - - inchis: 1/C8H16N2O4S2/c9-5(7(11)12)1-3-15-16-4-2-6(10)8(13)14/h5-6H,1-4,9-10H2,(H,11,12)(H,13,14)/t5-,6?/s2 - - metFrom: Recon3D + - inchis: "1/C8H16N2O4S2/c9-5(7(11)12)1-3-15-16-4-2-6(10)8(13)14/h5-6H,1-4,9-10H2,(H,11,12)(H,13,14)/t5-,6?/s2" + - metFrom: "Recon3D" - !!omap - - id: Lhcystin_s + - id: "Lhcystin_s" - name: "L-Homocystine" - - compartment: s - - formula: C8H16N2O4S2 + - compartment: "s" + - formula: "C8H16N2O4S2" - charge: 0 - - inchis: 1/C8H16N2O4S2/c9-5(7(11)12)1-3-15-16-4-2-6(10)8(13)14/h5-6H,1-4,9-10H2,(H,11,12)(H,13,14)/t5-,6?/s2 - - metFrom: Recon3D + - inchis: "1/C8H16N2O4S2/c9-5(7(11)12)1-3-15-16-4-2-6(10)8(13)14/h5-6H,1-4,9-10H2,(H,11,12)(H,13,14)/t5-,6?/s2" + - metFrom: "Recon3D" - !!omap - - id: m02543s + - id: "m02543s" - name: "N-acetylneuraminate" - - compartment: s - - formula: C11H18NO9 + - compartment: "s" + - formula: "C11H18NO9" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: band_c + - id: "band_c" - name: "Band Membrane Protein (Universal, Erythrocyte --> 2.1,3,4.1)" - - compartment: c - - formula: BaH + - compartment: "c" + - formula: "BaH" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: bandmt_c + - id: "bandmt_c" - name: "Band Membrane Protein (Methylated, Universal, Erythrocyte -> 2.1,3,4.1)" - - compartment: c - - formula: BaCH3 + - compartment: "c" + - formula: "BaCH3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: dhmtp_c + - id: "dhmtp_c" - name: "1,2-Dihydroxy-5-(Methylthio)Pent-1-En-3-One" - - compartment: c - - formula: C6H9O3S + - compartment: "c" + - formula: "C6H9O3S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02525s + - id: "m02525s" - name: "N-acetylgalactosamine" - - compartment: s - - formula: C8H15NO6 + - compartment: "s" + - formula: "C8H15NO6" - charge: 0 - - inchis: 1S/C8H15NO6/c1-3(11)9-5-7(13)6(12)4(2-10)15-8(5)14/h4-8,10,12-14H,2H2,1H3,(H,9,11)/t4-,5-,6+,7-,8?/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C8H15NO6/c1-3(11)9-5-7(13)6(12)4(2-10)15-8(5)14/h4-8,10,12-14H,2H2,1H3,(H,9,11)/t4-,5-,6+,7-,8?/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m01609s + - id: "m01609s" - name: "core 4" - - compartment: s - - formula: C24H40N3O15X + - compartment: "s" + - formula: "C24H40N3O15X" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: galam_s + - id: "galam_s" - name: "D-Galactosamine" - - compartment: s - - formula: C6H13NO5 + - compartment: "s" + - formula: "C6H13NO5" - charge: 0 - - inchis: 1S/C6H13NO5/c7-3-5(10)4(9)2(1-8)12-6(3)11/h2-6,8-11H,1,7H2/t2-,3-,4+,5-,6?/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C6H13NO5/c7-3-5(10)4(9)2(1-8)12-6(3)11/h2-6,8-11H,1,7H2/t2-,3-,4+,5-,6?/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: galam_c + - id: "galam_c" - name: "D-Galactosamine" - - compartment: c - - formula: C6H13NO5 + - compartment: "c" + - formula: "C6H13NO5" - charge: 0 - - inchis: 1S/C6H13NO5/c7-3-5(10)4(9)2(1-8)12-6(3)11/h2-6,8-11H,1,7H2/t2-,3-,4+,5-,6?/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C6H13NO5/c7-3-5(10)4(9)2(1-8)12-6(3)11/h2-6,8-11H,1,7H2/t2-,3-,4+,5-,6?/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: mqn10_c + - id: "mqn10_c" - name: "Menaquinone-10" - - compartment: c - - formula: C61H88O2 + - compartment: "c" + - formula: "C61H88O2" - charge: 0 - - inchis: 1S/C61H88O2/c1-46(2)24-15-25-47(3)26-16-27-48(4)28-17-29-49(5)30-18-31-50(6)32-19-33-51(7)34-20-35-52(8)36-21-37-53(9)38-22-39-54(10)40-23-41-55(11)44-45-57-56(12)60(62)58-42-13-14-43-59(58)61(57)63/h13-14,24,26,28,30,32,34,36,38,40,42-44H,15-23,25,27,29,31,33,35,37,39,41,45H2,1-12H3 - - metFrom: Recon3D + - inchis: "1S/C61H88O2/c1-46(2)24-15-25-47(3)26-16-27-48(4)28-17-29-49(5)30-18-31-50(6)32-19-33-51(7)34-20-35-52(8)36-21-37-53(9)38-22-39-54(10)40-23-41-55(11)44-45-57-56(12)60(62)58-42-13-14-43-59(58)61(57)63/h13-14,24,26,28,30,32,34,36,38,40,42-44H,15-23,25,27,29,31,33,35,37,39,41,45H2,1-12H3" + - metFrom: "Recon3D" - !!omap - - id: mqn10_s + - id: "mqn10_s" - name: "Menaquinone-10" - - compartment: s - - formula: C61H88O2 + - compartment: "s" + - formula: "C61H88O2" - charge: 0 - - inchis: 1S/C61H88O2/c1-46(2)24-15-25-47(3)26-16-27-48(4)28-17-29-49(5)30-18-31-50(6)32-19-33-51(7)34-20-35-52(8)36-21-37-53(9)38-22-39-54(10)40-23-41-55(11)44-45-57-56(12)60(62)58-42-13-14-43-59(58)61(57)63/h13-14,24,26,28,30,32,34,36,38,40,42-44H,15-23,25,27,29,31,33,35,37,39,41,45H2,1-12H3 - - metFrom: Recon3D + - inchis: "1S/C61H88O2/c1-46(2)24-15-25-47(3)26-16-27-48(4)28-17-29-49(5)30-18-31-50(6)32-19-33-51(7)34-20-35-52(8)36-21-37-53(9)38-22-39-54(10)40-23-41-55(11)44-45-57-56(12)60(62)58-42-13-14-43-59(58)61(57)63/h13-14,24,26,28,30,32,34,36,38,40,42-44H,15-23,25,27,29,31,33,35,37,39,41,45H2,1-12H3" + - metFrom: "Recon3D" - !!omap - - id: mqn11_c + - id: "mqn11_c" - name: "Menaquinone-11" - - compartment: c - - formula: C66H96O2 + - compartment: "c" + - formula: "C66H96O2" - charge: 0 - - inchis: 1S/C66H96O2/c1-50(2)26-16-27-51(3)28-17-29-52(4)30-18-31-53(5)32-19-33-54(6)34-20-35-55(7)36-21-37-56(8)38-22-39-57(9)40-23-41-58(10)42-24-43-59(11)44-25-45-60(12)48-49-62-61(13)65(67)63-46-14-15-47-64(63)66(62)68/h14-15,26,28,30,32,34,36,38,40,42,44,46-48H,16-25,27,29,31,33,35,37,39,41,43,45,49H2,1-13H3 - - metFrom: Recon3D + - inchis: "1S/C66H96O2/c1-50(2)26-16-27-51(3)28-17-29-52(4)30-18-31-53(5)32-19-33-54(6)34-20-35-55(7)36-21-37-56(8)38-22-39-57(9)40-23-41-58(10)42-24-43-59(11)44-25-45-60(12)48-49-62-61(13)65(67)63-46-14-15-47-64(63)66(62)68/h14-15,26,28,30,32,34,36,38,40,42,44,46-48H,16-25,27,29,31,33,35,37,39,41,43,45,49H2,1-13H3" + - metFrom: "Recon3D" - !!omap - - id: mqn11_s + - id: "mqn11_s" - name: "Menaquinone-11" - - compartment: s - - formula: C66H96O2 + - compartment: "s" + - formula: "C66H96O2" - charge: 0 - - inchis: 1S/C66H96O2/c1-50(2)26-16-27-51(3)28-17-29-52(4)30-18-31-53(5)32-19-33-54(6)34-20-35-55(7)36-21-37-56(8)38-22-39-57(9)40-23-41-58(10)42-24-43-59(11)44-25-45-60(12)48-49-62-61(13)65(67)63-46-14-15-47-64(63)66(62)68/h14-15,26,28,30,32,34,36,38,40,42,44,46-48H,16-25,27,29,31,33,35,37,39,41,43,45,49H2,1-13H3 - - metFrom: Recon3D + - inchis: "1S/C66H96O2/c1-50(2)26-16-27-51(3)28-17-29-52(4)30-18-31-53(5)32-19-33-54(6)34-20-35-55(7)36-21-37-56(8)38-22-39-57(9)40-23-41-58(10)42-24-43-59(11)44-25-45-60(12)48-49-62-61(13)65(67)63-46-14-15-47-64(63)66(62)68/h14-15,26,28,30,32,34,36,38,40,42,44,46-48H,16-25,27,29,31,33,35,37,39,41,43,45,49H2,1-13H3" + - metFrom: "Recon3D" - !!omap - - id: mqn7_c + - id: "mqn7_c" - name: "Menaquinone-7" - - compartment: c - - formula: C46H64O2 + - compartment: "c" + - formula: "C46H64O2" - charge: 0 - - inchis: 1S/C46H64O2/c1-34(2)18-12-19-35(3)20-13-21-36(4)22-14-23-37(5)24-15-25-38(6)26-16-27-39(7)28-17-29-40(8)32-33-42-41(9)45(47)43-30-10-11-31-44(43)46(42)48/h10-11,18,20,22,24,26,28,30-32H,12-17,19,21,23,25,27,29,33H2,1-9H3/b35-20+,36-22+,37-24+,38-26+,39-28+,40-32+ - - metFrom: Recon3D + - inchis: "1S/C46H64O2/c1-34(2)18-12-19-35(3)20-13-21-36(4)22-14-23-37(5)24-15-25-38(6)26-16-27-39(7)28-17-29-40(8)32-33-42-41(9)45(47)43-30-10-11-31-44(43)46(42)48/h10-11,18,20,22,24,26,28,30-32H,12-17,19,21,23,25,27,29,33H2,1-9H3/b35-20+,36-22+,37-24+,38-26+,39-28+,40-32+" + - metFrom: "Recon3D" - !!omap - - id: mqn7_s + - id: "mqn7_s" - name: "Menaquinone-7" - - compartment: s - - formula: C46H64O2 + - compartment: "s" + - formula: "C46H64O2" - charge: 0 - - inchis: 1S/C46H64O2/c1-34(2)18-12-19-35(3)20-13-21-36(4)22-14-23-37(5)24-15-25-38(6)26-16-27-39(7)28-17-29-40(8)32-33-42-41(9)45(47)43-30-10-11-31-44(43)46(42)48/h10-11,18,20,22,24,26,28,30-32H,12-17,19,21,23,25,27,29,33H2,1-9H3/b35-20+,36-22+,37-24+,38-26+,39-28+,40-32+ - - metFrom: Recon3D + - inchis: "1S/C46H64O2/c1-34(2)18-12-19-35(3)20-13-21-36(4)22-14-23-37(5)24-15-25-38(6)26-16-27-39(7)28-17-29-40(8)32-33-42-41(9)45(47)43-30-10-11-31-44(43)46(42)48/h10-11,18,20,22,24,26,28,30-32H,12-17,19,21,23,25,27,29,33H2,1-9H3/b35-20+,36-22+,37-24+,38-26+,39-28+,40-32+" + - metFrom: "Recon3D" - !!omap - - id: mqn9_c + - id: "mqn9_c" - name: "Menaquinone-9" - - compartment: c - - formula: C56H80O2 + - compartment: "c" + - formula: "C56H80O2" - charge: 0 - - inchis: 1S/C56H80O2/c1-42(2)22-14-23-43(3)24-15-25-44(4)26-16-27-45(5)28-17-29-46(6)30-18-31-47(7)32-19-33-48(8)34-20-35-49(9)36-21-37-50(10)40-41-52-51(11)55(57)53-38-12-13-39-54(53)56(52)58/h12-13,22,24,26,28,30,32,34,36,38-40H,14-21,23,25,27,29,31,33,35,37,41H2,1-11H3/b43-24+,44-26+,45-28+,46-30+,47-32+,48-34+,49-36+,50-40+ - - metFrom: Recon3D + - inchis: "1S/C56H80O2/c1-42(2)22-14-23-43(3)24-15-25-44(4)26-16-27-45(5)28-17-29-46(6)30-18-31-47(7)32-19-33-48(8)34-20-35-49(9)36-21-37-50(10)40-41-52-51(11)55(57)53-38-12-13-39-54(53)56(52)58/h12-13,22,24,26,28,30,32,34,36,38-40H,14-21,23,25,27,29,31,33,35,37,41H2,1-11H3/b43-24+,44-26+,45-28+,46-30+,47-32+,48-34+,49-36+,50-40+" + - metFrom: "Recon3D" - !!omap - - id: mqn9_s + - id: "mqn9_s" - name: "Menaquinone-9" - - compartment: s - - formula: C56H80O2 + - compartment: "s" + - formula: "C56H80O2" - charge: 0 - - inchis: 1S/C56H80O2/c1-42(2)22-14-23-43(3)24-15-25-44(4)26-16-27-45(5)28-17-29-46(6)30-18-31-47(7)32-19-33-48(8)34-20-35-49(9)36-21-37-50(10)40-41-52-51(11)55(57)53-38-12-13-39-54(53)56(52)58/h12-13,22,24,26,28,30,32,34,36,38-40H,14-21,23,25,27,29,31,33,35,37,41H2,1-11H3/b43-24+,44-26+,45-28+,46-30+,47-32+,48-34+,49-36+,50-40+ - - metFrom: Recon3D + - inchis: "1S/C56H80O2/c1-42(2)22-14-23-43(3)24-15-25-44(4)26-16-27-45(5)28-17-29-46(6)30-18-31-47(7)32-19-33-48(8)34-20-35-49(9)36-21-37-50(10)40-41-52-51(11)55(57)53-38-12-13-39-54(53)56(52)58/h12-13,22,24,26,28,30,32,34,36,38-40H,14-21,23,25,27,29,31,33,35,37,41H2,1-11H3/b43-24+,44-26+,45-28+,46-30+,47-32+,48-34+,49-36+,50-40+" + - metFrom: "Recon3D" - !!omap - - id: m01651s + - id: "m01651s" - name: "de-Fuc form of PA6 (wo peptide linkage)" - - compartment: s - - formula: C84H136N6O62 + - compartment: "s" + - formula: "C84H136N6O62" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01801s + - id: "m01801s" - name: "F1alpha" - - compartment: s - - formula: C22H37N2O15X + - compartment: "s" + - formula: "C22H37N2O15X" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02393s + - id: "m02393s" - name: "lipoamide" - - compartment: s - - formula: C8H15NOS2 + - compartment: "s" + - formula: "C8H15NOS2" - charge: 0 - - inchis: 1/C8H15NOS2/c9-8(10)4-2-1-3-7-5-6-11-12-7/h7H,1-6H2,(H2,9,10) - - metFrom: Recon3D + - inchis: "1/C8H15NOS2/c9-8(10)4-2-1-3-7-5-6-11-12-7/h7H,1-6H2,(H2,9,10)" + - metFrom: "Recon3D" - !!omap - - id: m02393c + - id: "m02393c" - name: "lipoamide" - - compartment: c - - formula: C8H15NOS2 + - compartment: "c" + - formula: "C8H15NOS2" - charge: 0 - - inchis: 1/C8H15NOS2/c9-8(10)4-2-1-3-7-5-6-11-12-7/h7H,1-6H2,(H2,9,10) - - metFrom: Recon3D + - inchis: "1/C8H15NOS2/c9-8(10)4-2-1-3-7-5-6-11-12-7/h7H,1-6H2,(H2,9,10)" + - metFrom: "Recon3D" - !!omap - - id: m02654s + - id: "m02654s" - name: "O-methylhippurate" - - compartment: s - - formula: C10H10NO3 + - compartment: "s" + - formula: "C10H10NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: mqn8_c + - id: "mqn8_c" - name: "Menaquinone-8" - - compartment: c - - formula: C51H72O2 + - compartment: "c" + - formula: "C51H72O2" - charge: 0 - - inchis: 1S/C51H72O2/c1-38(2)20-13-21-39(3)22-14-23-40(4)24-15-25-41(5)26-16-27-42(6)28-17-29-43(7)30-18-31-44(8)32-19-33-45(9)36-37-47-46(10)50(52)48-34-11-12-35-49(48)51(47)53/h11-12,20,22,24,26,28,30,32,34-36H,13-19,21,23,25,27,29,31,33,37H2,1-10H3 - - metFrom: Recon3D + - inchis: "1S/C51H72O2/c1-38(2)20-13-21-39(3)22-14-23-40(4)24-15-25-41(5)26-16-27-42(6)28-17-29-43(7)30-18-31-44(8)32-19-33-45(9)36-37-47-46(10)50(52)48-34-11-12-35-49(48)51(47)53/h11-12,20,22,24,26,28,30,32,34-36H,13-19,21,23,25,27,29,31,33,37H2,1-10H3" + - metFrom: "Recon3D" - !!omap - - id: m01991s + - id: "m01991s" - name: "glycogenin G4G4" - - compartment: s - - formula: C1827H2805N455O568S14 + - compartment: "s" + - formula: "C1827H2805N455O568S14" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00758s + - id: "m00758s" - name: "3alpha,7alpha-dihydroxy-5beta-cholestanate" - - compartment: s - - formula: C27H45O4 + - compartment: "s" + - formula: "C27H45O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00752s + - id: "m00752s" - name: "3alpha,7alpha,12alpha-trihydroxy-5beta-cholestanate" - - compartment: s - - formula: C27H45O5 + - compartment: "s" + - formula: "C27H45O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01093s + - id: "m01093s" - name: "5beta-cholestane-3alpha,7alpha,26-triol" - - compartment: s - - formula: C27H48O3 + - compartment: "s" + - formula: "C27H48O3" - charge: 0 - - inchis: 1/C27H48O3/c1-17(16-28)6-5-7-18(2)21-8-9-22-25-23(11-13-27(21,22)4)26(3)12-10-20(29)14-19(26)15-24(25)30/h17-25,28-30H,5-16H2,1-4H3/t17?,18-,19+,20-,21-,22+,23+,24-,25+,26+,27-/s2 - - metFrom: Recon3D + - inchis: "1/C27H48O3/c1-17(16-28)6-5-7-18(2)21-8-9-22-25-23(11-13-27(21,22)4)26(3)12-10-20(29)14-19(26)15-24(25)30/h17-25,28-30H,5-16H2,1-4H3/t17?,18-,19+,20-,21-,22+,23+,24-,25+,26+,27-/s2" + - metFrom: "Recon3D" - !!omap - - id: m01182s + - id: "m01182s" - name: "7alpha-hydroxycholest-4-en-3-one" - - compartment: s - - formula: C27H44O2 + - compartment: "s" + - formula: "C27H44O2" - charge: 0 - - inchis: 1S/C27H44O2/c1-17(2)7-6-8-18(3)21-9-10-22-25-23(12-14-27(21,22)5)26(4)13-11-20(28)15-19(26)16-24(25)29/h15,17-18,21-25,29H,6-14,16H2,1-5H3/t18-,21-,22+,23+,24-,25+,26+,27-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C27H44O2/c1-17(2)7-6-8-18(3)21-9-10-22-25-23(12-14-27(21,22)5)26(4)13-11-20(28)15-19(26)16-24(25)29/h15,17-18,21-25,29H,6-14,16H2,1-5H3/t18-,21-,22+,23+,24-,25+,26+,27-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m01178s + - id: "m01178s" - name: "7alpha,12alpha-dihydroxycholest-4-en-3-one" - - compartment: s - - formula: C27H44O3 + - compartment: "s" + - formula: "C27H44O3" - charge: 0 - - inchis: 1S/C27H44O3/c1-16(2)7-6-8-17(3)20-9-10-21-25-22(15-24(30)27(20,21)5)26(4)12-11-19(28)13-18(26)14-23(25)29/h13,16-17,20-25,29-30H,6-12,14-15H2,1-5H3/t17-,20-,21+,22+,23-,24+,25+,26+,27-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C27H44O3/c1-16(2)7-6-8-17(3)20-9-10-21-25-22(15-24(30)27(20,21)5)26(4)12-11-19(28)13-18(26)14-23(25)29/h13,16-17,20-25,29-30H,6-12,14-15H2,1-5H3/t17-,20-,21+,22+,23-,24+,25+,26+,27-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: 7klitchol_s + - id: "7klitchol_s" - name: "7-Ketolithocholate" - - compartment: s - - formula: C24H37O4 + - compartment: "s" + - formula: "C24H37O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00671s + - id: "m00671s" - name: "2-oxobutyrate" - - compartment: s - - formula: C4H5O3 + - compartment: "s" + - formula: "C4H5O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glutar_s + - id: "glutar_s" - name: "Glutarate" - - compartment: s - - formula: C5H6O4 + - compartment: "s" + - formula: "C5H6O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01683s + - id: "m01683s" - name: "D-gluconic acid" - - compartment: s - - formula: C6H11O7 + - compartment: "s" + - formula: "C6H11O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02358c + - id: "m02358c" - name: "L-erythro-4-hydroxyglutamate" - - compartment: c - - formula: C5H8NO5 + - compartment: "c" + - formula: "C5H8NO5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00989c + - id: "m00989c" - name: "4-hydroxy-2-oxoglutarate" - - compartment: c - - formula: C5H4O6 + - compartment: "c" + - formula: "C5H4O6" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glyleu_s + - id: "glyleu_s" - name: "Glycylleucine" - - compartment: s - - formula: C8H16N2O3 + - compartment: "s" + - formula: "C8H16N2O3" - charge: 0 - - inchis: 1S/C8H16N2O3/c1-5(2)3-6(8(12)13)10-7(11)4-9/h5-6H,3-4,9H2,1-2H3,(H,10,11)(H,12,13)/t6-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C8H16N2O3/c1-5(2)3-6(8(12)13)10-7(11)4-9/h5-6H,3-4,9H2,1-2H3,(H,10,11)(H,12,13)/t6-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: ggdp_c + - id: "ggdp_c" - name: "2-Trans,6-Trans,10-Trans-Geranylgeranyl Diphosphate" - - compartment: c - - formula: C20H33O7P2 + - compartment: "c" + - formula: "C20H33O7P2" - charge: -3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01681s + - id: "m01681s" - name: "D-glucarate" - - compartment: s - - formula: C6H8O8 + - compartment: "s" + - formula: "C6H8O8" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2mcacn_c + - id: "2mcacn_c" - name: "(Z)-But-2-Ene-1,2,3-Tricarboxylate" - - compartment: c - - formula: C7H5O6 + - compartment: "c" + - formula: "C7H5O6" - charge: -3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: micit_c + - id: "micit_c" - name: "(2S,3R)-3-Hydroxybutane-1,2,3-Tricarboxylate" - - compartment: c - - formula: C7H7O7 + - compartment: "c" + - formula: "C7H7O7" - charge: -3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00995s + - id: "m00995s" - name: "4-hydroxybenzoate" - - compartment: s - - formula: C7H5O3 + - compartment: "s" + - formula: "C7H5O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00729s + - id: "m00729s" - name: "3,4-dihydroxyphenylacetate" - - compartment: s - - formula: C8H7O4 + - compartment: "s" + - formula: "C8H7O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: mqn8_s + - id: "mqn8_s" - name: "Menaquinone-8" - - compartment: s - - formula: C51H72O2 + - compartment: "s" + - formula: "C51H72O2" - charge: 0 - - inchis: 1S/C51H72O2/c1-38(2)20-13-21-39(3)22-14-23-40(4)24-15-25-41(5)26-16-27-42(6)28-17-29-43(7)30-18-31-44(8)32-19-33-45(9)36-37-47-46(10)50(52)48-34-11-12-35-49(48)51(47)53/h11-12,20,22,24,26,28,30,32,34-36H,13-19,21,23,25,27,29,31,33,37H2,1-10H3 - - metFrom: Recon3D + - inchis: "1S/C51H72O2/c1-38(2)20-13-21-39(3)22-14-23-40(4)24-15-25-41(5)26-16-27-42(6)28-17-29-43(7)30-18-31-44(8)32-19-33-45(9)36-37-47-46(10)50(52)48-34-11-12-35-49(48)51(47)53/h11-12,20,22,24,26,28,30,32,34-36H,13-19,21,23,25,27,29,31,33,37H2,1-10H3" + - metFrom: "Recon3D" - !!omap - - id: ch4s_s + - id: "ch4s_s" - name: "Methanethiol" - - compartment: s - - formula: CH4S + - compartment: "s" + - formula: "CH4S" - charge: 0 - - inchis: 1S/CH4S/c1-2/h2H,1H3 - - metFrom: Recon3D + - inchis: "1S/CH4S/c1-2/h2H,1H3" + - metFrom: "Recon3D" - !!omap - - id: m02725s + - id: "m02725s" - name: "phenylpyruvate" - - compartment: s - - formula: C9H7O3 + - compartment: "s" + - formula: "C9H7O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m03099s + - id: "m03099s" - name: "tyramine" - - compartment: s - - formula: C8H12NO + - compartment: "s" + - formula: "C8H12NO" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00654s + - id: "m00654s" - name: "2-hydroxyphenylacetate" - - compartment: s - - formula: C8H7O3 + - compartment: "s" + - formula: "C8H7O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02336s + - id: "m02336s" - name: "lanosterol" - - compartment: s - - formula: C30H50O + - compartment: "s" + - formula: "C30H50O" - charge: 0 - - inchis: 1S/C30H50O/c1-20(2)10-9-11-21(3)22-14-18-30(8)24-12-13-25-27(4,5)26(31)16-17-28(25,6)23(24)15-19-29(22,30)7/h10,21-22,25-26,31H,9,11-19H2,1-8H3/t21-,22-,25+,26+,28-,29-,30+/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C30H50O/c1-20(2)10-9-11-21(3)22-14-18-30(8)24-12-13-25-27(4,5)26(31)16-17-28(25,6)23(24)15-19-29(22,30)7/h10,21-22,25-26,31H,9,11-19H2,1-8H3/t21-,22-,25+,26+,28-,29-,30+/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m03136s + - id: "m03136s" - name: "vanillylmandelate" - - compartment: s - - formula: C9H9O5 + - compartment: "s" + - formula: "C9H9O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02007s + - id: "m02007s" - name: "glyoxalate" - - compartment: s - - formula: C2H1O3 + - compartment: "s" + - formula: "C2H1O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00664c + - id: "m00664c" - name: "2-methylbutyrylglycine" - - compartment: c - - formula: C7H12NO3 + - compartment: "c" + - formula: "C7H12NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00664s + - id: "m00664s" - name: "2-methylbutyrylglycine" - - compartment: s - - formula: C7H12NO3 + - compartment: "s" + - formula: "C7H12NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00825c + - id: "m00825c" - name: "3-methylcrotonoylglycine" - - compartment: c - - formula: C7H10NO3 + - compartment: "c" + - formula: "C7H10NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00825s + - id: "m00825s" - name: "3-methylcrotonoylglycine" - - compartment: s - - formula: C7H10NO3 + - compartment: "s" + - formula: "C7H10NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02190c + - id: "m02190c" - name: "isovalerylglycine" - - compartment: c - - formula: C7H12NO3 + - compartment: "c" + - formula: "C7H12NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02190s + - id: "m02190s" - name: "isovalerylglycine" - - compartment: s - - formula: C7H12NO3 + - compartment: "s" + - formula: "C7H12NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: actyr_m + - id: "actyr_m" - name: "N-Acetyl-Tyrosine" - - compartment: m - - formula: C11H12NO4 + - compartment: "m" + - formula: "C11H12NO4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: actyr_c + - id: "actyr_c" - name: "N-Acetyl-Tyrosine" - - compartment: c - - formula: C11H12NO4 + - compartment: "c" + - formula: "C11H12NO4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: actyr_s + - id: "actyr_s" - name: "N-Acetyl-Tyrosine" - - compartment: s - - formula: C11H12NO4 + - compartment: "s" + - formula: "C11H12NO4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sucacetat_c + - id: "sucacetat_c" - name: "Succinyl-Acetoacetate" - - compartment: c - - formula: C8H8O6 + - compartment: "c" + - formula: "C8H8O6" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sucaceto_c + - id: "sucaceto_c" - name: "Succinylacetone" - - compartment: c - - formula: C7H9O4 + - compartment: "c" + - formula: "C7H9O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sucaceto_s + - id: "sucaceto_s" - name: "Succinylacetone" - - compartment: s - - formula: C7H9O4 + - compartment: "s" + - formula: "C7H9O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: vanilpyr_c + - id: "vanilpyr_c" - name: "Vanilpyruvic Acid" - - compartment: c - - formula: C10H9O5 + - compartment: "c" + - formula: "C10H9O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: vanillac_c + - id: "vanillac_c" - name: "Vanil-Lactate" - - compartment: c - - formula: C10H11O5 + - compartment: "c" + - formula: "C10H11O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00830m + - id: "m00830m" - name: "3-O-methyldopa" - - compartment: m - - formula: C10H13NO4 + - compartment: "m" + - formula: "C10H13NO4" - charge: 0 - - inchis: 1/C10H13NO4/c1-15-9-5-6(2-3-8(9)12)4-7(11)10(13)14/h2-3,5,7,12H,4,11H2,1H3,(H,13,14) - - metFrom: Recon3D + - inchis: "1/C10H13NO4/c1-15-9-5-6(2-3-8(9)12)4-7(11)10(13)14/h2-3,5,7,12H,4,11H2,1H3,(H,13,14)" + - metFrom: "Recon3D" - !!omap - - id: nacvanala_m + - id: "nacvanala_m" - name: "N-Acetylvanilalanine" - - compartment: m - - formula: C12H14NO5 + - compartment: "m" + - formula: "C12H14NO5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: nacvanala_c + - id: "nacvanala_c" - name: "N-Acetylvanilalanine" - - compartment: c - - formula: C12H14NO5 + - compartment: "c" + - formula: "C12H14NO5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: nacvanala_s + - id: "nacvanala_s" - name: "N-Acetylvanilalanine" - - compartment: s - - formula: C12H14NO5 + - compartment: "s" + - formula: "C12H14NO5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: vanillac_s + - id: "vanillac_s" - name: "Vanil-Lactate" - - compartment: s - - formula: C10H11O5 + - compartment: "s" + - formula: "C10H11O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2h3mv_c + - id: "2h3mv_c" - name: "2-Hydroxy-3-Methyl-Valerate" - - compartment: c - - formula: C6H11O3 + - compartment: "c" + - formula: "C6H11O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2h3mv_s + - id: "2h3mv_s" - name: "2-Hydroxy-3-Methyl-Valerate" - - compartment: s - - formula: C6H11O3 + - compartment: "s" + - formula: "C6H11O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2hiv_c + - id: "2hiv_c" - name: "2-Hydroxy-Isovalerate" - - compartment: c - - formula: C5H9O3 + - compartment: "c" + - formula: "C5H9O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2hiv_s + - id: "2hiv_s" - name: "2-Hydroxy-Isovalerate" - - compartment: s - - formula: C5H9O3 + - compartment: "s" + - formula: "C5H9O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2m3hbu_m + - id: "2m3hbu_m" - name: "2-Methyl-3-Hydroxy-Butyrate" - - compartment: m - - formula: C5H9O3 + - compartment: "m" + - formula: "C5H9O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2m3hbu_c + - id: "2m3hbu_c" - name: "2-Methyl-3-Hydroxy-Butyrate" - - compartment: c - - formula: C5H9O3 + - compartment: "c" + - formula: "C5H9O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2m3hbu_s + - id: "2m3hbu_s" - name: "2-Methyl-3-Hydroxy-Butyrate" - - compartment: s - - formula: C5H9O3 + - compartment: "s" + - formula: "C5H9O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2m3ovcoa_m + - id: "2m3ovcoa_m" - name: "2-Methyl-3-Oxo-Valeryl Coenzyme A" - - compartment: m - - formula: C27H40N7O18P3S + - compartment: "m" + - formula: "C27H40N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2m3ovac_m + - id: "2m3ovac_m" - name: "2-Methyl-3-Oxo-Valerate" - - compartment: m - - formula: C6H9O3 + - compartment: "m" + - formula: "C6H9O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2m3ovac_c + - id: "2m3ovac_c" - name: "2-Methyl-3-Oxo-Valerate" - - compartment: c - - formula: C6H9O3 + - compartment: "c" + - formula: "C6H9O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2m3hvac_c + - id: "2m3hvac_c" - name: "2-Methyl-3-Hydroxy-Valerate" - - compartment: c - - formula: C6H11O3 + - compartment: "c" + - formula: "C6H11O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2m3hvac_s + - id: "2m3hvac_s" - name: "2-Methyl-3-Hydroxy-Valerate" - - compartment: s - - formula: C6H11O3 + - compartment: "s" + - formula: "C6H11O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3h3mglt_c + - id: "3h3mglt_c" - name: "3-Hydroxy-3-Methyl-Glutarate" - - compartment: c - - formula: C6H8O5 + - compartment: "c" + - formula: "C6H8O5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3h3mglt_s + - id: "3h3mglt_s" - name: "3-Hydroxy-3-Methyl-Glutarate" - - compartment: s - - formula: C6H8O5 + - compartment: "s" + - formula: "C6H8O5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3mglutac_m + - id: "3mglutac_m" - name: "3-Methyl-Glutaconate" - - compartment: m - - formula: C6H6O4 + - compartment: "m" + - formula: "C6H6O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3mglutac_c + - id: "3mglutac_c" - name: "3-Methyl-Glutaconate" - - compartment: c - - formula: C6H6O4 + - compartment: "c" + - formula: "C6H6O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3mglutac_s + - id: "3mglutac_s" - name: "3-Methyl-Glutaconate" - - compartment: s - - formula: C6H6O4 + - compartment: "s" + - formula: "C6H6O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3mglutr_c + - id: "3mglutr_c" - name: "3-Methyl-Glutarate" - - compartment: c - - formula: C6H8O4 + - compartment: "c" + - formula: "C6H8O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3mglutr_s + - id: "3mglutr_s" - name: "3-Methyl-Glutarate" - - compartment: s - - formula: C6H8O4 + - compartment: "s" + - formula: "C6H8O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ppiogly_m + - id: "ppiogly_m" - name: "Propionyl-Glycine" - - compartment: m - - formula: C5H8NO3 + - compartment: "m" + - formula: "C5H8NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ppiogly_c + - id: "ppiogly_c" - name: "Propionyl-Glycine" - - compartment: c - - formula: C5H8NO3 + - compartment: "c" + - formula: "C5H8NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ppiogly_s + - id: "ppiogly_s" - name: "Propionyl-Glycine" - - compartment: s - - formula: C5H8NO3 + - compartment: "s" + - formula: "C5H8NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: mvlac_c + - id: "mvlac_c" - name: "Mevalonate-Lactone" - - compartment: c - - formula: C6H10O3 + - compartment: "c" + - formula: "C6H10O3" - charge: 0 - - inchis: 1S/C6H10O3/c1-6(8)2-3-9-5(7)4-6/h8H,2-4H2,1H3/t6-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C6H10O3/c1-6(8)2-3-9-5(7)4-6/h8H,2-4H2,1H3/t6-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: mvlac_s + - id: "mvlac_s" - name: "Mevalonate-Lactone" - - compartment: s - - formula: C6H10O3 + - compartment: "s" + - formula: "C6H10O3" - charge: 0 - - inchis: 1S/C6H10O3/c1-6(8)2-3-9-5(7)4-6/h8H,2-4H2,1H3/t6-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C6H10O3/c1-6(8)2-3-9-5(7)4-6/h8H,2-4H2,1H3/t6-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: tiggly_m + - id: "tiggly_m" - name: "Tiglyl Glycine" - - compartment: m - - formula: C7H10NO3 + - compartment: "m" + - formula: "C7H10NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tiggly_c + - id: "tiggly_c" - name: "Tiglyl Glycine" - - compartment: c - - formula: C7H10NO3 + - compartment: "c" + - formula: "C7H10NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tiggly_s + - id: "tiggly_s" - name: "Tiglyl Glycine" - - compartment: s - - formula: C7H10NO3 + - compartment: "s" + - formula: "C7H10NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: td2glutrcoa_m + - id: "td2glutrcoa_m" - name: "Trans-Delta-2-Glutaryl Coenzyme A" - - compartment: m - - formula: C26H35N7O19P3S + - compartment: "m" + - formula: "C26H35N7O19P3S" - charge: -5 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hglutcoa_m + - id: "3hglutcoa_m" - name: "3-Hydroxy-Glutaryl Coenzyme A" - - compartment: m - - formula: C26H37N7O20P3S + - compartment: "m" + - formula: "C26H37N7O20P3S" - charge: -5 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3ohglutac_m + - id: "3ohglutac_m" - name: "3-Hydroxy-Glutarate" - - compartment: m - - formula: C5H6O5 + - compartment: "m" + - formula: "C5H6O5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3ohglutac_c + - id: "3ohglutac_c" - name: "3-Hydroxy-Glutarate" - - compartment: c - - formula: C5H6O5 + - compartment: "c" + - formula: "C5H6O5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3ohglutac_s + - id: "3ohglutac_s" - name: "3-Hydroxy-Glutarate" - - compartment: s - - formula: C5H6O5 + - compartment: "s" + - formula: "C5H6O5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glutacoa_m + - id: "glutacoa_m" - name: "Glutaconyl Coenzyme A" - - compartment: m - - formula: C26H35N7O19P3S + - compartment: "m" + - formula: "C26H35N7O19P3S" - charge: -5 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glutcon_m + - id: "glutcon_m" - name: "Glutaconate" - - compartment: m - - formula: C5H4O4 + - compartment: "m" + - formula: "C5H4O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glutcon_c + - id: "glutcon_c" - name: "Glutaconate" - - compartment: c - - formula: C5H4O4 + - compartment: "c" + - formula: "C5H4O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glutcon_s + - id: "glutcon_s" - name: "Glutaconate" - - compartment: s - - formula: C5H4O4 + - compartment: "s" + - formula: "C5H4O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hivac_m + - id: "3hivac_m" - name: "3-Hydroxyisovaleric Acid" - - compartment: m - - formula: C5H9O3 + - compartment: "m" + - formula: "C5H9O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hivac_c + - id: "3hivac_c" - name: "3-Hydroxyisovaleric Acid" - - compartment: c - - formula: C5H9O3 + - compartment: "c" + - formula: "C5H9O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hivac_s + - id: "3hivac_s" - name: "3-Hydroxyisovaleric Acid" - - compartment: s - - formula: C5H9O3 + - compartment: "s" + - formula: "C5H9O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hadicoa_p + - id: "3hadicoa_p" - name: "3-Hydroxy-Adipoyl Coenzyme A" - - compartment: p - - formula: C27H39N7O20P3S + - compartment: "p" + - formula: "C27H39N7O20P3S" - charge: -5 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hadpac_p + - id: "3hadpac_p" - name: "3-Hydroxy-Adipate" - - compartment: p - - formula: C6H8O5 + - compartment: "p" + - formula: "C6H8O5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hadpac_c + - id: "3hadpac_c" - name: "3-Hydroxy-Adipate" - - compartment: c - - formula: C6H8O5 + - compartment: "c" + - formula: "C6H8O5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hadpac_s + - id: "3hadpac_s" - name: "3-Hydroxy-Adipate" - - compartment: s - - formula: C6H8O5 + - compartment: "s" + - formula: "C6H8O5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3ohsebcoa_p + - id: "3ohsebcoa_p" - name: "3-Hydroxy-Sebacoyl Coenzyme A" - - compartment: p - - formula: C31H47N7O20P3S + - compartment: "p" + - formula: "C31H47N7O20P3S" - charge: -5 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3ohsebac_p + - id: "3ohsebac_p" - name: "3-Hydroxy-Sebacic Acid" - - compartment: p - - formula: C10H16O5 + - compartment: "p" + - formula: "C10H16O5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3ohsebac_c + - id: "3ohsebac_c" - name: "3-Hydroxy-Sebacic Acid" - - compartment: c - - formula: C10H16O5 + - compartment: "c" + - formula: "C10H16O5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3ohsebac_s + - id: "3ohsebac_s" - name: "3-Hydroxy-Sebacic Acid" - - compartment: s - - formula: C10H16O5 + - compartment: "s" + - formula: "C10H16O5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3ohsubcoa_p + - id: "3ohsubcoa_p" - name: "3-Hydoxy-Suberyl Coenzyme A" - - compartment: p - - formula: C29H43N7O20P3S + - compartment: "p" + - formula: "C29H43N7O20P3S" - charge: -5 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3ohsubac_p + - id: "3ohsubac_p" - name: "3-Hydoxy-Suberic Acid" - - compartment: p - - formula: C8H12O5 + - compartment: "p" + - formula: "C8H12O5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3ohsubac_c + - id: "3ohsubac_c" - name: "3-Hydoxy-Suberic Acid" - - compartment: c - - formula: C8H12O5 + - compartment: "c" + - formula: "C8H12O5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3ohsubac_s + - id: "3ohsubac_s" - name: "3-Hydoxy-Suberic Acid" - - compartment: s - - formula: C8H12O5 + - compartment: "s" + - formula: "C8H12O5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 5ohhexa_c + - id: "5ohhexa_c" - name: "5-Hydroxyhexanoic Acid" - - compartment: c - - formula: C6H11O3 + - compartment: "c" + - formula: "C6H11O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 5ohhexa_s + - id: "5ohhexa_s" - name: "5-Hydroxyhexanoic Acid" - - compartment: s - - formula: C6H11O3 + - compartment: "s" + - formula: "C6H11O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 7ohocata_c + - id: "7ohocata_c" - name: "7-Hydroxy-Octanoate" - - compartment: c - - formula: C8H15O3 + - compartment: "c" + - formula: "C8H15O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 7ohocata_s + - id: "7ohocata_s" - name: "7-Hydroxy-Octanoate" - - compartment: s - - formula: C8H15O3 + - compartment: "s" + - formula: "C8H15O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ethmalcoa_c + - id: "ethmalcoa_c" - name: "Ethylmalonyl Coenzyme A" - - compartment: c - - formula: C26H37N7O19P3S + - compartment: "c" + - formula: "C26H37N7O19P3S" - charge: -5 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ethmalac_c + - id: "ethmalac_c" - name: "Ethylmalonic Acid" - - compartment: c - - formula: C5H6O4 + - compartment: "c" + - formula: "C5H6O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ethmalac_s + - id: "ethmalac_s" - name: "Ethylmalonic Acid" - - compartment: s - - formula: C5H6O4 + - compartment: "s" + - formula: "C5H6O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hexgly_c + - id: "hexgly_c" - name: "Hexanoyl-Glycine" - - compartment: c - - formula: C8H14NO3 + - compartment: "c" + - formula: "C8H14NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hexgly_s + - id: "hexgly_s" - name: "Hexanoyl-Glycine" - - compartment: s - - formula: C8H14NO3 + - compartment: "s" + - formula: "C8H14NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: methsuccoa_c + - id: "methsuccoa_c" - name: "Methyl-Succinyl Coenzyme A" - - compartment: c - - formula: C26H37N7O19P3S + - compartment: "c" + - formula: "C26H37N7O19P3S" - charge: -5 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: methsucc_c + - id: "methsucc_c" - name: "Methyl-Succinate" - - compartment: c - - formula: C5H6O4 + - compartment: "c" + - formula: "C5H6O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: methsucc_s + - id: "methsucc_s" - name: "Methyl-Succinate" - - compartment: s - - formula: C5H6O4 + - compartment: "s" + - formula: "C5H6O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: subgly_c + - id: "subgly_c" - name: "Suberyl-Glycine" - - compartment: c - - formula: C10H15NO5 + - compartment: "c" + - formula: "C10H15NO5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: subgly_s + - id: "subgly_s" - name: "Suberyl-Glycine" - - compartment: s - - formula: C10H15NO5 + - compartment: "s" + - formula: "C10H15NO5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 4ohbut_m + - id: "4ohbut_m" - name: "4-Hydroxy-Butyrate" - - compartment: m - - formula: C4H7O3 + - compartment: "m" + - formula: "C4H7O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 4ohbut_c + - id: "4ohbut_c" - name: "4-Hydroxy-Butyrate" - - compartment: c - - formula: C4H7O3 + - compartment: "c" + - formula: "C4H7O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 4ohbut_s + - id: "4ohbut_s" - name: "4-Hydroxy-Butyrate" - - compartment: s - - formula: C4H7O3 + - compartment: "s" + - formula: "C4H7O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pailste_hs_c + - id: "pailste_hs_c" - name: "1-Stearoylglycerophosphoinositol" - - compartment: c - - formula: C27H52O12P + - compartment: "c" + - formula: "C27H52O12P" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: peste_hs_c + - id: "peste_hs_c" - name: "1-Stearoylglycerophosphoethanolamine" - - compartment: c - - formula: C23H48NO7P + - compartment: "c" + - formula: "C23H48NO7P" - charge: 0 - - inchis: 1/C23H48NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-23(26)29-20-22(25)21-31-32(27,28)30-19-18-24/h22,25H,2-21,24H2,1H3,(H,27,28)/t22-/s2 - - metFrom: Recon3D + - inchis: "1/C23H48NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-23(26)29-20-22(25)21-31-32(27,28)30-19-18-24/h22,25H,2-21,24H2,1H3,(H,27,28)/t22-/s2" + - metFrom: "Recon3D" - !!omap - - id: 2hxic_L_s + - id: "2hxic_L_s" - name: "2-Hydroxy-Isocaproate" - - compartment: s - - formula: C6H11O3 + - compartment: "s" + - formula: "C6H11O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2hxic_L_c + - id: "2hxic_L_c" - name: "2-Hydroxy-Isocaproate" - - compartment: c - - formula: C6H11O3 + - compartment: "c" + - formula: "C6H11O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2hydog_c + - id: "2hydog_c" - name: "2-Hydroxy-Glutarate" - - compartment: c - - formula: C5H6O5 + - compartment: "c" + - formula: "C5H6O5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2hydog_s + - id: "2hydog_s" - name: "2-Hydroxy-Glutarate" - - compartment: s - - formula: C5H6O5 + - compartment: "s" + - formula: "C5H6O5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glutar_c + - id: "glutar_c" - name: "Glutarate" - - compartment: c - - formula: C5H6O4 + - compartment: "c" + - formula: "C5H6O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: thexdd_m + - id: "thexdd_m" - name: "7Z,10Z-Hexadecadienoic Acid" - - compartment: m - - formula: C16H27O2 + - compartment: "m" + - formula: "C16H27O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: thexdd_c + - id: "thexdd_c" - name: "7Z,10Z-Hexadecadienoic Acid" - - compartment: c - - formula: C16H27O2 + - compartment: "c" + - formula: "C16H27O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: thexdd_s + - id: "thexdd_s" - name: "7Z,10Z-Hexadecadienoic Acid" - - compartment: s - - formula: C16H27O2 + - compartment: "s" + - formula: "C16H27O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hexdtr_m + - id: "hexdtr_m" - name: "(Z,Z,Z)-7,10,13-Hexadecatrienoic Acid" - - compartment: m - - formula: C16H25O2 + - compartment: "m" + - formula: "C16H25O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hexdtr_c + - id: "hexdtr_c" - name: "(Z,Z,Z)-7,10,13-Hexadecatrienoic Acid" - - compartment: c - - formula: C16H25O2 + - compartment: "c" + - formula: "C16H25O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hexdtr_s + - id: "hexdtr_s" - name: "(Z,Z,Z)-7,10,13-Hexadecatrienoic Acid" - - compartment: s - - formula: C16H25O2 + - compartment: "s" + - formula: "C16H25O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hpdececoa_m + - id: "hpdececoa_m" - name: "Trans-Delta-2-Heptadecanoyl Coenzyme A" - - compartment: m - - formula: C38H62N7O17P3S + - compartment: "m" + - formula: "C38H62N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hpdece_m + - id: "hpdece_m" - name: "Trans-Delta-2-Heptadecanoic Acid" - - compartment: m - - formula: C17H31O2 + - compartment: "m" + - formula: "C17H31O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hpdece_c + - id: "hpdece_c" - name: "Trans-Delta-2-Heptadecanoic Acid" - - compartment: c - - formula: C17H31O2 + - compartment: "c" + - formula: "C17H31O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hpdece_s + - id: "hpdece_s" - name: "Trans-Delta-2-Heptadecanoic Acid" - - compartment: s - - formula: C17H31O2 + - compartment: "s" + - formula: "C17H31O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: eic21114tr_c + - id: "eic21114tr_c" - name: "Trans,Cis,Cis-2,11,14-Eicosatrienoic Acid" - - compartment: c - - formula: C20H33O2 + - compartment: "c" + - formula: "C20H33O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: eic21114tr_s + - id: "eic21114tr_s" - name: "Trans,Cis,Cis-2,11,14-Eicosatrienoic Acid" - - compartment: s - - formula: C20H33O2 + - compartment: "s" + - formula: "C20H33O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 5eipenc_m + - id: "5eipenc_m" - name: "5,8,11,14,17-Eicosapentenoic Acid" - - compartment: m - - formula: C20H29O2 + - compartment: "m" + - formula: "C20H29O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 5eipenc_c + - id: "5eipenc_c" - name: "5,8,11,14,17-Eicosapentenoic Acid" - - compartment: c - - formula: C20H29O2 + - compartment: "c" + - formula: "C20H29O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 5eipenc_s + - id: "5eipenc_s" - name: "5,8,11,14,17-Eicosapentenoic Acid" - - compartment: s - - formula: C20H29O2 + - compartment: "s" + - formula: "C20H29O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00981s + - id: "m00981s" - name: "4-coumarate" - - compartment: s - - formula: C9H7O3 + - compartment: "s" + - formula: "C9H7O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00971s + - id: "m00971s" - name: "4-androstene-3,17-dione" - - compartment: s - - formula: C19H26O2 + - compartment: "s" + - formula: "C19H26O2" - charge: 0 - - inchis: 1S/C19H26O2/c1-18-9-7-13(20)11-12(18)3-4-14-15-5-6-17(21)19(15,2)10-8-16(14)18/h11,14-16H,3-10H2,1-2H3/t14-,15-,16-,18-,19-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C19H26O2/c1-18-9-7-13(20)11-12(18)3-4-14-15-5-6-17(21)19(15,2)10-8-16(14)18/h11,14-16H,3-10H2,1-2H3/t14-,15-,16-,18-,19-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m00399c + - id: "m00399c" - name: "16alpha-hydroxydehydroepiandrosterone" - - compartment: c - - formula: C19H28O3 + - compartment: "c" + - formula: "C19H28O3" - charge: 0 - - inchis: 1S/C19H28O3/c1-18-7-5-12(20)9-11(18)3-4-13-14(18)6-8-19(2)15(13)10-16(21)17(19)22/h3,12-16,20-21H,4-10H2,1-2H3/t12-,13+,14-,15-,16+,18-,19-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C19H28O3/c1-18-7-5-12(20)9-11(18)3-4-13-14(18)6-8-19(2)15(13)10-16(21)17(19)22/h3,12-16,20-21H,4-10H2,1-2H3/t12-,13+,14-,15-,16+,18-,19-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m00399s + - id: "m00399s" - name: "16alpha-hydroxydehydroepiandrosterone" - - compartment: s - - formula: C19H28O3 + - compartment: "s" + - formula: "C19H28O3" - charge: 0 - - inchis: 1S/C19H28O3/c1-18-7-5-12(20)9-11(18)3-4-13-14(18)6-8-19(2)15(13)10-16(21)17(19)22/h3,12-16,20-21H,4-10H2,1-2H3/t12-,13+,14-,15-,16+,18-,19-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C19H28O3/c1-18-7-5-12(20)9-11(18)3-4-13-14(18)6-8-19(2)15(13)10-16(21)17(19)22/h3,12-16,20-21H,4-10H2,1-2H3/t12-,13+,14-,15-,16+,18-,19-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m01064s + - id: "m01064s" - name: "5alpha-androstane-3,17-dione" - - compartment: s - - formula: C19H28O2 + - compartment: "s" + - formula: "C19H28O2" - charge: 0 - - inchis: 1S/C19H28O2/c1-18-9-7-13(20)11-12(18)3-4-14-15-5-6-17(21)19(15,2)10-8-16(14)18/h12,14-16H,3-11H2,1-2H3/t12-,14-,15-,16-,18-,19-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C19H28O2/c1-18-9-7-13(20)11-12(18)3-4-14-15-5-6-17(21)19(15,2)10-8-16(14)18/h12,14-16H,3-11H2,1-2H3/t12-,14-,15-,16-,18-,19-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m01065s + - id: "m01065s" - name: "5alpha-androstane-3alpha,17beta-diol" - - compartment: s - - formula: C19H32O2 + - compartment: "s" + - formula: "C19H32O2" - charge: 0 - - inchis: 1S/C19H32O2/c1-18-9-7-13(20)11-12(18)3-4-14-15-5-6-17(21)19(15,2)10-8-16(14)18/h12-17,20-21H,3-11H2,1-2H3/t12-,13+,14-,15-,16-,17-,18-,19-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C19H32O2/c1-18-9-7-13(20)11-12(18)3-4-14-15-5-6-17(21)19(15,2)10-8-16(14)18/h12-17,20-21H,3-11H2,1-2H3/t12-,13+,14-,15-,16-,17-,18-,19-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m00649s + - id: "m00649s" - name: "2-hydroxyestradiol-17beta" - - compartment: s - - formula: C18H24O3 + - compartment: "s" + - formula: "C18H24O3" - charge: 0 - - inchis: 1S/C18H24O3/c1-18-7-6-11-12(14(18)4-5-17(18)21)3-2-10-8-15(19)16(20)9-13(10)11/h8-9,11-12,14,17,19-21H,2-7H2,1H3/t11-,12+,14-,17-,18-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C18H24O3/c1-18-7-6-11-12(14(18)4-5-17(18)21)3-2-10-8-15(19)16(20)9-13(10)11/h8-9,11-12,14,17,19-21H,2-7H2,1H3/t11-,12+,14-,17-,18-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m00660s + - id: "m00660s" - name: "2-methoxyestrone" - - compartment: s - - formula: C19H24O3 + - compartment: "s" + - formula: "C19H24O3" - charge: 0 - - inchis: 1S/C19H24O3/c1-19-8-7-12-13(15(19)5-6-18(19)21)4-3-11-9-16(20)17(22-2)10-14(11)12/h9-10,12-13,15,20H,3-8H2,1-2H3/t12-,13+,15-,19-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C19H24O3/c1-19-8-7-12-13(15(19)5-6-18(19)21)4-3-11-9-16(20)17(22-2)10-14(11)12/h9-10,12-13,15,20H,3-8H2,1-2H3/t12-,13+,15-,19-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m00659s + - id: "m00659s" - name: "2-methoxyestradiol-17beta" - - compartment: s - - formula: C19H26O3 + - compartment: "s" + - formula: "C19H26O3" - charge: 0 - - inchis: 1S/C19H26O3/c1-19-8-7-12-13(15(19)5-6-18(19)21)4-3-11-9-16(20)17(22-2)10-14(11)12/h9-10,12-13,15,18,20-21H,3-8H2,1-2H3/t12-,13+,15-,18-,19-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C19H26O3/c1-19-8-7-12-13(15(19)5-6-18(19)21)4-3-11-9-16(20)17(22-2)10-14(11)12/h9-10,12-13,15,18,20-21H,3-8H2,1-2H3/t12-,13+,15-,18-,19-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m00604s + - id: "m00604s" - name: "21-hydroxyallopregnanolone" - - compartment: s - - formula: C21H34O3 + - compartment: "s" + - formula: "C21H34O3" - charge: 0 - - inchis: 1S/C21H34O3/c1-20-9-7-14(23)11-13(20)3-4-15-16-5-6-18(19(24)12-22)21(16,2)10-8-17(15)20/h13-18,22-23H,3-12H2,1-2H3/t13-,14+,15-,16-,17-,18+,20-,21-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C21H34O3/c1-20-9-7-14(23)11-13(20)3-4-15-16-5-6-18(19(24)12-22)21(16,2)10-8-17(15)20/h13-18,22-23H,3-12H2,1-2H3/t13-,14+,15-,16-,17-,18+,20-,21-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m00295s + - id: "m00295s" - name: "11-deoxycortisol" - - compartment: s - - formula: C21H30O4 + - compartment: "s" + - formula: "C21H30O4" - charge: 0 - - inchis: 1S/C21H30O4/c1-19-8-5-14(23)11-13(19)3-4-15-16(19)6-9-20(2)17(15)7-10-21(20,25)18(24)12-22/h11,15-17,22,25H,3-10,12H2,1-2H3/t15-,16+,17+,19+,20+,21+/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C21H30O4/c1-19-8-5-14(23)11-13(19)3-4-15-16(19)6-9-20(2)17(15)7-10-21(20,25)18(24)12-22/h11,15-17,22,25H,3-10,12H2,1-2H3/t15-,16+,17+,19+,20+,21+/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m00294s + - id: "m00294s" - name: "11-deoxycorticosterone" - - compartment: s - - formula: C21H30O3 + - compartment: "s" + - formula: "C21H30O3" - charge: 0 - - inchis: 1S/C21H30O3/c1-20-9-7-14(23)11-13(20)3-4-15-16-5-6-18(19(24)12-22)21(16,2)10-8-17(15)20/h11,15-18,22H,3-10,12H2,1-2H3/t15-,16-,17-,18+,20-,21-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C21H30O3/c1-20-9-7-14(23)11-13(20)3-4-15-16-5-6-18(19(24)12-22)21(16,2)10-8-17(15)20/h11,15-18,22H,3-10,12H2,1-2H3/t15-,16-,17-,18+,20-,21-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m02763s + - id: "m02763s" - name: "pregnenolone" - - compartment: s - - formula: C21H32O2 + - compartment: "s" + - formula: "C21H32O2" - charge: 0 - - inchis: 1S/C21H32O2/c1-13(22)17-6-7-18-16-5-4-14-12-15(23)8-10-20(14,2)19(16)9-11-21(17,18)3/h4,15-19,23H,5-12H2,1-3H3/t15-,16-,17+,18-,19-,20-,21+/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C21H32O2/c1-13(22)17-6-7-18-16-5-4-14-12-15(23)8-10-20(14,2)19(16)9-11-21(17,18)3/h4,15-19,23H,5-12H2,1-3H3/t15-,16-,17+,18-,19-,20-,21+/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m01314s + - id: "m01314s" - name: "allopregnanolone" - - compartment: s - - formula: C21H34O2 + - compartment: "s" + - formula: "C21H34O2" - charge: 0 - - inchis: 1S/C21H34O2/c1-13(22)17-6-7-18-16-5-4-14-12-15(23)8-10-20(14,2)19(16)9-11-21(17,18)3/h14-19,23H,4-12H2,1-3H3/t14-,15+,16-,17+,18-,19-,20-,21+/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C21H34O2/c1-13(22)17-6-7-18-16-5-4-14-12-15(23)8-10-20(14,2)19(16)9-11-21(17,18)3/h14-19,23H,4-12H2,1-3H3/t14-,15+,16-,17+,18-,19-,20-,21+/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m00409s + - id: "m00409s" - name: "17alpha-hydroxyprogesterone" - - compartment: s - - formula: C21H30O3 + - compartment: "s" + - formula: "C21H30O3" - charge: 0 - - inchis: 1S/C21H30O3/c1-13(22)21(24)11-8-18-16-5-4-14-12-15(23)6-9-19(14,2)17(16)7-10-20(18,21)3/h12,16-18,24H,4-11H2,1-3H3/t16-,17+,18+,19+,20+,21+/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C21H30O3/c1-13(22)21(24)11-8-18-16-5-4-14-12-15(23)6-9-19(14,2)17(16)7-10-20(18,21)3/h12,16-18,24H,4-11H2,1-3H3/t16-,17+,18+,19+,20+,21+/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m00408s + - id: "m00408s" - name: "17alpha-hydroxypregnenolone" - - compartment: s - - formula: C21H32O3 + - compartment: "s" + - formula: "C21H32O3" - charge: 0 - - inchis: 1S/C21H32O3/c1-13(22)21(24)11-8-18-16-5-4-14-12-15(23)6-9-19(14,2)17(16)7-10-20(18,21)3/h4,15-18,23-24H,5-12H2,1-3H3/t15-,16+,17-,18-,19-,20-,21-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C21H32O3/c1-13(22)21(24)11-8-18-16-5-4-14-12-15(23)6-9-19(14,2)17(16)7-10-20(18,21)3/h4,15-18,23-24H,5-12H2,1-3H3/t15-,16+,17-,18-,19-,20-,21-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m01072s + - id: "m01072s" - name: "5alpha-pregnane-3,20-dione" - - compartment: s - - formula: C21H32O2 + - compartment: "s" + - formula: "C21H32O2" - charge: 0 - - inchis: 1S/C21H32O2/c1-13(22)17-6-7-18-16-5-4-14-12-15(23)8-10-20(14,2)19(16)9-11-21(17,18)3/h14,16-19H,4-12H2,1-3H3/t14-,16-,17+,18-,19-,20-,21+/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C21H32O2/c1-13(22)17-6-7-18-16-5-4-14-12-15(23)8-10-20(14,2)19(16)9-11-21(17,18)3/h14,16-19H,4-12H2,1-3H3/t14-,16-,17+,18-,19-,20-,21+/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m02762s + - id: "m02762s" - name: "pregnenolone sulfate" - - compartment: s - - formula: C21H31O5S + - compartment: "s" + - formula: "C21H31O5S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00407s + - id: "m00407s" - name: "17alpha-hydroxypregnenolone sulfate" - - compartment: s - - formula: C21H31O6S + - compartment: "s" + - formula: "C21H31O6S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02473s + - id: "m02473s" - name: "methylamine" - - compartment: s - - formula: C1H6N + - compartment: "s" + - formula: "C1H6N" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02601s + - id: "m02601s" - name: "N-methylhistamine" - - compartment: s - - formula: C6H12N3 + - compartment: "s" + - formula: "C6H12N3" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00988s + - id: "m00988s" - name: "4-hydroxy-2-nonenal" - - compartment: s - - formula: C9H16O2 + - compartment: "s" + - formula: "C9H16O2" - charge: 0 - - inchis: 1/C9H16O2/c1-2-3-4-6-9(11)7-5-8-10/h5,7-9,11H,2-4,6H2,1H3 - - metFrom: Recon3D + - inchis: "1/C9H16O2/c1-2-3-4-6-9(11)7-5-8-10/h5,7-9,11H,2-4,6H2,1H3" + - metFrom: "Recon3D" - !!omap - - id: m02518s + - id: "m02518s" - name: "N8-acetylspermidine" - - compartment: s - - formula: C9H23N3O + - compartment: "s" + - formula: "C9H23N3O" - charge: 2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02603s + - id: "m02603s" - name: "N-methylsalsolinol" - - compartment: s - - formula: C11H16NO2 + - compartment: "s" + - formula: "C11H16NO2" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02875s + - id: "m02875s" - name: "salsolinol" - - compartment: s - - formula: C10H14NO2 + - compartment: "s" + - formula: "C10H14NO2" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02803s + - id: "m02803s" - name: "protoporphyrin" - - compartment: s - - formula: C34H32N4O4 + - compartment: "s" + - formula: "C34H32N4O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01045s + - id: "m01045s" - name: "5,10-methylene-THF" - - compartment: s - - formula: C20H21N7O6 + - compartment: "s" + - formula: "C20H21N7O6" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m03088s + - id: "m03088s" - name: "tryptamine" - - compartment: s - - formula: C10H13N2 + - compartment: "s" + - formula: "C10H13N2" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02891s + - id: "m02891s" - name: "selenomethionine" - - compartment: s - - formula: C5H11NO2Se + - compartment: "s" + - formula: "C5H11NO2Se" - charge: 0 - - inchis: 1/C5H11NO2Se/c1-9-3-2-4(6)5(7)8/h4H,2-3,6H2,1H3,(H,7,8) - - metFrom: Recon3D + - inchis: "1/C5H11NO2Se/c1-9-3-2-4(6)5(7)8/h4H,2-3,6H2,1H3,(H,7,8)" + - metFrom: "Recon3D" - !!omap - - id: m00028s + - id: "m00028s" - name: "(18R)-HEPE" - - compartment: s - - formula: C20H29O3 + - compartment: "s" + - formula: "C20H29O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01039s + - id: "m01039s" - name: "5(S)-HEPE" - - compartment: s - - formula: C20H29O3 + - compartment: "s" + - formula: "C20H29O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01050s + - id: "m01050s" - name: "5,15-DiHETE" - - compartment: s - - formula: C20H31O4 + - compartment: "s" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00385s + - id: "m00385s" - name: "15-deoxy-prostaglandin J2" - - compartment: s - - formula: C20H27O3 + - compartment: "s" + - formula: "C20H27O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00293s + - id: "m00293s" - name: "11-dehydro-thromboxane B2" - - compartment: s - - formula: C20H31O6 + - compartment: "s" + - formula: "C20H31O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02823s + - id: "m02823s" - name: "quinonoid dihydrobiopterin" - - compartment: s - - formula: C9H13N5O3 + - compartment: "s" + - formula: "C9H13N5O3" - charge: 0 - - inchis: 1S/C9H13N5O3/c1-3(15)6(16)4-2-11-7-5(12-4)8(17)14-9(10)13-7/h3,6,15-16H,2H2,1H3,(H4,10,11,13,14,17) - - metFrom: Recon3D + - inchis: "1S/C9H13N5O3/c1-3(15)6(16)4-2-11-7-5(12-4)8(17)14-9(10)13-7/h3,6,15-16H,2H2,1H3,(H4,10,11,13,14,17)" + - metFrom: "Recon3D" - !!omap - - id: m00248s + - id: "m00248s" - name: "1,3-diaminopropane" - - compartment: s - - formula: C3H12N2 + - compartment: "s" + - formula: "C3H12N2" - charge: 2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02117s + - id: "m02117s" - name: "hexadecenoylcarnitine(9)" - - compartment: s - - formula: C23H43NO4 + - compartment: "s" + - formula: "C23H43NO4" - charge: 0 - - inchis: 1/C23H43NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-23(27)28-21(19-22(25)26)20-24(2,3)4/h17-18,21H,5-16,19-20H2,1-4H3/b18-17+ - - metFrom: Recon3D + - inchis: "1/C23H43NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-23(27)28-21(19-22(25)26)20-24(2,3)4/h17-18,21H,5-16,19-20H2,1-4H3/b18-17+" + - metFrom: "Recon3D" - !!omap - - id: m02503s + - id: "m02503s" - name: "N1-acetylspermidine" - - compartment: s - - formula: C9H23N3O + - compartment: "s" + - formula: "C9H23N3O" - charge: 2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01110s + - id: "m01110s" - name: "5-hydroxytryptophol" - - compartment: s - - formula: C10H11NO2 + - compartment: "s" + - formula: "C10H11NO2" - charge: 0 - - inchis: 1S/C10H11NO2/c12-4-3-7-6-11-10-2-1-8(13)5-9(7)10/h1-2,5-6,11-13H,3-4H2 - - metFrom: Recon3D + - inchis: "1S/C10H11NO2/c12-4-3-7-6-11-10-2-1-8(13)5-9(7)10/h1-2,5-6,11-13H,3-4H2" + - metFrom: "Recon3D" - !!omap - - id: m00727s + - id: "m00727s" - name: "3,4-dihydroxymandelate" - - compartment: s - - formula: C8H7O5 + - compartment: "s" + - formula: "C8H7O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01113s + - id: "m01113s" - name: "5-methoxytryptophol" - - compartment: s - - formula: C11H13NO2 + - compartment: "s" + - formula: "C11H13NO2" - charge: 0 - - inchis: 1S/C11H13NO2/c1-14-9-2-3-11-10(6-9)8(4-5-13)7-12-11/h2-3,6-7,12-13H,4-5H2,1H3 - - metFrom: Recon3D + - inchis: "1S/C11H13NO2/c1-14-9-2-3-11-10(6-9)8(4-5-13)7-12-11/h2-3,6-7,12-13H,4-5H2,1H3" + - metFrom: "Recon3D" - !!omap - - id: m01417s + - id: "m01417s" - name: "calcitriol" - - compartment: s - - formula: C27H44O3 + - compartment: "s" + - formula: "C27H44O3" - charge: 0 - - inchis: 1S/C27H44O3/c1-18(8-6-14-26(3,4)30)23-12-13-24-20(9-7-15-27(23,24)5)10-11-21-16-22(28)17-25(29)19(21)2/h10-11,18,22-25,28-30H,2,6-9,12-17H2,1,3-5H3/b20-10+,21-11-/t18-,22-,23-,24+,25+,27-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C27H44O3/c1-18(8-6-14-26(3,4)30)23-12-13-24-20(9-7-15-27(23,24)5)10-11-21-16-22(28)17-25(29)19(21)2/h10-11,18,22-25,28-30H,2,6-9,12-17H2,1,3-5H3/b20-10+,21-11-/t18-,22-,23-,24+,25+,27-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m02181c + - id: "m02181c" - name: "isobutyrylglycine" - - compartment: c - - formula: C6H10NO3 + - compartment: "c" + - formula: "C6H10NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02181s + - id: "m02181s" - name: "isobutyrylglycine" - - compartment: s - - formula: C6H10NO3 + - compartment: "s" + - formula: "C6H10NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02534c + - id: "m02534c" - name: "N-acetyl-L-cysteine" - - compartment: c - - formula: C5H8NO3S + - compartment: "c" + - formula: "C5H8NO3S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02534s + - id: "m02534s" - name: "N-acetyl-L-cysteine" - - compartment: s - - formula: C5H8NO3S + - compartment: "s" + - formula: "C5H8NO3S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02942c + - id: "m02942c" - name: "succinate semialdehyde" - - compartment: c - - formula: C4H5O3 + - compartment: "c" + - formula: "C4H5O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02942s + - id: "m02942s" - name: "succinate semialdehyde" - - compartment: s - - formula: C4H5O3 + - compartment: "s" + - formula: "C4H5O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00373s + - id: "m00373s" - name: "15(R)-HEPE" - - compartment: s - - formula: C20H29O3 + - compartment: "s" + - formula: "C20H29O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01767s + - id: "m01767s" - name: "ecgonine-methyl ester" - - compartment: s - - formula: C10H17NO3 + - compartment: "s" + - formula: "C10H17NO3" - charge: 0 - - inchis: 1/C10H17NO3/c1-11-6-3-4-7(11)9(8(12)5-6)10(13)14-2/h6-9,12H,3-5H2,1-2H3/t6-,7+,8-,9+/s2 - - metFrom: Recon3D + - inchis: "1/C10H17NO3/c1-11-6-3-4-7(11)9(8(12)5-6)10(13)14-2/h6-9,12H,3-5H2,1-2H3/t6-,7+,8-,9+/s2" + - metFrom: "Recon3D" - !!omap - - id: m00324c + - id: "m00324c" - name: "12-hydroxy-arachidonate" - - compartment: c - - formula: C20H31O3 + - compartment: "c" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00324s + - id: "m00324s" - name: "12-hydroxy-arachidonate" - - compartment: s - - formula: C20H31O3 + - compartment: "s" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00428c + - id: "m00428c" - name: "18-hydroxy-arachidonate" - - compartment: c - - formula: C20H31O3 + - compartment: "c" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00428s + - id: "m00428s" - name: "18-hydroxy-arachidonate" - - compartment: s - - formula: C20H31O3 + - compartment: "s" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02933s + - id: "m02933s" - name: "squalene" - - compartment: s - - formula: C30H50 + - compartment: "s" + - formula: "C30H50" - charge: 0 - - inchis: 1S/C30H50/c1-25(2)15-11-19-29(7)23-13-21-27(5)17-9-10-18-28(6)22-14-24-30(8)20-12-16-26(3)4/h15-18,23-24H,9-14,19-22H2,1-8H3/b27-17+,28-18+,29-23+,30-24+ - - metFrom: Recon3D + - inchis: "1S/C30H50/c1-25(2)15-11-19-29(7)23-13-21-27(5)17-9-10-18-28(6)22-14-24-30(8)20-12-16-26(3)4/h15-18,23-24H,9-14,19-22H2,1-8H3/b27-17+,28-18+,29-23+,30-24+" + - metFrom: "Recon3D" - !!omap - - id: m01101c + - id: "m01101c" - name: "5-guanidino-2-oxopentanoate" - - compartment: c - - formula: C6H11N3O3 + - compartment: "c" + - formula: "C6H11N3O3" - charge: 0 - - inchis: 1S/C6H11N3O3/c7-6(8)9-3-1-2-4(10)5(11)12/h1-3H2,(H,11,12)(H4,7,8,9) - - metFrom: Recon3D + - inchis: "1S/C6H11N3O3/c7-6(8)9-3-1-2-4(10)5(11)12/h1-3H2,(H,11,12)(H4,7,8,9)" + - metFrom: "Recon3D" - !!omap - - id: m01101s + - id: "m01101s" - name: "5-guanidino-2-oxopentanoate" - - compartment: s - - formula: C6H11N3O3 + - compartment: "s" + - formula: "C6H11N3O3" - charge: 0 - - inchis: 1S/C6H11N3O3/c7-6(8)9-3-1-2-4(10)5(11)12/h1-3H2,(H,11,12)(H4,7,8,9) - - metFrom: Recon3D + - inchis: "1S/C6H11N3O3/c7-6(8)9-3-1-2-4(10)5(11)12/h1-3H2,(H,11,12)(H4,7,8,9)" + - metFrom: "Recon3D" - !!omap - - id: m01660s + - id: "m01660s" - name: "dehydroepiandrosterone" - - compartment: s - - formula: C19H28O2 + - compartment: "s" + - formula: "C19H28O2" - charge: 0 - - inchis: 1S/C19H28O2/c1-18-9-7-13(20)11-12(18)3-4-14-15-5-6-17(21)19(15,2)10-8-16(14)18/h3,13-16,20H,4-11H2,1-2H3/t13-,14-,15-,16-,18-,19-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C19H28O2/c1-18-9-7-13(20)11-12(18)3-4-14-15-5-6-17(21)19(15,2)10-8-16(14)18/h3,13-16,20H,4-11H2,1-2H3/t13-,14-,15-,16-,18-,19-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m01790s + - id: "m01790s" - name: "estrone" - - compartment: s - - formula: C18H22O2 + - compartment: "s" + - formula: "C18H22O2" - charge: 0 - - inchis: 1S/C18H22O2/c1-18-9-8-14-13-5-3-12(19)10-11(13)2-4-15(14)16(18)6-7-17(18)20/h3,5,10,14-16,19H,2,4,6-9H2,1H3/t14-,15-,16+,18+/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C18H22O2/c1-18-9-8-14-13-5-3-12(19)10-11(13)2-4-15(14)16(18)6-7-17(18)20/h3,5,10,14-16,19H,2,4,6-9H2,1H3/t14-,15-,16+,18+/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m00650s + - id: "m00650s" - name: "2-hydroxyestrone" - - compartment: s - - formula: C18H22O3 + - compartment: "s" + - formula: "C18H22O3" - charge: 0 - - inchis: 1S/C18H22O3/c1-18-7-6-11-12(14(18)4-5-17(18)21)3-2-10-8-15(19)16(20)9-13(10)11/h8-9,11-12,14,19-20H,2-7H2,1H3/t11-,12+,14-,18-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C18H22O3/c1-18-7-6-11-12(14(18)4-5-17(18)21)3-2-10-8-15(19)16(20)9-13(10)11/h8-9,11-12,14,19-20H,2-7H2,1H3/t11-,12+,14-,18-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m01504c + - id: "m01504c" - name: "cholesterol-ester-palm" - - compartment: c - - formula: C43H76O2 + - compartment: "c" + - formula: "C43H76O2" - charge: 0 - - inchis: 1S/C43H76O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-23-41(44)45-36-28-30-42(5)35(32-36)24-25-37-39-27-26-38(34(4)22-20-21-33(2)3)43(39,6)31-29-40(37)42/h24,33-34,36-40H,7-23,25-32H2,1-6H3/t34-,36+,37+,38-,39+,40+,42+,43-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C43H76O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-23-41(44)45-36-28-30-42(5)35(32-36)24-25-37-39-27-26-38(34(4)22-20-21-33(2)3)43(39,6)31-29-40(37)42/h24,33-34,36-40H,7-23,25-32H2,1-6H3/t34-,36+,37+,38-,39+,40+,42+,43-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m01504s + - id: "m01504s" - name: "cholesterol-ester-palm" - - compartment: s - - formula: C43H76O2 + - compartment: "s" + - formula: "C43H76O2" - charge: 0 - - inchis: 1S/C43H76O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-23-41(44)45-36-28-30-42(5)35(32-36)24-25-37-39-27-26-38(34(4)22-20-21-33(2)3)43(39,6)31-29-40(37)42/h24,33-34,36-40H,7-23,25-32H2,1-6H3/t34-,36+,37+,38-,39+,40+,42+,43-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C43H76O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-23-41(44)45-36-28-30-42(5)35(32-36)24-25-37-39-27-26-38(34(4)22-20-21-33(2)3)43(39,6)31-29-40(37)42/h24,33-34,36-40H,7-23,25-32H2,1-6H3/t34-,36+,37+,38-,39+,40+,42+,43-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m00610s + - id: "m00610s" - name: "24-hydroxycholesterol" - - compartment: s - - formula: C27H46O2 + - compartment: "s" + - formula: "C27H46O2" - charge: 0 - - inchis: 1S/C27H46O2/c1-17(2)25(29)11-6-18(3)22-9-10-23-21-8-7-19-16-20(28)12-14-26(19,4)24(21)13-15-27(22,23)5/h7,17-18,20-25,28-29H,6,8-16H2,1-5H3/t18-,20+,21+,22-,23+,24+,25+,26+,27-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C27H46O2/c1-17(2)25(29)11-6-18(3)22-9-10-23-21-8-7-19-16-20(28)12-14-26(19,4)24(21)13-15-27(22,23)5/h7,17-18,20-25,28-29H,6,8-16H2,1-5H3/t18-,20+,21+,22-,23+,24+,25+,26+,27-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m00623s + - id: "m00623s" - name: "26-hydroxycholesterol" - - compartment: s - - formula: C27H46O2 + - compartment: "s" + - formula: "C27H46O2" - charge: 0 - - inchis: 1S/C27H46O2/c1-18(17-28)6-5-7-19(2)23-10-11-24-22-9-8-20-16-21(29)12-14-26(20,3)25(22)13-15-27(23,24)4/h8,18-19,21-25,28-29H,5-7,9-17H2,1-4H3/t18?,19-,21+,22+,23-,24+,25+,26+,27-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C27H46O2/c1-18(17-28)6-5-7-19(2)23-10-11-24-22-9-8-20-16-21(29)12-14-26(20,3)25(22)13-15-27(23,24)4/h8,18-19,21-25,28-29H,5-7,9-17H2,1-4H3/t18?,19-,21+,22+,23-,24+,25+,26+,27-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m00619c + - id: "m00619c" - name: "25-hydroxycholesterol" - - compartment: c - - formula: C27H46O2 + - compartment: "c" + - formula: "C27H46O2" - charge: 0 - - inchis: 1S/C27H46O2/c1-18(7-6-14-25(2,3)29)22-10-11-23-21-9-8-19-17-20(28)12-15-26(19,4)24(21)13-16-27(22,23)5/h8,18,20-24,28-29H,6-7,9-17H2,1-5H3/t18-,20+,21+,22-,23+,24+,26+,27-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C27H46O2/c1-18(7-6-14-25(2,3)29)22-10-11-23-21-9-8-19-17-20(28)12-15-26(19,4)24(21)13-16-27(22,23)5/h8,18,20-24,28-29H,6-7,9-17H2,1-5H3/t18-,20+,21+,22-,23+,24+,26+,27-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m00619s + - id: "m00619s" - name: "25-hydroxycholesterol" - - compartment: s - - formula: C27H46O2 + - compartment: "s" + - formula: "C27H46O2" - charge: 0 - - inchis: 1S/C27H46O2/c1-18(7-6-14-25(2,3)29)22-10-11-23-21-9-8-19-17-20(28)12-15-26(19,4)24(21)13-16-27(22,23)5/h8,18,20-24,28-29H,6-7,9-17H2,1-5H3/t18-,20+,21+,22-,23+,24+,26+,27-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C27H46O2/c1-18(7-6-14-25(2,3)29)22-10-11-23-21-9-8-19-17-20(28)12-15-26(19,4)24(21)13-16-27(22,23)5/h8,18,20-24,28-29H,6-7,9-17H2,1-5H3/t18-,20+,21+,22-,23+,24+,26+,27-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m01675s + - id: "m01675s" - name: "desmosterol" - - compartment: s - - formula: C27H44O + - compartment: "s" + - formula: "C27H44O" - charge: 0 - - inchis: 1S/C27H44O/c1-18(2)7-6-8-19(3)23-11-12-24-22-10-9-20-17-21(28)13-15-26(20,4)25(22)14-16-27(23,24)5/h7,9,19,21-25,28H,6,8,10-17H2,1-5H3/t19-,21+,22+,23-,24+,25+,26+,27-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C27H44O/c1-18(2)7-6-8-19(3)23-11-12-24-22-10-9-20-17-21(28)13-15-26(20,4)25(22)14-16-27(23,24)5/h7,9,19,21-25,28H,6,8,10-17H2,1-5H3/t19-,21+,22+,23-,24+,25+,26+,27-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m01512s + - id: "m01512s" - name: "cholesterol-sulfate" - - compartment: s - - formula: C27H45O4S + - compartment: "s" + - formula: "C27H45O4S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00807s + - id: "m00807s" - name: "3-iodo-L-tyrosine" - - compartment: s - - formula: C9H10INO3 + - compartment: "s" + - formula: "C9H10INO3" - charge: 0 - - inchis: 1S/C9H10INO3/c10-6-3-5(1-2-8(6)12)4-7(11)9(13)14/h1-3,7,12H,4,11H2,(H,13,14)/t7-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C9H10INO3/c10-6-3-5(1-2-8(6)12)4-7(11)9(13)14/h1-3,7,12H,4,11H2,(H,13,14)/t7-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m00739s + - id: "m00739s" - name: "3,5-diiodo-L-tyrosine" - - compartment: s - - formula: C9H9I2NO3 + - compartment: "s" + - formula: "C9H9I2NO3" - charge: 0 - - inchis: 1S/C9H9I2NO3/c10-5-1-4(2-6(11)8(5)13)3-7(12)9(14)15/h1-2,7,13H,3,12H2,(H,14,15)/t7-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C9H9I2NO3/c10-5-1-4(2-6(11)8(5)13)3-7(12)9(14)15/h1-2,7,13H,3,12H2,(H,14,15)/t7-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m00350s + - id: "m00350s" - name: "13-cis-retinoate" - - compartment: s - - formula: C20H27O2 + - compartment: "s" + - formula: "C20H27O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01231s + - id: "m01231s" - name: "9-cis-retinoate" - - compartment: s - - formula: C20H27O2 + - compartment: "s" + - formula: "C20H27O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: vldl_hs_c + - id: "vldl_hs_c" - name: "Very Low Density Lipoprotein" - - compartment: c - - formula: X + - compartment: "c" + - formula: "X" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: vldl_hs_s + - id: "vldl_hs_s" - name: "Very Low Density Lipoprotein" - - compartment: s - - formula: X + - compartment: "s" + - formula: "X" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01351s + - id: "m01351s" - name: "apoB100" - - compartment: s - - formula: C23182H36564N6112O6944S104 + - compartment: "s" + - formula: "C23182H36564N6112O6944S104" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01353s + - id: "m01353s" - name: "apoC1" - - compartment: s - - formula: C421H695N109O124S2 + - compartment: "s" + - formula: "C421H695N109O124S2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01354s + - id: "m01354s" - name: "apoC2" - - compartment: s - - formula: C509H801N123O159S3 + - compartment: "s" + - formula: "C509H801N123O159S3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01355s + - id: "m01355s" - name: "apoC3" - - compartment: s - - formula: C484H760N128O149S3 + - compartment: "s" + - formula: "C484H760N128O149S3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01359s + - id: "m01359s" - name: "apoE" - - compartment: s - - formula: C1569H2559N477O483S10 + - compartment: "s" + - formula: "C1569H2559N477O483S10" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: idl_hs_s + - id: "idl_hs_s" - name: "Intermediate Density Lipoprotein" - - compartment: s - - formula: X + - compartment: "s" + - formula: "X" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ldl_hs_s + - id: "ldl_hs_s" - name: "Low Density Lipoprotein" - - compartment: s - - formula: X + - compartment: "s" + - formula: "X" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hdl_hs_s + - id: "hdl_hs_s" - name: "High Density Lipoprotein" - - compartment: s - - formula: X + - compartment: "s" + - formula: "X" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: myelin_hs_c + - id: "myelin_hs_c" - name: "Myelin Sheath" - - compartment: c - - formula: X + - compartment: "c" + - formula: "X" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: chylo_hs_c + - id: "chylo_hs_c" - name: "Chylomicron Lipoprotein" - - compartment: c - - formula: X + - compartment: "c" + - formula: "X" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: chylo_hs_s + - id: "chylo_hs_s" - name: "Chylomicron Lipoprotein" - - compartment: s - - formula: X + - compartment: "s" + - formula: "X" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00576s + - id: "m00576s" - name: "2,5-dihydroxybenzoate" - - compartment: s - - formula: C7H5O4 + - compartment: "s" + - formula: "C7H5O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01839s + - id: "m01839s" - name: "formyl-N-acetyl-5-methoxykynurenamine" - - compartment: s - - formula: C13H16N2O4 + - compartment: "s" + - formula: "C13H16N2O4" - charge: 0 - - inchis: 1S/C13H16N2O4/c1-9(17)14-6-5-13(18)11-7-10(19-2)3-4-12(11)15-8-16/h3-4,7-8H,5-6H2,1-2H3,(H,14,17)(H,15,16) - - metFrom: Recon3D + - inchis: "1S/C13H16N2O4/c1-9(17)14-6-5-13(18)11-7-10(19-2)3-4-12(11)15-8-16/h3-4,7-8H,5-6H2,1-2H3,(H,14,17)(H,15,16)" + - metFrom: "Recon3D" - !!omap - - id: m02714s + - id: "m02714s" - name: "peroxynitrite" - - compartment: s - - formula: NO3 + - compartment: "s" + - formula: "NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02134s + - id: "m02134s" - name: "homocysteine-thiolactone" - - compartment: s - - formula: C4H8NOS + - compartment: "s" + - formula: "C4H8NOS" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01927s + - id: "m01927s" - name: "gamma-glutamyl-cysteine" - - compartment: s - - formula: C8H13N2O5S + - compartment: "s" + - formula: "C8H13N2O5S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02460s + - id: "m02460s" - name: "melatonin" - - compartment: s - - formula: C13H16N2O2 + - compartment: "s" + - formula: "C13H16N2O2" - charge: 0 - - inchis: 1S/C13H16N2O2/c1-9(16)14-6-5-10-8-15-13-4-3-11(17-2)7-12(10)13/h3-4,7-8,15H,5-6H2,1-2H3,(H,14,16) - - metFrom: Recon3D + - inchis: "1S/C13H16N2O2/c1-9(16)14-6-5-10-8-15-13-4-3-11(17-2)7-12(10)13/h3-4,7-8,15H,5-6H2,1-2H3,(H,14,16)" + - metFrom: "Recon3D" - !!omap - - id: m01161s + - id: "m01161s" - name: "6-hydroxymelatonin" - - compartment: s - - formula: C13H16N2O3 + - compartment: "s" + - formula: "C13H16N2O3" - charge: 0 - - inchis: 1S/C13H16N2O3/c1-8(16)14-4-3-9-7-15-11-6-12(17)13(18-2)5-10(9)11/h5-7,15,17H,3-4H2,1-2H3,(H,14,16) - - metFrom: Recon3D + - inchis: "1S/C13H16N2O3/c1-8(16)14-4-3-9-7-15-11-6-12(17)13(18-2)5-10(9)11/h5-7,15,17H,3-4H2,1-2H3,(H,14,16)" + - metFrom: "Recon3D" - !!omap - - id: m02752s + - id: "m02752s" - name: "picolinic acid" - - compartment: s - - formula: C6H4NO2 + - compartment: "s" + - formula: "C6H4NO2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m03125s + - id: "m03125s" - name: "uroporphyrin I" - - compartment: s - - formula: C40H30N4O16 + - compartment: "s" + - formula: "C40H30N4O16" - charge: -8 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02756s + - id: "m02756s" - name: "porphobilinogen" - - compartment: s - - formula: C10H13N2O4 + - compartment: "s" + - formula: "C10H13N2O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02771s + - id: "m02771s" - name: "propane-1,2-diol" - - compartment: s - - formula: C3H8O2 + - compartment: "s" + - formula: "C3H8O2" - charge: 0 - - inchis: 1S/C3H8O2/c1-3(5)2-4/h3-5H,2H2,1H3 - - metFrom: Recon3D + - inchis: "1S/C3H8O2/c1-3(5)2-4/h3-5H,2H2,1H3" + - metFrom: "Recon3D" - !!omap - - id: m02870s + - id: "m02870s" - name: "S-adenosylmethioninamine" - - compartment: s - - formula: C14H24N6O3S + - compartment: "s" + - formula: "C14H24N6O3S" - charge: 2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02425s + - id: "m02425s" - name: "L-xylulose" - - compartment: s - - formula: C5H10O5 + - compartment: "s" + - formula: "C5H10O5" - charge: 0 - - inchis: 1S/C5H10O5/c6-1-3(8)5(10)4(9)2-7/h3,5-8,10H,1-2H2/t3-,5+/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C5H10O5/c6-1-3(8)5(10)4(9)2-7/h3,5-8,10H,1-2H2/t3-,5+/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m01759s + - id: "m01759s" - name: "D-xylulose" - - compartment: s - - formula: C5H10O5 + - compartment: "s" + - formula: "C5H10O5" - charge: 0 - - inchis: 1S/C5H10O5/c6-1-3(8)5(10)4(9)2-7/h3,5-8,10H,1-2H2/t3-,5+/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C5H10O5/c6-1-3(8)5(10)4(9)2-7/h3,5-8,10H,1-2H2/t3-,5+/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m02441s + - id: "m02441s" - name: "malonic-dialdehyde" - - compartment: s - - formula: C3H3O2 + - compartment: "s" + - formula: "C3H3O2" - charge: -1 - - inchis: 1S/C3H3O2/c4-2-1-3-5/h1-3H/q-1 - - metFrom: Recon3D + - inchis: "1S/C3H3O2/c4-2-1-3-5/h1-3H/q-1" + - metFrom: "Recon3D" - !!omap - - id: m02166s + - id: "m02166s" - name: "imidazole-4-acetate" - - compartment: s - - formula: C5H5N2O2 + - compartment: "s" + - formula: "C5H5N2O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01332s + - id: "m01332s" - name: "aminoacetone" - - compartment: s - - formula: C3H8NO + - compartment: "s" + - formula: "C3H8NO" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02927s + - id: "m02927s" - name: "sphinganine" - - compartment: s - - formula: C18H40NO2 + - compartment: "s" + - formula: "C18H40NO2" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00635s + - id: "m00635s" - name: "2-arachidonoylglycerol" - - compartment: s - - formula: C23H38O4 + - compartment: "s" + - formula: "C23H38O4" - charge: 0 - - inchis: 1S/C23H38O4/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-23(26)27-22(20-24)21-25/h6-7,9-10,12-13,15-16,22,24-25H,2-5,8,11,14,17-21H2,1H3/b7-6-,10-9-,13-12-,16-15- - - metFrom: Recon3D + - inchis: "1S/C23H38O4/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-23(26)27-22(20-24)21-25/h6-7,9-10,12-13,15-16,22,24-25H,2-5,8,11,14,17-21H2,1H3/b7-6-,10-9-,13-12-,16-15-" + - metFrom: "Recon3D" - !!omap - - id: m02766s + - id: "m02766s" - name: "pristanic acid" - - compartment: s - - formula: C19H37O2 + - compartment: "s" + - formula: "C19H37O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00314s + - id: "m00314s" - name: "12,13-hydroxyoctadec-9(z)-enoate" - - compartment: s - - formula: C18H33O4 + - compartment: "s" + - formula: "C18H33O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01220s + - id: "m01220s" - name: "9,10-hydroxyoctadec-12(Z)-enoate" - - compartment: s - - formula: C18H33O4 + - compartment: "s" + - formula: "C18H33O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01841s + - id: "m01841s" - name: "fructose-1,6-bisphosphate" - - compartment: s - - formula: C6H10O12P2 + - compartment: "s" + - formula: "C6H10O12P2" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01601s + - id: "m01601s" - name: "cocaine" - - compartment: s - - formula: C17H21NO4 + - compartment: "s" + - formula: "C17H21NO4" - charge: 0 - - inchis: 1/C17H21NO4/c1-18-12-8-9-13(18)15(17(20)21-2)14(10-12)22-16(19)11-6-4-3-5-7-11/h3-7,12-15H,8-10H2,1-2H3/t12-,13+,14-,15+/s2 - - metFrom: Recon3D + - inchis: "1/C17H21NO4/c1-18-12-8-9-13(18)15(17(20)21-2)14(10-12)22-16(19)11-6-4-3-5-7-11/h3-7,12-15H,8-10H2,1-2H3/t12-,13+,14-,15+/s2" + - metFrom: "Recon3D" - !!omap - - id: m01073s + - id: "m01073s" - name: "5-amino-2-oxopentanoic acid" - - compartment: s - - formula: C5H9NO3 + - compartment: "s" + - formula: "C5H9NO3" - charge: 0 - - inchis: 1S/C5H9NO3/c6-3-1-2-4(7)5(8)9/h1-3,6H2,(H,8,9) - - metFrom: Recon3D + - inchis: "1S/C5H9NO3/c6-3-1-2-4(7)5(8)9/h1-3,6H2,(H,8,9)" + - metFrom: "Recon3D" - !!omap - - id: m01073c + - id: "m01073c" - name: "5-amino-2-oxopentanoic acid" - - compartment: c - - formula: C5H9NO3 + - compartment: "c" + - formula: "C5H9NO3" - charge: 0 - - inchis: 1S/C5H9NO3/c6-3-1-2-4(7)5(8)9/h1-3,6H2,(H,8,9) - - metFrom: Recon3D + - inchis: "1S/C5H9NO3/c6-3-1-2-4(7)5(8)9/h1-3,6H2,(H,8,9)" + - metFrom: "Recon3D" - !!omap - - id: dopa4sf_c + - id: "dopa4sf_c" - name: "Dopamine 4-O-Sulphate" - - compartment: c - - formula: C8H11NO5S + - compartment: "c" + - formula: "C8H11NO5S" - charge: 0 - - inchis: 1S/C8H11NO5S/c9-4-3-6-1-2-8(7(10)5-6)14-15(11,12)13/h1-2,5,10H,3-4,9H2,(H,11,12,13) - - metFrom: Recon3D + - inchis: "1S/C8H11NO5S/c9-4-3-6-1-2-8(7(10)5-6)14-15(11,12)13/h1-2,5,10H,3-4,9H2,(H,11,12,13)" + - metFrom: "Recon3D" - !!omap - - id: dopa4glcur_c + - id: "dopa4glcur_c" - name: "Dopamine-4-O-Glucuronide" - - compartment: c - - formula: C14H19NO8 + - compartment: "c" + - formula: "C14H19NO8" - charge: 0 - - inchis: 1S/C14H19NO8/c15-4-3-6-1-2-8(7(16)5-6)22-14-11(19)9(17)10(18)12(23-14)13(20)21/h1-2,5,9-12,14,16-19H,3-4,15H2,(H,20,21)/t9-,10-,11+,12-,14+/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C14H19NO8/c15-4-3-6-1-2-8(7(16)5-6)22-14-11(19)9(17)10(18)12(23-14)13(20)21/h1-2,5,9-12,14,16-19H,3-4,15H2,(H,20,21)/t9-,10-,11+,12-,14+/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: dopa3glcur_c + - id: "dopa3glcur_c" - name: "Dopamine-3-O-Glucuronide" - - compartment: c - - formula: C14H19NO8 + - compartment: "c" + - formula: "C14H19NO8" - charge: 0 - - inchis: 1S/C14H19NO8/c15-4-3-6-1-2-7(16)8(5-6)22-14-11(19)9(17)10(18)12(23-14)13(20)21/h1-2,5,9-12,14,16-19H,3-4,15H2,(H,20,21)/t9-,10-,11+,12-,14+/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C14H19NO8/c15-4-3-6-1-2-7(16)8(5-6)22-14-11(19)9(17)10(18)12(23-14)13(20)21/h1-2,5,9-12,14,16-19H,3-4,15H2,(H,20,21)/t9-,10-,11+,12-,14+/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: 34dhpe_c + - id: "34dhpe_c" - name: "3,4-Dihydroxyphenylethanol" - - compartment: c - - formula: C8H10O3 + - compartment: "c" + - formula: "C8H10O3" - charge: 0 - - inchis: 1S/C8H10O3/c9-4-3-6-1-2-7(10)8(11)5-6/h1-2,5,9-11H,3-4H2 - - metFrom: Recon3D + - inchis: "1S/C8H10O3/c9-4-3-6-1-2-7(10)8(11)5-6/h1-2,5,9-11H,3-4H2" + - metFrom: "Recon3D" - !!omap - - id: dopa4sf_s + - id: "dopa4sf_s" - name: "Dopamine 4-O-Sulphate" - - compartment: s - - formula: C8H11NO5S + - compartment: "s" + - formula: "C8H11NO5S" - charge: 0 - - inchis: 1S/C8H11NO5S/c9-4-3-6-1-2-8(7(10)5-6)14-15(11,12)13/h1-2,5,10H,3-4,9H2,(H,11,12,13) - - metFrom: Recon3D + - inchis: "1S/C8H11NO5S/c9-4-3-6-1-2-8(7(10)5-6)14-15(11,12)13/h1-2,5,10H,3-4,9H2,(H,11,12,13)" + - metFrom: "Recon3D" - !!omap - - id: dopa4glcur_s + - id: "dopa4glcur_s" - name: "Dopamine-4-O-Glucuronide" - - compartment: s - - formula: C14H19NO8 + - compartment: "s" + - formula: "C14H19NO8" - charge: 0 - - inchis: 1S/C14H19NO8/c15-4-3-6-1-2-8(7(16)5-6)22-14-11(19)9(17)10(18)12(23-14)13(20)21/h1-2,5,9-12,14,16-19H,3-4,15H2,(H,20,21)/t9-,10-,11+,12-,14+/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C14H19NO8/c15-4-3-6-1-2-8(7(16)5-6)22-14-11(19)9(17)10(18)12(23-14)13(20)21/h1-2,5,9-12,14,16-19H,3-4,15H2,(H,20,21)/t9-,10-,11+,12-,14+/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: dopa3glcur_s + - id: "dopa3glcur_s" - name: "Dopamine-3-O-Glucuronide" - - compartment: s - - formula: C14H19NO8 + - compartment: "s" + - formula: "C14H19NO8" - charge: 0 - - inchis: 1S/C14H19NO8/c15-4-3-6-1-2-7(16)8(5-6)22-14-11(19)9(17)10(18)12(23-14)13(20)21/h1-2,5,9-12,14,16-19H,3-4,15H2,(H,20,21)/t9-,10-,11+,12-,14+/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C14H19NO8/c15-4-3-6-1-2-7(16)8(5-6)22-14-11(19)9(17)10(18)12(23-14)13(20)21/h1-2,5,9-12,14,16-19H,3-4,15H2,(H,20,21)/t9-,10-,11+,12-,14+/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m01139s + - id: "m01139s" - name: "5-S-glutathionyl-L-dopa" - - compartment: s - - formula: C19H25N4O10S + - compartment: "s" + - formula: "C19H25N4O10S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 5cysgly34dhphe_s + - id: "5cysgly34dhphe_s" - name: "5-S-Cysteinylglycine Dopa" - - compartment: s - - formula: C14H19N3O7S + - compartment: "s" + - formula: "C14H19N3O7S" - charge: 0 - - inchis: 1S/C14H19N3O7S/c15-7(14(23)24)1-6-2-9(18)12(21)10(3-6)25-5-8(16)13(22)17-4-11(19)20/h2-3,7-8,18,21H,1,4-5,15-16H2,(H,17,22)(H,19,20)(H,23,24)/t7-,8?/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C14H19N3O7S/c15-7(14(23)24)1-6-2-9(18)12(21)10(3-6)25-5-8(16)13(22)17-4-11(19)20/h2-3,7-8,18,21H,1,4-5,15-16H2,(H,17,22)(H,19,20)(H,23,24)/t7-,8?/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m01134s + - id: "m01134s" - name: "5-S-cysteinyldopa" - - compartment: s - - formula: C12H16N2O6S + - compartment: "s" + - formula: "C12H16N2O6S" - charge: 0 - - inchis: 1S/C12H16N2O6S/c13-6(11(17)18)1-5-2-8(15)10(16)9(3-5)21-4-7(14)12(19)20/h2-3,6-7,15-16H,1,4,13-14H2,(H,17,18)(H,19,20)/t6-,7+/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C12H16N2O6S/c13-6(11(17)18)1-5-2-8(15)10(16)9(3-5)21-4-7(14)12(19)20/h2-3,6-7,15-16H,1,4,13-14H2,(H,17,18)(H,19,20)/t6-,7+/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: 6hddopaqn_c + - id: "6hddopaqn_c" - name: "6-Hydroxydopamine-Quinone" - - compartment: c - - formula: C8H10NO3 + - compartment: "c" + - formula: "C8H10NO3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 5cysdopa_c + - id: "5cysdopa_c" - name: "5-S-Cysteinyldopamine" - - compartment: c - - formula: C11H17N2O4S + - compartment: "c" + - formula: "C11H17N2O4S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 23dh1i56dio_c + - id: "23dh1i56dio_c" - name: "2,3-Dihydro-1H-Indole-5,6-Dione" - - compartment: c - - formula: C8H7NO2 + - compartment: "c" + - formula: "C8H7NO2" - charge: 0 - - inchis: 1S/C8H7NO2/c10-7-3-5-1-2-9-6(5)4-8(7)11/h3-4,9H,1-2H2 - - metFrom: Recon3D + - inchis: "1S/C8H7NO2/c10-7-3-5-1-2-9-6(5)4-8(7)11/h3-4,9H,1-2H2" + - metFrom: "Recon3D" - !!omap - - id: 4glu56dihdind_c + - id: "4glu56dihdind_c" - name: "4-S-Glutathionyl-5,6-Dihydroxyindoline" - - compartment: c - - formula: C18H23N4O8S + - compartment: "c" + - formula: "C18H23N4O8S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ind56qn_c + - id: "ind56qn_c" - name: "Indole-5,6-Quinone" - - compartment: c - - formula: C8H5NO2 + - compartment: "c" + - formula: "C8H5NO2" - charge: 0 - - inchis: 1S/C8H5NO2/c10-7-3-5-1-2-9-6(5)4-8(7)11/h1-4,9H - - metFrom: Recon3D + - inchis: "1S/C8H5NO2/c10-7-3-5-1-2-9-6(5)4-8(7)11/h1-4,9H" + - metFrom: "Recon3D" - !!omap - - id: 4glu56dihdind_s + - id: "4glu56dihdind_s" - name: "4-S-Glutathionyl-5,6-Dihydroxyindoline" - - compartment: s - - formula: C18H23N4O8S + - compartment: "s" + - formula: "C18H23N4O8S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 5cysdopa_s + - id: "5cysdopa_s" - name: "5-S-Cysteinyldopamine" - - compartment: s - - formula: C11H17N2O4S + - compartment: "s" + - formula: "C11H17N2O4S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01138s + - id: "m01138s" - name: "5-S-glutathionyl-dopamine" - - compartment: s - - formula: C18H26N4O8S + - compartment: "s" + - formula: "C18H26N4O8S" - charge: 0 - - inchis: 1/C18H26N4O8S/c19-4-3-9-5-12(23)16(27)13(6-9)31-8-11(17(28)21-7-15(25)26)22-14(24)2-1-10(20)18(29)30/h5-6,10-11,23,27H,1-4,7-8,19-20H2,(H,21,28)(H,22,24)(H,25,26)(H,29,30)/t10-,11-/s2 - - metFrom: Recon3D + - inchis: "1/C18H26N4O8S/c19-4-3-9-5-12(23)16(27)13(6-9)31-8-11(17(28)21-7-15(25)26)22-14(24)2-1-10(20)18(29)30/h5-6,10-11,23,27H,1-4,7-8,19-20H2,(H,21,28)(H,22,24)(H,25,26)(H,29,30)/t10-,11-/s2" + - metFrom: "Recon3D" - !!omap - - id: m01154s + - id: "m01154s" - name: "6,7-dihydroxy-1,2,3,4-tetrahydroisoquinoline" - - compartment: s - - formula: C9H12NO2 + - compartment: "s" + - formula: "C9H12NO2" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00231s + - id: "m00231s" - name: "1,2-dehydrosalsolinol" - - compartment: s - - formula: C10H11NO2 + - compartment: "s" + - formula: "C10H11NO2" - charge: 0 - - inchis: 1S/C10H11NO2/c1-6-8-5-10(13)9(12)4-7(8)2-3-11-6/h4-5,12-13H,2-3H2,1H3 - - metFrom: Recon3D + - inchis: "1S/C10H11NO2/c1-6-8-5-10(13)9(12)4-7(8)2-3-11-6/h4-5,12-13H,2-3H2,1H3" + - metFrom: "Recon3D" - !!omap - - id: Rtotal_r + - id: "Rtotal_r" - name: "R Total" - - compartment: r - - formula: CO2R + - compartment: "r" + - formula: "CO2R" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01699r + - id: "m01699r" - name: "dihydroceramide pool" - - compartment: r - - formula: C18H38NO2RCO + - compartment: "r" + - formula: "C18H38NO2RCO" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: Rtotal_g + - id: "Rtotal_g" - name: "R Total" - - compartment: g - - formula: CO2R + - compartment: "g" + - formula: "CO2R" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02927g + - id: "m02927g" - name: "sphinganine" - - compartment: g - - formula: C18H40NO2 + - compartment: "g" + - formula: "C18H40NO2" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01699g + - id: "m01699g" - name: "dihydroceramide pool" - - compartment: g - - formula: C18H38NO2RCO + - compartment: "g" + - formula: "C18H38NO2RCO" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: phcrm_hs_g + - id: "phcrm_hs_g" - name: "Phytoceramide" - - compartment: g - - formula: C18H38NO3RCO + - compartment: "g" + - formula: "C18H38NO3RCO" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: phsphings_g + - id: "phsphings_g" - name: "Phytosphingosine" - - compartment: g - - formula: C18H40NO3 + - compartment: "g" + - formula: "C18H40NO3" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: phcrm_hs_r + - id: "phcrm_hs_r" - name: "Phytoceramide" - - compartment: r - - formula: C18H38NO3RCO + - compartment: "r" + - formula: "C18H38NO3RCO" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: phsphings_r + - id: "phsphings_r" - name: "Phytosphingosine" - - compartment: r - - formula: C18H40NO3 + - compartment: "r" + - formula: "C18H40NO3" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: galgluside_hs_s + - id: "galgluside_hs_s" - name: "Galactosyl Glucosyl Ceramide" - - compartment: s - - formula: C30H56NO12RCO + - compartment: "s" + - formula: "C30H56NO12RCO" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gm1_hs_l + - id: "gm1_hs_l" - name: "Ganglioside Gm1" - - compartment: l - - formula: C55H95N3O30RCO + - compartment: "l" + - formula: "C55H95N3O30RCO" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01905l + - id: "m01905l" - name: "GA2" - - compartment: l - - formula: C38H69N2O17RCO + - compartment: "l" + - formula: "C38H69N2O17RCO" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01904l + - id: "m01904l" - name: "GA1" - - compartment: l - - formula: C44H79N2O22RCO + - compartment: "l" + - formula: "C44H79N2O22RCO" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01946l + - id: "m01946l" - name: "GD2" - - compartment: l - - formula: C60H101N4O33RCO + - compartment: "l" + - formula: "C60H101N4O33RCO" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01943l + - id: "m01943l" - name: "GD1b" - - compartment: l - - formula: C66H111N4O38RCO + - compartment: "l" + - formula: "C66H111N4O38RCO" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02014l + - id: "m02014l" - name: "GM2alpha" - - compartment: l - - formula: C49H85N3O25RCO + - compartment: "l" + - formula: "C49H85N3O25RCO" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02009l + - id: "m02009l" - name: "GM1alpha" - - compartment: l - - formula: C55H95N3O30RCO + - compartment: "l" + - formula: "C55H95N3O30RCO" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: phcrm_hs_c + - id: "phcrm_hs_c" - name: "Phytoceramide" - - compartment: c - - formula: C18H38NO3RCO + - compartment: "c" + - formula: "C18H38NO3RCO" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01947s + - id: "m01947s" - name: "GD3" - - compartment: s - - formula: C52H88N3O28RCO + - compartment: "s" + - formula: "C52H88N3O28RCO" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02015s + - id: "m02015s" - name: "GM3" - - compartment: s - - formula: C41H72N2O20RCO + - compartment: "s" + - formula: "C41H72N2O20RCO" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01904s + - id: "m01904s" - name: "GA1" - - compartment: s - - formula: C44H79N2O22RCO + - compartment: "s" + - formula: "C44H79N2O22RCO" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02009s + - id: "m02009s" - name: "GM1alpha" - - compartment: s - - formula: C55H95N3O30RCO + - compartment: "s" + - formula: "C55H95N3O30RCO" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02014s + - id: "m02014s" - name: "GM2alpha" - - compartment: s - - formula: C49H85N3O25RCO + - compartment: "s" + - formula: "C49H85N3O25RCO" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01947l + - id: "m01947l" - name: "GD3" - - compartment: l - - formula: C52H88N3O28RCO + - compartment: "l" + - formula: "C52H88N3O28RCO" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gm1_hs_s + - id: "gm1_hs_s" - name: "Ganglioside Gm1" - - compartment: s - - formula: C55H95N3O30RCO + - compartment: "s" + - formula: "C55H95N3O30RCO" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gm1_hs_c + - id: "gm1_hs_c" - name: "Ganglioside Gm1" - - compartment: c - - formula: C55H95N3O30RCO + - compartment: "c" + - formula: "C55H95N3O30RCO" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02010s + - id: "m02010s" - name: "GM1b" - - compartment: s - - formula: C55H95N3O30RCO + - compartment: "s" + - formula: "C55H95N3O30RCO" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01941s + - id: "m01941s" - name: "GD1a" - - compartment: s - - formula: C66H111N4O38RCO + - compartment: "s" + - formula: "C66H111N4O38RCO" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01943s + - id: "m01943s" - name: "GD1b" - - compartment: s - - formula: C66H111N4O38RCO + - compartment: "s" + - formula: "C66H111N4O38RCO" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02030s + - id: "m02030s" - name: "GT1b" - - compartment: s - - formula: C77H127N5O46RCO + - compartment: "s" + - formula: "C77H127N5O46RCO" - charge: -3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01946s + - id: "m01946s" - name: "GD2" - - compartment: s - - formula: C60H101N4O33RCO + - compartment: "s" + - formula: "C60H101N4O33RCO" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gm1_hs_n + - id: "gm1_hs_n" - name: "Ganglioside Gm1" - - compartment: n - - formula: C55H95N3O30RCO + - compartment: "n" + - formula: "C55H95N3O30RCO" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01941n + - id: "m01941n" - name: "GD1a" - - compartment: n - - formula: C66H111N4O38RCO + - compartment: "n" + - formula: "C66H111N4O38RCO" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02684n + - id: "m02684n" - name: "PC-LD pool" - - compartment: n - - formula: C10H18NO8PR2 + - compartment: "n" + - formula: "C10H18NO8PR2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02908n + - id: "m02908n" - name: "SM pool" - - compartment: n - - formula: C23H48N2O5PRCO + - compartment: "n" + - formula: "C23H48N2O5PRCO" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: phsphings_c + - id: "phsphings_c" - name: "Phytosphingosine" - - compartment: c - - formula: C18H40NO3 + - compartment: "c" + - formula: "C18H40NO3" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: phsph1p_c + - id: "phsph1p_c" - name: "Phytosphingosine-1-Phosphate" - - compartment: c - - formula: C18H39NO6P + - compartment: "c" + - formula: "C18H39NO6P" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02929n + - id: "m02929n" - name: "sphingosine" - - compartment: n - - formula: C18H38NO2 + - compartment: "n" + - formula: "C18H38NO2" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02930n + - id: "m02930n" - name: "sphingosine-1-phosphate" - - compartment: n - - formula: C18H37NO5P + - compartment: "n" + - formula: "C18H37NO5P" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02927n + - id: "m02927n" - name: "sphinganine" - - compartment: n - - formula: C18H40NO2 + - compartment: "n" + - formula: "C18H40NO2" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02928n + - id: "m02928n" - name: "sphinganine-1-phosphate" - - compartment: n - - formula: C18H39NO5P + - compartment: "n" + - formula: "C18H39NO5P" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02738n + - id: "m02738n" - name: "phosphocholine" - - compartment: n - - formula: C5H13NO4P + - compartment: "n" + - formula: "C5H13NO4P" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01592s + - id: "m01592s" - name: "CMP-N-acetylneuraminate" - - compartment: s - - formula: C20H29N4O16P + - compartment: "s" + - formula: "C20H29N4O16P" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hhxdcal_c + - id: "hhxdcal_c" - name: "2-Hydroxyhexadecanal" - - compartment: c - - formula: C16H32O2 + - compartment: "c" + - formula: "C16H32O2" - charge: 0 - - inchis: 1/C16H32O2/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-16(18)15-17/h15-16,18H,2-14H2,1H3 - - metFrom: Recon3D + - inchis: "1/C16H32O2/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-16(18)15-17/h15-16,18H,2-14H2,1H3" + - metFrom: "Recon3D" - !!omap - - id: 34dhpe_s + - id: "34dhpe_s" - name: "3,4-Dihydroxyphenylethanol" - - compartment: s - - formula: C8H10O3 + - compartment: "s" + - formula: "C8H10O3" - charge: 0 - - inchis: 1S/C8H10O3/c9-4-3-6-1-2-7(10)8(11)5-6/h1-2,5,9-11H,3-4H2 - - metFrom: Recon3D + - inchis: "1S/C8H10O3/c9-4-3-6-1-2-7(10)8(11)5-6/h1-2,5,9-11H,3-4H2" + - metFrom: "Recon3D" - !!omap - - id: m01947m + - id: "m01947m" - name: "GD3" - - compartment: m - - formula: C52H88N3O28RCO + - compartment: "m" + - formula: "C52H88N3O28RCO" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: temp001c + - id: "temp001c" - name: "biomass" - - compartment: c - - formula: X + - compartment: "c" + - formula: "X" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 12dhchol_c + - id: "12dhchol_c" - name: "12-Dehydrocholic acid; 12-Oxodeoxycholic acid; 12oxo-3alpha,7alpha-Dihydroxy-5beta-cholan-24-oic acid" - - compartment: c - - formula: C24H37O5 + - compartment: "c" + - formula: "C24H37O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 12dhchol_s + - id: "12dhchol_s" - name: "12-Dehydrocholic acid; 12-Oxodeoxycholic acid; 12oxo-3alpha,7alpha-Dihydroxy-5beta-cholan-24-oic acid" - - compartment: s - - formula: C24H37O5 + - compartment: "s" + - formula: "C24H37O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3dhchol_c + - id: "3dhchol_c" - name: "3-Dehydrocholic acid; 3oxo-7alpha,12alpha-Dihydroxy-5beta-cholan-24-oic acid" - - compartment: c - - formula: C24H37O5 + - compartment: "c" + - formula: "C24H37O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3dhcdchol_c + - id: "3dhcdchol_c" - name: "3-Dehydrochenodeoxychollyc acid; 7oxo-3alpha-hydroxy-5beta-cholan-24-oic acid" - - compartment: c - - formula: C24H37O4 + - compartment: "c" + - formula: "C24H37O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3dhcdchol_s + - id: "3dhcdchol_s" - name: "3-Dehydrochenodeoxychollyc acid; 7oxo-3alpha-hydroxy-5beta-cholan-24-oic acid" - - compartment: s - - formula: C24H37O4 + - compartment: "s" + - formula: "C24H37O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3dhchol_s + - id: "3dhchol_s" - name: "3-Dehydrocholic acid; 3oxo-7alpha,12alpha-Dihydroxy-5beta-cholan-24-oic acid" - - compartment: s - - formula: C24H37O5 + - compartment: "s" + - formula: "C24H37O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3dhdchol_c + - id: "3dhdchol_c" - name: "3-dehydro-Deoxycholate" - - compartment: c - - formula: C24H37O4 + - compartment: "c" + - formula: "C24H37O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3dhdchol_s + - id: "3dhdchol_s" - name: "3-dehydro-Deoxycholate" - - compartment: s - - formula: C24H37O4 + - compartment: "s" + - formula: "C24H37O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3dhlchol_c + - id: "3dhlchol_c" - name: "3-dehydro-Lithocholate" - - compartment: c - - formula: C24H37O3 + - compartment: "c" + - formula: "C24H37O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3dhlchol_s + - id: "3dhlchol_s" - name: "3-dehydro-Lithocholate" - - compartment: s - - formula: C24H37O3 + - compartment: "s" + - formula: "C24H37O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 7dhcdchol_c + - id: "7dhcdchol_c" - name: "7-Dehydrochenodeoxycholic acid; 7oxo-3alpha-hydroxy-5beta-cholan-24-oic acid" - - compartment: c - - formula: C24H37O4 + - compartment: "c" + - formula: "C24H37O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 7dhcdchol_s + - id: "7dhcdchol_s" - name: "7-Dehydrochenodeoxycholic acid; 7oxo-3alpha-hydroxy-5beta-cholan-24-oic acid" - - compartment: s - - formula: C24H37O4 + - compartment: "s" + - formula: "C24H37O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 7dhchol_c + - id: "7dhchol_c" - name: "7-Dehydrocholic acid; 7-Oxodeoxycholic acid; 7oxo-3alpha,12alpha-Dihydroxy-5beta-cholan-24-oic acid" - - compartment: c - - formula: C24H37O5 + - compartment: "c" + - formula: "C24H37O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 7dhchol_s + - id: "7dhchol_s" - name: "7-Dehydrocholic acid; 7-Oxodeoxycholic acid; 7oxo-3alpha,12alpha-Dihydroxy-5beta-cholan-24-oic acid" - - compartment: s - - formula: C24H37O5 + - compartment: "s" + - formula: "C24H37O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ca24g_c + - id: "ca24g_c" - name: "Cholic acid-24glucuronide, CA-24G" - - compartment: c - - formula: C30H47O11 + - compartment: "c" + - formula: "C30H47O11" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ca24g_r + - id: "ca24g_r" - name: "Cholic acid-24glucuronide, CA-24G" - - compartment: r - - formula: C30H47O11 + - compartment: "r" + - formula: "C30H47O11" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ca24g_s + - id: "ca24g_s" - name: "Cholic acid-24glucuronide, CA-24G" - - compartment: s - - formula: C30H47O11 + - compartment: "s" + - formula: "C30H47O11" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ca3s_c + - id: "ca3s_c" - name: "Cholic acid 3-sulfate" - - compartment: c - - formula: C24H38O8S + - compartment: "c" + - formula: "C24H38O8S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ca3s_s + - id: "ca3s_s" - name: "Cholic acid 3-sulfate" - - compartment: s - - formula: C24H38O8S + - compartment: "s" + - formula: "C24H38O8S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: cdca24g_c + - id: "cdca24g_c" - name: "Chenodeoxycholic acid-24glucuronide, CDCA-24G" - - compartment: c - - formula: C30H47O10 + - compartment: "c" + - formula: "C30H47O10" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: cdca24g_r + - id: "cdca24g_r" - name: "Chenodeoxycholic acid-24glucuronide, CDCA-24G" - - compartment: r - - formula: C30H47O10 + - compartment: "r" + - formula: "C30H47O10" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: cdca24g_s + - id: "cdca24g_s" - name: "Chenodeoxycholic acid-24glucuronide, CDCA-24G" - - compartment: s - - formula: C30H47O10 + - compartment: "s" + - formula: "C30H47O10" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: cdca3g_c + - id: "cdca3g_c" - name: "Chenodeoxycholic acid-3glucuronide, CDCA-3G" - - compartment: c - - formula: C30H47O10 + - compartment: "c" + - formula: "C30H47O10" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: cdca3g_r + - id: "cdca3g_r" - name: "Chenodeoxycholic acid-3glucuronide, CDCA-3G" - - compartment: r - - formula: C30H47O10 + - compartment: "r" + - formula: "C30H47O10" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: cdca3g_s + - id: "cdca3g_s" - name: "Chenodeoxycholic acid-3glucuronide, CDCA-3G" - - compartment: s - - formula: C30H47O10 + - compartment: "s" + - formula: "C30H47O10" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hyochol_c + - id: "hyochol_c" - name: "Hyocholic acid; gamma-Muricholate" - - compartment: c - - formula: C24H39O5 + - compartment: "c" + - formula: "C24H39O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: coprost_c + - id: "coprost_c" - name: "Coprostanol" - - compartment: c - - formula: C27H48O + - compartment: "c" + - formula: "C27H48O" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: coprost_s + - id: "coprost_s" - name: "Coprostanol" - - compartment: s - - formula: C27H48O + - compartment: "s" + - formula: "C27H48O" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: dca24g_c + - id: "dca24g_c" - name: "Deoxycholic acid-24glucuronide, CDA-24G" - - compartment: c - - formula: C30H47O10 + - compartment: "c" + - formula: "C30H47O10" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: dca24g_r + - id: "dca24g_r" - name: "Deoxycholic acid-24glucuronide, CDA-24G" - - compartment: r - - formula: C30H47O10 + - compartment: "r" + - formula: "C30H47O10" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: dca24g_s + - id: "dca24g_s" - name: "Deoxycholic acid-24glucuronide, CDA-24G" - - compartment: s - - formula: C30H47O10 + - compartment: "s" + - formula: "C30H47O10" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: dca3g_c + - id: "dca3g_c" - name: "Deoxycholic acid-3glucuronide, CDA-3G" - - compartment: c - - formula: C30H47O10 + - compartment: "c" + - formula: "C30H47O10" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: dca3g_r + - id: "dca3g_r" - name: "Deoxycholic acid-3glucuronide, CDA-3G" - - compartment: r - - formula: C30H47O10 + - compartment: "r" + - formula: "C30H47O10" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: dca3g_s + - id: "dca3g_s" - name: "Deoxycholic acid-3glucuronide, CDA-3G" - - compartment: s - - formula: C30H47O10 + - compartment: "s" + - formula: "C30H47O10" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: dca3s_c + - id: "dca3s_c" - name: "Deoxycholic acid 3-sulfate" - - compartment: c - - formula: C24H38O7S + - compartment: "c" + - formula: "C24H38O7S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: dca3s_s + - id: "dca3s_s" - name: "Deoxycholic acid 3-sulfate" - - compartment: s - - formula: C24H38O7S + - compartment: "s" + - formula: "C24H38O7S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gca3s_c + - id: "gca3s_c" - name: "Glycocholic acid 3-sulfate" - - compartment: c - - formula: C26H42NO9S + - compartment: "c" + - formula: "C26H42NO9S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gcdca3s_c + - id: "gcdca3s_c" - name: "Glycochenodeoxycholic acid 3-sulfate" - - compartment: c - - formula: C26H42NO8S + - compartment: "c" + - formula: "C26H42NO8S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gdca3s_c + - id: "gdca3s_c" - name: "Glycodeoxycholic acid 3-sulfate" - - compartment: c - - formula: C26H42NO8S + - compartment: "c" + - formula: "C26H42NO8S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gudca3s_c + - id: "gudca3s_c" - name: "Glycoursodeoxycholic acid 3-sulfate" - - compartment: c - - formula: C26H42NO8S + - compartment: "c" + - formula: "C26H42NO8S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hca24g_c + - id: "hca24g_c" - name: "Hyocholic acid-24glucuronide, HCA-24G" - - compartment: c - - formula: C30H47O11 + - compartment: "c" + - formula: "C30H47O11" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hca6g_c + - id: "hca6g_c" - name: "Hyocholic acid-6glucuronide, HCA-6G" - - compartment: c - - formula: C30H47O11 + - compartment: "c" + - formula: "C30H47O11" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hdca24g_c + - id: "hdca24g_c" - name: "Hyodeoxycholic acid-24glucuronide, HDCA-24G" - - compartment: c - - formula: C30H47O10 + - compartment: "c" + - formula: "C30H47O10" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hdca6g_c + - id: "hdca6g_c" - name: "Hyodeoxycholic acid-6glucuronide, HDCA-6G" - - compartment: c - - formula: C30H47O10 + - compartment: "c" + - formula: "C30H47O10" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: icdchol_c + - id: "icdchol_c" - name: "Isochenodeoxycholic acid; 3beta,7alpha-Dihydroxy-5beta-cholanic acid" - - compartment: c - - formula: C24H39O4 + - compartment: "c" + - formula: "C24H39O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: isochol_c + - id: "isochol_c" - name: "Isochenodeoxycholic acid; 3beta,7alpha,12alpha-Trihydroxy-5beta-cholanic acid" - - compartment: c - - formula: C24H39O5 + - compartment: "c" + - formula: "C24H39O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lca24g_c + - id: "lca24g_c" - name: "Lithocholic acid-24glucuronide, CDCA-24G" - - compartment: c - - formula: C30H47O9 + - compartment: "c" + - formula: "C30H47O9" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lca3g_c + - id: "lca3g_c" - name: "Lithocholic acid-3glucuronide, CDCA-3G" - - compartment: c - - formula: C30H47O9 + - compartment: "c" + - formula: "C30H47O9" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lca3s_c + - id: "lca3s_c" - name: "Lithocholic acid 3-sulfate" - - compartment: c - - formula: C24H38O6S + - compartment: "c" + - formula: "C24H38O6S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tca3s_c + - id: "tca3s_c" - name: "Taurocholic acid 3-sulfate" - - compartment: c - - formula: C26H44NO10S2 + - compartment: "c" + - formula: "C26H44NO10S2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tcdca3s_c + - id: "tcdca3s_c" - name: "Taurochenodeoxycholic acid 3-sulfate" - - compartment: c - - formula: C26H44NO9S2 + - compartment: "c" + - formula: "C26H44NO9S2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tdca3s_c + - id: "tdca3s_c" - name: "Taurodeoxycholic acid 3-sulfate" - - compartment: c - - formula: C26H43NO9S2 + - compartment: "c" + - formula: "C26H43NO9S2" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: thyochol_c + - id: "thyochol_c" - name: "Taurohyocholic acid; N-(3alpha,6alpha,7alpha-Trihydroxy-5beta-cholan-24-oyl)taurine" - - compartment: c - - formula: C26H44NO7S + - compartment: "c" + - formula: "C26H44NO7S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tudca3s_c + - id: "tudca3s_c" - name: "Tauroursodeoxycholic acid 3-sulfate" - - compartment: c - - formula: C26H44NO9S2 + - compartment: "c" + - formula: "C26H44NO9S2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: uchol_c + - id: "uchol_c" - name: "Ursocholic acid; 3alpha,7beta,12alpha-Trihydroxy-5beta-cholan-24-oic acid; 3alpha,7beta,12alpha-Trihydroxy-5beta-cholanic acid; 7beta-Hydroxyisocholic acid; 7-Epicholic acid" - - compartment: c - - formula: C24H39O5 + - compartment: "c" + - formula: "C24H39O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: udca3s_c + - id: "udca3s_c" - name: "Ursodeoxycholic acid 3-sulfate" - - compartment: c - - formula: C24H38O7S + - compartment: "c" + - formula: "C24H38O7S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gca3s_s + - id: "gca3s_s" - name: "Glycocholic acid 3-sulfate" - - compartment: s - - formula: C26H42NO9S + - compartment: "s" + - formula: "C26H42NO9S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gcdca3s_s + - id: "gcdca3s_s" - name: "Glycochenodeoxycholic acid 3-sulfate" - - compartment: s - - formula: C26H42NO8S + - compartment: "s" + - formula: "C26H42NO8S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gdca3s_s + - id: "gdca3s_s" - name: "Glycodeoxycholic acid 3-sulfate" - - compartment: s - - formula: C26H42NO8S + - compartment: "s" + - formula: "C26H42NO8S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gudca3s_s + - id: "gudca3s_s" - name: "Glycoursodeoxycholic acid 3-sulfate" - - compartment: s - - formula: C26H42NO8S + - compartment: "s" + - formula: "C26H42NO8S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hca24g_s + - id: "hca24g_s" - name: "Hyocholic acid-24glucuronide, HCA-24G" - - compartment: s - - formula: C30H47O11 + - compartment: "s" + - formula: "C30H47O11" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hca6g_s + - id: "hca6g_s" - name: "Hyocholic acid-6glucuronide, HCA-6G" - - compartment: s - - formula: C30H47O11 + - compartment: "s" + - formula: "C30H47O11" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hdca24g_s + - id: "hdca24g_s" - name: "Hyodeoxycholic acid-24glucuronide, HDCA-24G" - - compartment: s - - formula: C30H47O10 + - compartment: "s" + - formula: "C30H47O10" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hdca6g_s + - id: "hdca6g_s" - name: "Hyodeoxycholic acid-6glucuronide, HDCA-6G" - - compartment: s - - formula: C30H47O10 + - compartment: "s" + - formula: "C30H47O10" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hyochol_s + - id: "hyochol_s" - name: "Hyocholic acid; gamma-Muricholate" - - compartment: s - - formula: C24H39O5 + - compartment: "s" + - formula: "C24H39O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: icdchol_s + - id: "icdchol_s" - name: "Isochenodeoxycholic acid; 3beta,7alpha-Dihydroxy-5beta-cholanic acid" - - compartment: s - - formula: C24H39O4 + - compartment: "s" + - formula: "C24H39O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: isochol_s + - id: "isochol_s" - name: "Isochenodeoxycholic acid; 3beta,7alpha,12alpha-Trihydroxy-5beta-cholanic acid" - - compartment: s - - formula: C24H39O5 + - compartment: "s" + - formula: "C24H39O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lca24g_s + - id: "lca24g_s" - name: "Lithocholic acid-24glucuronide, CDCA-24G" - - compartment: s - - formula: C30H47O9 + - compartment: "s" + - formula: "C30H47O9" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lca3g_s + - id: "lca3g_s" - name: "Lithocholic acid-3glucuronide, CDCA-3G" - - compartment: s - - formula: C30H47O9 + - compartment: "s" + - formula: "C30H47O9" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lca3s_s + - id: "lca3s_s" - name: "Lithocholic acid 3-sulfate" - - compartment: s - - formula: C24H38O6S + - compartment: "s" + - formula: "C24H38O6S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tca3s_s + - id: "tca3s_s" - name: "Taurocholic acid 3-sulfate" - - compartment: s - - formula: C26H44NO10S2 + - compartment: "s" + - formula: "C26H44NO10S2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tcdca3s_s + - id: "tcdca3s_s" - name: "Taurochenodeoxycholic acid 3-sulfate" - - compartment: s - - formula: C26H44NO9S2 + - compartment: "s" + - formula: "C26H44NO9S2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tdca3s_s + - id: "tdca3s_s" - name: "Taurodeoxycholic acid 3-sulfate" - - compartment: s - - formula: C26H43NO9S2 + - compartment: "s" + - formula: "C26H43NO9S2" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: thyochol_s + - id: "thyochol_s" - name: "Taurohyocholic acid; N-(3alpha,6alpha,7alpha-Trihydroxy-5beta-cholan-24-oyl)taurine" - - compartment: s - - formula: C26H44NO7S + - compartment: "s" + - formula: "C26H44NO7S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tudca3s_s + - id: "tudca3s_s" - name: "Tauroursodeoxycholic acid 3-sulfate" - - compartment: s - - formula: C26H44NO9S2 + - compartment: "s" + - formula: "C26H44NO9S2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: uchol_s + - id: "uchol_s" - name: "Ursocholic acid; 3alpha,7beta,12alpha-Trihydroxy-5beta-cholan-24-oic acid; 3alpha,7beta,12alpha-Trihydroxy-5beta-cholanic acid; 7beta-Hydroxyisocholic acid; 7-Epicholic acid" - - compartment: s - - formula: C24H39O5 + - compartment: "s" + - formula: "C24H39O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: udca3s_s + - id: "udca3s_s" - name: "Ursodeoxycholic acid 3-sulfate" - - compartment: s - - formula: C24H38O7S + - compartment: "s" + - formula: "C24H38O7S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hyochol_r + - id: "hyochol_r" - name: "Hyocholic acid; gamma-Muricholate" - - compartment: r - - formula: C24H39O5 + - compartment: "r" + - formula: "C24H39O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hca24g_r + - id: "hca24g_r" - name: "Hyocholic acid-24glucuronide, HCA-24G" - - compartment: r - - formula: C30H47O11 + - compartment: "r" + - formula: "C30H47O11" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hca6g_r + - id: "hca6g_r" - name: "Hyocholic acid-6glucuronide, HCA-6G" - - compartment: r - - formula: C30H47O11 + - compartment: "r" + - formula: "C30H47O11" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02155r + - id: "m02155r" - name: "hyodeoxycholate" - - compartment: r - - formula: C24H40O4 + - compartment: "r" + - formula: "C24H40O4" - charge: 0 - - inchis: 1S/C24H40O4/c1-14(4-7-22(27)28)17-5-6-18-16-13-21(26)20-12-15(25)8-10-24(20,3)19(16)9-11-23(17,18)2/h14-21,25-26H,4-13H2,1-3H3,(H,27,28)/t14-,15-,16?,17?,18?,19?,20?,21+,23-,24-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C24H40O4/c1-14(4-7-22(27)28)17-5-6-18-16-13-21(26)20-12-15(25)8-10-24(20,3)19(16)9-11-23(17,18)2/h14-21,25-26H,4-13H2,1-3H3,(H,27,28)/t14-,15-,16?,17?,18?,19?,20?,21+,23-,24-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: hdca24g_r + - id: "hdca24g_r" - name: "Hyodeoxycholic acid-24glucuronide, HDCA-24G" - - compartment: r - - formula: C30H47O10 + - compartment: "r" + - formula: "C30H47O10" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hdca6g_r + - id: "hdca6g_r" - name: "Hyodeoxycholic acid-6glucuronide, HDCA-6G" - - compartment: r - - formula: C30H47O10 + - compartment: "r" + - formula: "C30H47O10" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lca24g_r + - id: "lca24g_r" - name: "Lithocholic acid-24glucuronide, CDCA-24G" - - compartment: r - - formula: C30H47O9 + - compartment: "r" + - formula: "C30H47O9" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lca3g_r + - id: "lca3g_r" - name: "Lithocholic acid-3glucuronide, CDCA-3G" - - compartment: r - - formula: C30H47O9 + - compartment: "r" + - formula: "C30H47O9" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tacr_r + - id: "tacr_r" - name: "Tacrolimus" - - compartment: r - - formula: C44H69NO12 + - compartment: "r" + - formula: "C44H69NO12" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 12htacr_r + - id: "12htacr_r" - name: "12-HT or M-VI, 12-hydroxy tacrolimus" - - compartment: r - - formula: C44H69NO13 + - compartment: "r" + - formula: "C44H69NO13" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 12htacr_c + - id: "12htacr_c" - name: "12-HT or M-VI, 12-hydroxy tacrolimus" - - compartment: c - - formula: C44H69NO13 + - compartment: "c" + - formula: "C44H69NO13" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 12htacr_s + - id: "12htacr_s" - name: "12-HT or M-VI, 12-hydroxy tacrolimus" - - compartment: s - - formula: C44H69NO13 + - compartment: "s" + - formula: "C44H69NO13" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 13dmt_r + - id: "13dmt_r" - name: "13-O-desmethyl tacrolimus, 13-DMT or M-I" - - compartment: r - - formula: C43H67NO12 + - compartment: "r" + - formula: "C43H67NO12" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 1331tacr_r + - id: "1331tacr_r" - name: "13,31-O-Didesmethyl-tacrolimus" - - compartment: r - - formula: C42H65NO12 + - compartment: "r" + - formula: "C42H65NO12" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 31dmt_r + - id: "31dmt_r" - name: "31-DMT or M-II, 31-O-desmethyl tacrolimus" - - compartment: r - - formula: C43H67NO12 + - compartment: "r" + - formula: "C43H67NO12" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 1331tacr_c + - id: "1331tacr_c" - name: "13,31-O-Didesmethyl-tacrolimus" - - compartment: c - - formula: C42H65NO12 + - compartment: "c" + - formula: "C42H65NO12" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 1331tacr_s + - id: "1331tacr_s" - name: "13,31-O-Didesmethyl-tacrolimus" - - compartment: s - - formula: C42H65NO12 + - compartment: "s" + - formula: "C42H65NO12" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 13dmt_c + - id: "13dmt_c" - name: "13-O-desmethyl tacrolimus, 13-DMT or M-I" - - compartment: c - - formula: C43H67NO12 + - compartment: "c" + - formula: "C43H67NO12" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 13dmt_s + - id: "13dmt_s" - name: "13-O-desmethyl tacrolimus, 13-DMT or M-I" - - compartment: s - - formula: C43H67NO12 + - compartment: "s" + - formula: "C43H67NO12" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 4ohmdz_r + - id: "4ohmdz_r" - name: "4-OH-midazolam" - - compartment: r - - formula: C18H13ClFN3O + - compartment: "r" + - formula: "C18H13ClFN3O" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 14hmdz_r + - id: "14hmdz_r" - name: "1,4-Dihydroxy-midazolam" - - compartment: r - - formula: C18H13ClFN3O2 + - compartment: "r" + - formula: "C18H13ClFN3O2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 1ohmdz_r + - id: "1ohmdz_r" - name: "1'-OH-midazolam" - - compartment: r - - formula: C18H13ClFN3O + - compartment: "r" + - formula: "C18H13ClFN3O" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 14hmdz_c + - id: "14hmdz_c" - name: "1,4-Dihydroxy-midazolam" - - compartment: c - - formula: C18H13ClFN3O2 + - compartment: "c" + - formula: "C18H13ClFN3O2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 14hmdz_s + - id: "14hmdz_s" - name: "1,4-Dihydroxy-midazolam" - - compartment: s - - formula: C18H13ClFN3O2 + - compartment: "s" + - formula: "C18H13ClFN3O2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 15dmt_r + - id: "15dmt_r" - name: "15-DMT or M-III, 15-O-desmethyl tacrolimus" - - compartment: r - - formula: C43H67NO12 + - compartment: "r" + - formula: "C43H67NO12" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 1513tacr_r + - id: "1513tacr_r" - name: "13,15-O-didesmethyl tacrolimus" - - compartment: r - - formula: C42H65NO12 + - compartment: "r" + - formula: "C42H65NO12" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 1513tacr_c + - id: "1513tacr_c" - name: "13,15-O-didesmethyl tacrolimus" - - compartment: c - - formula: C42H65NO12 + - compartment: "c" + - formula: "C42H65NO12" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 1513tacr_s + - id: "1513tacr_s" - name: "13,15-O-didesmethyl tacrolimus" - - compartment: s - - formula: C42H65NO12 + - compartment: "s" + - formula: "C42H65NO12" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 1531tacr_r + - id: "1531tacr_r" - name: "15,31-O-Didesmethyl-tacrolimus" - - compartment: r - - formula: C42H65NO12 + - compartment: "r" + - formula: "C42H65NO12" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 1531tacr_c + - id: "1531tacr_c" - name: "15,31-O-Didesmethyl-tacrolimus" - - compartment: c - - formula: C42H65NO12 + - compartment: "c" + - formula: "C42H65NO12" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 1531tacr_s + - id: "1531tacr_s" - name: "15,31-O-Didesmethyl-tacrolimus" - - compartment: s - - formula: C42H65NO12 + - compartment: "s" + - formula: "C42H65NO12" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 15dmt_c + - id: "15dmt_c" - name: "15-DMT or M-III, 15-O-desmethyl tacrolimus" - - compartment: c - - formula: C43H67NO12 + - compartment: "c" + - formula: "C43H67NO12" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 15dmt_s + - id: "15dmt_s" - name: "15-DMT or M-III, 15-O-desmethyl tacrolimus" - - compartment: s - - formula: C43H67NO12 + - compartment: "s" + - formula: "C43H67NO12" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 1hibupglu_S_c + - id: "1hibupglu_S_c" - name: "1-hydroxy S-ibuprofen-glucuronide" - - compartment: c - - formula: C19H25O9 + - compartment: "c" + - formula: "C19H25O9" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 1hibupglu_S_s + - id: "1hibupglu_S_s" - name: "1-hydroxy S-ibuprofen-glucuronide" - - compartment: s - - formula: C19H25O9 + - compartment: "s" + - formula: "C19H25O9" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 1hibup_S_r + - id: "1hibup_S_r" - name: "1-hydroxy S-ibuprofen" - - compartment: r - - formula: C13H17O3 + - compartment: "r" + - formula: "C13H17O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 1hibupglu_S_r + - id: "1hibupglu_S_r" - name: "1-hydroxy S-ibuprofen-glucuronide" - - compartment: r - - formula: C19H25O9 + - compartment: "r" + - formula: "C19H25O9" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 1hibup_S_c + - id: "1hibup_S_c" - name: "1-hydroxy S-ibuprofen" - - compartment: c - - formula: C13H17O3 + - compartment: "c" + - formula: "C13H17O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 1hibup_S_s + - id: "1hibup_S_s" - name: "1-hydroxy S-ibuprofen" - - compartment: s - - formula: C13H17O3 + - compartment: "s" + - formula: "C13H17O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 1hmdgluc_r + - id: "1hmdgluc_r" - name: "1'-OH-midazolam-glucuronide" - - compartment: r - - formula: C24H20ClFN3O7 + - compartment: "r" + - formula: "C24H20ClFN3O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 1hmdgluc_s + - id: "1hmdgluc_s" - name: "1'-OH-midazolam-glucuronide" - - compartment: s - - formula: C24H20ClFN3O7 + - compartment: "s" + - formula: "C24H20ClFN3O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 1hmdgluc_c + - id: "1hmdgluc_c" - name: "1'-OH-midazolam-glucuronide" - - compartment: c - - formula: C24H20ClFN3O7 + - compartment: "c" + - formula: "C24H20ClFN3O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: mdz_r + - id: "mdz_r" - name: "Midazolam" - - compartment: r - - formula: C18H13ClFN3 + - compartment: "r" + - formula: "C18H13ClFN3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 1ohmdz_c + - id: "1ohmdz_c" - name: "1'-OH-midazolam" - - compartment: c - - formula: C18H13ClFN3O + - compartment: "c" + - formula: "C18H13ClFN3O" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 1ohmdz_s + - id: "1ohmdz_s" - name: "1'-OH-midazolam" - - compartment: s - - formula: C18H13ClFN3O + - compartment: "s" + - formula: "C18H13ClFN3O" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2hatvacid_c + - id: "2hatvacid_c" - name: "2-hydroxy-atorvastatin-acid / ortho-hydroxy-atorvastatin acid" - - compartment: c - - formula: C33H34FN2O6 + - compartment: "c" + - formula: "C33H34FN2O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2hatvlac_c + - id: "2hatvlac_c" - name: "2-hydroxy-atorvastatin-lactone / ortho-hydroxy-atorvastatin lactone" - - compartment: c - - formula: C33H33FN2O5 + - compartment: "c" + - formula: "C33H33FN2O5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2hatvacid_r + - id: "2hatvacid_r" - name: "2-hydroxy-atorvastatin-acid / ortho-hydroxy-atorvastatin acid" - - compartment: r - - formula: C33H34FN2O6 + - compartment: "r" + - formula: "C33H34FN2O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2hatvacidgluc_r + - id: "2hatvacidgluc_r" - name: "2-hydroxy-atorvastatin-acyl-glucuronide" - - compartment: r - - formula: C39H42FN2O12 + - compartment: "r" + - formula: "C39H42FN2O12" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2hatvacidgluc_c + - id: "2hatvacidgluc_c" - name: "2-hydroxy-atorvastatin-acyl-glucuronide" - - compartment: c - - formula: C39H42FN2O12 + - compartment: "c" + - formula: "C39H42FN2O12" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2hatvacidgluc_s + - id: "2hatvacidgluc_s" - name: "2-hydroxy-atorvastatin-acyl-glucuronide" - - compartment: s - - formula: C39H42FN2O12 + - compartment: "s" + - formula: "C39H42FN2O12" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: atvacid_r + - id: "atvacid_r" - name: "atorvastatin-acid" - - compartment: r - - formula: C33H34FN2O5 + - compartment: "r" + - formula: "C33H34FN2O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2hatvacid_s + - id: "2hatvacid_s" - name: "2-hydroxy-atorvastatin-acid / ortho-hydroxy-atorvastatin acid" - - compartment: s - - formula: C33H34FN2O6 + - compartment: "s" + - formula: "C33H34FN2O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2hatvlac_r + - id: "2hatvlac_r" - name: "2-hydroxy-atorvastatin-lactone / ortho-hydroxy-atorvastatin lactone" - - compartment: r - - formula: C33H33FN2O5 + - compartment: "r" + - formula: "C33H33FN2O5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2hatvlacgluc_r + - id: "2hatvlacgluc_r" - name: "2-hydroxy-atorvastatin-lactone-glucuronide" - - compartment: r - - formula: C39H40FN2O11 + - compartment: "r" + - formula: "C39H40FN2O11" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2hatvlacgluc_c + - id: "2hatvlacgluc_c" - name: "2-hydroxy-atorvastatin-lactone-glucuronide" - - compartment: c - - formula: C39H40FN2O11 + - compartment: "c" + - formula: "C39H40FN2O11" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2hatvlacgluc_s + - id: "2hatvlacgluc_s" - name: "2-hydroxy-atorvastatin-lactone-glucuronide" - - compartment: s - - formula: C39H40FN2O11 + - compartment: "s" + - formula: "C39H40FN2O11" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: atvlac_r + - id: "atvlac_r" - name: "atorvastatin-lactone" - - compartment: r - - formula: C33H33FN2O4 + - compartment: "r" + - formula: "C33H33FN2O4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2hatvlac_s + - id: "2hatvlac_s" - name: "2-hydroxy-atorvastatin-lactone / ortho-hydroxy-atorvastatin lactone" - - compartment: s - - formula: C33H33FN2O5 + - compartment: "s" + - formula: "C33H33FN2O5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2hibupglu_S_c + - id: "2hibupglu_S_c" - name: "2-hydroxy S-ibuprofen-glucuronide" - - compartment: c - - formula: C19H25O9 + - compartment: "c" + - formula: "C19H25O9" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2hibupglu_S_s + - id: "2hibupglu_S_s" - name: "2-hydroxy S-ibuprofen-glucuronide" - - compartment: s - - formula: C19H25O9 + - compartment: "s" + - formula: "C19H25O9" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2hibup_R_c + - id: "2hibup_R_c" - name: "2-hydroxy-R-ibuprofen" - - compartment: c - - formula: C13H17O3 + - compartment: "c" + - formula: "C13H17O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2hibup_R_s + - id: "2hibup_R_s" - name: "2-hydroxy-R-ibuprofen" - - compartment: s - - formula: C13H17O3 + - compartment: "s" + - formula: "C13H17O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2hibup_S_r + - id: "2hibup_S_r" - name: "2-hydroxy-S-ibuprofen" - - compartment: r - - formula: C13H17O3 + - compartment: "r" + - formula: "C13H17O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2hibupglu_S_r + - id: "2hibupglu_S_r" - name: "2-hydroxy S-ibuprofen-glucuronide" - - compartment: r - - formula: C19H25O9 + - compartment: "r" + - formula: "C19H25O9" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2hibup_S_c + - id: "2hibup_S_c" - name: "2-hydroxy-S-ibuprofen" - - compartment: c - - formula: C13H17O3 + - compartment: "c" + - formula: "C13H17O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2hibup_S_s + - id: "2hibup_S_s" - name: "2-hydroxy-S-ibuprofen" - - compartment: s - - formula: C13H17O3 + - compartment: "s" + - formula: "C13H17O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 31dmt_c + - id: "31dmt_c" - name: "31-DMT or M-II, 31-O-desmethyl tacrolimus" - - compartment: c - - formula: C43H67NO12 + - compartment: "c" + - formula: "C43H67NO12" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 31dmt_s + - id: "31dmt_s" - name: "31-DMT or M-II, 31-O-desmethyl tacrolimus" - - compartment: s - - formula: C43H67NO12 + - compartment: "s" + - formula: "C43H67NO12" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pvs_r + - id: "pvs_r" - name: "pravastatin" - - compartment: r - - formula: C23H35NaO7 + - compartment: "r" + - formula: "C23H35NaO7" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 35dhpvs_r + - id: "35dhpvs_r" - name: "3'-alpha,5'beta-dihydroxy-pravastatin / 3'-alpha5'beta6'beta-trihydroxy pravastatin" - - compartment: r - - formula: C23H34NaO9 + - compartment: "r" + - formula: "C23H34NaO9" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 35dhpvs_c + - id: "35dhpvs_c" - name: "3'-alpha,5'beta-dihydroxy-pravastatin / 3'-alpha5'beta6'beta-trihydroxy pravastatin" - - compartment: c - - formula: C23H34NaO9 + - compartment: "c" + - formula: "C23H34NaO9" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 35dhpvs_s + - id: "35dhpvs_s" - name: "3'-alpha,5'beta-dihydroxy-pravastatin / 3'-alpha5'beta6'beta-trihydroxy pravastatin" - - compartment: s - - formula: C23H34NaO9 + - compartment: "s" + - formula: "C23H34NaO9" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: smv_r + - id: "smv_r" - name: "simvastatin lactone form" - - compartment: r - - formula: C25H38O5 + - compartment: "r" + - formula: "C25H38O5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 35dsmv_r + - id: "35dsmv_r" - name: "3',5'-dihydrodiol-simvastatin-lactone form" - - compartment: r - - formula: C25H40O7 + - compartment: "r" + - formula: "C25H40O7" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 35dsmv_c + - id: "35dsmv_c" - name: "3',5'-dihydrodiol-simvastatin-lactone form" - - compartment: c - - formula: C25H40O7 + - compartment: "c" + - formula: "C25H40O7" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 35dsmv_s + - id: "35dsmv_s" - name: "3',5'-dihydrodiol-simvastatin-lactone form" - - compartment: s - - formula: C25H40O7 + - compartment: "s" + - formula: "C25H40O7" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hibupglu_S_c + - id: "3hibupglu_S_c" - name: "3-hydroxy S-ibuprofen-glucuronide" - - compartment: c - - formula: C19H25O9 + - compartment: "c" + - formula: "C19H25O9" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hibupglu_S_s + - id: "3hibupglu_S_s" - name: "3-hydroxy S-ibuprofen-glucuronide" - - compartment: s - - formula: C19H25O9 + - compartment: "s" + - formula: "C19H25O9" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hibup_R_c + - id: "3hibup_R_c" - name: "3-hydroxy R-ibuprofen" - - compartment: c - - formula: C13H17O3 + - compartment: "c" + - formula: "C13H17O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hibup_R_s + - id: "3hibup_R_s" - name: "3-hydroxy R-ibuprofen" - - compartment: s - - formula: C13H17O3 + - compartment: "s" + - formula: "C13H17O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hibup_S_r + - id: "3hibup_S_r" - name: "3-hydroxy S-ibuprofen" - - compartment: r - - formula: C13H17O3 + - compartment: "r" + - formula: "C13H17O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hibupglu_S_r + - id: "3hibupglu_S_r" - name: "3-hydroxy S-ibuprofen-glucuronide" - - compartment: r - - formula: C19H25O9 + - compartment: "r" + - formula: "C19H25O9" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hibup_S_c + - id: "3hibup_S_c" - name: "3-hydroxy S-ibuprofen" - - compartment: c - - formula: C13H17O3 + - compartment: "c" + - formula: "C13H17O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hibup_S_s + - id: "3hibup_S_s" - name: "3-hydroxy S-ibuprofen" - - compartment: s - - formula: C13H17O3 + - compartment: "s" + - formula: "C13H17O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hlvst_c + - id: "3hlvst_c" - name: "3''-hydroxy-lovastatin lactone form" - - compartment: c - - formula: C24H36O6 + - compartment: "c" + - formula: "C24H36O6" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hlvstacid_c + - id: "3hlvstacid_c" - name: "3''-hydroxy-lovastatin acid form" - - compartment: c - - formula: C24H37O7 + - compartment: "c" + - formula: "C24H37O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hlvstacid_s + - id: "3hlvstacid_s" - name: "3''-hydroxy-lovastatin acid form" - - compartment: s - - formula: C24H37O7 + - compartment: "s" + - formula: "C24H37O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hpvscoa_m + - id: "3hpvscoa_m" - name: "3'-S-hydroxy-pravastatin-CoA" - - compartment: m - - formula: C44H66N7NaO23P3S + - compartment: "m" + - formula: "C44H66N7NaO23P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hpvstetcoa_m + - id: "3hpvstetcoa_m" - name: "3'-S-hydroxy-pravastatin-tetranor-CoA" - - compartment: m - - formula: C40H58N7NaO21P3S + - compartment: "m" + - formula: "C40H58N7NaO21P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hpvscoa_p + - id: "3hpvscoa_p" - name: "3'-S-hydroxy-pravastatin-CoA" - - compartment: p - - formula: C44H66N7NaO23P3S + - compartment: "p" + - formula: "C44H66N7NaO23P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hpvstetcoa_p + - id: "3hpvstetcoa_p" - name: "3'-S-hydroxy-pravastatin-tetranor-CoA" - - compartment: p - - formula: C40H58N7NaO21P3S + - compartment: "p" + - formula: "C40H58N7NaO21P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hpvstet_c + - id: "3hpvstet_c" - name: "3'-S-hydroxy-pravastatin-tetranor" - - compartment: c - - formula: C19H27NaO6 + - compartment: "c" + - formula: "C19H27NaO6" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hpvstet_s + - id: "3hpvstet_s" - name: "3'-S-hydroxy-pravastatin-tetranor" - - compartment: s - - formula: C19H27NaO6 + - compartment: "s" + - formula: "C19H27NaO6" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hpvs_r + - id: "3hpvs_r" - name: "3'-S-hydroxy-pravastatin" - - compartment: r - - formula: C23H35NaO8 + - compartment: "r" + - formula: "C23H35NaO8" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hpvs_c + - id: "3hpvs_c" - name: "3'-S-hydroxy-pravastatin" - - compartment: c - - formula: C23H35NaO8 + - compartment: "c" + - formula: "C23H35NaO8" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hpvs_s + - id: "3hpvs_s" - name: "3'-S-hydroxy-pravastatin" - - compartment: s - - formula: C23H35NaO8 + - compartment: "s" + - formula: "C23H35NaO8" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hsmv_c + - id: "3hsmv_c" - name: "3'-hydroxy-simvastatin-lactone form" - - compartment: c - - formula: C25H38O6 + - compartment: "c" + - formula: "C25H38O6" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hsmvacid_c + - id: "3hsmvacid_c" - name: "3'-hydroxy-simvastatin-acid form" - - compartment: c - - formula: C25H39O7 + - compartment: "c" + - formula: "C25H39O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hsmvacid_s + - id: "3hsmvacid_s" - name: "3'-hydroxy-simvastatin-acid form" - - compartment: s - - formula: C25H39O7 + - compartment: "s" + - formula: "C25H39O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6hsmv_r + - id: "6hsmv_r" - name: "6'-beta-hydroxy simvastatin lactone" - - compartment: r - - formula: C25H38O6 + - compartment: "r" + - formula: "C25H38O6" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hsmv_r + - id: "3hsmv_r" - name: "3'-hydroxy-simvastatin-lactone form" - - compartment: r - - formula: C25H38O6 + - compartment: "r" + - formula: "C25H38O6" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pvs_c + - id: "pvs_c" - name: "pravastatin" - - compartment: c - - formula: C23H35NaO7 + - compartment: "c" + - formula: "C23H35NaO7" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3ispvs_c + - id: "3ispvs_c" - name: "3-alpha-iso-pravastatin" - - compartment: c - - formula: C23H35NaO7 + - compartment: "c" + - formula: "C23H35NaO7" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3ispvs_s + - id: "3ispvs_s" - name: "3-alpha-iso-pravastatin" - - compartment: s - - formula: C23H35NaO7 + - compartment: "s" + - formula: "C23H35NaO7" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3ohacmp_c + - id: "3ohacmp_c" - name: "3-hydroxy-acetaminophen" - - compartment: c - - formula: C8H9NO3 + - compartment: "c" + - formula: "C8H9NO3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3meacmp_c + - id: "3meacmp_c" - name: "3-methoxy-acetaminophen" - - compartment: c - - formula: C9H11NO3 + - compartment: "c" + - formula: "C9H11NO3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: acmp_r + - id: "acmp_r" - name: "acetaminophen/paracetamol" - - compartment: r - - formula: C8H9NO2 + - compartment: "r" + - formula: "C8H9NO2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3ohacmp_r + - id: "3ohacmp_r" - name: "3-hydroxy-acetaminophen" - - compartment: r - - formula: C8H9NO3 + - compartment: "r" + - formula: "C8H9NO3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3ohacmp_s + - id: "3ohacmp_s" - name: "3-hydroxy-acetaminophen" - - compartment: s - - formula: C8H9NO3 + - compartment: "s" + - formula: "C8H9NO3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 4bhglz_c + - id: "4bhglz_c" - name: "4-beta-OH-gliclazide" - - compartment: c - - formula: C15H20N3O4S + - compartment: "c" + - formula: "C15H20N3O4S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 4bhglz_s + - id: "4bhglz_s" - name: "4-beta-OH-gliclazide" - - compartment: s - - formula: C15H20N3O4S + - compartment: "s" + - formula: "C15H20N3O4S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glz_r + - id: "glz_r" - name: "Gliclazide" - - compartment: r - - formula: C15H20N3O3S + - compartment: "r" + - formula: "C15H20N3O3S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 4bhglz_r + - id: "4bhglz_r" - name: "4-beta-OH-gliclazide" - - compartment: r - - formula: C15H20N3O4S + - compartment: "r" + - formula: "C15H20N3O4S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 4hatvacid_r + - id: "4hatvacid_r" - name: "4-hydroxy-atorvastatin-acid / para-hydroxy-atorvastatin acid" - - compartment: r - - formula: C33H34FN2O6 + - compartment: "r" + - formula: "C33H34FN2O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 4hatvlac_c + - id: "4hatvlac_c" - name: "4-hydroxy-atorvastatin-lactone / para-hydroxy-atorvastatin lactone" - - compartment: c - - formula: C33H33FN2O5 + - compartment: "c" + - formula: "C33H33FN2O5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 4hatvacid_c + - id: "4hatvacid_c" - name: "4-hydroxy-atorvastatin-acid / para-hydroxy-atorvastatin acid" - - compartment: c - - formula: C33H34FN2O6 + - compartment: "c" + - formula: "C33H34FN2O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 4hatvacid_s + - id: "4hatvacid_s" - name: "4-hydroxy-atorvastatin-acid / para-hydroxy-atorvastatin acid" - - compartment: s - - formula: C33H34FN2O6 + - compartment: "s" + - formula: "C33H34FN2O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 4hatvlac_r + - id: "4hatvlac_r" - name: "4-hydroxy-atorvastatin-lactone / para-hydroxy-atorvastatin lactone" - - compartment: r - - formula: C33H33FN2O5 + - compartment: "r" + - formula: "C33H33FN2O5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 4hatvlac_s + - id: "4hatvlac_s" - name: "4-hydroxy-atorvastatin-lactone / para-hydroxy-atorvastatin lactone" - - compartment: s - - formula: C33H33FN2O5 + - compartment: "s" + - formula: "C33H33FN2O5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 4hmdgluc_c + - id: "4hmdgluc_c" - name: "4-OH-midazolam-glucuronide" - - compartment: c - - formula: C24H20ClFN3O7 + - compartment: "c" + - formula: "C24H20ClFN3O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 4hmdgluc_s + - id: "4hmdgluc_s" - name: "4-OH-midazolam-glucuronide" - - compartment: s - - formula: C24H20ClFN3O7 + - compartment: "s" + - formula: "C24H20ClFN3O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 4hmdgluc_r + - id: "4hmdgluc_r" - name: "4-OH-midazolam-glucuronide" - - compartment: r - - formula: C24H20ClFN3O7 + - compartment: "r" + - formula: "C24H20ClFN3O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 4ohmdz_c + - id: "4ohmdz_c" - name: "4-OH-midazolam" - - compartment: c - - formula: C18H13ClFN3O + - compartment: "c" + - formula: "C18H13ClFN3O" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 4ohmdz_s + - id: "4ohmdz_s" - name: "4-OH-midazolam" - - compartment: s - - formula: C18H13ClFN3O + - compartment: "s" + - formula: "C18H13ClFN3O" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tripvs_r + - id: "tripvs_r" - name: "triol metabolite of pravastatin" - - compartment: r - - formula: C23H37NaO9 + - compartment: "r" + - formula: "C23H37NaO9" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 56dhpvs_r + - id: "56dhpvs_r" - name: "3-keto-5,6,-dihydroxy-pravastatin" - - compartment: r - - formula: C23H35NaO9 + - compartment: "r" + - formula: "C23H35NaO9" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 56dhpvs_c + - id: "56dhpvs_c" - name: "3-keto-5,6,-dihydroxy-pravastatin" - - compartment: c - - formula: C23H35NaO9 + - compartment: "c" + - formula: "C23H35NaO9" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 56dhpvs_s + - id: "56dhpvs_s" - name: "3-keto-5,6,-dihydroxy-pravastatin" - - compartment: s - - formula: C23H35NaO9 + - compartment: "s" + - formula: "C23H35NaO9" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3ispvs_r + - id: "3ispvs_r" - name: "3-alpha-iso-pravastatin" - - compartment: r - - formula: C23H35NaO7 + - compartment: "r" + - formula: "C23H35NaO7" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 56eppvs_r + - id: "56eppvs_r" - name: "5,6-epoxy-3-alpha-iso-pravastatin" - - compartment: r - - formula: C23H35NaO8 + - compartment: "r" + - formula: "C23H35NaO8" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 56eppvs_c + - id: "56eppvs_c" - name: "5,6-epoxy-3-alpha-iso-pravastatin" - - compartment: c - - formula: C23H35NaO8 + - compartment: "c" + - formula: "C23H35NaO8" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 56eppvs_s + - id: "56eppvs_s" - name: "5,6-epoxy-3-alpha-iso-pravastatin" - - compartment: s - - formula: C23H35NaO8 + - compartment: "s" + - formula: "C23H35NaO8" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 5ohfvs_r + - id: "5ohfvs_r" - name: "5-hydroxy-fluvastatin" - - compartment: r - - formula: C24H25FNNaO5 + - compartment: "r" + - formula: "C24H25FNNaO5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 5ohfvsglu_r + - id: "5ohfvsglu_r" - name: "5-hydroxy-fluvastatin-glucuronide" - - compartment: r - - formula: C30H32FNNaO11 + - compartment: "r" + - formula: "C30H32FNNaO11" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 5ohfvsglu_c + - id: "5ohfvsglu_c" - name: "5-hydroxy-fluvastatin-glucuronide" - - compartment: c - - formula: C30H32FNNaO11 + - compartment: "c" + - formula: "C30H32FNNaO11" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 5ohfvsglu_s + - id: "5ohfvsglu_s" - name: "5-hydroxy-fluvastatin-glucuronide" - - compartment: s - - formula: C30H32FNNaO11 + - compartment: "s" + - formula: "C30H32FNNaO11" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: fvs_r + - id: "fvs_r" - name: "fluvastatin" - - compartment: r - - formula: C24H25FNNaO4 + - compartment: "r" + - formula: "C24H25FNNaO4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 5ohfvs_c + - id: "5ohfvs_c" - name: "5-hydroxy-fluvastatin" - - compartment: c - - formula: C24H25FNNaO5 + - compartment: "c" + - formula: "C24H25FNNaO5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 5ohfvs_s + - id: "5ohfvs_s" - name: "5-hydroxy-fluvastatin" - - compartment: s - - formula: C24H25FNNaO5 + - compartment: "s" + - formula: "C24H25FNNaO5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6ahglz_c + - id: "6ahglz_c" - name: "6-alpha-OH-gliclazide" - - compartment: c - - formula: C15H20N3O4S + - compartment: "c" + - formula: "C15H20N3O4S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6ahglz_s + - id: "6ahglz_s" - name: "6-alpha-OH-gliclazide" - - compartment: s - - formula: C15H20N3O4S + - compartment: "s" + - formula: "C15H20N3O4S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6ahglz_r + - id: "6ahglz_r" - name: "6-alpha-OH-gliclazide" - - compartment: r - - formula: C15H20N3O4S + - compartment: "r" + - formula: "C15H20N3O4S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6bhglz_c + - id: "6bhglz_c" - name: "6-beta-OH-gliclazide" - - compartment: c - - formula: C15H20N3O4S + - compartment: "c" + - formula: "C15H20N3O4S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6bhglz_s + - id: "6bhglz_s" - name: "6-beta-OH-gliclazide" - - compartment: s - - formula: C15H20N3O4S + - compartment: "s" + - formula: "C15H20N3O4S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6bhglzglc_c + - id: "6bhglzglc_c" - name: "6-beta-OH-gliclazide-glucuronide" - - compartment: c - - formula: C21H27N3O10S + - compartment: "c" + - formula: "C21H27N3O10S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6bhglzglc_s + - id: "6bhglzglc_s" - name: "6-beta-OH-gliclazide-glucuronide" - - compartment: s - - formula: C21H27N3O10S + - compartment: "s" + - formula: "C21H27N3O10S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6bhglz_r + - id: "6bhglz_r" - name: "6-beta-OH-gliclazide" - - compartment: r - - formula: C15H20N3O4S + - compartment: "r" + - formula: "C15H20N3O4S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6bhglzglc_r + - id: "6bhglzglc_r" - name: "6-beta-OH-gliclazide-glucuronide" - - compartment: r - - formula: C21H27N3O10S + - compartment: "r" + - formula: "C21H27N3O10S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6csmv_c + - id: "6csmv_c" - name: "6'-beta-carboxy-simvastatin-lactone form" - - compartment: c - - formula: C25H35O7 + - compartment: "c" + - formula: "C25H35O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6csmvacid_c + - id: "6csmvacid_c" - name: "6'-beta-carboxy-simvastatin-acid form" - - compartment: c - - formula: C25H36O8 + - compartment: "c" + - formula: "C25H36O8" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6csmvacid_s + - id: "6csmvacid_s" - name: "6'-beta-carboxy-simvastatin-acid form" - - compartment: s - - formula: C25H36O8 + - compartment: "s" + - formula: "C25H36O8" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6msmv_r + - id: "6msmv_r" - name: "6'-exomethylene-simvastatin-lactone form" - - compartment: r - - formula: C25H36O5 + - compartment: "r" + - formula: "C25H36O5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6csmv_r + - id: "6csmv_r" - name: "6'-beta-carboxy-simvastatin-lactone form" - - compartment: r - - formula: C25H35O7 + - compartment: "r" + - formula: "C25H35O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6epvs_c + - id: "6epvs_c" - name: "6-epipravastatin" - - compartment: c - - formula: C23H35NaO7 + - compartment: "c" + - formula: "C23H35NaO7" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6epvs_s + - id: "6epvs_s" - name: "6-epipravastatin" - - compartment: s - - formula: C23H35NaO7 + - compartment: "s" + - formula: "C23H35NaO7" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6hlvst_c + - id: "6hlvst_c" - name: "6'-beta-hydroxy-lovastatin lactone form" - - compartment: c - - formula: C24H36O6 + - compartment: "c" + - formula: "C24H36O6" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6hlvstacid_c + - id: "6hlvstacid_c" - name: "6'-beta-hydroxy-lovastatin-acid form" - - compartment: c - - formula: C24H37O7 + - compartment: "c" + - formula: "C24H37O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6hlvst_s + - id: "6hlvst_s" - name: "6'-beta-hydroxy-lovastatin lactone form" - - compartment: s - - formula: C24H36O6 + - compartment: "s" + - formula: "C24H36O6" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6hmsmv_c + - id: "6hmsmv_c" - name: "6'-beta-hydroxy-methyl-simvastatin-lactone form" - - compartment: c - - formula: C25H38O6 + - compartment: "c" + - formula: "C25H38O6" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6hmsmvacid_c + - id: "6hmsmvacid_c" - name: "6'-beta-hydroxy-methyl-simvastatin-acid form" - - compartment: c - - formula: C25H39O7 + - compartment: "c" + - formula: "C25H39O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6hmsmvacid_s + - id: "6hmsmvacid_s" - name: "6'-beta-hydroxy-methyl-simvastatin-acid form" - - compartment: s - - formula: C25H39O7 + - compartment: "s" + - formula: "C25H39O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6hmsmv_r + - id: "6hmsmv_r" - name: "6'-beta-hydroxy-methyl-simvastatin-lactone form" - - compartment: r - - formula: C25H38O6 + - compartment: "r" + - formula: "C25H38O6" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6hsmv_c + - id: "6hsmv_c" - name: "6'-beta-hydroxy simvastatin lactone" - - compartment: c - - formula: C25H38O6 + - compartment: "c" + - formula: "C25H38O6" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6hsmvacid_c + - id: "6hsmvacid_c" - name: "6'-beta-hydroxy simvastatin acid" - - compartment: c - - formula: C25H39O7 + - compartment: "c" + - formula: "C25H39O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6hsmvacid_s + - id: "6hsmvacid_s" - name: "6'-beta-hydroxy simvastatin acid" - - compartment: s - - formula: C25H39O7 + - compartment: "s" + - formula: "C25H39O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6melvst_c + - id: "6melvst_c" - name: "6'-exomethylene-lovastatin lactone form" - - compartment: c - - formula: C24H34O5 + - compartment: "c" + - formula: "C24H34O5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6melvacid_c + - id: "6melvacid_c" - name: "6'-exomethylene-lovastatin-acid form" - - compartment: c - - formula: C24H35O6 + - compartment: "c" + - formula: "C24H35O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6melvacid_s + - id: "6melvacid_s" - name: "6'-exomethylene-lovastatin-acid form" - - compartment: s - - formula: C24H35O6 + - compartment: "s" + - formula: "C24H35O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6melvst_s + - id: "6melvst_s" - name: "6'-exomethylene-lovastatin lactone form" - - compartment: s - - formula: C24H34O5 + - compartment: "s" + - formula: "C24H34O5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6ohfvsglu_r + - id: "6ohfvsglu_r" - name: "6-hydroxy-fluvastatin-glucuronide" - - compartment: r - - formula: C30H32FNNaO11 + - compartment: "r" + - formula: "C30H32FNNaO11" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6ohfvsglu_c + - id: "6ohfvsglu_c" - name: "6-hydroxy-fluvastatin-glucuronide" - - compartment: c - - formula: C30H32FNNaO11 + - compartment: "c" + - formula: "C30H32FNNaO11" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6ohfvsglu_s + - id: "6ohfvsglu_s" - name: "6-hydroxy-fluvastatin-glucuronide" - - compartment: s - - formula: C30H32FNNaO11 + - compartment: "s" + - formula: "C30H32FNNaO11" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6ohfvs_r + - id: "6ohfvs_r" - name: "6-hydroxy-fluvastatin" - - compartment: r - - formula: C24H25FNNaO5 + - compartment: "r" + - formula: "C24H25FNNaO5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6ohfvs_c + - id: "6ohfvs_c" - name: "6-hydroxy-fluvastatin" - - compartment: c - - formula: C24H25FNNaO5 + - compartment: "c" + - formula: "C24H25FNNaO5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6ohfvs_s + - id: "6ohfvs_s" - name: "6-hydroxy-fluvastatin" - - compartment: s - - formula: C24H25FNNaO5 + - compartment: "s" + - formula: "C24H25FNNaO5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 7ahglz_c + - id: "7ahglz_c" - name: "7-alpha-OH-gliclazide" - - compartment: c - - formula: C15H20N3O4S + - compartment: "c" + - formula: "C15H20N3O4S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 7ahglz_s + - id: "7ahglz_s" - name: "7-alpha-OH-gliclazide" - - compartment: s - - formula: C15H20N3O4S + - compartment: "s" + - formula: "C15H20N3O4S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 7ahglz_r + - id: "7ahglz_r" - name: "7-alpha-OH-gliclazide" - - compartment: r - - formula: C15H20N3O4S + - compartment: "r" + - formula: "C15H20N3O4S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 7bhglz_c + - id: "7bhglz_c" - name: "7-beta-OH-gliclazide" - - compartment: c - - formula: C15H20N3O4S + - compartment: "c" + - formula: "C15H20N3O4S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 7bhglz_s + - id: "7bhglz_s" - name: "7-beta-OH-gliclazide" - - compartment: s - - formula: C15H20N3O4S + - compartment: "s" + - formula: "C15H20N3O4S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 7bhglzglc_c + - id: "7bhglzglc_c" - name: "7-beta-OH-gliclazide-glucuronide" - - compartment: c - - formula: C21H27N3O10S + - compartment: "c" + - formula: "C21H27N3O10S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 7bhglzglc_s + - id: "7bhglzglc_s" - name: "7-beta-OH-gliclazide-glucuronide" - - compartment: s - - formula: C21H27N3O10S + - compartment: "s" + - formula: "C21H27N3O10S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 7bhglz_r + - id: "7bhglz_r" - name: "7-beta-OH-gliclazide" - - compartment: r - - formula: C15H20N3O4S + - compartment: "r" + - formula: "C15H20N3O4S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 7bhglzglc_r + - id: "7bhglzglc_r" - name: "7-beta-OH-gliclazide-glucuronide" - - compartment: r - - formula: C21H27N3O10S + - compartment: "r" + - formula: "C21H27N3O10S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 7hpvs_r + - id: "7hpvs_r" - name: "7-hydroxy-3-alpha-iso-pravastatin" - - compartment: r - - formula: C23H35NaO8 + - compartment: "r" + - formula: "C23H35NaO8" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 7hpvs_c + - id: "7hpvs_c" - name: "7-hydroxy-3-alpha-iso-pravastatin" - - compartment: c - - formula: C23H35NaO8 + - compartment: "c" + - formula: "C23H35NaO8" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 7hpvs_s + - id: "7hpvs_s" - name: "7-hydroxy-3-alpha-iso-pravastatin" - - compartment: s - - formula: C23H35NaO8 + - compartment: "s" + - formula: "C23H35NaO8" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: allop_s + - id: "allop_s" - name: "allopurinol" - - compartment: s - - formula: C5H4N4O + - compartment: "s" + - formula: "C5H4N4O" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: allop_c + - id: "allop_c" - name: "allopurinol" - - compartment: c - - formula: C5H4N4O + - compartment: "c" + - formula: "C5H4N4O" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: acmp_c + - id: "acmp_c" - name: "acetaminophen/paracetamol" - - compartment: c - - formula: C8H9NO2 + - compartment: "c" + - formula: "C8H9NO2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: acmp_s + - id: "acmp_s" - name: "acetaminophen/paracetamol" - - compartment: s - - formula: C8H9NO2 + - compartment: "s" + - formula: "C8H9NO2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: acmpglu_r + - id: "acmpglu_r" - name: "Acetaminophen glucuronide" - - compartment: r - - formula: C14H16NO8 + - compartment: "r" + - formula: "C14H16NO8" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: acmpglut_s + - id: "acmpglut_s" - name: "acetaminophen-glutathione-conjugate" - - compartment: s - - formula: C18H27N4O10S + - compartment: "s" + - formula: "C18H27N4O10S" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: acmpglut_c + - id: "acmpglut_c" - name: "acetaminophen-glutathione-conjugate" - - compartment: c - - formula: C18H27N4O10S + - compartment: "c" + - formula: "C18H27N4O10S" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: acmpglu_c + - id: "acmpglu_c" - name: "Acetaminophen glucuronide" - - compartment: c - - formula: C14H16NO8 + - compartment: "c" + - formula: "C14H16NO8" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: acmpglu_s + - id: "acmpglu_s" - name: "Acetaminophen glucuronide" - - compartment: s - - formula: C14H16NO8 + - compartment: "s" + - formula: "C14H16NO8" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sulpacmp_c + - id: "sulpacmp_c" - name: "sulphate-conjugate-acetaminophen" - - compartment: c - - formula: C8H8NO5S + - compartment: "c" + - formula: "C8H8NO5S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: oxyp_c + - id: "oxyp_c" - name: "oxypurinol" - - compartment: c - - formula: C5H4N4O2 + - compartment: "c" + - formula: "C5H4N4O2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am1csa_r + - id: "am1csa_r" - name: "AM1 (cyclosporine)" - - compartment: r - - formula: C62H111N11O13 + - compartment: "r" + - formula: "C62H111N11O13" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am19cs_r + - id: "am19cs_r" - name: "AM19 (cyclosporine)" - - compartment: r - - formula: C62H111N11O14 + - compartment: "r" + - formula: "C62H111N11O14" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am9csa_r + - id: "am9csa_r" - name: "AM9 (cyclosporine)" - - compartment: r - - formula: C62H111N11O13 + - compartment: "r" + - formula: "C62H111N11O13" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am19cs_c + - id: "am19cs_c" - name: "AM19 (cyclosporine)" - - compartment: c - - formula: C62H111N11O14 + - compartment: "c" + - formula: "C62H111N11O14" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am19cs_s + - id: "am19cs_s" - name: "AM19 (cyclosporine)" - - compartment: s - - formula: C62H111N11O14 + - compartment: "s" + - formula: "C62H111N11O14" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am1acs_c + - id: "am1acs_c" - name: "AM1A (cyclosporine)" - - compartment: c - - formula: C62H108N11O14 + - compartment: "c" + - formula: "C62H108N11O14" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am1a4ncs_c + - id: "am1a4ncs_c" - name: "AM1A4N (cyclosporine)" - - compartment: c - - formula: C61H106N11O14 + - compartment: "c" + - formula: "C61H106N11O14" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am1a4ncs_s + - id: "am1a4ncs_s" - name: "AM1A4N (cyclosporine)" - - compartment: s - - formula: C61H106N11O14 + - compartment: "s" + - formula: "C61H106N11O14" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am1ccs_r + - id: "am1ccs_r" - name: "AM1c (cyclosporine)" - - compartment: r - - formula: C62H111N11O13 + - compartment: "r" + - formula: "C62H111N11O13" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am1accs_r + - id: "am1accs_r" - name: "AM1Ac (cyclosporine)" - - compartment: r - - formula: C62H108N11O14 + - compartment: "r" + - formula: "C62H108N11O14" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am1accs_c + - id: "am1accs_c" - name: "AM1Ac (cyclosporine)" - - compartment: c - - formula: C62H108N11O14 + - compartment: "c" + - formula: "C62H108N11O14" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am1accs_s + - id: "am1accs_s" - name: "AM1Ac (cyclosporine)" - - compartment: s - - formula: C62H108N11O14 + - compartment: "s" + - formula: "C62H108N11O14" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am1alcs_r + - id: "am1alcs_r" - name: "AM1AL (cyclosporine)" - - compartment: r - - formula: C62H109N11O13 + - compartment: "r" + - formula: "C62H109N11O13" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am1acs_r + - id: "am1acs_r" - name: "AM1A (cyclosporine)" - - compartment: r - - formula: C62H108N11O14 + - compartment: "r" + - formula: "C62H108N11O14" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am1acs_s + - id: "am1acs_s" - name: "AM1A (cyclosporine)" - - compartment: s - - formula: C62H108N11O14 + - compartment: "s" + - formula: "C62H108N11O14" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am1csa_c + - id: "am1csa_c" - name: "AM1 (cyclosporine)" - - compartment: c - - formula: C62H111N11O13 + - compartment: "c" + - formula: "C62H111N11O13" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am1alcs_c + - id: "am1alcs_c" - name: "AM1AL (cyclosporine)" - - compartment: c - - formula: C62H109N11O13 + - compartment: "c" + - formula: "C62H109N11O13" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am1alcs_s + - id: "am1alcs_s" - name: "AM1AL (cyclosporine)" - - compartment: s - - formula: C62H109N11O13 + - compartment: "s" + - formula: "C62H109N11O13" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am1c9cs_c + - id: "am1c9cs_c" - name: "AM1c9 (cyclosporine)" - - compartment: c - - formula: C62H111N11O14 + - compartment: "c" + - formula: "C62H111N11O14" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am1c4n9cs_c + - id: "am1c4n9cs_c" - name: "AM1c4N9 (cyclosporine)" - - compartment: c - - formula: C61H109N11O14 + - compartment: "c" + - formula: "C61H109N11O14" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am1c4n9cs_s + - id: "am1c4n9cs_s" - name: "AM1c4N9 (cyclosporine)" - - compartment: s - - formula: C61H109N11O14 + - compartment: "s" + - formula: "C61H109N11O14" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am1c9cs_r + - id: "am1c9cs_r" - name: "AM1c9 (cyclosporine)" - - compartment: r - - formula: C62H111N11O14 + - compartment: "r" + - formula: "C62H111N11O14" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am1c9cs_s + - id: "am1c9cs_s" - name: "AM1c9 (cyclosporine)" - - compartment: s - - formula: C62H111N11O14 + - compartment: "s" + - formula: "C62H111N11O14" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: csa_r + - id: "csa_r" - name: "cyclosporine" - - compartment: r - - formula: C62H111N11O12 + - compartment: "r" + - formula: "C62H111N11O12" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am1ccs_c + - id: "am1ccs_c" - name: "AM1c (cyclosporine)" - - compartment: c - - formula: C62H111N11O13 + - compartment: "c" + - formula: "C62H111N11O13" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am1ccs_s + - id: "am1ccs_s" - name: "AM1c (cyclosporine)" - - compartment: s - - formula: C62H111N11O13 + - compartment: "s" + - formula: "C62H111N11O13" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am1cglc_r + - id: "am1cglc_r" - name: "AM1c-glucuronide (cyclosporine)" - - compartment: r - - formula: C68H118N11O19 + - compartment: "r" + - formula: "C68H118N11O19" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am1cglc_c + - id: "am1cglc_c" - name: "AM1c-glucuronide (cyclosporine)" - - compartment: c - - formula: C68H118N11O19 + - compartment: "c" + - formula: "C68H118N11O19" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am1cglc_s + - id: "am1cglc_s" - name: "AM1c-glucuronide (cyclosporine)" - - compartment: s - - formula: C68H118N11O19 + - compartment: "s" + - formula: "C68H118N11O19" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am1csa_s + - id: "am1csa_s" - name: "AM1 (cyclosporine)" - - compartment: s - - formula: C62H111N11O13 + - compartment: "s" + - formula: "C62H111N11O13" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am9csa_c + - id: "am9csa_c" - name: "AM9 (cyclosporine)" - - compartment: c - - formula: C62H111N11O13 + - compartment: "c" + - formula: "C62H111N11O13" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am4n9cs_c + - id: "am4n9cs_c" - name: "AM4N9 (cyclosporine)" - - compartment: c - - formula: C61H109N11O13 + - compartment: "c" + - formula: "C61H109N11O13" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am4ncs_r + - id: "am4ncs_r" - name: "AM4N (cyclosporine)" - - compartment: r - - formula: C61H109N11O12 + - compartment: "r" + - formula: "C61H109N11O12" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am4n9cs_r + - id: "am4n9cs_r" - name: "AM4N9 (cyclosporine)" - - compartment: r - - formula: C61H109N11O13 + - compartment: "r" + - formula: "C61H109N11O13" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am4n9cs_s + - id: "am4n9cs_s" - name: "AM4N9 (cyclosporine)" - - compartment: s - - formula: C61H109N11O13 + - compartment: "s" + - formula: "C61H109N11O13" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: csa_c + - id: "csa_c" - name: "cyclosporine" - - compartment: c - - formula: C62H111N11O12 + - compartment: "c" + - formula: "C62H111N11O12" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am4ncs_c + - id: "am4ncs_c" - name: "AM4N (cyclosporine)" - - compartment: c - - formula: C61H109N11O12 + - compartment: "c" + - formula: "C61H109N11O12" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am4ncs_s + - id: "am4ncs_s" - name: "AM4N (cyclosporine)" - - compartment: s - - formula: C61H109N11O12 + - compartment: "s" + - formula: "C61H109N11O12" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am9csa_s + - id: "am9csa_s" - name: "AM9 (cyclosporine)" - - compartment: s - - formula: C62H111N11O13 + - compartment: "s" + - formula: "C62H111N11O13" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: atvacid_s + - id: "atvacid_s" - name: "atorvastatin-acid" - - compartment: s - - formula: C33H34FN2O5 + - compartment: "s" + - formula: "C33H34FN2O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: atvacid_c + - id: "atvacid_c" - name: "atorvastatin-acid" - - compartment: c - - formula: C33H34FN2O5 + - compartment: "c" + - formula: "C33H34FN2O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: atvlac_c + - id: "atvlac_c" - name: "atorvastatin-lactone" - - compartment: c - - formula: C33H33FN2O4 + - compartment: "c" + - formula: "C33H33FN2O4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: atvethgluc_r + - id: "atvethgluc_r" - name: "atorvastatin-ether-glucuronide -G1" - - compartment: r - - formula: C45H48FN2O17 + - compartment: "r" + - formula: "C45H48FN2O17" - charge: -3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: atvacylgluc_r + - id: "atvacylgluc_r" - name: "atorvastatin-acyl-glucuronide / G2" - - compartment: r - - formula: C39H42FN2O11 + - compartment: "r" + - formula: "C39H42FN2O11" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: atvlacgluc_r + - id: "atvlacgluc_r" - name: "atorvastatin-lactone-ether-glucuronide / G3" - - compartment: r - - formula: C39H40FN2O10 + - compartment: "r" + - formula: "C39H40FN2O10" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: atvlac_s + - id: "atvlac_s" - name: "atorvastatin-lactone" - - compartment: s - - formula: C33H33FN2O4 + - compartment: "s" + - formula: "C33H33FN2O4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: caribupglu_S_c + - id: "caribupglu_S_c" - name: "S-carboxy ibuprofen glucuronide" - - compartment: c - - formula: C19H22O10 + - compartment: "c" + - formula: "C19H22O10" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: caribupglu_S_s + - id: "caribupglu_S_s" - name: "S-carboxy ibuprofen glucuronide" - - compartment: s - - formula: C19H22O10 + - compartment: "s" + - formula: "C19H22O10" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: caribup_R_c + - id: "caribup_R_c" - name: "R-carboxy ibuprofen" - - compartment: c - - formula: C13H14O4 + - compartment: "c" + - formula: "C13H14O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: caribup_R_s + - id: "caribup_R_s" - name: "R-carboxy ibuprofen" - - compartment: s - - formula: C13H14O4 + - compartment: "s" + - formula: "C13H14O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: caribup_s_r + - id: "caribup_s_r" - name: "S-carboxy ibuprofen" - - compartment: r - - formula: C13H14O4 + - compartment: "r" + - formula: "C13H14O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: caribupglu_S_r + - id: "caribupglu_S_r" - name: "S-carboxy ibuprofen glucuronide" - - compartment: r - - formula: C19H22O10 + - compartment: "r" + - formula: "C19H22O10" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: caribup_s_c + - id: "caribup_s_c" - name: "S-carboxy ibuprofen" - - compartment: c - - formula: C13H14O4 + - compartment: "c" + - formula: "C13H14O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: caribup_s_s + - id: "caribup_s_s" - name: "S-carboxy ibuprofen" - - compartment: s - - formula: C13H14O4 + - compartment: "s" + - formula: "C13H14O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: crglz_c + - id: "crglz_c" - name: "carboxy-gliclazide" - - compartment: c - - formula: C15H17N3O5S + - compartment: "c" + - formula: "C15H17N3O5S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: crglz_s + - id: "crglz_s" - name: "carboxy-gliclazide" - - compartment: s - - formula: C15H17N3O5S + - compartment: "s" + - formula: "C15H17N3O5S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: mhglz_r + - id: "mhglz_r" - name: "Methyl-hydroxy-gliclazide" - - compartment: r - - formula: C15H20N3O4S + - compartment: "r" + - formula: "C15H20N3O4S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: crglz_r + - id: "crglz_r" - name: "carboxy-gliclazide" - - compartment: r - - formula: C15H17N3O5S + - compartment: "r" + - formula: "C15H17N3O5S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: crvsm1_r + - id: "crvsm1_r" - name: "cerivastatin-M1" - - compartment: r - - formula: C24H29FNNaO5 + - compartment: "r" + - formula: "C24H29FNNaO5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: crvsm24_r + - id: "crvsm24_r" - name: "cerivastatin-M24" - - compartment: r - - formula: C24H29FNNaO6 + - compartment: "r" + - formula: "C24H29FNNaO6" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: crvsm1_c + - id: "crvsm1_c" - name: "cerivastatin-M1" - - compartment: c - - formula: C24H29FNNaO5 + - compartment: "c" + - formula: "C24H29FNNaO5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: crvsm1_s + - id: "crvsm1_s" - name: "cerivastatin-M1" - - compartment: s - - formula: C24H29FNNaO5 + - compartment: "s" + - formula: "C24H29FNNaO5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: crvsm23_r + - id: "crvsm23_r" - name: "cerivastatin-M23" - - compartment: r - - formula: C25H31FNNaO6 + - compartment: "r" + - formula: "C25H31FNNaO6" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: crvs_s + - id: "crvs_s" - name: "cerivastatin" - - compartment: s - - formula: C25H31FNNaO5 + - compartment: "s" + - formula: "C25H31FNNaO5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: crvs_c + - id: "crvs_c" - name: "cerivastatin" - - compartment: c - - formula: C25H31FNNaO5 + - compartment: "c" + - formula: "C25H31FNNaO5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: crvsm22_c + - id: "crvsm22_c" - name: "cerivastatin-M22" - - compartment: c - - formula: C25H29FNNaO4 + - compartment: "c" + - formula: "C25H29FNNaO4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: crvs_r + - id: "crvs_r" - name: "cerivastatin" - - compartment: r - - formula: C25H31FNNaO5 + - compartment: "r" + - formula: "C25H31FNNaO5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: cvm1gluc_r + - id: "cvm1gluc_r" - name: "cerivastatin-M1-glucuronide" - - compartment: r - - formula: C30H36FNNaO11 + - compartment: "r" + - formula: "C30H36FNNaO11" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: crvsm22_r + - id: "crvsm22_r" - name: "cerivastatin-M22" - - compartment: r - - formula: C25H29FNNaO4 + - compartment: "r" + - formula: "C25H29FNNaO4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: cvm23gluc_r + - id: "cvm23gluc_r" - name: "cerivastatin-M23-glucuronide" - - compartment: r - - formula: C31H38FNNaO12 + - compartment: "r" + - formula: "C31H38FNNaO12" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: crvsm23_c + - id: "crvsm23_c" - name: "cerivastatin-M23" - - compartment: c - - formula: C25H31FNNaO6 + - compartment: "c" + - formula: "C25H31FNNaO6" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: crvsm23_s + - id: "crvsm23_s" - name: "cerivastatin-M23" - - compartment: s - - formula: C25H31FNNaO6 + - compartment: "s" + - formula: "C25H31FNNaO6" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: crvsm24_c + - id: "crvsm24_c" - name: "cerivastatin-M24" - - compartment: c - - formula: C24H29FNNaO6 + - compartment: "c" + - formula: "C24H29FNNaO6" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: crvsm24_s + - id: "crvsm24_s" - name: "cerivastatin-M24" - - compartment: s - - formula: C24H29FNNaO6 + - compartment: "s" + - formula: "C24H29FNNaO6" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: crvsm31_r + - id: "crvsm31_r" - name: "cerivastatin-M31" - - compartment: r - - formula: C26H31FNNaO5 + - compartment: "r" + - formula: "C26H31FNNaO5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: csasulp_c + - id: "csasulp_c" - name: "cyclosporine-sulphate" - - compartment: c - - formula: C62H110N11O15S + - compartment: "c" + - formula: "C62H110N11O15S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: csasulp_s + - id: "csasulp_s" - name: "cyclosporine-sulphate" - - compartment: s - - formula: C62H110N11O15S + - compartment: "s" + - formula: "C62H110N11O15S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: csa_s + - id: "csa_s" - name: "cyclosporine" - - compartment: s - - formula: C62H111N11O12 + - compartment: "s" + - formula: "C62H111N11O12" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: cysacmp_c + - id: "cysacmp_c" - name: "cysteine-conjugate-acetaminophen" - - compartment: c - - formula: C11H14N2O4S + - compartment: "c" + - formula: "C11H14N2O4S" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: meracmp_c + - id: "meracmp_c" - name: "acetaminophen-mercapturate-conjugate/N-acetyl-cysteine-acetaminophen" - - compartment: c - - formula: C13H15N2O5S + - compartment: "c" + - formula: "C13H15N2O5S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: cysacmp_s + - id: "cysacmp_s" - name: "cysteine-conjugate-acetaminophen" - - compartment: s - - formula: C11H14N2O4S + - compartment: "s" + - formula: "C11H14N2O4S" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: crvsm31_c + - id: "crvsm31_c" - name: "cerivastatin-M31" - - compartment: c - - formula: C26H31FNNaO5 + - compartment: "c" + - formula: "C26H31FNNaO5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: fvs_p + - id: "fvs_p" - name: "fluvastatin" - - compartment: p - - formula: C24H25FNNaO4 + - compartment: "p" + - formula: "C24H25FNNaO4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: deoxfvs_p + - id: "deoxfvs_p" - name: "deoxy-fluvastatin-dinor" - - compartment: p - - formula: C22H21FNNaO2 + - compartment: "p" + - formula: "C22H21FNNaO2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: deoxfvs_c + - id: "deoxfvs_c" - name: "deoxy-fluvastatin-dinor" - - compartment: c - - formula: C22H21FNNaO2 + - compartment: "c" + - formula: "C22H21FNNaO2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: deoxfvs_s + - id: "deoxfvs_s" - name: "deoxy-fluvastatin-dinor" - - compartment: s - - formula: C22H21FNNaO2 + - compartment: "s" + - formula: "C22H21FNNaO2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: desfvs_r + - id: "desfvs_r" - name: "N-desisopropyl-fluvastatin" - - compartment: r - - formula: C21H19FNNaO4 + - compartment: "r" + - formula: "C21H19FNNaO4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: desfvs_c + - id: "desfvs_c" - name: "N-desisopropyl-fluvastatin" - - compartment: c - - formula: C21H19FNNaO4 + - compartment: "c" + - formula: "C21H19FNNaO4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: desfvs_s + - id: "desfvs_s" - name: "N-desisopropyl-fluvastatin" - - compartment: s - - formula: C21H19FNNaO4 + - compartment: "s" + - formula: "C21H19FNNaO4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: dhglz_c + - id: "dhglz_c" - name: "dehydro-gliclazide" - - compartment: c - - formula: C15H18N3O3S + - compartment: "c" + - formula: "C15H18N3O3S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: dhglz_s + - id: "dhglz_s" - name: "dehydro-gliclazide" - - compartment: s - - formula: C15H18N3O3S + - compartment: "s" + - formula: "C15H18N3O3S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glz_c + - id: "glz_c" - name: "Gliclazide" - - compartment: c - - formula: C15H20N3O3S + - compartment: "c" + - formula: "C15H20N3O3S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: dspvs_r + - id: "dspvs_r" - name: "desacyl dehydro-pravastatin" - - compartment: r - - formula: C18H23NaO5 + - compartment: "r" + - formula: "C18H23NaO5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: dspvs_c + - id: "dspvs_c" - name: "desacyl dehydro-pravastatin" - - compartment: c - - formula: C18H23NaO5 + - compartment: "c" + - formula: "C18H23NaO5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: dspvs_s + - id: "dspvs_s" - name: "desacyl dehydro-pravastatin" - - compartment: s - - formula: C18H23NaO5 + - compartment: "s" + - formula: "C18H23NaO5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: epoxtac_r + - id: "epoxtac_r" - name: "31-O-Desmethyl,19-Hydroxy,37, 39-Epoxy-tacrolimus" - - compartment: r - - formula: C41H63NO14 + - compartment: "r" + - formula: "C41H63NO14" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: epoxtac_c + - id: "epoxtac_c" - name: "31-O-Desmethyl,19-Hydroxy,37, 39-Epoxy-tacrolimus" - - compartment: c - - formula: C41H63NO14 + - compartment: "c" + - formula: "C41H63NO14" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: epoxtac_s + - id: "epoxtac_s" - name: "31-O-Desmethyl,19-Hydroxy,37, 39-Epoxy-tacrolimus" - - compartment: s - - formula: C41H63NO14 + - compartment: "s" + - formula: "C41H63NO14" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: fvs_s + - id: "fvs_s" - name: "fluvastatin" - - compartment: s - - formula: C24H25FNNaO4 + - compartment: "s" + - formula: "C24H25FNNaO4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: fvstet_s + - id: "fvstet_s" - name: "des-isopropyl-dihydro-fluvastatin-tetranor" - - compartment: s - - formula: C17H13FNNaO2 + - compartment: "s" + - formula: "C17H13FNNaO2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: fvstetglu_s + - id: "fvstetglu_s" - name: "des-isopropyl-dihydro-fluvastatin-tetranor-glucuronide" - - compartment: s - - formula: C23H20FNNaO8 + - compartment: "s" + - formula: "C23H20FNNaO8" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glc3meacp_s + - id: "glc3meacp_s" - name: "glucuronide-conjugate of 3-methoxy-acetaminophen" - - compartment: s - - formula: C14H16NO9 + - compartment: "s" + - formula: "C14H16NO9" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glz_s + - id: "glz_s" - name: "Gliclazide" - - compartment: s - - formula: C15H20N3O3S + - compartment: "s" + - formula: "C15H20N3O3S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gtacmp_s + - id: "gtacmp_s" - name: "glucuronide-thiomethyl-acetaminophen conjugate" - - compartment: s - - formula: C15H18NO8S + - compartment: "s" + - formula: "C15H18NO8S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ibup_R_s + - id: "ibup_R_s" - name: "ibuprofen-R" - - compartment: s - - formula: C13H17O2 + - compartment: "s" + - formula: "C13H17O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ibup_S_s + - id: "ibup_S_s" - name: "ibuprofen-S" - - compartment: s - - formula: C13H17O2 + - compartment: "s" + - formula: "C13H17O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ibupgluc_s + - id: "ibupgluc_s" - name: "ibuprofen acyl glucuronide" - - compartment: s - - formula: C19H25O8 + - compartment: "s" + - formula: "C19H25O8" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: isolvstacid_s + - id: "isolvstacid_s" - name: "3'-hydroxy-iso-delta-4',5'-hydroxy acid form of lovastatin" - - compartment: s - - formula: C24H37O7 + - compartment: "s" + - formula: "C24H37O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lst4exp_s + - id: "lst4exp_s" - name: "Losartan-E3174/ losartan-M6" - - compartment: s - - formula: C22H19ClN6O2 + - compartment: "s" + - formula: "C22H19ClN6O2" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lstn_s + - id: "lstn_s" - name: "Losartan" - - compartment: s - - formula: C22H22ClN6O + - compartment: "s" + - formula: "C22H22ClN6O" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lstn1gluc_s + - id: "lstn1gluc_s" - name: "Losartan-N1-glucuronide" - - compartment: s - - formula: C28H30ClN6O7 + - compartment: "s" + - formula: "C28H30ClN6O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lstnm1_s + - id: "lstnm1_s" - name: "Losartan-M1" - - compartment: s - - formula: C22H22ClN6O2 + - compartment: "s" + - formula: "C22H22ClN6O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lstnm2_s + - id: "lstnm2_s" - name: "Losartan-M2" - - compartment: s - - formula: C22H22ClN6O2 + - compartment: "s" + - formula: "C22H22ClN6O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lstnm4_s + - id: "lstnm4_s" - name: "Losartan-M4 (glucuronide derivative)" - - compartment: s - - formula: C28H27ClN6O8 + - compartment: "s" + - formula: "C28H27ClN6O8" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lstnm5_s + - id: "lstnm5_s" - name: "Losartan-M5" - - compartment: s - - formula: C22H22ClN6O2 + - compartment: "s" + - formula: "C22H22ClN6O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lstnm7_s + - id: "lstnm7_s" - name: "Losartan-N2-glucuronide / Losartan-M7" - - compartment: s - - formula: C28H30ClN6O7 + - compartment: "s" + - formula: "C28H30ClN6O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lvst_s + - id: "lvst_s" - name: "lovastatin lactone form" - - compartment: s - - formula: C24H36O5 + - compartment: "s" + - formula: "C24H36O5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: mdz_s + - id: "mdz_s" - name: "Midazolam" - - compartment: s - - formula: C18H13ClFN3 + - compartment: "s" + - formula: "C18H13ClFN3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: mdzglc_s + - id: "mdzglc_s" - name: "Midazolam-glucuronide" - - compartment: s - - formula: C24H21ClFN3O6 + - compartment: "s" + - formula: "C24H21ClFN3O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: meracmp_s + - id: "meracmp_s" - name: "acetaminophen-mercapturate-conjugate/N-acetyl-cysteine-acetaminophen" - - compartment: s - - formula: C13H15N2O5S + - compartment: "s" + - formula: "C13H15N2O5S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: mhglz_s + - id: "mhglz_s" - name: "Methyl-hydroxy-gliclazide" - - compartment: s - - formula: C15H20N3O4S + - compartment: "s" + - formula: "C15H20N3O4S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ndersv_s + - id: "ndersv_s" - name: "N-desmethyl-rosuvastatin" - - compartment: s - - formula: C42H48CaF2N6O12S2 + - compartment: "s" + - formula: "C42H48CaF2N6O12S2" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: nfd_s + - id: "nfd_s" - name: "Nifedipine" - - compartment: s - - formula: C17H18N2O6 + - compartment: "s" + - formula: "C17H18N2O6" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: nfdac_s + - id: "nfdac_s" - name: "acid metabolite of nifedipine" - - compartment: s - - formula: C16H13N2O6 + - compartment: "s" + - formula: "C16H13N2O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: nfdlac_s + - id: "nfdlac_s" - name: "lactone form of nifedipine" - - compartment: s - - formula: C16H12N2O6 + - compartment: "s" + - formula: "C16H12N2O6" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: nfdnpy_s + - id: "nfdnpy_s" - name: "Nitropyridine metabolite of nifedipine" - - compartment: s - - formula: C17H16N2O6 + - compartment: "s" + - formula: "C17H16N2O6" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: nfdoh_s + - id: "nfdoh_s" - name: "hydroxy metabolite of nifedipine" - - compartment: s - - formula: C16H13N2O7 + - compartment: "s" + - formula: "C16H13N2O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: oxyp_s + - id: "oxyp_s" - name: "oxypurinol" - - compartment: s - - formula: C5H4N4O2 + - compartment: "s" + - formula: "C5H4N4O2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: oxy1rb_s + - id: "oxy1rb_s" - name: "oxypurinol-1-riboside" - - compartment: s - - formula: C10H12N4O7 + - compartment: "s" + - formula: "C10H12N4O7" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: oxy7rb_s + - id: "oxy7rb_s" - name: "oxypurinol-7-riboside" - - compartment: s - - formula: C10H12N4O7 + - compartment: "s" + - formula: "C10H12N4O7" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: profvs_s + - id: "profvs_s" - name: "des-isoproylpropionic-acid-fluvastatin" - - compartment: s - - formula: C18H16FNNaO2 + - compartment: "s" + - formula: "C18H16FNNaO2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ptvst_s + - id: "ptvst_s" - name: "pitavastatin" - - compartment: s - - formula: C50H46CaF2N2O8 + - compartment: "s" + - formula: "C50H46CaF2N2O8" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ptvstlac_s + - id: "ptvstlac_s" - name: "pitavastatin-lactone" - - compartment: s - - formula: C50H44CaF2N2O6 + - compartment: "s" + - formula: "C50H44CaF2N2O6" - charge: 2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ptvstm3_s + - id: "ptvstm3_s" - name: "pitavastatin-M3" - - compartment: s - - formula: C50H42CaF2N2O8 + - compartment: "s" + - formula: "C50H42CaF2N2O8" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pvs_s + - id: "pvs_s" - name: "pravastatin" - - compartment: s - - formula: C23H35NaO7 + - compartment: "s" + - formula: "C23H35NaO7" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pvsgluc_s + - id: "pvsgluc_s" - name: "pravastatin glucuronide" - - compartment: s - - formula: C29H42NaO13 + - compartment: "s" + - formula: "C29H42NaO13" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: rsv_s + - id: "rsv_s" - name: "rosuvastatin" - - compartment: s - - formula: C44H54CaF2N6O12S2 + - compartment: "s" + - formula: "C44H54CaF2N6O12S2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: rsvlac_s + - id: "rsvlac_s" - name: "rosuvastatin-5S-lactone" - - compartment: s - - formula: C44H52CaF2N6O10S2 + - compartment: "s" + - formula: "C44H52CaF2N6O10S2" - charge: 2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: s3meacmp_s + - id: "s3meacmp_s" - name: "sulphate-conjugate-3-methoxy-acetaminophen" - - compartment: s - - formula: C8H8NO6S + - compartment: "s" + - formula: "C8H8NO6S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: smv_s + - id: "smv_s" - name: "simvastatin lactone form" - - compartment: s - - formula: C25H38O5 + - compartment: "s" + - formula: "C25H38O5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: smvacid_s + - id: "smvacid_s" - name: "simvastatin dihydroxy acid form" - - compartment: s - - formula: C25H39O6 + - compartment: "s" + - formula: "C25H39O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: stacmp_s + - id: "stacmp_s" - name: "sulphate-conjugate of thiomethyl-acetaminophen" - - compartment: s - - formula: C9H10NO5S2 + - compartment: "s" + - formula: "C9H10NO5S2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sulpacmp_s + - id: "sulpacmp_s" - name: "sulphate-conjugate-acetaminophen" - - compartment: s - - formula: C8H8NO5S + - compartment: "s" + - formula: "C8H8NO5S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tacr_s + - id: "tacr_s" - name: "Tacrolimus" - - compartment: s - - formula: C44H69NO12 + - compartment: "s" + - formula: "C44H69NO12" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tauribup_S_s + - id: "tauribup_S_s" - name: "taurine conjugate of S-ibuprofen" - - compartment: s - - formula: C15H22NO4S + - compartment: "s" + - formula: "C15H22NO4S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: thrfvs_s + - id: "thrfvs_s" - name: "threo-isomer of fluvastain" - - compartment: s - - formula: C24H25FNNaO4 + - compartment: "s" + - formula: "C24H25FNNaO4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tlacfvs_s + - id: "tlacfvs_s" - name: "trans-lactone-fluvastatin" - - compartment: s - - formula: C24H23FNNaO3 + - compartment: "s" + - formula: "C24H23FNNaO3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tmd_s + - id: "tmd_s" - name: "Torasemide" - - compartment: s - - formula: C16H19N4O3S + - compartment: "s" + - formula: "C16H19N4O3S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tmdm1_s + - id: "tmdm1_s" - name: "Torasemide-M1" - - compartment: s - - formula: C16H19N4O4S + - compartment: "s" + - formula: "C16H19N4O4S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tmdm3_s + - id: "tmdm3_s" - name: "Torasemide-M3" - - compartment: s - - formula: C16H19N4O4S + - compartment: "s" + - formula: "C16H19N4O4S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tmdm5_s + - id: "tmdm5_s" - name: "Torasemide-M5" - - compartment: s - - formula: C16H16N4O5S + - compartment: "s" + - formula: "C16H16N4O5S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tripvs_s + - id: "tripvs_s" - name: "triol metabolite of pravastatin" - - compartment: s - - formula: C23H37NaO9 + - compartment: "s" + - formula: "C23H37NaO9" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tsacmgluc_s + - id: "tsacmgluc_s" - name: "thiomethyl-sulphoxide-acetaminophen-glucuronide" - - compartment: s - - formula: C15H18NO9S + - compartment: "s" + - formula: "C15H18NO9S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tsacmsul_s + - id: "tsacmsul_s" - name: "thiomethyl-sulphoxide-acetaminophen-sulphate" - - compartment: s - - formula: C9H10NO6S2 + - compartment: "s" + - formula: "C9H10NO6S2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: fvsgluc_r + - id: "fvsgluc_r" - name: "fluvstatin-glucuronide" - - compartment: r - - formula: C30H32FNNaO10 + - compartment: "r" + - formula: "C30H32FNNaO10" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: fvstet_r + - id: "fvstet_r" - name: "des-isopropyl-dihydro-fluvastatin-tetranor" - - compartment: r - - formula: C17H13FNNaO2 + - compartment: "r" + - formula: "C17H13FNNaO2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: fvstetglu_r + - id: "fvstetglu_r" - name: "des-isopropyl-dihydro-fluvastatin-tetranor-glucuronide" - - compartment: r - - formula: C23H20FNNaO8 + - compartment: "r" + - formula: "C23H20FNNaO8" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: fvstetglu_c + - id: "fvstetglu_c" - name: "des-isopropyl-dihydro-fluvastatin-tetranor-glucuronide" - - compartment: c - - formula: C23H20FNNaO8 + - compartment: "c" + - formula: "C23H20FNNaO8" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: fvstet_c + - id: "fvstet_c" - name: "des-isopropyl-dihydro-fluvastatin-tetranor" - - compartment: c - - formula: C17H13FNNaO2 + - compartment: "c" + - formula: "C17H13FNNaO2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tlacfvs_r + - id: "tlacfvs_r" - name: "trans-lactone-fluvastatin" - - compartment: r - - formula: C24H23FNNaO3 + - compartment: "r" + - formula: "C24H23FNNaO3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: fvs_c + - id: "fvs_c" - name: "fluvastatin" - - compartment: c - - formula: C24H25FNNaO4 + - compartment: "c" + - formula: "C24H25FNNaO4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3meacmp_r + - id: "3meacmp_r" - name: "3-methoxy-acetaminophen" - - compartment: r - - formula: C9H11NO3 + - compartment: "r" + - formula: "C9H11NO3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glc3meacp_r + - id: "glc3meacp_r" - name: "glucuronide-conjugate of 3-methoxy-acetaminophen" - - compartment: r - - formula: C14H16NO9 + - compartment: "r" + - formula: "C14H16NO9" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glc3meacp_c + - id: "glc3meacp_c" - name: "glucuronide-conjugate of 3-methoxy-acetaminophen" - - compartment: c - - formula: C14H16NO9 + - compartment: "c" + - formula: "C14H16NO9" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tmacmp_r + - id: "tmacmp_r" - name: "thiomethyl-conjugate-acetaminophen" - - compartment: r - - formula: C9H11NO2S + - compartment: "r" + - formula: "C9H11NO2S" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gtacmp_r + - id: "gtacmp_r" - name: "glucuronide-thiomethyl-acetaminophen conjugate" - - compartment: r - - formula: C15H18NO8S + - compartment: "r" + - formula: "C15H18NO8S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gtacmp_c + - id: "gtacmp_c" - name: "glucuronide-thiomethyl-acetaminophen conjugate" - - compartment: c - - formula: C15H18NO8S + - compartment: "c" + - formula: "C15H18NO8S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ibupgluc_c + - id: "ibupgluc_c" - name: "ibuprofen acyl glucuronide" - - compartment: c - - formula: C19H25O8 + - compartment: "c" + - formula: "C19H25O8" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ibup_S_r + - id: "ibup_S_r" - name: "ibuprofen-S" - - compartment: r - - formula: C13H17O2 + - compartment: "r" + - formula: "C13H17O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ibupgluc_r + - id: "ibupgluc_r" - name: "ibuprofen acyl glucuronide" - - compartment: r - - formula: C19H25O8 + - compartment: "r" + - formula: "C19H25O8" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ibup_R_c + - id: "ibup_R_c" - name: "ibuprofen-R" - - compartment: c - - formula: C13H17O2 + - compartment: "c" + - formula: "C13H17O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ibupcoa_R_c + - id: "ibupcoa_R_c" - name: "ibuprofen-CoA-R form" - - compartment: c - - formula: C34H48N7O17P3S + - compartment: "c" + - formula: "C34H48N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ibup_R_r + - id: "ibup_R_r" - name: "ibuprofen-R" - - compartment: r - - formula: C13H17O2 + - compartment: "r" + - formula: "C13H17O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2hibup_R_r + - id: "2hibup_R_r" - name: "2-hydroxy-R-ibuprofen" - - compartment: r - - formula: C13H17O3 + - compartment: "r" + - formula: "C13H17O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hibup_R_r + - id: "3hibup_R_r" - name: "3-hydroxy R-ibuprofen" - - compartment: r - - formula: C13H17O3 + - compartment: "r" + - formula: "C13H17O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ibupcoa_S_c + - id: "ibupcoa_S_c" - name: "ibuprofen-CoA-S form" - - compartment: c - - formula: C34H48N7O17P3S + - compartment: "c" + - formula: "C34H48N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ibup_S_c + - id: "ibup_S_c" - name: "ibuprofen-S" - - compartment: c - - formula: C13H17O2 + - compartment: "c" + - formula: "C13H17O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tauribup_S_c + - id: "tauribup_S_c" - name: "taurine conjugate of S-ibuprofen" - - compartment: c - - formula: C15H22NO4S + - compartment: "c" + - formula: "C15H22NO4S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: isolvstacid_c + - id: "isolvstacid_c" - name: "3'-hydroxy-iso-delta-4',5'-hydroxy acid form of lovastatin" - - compartment: c - - formula: C24H37O7 + - compartment: "c" + - formula: "C24H37O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lst4exp_c + - id: "lst4exp_c" - name: "Losartan-E3174/ losartan-M6" - - compartment: c - - formula: C22H19ClN6O2 + - compartment: "c" + - formula: "C22H19ClN6O2" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lstn_r + - id: "lstn_r" - name: "Losartan" - - compartment: r - - formula: C22H22ClN6O + - compartment: "r" + - formula: "C22H22ClN6O" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lst4exp_r + - id: "lst4exp_r" - name: "Losartan-E3174/ losartan-M6" - - compartment: r - - formula: C22H19ClN6O2 + - compartment: "r" + - formula: "C22H19ClN6O2" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lstn1gluc_r + - id: "lstn1gluc_r" - name: "Losartan-N1-glucuronide" - - compartment: r - - formula: C28H30ClN6O7 + - compartment: "r" + - formula: "C28H30ClN6O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lstn1gluc_c + - id: "lstn1gluc_c" - name: "Losartan-N1-glucuronide" - - compartment: c - - formula: C28H30ClN6O7 + - compartment: "c" + - formula: "C28H30ClN6O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lstn_c + - id: "lstn_c" - name: "Losartan" - - compartment: c - - formula: C22H22ClN6O + - compartment: "c" + - formula: "C22H22ClN6O" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lstnm1_r + - id: "lstnm1_r" - name: "Losartan-M1" - - compartment: r - - formula: C22H22ClN6O2 + - compartment: "r" + - formula: "C22H22ClN6O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lstnm1_c + - id: "lstnm1_c" - name: "Losartan-M1" - - compartment: c - - formula: C22H22ClN6O2 + - compartment: "c" + - formula: "C22H22ClN6O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lstnm2_r + - id: "lstnm2_r" - name: "Losartan-M2" - - compartment: r - - formula: C22H22ClN6O2 + - compartment: "r" + - formula: "C22H22ClN6O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lstnm2_c + - id: "lstnm2_c" - name: "Losartan-M2" - - compartment: c - - formula: C22H22ClN6O2 + - compartment: "c" + - formula: "C22H22ClN6O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lstnm4_r + - id: "lstnm4_r" - name: "Losartan-M4 (glucuronide derivative)" - - compartment: r - - formula: C28H27ClN6O8 + - compartment: "r" + - formula: "C28H27ClN6O8" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lstnm4_c + - id: "lstnm4_c" - name: "Losartan-M4 (glucuronide derivative)" - - compartment: c - - formula: C28H27ClN6O8 + - compartment: "c" + - formula: "C28H27ClN6O8" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lstnm5_r + - id: "lstnm5_r" - name: "Losartan-M5" - - compartment: r - - formula: C22H22ClN6O2 + - compartment: "r" + - formula: "C22H22ClN6O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lstnm5_c + - id: "lstnm5_c" - name: "Losartan-M5" - - compartment: c - - formula: C22H22ClN6O2 + - compartment: "c" + - formula: "C22H22ClN6O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lstnm7_c + - id: "lstnm7_c" - name: "Losartan-N2-glucuronide / Losartan-M7" - - compartment: c - - formula: C28H30ClN6O7 + - compartment: "c" + - formula: "C28H30ClN6O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lstnm7_r + - id: "lstnm7_r" - name: "Losartan-N2-glucuronide / Losartan-M7" - - compartment: r - - formula: C28H30ClN6O7 + - compartment: "r" + - formula: "C28H30ClN6O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lvstacid_c + - id: "lvstacid_c" - name: "lovastatin-hydroxyacid form" - - compartment: c - - formula: C24H37O6 + - compartment: "c" + - formula: "C24H37O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lvst_c + - id: "lvst_c" - name: "lovastatin lactone form" - - compartment: c - - formula: C24H36O5 + - compartment: "c" + - formula: "C24H36O5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lvstacid_s + - id: "lvstacid_s" - name: "lovastatin-hydroxyacid form" - - compartment: s - - formula: C24H37O6 + - compartment: "s" + - formula: "C24H37O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lvstacid_r + - id: "lvstacid_r" - name: "lovastatin-hydroxyacid form" - - compartment: r - - formula: C24H37O6 + - compartment: "r" + - formula: "C24H37O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6hlvstacid_r + - id: "6hlvstacid_r" - name: "6'-beta-hydroxy-lovastatin-acid form" - - compartment: r - - formula: C24H37O7 + - compartment: "r" + - formula: "C24H37O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6melvacid_r + - id: "6melvacid_r" - name: "6'-exomethylene-lovastatin-acid form" - - compartment: r - - formula: C24H35O6 + - compartment: "r" + - formula: "C24H35O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lvst_r + - id: "lvst_r" - name: "lovastatin lactone form" - - compartment: r - - formula: C24H36O5 + - compartment: "r" + - formula: "C24H36O5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hlvst_r + - id: "3hlvst_r" - name: "3''-hydroxy-lovastatin lactone form" - - compartment: r - - formula: C24H36O6 + - compartment: "r" + - formula: "C24H36O6" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6hlvst_r + - id: "6hlvst_r" - name: "6'-beta-hydroxy-lovastatin lactone form" - - compartment: r - - formula: C24H36O6 + - compartment: "r" + - formula: "C24H36O6" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6melvst_r + - id: "6melvst_r" - name: "6'-exomethylene-lovastatin lactone form" - - compartment: r - - formula: C24H34O5 + - compartment: "r" + - formula: "C24H34O5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: mdzglc_c + - id: "mdzglc_c" - name: "Midazolam-glucuronide" - - compartment: c - - formula: C24H21ClFN3O6 + - compartment: "c" + - formula: "C24H21ClFN3O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: mdz_c + - id: "mdz_c" - name: "Midazolam" - - compartment: c - - formula: C18H13ClFN3 + - compartment: "c" + - formula: "C18H13ClFN3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: mhglz_c + - id: "mhglz_c" - name: "Methyl-hydroxy-gliclazide" - - compartment: c - - formula: C15H20N3O4S + - compartment: "c" + - formula: "C15H20N3O4S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: rsv_r + - id: "rsv_r" - name: "rosuvastatin" - - compartment: r - - formula: C44H54CaF2N6O12S2 + - compartment: "r" + - formula: "C44H54CaF2N6O12S2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ndersv_r + - id: "ndersv_r" - name: "N-desmethyl-rosuvastatin" - - compartment: r - - formula: C42H48CaF2N6O12S2 + - compartment: "r" + - formula: "C42H48CaF2N6O12S2" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ndersv_c + - id: "ndersv_c" - name: "N-desmethyl-rosuvastatin" - - compartment: c - - formula: C42H48CaF2N6O12S2 + - compartment: "c" + - formula: "C42H48CaF2N6O12S2" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: nfdac_r + - id: "nfdac_r" - name: "acid metabolite of nifedipine" - - compartment: r - - formula: C16H13N2O6 + - compartment: "r" + - formula: "C16H13N2O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: nfdoh_r + - id: "nfdoh_r" - name: "hydroxy metabolite of nifedipine" - - compartment: r - - formula: C16H13N2O7 + - compartment: "r" + - formula: "C16H13N2O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: nfdac_c + - id: "nfdac_c" - name: "acid metabolite of nifedipine" - - compartment: c - - formula: C16H13N2O6 + - compartment: "c" + - formula: "C16H13N2O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: nfdnpy_r + - id: "nfdnpy_r" - name: "Nitropyridine metabolite of nifedipine" - - compartment: r - - formula: C17H16N2O6 + - compartment: "r" + - formula: "C17H16N2O6" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: nfdoh_c + - id: "nfdoh_c" - name: "hydroxy metabolite of nifedipine" - - compartment: c - - formula: C16H13N2O7 + - compartment: "c" + - formula: "C16H13N2O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: nfdlac_c + - id: "nfdlac_c" - name: "lactone form of nifedipine" - - compartment: c - - formula: C16H12N2O6 + - compartment: "c" + - formula: "C16H12N2O6" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: nfdnpy_c + - id: "nfdnpy_c" - name: "Nitropyridine metabolite of nifedipine" - - compartment: c - - formula: C17H16N2O6 + - compartment: "c" + - formula: "C17H16N2O6" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: nfd_c + - id: "nfd_c" - name: "Nifedipine" - - compartment: c - - formula: C17H18N2O6 + - compartment: "c" + - formula: "C17H18N2O6" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: udprib_c + - id: "udprib_c" - name: "udp-ribose" - - compartment: c - - formula: C14H20N2O17P2 + - compartment: "c" + - formula: "C14H20N2O17P2" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: oxy1rb_c + - id: "oxy1rb_c" - name: "oxypurinol-1-riboside" - - compartment: c - - formula: C10H12N4O7 + - compartment: "c" + - formula: "C10H12N4O7" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: oxy7rb_c + - id: "oxy7rb_c" - name: "oxypurinol-7-riboside" - - compartment: c - - formula: C10H12N4O7 + - compartment: "c" + - formula: "C10H12N4O7" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: fvscoa_p + - id: "fvscoa_p" - name: "fluvastatin-CoA form" - - compartment: p - - formula: C45H56FN8NaO19P3S + - compartment: "p" + - formula: "C45H56FN8NaO19P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: profvscoa_p + - id: "profvscoa_p" - name: "des-isoproylpropionic-acid-fluvastatin-CoA" - - compartment: p - - formula: C37H42FN8NaO17P3S + - compartment: "p" + - formula: "C37H42FN8NaO17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: profvscoa_c + - id: "profvscoa_c" - name: "des-isoproylpropionic-acid-fluvastatin-CoA" - - compartment: c - - formula: C37H42FN8NaO17P3S + - compartment: "c" + - formula: "C37H42FN8NaO17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: profvs_c + - id: "profvs_c" - name: "des-isoproylpropionic-acid-fluvastatin" - - compartment: c - - formula: C18H16FNNaO2 + - compartment: "c" + - formula: "C18H16FNNaO2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ptvst_c + - id: "ptvst_c" - name: "pitavastatin" - - compartment: c - - formula: C50H46CaF2N2O8 + - compartment: "c" + - formula: "C50H46CaF2N2O8" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ptvst_r + - id: "ptvst_r" - name: "pitavastatin" - - compartment: r - - formula: C50H46CaF2N2O8 + - compartment: "r" + - formula: "C50H46CaF2N2O8" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ptvstgluc_r + - id: "ptvstgluc_r" - name: "pitavastatin-glucuronide" - - compartment: r - - formula: C62H62CaF2N2O20 + - compartment: "r" + - formula: "C62H62CaF2N2O20" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ptvstlac_r + - id: "ptvstlac_r" - name: "pitavastatin-lactone" - - compartment: r - - formula: C50H44CaF2N2O6 + - compartment: "r" + - formula: "C50H44CaF2N2O6" - charge: 2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ptvstlac_c + - id: "ptvstlac_c" - name: "pitavastatin-lactone" - - compartment: c - - formula: C50H44CaF2N2O6 + - compartment: "c" + - formula: "C50H44CaF2N2O6" - charge: 2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ptvstm13_r + - id: "ptvstm13_r" - name: "pitavastatin-M13" - - compartment: r - - formula: C50H46CaF2N2O10 + - compartment: "r" + - formula: "C50H46CaF2N2O10" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ptvstm3_c + - id: "ptvstm3_c" - name: "pitavastatin-M3" - - compartment: c - - formula: C50H42CaF2N2O8 + - compartment: "c" + - formula: "C50H42CaF2N2O8" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ptvstm3_r + - id: "ptvstm3_r" - name: "pitavastatin-M3" - - compartment: r - - formula: C50H42CaF2N2O8 + - compartment: "r" + - formula: "C50H42CaF2N2O8" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pvsgluc_r + - id: "pvsgluc_r" - name: "pravastatin glucuronide" - - compartment: r - - formula: C29H42NaO13 + - compartment: "r" + - formula: "C29H42NaO13" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pvsgluc_c + - id: "pvsgluc_c" - name: "pravastatin glucuronide" - - compartment: c - - formula: C29H42NaO13 + - compartment: "c" + - formula: "C29H42NaO13" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: rsv_c + - id: "rsv_c" - name: "rosuvastatin" - - compartment: c - - formula: C44H54CaF2N6O12S2 + - compartment: "c" + - formula: "C44H54CaF2N6O12S2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: rsvgluc_r + - id: "rsvgluc_r" - name: "rosuvastatin-glucuronide" - - compartment: r - - formula: C56H70CaF2N6O24S2 + - compartment: "r" + - formula: "C56H70CaF2N6O24S2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: rsvlac_r + - id: "rsvlac_r" - name: "rosuvastatin-5S-lactone" - - compartment: r - - formula: C44H52CaF2N6O10S2 + - compartment: "r" + - formula: "C44H52CaF2N6O10S2" - charge: 2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: rsvlac_c + - id: "rsvlac_c" - name: "rosuvastatin-5S-lactone" - - compartment: c - - formula: C44H52CaF2N6O10S2 + - compartment: "c" + - formula: "C44H52CaF2N6O10S2" - charge: 2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: s3meacmp_c + - id: "s3meacmp_c" - name: "sulphate-conjugate-3-methoxy-acetaminophen" - - compartment: c - - formula: C8H8NO6S + - compartment: "c" + - formula: "C8H8NO6S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: smvacid_c + - id: "smvacid_c" - name: "simvastatin dihydroxy acid form" - - compartment: c - - formula: C25H39O6 + - compartment: "c" + - formula: "C25H39O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: simvgluc_r + - id: "simvgluc_r" - name: "simvastatin-acyl-glucuronide" - - compartment: r - - formula: C31H47O12 + - compartment: "r" + - formula: "C31H47O12" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: smvacid_r + - id: "smvacid_r" - name: "simvastatin dihydroxy acid form" - - compartment: r - - formula: C25H39O6 + - compartment: "r" + - formula: "C25H39O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: smv_c + - id: "smv_c" - name: "simvastatin lactone form" - - compartment: c - - formula: C25H38O5 + - compartment: "c" + - formula: "C25H38O5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tmacmp_c + - id: "tmacmp_c" - name: "thiomethyl-conjugate-acetaminophen" - - compartment: c - - formula: C9H11NO2S + - compartment: "c" + - formula: "C9H11NO2S" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: stacmp_c + - id: "stacmp_c" - name: "sulphate-conjugate of thiomethyl-acetaminophen" - - compartment: c - - formula: C9H10NO5S2 + - compartment: "c" + - formula: "C9H10NO5S2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tacr_c + - id: "tacr_c" - name: "Tacrolimus" - - compartment: c - - formula: C44H69NO12 + - compartment: "c" + - formula: "C44H69NO12" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: thrfvs_c + - id: "thrfvs_c" - name: "threo-isomer of fluvastain" - - compartment: c - - formula: C24H25FNNaO4 + - compartment: "c" + - formula: "C24H25FNNaO4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: thsacmp_r + - id: "thsacmp_r" - name: "thiomethyl-sulphoxide-conjugate-acetaminophen" - - compartment: r - - formula: C9H11NO3S + - compartment: "r" + - formula: "C9H11NO3S" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tlacfvs_c + - id: "tlacfvs_c" - name: "trans-lactone-fluvastatin" - - compartment: c - - formula: C24H23FNNaO3 + - compartment: "c" + - formula: "C24H23FNNaO3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tmdm1_c + - id: "tmdm1_c" - name: "Torasemide-M1" - - compartment: c - - formula: C16H19N4O4S + - compartment: "c" + - formula: "C16H19N4O4S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tmd_r + - id: "tmd_r" - name: "Torasemide" - - compartment: r - - formula: C16H19N4O3S + - compartment: "r" + - formula: "C16H19N4O3S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tmdm1_r + - id: "tmdm1_r" - name: "Torasemide-M1" - - compartment: r - - formula: C16H19N4O4S + - compartment: "r" + - formula: "C16H19N4O4S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tmdm3_c + - id: "tmdm3_c" - name: "Torasemide-M3" - - compartment: c - - formula: C16H19N4O4S + - compartment: "c" + - formula: "C16H19N4O4S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tmdm3_r + - id: "tmdm3_r" - name: "Torasemide-M3" - - compartment: r - - formula: C16H19N4O4S + - compartment: "r" + - formula: "C16H19N4O4S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tmdm5_c + - id: "tmdm5_c" - name: "Torasemide-M5" - - compartment: c - - formula: C16H16N4O5S + - compartment: "c" + - formula: "C16H16N4O5S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tmdm5_r + - id: "tmdm5_r" - name: "Torasemide-M5" - - compartment: r - - formula: C16H16N4O5S + - compartment: "r" + - formula: "C16H16N4O5S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tmd_c + - id: "tmd_c" - name: "Torasemide" - - compartment: c - - formula: C16H19N4O3S + - compartment: "c" + - formula: "C16H19N4O3S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tripvs_c + - id: "tripvs_c" - name: "triol metabolite of pravastatin" - - compartment: c - - formula: C23H37NaO9 + - compartment: "c" + - formula: "C23H37NaO9" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tsacmgluc_c + - id: "tsacmgluc_c" - name: "thiomethyl-sulphoxide-acetaminophen-glucuronide" - - compartment: c - - formula: C15H18NO9S + - compartment: "c" + - formula: "C15H18NO9S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tsacmgluc_r + - id: "tsacmgluc_r" - name: "thiomethyl-sulphoxide-acetaminophen-glucuronide" - - compartment: r - - formula: C15H18NO9S + - compartment: "r" + - formula: "C15H18NO9S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: thsacmp_c + - id: "thsacmp_c" - name: "thiomethyl-sulphoxide-conjugate-acetaminophen" - - compartment: c - - formula: C9H11NO3S + - compartment: "c" + - formula: "C9H11NO3S" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tsacmsul_c + - id: "tsacmsul_c" - name: "thiomethyl-sulphoxide-acetaminophen-sulphate" - - compartment: c - - formula: C9H10NO6S2 + - compartment: "c" + - formula: "C9H10NO6S2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hpvscoa_c + - id: "3hpvscoa_c" - name: "3'-S-hydroxy-pravastatin-CoA" - - compartment: c - - formula: C44H66N7NaO23P3S + - compartment: "c" + - formula: "C44H66N7NaO23P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hpvstetcoa_c + - id: "3hpvstetcoa_c" - name: "3'-S-hydroxy-pravastatin-tetranor-CoA" - - compartment: c - - formula: C40H58N7NaO21P3S + - compartment: "c" + - formula: "C40H58N7NaO21P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: fvscoa_c + - id: "fvscoa_c" - name: "fluvastatin-CoA form" - - compartment: c - - formula: C45H56FN8NaO19P3S + - compartment: "c" + - formula: "C45H56FN8NaO19P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: mdzglc_r + - id: "mdzglc_r" - name: "Midazolam-glucuronide" - - compartment: r - - formula: C24H21ClFN3O6 + - compartment: "r" + - formula: "C24H21ClFN3O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ptvstm13_c + - id: "ptvstm13_c" - name: "pitavastatin-M13" - - compartment: c - - formula: C50H46CaF2N2O10 + - compartment: "c" + - formula: "C50H46CaF2N2O10" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ptvstm13_s + - id: "ptvstm13_s" - name: "pitavastatin-M13" - - compartment: s - - formula: C50H46CaF2N2O10 + - compartment: "s" + - formula: "C50H46CaF2N2O10" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: acmpglut_r + - id: "acmpglut_r" - name: "acetaminophen-glutathione-conjugate" - - compartment: r - - formula: C18H27N4O10S + - compartment: "r" + - formula: "C18H27N4O10S" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: cysacmp_r + - id: "cysacmp_r" - name: "cysteine-conjugate-acetaminophen" - - compartment: r - - formula: C11H14N2O4S + - compartment: "r" + - formula: "C11H14N2O4S" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01986r + - id: "m01986r" - name: "glycine" - - compartment: r - - formula: C2H5NO2 + - compartment: "r" + - formula: "C2H5NO2" - charge: 0 - - inchis: 1S/C2H5NO2/c3-1-2(4)5/h1,3H2,(H,4,5) - - metFrom: Recon3D + - inchis: "1S/C2H5NO2/c3-1-2(4)5/h1,3H2,(H,4,5)" + - metFrom: "Recon3D" - !!omap - - id: napqi_r + - id: "napqi_r" - name: "NAPQI" - - compartment: r - - formula: C8H7NO2 + - compartment: "r" + - formula: "C8H7NO2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02682r + - id: "m02682r" - name: "PAPS" - - compartment: r - - formula: C10H11N5O13P2S + - compartment: "r" + - formula: "C10H11N5O13P2S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02681r + - id: "m02681r" - name: "PAP" - - compartment: r - - formula: C10H11N5O10P2 + - compartment: "r" + - formula: "C10H11N5O10P2" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01442m + - id: "m01442m" - name: "chloride" - - compartment: m - - formula: Cl + - compartment: "m" + - formula: "Cl" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00519c + - id: "m00519c" - name: "1-alpha,25-dihydroxyvitamin D2" - - compartment: c - - formula: C28H44O3 + - compartment: "c" + - formula: "C28H44O3" - charge: 0 - - inchis: 1S/C28H44O3/c1-18(9-10-19(2)27(4,5)31)24-13-14-25-21(8-7-15-28(24,25)6)11-12-22-16-23(29)17-26(30)20(22)3/h9-12,18-19,23-26,29-31H,3,7-8,13-17H2,1-2,4-6H3/b10-9+,21-11+,22-12-/t18-,19+,23-,24-,25+,26+,28-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C28H44O3/c1-18(9-10-19(2)27(4,5)31)24-13-14-25-21(8-7-15-28(24,25)6)11-12-22-16-23(29)17-26(30)20(22)3/h9-12,18-19,23-26,29-31H,3,7-8,13-17H2,1-2,4-6H3/b10-9+,21-11+,22-12-/t18-,19+,23-,24-,25+,26+,28-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m00519s + - id: "m00519s" - name: "1-alpha,25-dihydroxyvitamin D2" - - compartment: s - - formula: C28H44O3 + - compartment: "s" + - formula: "C28H44O3" - charge: 0 - - inchis: 1S/C28H44O3/c1-18(9-10-19(2)27(4,5)31)24-13-14-25-21(8-7-15-28(24,25)6)11-12-22-16-23(29)17-26(30)20(22)3/h9-12,18-19,23-26,29-31H,3,7-8,13-17H2,1-2,4-6H3/b10-9+,21-11+,22-12-/t18-,19+,23-,24-,25+,26+,28-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C28H44O3/c1-18(9-10-19(2)27(4,5)31)24-13-14-25-21(8-7-15-28(24,25)6)11-12-22-16-23(29)17-26(30)20(22)3/h9-12,18-19,23-26,29-31H,3,7-8,13-17H2,1-2,4-6H3/b10-9+,21-11+,22-12-/t18-,19+,23-,24-,25+,26+,28-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m02039i + - id: "m02039i" - name: "H+" - - compartment: i - - formula: H + - compartment: "i" + - formula: "H" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02751i + - id: "m02751i" - name: "Pi" - - compartment: i - - formula: HO4P + - compartment: "i" + - formula: "HO4P" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00003x + - id: "m00003x" - name: "(10Z)-heptadecenoic acid" - - compartment: x - - formula: C17H31O2 + - compartment: "x" + - formula: "C17H31O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00008x + - id: "m00008x" - name: "(11Z,14Z)-eicosadienoic acid" - - compartment: x - - formula: C20H35O2 + - compartment: "x" + - formula: "C20H35O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00010x + - id: "m00010x" - name: "(11Z,14Z,17Z)-eicosatrienoic acid" - - compartment: x - - formula: C20H33O2 + - compartment: "x" + - formula: "C20H33O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00017x + - id: "m00017x" - name: "(13Z)-eicosenoic acid" - - compartment: x - - formula: C20H37O2 + - compartment: "x" + - formula: "C20H37O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00019x + - id: "m00019x" - name: "(13Z)-octadecenoic acid" - - compartment: x - - formula: C18H33O2 + - compartment: "x" + - formula: "C18H33O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00021x + - id: "m00021x" - name: "(13Z,16Z)-docosadienoic acid" - - compartment: x - - formula: C22H39O2 + - compartment: "x" + - formula: "C22H39O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00028x + - id: "m00028x" - name: "(18R)-HEPE" - - compartment: x - - formula: C20H29O3 + - compartment: "x" + - formula: "C20H29O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00094x + - id: "m00094x" - name: "(4Z,7Z,10Z,13Z,16Z)-DPA" - - compartment: x - - formula: C22H33O2 + - compartment: "x" + - formula: "C22H33O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00104x + - id: "m00104x" - name: "(6Z,9Z)-octadecadienoic acid" - - compartment: x - - formula: C18H31O2 + - compartment: "x" + - formula: "C18H31O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00105x + - id: "m00105x" - name: "(6Z,9Z)-octadecadienoylcarnitine" - - compartment: x - - formula: C25H45NO4 + - compartment: "x" + - formula: "C25H45NO4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00111x + - id: "m00111x" - name: "(6Z,9Z,12Z,15Z,18Z)-TPA" - - compartment: x - - formula: C24H37O2 + - compartment: "x" + - formula: "C24H37O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00114x + - id: "m00114x" - name: "(6Z,9Z,12Z,15Z,18Z,21Z)-THA" - - compartment: x - - formula: C24H35O2 + - compartment: "x" + - formula: "C24H35O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00115x + - id: "m00115x" - name: "(7Z)-octadecenoic acid" - - compartment: x - - formula: C18H33O2 + - compartment: "x" + - formula: "C18H33O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00117x + - id: "m00117x" - name: "(7Z)-tetradecenoic acid" - - compartment: x - - formula: C14H25O2 + - compartment: "x" + - formula: "C14H25O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE2516_x + - id: "CE2516_x" - name: "(8Z,11Z,14Z)-Eicosatrienoic Acid" - - compartment: x - - formula: C20H33O2 + - compartment: "x" + - formula: "C20H33O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00126x + - id: "m00126x" - name: "(9E)-octadecenoylcarnitine" - - compartment: x - - formula: C25H47NO4 + - compartment: "x" + - formula: "C25H47NO4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00128x + - id: "m00128x" - name: "(9E)-tetradecenoic acid" - - compartment: x - - formula: C14H25O2 + - compartment: "x" + - formula: "C14H25O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00132x + - id: "m00132x" - name: "(9Z,12Z,15Z,18Z)-TTA" - - compartment: x - - formula: C24H39O2 + - compartment: "x" + - formula: "C24H39O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00135x + - id: "m00135x" - name: "(9Z,12Z,15Z,18Z,21Z)-TPA" - - compartment: x - - formula: C24H37O2 + - compartment: "x" + - formula: "C24H37O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00167x + - id: "m00167x" - name: "(R)-mevalonate" - - compartment: x - - formula: C6H11O4 + - compartment: "x" + - formula: "C6H11O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00169x + - id: "m00169x" - name: "(S)-2-aminobutanoate" - - compartment: x - - formula: C4H9NO2 + - compartment: "x" + - formula: "C4H9NO2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glyc_S_x + - id: "glyc_S_x" - name: "(S)-Glycerate" - - compartment: x - - formula: C3H5O4 + - compartment: "x" + - formula: "C3H5O4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hexdtr_x + - id: "hexdtr_x" - name: "(Z,Z,Z)-7,10,13-Hexadecatrienoic Acid" - - compartment: x - - formula: C16H25O2 + - compartment: "x" + - formula: "C16H25O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 1glyc_hs_x + - id: "1glyc_hs_x" - name: "1-Acyl Phosphoglycerol" - - compartment: x - - formula: C6H13O7PRCO2 + - compartment: "x" + - formula: "C6H13O7PRCO2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 1ohmdz_x + - id: "1ohmdz_x" - name: "1'-OH-midazolam" - - compartment: x - - formula: C18H13ClFN3O + - compartment: "x" + - formula: "C18H13ClFN3O" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 1hmdgluc_x + - id: "1hmdgluc_x" - name: "1'-OH-midazolam-glucuronide" - - compartment: x - - formula: C24H20ClFN3O7 + - compartment: "x" + - formula: "C24H20ClFN3O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 12dgr120_x + - id: "12dgr120_x" - name: "1,2-Diacyl-Sn-Glycerol (Didodecanoyl, N-C12:0)" - - compartment: x - - formula: C27H52O5 + - compartment: "x" + - formula: "C27H52O5" - charge: 0 - - inchis: 1S/C27H52O5/c1-3-5-7-9-11-13-15-17-19-21-26(29)31-24-25(23-28)32-27(30)22-20-18-16-14-12-10-8-6-4-2/h25,28H,3-24H2,1-2H3 - - metFrom: Recon3D + - inchis: "1S/C27H52O5/c1-3-5-7-9-11-13-15-17-19-21-26(29)31-24-25(23-28)32-27(30)22-20-18-16-14-12-10-8-6-4-2/h25,28H,3-24H2,1-2H3" + - metFrom: "Recon3D" - !!omap - - id: m00231x + - id: "m00231x" - name: "1,2-dehydrosalsolinol" - - compartment: x - - formula: C10H11NO2 + - compartment: "x" + - formula: "C10H11NO2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00240x + - id: "m00240x" - name: "1,2-diacylglycerol-LD-TAG pool" - - compartment: x - - formula: C5H6O5R2 + - compartment: "x" + - formula: "C5H6O5R2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00241x + - id: "m00241x" - name: "1,2-diacylglycerol-VLDL pool" - - compartment: x - - formula: C5H6O5R2 + - compartment: "x" + - formula: "C5H6O5R2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00234x + - id: "m00234x" - name: "1,2-diacylglycerol-chylomicron pool" - - compartment: x - - formula: C5H6O5R2 + - compartment: "x" + - formula: "C5H6O5R2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00248x + - id: "m00248x" - name: "1,3-diaminopropane" - - compartment: x - - formula: C3H12N2 + - compartment: "x" + - formula: "C3H12N2" - charge: 2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 14hmdz_x + - id: "14hmdz_x" - name: "1,4-Dihydroxy-midazolam" - - compartment: x - - formula: C18H13ClFN3O2 + - compartment: "x" + - formula: "C18H13ClFN3O2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: magarachi_hs_x + - id: "magarachi_hs_x" - name: "1-Arachidonoyl Glycerol" - - compartment: x - - formula: C23H38O4 + - compartment: "x" + - formula: "C23H38O4" - charge: 0 - - inchis: 1/C23H38O4/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-23(26)27-21-22(25)20-24/h6-7,9-10,12-13,15-16,22,24-25H,2-5,8,11,14,17-21H2,1H3/b7-6-,10-9-,13-12-,16-15- - - metFrom: Recon3D + - inchis: "1/C23H38O4/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-23(26)27-21-22(25)20-24/h6-7,9-10,12-13,15-16,22,24-25H,2-5,8,11,14,17-21H2,1H3/b7-6-,10-9-,13-12-,16-15-" + - metFrom: "Recon3D" - !!omap - - id: pcholar_hs_x + - id: "pcholar_hs_x" - name: "1-Arachidonoyl-Glycero-3-Phosphocholine" - - compartment: x - - formula: C28H51NO7P + - compartment: "x" + - formula: "C28H51NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pear_hs_x + - id: "pear_hs_x" - name: "1-Arachidonoyl-Sn-Glycero-3-Phosphoethanolamine" - - compartment: x - - formula: C25H44NO7P + - compartment: "x" + - formula: "C25H44NO7P" - charge: 0 - - inchis: 1/C25H44NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-25(28)31-22-24(27)23-33-34(29,30)32-21-20-26/h6-7,9-10,12-13,15-16,24,27H,2-5,8,11,14,17-23,26H2,1H3,(H,29,30)/b7-6-,10-9-,13-12-,16-15- - - metFrom: Recon3D + - inchis: "1/C25H44NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-25(28)31-22-24(27)23-33-34(29,30)32-21-20-26/h6-7,9-10,12-13,15-16,24,27H,2-5,8,11,14,17-23,26H2,1H3,(H,29,30)/b7-6-,10-9-,13-12-,16-15-" + - metFrom: "Recon3D" - !!omap - - id: pailar_hs_x + - id: "pailar_hs_x" - name: "1-Arachidonoylglycerophosphoinositol" - - compartment: x - - formula: C29H48O12P + - compartment: "x" + - formula: "C29H48O12P" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pe12_hs_x + - id: "pe12_hs_x" - name: "1-Didecanoylglycerophosphoethanolamine (C12:0 Pe)" - - compartment: x - - formula: C17H36NO7P + - compartment: "x" + - formula: "C17H36NO7P" - charge: 0 - - inchis: 1/C17H36NO7P/c1-2-3-4-5-6-7-8-9-10-11-17(20)23-14-16(19)15-25-26(21,22)24-13-12-18/h16,19H,2-15,18H2,1H3,(H,21,22) - - metFrom: Recon3D + - inchis: "1/C17H36NO7P/c1-2-3-4-5-6-7-8-9-10-11-17(20)23-14-16(19)15-25-26(21,22)24-13-12-18/h16,19H,2-15,18H2,1H3,(H,21,22)" + - metFrom: "Recon3D" - !!omap - - id: pcholn203_hs_x + - id: "pcholn203_hs_x" - name: "1-Dihomo-Linolenoylglycerophosphocholine (20:3, Delta 8, 11, 14), Lysopc A C20:3" - - compartment: x - - formula: C28H53NO7P + - compartment: "x" + - formula: "C28H53NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pedh203_hs_x + - id: "pedh203_hs_x" - name: "1-Dihomo-Linolenoylglycerophosphoethanolamine (20:3, Delta 8, 11, 14)" - - compartment: x - - formula: C25H46NO7P + - compartment: "x" + - formula: "C25H46NO7P" - charge: 0 - - inchis: 1/C25H46NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-25(28)31-22-24(27)23-33-34(29,30)32-21-20-26/h6-7,9-10,12-13,24,27H,2-5,8,11,14-23,26H2,1H3,(H,29,30)/b7-6-,10-9-,13-12- - - metFrom: Recon3D + - inchis: "1/C25H46NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-25(28)31-22-24(27)23-33-34(29,30)32-21-20-26/h6-7,9-10,12-13,24,27H,2-5,8,11,14-23,26H2,1H3,(H,29,30)/b7-6-,10-9-,13-12-" + - metFrom: "Recon3D" - !!omap - - id: pcholdoc_hs_x + - id: "pcholdoc_hs_x" - name: "1-Docosahexaenoylglycerophosphocholine" - - compartment: x - - formula: C34H59NO7P + - compartment: "x" + - formula: "C34H59NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pe226_hs_x + - id: "pe226_hs_x" - name: "1-Docosahexenoylglyceroethanolamine (Delta 4, 7, 10, 13, 16, 19), Lpe (22:6)" - - compartment: x - - formula: C27H46NO7P + - compartment: "x" + - formula: "C27H46NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholn226_hs_x + - id: "pcholn226_hs_x" - name: "1-Docosahexenoylglycerophosphocholine (Delta 4, 7, 10, 13, 16, 19), Sn1-Lpc (22:6)" - - compartment: x - - formula: C30H51NO7P + - compartment: "x" + - formula: "C30H51NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholn2254_hs_x + - id: "pcholn2254_hs_x" - name: "1-Docosapentenoylglycerophosphocholine (Delta 4, 7, 10, 13, 16), Sn1-Lpc (22:5)-W6" - - compartment: x - - formula: C30H53NO7P + - compartment: "x" + - formula: "C30H53NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholn225_hs_x + - id: "pcholn225_hs_x" - name: "1-Docosapentenoylglycerophosphocholine (Delta 7, 10, 13, 16, 19), Sn1-Lpc (22:5)-W3" - - compartment: x - - formula: C30H53NO7P + - compartment: "x" + - formula: "C30H53NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pe224_hs_x + - id: "pe224_hs_x" - name: "1-Docosatetraenoyglycerophosphoethanolamine (22:4, Delta 7, 10, 13, 16)" - - compartment: x - - formula: C27H48NO7P + - compartment: "x" + - formula: "C27H48NO7P" - charge: 0 - - inchis: 1/C27H48NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-27(30)33-24-26(29)25-35-36(31,32)34-23-22-28/h6-7,9-10,12-13,15-16,26,29H,2-5,8,11,14,17-25,28H2,1H3,(H,31,32)/b7-6+,10-9+,13-12+,16-15+/t26-/s2 - - metFrom: Recon3D + - inchis: "1/C27H48NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-27(30)33-24-26(29)25-35-36(31,32)34-23-22-28/h6-7,9-10,12-13,15-16,26,29H,2-5,8,11,14,17-25,28H2,1H3,(H,31,32)/b7-6+,10-9+,13-12+,16-15+/t26-/s2" + - metFrom: "Recon3D" - !!omap - - id: pcholn224_hs_x + - id: "pcholn224_hs_x" - name: "1-Docosatetraenoylglycerophosphocholine (Delta 7, 10, 13, 16), Sn1-Lpc (22:4)" - - compartment: x - - formula: C30H55NO7P + - compartment: "x" + - formula: "C30H55NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholeic_hs_x + - id: "pcholeic_hs_x" - name: "1-Eicosadienoylglycerophosphocholine (Delta 11,14)" - - compartment: x - - formula: C28H55NO7P + - compartment: "x" + - formula: "C28H55NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholn205_hs_x + - id: "pcholn205_hs_x" - name: "1-Eicosapentenoylglycerophosphocholine (Delta 5, 8, 11, 14, 17), Sn1-Lpc (20:5)" - - compartment: x - - formula: C28H49NO7P + - compartment: "x" + - formula: "C28H49NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholn204_hs_x + - id: "pcholn204_hs_x" - name: "1-Eicosatetraenoylglycerophosphocholine (Delta 8, 11, 14, 17), Sn1-Lpc (20:4)" - - compartment: x - - formula: C28H51NO7P + - compartment: "x" + - formula: "C28H51NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholet_hs_x + - id: "pcholet_hs_x" - name: "1-Eicosatrienoylglycerophosphocholine (Delta 11, 14, 17)" - - compartment: x - - formula: C28H53NO7P + - compartment: "x" + - formula: "C28H53NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pe203_hs_x + - id: "pe203_hs_x" - name: "1-Eicosatrienoylglycerophosphoethanolamine (Delta 11, 14, 17), Lpe (20:3)" - - compartment: x - - formula: C25H46NO7P + - compartment: "x" + - formula: "C25H46NO7P" - charge: 0 - - inchis: 1/C25H46NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-25(28)31-22-24(27)23-33-34(29,30)32-21-20-26/h3-4,6-7,9-10,24,27H,2,5,8,11-23,26H2,1H3,(H,29,30)/b4-3+,7-6+,10-9+/t24-/s2 - - metFrom: Recon3D + - inchis: "1/C25H46NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-25(28)31-22-24(27)23-33-34(29,30)32-21-20-26/h3-4,6-7,9-10,24,27H,2,5,8,11-23,26H2,1H3,(H,29,30)/b4-3+,7-6+,10-9+/t24-/s2" + - metFrom: "Recon3D" - !!omap - - id: pcholn201_hs_x + - id: "pcholn201_hs_x" - name: "1-Eicosenoylglycerophosphocholine (Delta 11) ,Sn1-Lpc (20:1)" - - compartment: x - - formula: C28H57NO7P + - compartment: "x" + - formula: "C28H57NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: xolest183_hs_x + - id: "xolest183_hs_x" - name: "1-Gamma-Linolenoyl-Cholesterol, Cholesterol-Ester (18:3, Delta 6, 9, 12)" - - compartment: x - - formula: C45H74O2 + - compartment: "x" + - formula: "C45H74O2" - charge: 0 - - inchis: 1S/C45H74O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-25-43(46)47-38-30-32-44(5)37(34-38)26-27-39-41-29-28-40(36(4)24-22-23-35(2)3)45(41,6)33-31-42(39)44/h11-12,14-15,17-18,26,35-36,38-42H,7-10,13,16,19-25,27-34H2,1-6H3/b12-11-,15-14-,18-17-/t36-,38+,39?,40?,41?,42?,44+,45-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C45H74O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-25-43(46)47-38-30-32-44(5)37(34-38)26-27-39-41-29-28-40(36(4)24-22-23-35(2)3)45(41,6)33-31-42(39)44/h11-12,14-15,17-18,26,35-36,38-42H,7-10,13,16,19-25,27-34H2,1-6H3/b12-11-,15-14-,18-17-/t36-,38+,39?,40?,41?,42?,44+,45-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: pcholhep_hs_x + - id: "pcholhep_hs_x" - name: "1-Heptadecanoylglycerophosphocholine" - - compartment: x - - formula: C25H53NO7P + - compartment: "x" + - formula: "C25H53NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pe17_hs_x + - id: "pe17_hs_x" - name: "1-Heptadecanoylglycerophosphoethanolamine (C17:0 Pe)" - - compartment: x - - formula: C22H46NO7P + - compartment: "x" + - formula: "C22H46NO7P" - charge: 0 - - inchis: 1/C22H46NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-22(25)28-19-21(24)20-30-31(26,27)29-18-17-23/h21,24H,2-20,23H2,1H3,(H,26,27) - - metFrom: Recon3D + - inchis: "1/C22H46NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-22(25)28-19-21(24)20-30-31(26,27)29-18-17-23/h21,24H,2-20,23H2,1H3,(H,26,27)" + - metFrom: "Recon3D" - !!omap - - id: pe161_hs_x + - id: "pe161_hs_x" - name: "1-Hexadecenoylglycerophosphoethanolamine (C16:1 Pe, Delta 9)" - - compartment: x - - formula: C21H42NO7P + - compartment: "x" + - formula: "C21H42NO7P" - charge: 0 - - inchis: 1/C21H42NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-21(24)27-18-20(23)19-29-30(25,26)28-17-16-22/h7-8,20,23H,2-6,9-19,22H2,1H3,(H,25,26)/b8-7+ - - metFrom: Recon3D + - inchis: "1/C21H42NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-21(24)27-18-20(23)19-29-30(25,26)28-17-16-22/h7-8,20,23H,2-6,9-19,22H2,1H3,(H,25,26)/b8-7+" + - metFrom: "Recon3D" - !!omap - - id: pcholn24_hs_x + - id: "pcholn24_hs_x" - name: "1-Lignocericylglycerophosphocholine (24:0), Lysopc A C24" - - compartment: x - - formula: C32H67NO7P + - compartment: "x" + - formula: "C32H67NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: xolest182_hs_x + - id: "xolest182_hs_x" - name: "1-Linoleoyl-Cholesterol, Cholesterol-Ester (18:2, Delta 9, 12)" - - compartment: x - - formula: C45H76O2 + - compartment: "x" + - formula: "C45H76O2" - charge: 0 - - inchis: 1/C45H76O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-25-43(46)47-38-30-32-44(5)37(34-38)26-27-39-41-29-28-40(36(4)24-22-23-35(2)3)45(41,6)33-31-42(39)44/h11-12,14-15,26,35-36,38-42H,7-10,13,16-25,27-34H2,1-6H3/b12-11-,15-14+/t36-,38+,39+,40-,41+,42+,44+,45-/s2 - - metFrom: Recon3D + - inchis: "1/C45H76O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-25-43(46)47-38-30-32-44(5)37(34-38)26-27-39-41-29-28-40(36(4)24-22-23-35(2)3)45(41,6)33-31-42(39)44/h11-12,14-15,26,35-36,38-42H,7-10,13,16-25,27-34H2,1-6H3/b12-11-,15-14+/t36-,38+,39+,40-,41+,42+,44+,45-/s2" + - metFrom: "Recon3D" - !!omap - - id: maglinl_hs_x + - id: "maglinl_hs_x" - name: "1-Linoleoylglycerol" - - compartment: x - - formula: C21H38O4 + - compartment: "x" + - formula: "C21H38O4" - charge: 0 - - inchis: 1/C21H38O4/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-21(24)25-19-20(23)18-22/h6-7,9-10,20,22-23H,2-5,8,11-19H2,1H3/b7-6-,10-9-/t20-/s2 - - metFrom: Recon3D + - inchis: "1/C21H38O4/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-21(24)25-19-20(23)18-22/h6-7,9-10,20,22-23H,2-5,8,11-19H2,1H3/b7-6-,10-9-/t20-/s2" + - metFrom: "Recon3D" - !!omap - - id: pchollinl_hs_x + - id: "pchollinl_hs_x" - name: "1-Linoleoylglycerophosphocholine (Delta 9,12)" - - compartment: x - - formula: C26H51NO7P + - compartment: "x" + - formula: "C26H51NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pelinl_hs_x + - id: "pelinl_hs_x" - name: "1-Linoleoylglycerophosphoethanolamine (Delta 9,12)" - - compartment: x - - formula: C23H44NO7P + - compartment: "x" + - formula: "C23H44NO7P" - charge: 0 - - inchis: 1/C23H44NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-23(26)29-20-22(25)21-31-32(27,28)30-19-18-24/h6-7,9-10,22,25H,2-5,8,11-21,24H2,1H3,(H,27,28)/b7-6+,10-9+ - - metFrom: Recon3D + - inchis: "1/C23H44NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-23(26)29-20-22(25)21-31-32(27,28)30-19-18-24/h6-7,9-10,22,25H,2-5,8,11-21,24H2,1H3,(H,27,28)/b7-6+,10-9+" + - metFrom: "Recon3D" - !!omap - - id: pcholmyr_hs_x + - id: "pcholmyr_hs_x" - name: "1-Myristoylglycerophosphocholine" - - compartment: x - - formula: C22H47NO7P + - compartment: "x" + - formula: "C22H47NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pe14_hs_x + - id: "pe14_hs_x" - name: "1-Myristoylglycerophosphoethanolamine (C14:0 Pe)" - - compartment: x - - formula: C19H40NO7P + - compartment: "x" + - formula: "C19H40NO7P" - charge: 0 - - inchis: 1/C19H40NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-19(22)25-16-18(21)17-27-28(23,24)26-15-14-20/h18,21H,2-17,20H2,1H3,(H,23,24) - - metFrom: Recon3D + - inchis: "1/C19H40NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-19(22)25-16-18(21)17-27-28(23,24)26-15-14-20/h18,21H,2-17,20H2,1H3,(H,23,24)" + - metFrom: "Recon3D" - !!omap - - id: pcholn19_hs_x + - id: "pcholn19_hs_x" - name: "1-Nonadecanoylglycerophosphocholine, Sn1-Lpc (19:0)" - - compartment: x - - formula: C27H57NO7P + - compartment: "x" + - formula: "C27H57NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholn1836_hs_x + - id: "pcholn1836_hs_x" - name: "1-Octadeca-Trienoylglycerophosphocholine, Sn1-Lpc (18:3, Delta 6, 9, 12)" - - compartment: x - - formula: C26H49NO7P + - compartment: "x" + - formula: "C26H49NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholn183_hs_x + - id: "pcholn183_hs_x" - name: "1-Octadeca-Trienoylglycerophosphocholine, Sn1-Lpc (18:3, Delta 9, 12, 15)" - - compartment: x - - formula: C26H49NO7P + - compartment: "x" + - formula: "C26H49NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: magole_hs_x + - id: "magole_hs_x" - name: "1-Oleoylglycerol" - - compartment: x - - formula: C21H40O4 + - compartment: "x" + - formula: "C21H40O4" - charge: 0 - - inchis: 1/C21H40O4/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-21(24)25-19-20(23)18-22/h9-10,20,22-23H,2-8,11-19H2,1H3/b10-9- - - metFrom: Recon3D + - inchis: "1/C21H40O4/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-21(24)25-19-20(23)18-22/h9-10,20,22-23H,2-8,11-19H2,1H3/b10-9-" + - metFrom: "Recon3D" - !!omap - - id: pcholole_hs_x + - id: "pcholole_hs_x" - name: "1-Oleoylglycerophosphocholine (Delta 9)" - - compartment: x - - formula: C26H53NO7P + - compartment: "x" + - formula: "C26H53NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: peole_hs_x + - id: "peole_hs_x" - name: "1-Oleoylglycerophosphoethanolamine (Delta 9)" - - compartment: x - - formula: C23H46NO7P + - compartment: "x" + - formula: "C23H46NO7P" - charge: 0 - - inchis: 1/C23H46NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-23(26)29-20-22(25)21-31-32(27,28)30-19-18-24/h9-10,22,25H,2-8,11-21,24H2,1H3,(H,27,28)/b10-9+ - - metFrom: Recon3D + - inchis: "1/C23H46NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-23(26)29-20-22(25)21-31-32(27,28)30-19-18-24/h9-10,22,25H,2-8,11-21,24H2,1H3,(H,27,28)/b10-9+" + - metFrom: "Recon3D" - !!omap - - id: pcholpalme_hs_x + - id: "pcholpalme_hs_x" - name: "1-Palmitoleoylglycerophosphocholine (Delta 9)" - - compartment: x - - formula: C24H49NO7P + - compartment: "x" + - formula: "C24H49NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: magpalm_hs_x + - id: "magpalm_hs_x" - name: "1-Palmitoylglycerol" - - compartment: x - - formula: C19H38O4 + - compartment: "x" + - formula: "C19H38O4" - charge: 0 - - inchis: 1/C19H38O4/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-19(22)23-17-18(21)16-20/h18,20-21H,2-17H2,1H3 - - metFrom: Recon3D + - inchis: "1/C19H38O4/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-19(22)23-17-18(21)16-20/h18,20-21H,2-17H2,1H3" + - metFrom: "Recon3D" - !!omap - - id: pcholpalm_hs_x + - id: "pcholpalm_hs_x" - name: "1-Palmitoylglycerophosphocholine" - - compartment: x - - formula: C24H51NO7P + - compartment: "x" + - formula: "C24H51NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pepalm_hs_x + - id: "pepalm_hs_x" - name: "1-Palmitoylglycerophosphoethanolamine" - - compartment: x - - formula: C21H44NO7P + - compartment: "x" + - formula: "C21H44NO7P" - charge: 0 - - inchis: 1/C21H44NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-21(24)27-18-20(23)19-29-30(25,26)28-17-16-22/h20,23H,2-19,22H2,1H3,(H,25,26) - - metFrom: Recon3D + - inchis: "1/C21H44NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-21(24)27-18-20(23)19-29-30(25,26)28-17-16-22/h20,23H,2-19,22H2,1H3,(H,25,26)" + - metFrom: "Recon3D" - !!omap - - id: pailpalm_hs_x + - id: "pailpalm_hs_x" - name: "1-Palmitoylglycerophosphoinositol" - - compartment: x - - formula: C25H48O12P + - compartment: "x" + - formula: "C25H48O12P" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholn15_hs_x + - id: "pcholn15_hs_x" - name: "1-Pentadecanoylglycerophosphocholine, Sn1-Lpc (15:0)" - - compartment: x - - formula: C23H49NO7P + - compartment: "x" + - formula: "C23H49NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pe15_hs_x + - id: "pe15_hs_x" - name: "1-Pentadecanoylglycerophosphoethanolamine (C15:0 Pe)" - - compartment: x - - formula: C20H42NO7P + - compartment: "x" + - formula: "C20H42NO7P" - charge: 0 - - inchis: 1/C20H42NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-20(23)28-19(17-22)18-27-29(24,25)26-16-15-21/h19,22H,2-18,21H2,1H3,(H,24,25)/t19-/s2 - - metFrom: Recon3D + - inchis: "1/C20H42NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-20(23)28-19(17-22)18-27-29(24,25)26-16-15-21/h19,22H,2-18,21H2,1H3,(H,24,25)/t19-/s2" + - metFrom: "Recon3D" - !!omap - - id: magste_hs_x + - id: "magste_hs_x" - name: "1-Stearoylglycerol" - - compartment: x - - formula: C21H42O4 + - compartment: "x" + - formula: "C21H42O4" - charge: 0 - - inchis: 1/C21H42O4/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-21(24)25-19-20(23)18-22/h20,22-23H,2-19H2,1H3 - - metFrom: Recon3D + - inchis: "1/C21H42O4/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-21(24)25-19-20(23)18-22/h20,22-23H,2-19H2,1H3" + - metFrom: "Recon3D" - !!omap - - id: pcholste_hs_x + - id: "pcholste_hs_x" - name: "1-Stearoylglycerophosphocholine" - - compartment: x - - formula: C26H55NO7P + - compartment: "x" + - formula: "C26H55NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: peste_hs_x + - id: "peste_hs_x" - name: "1-Stearoylglycerophosphoethanolamine" - - compartment: x - - formula: C23H48NO7P + - compartment: "x" + - formula: "C23H48NO7P" - charge: 0 - - inchis: 1/C23H48NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-23(26)29-20-22(25)21-31-32(27,28)30-19-18-24/h22,25H,2-21,24H2,1H3,(H,27,28)/t22-/s2 - - metFrom: Recon3D + - inchis: "1/C23H48NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-23(26)29-20-22(25)21-31-32(27,28)30-19-18-24/h22,25H,2-21,24H2,1H3,(H,27,28)/t22-/s2" + - metFrom: "Recon3D" - !!omap - - id: pailste_hs_x + - id: "pailste_hs_x" - name: "1-Stearoylglycerophosphoinositol" - - compartment: x - - formula: C27H52O12P + - compartment: "x" + - formula: "C27H52O12P" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: xolest205_hs_x + - id: "xolest205_hs_x" - name: "1-Timnodnoyl-Cholesterol, Cholesterol-Ester (20:5, Delta 5,8,11,14,17)" - - compartment: x - - formula: C47H74O2 + - compartment: "x" + - formula: "C47H74O2" - charge: 0 - - inchis: 1/C47H74O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-22-23-27-45(48)49-40-32-34-46(5)39(36-40)28-29-41-43-31-30-42(38(4)26-24-25-37(2)3)47(43,6)35-33-44(41)46/h8-9,11-12,14-15,17-18,20-21,28,37-38,40-44H,7,10,13,16,19,22-27,29-36H2,1-6H3/b9-8-,12-11-,15-14-,18-17-,21-20-/t38-,40+,41+,42-,43+,44+,46+,47-/s2 - - metFrom: Recon3D + - inchis: "1/C47H74O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-22-23-27-45(48)49-40-32-34-46(5)39(36-40)28-29-41-43-31-30-42(38(4)26-24-25-37(2)3)47(43,6)35-33-44(41)46/h8-9,11-12,14-15,17-18,20-21,28,37-38,40-44H,7,10,13,16,19,22-27,29-36H2,1-6H3/b9-8-,12-11-,15-14-,18-17-,21-20-/t38-,40+,41+,42-,43+,44+,46+,47-/s2" + - metFrom: "Recon3D" - !!omap - - id: pe13_hs_x + - id: "pe13_hs_x" - name: "1-Tridecanoylglycerophosphoethanolamine (C13:0 Pe)" - - compartment: x - - formula: C18H38NO7P + - compartment: "x" + - formula: "C18H38NO7P" - charge: 0 - - inchis: 1/C18H38NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-18(21)24-15-17(20)16-26-27(22,23)25-14-13-19/h17,20H,2-16,19H2,1H3,(H,22,23) - - metFrom: Recon3D + - inchis: "1/C18H38NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-18(21)24-15-17(20)16-26-27(22,23)25-14-13-19/h17,20H,2-16,19H2,1H3,(H,22,23)" + - metFrom: "Recon3D" - !!omap - - id: xolest181_hs_x + - id: "xolest181_hs_x" - name: "1-Vaccenoyl-Cholesterol, Cholesterol-Ester (18:1, Delta 11)" - - compartment: x - - formula: C45H78O2 + - compartment: "x" + - formula: "C45H78O2" - charge: 0 - - inchis: 1/C45H78O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-25-43(46)47-38-30-32-44(5)37(34-38)26-27-39-41-29-28-40(36(4)24-22-23-35(2)3)45(41,6)33-31-42(39)44/h12-13,26,35-36,38-42H,7-11,14-25,27-34H2,1-6H3/b13-12+/t36-,38+,39+,40-,41+,42+,44+,45-/s2 - - metFrom: Recon3D + - inchis: "1/C45H78O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-25-43(46)47-38-30-32-44(5)37(34-38)26-27-39-41-29-28-40(36(4)24-22-23-35(2)3)45(41,6)33-31-42(39)44/h12-13,26,35-36,38-42H,7-11,14-25,27-34H2,1-6H3/b13-12+/t36-,38+,39+,40-,41+,42+,44+,45-/s2" + - metFrom: "Recon3D" - !!omap - - id: m00510x + - id: "m00510x" - name: "1-acylglycerol-VLDL pool" - - compartment: x - - formula: C4H7O4R + - compartment: "x" + - formula: "C4H7O4R" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00503x + - id: "m00503x" - name: "1-acylglycerol-chylomicron pool" - - compartment: x - - formula: C4H7O4R + - compartment: "x" + - formula: "C4H7O4R" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00519x + - id: "m00519x" - name: "1-alpha,25-dihydroxyvitamin D2" - - compartment: x - - formula: C28H44O3 + - compartment: "x" + - formula: "C28H44O3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 1hibup_S_x + - id: "1hibup_S_x" - name: "1-hydroxy S-ibuprofen" - - compartment: x - - formula: C13H17O3 + - compartment: "x" + - formula: "C13H17O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 1hibupglu_S_x + - id: "1hibupglu_S_x" - name: "1-hydroxy S-ibuprofen-glucuronide" - - compartment: x - - formula: C19H25O9 + - compartment: "x" + - formula: "C19H25O9" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00260x + - id: "m00260x" - name: "10,13,16,19-docosatetraenoic acid" - - compartment: x - - formula: C22H35O2 + - compartment: "x" + - formula: "C22H35O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00265x + - id: "m00265x" - name: "10,13,16-docosatriynoic acid" - - compartment: x - - formula: C22H37O2 + - compartment: "x" + - formula: "C22H37O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00270x + - id: "m00270x" - name: "10-HETE" - - compartment: x - - formula: C20H31O3 + - compartment: "x" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00279x + - id: "m00279x" - name: "11,12-EET" - - compartment: x - - formula: C20H31O3 + - compartment: "x" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00291x + - id: "m00291x" - name: "11-cis-retinol" - - compartment: x - - formula: C20H30O + - compartment: "x" + - formula: "C20H30O" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00293x + - id: "m00293x" - name: "11-dehydro-thromboxane B2" - - compartment: x - - formula: C20H31O6 + - compartment: "x" + - formula: "C20H31O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00294x + - id: "m00294x" - name: "11-deoxycorticosterone" - - compartment: x - - formula: C21H30O3 + - compartment: "x" + - formula: "C21H30O3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00295x + - id: "m00295x" - name: "11-deoxycortisol" - - compartment: x - - formula: C21H30O4 + - compartment: "x" + - formula: "C21H30O4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00305x + - id: "m00305x" - name: "12(13)-EpOME" - - compartment: x - - formula: C18H31O3 + - compartment: "x" + - formula: "C18H31O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00308x + - id: "m00308x" - name: "12(S)-HHT" - - compartment: x - - formula: C17H27O3 + - compartment: "x" + - formula: "C17H27O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00309x + - id: "m00309x" - name: "12(S)-HPETE" - - compartment: x - - formula: C20H31O4 + - compartment: "x" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00314x + - id: "m00314x" - name: "12,13-hydroxyoctadec-9(z)-enoate" - - compartment: x - - formula: C18H33O4 + - compartment: "x" + - formula: "C18H33O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00315x + - id: "m00315x" - name: "12,15,18,21-tetracosatetraenoic acid" - - compartment: x - - formula: C24H39O2 + - compartment: "x" + - formula: "C24H39O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 12dhchol_x + - id: "12dhchol_x" - name: "12-Dehydrocholic acid; 12-Oxodeoxycholic acid; 12oxo-3alpha,7alpha-Dihydroxy-5beta-cholan-24-oic acid" - - compartment: x - - formula: C24H37O5 + - compartment: "x" + - formula: "C24H37O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 12htacr_x + - id: "12htacr_x" - name: "12-HT or M-VI, 12-hydroxy tacrolimus" - - compartment: x - - formula: C44H69NO13 + - compartment: "x" + - formula: "C44H69NO13" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00324x + - id: "m00324x" - name: "12-hydroxy-arachidonate" - - compartment: x - - formula: C20H31O3 + - compartment: "x" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00337x + - id: "m00337x" - name: "13(S)-HPODE" - - compartment: x - - formula: C18H31O4 + - compartment: "x" + - formula: "C18H31O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 1513tacr_x + - id: "1513tacr_x" - name: "13,15-O-didesmethyl tacrolimus" - - compartment: x - - formula: C42H65NO12 + - compartment: "x" + - formula: "C42H65NO12" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00341x + - id: "m00341x" - name: "13,16,19-docosatrienoic acid" - - compartment: x - - formula: C22H37O2 + - compartment: "x" + - formula: "C22H37O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 1331tacr_x + - id: "1331tacr_x" - name: "13,31-O-Didesmethyl-tacrolimus" - - compartment: x - - formula: C42H65NO12 + - compartment: "x" + - formula: "C42H65NO12" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 13dmt_x + - id: "13dmt_x" - name: "13-O-desmethyl tacrolimus, 13-DMT or M-I" - - compartment: x - - formula: C43H67NO12 + - compartment: "x" + - formula: "C43H67NO12" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00350x + - id: "m00350x" - name: "13-cis-retinoate" - - compartment: x - - formula: C20H27O2 + - compartment: "x" + - formula: "C20H27O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00365x + - id: "m00365x" - name: "14,15-DiHETE" - - compartment: x - - formula: C20H31O4 + - compartment: "x" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00366x + - id: "m00366x" - name: "14,15-EET" - - compartment: x - - formula: C20H31O3 + - compartment: "x" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00373x + - id: "m00373x" - name: "15(R)-HEPE" - - compartment: x - - formula: C20H29O3 + - compartment: "x" + - formula: "C20H29O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00376x + - id: "m00376x" - name: "15(S)-HEPE" - - compartment: x - - formula: C20H29O3 + - compartment: "x" + - formula: "C20H29O3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00378x + - id: "m00378x" - name: "15(S)-HETrE" - - compartment: x - - formula: C20H33O3 + - compartment: "x" + - formula: "C20H33O3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00380x + - id: "m00380x" - name: "15(S)-HPETE" - - compartment: x - - formula: C20H31O4 + - compartment: "x" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 1531tacr_x + - id: "1531tacr_x" - name: "15,31-O-Didesmethyl-tacrolimus" - - compartment: x - - formula: C42H65NO12 + - compartment: "x" + - formula: "C42H65NO12" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 15dmt_x + - id: "15dmt_x" - name: "15-DMT or M-III, 15-O-desmethyl tacrolimus" - - compartment: x - - formula: C43H67NO12 + - compartment: "x" + - formula: "C43H67NO12" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 15kprostgf2_x + - id: "15kprostgf2_x" - name: "15-Keto-Prostaglandin F2A" - - compartment: x - - formula: C20H31O5 + - compartment: "x" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00384x + - id: "m00384x" - name: "15-deoxy-PGD2" - - compartment: x - - formula: C20H29O4 + - compartment: "x" + - formula: "C20H29O4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00385x + - id: "m00385x" - name: "15-deoxy-prostaglandin J2" - - compartment: x - - formula: C20H27O3 + - compartment: "x" + - formula: "C20H27O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00399x + - id: "m00399x" - name: "16alpha-hydroxydehydroepiandrosterone" - - compartment: x - - formula: C19H28O3 + - compartment: "x" + - formula: "C19H28O3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00400x + - id: "m00400x" - name: "16alpha-hydroxyestrone" - - compartment: x - - formula: C18H22O3 + - compartment: "x" + - formula: "C18H22O3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00408x + - id: "m00408x" - name: "17alpha-hydroxypregnenolone" - - compartment: x - - formula: C21H32O3 + - compartment: "x" + - formula: "C21H32O3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00407x + - id: "m00407x" - name: "17alpha-hydroxypregnenolone sulfate" - - compartment: x - - formula: C21H31O6S + - compartment: "x" + - formula: "C21H31O6S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00409x + - id: "m00409x" - name: "17alpha-hydroxyprogesterone" - - compartment: x - - formula: C21H30O3 + - compartment: "x" + - formula: "C21H30O3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00428x + - id: "m00428x" - name: "18-hydroxy-arachidonate" - - compartment: x - - formula: C20H31O3 + - compartment: "x" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: and19one_x + - id: "and19one_x" - name: "19-Hydroxyandrost-4-Ene-3,17-Dione" - - compartment: x - - formula: C19H26O3 + - compartment: "x" + - formula: "C19H26O3" - charge: 0 - - inchis: 1/C19H26O3/c1-18-8-7-16-14(15(18)4-5-17(18)22)3-2-12-10-13(21)6-9-19(12,16)11-20/h10,14-16,20H,2-9,11H2,1H3/t14?,15?,16?,18-,19+/s2 - - metFrom: Recon3D + - inchis: "1/C19H26O3/c1-18-8-7-16-14(15(18)4-5-17(18)22)3-2-12-10-13(21)6-9-19(12,16)11-20/h10,14-16,20H,2-9,11H2,1H3/t14?,15?,16?,18-,19+/s2" + - metFrom: "Recon3D" - !!omap - - id: m00570x + - id: "m00570x" - name: "2,3-cyclic-UMP" - - compartment: x - - formula: C9H10N2O8P + - compartment: "x" + - formula: "C9H10N2O8P" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00576x + - id: "m00576x" - name: "2,5-dihydroxybenzoate" - - compartment: x - - formula: C7H5O4 + - compartment: "x" + - formula: "C7H5O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2h3mv_x + - id: "2h3mv_x" - name: "2-Hydroxy-3-Methyl-Valerate" - - compartment: x - - formula: C6H11O3 + - compartment: "x" + - formula: "C6H11O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2hydog_x + - id: "2hydog_x" - name: "2-Hydroxy-Glutarate" - - compartment: x - - formula: C5H6O5 + - compartment: "x" + - formula: "C5H6O5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2hxic_L_x + - id: "2hxic_L_x" - name: "2-Hydroxy-Isocaproate" - - compartment: x - - formula: C6H11O3 + - compartment: "x" + - formula: "C6H11O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2hiv_x + - id: "2hiv_x" - name: "2-Hydroxy-Isovalerate" - - compartment: x - - formula: C5H9O3 + - compartment: "x" + - formula: "C5H9O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: adpoh_x + - id: "adpoh_x" - name: "2-Hydroxyadipic Acid" - - compartment: x - - formula: C6H8O5 + - compartment: "x" + - formula: "C6H8O5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pchol2linl_hs_x + - id: "pchol2linl_hs_x" - name: "2-Linoleoylglycerophosphocholine" - - compartment: x - - formula: C26H51NO7P + - compartment: "x" + - formula: "C26H51NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pe2linl_hs_x + - id: "pe2linl_hs_x" - name: "2-Linoleoylglycerophosphoethanolamine" - - compartment: x - - formula: C23H44NO7P + - compartment: "x" + - formula: "C23H44NO7P" - charge: 0 - - inchis: 1/C23H44NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-23(26)31-22(20-25)21-30-32(27,28)29-19-18-24/h6-7,9-10,22,25H,2-5,8,11-21,24H2,1H3,(H,27,28)/b7-6-,10-9-/t22-/s2 - - metFrom: Recon3D + - inchis: "1/C23H44NO7P/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-23(26)31-22(20-25)21-30-32(27,28)29-19-18-24/h6-7,9-10,22,25H,2-5,8,11-21,24H2,1H3,(H,27,28)/b7-6-,10-9-/t22-/s2" + - metFrom: "Recon3D" - !!omap - - id: 2m3hbu_x + - id: "2m3hbu_x" - name: "2-Methyl-3-Hydroxy-Butyrate" - - compartment: x - - formula: C5H9O3 + - compartment: "x" + - formula: "C5H9O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2m3hvac_x + - id: "2m3hvac_x" - name: "2-Methyl-3-Hydroxy-Valerate" - - compartment: x - - formula: C6H11O3 + - compartment: "x" + - formula: "C6H11O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pchol2ole_hs_x + - id: "pchol2ole_hs_x" - name: "2-Oleoylglycerophosphocholine" - - compartment: x - - formula: C26H53NO7P + - compartment: "x" + - formula: "C26H53NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pchol2palm_hs_x + - id: "pchol2palm_hs_x" - name: "2-Palmitoylglycerophosphocholine" - - compartment: x - - formula: C24H51NO7P + - compartment: "x" + - formula: "C24H51NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pchol2ste_hs_x + - id: "pchol2ste_hs_x" - name: "2-Stearoylglycerophosphocholine" - - compartment: x - - formula: C26H55NO7P + - compartment: "x" + - formula: "C26H55NO7P" - charge: 0 - - inchis: 1/C26H55NO7P/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-26(29)32-23-25(28)24-34-35(30,31)33-22-21-27(2,3)4/h25,28H,5-24H2,1-4H3,(H,30,31) - - metFrom: Recon3D + - inchis: "1/C26H55NO7P/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-26(29)32-23-25(28)24-34-35(30,31)33-22-21-27(2,3)4/h25,28H,5-24H2,1-4H3,(H,30,31)" + - metFrom: "Recon3D" - !!omap - - id: m00635x + - id: "m00635x" - name: "2-arachidonoylglycerol" - - compartment: x - - formula: C23H38O4 + - compartment: "x" + - formula: "C23H38O4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2hibupglu_S_x + - id: "2hibupglu_S_x" - name: "2-hydroxy S-ibuprofen-glucuronide" - - compartment: x - - formula: C19H25O9 + - compartment: "x" + - formula: "C19H25O9" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2hibup_R_x + - id: "2hibup_R_x" - name: "2-hydroxy-R-ibuprofen" - - compartment: x - - formula: C13H17O3 + - compartment: "x" + - formula: "C13H17O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2hibup_S_x + - id: "2hibup_S_x" - name: "2-hydroxy-S-ibuprofen" - - compartment: x - - formula: C13H17O3 + - compartment: "x" + - formula: "C13H17O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2hatvacid_x + - id: "2hatvacid_x" - name: "2-hydroxy-atorvastatin-acid / ortho-hydroxy-atorvastatin acid" - - compartment: x - - formula: C33H34FN2O6 + - compartment: "x" + - formula: "C33H34FN2O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2hatvacidgluc_x + - id: "2hatvacidgluc_x" - name: "2-hydroxy-atorvastatin-acyl-glucuronide" - - compartment: x - - formula: C39H42FN2O12 + - compartment: "x" + - formula: "C39H42FN2O12" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2hatvlac_x + - id: "2hatvlac_x" - name: "2-hydroxy-atorvastatin-lactone / ortho-hydroxy-atorvastatin lactone" - - compartment: x - - formula: C33H33FN2O5 + - compartment: "x" + - formula: "C33H33FN2O5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 2hatvlacgluc_x + - id: "2hatvlacgluc_x" - name: "2-hydroxy-atorvastatin-lactone-glucuronide" - - compartment: x - - formula: C39H40FN2O11 + - compartment: "x" + - formula: "C39H40FN2O11" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00649x + - id: "m00649x" - name: "2-hydroxyestradiol-17beta" - - compartment: x - - formula: C18H24O3 + - compartment: "x" + - formula: "C18H24O3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00650x + - id: "m00650x" - name: "2-hydroxyestrone" - - compartment: x - - formula: C18H22O3 + - compartment: "x" + - formula: "C18H22O3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00654x + - id: "m00654x" - name: "2-hydroxyphenylacetate" - - compartment: x - - formula: C8H7O3 + - compartment: "x" + - formula: "C8H7O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00656x + - id: "m00656x" - name: "2-lysolecithin pool" - - compartment: x - - formula: C8H19NO5PRCO2 + - compartment: "x" + - formula: "C8H19NO5PRCO2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00659x + - id: "m00659x" - name: "2-methoxyestradiol-17beta" - - compartment: x - - formula: C19H26O3 + - compartment: "x" + - formula: "C19H26O3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00660x + - id: "m00660x" - name: "2-methoxyestrone" - - compartment: x - - formula: C19H24O3 + - compartment: "x" + - formula: "C19H24O3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00664x + - id: "m00664x" - name: "2-methylbutyrylglycine" - - compartment: x - - formula: C7H12NO3 + - compartment: "x" + - formula: "C7H12NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00669x + - id: "m00669x" - name: "2-oxo-3-methylvalerate" - - compartment: x - - formula: C6H9O3 + - compartment: "x" + - formula: "C6H9O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00670x + - id: "m00670x" - name: "2-oxoadipate" - - compartment: x - - formula: C6H6O5 + - compartment: "x" + - formula: "C6H6O5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00671x + - id: "m00671x" - name: "2-oxobutyrate" - - compartment: x - - formula: C4H5O3 + - compartment: "x" + - formula: "C4H5O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00674x + - id: "m00674x" - name: "2-phospho-D-glycerate" - - compartment: x - - formula: C3H4O7P + - compartment: "x" + - formula: "C3H4O7P" - charge: -3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00585x + - id: "m00585x" - name: "20-COOH-LTB4" - - compartment: x - - formula: C20H28O6 + - compartment: "x" + - formula: "C20H28O6" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00599x + - id: "m00599x" - name: "20-OH-LTB4" - - compartment: x - - formula: C20H31O5 + - compartment: "x" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 21hprgnlone_x + - id: "21hprgnlone_x" - name: "21-Hydroxypregnenolone" - - compartment: x - - formula: C21H32O3 + - compartment: "x" + - formula: "C21H32O3" - charge: 0 - - inchis: 1/C21H32O3/c1-20-9-7-14(23)11-13(20)3-4-15-16-5-6-18(19(24)12-22)21(16,2)10-8-17(15)20/h3,14-18,22-23H,4-12H2,1-2H3/t14-,15?,16?,17?,18+,20-,21-/s2 - - metFrom: Recon3D + - inchis: "1/C21H32O3/c1-20-9-7-14(23)11-13(20)3-4-15-16-5-6-18(19(24)12-22)21(16,2)10-8-17(15)20/h3,14-18,22-23H,4-12H2,1-2H3/t14-,15?,16?,17?,18+,20-,21-/s2" + - metFrom: "Recon3D" - !!omap - - id: m00604x + - id: "m00604x" - name: "21-hydroxyallopregnanolone" - - compartment: x - - formula: C21H34O3 + - compartment: "x" + - formula: "C21H34O3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00610x + - id: "m00610x" - name: "24-hydroxycholesterol" - - compartment: x - - formula: C27H46O2 + - compartment: "x" + - formula: "C27H46O2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00619x + - id: "m00619x" - name: "25-hydroxycholesterol" - - compartment: x - - formula: C27H46O2 + - compartment: "x" + - formula: "C27H46O2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00623x + - id: "m00623x" - name: "26-hydroxycholesterol" - - compartment: x - - formula: C27H46O2 + - compartment: "x" + - formula: "C27H46O2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hlvstacid_x + - id: "3hlvstacid_x" - name: "3''-hydroxy-lovastatin acid form" - - compartment: x - - formula: C24H37O7 + - compartment: "x" + - formula: "C24H37O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 35dsmv_x + - id: "35dsmv_x" - name: "3',5'-dihydrodiol-simvastatin-lactone form" - - compartment: x - - formula: C25H40O7 + - compartment: "x" + - formula: "C25H40O7" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hpvs_x + - id: "3hpvs_x" - name: "3'-S-hydroxy-pravastatin" - - compartment: x - - formula: C23H35NaO8 + - compartment: "x" + - formula: "C23H35NaO8" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hpvstet_x + - id: "3hpvstet_x" - name: "3'-S-hydroxy-pravastatin-tetranor" - - compartment: x - - formula: C19H27NaO6 + - compartment: "x" + - formula: "C19H27NaO6" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 35dhpvs_x + - id: "35dhpvs_x" - name: "3'-alpha,5'beta-dihydroxy-pravastatin / 3'-alpha5'beta6'beta-trihydroxy pravastatin" - - compartment: x - - formula: C23H34NaO9 + - compartment: "x" + - formula: "C23H34NaO9" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: isolvstacid_x + - id: "isolvstacid_x" - name: "3'-hydroxy-iso-delta-4',5'-hydroxy acid form of lovastatin" - - compartment: x - - formula: C24H37O7 + - compartment: "x" + - formula: "C24H37O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hsmvacid_x + - id: "3hsmvacid_x" - name: "3'-hydroxy-simvastatin-acid form" - - compartment: x - - formula: C25H39O7 + - compartment: "x" + - formula: "C25H39O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 34dhpe_x + - id: "34dhpe_x" - name: "3,4-Dihydroxyphenylethanol" - - compartment: x - - formula: C8H10O3 + - compartment: "x" + - formula: "C8H10O3" - charge: 0 - - inchis: 1S/C8H10O3/c9-4-3-6-1-2-7(10)8(11)5-6/h1-2,5,9-11H,3-4H2 - - metFrom: Recon3D + - inchis: "1S/C8H10O3/c9-4-3-6-1-2-7(10)8(11)5-6/h1-2,5,9-11H,3-4H2" + - metFrom: "Recon3D" - !!omap - - id: m00727x + - id: "m00727x" - name: "3,4-dihydroxymandelate" - - compartment: x - - formula: C8H7O5 + - compartment: "x" + - formula: "C8H7O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00729x + - id: "m00729x" - name: "3,4-dihydroxyphenylacetate" - - compartment: x - - formula: C8H7O4 + - compartment: "x" + - formula: "C8H7O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00739x + - id: "m00739x" - name: "3,5-diiodo-L-tyrosine" - - compartment: x - - formula: C9H9I2NO3 + - compartment: "x" + - formula: "C9H9I2NO3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hpppn_x + - id: "3hpppn_x" - name: "3-(3-Hydroxy-Phenyl)Propionate" - - compartment: x - - formula: C9H9O3 + - compartment: "x" + - formula: "C9H9O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hpppnohgluc_x + - id: "3hpppnohgluc_x" - name: "3-(3-Hydroxy-Phenyl)Propionate Hydroxy Derivative Glucuronide" - - compartment: x - - formula: C15H16O10 + - compartment: "x" + - formula: "C15H16O10" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3dhcdchol_x + - id: "3dhcdchol_x" - name: "3-Dehydrochenodeoxychollyc acid; 7oxo-3alpha-hydroxy-5beta-cholan-24-oic acid" - - compartment: x - - formula: C24H37O4 + - compartment: "x" + - formula: "C24H37O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3dhchol_x + - id: "3dhchol_x" - name: "3-Dehydrocholic acid; 3oxo-7alpha,12alpha-Dihydroxy-5beta-cholan-24-oic acid" - - compartment: x - - formula: C24H37O5 + - compartment: "x" + - formula: "C24H37O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3ohsubac_x + - id: "3ohsubac_x" - name: "3-Hydoxy-Suberic Acid" - - compartment: x - - formula: C8H12O5 + - compartment: "x" + - formula: "C8H12O5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3bcrn_x + - id: "3bcrn_x" - name: "3-Hydroxy Butyryl Carnitine" - - compartment: x - - formula: C11H21NO5 + - compartment: "x" + - formula: "C11H21NO5" - charge: 0 - - inchis: 1/C11H21NO5/c1-8(13)5-11(16)17-9(6-10(14)15)7-12(2,3)4/h8-9,13H,5-7H2,1-4H3 - - metFrom: Recon3D + - inchis: "1/C11H21NO5/c1-8(13)5-11(16)17-9(6-10(14)15)7-12(2,3)4/h8-9,13H,5-7H2,1-4H3" + - metFrom: "Recon3D" - !!omap - - id: 3tetd7ecoacrn_x + - id: "3tetd7ecoacrn_x" - name: "3-Hydroxy Tetradecenoyl-7-Carnitine" - - compartment: x - - formula: C21H39NO5 + - compartment: "x" + - formula: "C21H39NO5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3ttetddcoacrn_x + - id: "3ttetddcoacrn_x" - name: "3-Hydroxy Trans5,8Tetradecadienoyl Carnitine" - - compartment: x - - formula: C21H37NO5 + - compartment: "x" + - formula: "C21H37NO5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3thexddcoacrn_x + - id: "3thexddcoacrn_x" - name: "3-Hydroxy Trans7,10-Hexadecadienoyl Carnitine" - - compartment: x - - formula: C23H41NO5 + - compartment: "x" + - formula: "C23H41NO5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3h3mglt_x + - id: "3h3mglt_x" - name: "3-Hydroxy-3-Methyl-Glutarate" - - compartment: x - - formula: C6H8O5 + - compartment: "x" + - formula: "C6H8O5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hadpac_x + - id: "3hadpac_x" - name: "3-Hydroxy-Adipate" - - compartment: x - - formula: C6H8O5 + - compartment: "x" + - formula: "C6H8O5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3ohglutac_x + - id: "3ohglutac_x" - name: "3-Hydroxy-Glutarate" - - compartment: x - - formula: C5H6O5 + - compartment: "x" + - formula: "C5H6O5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3ivcrn_x + - id: "3ivcrn_x" - name: "3-Hydroxy-Isovaleryl Carnitine" - - compartment: x - - formula: C12H23NO5 + - compartment: "x" + - formula: "C12H23NO5" - charge: 0 - - inchis: 1/C12H23NO5/c1-12(2,17)7-11(16)18-9(6-10(14)15)8-13(3,4)5/h9,17H,6-8H2,1-5H3 - - metFrom: Recon3D + - inchis: "1/C12H23NO5/c1-12(2,17)7-11(16)18-9(6-10(14)15)8-13(3,4)5/h9,17H,6-8H2,1-5H3" + - metFrom: "Recon3D" - !!omap - - id: 3octdece1crn_x + - id: "3octdece1crn_x" - name: "3-Hydroxy-Octadecenoyl Carnitine" - - compartment: x - - formula: C25H47NO5 + - compartment: "x" + - formula: "C25H47NO5" - charge: 0 - - inchis: 1S/C25H47NO5/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-22(27)21-25(30)31-23(26(2,3)4)19-20-24(28)29/h10-11,22-23,27H,5-9,12-21H2,1-4H3/b11-10-/t22?,23-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C25H47NO5/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-22(27)21-25(30)31-23(26(2,3)4)19-20-24(28)29/h10-11,22-23,27H,5-9,12-21H2,1-4H3/b11-10-/t22?,23-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: 3ohsebac_x + - id: "3ohsebac_x" - name: "3-Hydroxy-Sebacic Acid" - - compartment: x - - formula: C10H16O5 + - compartment: "x" + - formula: "C10H16O5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3tdcrn_x + - id: "3tdcrn_x" - name: "3-Hydroxy-Tetradecanoyl Carnitine" - - compartment: x - - formula: C21H41NO5 + - compartment: "x" + - formula: "C21H41NO5" - charge: 0 - - inchis: 1/C21H41NO5/c1-5-6-7-8-9-10-11-12-13-14-18(23)15-21(26)27-19(16-20(24)25)17-22(2,3)4/h18-19,23H,5-17H2,1-4H3 - - metFrom: Recon3D + - inchis: "1/C21H41NO5/c1-5-6-7-8-9-10-11-12-13-14-18(23)15-21(26)27-19(16-20(24)25)17-22(2,3)4/h18-19,23H,5-17H2,1-4H3" + - metFrom: "Recon3D" - !!omap - - id: 3hcinnm_x + - id: "3hcinnm_x" - name: "3-Hydroxycinnamic Acid" - - compartment: x - - formula: C9H7O3 + - compartment: "x" + - formula: "C9H7O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3deccrn_x + - id: "3deccrn_x" - name: "3-Hydroxydecanoylcarnitine" - - compartment: x - - formula: C17H33NO5 + - compartment: "x" + - formula: "C17H33NO5" - charge: 0 - - inchis: 1/C17H33NO5/c1-5-6-7-8-9-10-14(19)13-17(22)23-15(18(2,3)4)11-12-16(20)21/h14-15,19H,5-13H2,1-4H3 - - metFrom: Recon3D + - inchis: "1/C17H33NO5/c1-5-6-7-8-9-10-14(19)13-17(22)23-15(18(2,3)4)11-12-16(20)21/h14-15,19H,5-13H2,1-4H3" + - metFrom: "Recon3D" - !!omap - - id: 3ddcrn_x + - id: "3ddcrn_x" - name: "3-Hydroxydodecanoylcarnitine" - - compartment: x - - formula: C19H37NO5 + - compartment: "x" + - formula: "C19H37NO5" - charge: 0 - - inchis: 1/C19H37NO5/c1-5-6-7-8-9-10-11-12-16(21)13-19(24)25-17(14-18(22)23)15-20(2,3)4/h16-17,21H,5-15H2,1-4H3 - - metFrom: Recon3D + - inchis: "1/C19H37NO5/c1-5-6-7-8-9-10-11-12-16(21)13-19(24)25-17(14-18(22)23)15-20(2,3)4/h16-17,21H,5-15H2,1-4H3" + - metFrom: "Recon3D" - !!omap - - id: 3hexdcrn_x + - id: "3hexdcrn_x" - name: "3-Hydroxyhexadecanoylcarnitine" - - compartment: x - - formula: C23H45NO5 + - compartment: "x" + - formula: "C23H45NO5" - charge: 0 - - inchis: 1S/C23H45NO5/c1-5-6-7-8-9-10-11-12-13-14-15-16-20(25)19-23(28)29-21(24(2,3)4)17-18-22(26)27/h20-21,25H,5-19H2,1-4H3/t20?,21-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C23H45NO5/c1-5-6-7-8-9-10-11-12-13-14-15-16-20(25)19-23(28)29-21(24(2,3)4)17-18-22(26)27/h20-21,25H,5-19H2,1-4H3/t20?,21-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: 3hdececrn_x + - id: "3hdececrn_x" - name: "3-Hydroxyhexadecenoylcarnitine" - - compartment: x - - formula: C23H43NO5 + - compartment: "x" + - formula: "C23H43NO5" - charge: 0 - - inchis: 1S/C23H43NO5/c1-5-6-7-8-9-10-11-12-13-14-15-16-20(25)19-23(28)29-21(24(2,3)4)17-18-22(26)27/h10-11,20-21,25H,5-9,12-19H2,1-4H3/b11-10+/t20?,21-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C23H43NO5/c1-5-6-7-8-9-10-11-12-13-14-15-16-20(25)19-23(28)29-21(24(2,3)4)17-18-22(26)27/h10-11,20-21,25H,5-9,12-19H2,1-4H3/b11-10+/t20?,21-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: 3hivac_x + - id: "3hivac_x" - name: "3-Hydroxyisovaleric Acid" - - compartment: x - - formula: C5H9O3 + - compartment: "x" + - formula: "C5H9O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3octdec2crn_x + - id: "3octdec2crn_x" - name: "3-Hydroxyoctadecadienoylcarnitine" - - compartment: x - - formula: C25H45NO5 + - compartment: "x" + - formula: "C25H45NO5" - charge: 0 - - inchis: 1/C25H45NO5/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-22(27)19-25(30)31-23(20-24(28)29)21-26(2,3)4/h9-10,12-13,22-23,27H,5-8,11,14-21H2,1-4H3 - - metFrom: Recon3D + - inchis: "1/C25H45NO5/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-22(27)19-25(30)31-23(20-24(28)29)21-26(2,3)4/h9-10,12-13,22-23,27H,5-8,11,14-21H2,1-4H3" + - metFrom: "Recon3D" - !!omap - - id: 3octdeccrn_x + - id: "3octdeccrn_x" - name: "3-Hydroxyoctadecanoyl Carnitine" - - compartment: x - - formula: C25H49NO5 + - compartment: "x" + - formula: "C25H49NO5" - charge: 0 - - inchis: 1/C25H49NO5/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-22(27)19-25(30)31-23(20-24(28)29)21-26(2,3)4/h22-23,27H,5-21H2,1-4H3 - - metFrom: Recon3D + - inchis: "1/C25H49NO5/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-22(27)19-25(30)31-23(20-24(28)29)21-26(2,3)4/h22-23,27H,5-21H2,1-4H3" + - metFrom: "Recon3D" - !!omap - - id: 3hppa_x + - id: "3hppa_x" - name: "3-Hydroxyphenylpropionic Acid (3-Hppa)" - - compartment: x - - formula: C9H9O3 + - compartment: "x" + - formula: "C9H9O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3mglutac_x + - id: "3mglutac_x" - name: "3-Methyl-Glutaconate" - - compartment: x - - formula: C6H6O4 + - compartment: "x" + - formula: "C6H6O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3mglutr_x + - id: "3mglutr_x" - name: "3-Methyl-Glutarate" - - compartment: x - - formula: C6H8O4 + - compartment: "x" + - formula: "C6H8O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3mtp_x + - id: "3mtp_x" - name: "3-Methyl-Thio-Propionate" - - compartment: x - - formula: C4H8OS + - compartment: "x" + - formula: "C4H8OS" - charge: 0 - - inchis: 1S/C4H8OS/c1-3-4(5)6-2/h3H2,1-2H3 - - metFrom: Recon3D + - inchis: "1S/C4H8OS/c1-3-4(5)6-2/h3H2,1-2H3" + - metFrom: "Recon3D" - !!omap - - id: 3mhis_x + - id: "3mhis_x" - name: "3-Methylhistidine" - - compartment: x - - formula: C7H11N3O2 + - compartment: "x" + - formula: "C7H11N3O2" - charge: 0 - - inchis: 1S/C7H11N3O2/c1-10-4-9-3-5(10)2-6(8)7(11)12/h3-4,6H,2,8H2,1H3,(H,11,12)/t6-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C7H11N3O2/c1-10-4-9-3-5(10)2-6(8)7(11)12/h3-4,6H,2,8H2,1H3,(H,11,12)/t6-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m00830x + - id: "m00830x" - name: "3-O-methyldopa" - - compartment: x - - formula: C10H13NO4 + - compartment: "x" + - formula: "C10H13NO4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00921x + - id: "m00921x" - name: "3-UMP" - - compartment: x - - formula: C9H11N2O9P + - compartment: "x" + - formula: "C9H11N2O9P" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3ispvs_x + - id: "3ispvs_x" - name: "3-alpha-iso-pravastatin" - - compartment: x - - formula: C23H35NaO7 + - compartment: "x" + - formula: "C23H35NaO7" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00766x + - id: "m00766x" - name: "3-carboxy-alpha-chromanol" - - compartment: x - - formula: C16H21O4 + - compartment: "x" + - formula: "C16H21O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3dhdchol_x + - id: "3dhdchol_x" - name: "3-dehydro-Deoxycholate" - - compartment: x - - formula: C24H37O4 + - compartment: "x" + - formula: "C24H37O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3dhlchol_x + - id: "3dhlchol_x" - name: "3-dehydro-Lithocholate" - - compartment: x - - formula: C24H37O3 + - compartment: "x" + - formula: "C24H37O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hibup_R_x + - id: "3hibup_R_x" - name: "3-hydroxy R-ibuprofen" - - compartment: x - - formula: C13H17O3 + - compartment: "x" + - formula: "C13H17O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hibup_S_x + - id: "3hibup_S_x" - name: "3-hydroxy S-ibuprofen" - - compartment: x - - formula: C13H17O3 + - compartment: "x" + - formula: "C13H17O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3hibupglu_S_x + - id: "3hibupglu_S_x" - name: "3-hydroxy S-ibuprofen-glucuronide" - - compartment: x - - formula: C19H25O9 + - compartment: "x" + - formula: "C19H25O9" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00788x + - id: "m00788x" - name: "3-hydroxy-L-kynurenine" - - compartment: x - - formula: C10H12N2O4 + - compartment: "x" + - formula: "C10H12N2O4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 3ohacmp_x + - id: "3ohacmp_x" - name: "3-hydroxy-acetaminophen" - - compartment: x - - formula: C8H9NO3 + - compartment: "x" + - formula: "C8H9NO3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00775x + - id: "m00775x" - name: "3-hydroxyanthranilate" - - compartment: x - - formula: C7H7NO3 + - compartment: "x" + - formula: "C7H7NO3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00784x + - id: "m00784x" - name: "3-hydroxyisobutyrate" - - compartment: x - - formula: C4H7O3 + - compartment: "x" + - formula: "C4H7O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00807x + - id: "m00807x" - name: "3-iodo-L-tyrosine" - - compartment: x - - formula: C9H10INO3 + - compartment: "x" + - formula: "C9H10INO3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 56dhpvs_x + - id: "56dhpvs_x" - name: "3-keto-5,6,-dihydroxy-pravastatin" - - compartment: x - - formula: C23H35NaO9 + - compartment: "x" + - formula: "C23H35NaO9" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00810x + - id: "m00810x" - name: "3-keto-beta-D-galactose" - - compartment: x - - formula: C6H10O6 + - compartment: "x" + - formula: "C6H10O6" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00812x + - id: "m00812x" - name: "3-ketolactose" - - compartment: x - - formula: C12H20O11 + - compartment: "x" + - formula: "C12H20O11" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00821x + - id: "m00821x" - name: "3-methoxytyramine" - - compartment: x - - formula: C9H14NO2 + - compartment: "x" + - formula: "C9H14NO2" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00824x + - id: "m00824x" - name: "3-methyl-2-oxobutyrate" - - compartment: x - - formula: C5H7O3 + - compartment: "x" + - formula: "C5H7O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00825x + - id: "m00825x" - name: "3-methylcrotonoylglycine" - - compartment: x - - formula: C7H10NO3 + - compartment: "x" + - formula: "C7H10NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00866x + - id: "m00866x" - name: "3-oxodocosanoyl-CoA" - - compartment: x - - formula: C43H72N7O18P3S + - compartment: "x" + - formula: "C43H72N7O18P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00913x + - id: "m00913x" - name: "3-phospho-D-glycerate" - - compartment: x - - formula: C3H4O7P + - compartment: "x" + - formula: "C3H4O7P" - charge: -3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00916x + - id: "m00916x" - name: "3-phosphoserine" - - compartment: x - - formula: C3H6NO6P + - compartment: "x" + - formula: "C3H6NO6P" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00922x + - id: "m00922x" - name: "3-ureidoisobutyrate" - - compartment: x - - formula: C5H9N2O3 + - compartment: "x" + - formula: "C5H9N2O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00923x + - id: "m00923x" - name: "3-ureidopropionate" - - compartment: x - - formula: C4H7N2O3 + - compartment: "x" + - formula: "C4H7N2O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 31dmt_x + - id: "31dmt_x" - name: "31-DMT or M-II, 31-O-desmethyl tacrolimus" - - compartment: x - - formula: C43H67NO12 + - compartment: "x" + - formula: "C43H67NO12" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: epoxtac_x + - id: "epoxtac_x" - name: "31-O-Desmethyl,19-Hydroxy,37, 39-Epoxy-tacrolimus" - - compartment: x - - formula: C41H63NO14 + - compartment: "x" + - formula: "C41H63NO14" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00745x + - id: "m00745x" - name: "3alpha,12alpha-dihydroxy-5beta-cholanate" - - compartment: x - - formula: C24H39O4 + - compartment: "x" + - formula: "C24H39O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00752x + - id: "m00752x" - name: "3alpha,7alpha,12alpha-trihydroxy-5beta-cholestanate" - - compartment: x - - formula: C27H45O5 + - compartment: "x" + - formula: "C27H45O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00758x + - id: "m00758x" - name: "3alpha,7alpha-dihydroxy-5beta-cholestanate" - - compartment: x - - formula: C27H45O4 + - compartment: "x" + - formula: "C27H45O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 4ohbut_x + - id: "4ohbut_x" - name: "4-Hydroxy-Butyrate" - - compartment: x - - formula: C4H7O3 + - compartment: "x" + - formula: "C4H7O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 4ohmdz_x + - id: "4ohmdz_x" - name: "4-OH-midazolam" - - compartment: x - - formula: C18H13ClFN3O + - compartment: "x" + - formula: "C18H13ClFN3O" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 4hmdgluc_x + - id: "4hmdgluc_x" - name: "4-OH-midazolam-glucuronide" - - compartment: x - - formula: C24H20ClFN3O7 + - compartment: "x" + - formula: "C24H20ClFN3O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 4glu56dihdind_x + - id: "4glu56dihdind_x" - name: "4-S-Glutathionyl-5,6-Dihydroxyindoline" - - compartment: x - - formula: C18H23N4O8S + - compartment: "x" + - formula: "C18H23N4O8S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00952x + - id: "m00952x" - name: "4-acetamidobutanoate" - - compartment: x - - formula: C6H10NO3 + - compartment: "x" + - formula: "C6H10NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00969x + - id: "m00969x" - name: "4-aminobutanal" - - compartment: x - - formula: C4H10NO + - compartment: "x" + - formula: "C4H10NO" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00971x + - id: "m00971x" - name: "4-androstene-3,17-dione" - - compartment: x - - formula: C19H26O2 + - compartment: "x" + - formula: "C19H26O2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 4bhglz_x + - id: "4bhglz_x" - name: "4-beta-OH-gliclazide" - - compartment: x - - formula: C15H20N3O4S + - compartment: "x" + - formula: "C15H20N3O4S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00981x + - id: "m00981x" - name: "4-coumarate" - - compartment: x - - formula: C9H7O3 + - compartment: "x" + - formula: "C9H7O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00988x + - id: "m00988x" - name: "4-hydroxy-2-nonenal" - - compartment: x - - formula: C9H16O2 + - compartment: "x" + - formula: "C9H16O2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00990x + - id: "m00990x" - name: "4-hydroxy-2-quinolinecarboxylic acid" - - compartment: x - - formula: C10H6NO3 + - compartment: "x" + - formula: "C10H6NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 4hatvacid_x + - id: "4hatvacid_x" - name: "4-hydroxy-atorvastatin-acid / para-hydroxy-atorvastatin acid" - - compartment: x - - formula: C33H34FN2O6 + - compartment: "x" + - formula: "C33H34FN2O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 4hatvlac_x + - id: "4hatvlac_x" - name: "4-hydroxy-atorvastatin-lactone / para-hydroxy-atorvastatin lactone" - - compartment: x - - formula: C33H33FN2O5 + - compartment: "x" + - formula: "C33H33FN2O5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00995x + - id: "m00995x" - name: "4-hydroxybenzoate" - - compartment: x - - formula: C7H5O3 + - compartment: "x" + - formula: "C7H5O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01004x + - id: "m01004x" - name: "4-hydroxyphenyllactate" - - compartment: x - - formula: C9H9O4 + - compartment: "x" + - formula: "C9H9O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01005x + - id: "m01005x" - name: "4-hydroxyphenylpyruvate" - - compartment: x - - formula: C9H7O4 + - compartment: "x" + - formula: "C9H7O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01013x + - id: "m01013x" - name: "4-methyl-2-oxopentanoate" - - compartment: x - - formula: C6H9O3 + - compartment: "x" + - formula: "C6H9O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01039x + - id: "m01039x" - name: "5(S)-HEPE" - - compartment: x - - formula: C20H29O3 + - compartment: "x" + - formula: "C20H29O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01040x + - id: "m01040x" - name: "5(S)-HETE" - - compartment: x - - formula: C20H31O3 + - compartment: "x" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01042x + - id: "m01042x" - name: "5(S)-HPETE" - - compartment: x - - formula: C20H31O4 + - compartment: "x" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01045x + - id: "m01045x" - name: "5,10-methylene-THF" - - compartment: x - - formula: C20H21N7O6 + - compartment: "x" + - formula: "C20H21N7O6" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01047x + - id: "m01047x" - name: "5,12,20-TriHETE" - - compartment: x - - formula: C20H31O5 + - compartment: "x" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01050x + - id: "m01050x" - name: "5,15-DiHETE" - - compartment: x - - formula: C20H31O4 + - compartment: "x" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01052x + - id: "m01052x" - name: "5,6-Dihydrouracil" - - compartment: x - - formula: C4H6N2O2 + - compartment: "x" + - formula: "C4H6N2O2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01054x + - id: "m01054x" - name: "5,6-EET" - - compartment: x - - formula: C20H31O3 + - compartment: "x" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 56eppvs_x + - id: "56eppvs_x" - name: "5,6-epoxy-3-alpha-iso-pravastatin" - - compartment: x - - formula: C23H35NaO8 + - compartment: "x" + - formula: "C23H35NaO8" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 5eipenc_x + - id: "5eipenc_x" - name: "5,8,11,14,17-Eicosapentenoic Acid" - - compartment: x - - formula: C20H29O2 + - compartment: "x" + - formula: "C20H29O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 5ohhexa_x + - id: "5ohhexa_x" - name: "5-Hydroxyhexanoic Acid" - - compartment: x - - formula: C6H11O3 + - compartment: "x" + - formula: "C6H11O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 5cysdopa_x + - id: "5cysdopa_x" - name: "5-S-Cysteinyldopamine" - - compartment: x - - formula: C11H17N2O4S + - compartment: "x" + - formula: "C11H17N2O4S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 5cysgly34dhphe_x + - id: "5cysgly34dhphe_x" - name: "5-S-Cysteinylglycine Dopa" - - compartment: x - - formula: C14H19N3O7S + - compartment: "x" + - formula: "C14H19N3O7S" - charge: 0 - - inchis: 1S/C14H19N3O7S/c15-7(14(23)24)1-6-2-9(18)12(21)10(3-6)25-5-8(16)13(22)17-4-11(19)20/h2-3,7-8,18,21H,1,4-5,15-16H2,(H,17,22)(H,19,20)(H,23,24)/t7-,8?/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C14H19N3O7S/c15-7(14(23)24)1-6-2-9(18)12(21)10(3-6)25-5-8(16)13(22)17-4-11(19)20/h2-3,7-8,18,21H,1,4-5,15-16H2,(H,17,22)(H,19,20)(H,23,24)/t7-,8?/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m01134x + - id: "m01134x" - name: "5-S-cysteinyldopa" - - compartment: x - - formula: C12H16N2O6S + - compartment: "x" + - formula: "C12H16N2O6S" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01139x + - id: "m01139x" - name: "5-S-glutathionyl-L-dopa" - - compartment: x - - formula: C19H25N4O10S + - compartment: "x" + - formula: "C19H25N4O10S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01138x + - id: "m01138x" - name: "5-S-glutathionyl-dopamine" - - compartment: x - - formula: C18H26N4O8S + - compartment: "x" + - formula: "C18H26N4O8S" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01073x + - id: "m01073x" - name: "5-amino-2-oxopentanoic acid" - - compartment: x - - formula: C5H9NO3 + - compartment: "x" + - formula: "C5H9NO3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01074x + - id: "m01074x" - name: "5-aminolevulinate" - - compartment: x - - formula: C5H9NO3 + - compartment: "x" + - formula: "C5H9NO3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01101x + - id: "m01101x" - name: "5-guanidino-2-oxopentanoate" - - compartment: x - - formula: C6H11N3O3 + - compartment: "x" + - formula: "C6H11N3O3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 5ohfvs_x + - id: "5ohfvs_x" - name: "5-hydroxy-fluvastatin" - - compartment: x - - formula: C24H25FNNaO5 + - compartment: "x" + - formula: "C24H25FNNaO5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 5ohfvsglu_x + - id: "5ohfvsglu_x" - name: "5-hydroxy-fluvastatin-glucuronide" - - compartment: x - - formula: C30H32FNNaO11 + - compartment: "x" + - formula: "C30H32FNNaO11" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01103x + - id: "m01103x" - name: "5-hydroxyindoleacetate" - - compartment: x - - formula: C10H8NO3 + - compartment: "x" + - formula: "C10H8NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01110x + - id: "m01110x" - name: "5-hydroxytryptophol" - - compartment: x - - formula: C10H11NO2 + - compartment: "x" + - formula: "C10H11NO2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01113x + - id: "m01113x" - name: "5-methoxytryptophol" - - compartment: x - - formula: C11H13NO2 + - compartment: "x" + - formula: "C11H13NO2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01116x + - id: "m01116x" - name: "5-methylthioadenosine" - - compartment: x - - formula: C11H15N5O3S + - compartment: "x" + - formula: "C11H15N5O3S" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01127x + - id: "m01127x" - name: "5-oxoproline" - - compartment: x - - formula: C5H6NO3 + - compartment: "x" + - formula: "C5H6NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01064x + - id: "m01064x" - name: "5alpha-androstane-3,17-dione" - - compartment: x - - formula: C19H28O2 + - compartment: "x" + - formula: "C19H28O2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01065x + - id: "m01065x" - name: "5alpha-androstane-3alpha,17beta-diol" - - compartment: x - - formula: C19H32O2 + - compartment: "x" + - formula: "C19H32O2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01072x + - id: "m01072x" - name: "5alpha-pregnane-3,20-dione" - - compartment: x - - formula: C21H32O2 + - compartment: "x" + - formula: "C21H32O2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01087x + - id: "m01087x" - name: "5beta-cholestane-3alpha,7alpha,12alpha,24s,25-pentol" - - compartment: x - - formula: C27H48O5 + - compartment: "x" + - formula: "C27H48O5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01093x + - id: "m01093x" - name: "5beta-cholestane-3alpha,7alpha,26-triol" - - compartment: x - - formula: C27H48O3 + - compartment: "x" + - formula: "C27H48O3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6csmvacid_x + - id: "6csmvacid_x" - name: "6'-beta-carboxy-simvastatin-acid form" - - compartment: x - - formula: C25H36O8 + - compartment: "x" + - formula: "C25H36O8" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6hsmvacid_x + - id: "6hsmvacid_x" - name: "6'-beta-hydroxy simvastatin acid" - - compartment: x - - formula: C25H39O7 + - compartment: "x" + - formula: "C25H39O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6hlvst_x + - id: "6hlvst_x" - name: "6'-beta-hydroxy-lovastatin lactone form" - - compartment: x - - formula: C24H36O6 + - compartment: "x" + - formula: "C24H36O6" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6hmsmvacid_x + - id: "6hmsmvacid_x" - name: "6'-beta-hydroxy-methyl-simvastatin-acid form" - - compartment: x - - formula: C25H39O7 + - compartment: "x" + - formula: "C25H39O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6melvst_x + - id: "6melvst_x" - name: "6'-exomethylene-lovastatin lactone form" - - compartment: x - - formula: C24H34O5 + - compartment: "x" + - formula: "C24H34O5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6melvacid_x + - id: "6melvacid_x" - name: "6'-exomethylene-lovastatin-acid form" - - compartment: x - - formula: C24H35O6 + - compartment: "x" + - formula: "C24H35O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01154x + - id: "m01154x" - name: "6,7-dihydroxy-1,2,3,4-tetrahydroisoquinoline" - - compartment: x - - formula: C9H12NO2 + - compartment: "x" + - formula: "C9H12NO2" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01155x + - id: "m01155x" - name: "6-[(1S,2R)-1,2-dihydroxy-3-triphosphooxypropyl]-7,8-dihydropterin" - - compartment: x - - formula: C9H12N5O13P3 + - compartment: "x" + - formula: "C9H12N5O13P3" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6ahglz_x + - id: "6ahglz_x" - name: "6-alpha-OH-gliclazide" - - compartment: x - - formula: C15H20N3O4S + - compartment: "x" + - formula: "C15H20N3O4S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6bhglz_x + - id: "6bhglz_x" - name: "6-beta-OH-gliclazide" - - compartment: x - - formula: C15H20N3O4S + - compartment: "x" + - formula: "C15H20N3O4S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6bhglzglc_x + - id: "6bhglzglc_x" - name: "6-beta-OH-gliclazide-glucuronide" - - compartment: x - - formula: C21H27N3O10S + - compartment: "x" + - formula: "C21H27N3O10S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6epvs_x + - id: "6epvs_x" - name: "6-epipravastatin" - - compartment: x - - formula: C23H35NaO7 + - compartment: "x" + - formula: "C23H35NaO7" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6ohfvs_x + - id: "6ohfvs_x" - name: "6-hydroxy-fluvastatin" - - compartment: x - - formula: C24H25FNNaO5 + - compartment: "x" + - formula: "C24H25FNNaO5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 6ohfvsglu_x + - id: "6ohfvsglu_x" - name: "6-hydroxy-fluvastatin-glucuronide" - - compartment: x - - formula: C30H32FNNaO11 + - compartment: "x" + - formula: "C30H32FNNaO11" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01161x + - id: "m01161x" - name: "6-hydroxymelatonin" - - compartment: x - - formula: C13H16N2O3 + - compartment: "x" + - formula: "C13H16N2O3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01168x + - id: "m01168x" - name: "6-oxo-prostaglandin F1alpha" - - compartment: x - - formula: C20H33O6 + - compartment: "x" + - formula: "C20H33O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01172x + - id: "m01172x" - name: "6-trans-LTB4" - - compartment: x - - formula: C20H31O4 + - compartment: "x" + - formula: "C20H31O4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 7dhcdchol_x + - id: "7dhcdchol_x" - name: "7-Dehydrochenodeoxycholic acid; 7oxo-3alpha-hydroxy-5beta-cholan-24-oic acid" - - compartment: x - - formula: C24H37O4 + - compartment: "x" + - formula: "C24H37O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 7dhchol_x + - id: "7dhchol_x" - name: "7-Dehydrocholic acid; 7-Oxodeoxycholic acid; 7oxo-3alpha,12alpha-Dihydroxy-5beta-cholan-24-oic acid" - - compartment: x - - formula: C24H37O5 + - compartment: "x" + - formula: "C24H37O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 7ohocata_x + - id: "7ohocata_x" - name: "7-Hydroxy-Octanoate" - - compartment: x - - formula: C8H15O3 + - compartment: "x" + - formula: "C8H15O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 7klitchol_x + - id: "7klitchol_x" - name: "7-Ketolithocholate" - - compartment: x - - formula: C24H37O4 + - compartment: "x" + - formula: "C24H37O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 7ahglz_x + - id: "7ahglz_x" - name: "7-alpha-OH-gliclazide" - - compartment: x - - formula: C15H20N3O4S + - compartment: "x" + - formula: "C15H20N3O4S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 7bhglz_x + - id: "7bhglz_x" - name: "7-beta-OH-gliclazide" - - compartment: x - - formula: C15H20N3O4S + - compartment: "x" + - formula: "C15H20N3O4S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 7bhglzglc_x + - id: "7bhglzglc_x" - name: "7-beta-OH-gliclazide-glucuronide" - - compartment: x - - formula: C21H27N3O10S + - compartment: "x" + - formula: "C21H27N3O10S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 7hpvs_x + - id: "7hpvs_x" - name: "7-hydroxy-3-alpha-iso-pravastatin" - - compartment: x - - formula: C23H35NaO8 + - compartment: "x" + - formula: "C23H35NaO8" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01197x + - id: "m01197x" - name: "7-palmitoleic acid" - - compartment: x - - formula: C16H29O2 + - compartment: "x" + - formula: "C16H29O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: thexdd_x + - id: "thexdd_x" - name: "7Z,10Z-Hexadecadienoic Acid" - - compartment: x - - formula: C16H27O2 + - compartment: "x" + - formula: "C16H27O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01178x + - id: "m01178x" - name: "7alpha,12alpha-dihydroxycholest-4-en-3-one" - - compartment: x - - formula: C27H44O3 + - compartment: "x" + - formula: "C27H44O3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01182x + - id: "m01182x" - name: "7alpha-hydroxycholest-4-en-3-one" - - compartment: x - - formula: C27H44O2 + - compartment: "x" + - formula: "C27H44O2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01207x + - id: "m01207x" - name: "8,11-eicosadienoic acid" - - compartment: x - - formula: C20H35O2 + - compartment: "x" + - formula: "C20H35O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01209x + - id: "m01209x" - name: "8,9-EET" - - compartment: x - - formula: C20H31O3 + - compartment: "x" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE1297_x + - id: "CE1297_x" - name: "8-Dehydrocholesterol" - - compartment: x - - formula: C27H44O + - compartment: "x" + - formula: "C27H44O" - charge: 0 - - inchis: 1S/C27H44O/c1-18(2)7-6-8-19(3)23-11-12-24-22-10-9-20-17-21(28)13-15-26(20,4)25(22)14-16-27(23,24)5/h9,18-19,21,23-24,28H,6-8,10-17H2,1-5H3/t19-,21+,23-,24+,26+,27-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C27H44O/c1-18(2)7-6-8-19(3)23-11-12-24-22-10-9-20-17-21(28)13-15-26(20,4)25(22)14-16-27(23,24)5/h9,18-19,21,23-24,28H,6-8,10-17H2,1-5H3/t19-,21+,23-,24+,26+,27-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m01216x + - id: "m01216x" - name: "9(10)-EpOME" - - compartment: x - - formula: C18H31O3 + - compartment: "x" + - formula: "C18H31O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01220x + - id: "m01220x" - name: "9,10-hydroxyoctadec-12(Z)-enoate" - - compartment: x - - formula: C18H33O4 + - compartment: "x" + - formula: "C18H33O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01231x + - id: "m01231x" - name: "9-cis-retinoate" - - compartment: x - - formula: C20H27O2 + - compartment: "x" + - formula: "C20H27O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01232x + - id: "m01232x" - name: "9-cis-retinol" - - compartment: x - - formula: C20H30O + - compartment: "x" + - formula: "C20H30O" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01235x + - id: "m01235x" - name: "9-eicosenoic acid" - - compartment: x - - formula: C20H37O2 + - compartment: "x" + - formula: "C20H37O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01238x + - id: "m01238x" - name: "9-heptadecylenic acid" - - compartment: x - - formula: C17H31O2 + - compartment: "x" + - formula: "C17H31O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01304x + - id: "m01304x" - name: "AICAR" - - compartment: x - - formula: C9H13N4O8P + - compartment: "x" + - formula: "C9H13N4O8P" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am1csa_x + - id: "am1csa_x" - name: "AM1 (cyclosporine)" - - compartment: x - - formula: C62H111N11O13 + - compartment: "x" + - formula: "C62H111N11O13" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am19cs_x + - id: "am19cs_x" - name: "AM19 (cyclosporine)" - - compartment: x - - formula: C62H111N11O14 + - compartment: "x" + - formula: "C62H111N11O14" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am1acs_x + - id: "am1acs_x" - name: "AM1A (cyclosporine)" - - compartment: x - - formula: C62H108N11O14 + - compartment: "x" + - formula: "C62H108N11O14" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am1a4ncs_x + - id: "am1a4ncs_x" - name: "AM1A4N (cyclosporine)" - - compartment: x - - formula: C61H106N11O14 + - compartment: "x" + - formula: "C61H106N11O14" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am1alcs_x + - id: "am1alcs_x" - name: "AM1AL (cyclosporine)" - - compartment: x - - formula: C62H109N11O13 + - compartment: "x" + - formula: "C62H109N11O13" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am1accs_x + - id: "am1accs_x" - name: "AM1Ac (cyclosporine)" - - compartment: x - - formula: C62H108N11O14 + - compartment: "x" + - formula: "C62H108N11O14" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am1ccs_x + - id: "am1ccs_x" - name: "AM1c (cyclosporine)" - - compartment: x - - formula: C62H111N11O13 + - compartment: "x" + - formula: "C62H111N11O13" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am1cglc_x + - id: "am1cglc_x" - name: "AM1c-glucuronide (cyclosporine)" - - compartment: x - - formula: C68H118N11O19 + - compartment: "x" + - formula: "C68H118N11O19" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am1c4n9cs_x + - id: "am1c4n9cs_x" - name: "AM1c4N9 (cyclosporine)" - - compartment: x - - formula: C61H109N11O14 + - compartment: "x" + - formula: "C61H109N11O14" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am1c9cs_x + - id: "am1c9cs_x" - name: "AM1c9 (cyclosporine)" - - compartment: x - - formula: C62H111N11O14 + - compartment: "x" + - formula: "C62H111N11O14" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am4ncs_x + - id: "am4ncs_x" - name: "AM4N (cyclosporine)" - - compartment: x - - formula: C61H109N11O12 + - compartment: "x" + - formula: "C61H109N11O12" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am4n9cs_x + - id: "am4n9cs_x" - name: "AM4N9 (cyclosporine)" - - compartment: x - - formula: C61H109N11O13 + - compartment: "x" + - formula: "C61H109N11O13" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: am9csa_x + - id: "am9csa_x" - name: "AM9 (cyclosporine)" - - compartment: x - - formula: C62H111N11O13 + - compartment: "x" + - formula: "C62H111N11O13" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01371x + - id: "m01371x" - name: "ATP" - - compartment: x - - formula: C10H12N5O13P3 + - compartment: "x" + - formula: "C10H12N5O13P3" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: acmpglu_x + - id: "acmpglu_x" - name: "Acetaminophen glucuronide" - - compartment: x - - formula: C14H16NO8 + - compartment: "x" + - formula: "C14H16NO8" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: acile_L_x + - id: "acile_L_x" - name: "Acetyl Isoleucine (Chemspider Id: 9964364)" - - compartment: x - - formula: C8H14NO3 + - compartment: "x" + - formula: "C8H14NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: acgly_x + - id: "acgly_x" - name: "Acetyl-Glycine" - - compartment: x - - formula: C4H6NO3 + - compartment: "x" + - formula: "C4H6NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: aclys_x + - id: "aclys_x" - name: "Acetyl-L-Lysine" - - compartment: x - - formula: C8H16N2O3 + - compartment: "x" + - formula: "C8H16N2O3" - charge: 0 - - inchis: 1S/C8H16N2O3/c1-6(11)10-7(8(12)13)4-2-3-5-9/h7H,2-5,9H2,1H3,(H,10,11)(H,12,13)/t7-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C8H16N2O3/c1-6(11)10-7(8(12)13)4-2-3-5-9/h7H,2-5,9H2,1H3,(H,10,11)(H,12,13)/t7-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: acthr_L_x + - id: "acthr_L_x" - name: "Acetyl-Threonine" - - compartment: x - - formula: C6H10NO4 + - compartment: "x" + - formula: "C6H10NO4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: achom_L_x + - id: "achom_L_x" - name: "Acetylhomoserine" - - compartment: x - - formula: C6H10NO4 + - compartment: "x" + - formula: "C6H10NO4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: adpac_x + - id: "adpac_x" - name: "Adipic Acid" - - compartment: x - - formula: C6H8O4 + - compartment: "x" + - formula: "C6H8O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: c6dc_x + - id: "c6dc_x" - name: "Adipoyl Carnitine" - - compartment: x - - formula: C13H22NO6 + - compartment: "x" + - formula: "C13H22NO6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: alaargcys_x + - id: "alaargcys_x" - name: "Alanyl-Arginyl-Cysteine" - - compartment: x - - formula: C12H25N6O4S + - compartment: "x" + - formula: "C12H25N6O4S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: alaarggly_x + - id: "alaarggly_x" - name: "Alanyl-Arginyl-Glycine" - - compartment: x - - formula: C11H23N6O4 + - compartment: "x" + - formula: "C11H23N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: alaasnleu_x + - id: "alaasnleu_x" - name: "Alanyl-Asparaginyl-Leucine" - - compartment: x - - formula: C13H24N4O5 + - compartment: "x" + - formula: "C13H24N4O5" - charge: 0 - - inchis: 1/C13H24N4O5/c1-6(2)4-9(13(21)22)17-12(20)8(5-10(15)18)16-11(19)7(3)14/h6-9H,4-5,14H2,1-3H3,(H2,15,18)(H,16,19)(H,17,20)(H,21,22) - - metFrom: Recon3D + - inchis: "1/C13H24N4O5/c1-6(2)4-9(13(21)22)17-12(20)8(5-10(15)18)16-11(19)7(3)14/h6-9H,4-5,14H2,1-3H3,(H2,15,18)(H,16,19)(H,17,20)(H,21,22)" + - metFrom: "Recon3D" - !!omap - - id: alaglylys_x + - id: "alaglylys_x" - name: "Alanyl-Glycyl-Lysine" - - compartment: x - - formula: C11H23N4O4 + - compartment: "x" + - formula: "C11H23N4O4" - charge: 2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: alahisala_x + - id: "alahisala_x" - name: "Alanyl-Histidyl-Alanine" - - compartment: x - - formula: C12H19N5O4 + - compartment: "x" + - formula: "C12H19N5O4" - charge: 0 - - inchis: 1S/C12H19N5O4/c1-6(13)10(18)17-9(3-8-4-14-5-15-8)11(19)16-7(2)12(20)21/h4-7,9H,3,13H2,1-2H3,(H,14,15)(H,16,19)(H,17,18)(H,20,21)/t6-,7-,9-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C12H19N5O4/c1-6(13)10(18)17-9(3-8-4-14-5-15-8)11(19)16-7(2)12(20)21/h4-7,9H,3,13H2,1-2H3,(H,14,15)(H,16,19)(H,17,18)(H,20,21)/t6-,7-,9-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: alalysthr_x + - id: "alalysthr_x" - name: "Alanyl-Lysine-Threonine" - - compartment: x - - formula: C13H27N4O5 + - compartment: "x" + - formula: "C13H27N4O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argalaphe_x + - id: "argalaphe_x" - name: "Arginyl-Alanine-Phenylalanine" - - compartment: x - - formula: C18H29N6O4 + - compartment: "x" + - formula: "C18H29N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argalaala_x + - id: "argalaala_x" - name: "Arginyl-Alanyl-Alanine" - - compartment: x - - formula: C12H25N6O4 + - compartment: "x" + - formula: "C12H25N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argalathr_x + - id: "argalathr_x" - name: "Arginyl-Alanyl-Threonine" - - compartment: x - - formula: C13H27N6O5 + - compartment: "x" + - formula: "C13H27N6O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argarg_x + - id: "argarg_x" - name: "Arginyl-Arginine" - - compartment: x - - formula: C12H28N8O3 + - compartment: "x" + - formula: "C12H28N8O3" - charge: 2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argarglys_x + - id: "argarglys_x" - name: "Arginyl-Arginyl-Lysine" - - compartment: x - - formula: C18H41N10O4 + - compartment: "x" + - formula: "C18H41N10O4" - charge: 3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argargmet_x + - id: "argargmet_x" - name: "Arginyl-Arginyl-Metheonine" - - compartment: x - - formula: C17H37N9O4S + - compartment: "x" + - formula: "C17H37N9O4S" - charge: 2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argcysgly_x + - id: "argcysgly_x" - name: "Arginyl-Cystinyl-Glycine" - - compartment: x - - formula: C11H23N6O4S + - compartment: "x" + - formula: "C11H23N6O4S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argcysser_x + - id: "argcysser_x" - name: "Arginyl-Cystinyl-Serine" - - compartment: x - - formula: C12H25N6O5S + - compartment: "x" + - formula: "C12H25N6O5S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: arggluglu_x + - id: "arggluglu_x" - name: "Arginyl-Glutamyl-Glutamate" - - compartment: x - - formula: C16H27N6O8 + - compartment: "x" + - formula: "C16H27N6O8" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argglupro_x + - id: "argglupro_x" - name: "Arginyl-Glutamyl-Proline" - - compartment: x - - formula: C16H28N6O6 + - compartment: "x" + - formula: "C16H28N6O6" - charge: 0 - - inchis: 1/C16H28N6O6/c17-9(3-1-7-20-16(18)19)13(25)21-10(5-6-12(23)24)14(26)22-8-2-4-11(22)15(27)28/h9-11H,1-8,17H2,(H,21,25)(H,23,24)(H,27,28)(H4,18,19,20)/t9-,10+,11-/s2 - - metFrom: Recon3D + - inchis: "1/C16H28N6O6/c17-9(3-1-7-20-16(18)19)13(25)21-10(5-6-12(23)24)14(26)22-8-2-4-11(22)15(27)28/h9-11H,1-8,17H2,(H,21,25)(H,23,24)(H,27,28)(H4,18,19,20)/t9-,10+,11-/s2" + - metFrom: "Recon3D" - !!omap - - id: argglygly_x + - id: "argglygly_x" - name: "Arginyl-Glycyl-Glycine" - - compartment: x - - formula: C10H21N6O4 + - compartment: "x" + - formula: "C10H21N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: arghisthr_x + - id: "arghisthr_x" - name: "Arginyl-Histidyl-Threonine" - - compartment: x - - formula: C16H29N8O5 + - compartment: "x" + - formula: "C16H29N8O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argleuphe_x + - id: "argleuphe_x" - name: "Arginyl-Leucyl-Phenylalanine" - - compartment: x - - formula: C21H35N6O4 + - compartment: "x" + - formula: "C21H35N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: arglysasp_x + - id: "arglysasp_x" - name: "Arginyl-Lysyl-Aspartate" - - compartment: x - - formula: C16H32N7O6 + - compartment: "x" + - formula: "C16H32N7O6" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argphearg_x + - id: "argphearg_x" - name: "Arginyl-Phenylalanine-Arginine" - - compartment: x - - formula: C21H37N9O4 + - compartment: "x" + - formula: "C21H37N9O4" - charge: 2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argpromet_x + - id: "argpromet_x" - name: "Arginyl-Prolyl-Methionine" - - compartment: x - - formula: C16H31N6O4S + - compartment: "x" + - formula: "C16H31N6O4S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argprothr_x + - id: "argprothr_x" - name: "Arginyl-Prolyl-Threonine" - - compartment: x - - formula: C15H29N6O5 + - compartment: "x" + - formula: "C15H29N6O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argserser_x + - id: "argserser_x" - name: "Arginyl-Seryl-Serine" - - compartment: x - - formula: C12H25N6O6 + - compartment: "x" + - formula: "C12H25N6O6" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argvalcys_x + - id: "argvalcys_x" - name: "Arginyl-Valyl-Cysteine" - - compartment: x - - formula: C14H29N6O4S + - compartment: "x" + - formula: "C14H29N6O4S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argvaltrp_x + - id: "argvaltrp_x" - name: "Arginyl-Valyl-Tryptophan" - - compartment: x - - formula: C22H34N7O4 + - compartment: "x" + - formula: "C22H34N7O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: argtyrval_x + - id: "argtyrval_x" - name: "Argtyrval" - - compartment: x - - formula: C20H33N6O5 + - compartment: "x" + - formula: "C20H33N6O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: aspalaarg_x + - id: "aspalaarg_x" - name: "Asparaginyl-Alanyl-Arginine" - - compartment: x - - formula: C13H24N6O6 + - compartment: "x" + - formula: "C13H24N6O6" - charge: 0 - - inchis: 1/C13H24N6O6/c1-6(18-11(23)7(14)5-9(20)21)10(22)19-8(12(24)25)3-2-4-17-13(15)16/h6-8H,2-5,14H2,1H3,(H,18,23)(H,19,22)(H,20,21)(H,24,25)(H4,15,16,17)/t6-,7+,8+/s2 - - metFrom: Recon3D + - inchis: "1/C13H24N6O6/c1-6(18-11(23)7(14)5-9(20)21)10(22)19-8(12(24)25)3-2-4-17-13(15)16/h6-8H,2-5,14H2,1H3,(H,18,23)(H,19,22)(H,20,21)(H,24,25)(H4,15,16,17)/t6-,7+,8+/s2" + - metFrom: "Recon3D" - !!omap - - id: asnasnarg_x + - id: "asnasnarg_x" - name: "Asparaginyl-Asparaginyl-Arginine" - - compartment: x - - formula: C14H27N8O6 + - compartment: "x" + - formula: "C14H27N8O6" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: asncyscys_x + - id: "asncyscys_x" - name: "Asparaginyl-Cysteinyl-Cysteine" - - compartment: x - - formula: C10H18N4O5S2 + - compartment: "x" + - formula: "C10H18N4O5S2" - charge: 0 - - inchis: 1S/C10H18N4O5S2/c11-4(1-7(12)15)8(16)13-5(2-20)9(17)14-6(3-21)10(18)19/h4-6,20-21H,1-3,11H2,(H2,12,15)(H,13,16)(H,14,17)(H,18,19)/t4-,5-,6-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C10H18N4O5S2/c11-4(1-7(12)15)8(16)13-5(2-20)9(17)14-6(3-21)10(18)19/h4-6,20-21H,1-3,11H2,(H2,12,15)(H,13,16)(H,14,17)(H,18,19)/t4-,5-,6-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: asnmetpro_x + - id: "asnmetpro_x" - name: "Asparaginyl-Methionyl-Proline" - - compartment: x - - formula: C14H24N4O5S + - compartment: "x" + - formula: "C14H24N4O5S" - charge: 0 - - inchis: 1/C14H24N4O5S/c1-24-6-4-9(17-12(20)8(15)7-11(16)19)13(21)18-5-2-3-10(18)14(22)23/h8-10H,2-7,15H2,1H3,(H2,16,19)(H,17,20)(H,22,23)/t8-,9+,10?/s2 - - metFrom: Recon3D + - inchis: "1/C14H24N4O5S/c1-24-6-4-9(17-12(20)8(15)7-11(16)19)13(21)18-5-2-3-10(18)14(22)23/h8-10H,2-7,15H2,1H3,(H2,16,19)(H,17,20)(H,22,23)/t8-,9+,10?/s2" + - metFrom: "Recon3D" - !!omap - - id: asnpheasp_x + - id: "asnpheasp_x" - name: "Asparaginyl-Phenylalanyl-Aspartate" - - compartment: x - - formula: C17H21N4O7 + - compartment: "x" + - formula: "C17H21N4O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: asnphecys_x + - id: "asnphecys_x" - name: "Asparaginyl-Phenylalanyl-Cysteine" - - compartment: x - - formula: C16H22N4O5S + - compartment: "x" + - formula: "C16H22N4O5S" - charge: 0 - - inchis: 1/C16H22N4O5S/c17-10(7-13(18)21)14(22)19-11(6-9-4-2-1-3-5-9)15(23)20-12(8-26)16(24)25/h1-5,10-12,26H,6-8,17H2,(H2,18,21)(H,19,22)(H,20,23)(H,24,25)/t10-,11+,12-/s2 - - metFrom: Recon3D + - inchis: "1/C16H22N4O5S/c17-10(7-13(18)21)14(22)19-11(6-9-4-2-1-3-5-9)15(23)20-12(8-26)16(24)25/h1-5,10-12,26H,6-8,17H2,(H2,18,21)(H,19,22)(H,20,23)(H,24,25)/t10-,11+,12-/s2" + - metFrom: "Recon3D" - !!omap - - id: asntyrgly_x + - id: "asntyrgly_x" - name: "Asparaginyl-Tyrosyl-Glycine" - - compartment: x - - formula: C15H20N4O6 + - compartment: "x" + - formula: "C15H20N4O6" - charge: 0 - - inchis: 1/C15H20N4O6/c16-10(6-12(17)21)14(24)19-11(15(25)18-7-13(22)23)5-8-1-3-9(20)4-2-8/h1-4,10-11,20H,5-7,16H2,(H2,17,21)(H,18,25)(H,19,24)(H,22,23)/t10-,11+/s2 - - metFrom: Recon3D + - inchis: "1/C15H20N4O6/c16-10(6-12(17)21)14(24)19-11(15(25)18-7-13(22)23)5-8-1-3-9(20)4-2-8/h1-4,10-11,20H,5-7,16H2,(H2,17,21)(H,18,25)(H,19,24)(H,22,23)/t10-,11+/s2" + - metFrom: "Recon3D" - !!omap - - id: asntyrphe_x + - id: "asntyrphe_x" - name: "Asparaginyl-Tyrosyl-Phenylalanine" - - compartment: x - - formula: C22H26N4O6 + - compartment: "x" + - formula: "C22H26N4O6" - charge: 0 - - inchis: 1/C22H26N4O6/c23-16(12-19(24)28)20(29)25-17(10-14-6-8-15(27)9-7-14)21(30)26-18(22(31)32)11-13-4-2-1-3-5-13/h1-9,16-18,27H,10-12,23H2,(H2,24,28)(H,25,29)(H,26,30)(H,31,32)/t16-,17+,18-/s2 - - metFrom: Recon3D + - inchis: "1/C22H26N4O6/c23-16(12-19(24)28)20(29)25-17(10-14-6-8-15(27)9-7-14)21(30)26-18(22(31)32)11-13-4-2-1-3-5-13/h1-9,16-18,27H,10-12,23H2,(H2,24,28)(H,25,29)(H,26,30)(H,31,32)/t16-,17+,18-/s2" + - metFrom: "Recon3D" - !!omap - - id: asntyrthr_x + - id: "asntyrthr_x" - name: "Asparaginyl-Tyrosyl-Threonine" - - compartment: x - - formula: C17H24N4O7 + - compartment: "x" + - formula: "C17H24N4O7" - charge: 0 - - inchis: 1/C17H24N4O7/c1-8(22)14(17(27)28)21-16(26)12(6-9-2-4-10(23)5-3-9)20-15(25)11(18)7-13(19)24/h2-5,8,11-12,14,22-23H,6-7,18H2,1H3,(H2,19,24)(H,20,25)(H,21,26)(H,27,28)/t8-,11+,12-,14+/s2 - - metFrom: Recon3D + - inchis: "1/C17H24N4O7/c1-8(22)14(17(27)28)21-16(26)12(6-9-2-4-10(23)5-3-9)20-15(25)11(18)7-13(19)24/h2-5,8,11-12,14,22-23H,6-7,18H2,1H3,(H2,19,24)(H,20,25)(H,21,26)(H,27,28)/t8-,11+,12-,14+/s2" + - metFrom: "Recon3D" - !!omap - - id: aspasnglu_x + - id: "aspasnglu_x" - name: "Aspartyl-Asparaginyl-Glutamate" - - compartment: x - - formula: C13H18N4O9 + - compartment: "x" + - formula: "C13H18N4O9" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: aspglu_x + - id: "aspglu_x" - name: "Aspartyl-Glutamate" - - compartment: x - - formula: C9H12N2O7 + - compartment: "x" + - formula: "C9H12N2O7" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: aspglupro_x + - id: "aspglupro_x" - name: "Aspartyl-Glutamyl-Proline" - - compartment: x - - formula: C14H19N3O8 + - compartment: "x" + - formula: "C14H19N3O8" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: aspglutrp_x + - id: "aspglutrp_x" - name: "Aspartyl-Glutamyl-Tryptophan" - - compartment: x - - formula: C20H22N4O8 + - compartment: "x" + - formula: "C20H22N4O8" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: asphiscys_x + - id: "asphiscys_x" - name: "Aspartyl-Histidyl-Cysteine" - - compartment: x - - formula: C13H18N5O6S + - compartment: "x" + - formula: "C13H18N5O6S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: asphispro_x + - id: "asphispro_x" - name: "Aspartyl-Histidyl-Proline" - - compartment: x - - formula: C15H20N5O6 + - compartment: "x" + - formula: "C15H20N5O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: asplysglu_x + - id: "asplysglu_x" - name: "Aspartyl-Lysyl-Glutamate" - - compartment: x - - formula: C15H25N4O8 + - compartment: "x" + - formula: "C15H25N4O8" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: asplyshis_x + - id: "asplyshis_x" - name: "Aspartyl-Lysyl-Histidine" - - compartment: x - - formula: C16H26N6O6 + - compartment: "x" + - formula: "C16H26N6O6" - charge: 0 - - inchis: 1/C16H26N6O6/c17-4-2-1-3-11(21-14(25)10(18)6-13(23)24)15(26)22-12(16(27)28)5-9-7-19-8-20-9/h7-8,10-12H,1-6,17-18H2,(H,19,20)(H,21,25)(H,22,26)(H,23,24)(H,27,28)/t10-,11+,12-/s2 - - metFrom: Recon3D + - inchis: "1/C16H26N6O6/c17-4-2-1-3-11(21-14(25)10(18)6-13(23)24)15(26)22-12(16(27)28)5-9-7-19-8-20-9/h7-8,10-12H,1-6,17-18H2,(H,19,20)(H,21,25)(H,22,26)(H,23,24)(H,27,28)/t10-,11+,12-/s2" + - metFrom: "Recon3D" - !!omap - - id: aspmetasp_x + - id: "aspmetasp_x" - name: "Aspartyl-Methionyl-Aspartate" - - compartment: x - - formula: C13H19N3O8S + - compartment: "x" + - formula: "C13H19N3O8S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: aspprolys_x + - id: "aspprolys_x" - name: "Aspartyl-Prolyl-Lysine" - - compartment: x - - formula: C15H26N4O6 + - compartment: "x" + - formula: "C15H26N4O6" - charge: 0 - - inchis: 1/C15H26N4O6/c16-6-2-1-4-10(15(24)25)18-13(22)11-5-3-7-19(11)14(23)9(17)8-12(20)21/h9-11H,1-8,16-17H2,(H,18,22)(H,20,21)(H,24,25)/t9-,10-,11-/s2 - - metFrom: Recon3D + - inchis: "1/C15H26N4O6/c16-6-2-1-4-10(15(24)25)18-13(22)11-5-3-7-19(11)14(23)9(17)8-12(20)21/h9-11H,1-8,16-17H2,(H,18,22)(H,20,21)(H,24,25)/t9-,10-,11-/s2" + - metFrom: "Recon3D" - !!omap - - id: aspvalasn_x + - id: "aspvalasn_x" - name: "Aspartyl-Valyl-Asparagine" - - compartment: x - - formula: C13H21N4O7 + - compartment: "x" + - formula: "C13H21N4O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glgchlo_x + - id: "glgchlo_x" - name: "Beta Glucan-Glycocholate Complex" - - compartment: x - - formula: C1200026H2200043NO1100006 + - compartment: "x" + - formula: "C1200026H2200043NO1100006" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gltcho_x + - id: "gltcho_x" - name: "Beta Glucan-Taurocholic Acid Complex" - - compartment: x - - formula: C1200026H2200045NO1100007S + - compartment: "x" + - formula: "C1200026H2200045NO1100007S" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gltdechol_x + - id: "gltdechol_x" - name: "Beta Glucan-Taurodeoxycholic Acid Complex" - - compartment: x - - formula: C1200026H2200044NO1100006S + - compartment: "x" + - formula: "C1200026H2200044NO1100006S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: bglc_x + - id: "bglc_x" - name: "Beta-Glucans" - - compartment: x - - formula: C1200000H2200000O1100000 + - compartment: "x" + - formula: "C1200000H2200000O1100000" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: bvite_x + - id: "bvite_x" - name: "Beta-Tocopherol" - - compartment: x - - formula: C28H48O2 + - compartment: "x" + - formula: "C28H48O2" - charge: 0 - - inchis: 1S/C28H48O2/c1-20(2)11-8-12-21(3)13-9-14-22(4)15-10-17-28(7)18-16-25-24(6)26(29)19-23(5)27(25)30-28/h19-22,29H,8-18H2,1-7H3/t21-,22-,28-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C28H48O2/c1-20(2)11-8-12-21(3)13-9-14-22(4)15-10-17-28(7)18-16-25-24(6)26(29)19-23(5)27(25)30-28/h19-22,29H,8-18H2,1-7H3/t21-,22-,28-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: didecaeth_x + - id: "didecaeth_x" - name: "C12:0-Ethanolamide, Didecanoyl Ethanolamide" - - compartment: x - - formula: C14H29NO2 + - compartment: "x" + - formula: "C14H29NO2" - charge: 0 - - inchis: 1S/C14H29NO2/c1-2-3-4-5-6-7-8-9-10-11-14(17)15-12-13-16/h16H,2-13H2,1H3,(H,15,17) - - metFrom: Recon3D + - inchis: "1S/C14H29NO2/c1-2-3-4-5-6-7-8-9-10-11-14(17)15-12-13-16/h16H,2-13H2,1H3,(H,15,17)" + - metFrom: "Recon3D" - !!omap - - id: tetdecaeth_x + - id: "tetdecaeth_x" - name: "C14:0-Ethanolamide, Tetradecanoyl Ethanolamide" - - compartment: x - - formula: C16H33NO2 + - compartment: "x" + - formula: "C16H33NO2" - charge: 0 - - inchis: 1S/C16H33NO2/c1-2-3-4-5-6-7-8-9-10-11-12-13-16(19)17-14-15-18/h18H,2-15H2,1H3,(H,17,19) - - metFrom: Recon3D + - inchis: "1S/C16H33NO2/c1-2-3-4-5-6-7-8-9-10-11-12-13-16(19)17-14-15-18/h18H,2-15H2,1H3,(H,17,19)" + - metFrom: "Recon3D" - !!omap - - id: m01424x + - id: "m01424x" - name: "CDP" - - compartment: x - - formula: C9H12N3O11P2 + - compartment: "x" + - formula: "C9H12N3O11P2" - charge: -3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01428x + - id: "m01428x" - name: "CDP-ethanolamine" - - compartment: x - - formula: C11H19N4O11P2 + - compartment: "x" + - formula: "C11H19N4O11P2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01592x + - id: "m01592x" - name: "CMP-N-acetylneuraminate" - - compartment: x - - formula: C20H29N4O16P + - compartment: "x" + - formula: "C20H29N4O16P" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01623x + - id: "m01623x" - name: "CTP" - - compartment: x - - formula: C9H12N3O14P3 + - compartment: "x" + - formula: "C9H12N3O14P3" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: C02528_x + - id: "C02528_x" - name: "Chenodeoxycholate" - - compartment: x - - formula: C24H39O4 + - compartment: "x" + - formula: "C24H39O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: cdca24g_x + - id: "cdca24g_x" - name: "Chenodeoxycholic acid-24glucuronide, CDCA-24G" - - compartment: x - - formula: C30H47O10 + - compartment: "x" + - formula: "C30H47O10" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: cdca3g_x + - id: "cdca3g_x" - name: "Chenodeoxycholic acid-3glucuronide, CDCA-3G" - - compartment: x - - formula: C30H47O10 + - compartment: "x" + - formula: "C30H47O10" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: xolest_hs_x + - id: "xolest_hs_x" - name: "Cholesterol Ester" - - compartment: x - - formula: C27H45XCO2 + - compartment: "x" + - formula: "C27H45XCO2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: xolest204_hs_x + - id: "xolest204_hs_x" - name: "Cholesteryl Arachidonate, Cholesterol-Ester (20:4, Delta 5,8,11,14)" - - compartment: x - - formula: C47H76O2 + - compartment: "x" + - formula: "C47H76O2" - charge: 0 - - inchis: 1S/C47H76O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-22-23-27-45(48)49-40-32-34-46(5)39(36-40)28-29-41-43-31-30-42(38(4)26-24-25-37(2)3)47(43,6)35-33-44(41)46/h11-12,14-15,17-18,20-21,28,37-38,40-44H,7-10,13,16,19,22-27,29-36H2,1-6H3/b12-11-,15-14-,18-17-,21-20-/t38-,40+,41+,42-,43+,44+,46+,47-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C47H76O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-22-23-27-45(48)49-40-32-34-46(5)39(36-40)28-29-41-43-31-30-42(38(4)26-24-25-37(2)3)47(43,6)35-33-44(41)46/h11-12,14-15,17-18,20-21,28,37-38,40-44H,7-10,13,16,19,22-27,29-36H2,1-6H3/b12-11-,15-14-,18-17-,21-20-/t38-,40+,41+,42-,43+,44+,46+,47-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: xolest226_hs_x + - id: "xolest226_hs_x" - name: "Cholesteryl Docosahexanoate, Cholesterol-Ester (22:6, Delta 4,7,10,13,16,19)" - - compartment: x - - formula: C49H76O2 + - compartment: "x" + - formula: "C49H76O2" - charge: 0 - - inchis: 1S/C49H76O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-22-23-24-25-29-47(50)51-42-34-36-48(5)41(38-42)30-31-43-45-33-32-44(40(4)28-26-27-39(2)3)49(45,6)37-35-46(43)48/h8-9,11-12,14-15,17-18,20-21,23-24,30,39-40,42-46H,7,10,13,16,19,22,25-29,31-38H2,1-6H3/b9-8+,12-11+,15-14+,18-17+,21-20+,24-23-/t40-,42+,43+,44-,45+,46+,48+,49-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C49H76O2/c1-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-22-23-24-25-29-47(50)51-42-34-36-48(5)41(38-42)30-31-43-45-33-32-44(40(4)28-26-27-39(2)3)49(45,6)37-35-46(43)48/h8-9,11-12,14-15,17-18,20-21,23-24,30,39-40,42-46H,7,10,13,16,19,22,25-29,31-38H2,1-6H3/b9-8+,12-11+,15-14+,18-17+,21-20+,24-23-/t40-,42+,43+,44-,45+,46+,48+,49-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: ca3s_x + - id: "ca3s_x" - name: "Cholic acid 3-sulfate" - - compartment: x - - formula: C24H38O8S + - compartment: "x" + - formula: "C24H38O8S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ca24g_x + - id: "ca24g_x" - name: "Cholic acid-24glucuronide, CA-24G" - - compartment: x - - formula: C30H47O11 + - compartment: "x" + - formula: "C30H47O11" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tetdeca511ac_x + - id: "tetdeca511ac_x" - name: "Cia-5,8, Tetradecadienoic Acid" - - compartment: x - - formula: C14H23O2 + - compartment: "x" + - formula: "C14H23O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: eidi1114ac_x + - id: "eidi1114ac_x" - name: "Cis,Cis-11,14-Eicosadienoic Acid" - - compartment: x - - formula: C20H35O2 + - compartment: "x" + - formula: "C20H35O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01597x + - id: "m01597x" - name: "CoA" - - compartment: x - - formula: C21H32N7O16P3S + - compartment: "x" + - formula: "C21H32N7O16P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: coprost_x + - id: "coprost_x" - name: "Coprostanol" - - compartment: x - - formula: C27H48O + - compartment: "x" + - formula: "C27H48O" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01624x + - id: "m01624x" - name: "Cu2+" - - compartment: x - - formula: Cu + - compartment: "x" + - formula: "Cu" - charge: 2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: cynt_x + - id: "cynt_x" - name: "Cyanate" - - compartment: x - - formula: CNO + - compartment: "x" + - formula: "CNO" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: CE1950_x + - id: "CE1950_x" - name: "Cyanosulfurous Acid Anion" - - compartment: x - - formula: CH2NO2S + - compartment: "x" + - formula: "CH2NO2S" - charge: 0 - - inchis: 1S/CH2NO2S/c2-1-5(3)4/h3-4H - - metFrom: Recon3D + - inchis: "1S/CH2NO2S/c2-1-5(3)4/h3-4H" + - metFrom: "Recon3D" - !!omap - - id: cysasnmet_x + - id: "cysasnmet_x" - name: "Cystyl-Asparaginyl-Methionine" - - compartment: x - - formula: C12H22N4O5S2 + - compartment: "x" + - formula: "C12H22N4O5S2" - charge: 0 - - inchis: 1/C12H22N4O5S2/c1-23-3-2-7(12(20)21)15-11(19)8(4-9(14)17)16-10(18)6(13)5-22/h6-8,22H,2-5,13H2,1H3,(H2,14,17)(H,15,19)(H,16,18)(H,20,21)/t6-,7-,8+/s2 - - metFrom: Recon3D + - inchis: "1/C12H22N4O5S2/c1-23-3-2-7(12(20)21)15-11(19)8(4-9(14)17)16-10(18)6(13)5-22/h6-8,22H,2-5,13H2,1H3,(H2,14,17)(H,15,19)(H,16,18)(H,20,21)/t6-,7-,8+/s2" + - metFrom: "Recon3D" - !!omap - - id: cysaspphe_x + - id: "cysaspphe_x" - name: "Cystyl-Aspartyl-Phenylalanine" - - compartment: x - - formula: C16H20N3O6S + - compartment: "x" + - formula: "C16H20N3O6S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: cyscys_x + - id: "cyscys_x" - name: "Cystyl-Cysteine" - - compartment: x - - formula: C6H12N2O3S2 + - compartment: "x" + - formula: "C6H12N2O3S2" - charge: 0 - - inchis: 1/C6H12N2O3S2/c7-3(1-12)5(9)8-4(2-13)6(10)11/h3-4,12-13H,1-2,7H2,(H,8,9)(H,10,11)/t3-,4+/s2 - - metFrom: Recon3D + - inchis: "1/C6H12N2O3S2/c7-3(1-12)5(9)8-4(2-13)6(10)11/h3-4,12-13H,1-2,7H2,(H,8,9)(H,10,11)/t3-,4+/s2" + - metFrom: "Recon3D" - !!omap - - id: cysglnmet_x + - id: "cysglnmet_x" - name: "Cystyl-Glutaminyl-Methionine" - - compartment: x - - formula: C13H24N4O5S2 + - compartment: "x" + - formula: "C13H24N4O5S2" - charge: 0 - - inchis: 1/C13H24N4O5S2/c1-24-5-4-9(13(21)22)17-12(20)8(2-3-10(15)18)16-11(19)7(14)6-23/h7-9,23H,2-6,14H2,1H3,(H2,15,18)(H,16,19)(H,17,20)(H,21,22)/t7-,8+,9-/s2 - - metFrom: Recon3D + - inchis: "1/C13H24N4O5S2/c1-24-5-4-9(13(21)22)17-12(20)8(2-3-10(15)18)16-11(19)7(14)6-23/h7-9,23H,2-6,14H2,1H3,(H2,15,18)(H,16,19)(H,17,20)(H,21,22)/t7-,8+,9-/s2" + - metFrom: "Recon3D" - !!omap - - id: cysgluhis_x + - id: "cysgluhis_x" - name: "Cystyl-Glutamyl-Histidine" - - compartment: x - - formula: C14H20N5O6S + - compartment: "x" + - formula: "C14H20N5O6S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: cysglutrp_x + - id: "cysglutrp_x" - name: "Cystyl-Glutamyl-Tryptophan" - - compartment: x - - formula: C19H23N4O6S + - compartment: "x" + - formula: "C19H23N4O6S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: cysleuthr_x + - id: "cysleuthr_x" - name: "Cystyl-Leucyl-Threonine" - - compartment: x - - formula: C13H25N3O5S + - compartment: "x" + - formula: "C13H25N3O5S" - charge: 0 - - inchis: 1/C13H25N3O5S/c1-6(2)4-9(15-11(18)8(14)5-22)12(19)16-10(7(3)17)13(20)21/h6-10,17,22H,4-5,14H2,1-3H3,(H,15,18)(H,16,19)(H,20,21)/t7-,8-,9+,10-/s2 - - metFrom: Recon3D + - inchis: "1/C13H25N3O5S/c1-6(2)4-9(15-11(18)8(14)5-22)12(19)16-10(7(3)17)13(20)21/h6-10,17,22H,4-5,14H2,1-3H3,(H,15,18)(H,16,19)(H,20,21)/t7-,8-,9+,10-/s2" + - metFrom: "Recon3D" - !!omap - - id: cyssermet_x + - id: "cyssermet_x" - name: "Cystyl-Seryl-Methionine" - - compartment: x - - formula: C11H21N3O5S2 + - compartment: "x" + - formula: "C11H21N3O5S2" - charge: 0 - - inchis: 1/C11H21N3O5S2/c1-21-3-2-7(11(18)19)13-10(17)8(4-15)14-9(16)6(12)5-20/h6-8,15,20H,2-5,12H2,1H3,(H,13,17)(H,14,16)(H,18,19)/t6-,7-,8+/s2 - - metFrom: Recon3D + - inchis: "1/C11H21N3O5S2/c1-21-3-2-7(11(18)19)13-10(17)8(4-15)14-9(16)6(12)5-20/h6-8,15,20H,2-5,12H2,1H3,(H,13,17)(H,14,16)(H,18,19)/t6-,7-,8+/s2" + - metFrom: "Recon3D" - !!omap - - id: cystyrasn_x + - id: "cystyrasn_x" - name: "Cystyl-Tyrosyl-Asparagine" - - compartment: x - - formula: C16H22N4O6S + - compartment: "x" + - formula: "C16H22N4O6S" - charge: 0 - - inchis: 1/C16H22N4O6S/c17-10(7-27)14(23)19-11(5-8-1-3-9(21)4-2-8)15(24)20-12(16(25)26)6-13(18)22/h1-4,10-12,21,27H,5-7,17H2,(H2,18,22)(H,19,23)(H,20,24)(H,25,26)/t10-,11+,12-/s2 - - metFrom: Recon3D + - inchis: "1/C16H22N4O6S/c17-10(7-27)14(23)19-11(5-8-1-3-9(21)4-2-8)15(24)20-12(16(25)26)6-13(18)22/h1-4,10-12,21,27H,5-7,17H2,(H2,18,22)(H,19,23)(H,20,24)(H,25,26)/t10-,11+,12-/s2" + - metFrom: "Recon3D" - !!omap - - id: alaala_x + - id: "alaala_x" - name: "D-Alanyl-D-Alanine" - - compartment: x - - formula: C6H12N2O3 + - compartment: "x" + - formula: "C6H12N2O3" - charge: 0 - - inchis: 1S/C6H12N2O3/c1-3(7)5(9)8-4(2)6(10)11/h3-4H,7H2,1-2H3,(H,8,9)(H,10,11)/t3-,4-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C6H12N2O3/c1-3(7)5(9)8-4(2)6(10)11/h3-4H,7H2,1-2H3,(H,8,9)(H,10,11)/t3-,4-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: abt_D_x + - id: "abt_D_x" - name: "D-Arabitol" - - compartment: x - - formula: C5H12O5 + - compartment: "x" + - formula: "C5H12O5" - charge: 0 - - inchis: 1S/C5H12O5/c6-1-3(8)5(10)4(9)2-7/h3-10H,1-2H2/t3-,4-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C5H12O5/c6-1-3(8)5(10)4(9)2-7/h3-10H,1-2H2/t3-,4-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: galam_x + - id: "galam_x" - name: "D-Galactosamine" - - compartment: x - - formula: C6H13NO5 + - compartment: "x" + - formula: "C6H13NO5" - charge: 0 - - inchis: 1S/C6H13NO5/c7-3-5(10)4(9)2(1-8)12-6(3)11/h2-6,8-11H,1,7H2/t2-,3-,4+,5-,6?/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C6H13NO5/c7-3-5(10)4(9)2(1-8)12-6(3)11/h2-6,8-11H,1,7H2/t2-,3-,4+,5-,6?/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: m01679x + - id: "m01679x" - name: "D-galactosyl-N-acylsphingosine" - - compartment: x - - formula: C24H46NO7RCO + - compartment: "x" + - formula: "C24H46NO7RCO" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01681x + - id: "m01681x" - name: "D-glucarate" - - compartment: x - - formula: C6H8O8 + - compartment: "x" + - formula: "C6H8O8" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01683x + - id: "m01683x" - name: "D-gluconic acid" - - compartment: x - - formula: C6H11O7 + - compartment: "x" + - formula: "C6H11O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01759x + - id: "m01759x" - name: "D-xylulose" - - compartment: x - - formula: C5H10O5 + - compartment: "x" + - formula: "C5H10O5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01689x + - id: "m01689x" - name: "DHA" - - compartment: x - - formula: C22H31O2 + - compartment: "x" + - formula: "C22H31O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01690x + - id: "m01690x" - name: "DHAP" - - compartment: x - - formula: C3H5O6P + - compartment: "x" + - formula: "C3H5O6P" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01741x + - id: "m01741x" - name: "DPA" - - compartment: x - - formula: C22H33O2 + - compartment: "x" + - formula: "C22H33O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: decdicrn_x + - id: "decdicrn_x" - name: "Decadienoyl Carnitine" - - compartment: x - - formula: C17H29NO4 + - compartment: "x" + - formula: "C17H29NO4" - charge: 0 - - inchis: 1S/C17H29NO4/c1-5-6-7-8-9-10-11-12-17(21)22-15(18(2,3)4)13-14-16(19)20/h9-12,15H,5-8,13-14H2,1-4H3/b10-9-,12-11+/t15-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C17H29NO4/c1-5-6-7-8-9-10-11-12-17(21)22-15(18(2,3)4)13-14-16(19)20/h9-12,15H,5-8,13-14H2,1-4H3/b10-9-,12-11+/t15-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: c10crn_x + - id: "c10crn_x" - name: "Decanoyl Carnitine" - - compartment: x - - formula: C17H33NO4 + - compartment: "x" + - formula: "C17H33NO4" - charge: 0 - - inchis: 1/C17H33NO4/c1-5-6-7-8-9-10-11-12-17(21)22-15(13-16(19)20)14-18(2,3)4/h15H,5-14H2,1-4H3 - - metFrom: Recon3D + - inchis: "1/C17H33NO4/c1-5-6-7-8-9-10-11-12-17(21)22-15(13-16(19)20)14-18(2,3)4/h15H,5-14H2,1-4H3" + - metFrom: "Recon3D" - !!omap - - id: c101crn_x + - id: "c101crn_x" - name: "Decenoyl Carnitine" - - compartment: x - - formula: C17H31NO4 + - compartment: "x" + - formula: "C17H31NO4" - charge: 0 - - inchis: 1/C17H31NO4/c1-5-6-7-8-9-10-11-12-17(21)22-15(13-16(19)20)14-18(2,3)4/h5,15H,1,6-14H2,2-4H3 - - metFrom: Recon3D + - inchis: "1/C17H31NO4/c1-5-6-7-8-9-10-11-12-17(21)22-15(13-16(19)20)14-18(2,3)4/h5,15H,1,6-14H2,2-4H3" + - metFrom: "Recon3D" - !!omap - - id: dca3s_x + - id: "dca3s_x" - name: "Deoxycholic acid 3-sulfate" - - compartment: x - - formula: C24H38O7S + - compartment: "x" + - formula: "C24H38O7S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: dca24g_x + - id: "dca24g_x" - name: "Deoxycholic acid-24glucuronide, CDA-24G" - - compartment: x - - formula: C30H47O10 + - compartment: "x" + - formula: "C30H47O10" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: dca3g_x + - id: "dca3g_x" - name: "Deoxycholic acid-3glucuronide, CDA-3G" - - compartment: x - - formula: C30H47O10 + - compartment: "x" + - formula: "C30H47O10" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: diholineth_x + - id: "diholineth_x" - name: "Dihomo-Gamma-Linolenoyl Ethanolamide" - - compartment: x - - formula: C22H39NO2 + - compartment: "x" + - formula: "C22H39NO2" - charge: 0 - - inchis: 1S/C22H39NO2/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-22(25)23-20-21-24/h6-7,9-10,12-13,24H,2-5,8,11,14-21H2,1H3,(H,23,25)/b7-6+,10-9+,13-12+ - - metFrom: Recon3D + - inchis: "1S/C22H39NO2/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-22(25)23-20-21-24/h6-7,9-10,12-13,24H,2-5,8,11,14-21H2,1H3,(H,23,25)/b7-6+,10-9+,13-12+" + - metFrom: "Recon3D" - !!omap - - id: docohxeth_x + - id: "docohxeth_x" - name: "Docosahexaenoyl Ethanolamide" - - compartment: x - - formula: C24H37NO2 + - compartment: "x" + - formula: "C24H37NO2" - charge: 0 - - inchis: 1S/C24H37NO2/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-24(27)25-22-23-26/h3-4,6-7,9-10,12-13,15-16,18-19,26H,2,5,8,11,14,17,20-23H2,1H3,(H,25,27)/b4-3-,7-6-,10-9-,13-12-,16-15-,19-18- - - metFrom: Recon3D + - inchis: "1S/C24H37NO2/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-24(27)25-22-23-26/h3-4,6-7,9-10,12-13,15-16,18-19,26H,2,5,8,11,14,17,20-23H2,1H3,(H,25,27)/b4-3-,7-6-,10-9-,13-12-,16-15-,19-18-" + - metFrom: "Recon3D" - !!omap - - id: docosdiac_x + - id: "docosdiac_x" - name: "Docosanedioicacid" - - compartment: x - - formula: C22H40O4 + - compartment: "x" + - formula: "C22H40O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: docteteth_x + - id: "docteteth_x" - name: "Docosatetraenoyl Ethanolamide (22:4, Delta 7, 10, 13, 16)" - - compartment: x - - formula: C24H41NO2 + - compartment: "x" + - formula: "C24H41NO2" - charge: 0 - - inchis: 1S/C24H41NO2/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-24(27)25-22-23-26/h6-7,9-10,12-13,15-16,26H,2-5,8,11,14,17-23H2,1H3,(H,25,27)/b7-6+,10-9+,13-12+,16-15+ - - metFrom: Recon3D + - inchis: "1S/C24H41NO2/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-21-24(27)25-22-23-26/h6-7,9-10,12-13,15-16,26H,2-5,8,11,14,17-23H2,1H3,(H,25,27)/b7-6+,10-9+,13-12+,16-15+" + - metFrom: "Recon3D" - !!omap - - id: dodecanac_x + - id: "dodecanac_x" - name: "Dodecanedioic Acid" - - compartment: x - - formula: C12H20O4 + - compartment: "x" + - formula: "C12H20O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: c12dc_x + - id: "c12dc_x" - name: "Dodecanedioyl Carnitine" - - compartment: x - - formula: C19H34NO6 + - compartment: "x" + - formula: "C19H34NO6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ddece1crn_x + - id: "ddece1crn_x" - name: "Dodecenoyl Carnitine" - - compartment: x - - formula: C19H35NO4 + - compartment: "x" + - formula: "C19H35NO4" - charge: 0 - - inchis: 1/C19H35NO4/c1-5-6-7-8-9-10-11-12-13-14-19(23)24-17(20(2,3)4)15-16-18(21)22/h10-11,17H,5-9,12-16H2,1-4H3/b11-10- - - metFrom: Recon3D + - inchis: "1/C19H35NO4/c1-5-6-7-8-9-10-11-12-13-14-19(23)24-17(20(2,3)4)15-16-18(21)22/h10-11,17H,5-9,12-16H2,1-4H3/b11-10-" + - metFrom: "Recon3D" - !!omap - - id: dopa4sf_x + - id: "dopa4sf_x" - name: "Dopamine 4-O-Sulphate" - - compartment: x - - formula: C8H11NO5S + - compartment: "x" + - formula: "C8H11NO5S" - charge: 0 - - inchis: 1S/C8H11NO5S/c9-4-3-6-1-2-8(7(10)5-6)14-15(11,12)13/h1-2,5,10H,3-4,9H2,(H,11,12,13) - - metFrom: Recon3D + - inchis: "1S/C8H11NO5S/c9-4-3-6-1-2-8(7(10)5-6)14-15(11,12)13/h1-2,5,10H,3-4,9H2,(H,11,12,13)" + - metFrom: "Recon3D" - !!omap - - id: dopa3glcur_x + - id: "dopa3glcur_x" - name: "Dopamine-3-O-Glucuronide" - - compartment: x - - formula: C14H19NO8 + - compartment: "x" + - formula: "C14H19NO8" - charge: 0 - - inchis: 1S/C14H19NO8/c15-4-3-6-1-2-7(16)8(5-6)22-14-11(19)9(17)10(18)12(23-14)13(20)21/h1-2,5,9-12,14,16-19H,3-4,15H2,(H,20,21)/t9-,10-,11+,12-,14+/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C14H19NO8/c15-4-3-6-1-2-7(16)8(5-6)22-14-11(19)9(17)10(18)12(23-14)13(20)21/h1-2,5,9-12,14,16-19H,3-4,15H2,(H,20,21)/t9-,10-,11+,12-,14+/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: dopa4glcur_x + - id: "dopa4glcur_x" - name: "Dopamine-4-O-Glucuronide" - - compartment: x - - formula: C14H19NO8 + - compartment: "x" + - formula: "C14H19NO8" - charge: 0 - - inchis: 1S/C14H19NO8/c15-4-3-6-1-2-8(7(16)5-6)22-14-11(19)9(17)10(18)12(23-14)13(20)21/h1-2,5,9-12,14,16-19H,3-4,15H2,(H,20,21)/t9-,10-,11+,12-,14+/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C14H19NO8/c15-4-3-6-1-2-8(7(16)5-6)22-14-11(19)9(17)10(18)12(23-14)13(20)21/h1-2,5,9-12,14,16-19H,3-4,15H2,(H,20,21)/t9-,10-,11+,12-,14+/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m01784x + - id: "m01784x" - name: "EPA" - - compartment: x - - formula: C20H29O2 + - compartment: "x" + - formula: "C20H29O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ethmalac_x + - id: "ethmalac_x" - name: "Ethylmalonic Acid" - - compartment: x - - formula: C5H6O4 + - compartment: "x" + - formula: "C5H6O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01801x + - id: "m01801x" - name: "F1alpha" - - compartment: x - - formula: C22H37N2O15X + - compartment: "x" + - formula: "C22H37N2O15X" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01802x + - id: "m01802x" - name: "FAD" - - compartment: x - - formula: C27H31N9O15P2 + - compartment: "x" + - formula: "C27H31N9O15P2" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01828x + - id: "m01828x" - name: "FMN" - - compartment: x - - formula: C17H19N4O9P + - compartment: "x" + - formula: "C17H19N4O9P" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: 9_cis_retfa_x + - id: "9_cis_retfa_x" - name: "Fatty Acid 9-Cis-Retinol" - - compartment: x - - formula: C21H29O2R + - compartment: "x" + - formula: "C21H29O2R" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01904x + - id: "m01904x" - name: "GA1" - - compartment: x - - formula: C44H79N2O22RCO + - compartment: "x" + - formula: "C44H79N2O22RCO" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01941x + - id: "m01941x" - name: "GD1a" - - compartment: x - - formula: C66H111N4O38RCO + - compartment: "x" + - formula: "C66H111N4O38RCO" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01943x + - id: "m01943x" - name: "GD1b" - - compartment: x - - formula: C66H111N4O38RCO + - compartment: "x" + - formula: "C66H111N4O38RCO" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01946x + - id: "m01946x" - name: "GD2" - - compartment: x - - formula: C60H101N4O33RCO + - compartment: "x" + - formula: "C60H101N4O33RCO" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01947x + - id: "m01947x" - name: "GD3" - - compartment: x - - formula: C52H88N3O28RCO + - compartment: "x" + - formula: "C52H88N3O28RCO" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02008x + - id: "m02008x" - name: "GM1" - - compartment: x - - formula: C56H95N3O31R + - compartment: "x" + - formula: "C56H95N3O31R" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02009x + - id: "m02009x" - name: "GM1alpha" - - compartment: x - - formula: C55H95N3O30RCO + - compartment: "x" + - formula: "C55H95N3O30RCO" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02010x + - id: "m02010x" - name: "GM1b" - - compartment: x - - formula: C55H95N3O30RCO + - compartment: "x" + - formula: "C55H95N3O30RCO" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02011x + - id: "m02011x" - name: "GM2" - - compartment: x - - formula: C50H85N3O26R + - compartment: "x" + - formula: "C50H85N3O26R" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02014x + - id: "m02014x" - name: "GM2alpha" - - compartment: x - - formula: C49H85N3O25RCO + - compartment: "x" + - formula: "C49H85N3O25RCO" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02015x + - id: "m02015x" - name: "GM3" - - compartment: x - - formula: C41H72N2O20RCO + - compartment: "x" + - formula: "C41H72N2O20RCO" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02030x + - id: "m02030x" - name: "GT1b" - - compartment: x - - formula: C77H127N5O46RCO + - compartment: "x" + - formula: "C77H127N5O46RCO" - charge: -3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: galgluside_hs_x + - id: "galgluside_hs_x" - name: "Galactosyl Glucosyl Ceramide" - - compartment: x - - formula: C30H56NO12RCO + - compartment: "x" + - formula: "C30H56NO12RCO" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gm1_hs_x + - id: "gm1_hs_x" - name: "Ganglioside Gm1" - - compartment: x - - formula: C55H95N3O30RCO + - compartment: "x" + - formula: "C55H95N3O30RCO" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glz_x + - id: "glz_x" - name: "Gliclazide" - - compartment: x - - formula: C15H20N3O3S + - compartment: "x" + - formula: "C15H20N3O3S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glutcon_x + - id: "glutcon_x" - name: "Glutaconate" - - compartment: x - - formula: C5H4O4 + - compartment: "x" + - formula: "C5H4O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gluargleu_x + - id: "gluargleu_x" - name: "Glutaminyl-Arginyl-Leucine" - - compartment: x - - formula: C17H32N6O6 + - compartment: "x" + - formula: "C17H32N6O6" - charge: 0 - - inchis: 1/C17H32N6O6/c1-9(2)8-12(16(28)29)23-15(27)11(4-3-7-21-17(19)20)22-14(26)10(18)5-6-13(24)25/h9-12H,3-8,18H2,1-2H3,(H,22,26)(H,23,27)(H,24,25)(H,28,29)(H4,19,20,21)/t10-,11+,12-/s2 - - metFrom: Recon3D + - inchis: "1/C17H32N6O6/c1-9(2)8-12(16(28)29)23-15(27)11(4-3-7-21-17(19)20)22-14(26)10(18)5-6-13(24)25/h9-12H,3-8,18H2,1-2H3,(H,22,26)(H,23,27)(H,24,25)(H,28,29)(H4,19,20,21)/t10-,11+,12-/s2" + - metFrom: "Recon3D" - !!omap - - id: glnasngln_x + - id: "glnasngln_x" - name: "Glutaminyl-Asparaginyl-Glutamine" - - compartment: x - - formula: C14H24N6O7 + - compartment: "x" + - formula: "C14H24N6O7" - charge: 0 - - inchis: 1/C14H24N6O7/c15-6(1-3-9(16)21)12(24)20-8(5-11(18)23)13(25)19-7(14(26)27)2-4-10(17)22/h6-8H,1-5,15H2,(H2,16,21)(H2,17,22)(H2,18,23)(H,19,25)(H,20,24)(H,26,27)/t6-,7-,8+/s2 - - metFrom: Recon3D + - inchis: "1/C14H24N6O7/c15-6(1-3-9(16)21)12(24)20-8(5-11(18)23)13(25)19-7(14(26)27)2-4-10(17)22/h6-8H,1-5,15H2,(H2,16,21)(H2,17,22)(H2,18,23)(H,19,25)(H,20,24)(H,26,27)/t6-,7-,8+/s2" + - metFrom: "Recon3D" - !!omap - - id: gluasnleu_x + - id: "gluasnleu_x" - name: "Glutaminyl-Asparaginyl-Leucine" - - compartment: x - - formula: C15H25N4O7 + - compartment: "x" + - formula: "C15H25N4O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glnhishis_x + - id: "glnhishis_x" - name: "Glutaminyl-Histidyl-Histidine" - - compartment: x - - formula: C17H24N8O5 + - compartment: "x" + - formula: "C17H24N8O5" - charge: 0 - - inchis: 1/C17H24N8O5/c18-11(1-2-14(19)26)15(27)24-12(3-9-5-20-7-22-9)16(28)25-13(17(29)30)4-10-6-21-8-23-10/h5-8,11-13H,1-4,18H2,(H2,19,26)(H,20,22)(H,21,23)(H,24,27)(H,25,28)(H,29,30)/t11-,12+,13-/s2 - - metFrom: Recon3D + - inchis: "1/C17H24N8O5/c18-11(1-2-14(19)26)15(27)24-12(3-9-5-20-7-22-9)16(28)25-13(17(29)30)4-10-6-21-8-23-10/h5-8,11-13H,1-4,18H2,(H2,19,26)(H,20,22)(H,21,23)(H,24,27)(H,25,28)(H,29,30)/t11-,12+,13-/s2" + - metFrom: "Recon3D" - !!omap - - id: glnhislys_x + - id: "glnhislys_x" - name: "Glutaminyl-Histidyl-Lysine" - - compartment: x - - formula: C17H30N7O5 + - compartment: "x" + - formula: "C17H30N7O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glnlyslys_x + - id: "glnlyslys_x" - name: "Glutaminyl-Lysyl-Lysine" - - compartment: x - - formula: C17H36N6O5 + - compartment: "x" + - formula: "C17H36N6O5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glnlystrp_x + - id: "glnlystrp_x" - name: "Glutaminyl-Lysyl-Tryptophan" - - compartment: x - - formula: C22H33N6O5 + - compartment: "x" + - formula: "C22H33N6O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glnproglu_x + - id: "glnproglu_x" - name: "Glutaminyl-Prolyl-Glutamate" - - compartment: x - - formula: C15H23N4O7 + - compartment: "x" + - formula: "C15H23N4O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glntrpglu_x + - id: "glntrpglu_x" - name: "Glutaminyl-Tryptophanyl-Glutamate" - - compartment: x - - formula: C21H26N5O7 + - compartment: "x" + - formula: "C21H26N5O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glntyrleu_x + - id: "glntyrleu_x" - name: "Glutaminyl-Tyrosyl-Leucine" - - compartment: x - - formula: C20H30N4O6 + - compartment: "x" + - formula: "C20H30N4O6" - charge: 0 - - inchis: 1/C20H30N4O6/c1-11(2)9-16(20(29)30)24-19(28)15(10-12-3-5-13(25)6-4-12)23-18(27)14(21)7-8-17(22)26/h3-6,11,14-16,25H,7-10,21H2,1-2H3,(H2,22,26)(H,23,27)(H,24,28)(H,29,30)/t14-,15+,16-/s2 - - metFrom: Recon3D + - inchis: "1/C20H30N4O6/c1-11(2)9-16(20(29)30)24-19(28)15(10-12-3-5-13(25)6-4-12)23-18(27)14(21)7-8-17(22)26/h3-6,11,14-16,25H,7-10,21H2,1-2H3,(H2,22,26)(H,23,27)(H,24,28)(H,29,30)/t14-,15+,16-/s2" + - metFrom: "Recon3D" - !!omap - - id: gluglu_x + - id: "gluglu_x" - name: "Glutamyl-Glutamate" - - compartment: x - - formula: C10H14N2O7 + - compartment: "x" + - formula: "C10H14N2O7" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gluilelys_x + - id: "gluilelys_x" - name: "Glutamyl-Isoleucyl-Lysine" - - compartment: x - - formula: C17H32N4O6 + - compartment: "x" + - formula: "C17H32N4O6" - charge: 0 - - inchis: 1/C17H32N4O6/c1-3-10(2)14(21-15(24)11(19)7-8-13(22)23)16(25)20-12(17(26)27)6-4-5-9-18/h10-12,14H,3-9,18-19H2,1-2H3,(H,20,25)(H,21,24)(H,22,23)(H,26,27)/t10?,11-,12-,14+/s2 - - metFrom: Recon3D + - inchis: "1/C17H32N4O6/c1-3-10(2)14(21-15(24)11(19)7-8-13(22)23)16(25)20-12(17(26)27)6-4-5-9-18/h10-12,14H,3-9,18-19H2,1-2H3,(H,20,25)(H,21,24)(H,22,23)(H,26,27)/t10?,11-,12-,14+/s2" + - metFrom: "Recon3D" - !!omap - - id: gluleu_x + - id: "gluleu_x" - name: "Glutamyl-Leucine" - - compartment: x - - formula: C11H19N2O5 + - compartment: "x" + - formula: "C11H19N2O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glumet_x + - id: "glumet_x" - name: "Glutamyl-Methionine" - - compartment: x - - formula: C10H17N2O5S + - compartment: "x" + - formula: "C10H17N2O5S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glumethis_x + - id: "glumethis_x" - name: "Glutamyl-Methioninyl-Histidine" - - compartment: x - - formula: C16H24N5O6S + - compartment: "x" + - formula: "C16H24N5O6S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gluthr_x + - id: "gluthr_x" - name: "Glutamyl-Threonine" - - compartment: x - - formula: C9H15N2O6 + - compartment: "x" + - formula: "C9H15N2O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gluthrlys_x + - id: "gluthrlys_x" - name: "Glutamyl-Threonyl-Lysine" - - compartment: x - - formula: C15H28N4O7 + - compartment: "x" + - formula: "C15H28N4O7" - charge: 0 - - inchis: 1/C15H28N4O7/c1-8(20)12(19-13(23)9(17)5-6-11(21)22)14(24)18-10(15(25)26)4-2-3-7-16/h8-10,12,20H,2-7,16-17H2,1H3,(H,18,24)(H,19,23)(H,21,22)(H,25,26)/t8-,9-,10-,12+/s2 - - metFrom: Recon3D + - inchis: "1/C15H28N4O7/c1-8(20)12(19-13(23)9(17)5-6-11(21)22)14(24)18-10(15(25)26)4-2-3-7-16/h8-10,12,20H,2-7,16-17H2,1H3,(H,18,24)(H,19,23)(H,21,22)(H,25,26)/t8-,9-,10-,12+/s2" + - metFrom: "Recon3D" - !!omap - - id: glutrpala_x + - id: "glutrpala_x" - name: "Glutamyl-Tryptophanyl-Alanine" - - compartment: x - - formula: C19H23N4O6 + - compartment: "x" + - formula: "C19H23N4O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glutar_x + - id: "glutar_x" - name: "Glutarate" - - compartment: x - - formula: C5H6O4 + - compartment: "x" + - formula: "C5H6O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: c5dc_x + - id: "c5dc_x" - name: "Glutaryl Carnitine" - - compartment: x - - formula: C12H21NO6 + - compartment: "x" + - formula: "C12H21NO6" - charge: 0 - - inchis: 1S/C12H21NO6/c1-13(2,3)8-9(7-11(16)17)19-12(18)6-4-5-10(14)15/h9H,4-8H2,1-3H3,(H-,14,15,16,17)/t9-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C12H21NO6/c1-13(2,3)8-9(7-11(16)17)19-12(18)6-4-5-10(14)15/h9H,4-8H2,1-3H3,(H-,14,15,16,17)/t9-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: glyc2p_x + - id: "glyc2p_x" - name: "Glycerol 2-Phosphate" - - compartment: x - - formula: C3H7O6P + - compartment: "x" + - formula: "C3H7O6P" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gcdca3s_x + - id: "gcdca3s_x" - name: "Glycochenodeoxycholic acid 3-sulfate" - - compartment: x - - formula: C26H42NO8S + - compartment: "x" + - formula: "C26H42NO8S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gca3s_x + - id: "gca3s_x" - name: "Glycocholic acid 3-sulfate" - - compartment: x - - formula: C26H42NO9S + - compartment: "x" + - formula: "C26H42NO9S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gdca3s_x + - id: "gdca3s_x" - name: "Glycodeoxycholic acid 3-sulfate" - - compartment: x - - formula: C26H42NO8S + - compartment: "x" + - formula: "C26H42NO8S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glygn4_x + - id: "glygn4_x" - name: "Glycogen, Structure 4 (Glycogenin-1,6-{2[1,4-Glc], [1,4-Glc]})" - - compartment: x - - formula: C1797H2755N455O543S14 + - compartment: "x" + - formula: "C1797H2755N455O543S14" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glygn5_x + - id: "glygn5_x" - name: "Glycogen, Structure 5 (Glycogenin-2[1,4-Glc])" - - compartment: x - - formula: C1791H2745N455O538S14 + - compartment: "x" + - formula: "C1791H2745N455O538S14" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gudca3s_x + - id: "gudca3s_x" - name: "Glycoursodeoxycholic acid 3-sulfate" - - compartment: x - - formula: C26H42NO8S + - compartment: "x" + - formula: "C26H42NO8S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glygly_x + - id: "glygly_x" - name: "Glycyl-Glycine" - - compartment: x - - formula: C4H8N2O3 + - compartment: "x" + - formula: "C4H8N2O3" - charge: 0 - - inchis: 1S/C4H8N2O3/c5-1-3(7)6-2-4(8)9/h1-2,5H2,(H,6,7)(H,8,9) - - metFrom: Recon3D + - inchis: "1S/C4H8N2O3/c5-1-3(7)6-2-4(8)9/h1-2,5H2,(H,6,7)(H,8,9)" + - metFrom: "Recon3D" - !!omap - - id: glyhisasn_x + - id: "glyhisasn_x" - name: "Glycyl-Histidyl-Asparagine" - - compartment: x - - formula: C12H18N6O5 + - compartment: "x" + - formula: "C12H18N6O5" - charge: 0 - - inchis: 1/C12H18N6O5/c13-3-10(20)17-7(1-6-4-15-5-16-6)11(21)18-8(12(22)23)2-9(14)19/h4-5,7-8H,1-3,13H2,(H2,14,19)(H,15,16)(H,17,20)(H,18,21)(H,22,23)/t7-,8+/s2 - - metFrom: Recon3D + - inchis: "1/C12H18N6O5/c13-3-10(20)17-7(1-6-4-15-5-16-6)11(21)18-8(12(22)23)2-9(14)19/h4-5,7-8H,1-3,13H2,(H2,14,19)(H,15,16)(H,17,20)(H,18,21)(H,22,23)/t7-,8+/s2" + - metFrom: "Recon3D" - !!omap - - id: glyhislys_x + - id: "glyhislys_x" - name: "Glycyl-Histidyl-Lysine" - - compartment: x - - formula: C14H25N6O4 + - compartment: "x" + - formula: "C14H25N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glylyscys_x + - id: "glylyscys_x" - name: "Glycyl-Lysyl-Cysteine" - - compartment: x - - formula: C11H23N4O4S + - compartment: "x" + - formula: "C11H23N4O4S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glylysphe_x + - id: "glylysphe_x" - name: "Glycyl-Lysyl-Phenylalanine" - - compartment: x - - formula: C17H27N4O4 + - compartment: "x" + - formula: "C17H27N4O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glyphe_x + - id: "glyphe_x" - name: "Glycyl-Phenylalanine" - - compartment: x - - formula: C11H14N2O3 + - compartment: "x" + - formula: "C11H14N2O3" - charge: 0 - - inchis: 1S/C11H14N2O3/c12-7-10(14)13-9(11(15)16)6-8-4-2-1-3-5-8/h1-5,9H,6-7,12H2,(H,13,14)(H,15,16) - - metFrom: Recon3D + - inchis: "1S/C11H14N2O3/c12-7-10(14)13-9(11(15)16)6-8-4-2-1-3-5-8/h1-5,9H,6-7,12H2,(H,13,14)(H,15,16)" + - metFrom: "Recon3D" - !!omap - - id: glytyrlys_x + - id: "glytyrlys_x" - name: "Glycyl-Tyrosyl-Lysine" - - compartment: x - - formula: C17H27N4O5 + - compartment: "x" + - formula: "C17H27N4O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glyvalhis_x + - id: "glyvalhis_x" - name: "Glycyl-Valyl-Histidine" - - compartment: x - - formula: C13H21N5O4 + - compartment: "x" + - formula: "C13H21N5O4" - charge: 0 - - inchis: 1/C13H21N5O4/c1-7(2)11(18-10(19)4-14)12(20)17-9(13(21)22)3-8-5-15-6-16-8/h5-7,9,11H,3-4,14H2,1-2H3,(H,15,16)(H,17,20)(H,18,19)(H,21,22)/t9-,11+/s2 - - metFrom: Recon3D + - inchis: "1/C13H21N5O4/c1-7(2)11(18-10(19)4-14)12(20)17-9(13(21)22)3-8-5-15-6-16-8/h5-7,9,11H,3-4,14H2,1-2H3,(H,15,16)(H,17,20)(H,18,19)(H,21,22)/t9-,11+/s2" + - metFrom: "Recon3D" - !!omap - - id: glyleu_x + - id: "glyleu_x" - name: "Glycylleucine" - - compartment: x - - formula: C8H16N2O3 + - compartment: "x" + - formula: "C8H16N2O3" - charge: 0 - - inchis: 1S/C8H16N2O3/c1-5(2)3-6(8(12)13)10-7(11)4-9/h5-6H,3-4,9H2,1-2H3,(H,10,11)(H,12,13)/t6-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C8H16N2O3/c1-5(2)3-6(8(12)13)10-7(11)4-9/h5-6H,3-4,9H2,1-2H3,(H,10,11)(H,12,13)/t6-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: glypro_x + - id: "glypro_x" - name: "Glycylproline" - - compartment: x - - formula: C7H12N2O3 + - compartment: "x" + - formula: "C7H12N2O3" - charge: 0 - - inchis: 1/C7H12N2O3/c8-4-6(10)9-3-1-2-5(9)7(11)12/h5H,1-4,8H2,(H,11,12)/t5-/s2 - - metFrom: Recon3D + - inchis: "1/C7H12N2O3/c8-4-6(10)9-3-1-2-5(9)7(11)12/h5H,1-4,8H2,(H,11,12)/t5-/s2" + - metFrom: "Recon3D" - !!omap - - id: glysar_x + - id: "glysar_x" - name: "Glycylsarcosine" - - compartment: x - - formula: C5H10N2O3 + - compartment: "x" + - formula: "C5H10N2O3" - charge: 0 - - inchis: 1S/C5H10N2O3/c1-7(3-5(9)10)4(8)2-6/h2-3,6H2,1H3,(H,9,10) - - metFrom: Recon3D + - inchis: "1S/C5H10N2O3/c1-7(3-5(9)10)4(8)2-6/h2-3,6H2,1H3,(H,9,10)" + - metFrom: "Recon3D" - !!omap - - id: HC02154_x + - id: "HC02154_x" - name: "Gm4-Pool" - - compartment: x - - formula: X + - compartment: "x" + - formula: "X" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gumdchac_x + - id: "gumdchac_x" - name: "Guar Gum-Deoxyxholic Acid Complex" - - compartment: x - - formula: C2760024H5060039O2530004 + - compartment: "x" + - formula: "C2760024H5060039O2530004" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gumgchol_x + - id: "gumgchol_x" - name: "Guar Gum-Glycocholate Complex" - - compartment: x - - formula: C2760026H5060043NO2530006 + - compartment: "x" + - formula: "C2760026H5060043NO2530006" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gumtchol_x + - id: "gumtchol_x" - name: "Guar Gum-Taurocholic Acid Complex" - - compartment: x - - formula: C2760026H5060045NO2530007S + - compartment: "x" + - formula: "C2760026H5060045NO2530007S" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gum_x + - id: "gum_x" - name: "Gums" - - compartment: x - - formula: C2760000H5060000O2530000 + - compartment: "x" + - formula: "C2760000H5060000O2530000" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hepdeceth_x + - id: "hepdeceth_x" - name: "Heptadecanoyl Thanolamide (C17:0)" - - compartment: x - - formula: C19H39NO2 + - compartment: "x" + - formula: "C19H39NO2" - charge: 0 - - inchis: 1S/C19H39NO2/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-19(22)20-17-18-21/h21H,2-18H2,1H3,(H,20,22) - - metFrom: Recon3D + - inchis: "1S/C19H39NO2/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-19(22)20-17-18-21/h21H,2-18H2,1H3,(H,20,22)" + - metFrom: "Recon3D" - !!omap - - id: hexdiac_x + - id: "hexdiac_x" - name: "Hexadecanediocacid" - - compartment: x - - formula: C16H28O4 + - compartment: "x" + - formula: "C16H28O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: c16dc_x + - id: "c16dc_x" - name: "Hexadecanedioic Acid Mono-L-Carnitine Ester" - - compartment: x - - formula: C23H42NO6 + - compartment: "x" + - formula: "C23H42NO6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hexdeceeth_x + - id: "hexdeceeth_x" - name: "Hexadecenoyl Ethanolamide, C16:1-Ethanolamide (Delta 9)" - - compartment: x - - formula: C18H35NO2 + - compartment: "x" + - formula: "C18H35NO2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hxa_x + - id: "hxa_x" - name: "Hexanoate (N-C6:0)" - - compartment: x - - formula: C6H11O2 + - compartment: "x" + - formula: "C6H11O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: c6crn_x + - id: "c6crn_x" - name: "Hexanoyl Carnitine" - - compartment: x - - formula: C13H25NO4 + - compartment: "x" + - formula: "C13H25NO4" - charge: 0 - - inchis: 1/C13H25NO4/c1-5-6-7-8-13(17)18-11(9-12(15)16)10-14(2,3)4/h11H,5-10H2,1-4H3 - - metFrom: Recon3D + - inchis: "1/C13H25NO4/c1-5-6-7-8-13(17)18-11(9-12(15)16)10-14(2,3)4/h11H,5-10H2,1-4H3" + - metFrom: "Recon3D" - !!omap - - id: hexgly_x + - id: "hexgly_x" - name: "Hexanoyl-Glycine" - - compartment: x - - formula: C8H14NO3 + - compartment: "x" + - formula: "C8H14NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hdl_hs_x + - id: "hdl_hs_x" - name: "High Density Lipoprotein" - - compartment: x - - formula: X + - compartment: "x" + - formula: "X" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hisargcys_x + - id: "hisargcys_x" - name: "Histidyl-Arginyl-Cysteine" - - compartment: x - - formula: C15H27N8O4S + - compartment: "x" + - formula: "C15H27N8O4S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hisargser_x + - id: "hisargser_x" - name: "Histidyl-Arginyl-Serine" - - compartment: x - - formula: C15H27N8O5 + - compartment: "x" + - formula: "C15H27N8O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hisasp_x + - id: "hisasp_x" - name: "Histidyl-Aspartate" - - compartment: x - - formula: C10H13N4O5 + - compartment: "x" + - formula: "C10H13N4O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hiscyscys_x + - id: "hiscyscys_x" - name: "Histidyl-Cystyl-Cysteine" - - compartment: x - - formula: C12H19N5O4S2 + - compartment: "x" + - formula: "C12H19N5O4S2" - charge: 0 - - inchis: 1/C12H19N5O4S2/c13-7(1-6-2-14-5-15-6)10(18)16-8(3-22)11(19)17-9(4-23)12(20)21/h2,5,7-9,22-23H,1,3-4,13H2,(H,14,15)(H,16,18)(H,17,19)(H,20,21)/t7-,8+,9-/s2 - - metFrom: Recon3D + - inchis: "1/C12H19N5O4S2/c13-7(1-6-2-14-5-15-6)10(18)16-8(3-22)11(19)17-9(4-23)12(20)21/h2,5,7-9,22-23H,1,3-4,13H2,(H,14,15)(H,16,18)(H,17,19)(H,20,21)/t7-,8+,9-/s2" + - metFrom: "Recon3D" - !!omap - - id: hisglu_x + - id: "hisglu_x" - name: "Histidyl-Glutamate" - - compartment: x - - formula: C11H15N4O5 + - compartment: "x" + - formula: "C11H15N4O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hisglnala_x + - id: "hisglnala_x" - name: "Histidyl-Glutaminyl-Alanine" - - compartment: x - - formula: C14H22N6O5 + - compartment: "x" + - formula: "C14H22N6O5" - charge: 0 - - inchis: 1/C14H22N6O5/c1-7(14(24)25)19-13(23)10(2-3-11(16)21)20-12(22)9(15)4-8-5-17-6-18-8/h5-7,9-10H,2-4,15H2,1H3,(H2,16,21)(H,17,18)(H,19,23)(H,20,22)(H,24,25)/t7-,9-,10+/s2 - - metFrom: Recon3D + - inchis: "1/C14H22N6O5/c1-7(14(24)25)19-13(23)10(2-3-11(16)21)20-12(22)9(15)4-8-5-17-6-18-8/h5-7,9-10H,2-4,15H2,1H3,(H2,16,21)(H,17,18)(H,19,23)(H,20,22)(H,24,25)/t7-,9-,10+/s2" + - metFrom: "Recon3D" - !!omap - - id: hisglugln_x + - id: "hisglugln_x" - name: "Histidyl-Glutamyl-Glutamine" - - compartment: x - - formula: C16H23N6O7 + - compartment: "x" + - formula: "C16H23N6O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hishislys_x + - id: "hishislys_x" - name: "Histidyl-Histidyl-Lysine" - - compartment: x - - formula: C18H29N8O4 + - compartment: "x" + - formula: "C18H29N8O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hislysala_x + - id: "hislysala_x" - name: "Histidyl-Lysyl-Alanine" - - compartment: x - - formula: C15H27N6O4 + - compartment: "x" + - formula: "C15H27N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hislysglu_x + - id: "hislysglu_x" - name: "Histidyl-Lysyl-Glutamate" - - compartment: x - - formula: C17H28N6O6 + - compartment: "x" + - formula: "C17H28N6O6" - charge: 0 - - inchis: 1/C17H28N6O6/c18-6-2-1-3-12(16(27)23-13(17(28)29)4-5-14(24)25)22-15(26)11(19)7-10-8-20-9-21-10/h8-9,11-13H,1-7,18-19H2,(H,20,21)(H,22,26)(H,23,27)(H,24,25)(H,28,29)/t11-,12+,13-/s2 - - metFrom: Recon3D + - inchis: "1/C17H28N6O6/c18-6-2-1-3-12(16(27)23-13(17(28)29)4-5-14(24)25)22-15(26)11(19)7-10-8-20-9-21-10/h8-9,11-13H,1-7,18-19H2,(H,20,21)(H,22,26)(H,23,27)(H,24,25)(H,28,29)/t11-,12+,13-/s2" + - metFrom: "Recon3D" - !!omap - - id: hislysile_x + - id: "hislysile_x" - name: "Histidyl-Lysyl-Isoleucine" - - compartment: x - - formula: C18H33N6O4 + - compartment: "x" + - formula: "C18H33N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hisglylys_x + - id: "hisglylys_x" - name: "Histidyl-Lysyl-Lysine" - - compartment: x - - formula: C14H25N6O4 + - compartment: "x" + - formula: "C14H25N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hislysthr_x + - id: "hislysthr_x" - name: "Histidyl-Lysyl-Threonine" - - compartment: x - - formula: C16H29N6O5 + - compartment: "x" + - formula: "C16H29N6O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hislysval_x + - id: "hislysval_x" - name: "Histidyl-Lysyl-Valine" - - compartment: x - - formula: C17H31N6O4 + - compartment: "x" + - formula: "C17H31N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hismet_x + - id: "hismet_x" - name: "Histidyl-Methionine" - - compartment: x - - formula: C11H18N4O3S + - compartment: "x" + - formula: "C11H18N4O3S" - charge: 0 - - inchis: 1S/C11H18N4O3S/c1-19-3-2-9(11(17)18)15-10(16)8(12)4-7-5-13-6-14-7/h5-6,8-9H,2-4,12H2,1H3,(H,13,14)(H,15,16)(H,17,18)/p-1/t8-,9-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C11H18N4O3S/c1-19-3-2-9(11(17)18)15-10(16)8(12)4-7-5-13-6-14-7/h5-6,8-9H,2-4,12H2,1H3,(H,13,14)(H,15,16)(H,17,18)/p-1/t8-,9-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: hismetgln_x + - id: "hismetgln_x" - name: "Histidyl-Methionyl-Glutamine" - - compartment: x - - formula: C16H26N6O5S + - compartment: "x" + - formula: "C16H26N6O5S" - charge: 0 - - inchis: 1/C16H26N6O5S/c1-28-5-4-11(15(25)22-12(16(26)27)2-3-13(18)23)21-14(24)10(17)6-9-7-19-8-20-9/h7-8,10-12H,2-6,17H2,1H3,(H2,18,23)(H,19,20)(H,21,24)(H,22,25)(H,26,27)/t10-,11+,12-/s2 - - metFrom: Recon3D + - inchis: "1/C16H26N6O5S/c1-28-5-4-11(15(25)22-12(16(26)27)2-3-13(18)23)21-14(24)10(17)6-9-7-19-8-20-9/h7-8,10-12H,2-6,17H2,1H3,(H2,18,23)(H,19,20)(H,21,24)(H,22,25)(H,26,27)/t10-,11+,12-/s2" + - metFrom: "Recon3D" - !!omap - - id: hisphearg_x + - id: "hisphearg_x" - name: "Histidyl-Phenylalanyl-Arginine" - - compartment: x - - formula: C21H31N8O4 + - compartment: "x" + - formula: "C21H31N8O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hisprolys_x + - id: "hisprolys_x" - name: "Histidyl-Prolyl-Lysine" - - compartment: x - - formula: C17H29N6O4 + - compartment: "x" + - formula: "C17H29N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: histrphis_x + - id: "histrphis_x" - name: "Histidyl-Tryptophanyl-Histidine" - - compartment: x - - formula: C23H26N8O4 + - compartment: "x" + - formula: "C23H26N8O4" - charge: 0 - - inchis: 1/C23H26N8O4/c24-17(6-14-9-25-11-28-14)21(32)30-19(5-13-8-27-18-4-2-1-3-16(13)18)22(33)31-20(23(34)35)7-15-10-26-12-29-15/h1-4,8-12,17,19-20,27H,5-7,24H2,(H,25,28)(H,26,29)(H,30,32)(H,31,33)(H,34,35)/t17-,19+,20-/s2 - - metFrom: Recon3D + - inchis: "1/C23H26N8O4/c24-17(6-14-9-25-11-28-14)21(32)30-19(5-13-8-27-18-4-2-1-3-16(13)18)22(33)31-20(23(34)35)7-15-10-26-12-29-15/h1-4,8-12,17,19-20,27H,5-7,24H2,(H,25,28)(H,26,29)(H,30,32)(H,31,33)(H,34,35)/t17-,19+,20-/s2" + - metFrom: "Recon3D" - !!omap - - id: hmcarn_x + - id: "hmcarn_x" - name: "Homocarnosine" - - compartment: x - - formula: C10H16N4O3 + - compartment: "x" + - formula: "C10H16N4O3" - charge: 0 - - inchis: 1S/C10H16N4O3/c11-3-1-2-9(15)14-8(10(16)17)4-7-5-12-6-13-7/h5-6,8H,1-4,11H2,(H,12,13)(H,14,15)(H,16,17)/t8-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C10H16N4O3/c11-3-1-2-9(15)14-8(10(16)17)4-7-5-12-6-13-7/h5-6,8H,1-4,11H2,(H,12,13)(H,14,15)(H,16,17)/t8-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: hmcr_x + - id: "hmcr_x" - name: "Homocitrulline" - - compartment: x - - formula: C7H15N3O3 + - compartment: "x" + - formula: "C7H15N3O3" - charge: 0 - - inchis: 1S/C7H15N3O3/c8-5(6(11)12)3-1-2-4-10-7(9)13/h5H,1-4,8H2,(H,11,12)(H3,9,10,13)/t5-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C7H15N3O3/c8-5(6(11)12)3-1-2-4-10-7(9)13/h5H,1-4,8H2,(H,11,12)(H3,9,10,13)/t5-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: hca24g_x + - id: "hca24g_x" - name: "Hyocholic acid-24glucuronide, HCA-24G" - - compartment: x - - formula: C30H47O11 + - compartment: "x" + - formula: "C30H47O11" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hca6g_x + - id: "hca6g_x" - name: "Hyocholic acid-6glucuronide, HCA-6G" - - compartment: x - - formula: C30H47O11 + - compartment: "x" + - formula: "C30H47O11" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hyochol_x + - id: "hyochol_x" - name: "Hyocholic acid; gamma-Muricholate" - - compartment: x - - formula: C24H39O5 + - compartment: "x" + - formula: "C24H39O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hdca24g_x + - id: "hdca24g_x" - name: "Hyodeoxycholic acid-24glucuronide, HDCA-24G" - - compartment: x - - formula: C30H47O10 + - compartment: "x" + - formula: "C30H47O10" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hdca6g_x + - id: "hdca6g_x" - name: "Hyodeoxycholic acid-6glucuronide, HDCA-6G" - - compartment: x - - formula: C30H47O10 + - compartment: "x" + - formula: "C30H47O10" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: indole_x + - id: "indole_x" - name: "Indole" - - compartment: x - - formula: C8H7N + - compartment: "x" + - formula: "C8H7N" - charge: 0 - - inchis: 1S/C8H7N/c1-2-4-8-7(3-1)5-6-9-8/h1-6,9H - - metFrom: Recon3D + - inchis: "1S/C8H7N/c1-2-4-8-7(3-1)5-6-9-8/h1-6,9H" + - metFrom: "Recon3D" - !!omap - - id: inds_x + - id: "inds_x" - name: "Indoxyl Sulfate" - - compartment: x - - formula: C8H6NO4S + - compartment: "x" + - formula: "C8H6NO4S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: idl_hs_x + - id: "idl_hs_x" - name: "Intermediate Density Lipoprotein" - - compartment: x - - formula: X + - compartment: "x" + - formula: "X" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: isochol_x + - id: "isochol_x" - name: "Isochenodeoxycholic acid; 3beta,7alpha,12alpha-Trihydroxy-5beta-cholanic acid" - - compartment: x - - formula: C24H39O5 + - compartment: "x" + - formula: "C24H39O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: icdchol_x + - id: "icdchol_x" - name: "Isochenodeoxycholic acid; 3beta,7alpha-Dihydroxy-5beta-cholanic acid" - - compartment: x - - formula: C24H39O4 + - compartment: "x" + - formula: "C24H39O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ileasp_x + - id: "ileasp_x" - name: "Isolecyl-Aspartate" - - compartment: x - - formula: C10H17N2O5 + - compartment: "x" + - formula: "C10H17N2O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ileglnglu_x + - id: "ileglnglu_x" - name: "Isolecyl-Glutaminyl-Glutamate" - - compartment: x - - formula: C16H27N4O7 + - compartment: "x" + - formula: "C16H27N4O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ileglyarg_x + - id: "ileglyarg_x" - name: "Isolecyl-Glycyl-Arginine" - - compartment: x - - formula: C14H29N6O4 + - compartment: "x" + - formula: "C14H29N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ileprolys_x + - id: "ileprolys_x" - name: "Isolecyl-Prolyl-Lysine" - - compartment: x - - formula: C17H33N4O4 + - compartment: "x" + - formula: "C17H33N4O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ileserarg_x + - id: "ileserarg_x" - name: "Isolecyl-Seryl-Arginine" - - compartment: x - - formula: C15H31N6O5 + - compartment: "x" + - formula: "C15H31N6O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: iletrptyr_x + - id: "iletrptyr_x" - name: "Isolecyl-Tryptophanyl-Tyrosine" - - compartment: x - - formula: C26H32N4O5 + - compartment: "x" + - formula: "C26H32N4O5" - charge: 0 - - inchis: 1/C26H32N4O5/c1-3-15(2)23(27)25(33)29-21(13-17-14-28-20-7-5-4-6-19(17)20)24(32)30-22(26(34)35)12-16-8-10-18(31)11-9-16/h4-11,14-15,21-23,28,31H,3,12-13,27H2,1-2H3,(H,29,33)(H,30,32)(H,34,35)/t15?,21-,22+,23+/s2 - - metFrom: Recon3D + - inchis: "1/C26H32N4O5/c1-3-15(2)23(27)25(33)29-21(13-17-14-28-20-7-5-4-6-19(17)20)24(32)30-22(26(34)35)12-16-8-10-18(31)11-9-16/h4-11,14-15,21-23,28,31H,3,12-13,27H2,1-2H3,(H,29,33)(H,30,32)(H,34,35)/t15?,21-,22+,23+/s2" + - metFrom: "Recon3D" - !!omap - - id: ileargile_x + - id: "ileargile_x" - name: "Isoleucyl-Arginyl-Isoleucine" - - compartment: x - - formula: C18H37N6O4 + - compartment: "x" + - formula: "C18H37N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ileasnhis_x + - id: "ileasnhis_x" - name: "Isoleucyl-Asparaginyl-Histidine" - - compartment: x - - formula: C16H26N6O5 + - compartment: "x" + - formula: "C16H26N6O5" - charge: 0 - - inchis: 1/C16H26N6O5/c1-3-8(2)13(18)15(25)21-10(5-12(17)23)14(24)22-11(16(26)27)4-9-6-19-7-20-9/h6-8,10-11,13H,3-5,18H2,1-2H3,(H2,17,23)(H,19,20)(H,21,25)(H,22,24)(H,26,27)/t8?,10-,11+,13+/s2 - - metFrom: Recon3D + - inchis: "1/C16H26N6O5/c1-3-8(2)13(18)15(25)21-10(5-12(17)23)14(24)22-11(16(26)27)4-9-6-19-7-20-9/h6-8,10-11,13H,3-5,18H2,1-2H3,(H2,17,23)(H,19,20)(H,21,25)(H,22,24)(H,26,27)/t8?,10-,11+,13+/s2" + - metFrom: "Recon3D" - !!omap - - id: ivcrn_x + - id: "ivcrn_x" - name: "Isovaleryl Carnitine" - - compartment: x - - formula: C12H23NO4 + - compartment: "x" + - formula: "C12H23NO4" - charge: 0 - - inchis: 1/C12H23NO4/c1-9(2)6-12(16)17-10(7-11(14)15)8-13(3,4)5/h9-10H,6-8H2,1-5H3 - - metFrom: Recon3D + - inchis: "1/C12H23NO4/c1-9(2)6-12(16)17-10(7-11(14)15)8-13(3,4)5/h9-10H,6-8H2,1-5H3" + - metFrom: "Recon3D" - !!omap - - id: m02322x + - id: "m02322x" - name: "L-2-aminoadipate" - - compartment: x - - formula: C6H10NO4 + - compartment: "x" + - formula: "C6H10NO4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02326x + - id: "m02326x" - name: "L-3-cyanoalanine" - - compartment: x - - formula: C4H5N2O2 + - compartment: "x" + - formula: "C4H5N2O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: Lhcystin_x + - id: "Lhcystin_x" - name: "L-Homocystine" - - compartment: x - - formula: C8H16N2O4S2 + - compartment: "x" + - formula: "C8H16N2O4S2" - charge: 0 - - inchis: 1/C8H16N2O4S2/c9-5(7(11)12)1-3-15-16-4-2-6(10)8(13)14/h5-6H,1-4,9-10H2,(H,11,12)(H,13,14)/t5-,6?/s2 - - metFrom: Recon3D + - inchis: "1/C8H16N2O4S2/c9-5(7(11)12)1-3-15-16-4-2-6(10)8(13)14/h5-6H,1-4,9-10H2,(H,11,12)(H,13,14)/t5-,6?/s2" + - metFrom: "Recon3D" - !!omap - - id: progly_x + - id: "progly_x" - name: "L-Prolinylglycine" - - compartment: x - - formula: C7H12N2O3 + - compartment: "x" + - formula: "C7H12N2O3" - charge: 0 - - inchis: 1S/C7H12N2O3/c10-6(11)4-9-7(12)5-2-1-3-8-5/h5,8H,1-4H2,(H,9,12)(H,10,11)/t5-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C7H12N2O3/c10-6(11)4-9-7(12)5-2-1-3-8-5/h5,8H,1-4H2,(H,9,12)(H,10,11)/t5-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m02349x + - id: "m02349x" - name: "L-cystathionine" - - compartment: x - - formula: C7H14N2O4S + - compartment: "x" + - formula: "C7H14N2O4S" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02350x + - id: "m02350x" - name: "L-cysteate" - - compartment: x - - formula: C3H6NO5S + - compartment: "x" + - formula: "C3H6NO5S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02381x + - id: "m02381x" - name: "L-hydroxylysine" - - compartment: x - - formula: C6H14N2O3 + - compartment: "x" + - formula: "C6H14N2O3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02409x + - id: "m02409x" - name: "L-octanoylcarnitine" - - compartment: x - - formula: C15H29NO4 + - compartment: "x" + - formula: "C15H29NO4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02411x + - id: "m02411x" - name: "L-palmitoylcarnitine" - - compartment: x - - formula: C23H45NO4 + - compartment: "x" + - formula: "C23H45NO4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02413x + - id: "m02413x" - name: "L-pipecolate" - - compartment: x - - formula: C6H11NO2 + - compartment: "x" + - formula: "C6H11NO2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02425x + - id: "m02425x" - name: "L-xylulose" - - compartment: x - - formula: C5H10O5 + - compartment: "x" + - formula: "C5H10O5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ddeccrn_x + - id: "ddeccrn_x" - name: "Lauroyl Carnitine" - - compartment: x - - formula: C19H37NO4 + - compartment: "x" + - formula: "C19H37NO4" - charge: 0 - - inchis: 1S/C19H37NO4/c1-5-6-7-8-9-10-11-12-13-14-19(23)24-17(15-18(21)22)16-20(2,3)4/h17H,5-16H2,1-4H3/t17-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C19H37NO4/c1-5-6-7-8-9-10-11-12-13-14-19(23)24-17(15-18(21)22)16-20(2,3)4/h17H,5-16H2,1-4H3/t17-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: fucfucgalacglcgalgluside_hs_x + - id: "fucfucgalacglcgalgluside_hs_x" - name: "Leb Glycolipid" - - compartment: x - - formula: C56H99N2O30RCO + - compartment: "x" + - formula: "C56H99N2O30RCO" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: leualaarg_x + - id: "leualaarg_x" - name: "Leucyl-Alanyl-Arginine" - - compartment: x - - formula: C15H31N6O4 + - compartment: "x" + - formula: "C15H31N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: leuasnasp_x + - id: "leuasnasp_x" - name: "Leucyl-Asparaginyl-Aspartate" - - compartment: x - - formula: C14H23N4O7 + - compartment: "x" + - formula: "C14H23N4O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: leuasplys_x + - id: "leuasplys_x" - name: "Leucyl-Aspartyl-Lysine" - - compartment: x - - formula: C16H30N4O6 + - compartment: "x" + - formula: "C16H30N4O6" - charge: 0 - - inchis: 1/C16H30N4O6/c1-9(2)7-10(18)14(23)20-12(8-13(21)22)15(24)19-11(16(25)26)5-3-4-6-17/h9-12H,3-8,17-18H2,1-2H3,(H,19,24)(H,20,23)(H,21,22)(H,25,26)/t10-,11-,12+/s2 - - metFrom: Recon3D + - inchis: "1/C16H30N4O6/c1-9(2)7-10(18)14(23)20-12(8-13(21)22)15(24)19-11(16(25)26)5-3-4-6-17/h9-12H,3-8,17-18H2,1-2H3,(H,19,24)(H,20,23)(H,21,22)(H,25,26)/t10-,11-,12+/s2" + - metFrom: "Recon3D" - !!omap - - id: leugly_x + - id: "leugly_x" - name: "Leucyl-Glycine" - - compartment: x - - formula: C8H16N2O3 + - compartment: "x" + - formula: "C8H16N2O3" - charge: 0 - - inchis: 1S/C8H16N2O3/c1-5(2)3-6(9)8(13)10-4-7(11)12/h5-6H,3-4,9H2,1-2H3,(H,10,13)(H,11,12)/t6-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C8H16N2O3/c1-5(2)3-6(9)8(13)10-4-7(11)12/h5-6H,3-4,9H2,1-2H3,(H,10,13)(H,11,12)/t6-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: leuleutrp_x + - id: "leuleutrp_x" - name: "Leucyl-Leucyl-Tryptophan" - - compartment: x - - formula: C23H34N4O4 + - compartment: "x" + - formula: "C23H34N4O4" - charge: 0 - - inchis: 1/C23H34N4O4/c1-13(2)9-17(24)21(28)26-19(10-14(3)4)22(29)27-20(23(30)31)11-15-12-25-18-8-6-5-7-16(15)18/h5-8,12-14,17,19-20,25H,9-11,24H2,1-4H3,(H,26,28)(H,27,29)(H,30,31)/t17-,19+,20-/s2 - - metFrom: Recon3D + - inchis: "1/C23H34N4O4/c1-13(2)9-17(24)21(28)26-19(10-14(3)4)22(29)27-20(23(30)31)11-15-12-25-18-8-6-5-7-16(15)18/h5-8,12-14,17,19-20,25H,9-11,24H2,1-4H3,(H,26,28)(H,27,29)(H,30,31)/t17-,19+,20-/s2" + - metFrom: "Recon3D" - !!omap - - id: leupro_x + - id: "leupro_x" - name: "Leucyl-Proline" - - compartment: x - - formula: C11H20N2O3 + - compartment: "x" + - formula: "C11H20N2O3" - charge: 0 - - inchis: 1/C11H20N2O3/c1-7(2)6-8(12)10(14)13-5-3-4-9(13)11(15)16/h7-9H,3-6,12H2,1-2H3,(H,15,16)/t8-,9-/s2 - - metFrom: Recon3D + - inchis: "1/C11H20N2O3/c1-7(2)6-8(12)10(14)13-5-3-4-9(13)11(15)16/h7-9H,3-6,12H2,1-2H3,(H,15,16)/t8-,9-/s2" + - metFrom: "Recon3D" - !!omap - - id: leuproarg_x + - id: "leuproarg_x" - name: "Leucyl-Prolyl-Arginine" - - compartment: x - - formula: C17H33N6O4 + - compartment: "x" + - formula: "C17H33N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: leusertrp_x + - id: "leusertrp_x" - name: "Leucyl-Seryl-Tryptophan" - - compartment: x - - formula: C20H28N4O5 + - compartment: "x" + - formula: "C20H28N4O5" - charge: 0 - - inchis: 1S/C20H28N4O5/c1-11(2)7-14(21)18(26)24-17(10-25)19(27)23-16(20(28)29)8-12-9-22-15-6-4-3-5-13(12)15/h3-6,9,11,14,16-17,22,25H,7-8,10,21H2,1-2H3,(H,23,27)(H,24,26)(H,28,29)/p-1/t14-,16-,17-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C20H28N4O5/c1-11(2)7-14(21)18(26)24-17(10-25)19(27)23-16(20(28)29)8-12-9-22-15-6-4-3-5-13(12)15/h3-6,9,11,14,16-17,22,25H,7-8,10,21H2,1-2H3,(H,23,27)(H,24,26)(H,28,29)/p-1/t14-,16-,17-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: leutrp_x + - id: "leutrp_x" - name: "Leucyl-Tryptophan" - - compartment: x - - formula: C17H23N3O3 + - compartment: "x" + - formula: "C17H23N3O3" - charge: 0 - - inchis: 1/C17H23N3O3/c1-10(2)7-13(18)16(21)20-15(17(22)23)8-11-9-19-14-6-4-3-5-12(11)14/h3-6,9-10,13,15,19H,7-8,18H2,1-2H3,(H,20,21)(H,22,23)/t13-,15+/s2 - - metFrom: Recon3D + - inchis: "1/C17H23N3O3/c1-10(2)7-13(18)16(21)20-15(17(22)23)8-11-9-19-14-6-4-3-5-12(11)14/h3-6,9-10,13,15,19H,7-8,18H2,1-2H3,(H,20,21)(H,22,23)/t13-,15+/s2" + - metFrom: "Recon3D" - !!omap - - id: leutrparg_x + - id: "leutrparg_x" - name: "Leucyl-Tryptophanyl-Arginine" - - compartment: x - - formula: C23H36N7O4 + - compartment: "x" + - formula: "C23H36N7O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: leutyrtyr_x + - id: "leutyrtyr_x" - name: "Leucyl-Tyrosyl-Tyrosine" - - compartment: x - - formula: C24H31N3O6 + - compartment: "x" + - formula: "C24H31N3O6" - charge: 0 - - inchis: 1/C24H31N3O6/c1-14(2)11-19(25)22(30)26-20(12-15-3-7-17(28)8-4-15)23(31)27-21(24(32)33)13-16-5-9-18(29)10-6-16/h3-10,14,19-21,28-29H,11-13,25H2,1-2H3,(H,26,30)(H,27,31)(H,32,33)/t19-,20+,21-/s2 - - metFrom: Recon3D + - inchis: "1/C24H31N3O6/c1-14(2)11-19(25)22(30)26-20(12-15-3-7-17(28)8-4-15)23(31)27-21(24(32)33)13-16-5-9-18(29)10-6-16/h3-10,14,19-21,28-29H,11-13,25H2,1-2H3,(H,26,30)(H,27,31)(H,32,33)/t19-,20+,21-/s2" + - metFrom: "Recon3D" - !!omap - - id: leuval_x + - id: "leuval_x" - name: "Leucyl-Valine" - - compartment: x - - formula: C11H22N2O3 + - compartment: "x" + - formula: "C11H22N2O3" - charge: 0 - - inchis: 1/C11H22N2O3/c1-6(2)5-8(12)10(14)13-9(7(3)4)11(15)16/h6-9H,5,12H2,1-4H3,(H,13,14)(H,15,16)/t8-,9+/s2 - - metFrom: Recon3D + - inchis: "1/C11H22N2O3/c1-6(2)5-8(12)10(14)13-9(7(3)4)11(15)16/h6-9H,5,12H2,1-4H3,(H,13,14)(H,15,16)/t8-,9+/s2" + - metFrom: "Recon3D" - !!omap - - id: leuleu_x + - id: "leuleu_x" - name: "Leucylleucine" - - compartment: x - - formula: C12H24N2O3 + - compartment: "x" + - formula: "C12H24N2O3" - charge: 0 - - inchis: 1/C12H24N2O3/c1-7(2)5-9(13)11(15)14-10(12(16)17)6-8(3)4/h7-10H,5-6,13H2,1-4H3,(H,14,15)(H,16,17) - - metFrom: Recon3D + - inchis: "1/C12H24N2O3/c1-7(2)5-9(13)11(15)14-10(12(16)17)6-8(3)4/h7-10H,5-6,13H2,1-4H3,(H,14,15)(H,16,17)" + - metFrom: "Recon3D" - !!omap - - id: fucfuc12gal14acglcgalgluside_hs_x + - id: "fucfuc12gal14acglcgalgluside_hs_x" - name: "Ley Glycolipid" - - compartment: x - - formula: C56H99N2O30RCO + - compartment: "x" + - formula: "C56H99N2O30RCO" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02382x + - id: "m02382x" - name: "Li+" - - compartment: x - - formula: Li + - compartment: "x" + - formula: "Li" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lineth_x + - id: "lineth_x" - name: "Linoleoyl Ethanolamide" - - compartment: x - - formula: C20H37NO2 + - compartment: "x" + - formula: "C20H37NO2" - charge: 0 - - inchis: 1S/C20H37NO2/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-20(23)21-18-19-22/h6-7,9-10,22H,2-5,8,11-19H2,1H3,(H,21,23)/b7-6-,10-9- - - metFrom: Recon3D + - inchis: "1S/C20H37NO2/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-20(23)21-18-19-22/h6-7,9-10,22H,2-5,8,11-19H2,1H3,(H,21,23)/b7-6-,10-9-" + - metFrom: "Recon3D" - !!omap - - id: lca3s_x + - id: "lca3s_x" - name: "Lithocholic acid 3-sulfate" - - compartment: x - - formula: C24H38O6S + - compartment: "x" + - formula: "C24H38O6S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lca24g_x + - id: "lca24g_x" - name: "Lithocholic acid-24glucuronide, CDCA-24G" - - compartment: x - - formula: C30H47O9 + - compartment: "x" + - formula: "C30H47O9" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lca3g_x + - id: "lca3g_x" - name: "Lithocholic acid-3glucuronide, CDCA-3G" - - compartment: x - - formula: C30H47O9 + - compartment: "x" + - formula: "C30H47O9" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lstn_x + - id: "lstn_x" - name: "Losartan" - - compartment: x - - formula: C22H22ClN6O + - compartment: "x" + - formula: "C22H22ClN6O" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lst4exp_x + - id: "lst4exp_x" - name: "Losartan-E3174/ losartan-M6" - - compartment: x - - formula: C22H19ClN6O2 + - compartment: "x" + - formula: "C22H19ClN6O2" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lstnm1_x + - id: "lstnm1_x" - name: "Losartan-M1" - - compartment: x - - formula: C22H22ClN6O2 + - compartment: "x" + - formula: "C22H22ClN6O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lstnm2_x + - id: "lstnm2_x" - name: "Losartan-M2" - - compartment: x - - formula: C22H22ClN6O2 + - compartment: "x" + - formula: "C22H22ClN6O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lstnm4_x + - id: "lstnm4_x" - name: "Losartan-M4 (glucuronide derivative)" - - compartment: x - - formula: C28H27ClN6O8 + - compartment: "x" + - formula: "C28H27ClN6O8" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lstnm5_x + - id: "lstnm5_x" - name: "Losartan-M5" - - compartment: x - - formula: C22H22ClN6O2 + - compartment: "x" + - formula: "C22H22ClN6O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lstn1gluc_x + - id: "lstn1gluc_x" - name: "Losartan-N1-glucuronide" - - compartment: x - - formula: C28H30ClN6O7 + - compartment: "x" + - formula: "C28H30ClN6O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lstnm7_x + - id: "lstnm7_x" - name: "Losartan-N2-glucuronide / Losartan-M7" - - compartment: x - - formula: C28H30ClN6O7 + - compartment: "x" + - formula: "C28H30ClN6O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ldl_hs_x + - id: "ldl_hs_x" - name: "Low Density Lipoprotein" - - compartment: x - - formula: X + - compartment: "x" + - formula: "X" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholn261_hs_x + - id: "pcholn261_hs_x" - name: "Lysopc A C26:1 (Delta 5)" - - compartment: x - - formula: C34H69NO7P + - compartment: "x" + - formula: "C34H69NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholn28_hs_x + - id: "pcholn28_hs_x" - name: "Lysopc A C28:0" - - compartment: x - - formula: C36H75NO7P + - compartment: "x" + - formula: "C36H75NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcholn281_hs_x + - id: "pcholn281_hs_x" - name: "Lysopc A C28:1 (Delta 5)" - - compartment: x - - formula: C36H73NO7P + - compartment: "x" + - formula: "C36H73NO7P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lysargleu_x + - id: "lysargleu_x" - name: "Lysyl-Arginyl-Leucine" - - compartment: x - - formula: C18H38N7O4 + - compartment: "x" + - formula: "C18H38N7O4" - charge: 2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lyscyshis_x + - id: "lyscyshis_x" - name: "Lysyl-Cysteinyl-Histidine" - - compartment: x - - formula: C15H27N6O4S + - compartment: "x" + - formula: "C15H27N6O4S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lysglnphe_x + - id: "lysglnphe_x" - name: "Lysyl-Glutaminyl-Phenylalanine" - - compartment: x - - formula: C20H32N5O5 + - compartment: "x" + - formula: "C20H32N5O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lysgluglu_x + - id: "lysgluglu_x" - name: "Lysyl-Glutamyl-Glutamate" - - compartment: x - - formula: C16H27N4O8 + - compartment: "x" + - formula: "C16H27N4O8" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lyslyslys_x + - id: "lyslyslys_x" - name: "Lysyl-Lysyl-Lysine" - - compartment: x - - formula: C18H41N6O4 + - compartment: "x" + - formula: "C18H41N6O4" - charge: 3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lyspheile_x + - id: "lyspheile_x" - name: "Lysyl-Phenylalanyl-Isoleucine" - - compartment: x - - formula: C21H35N4O4 + - compartment: "x" + - formula: "C21H35N4O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lystrparg_x + - id: "lystrparg_x" - name: "Lysyl-Tryptophanyl-Arginine" - - compartment: x - - formula: C23H38N8O4 + - compartment: "x" + - formula: "C23H38N8O4" - charge: 2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lystyrile_x + - id: "lystyrile_x" - name: "Lysyl-Tyrosyl-Isoleucine" - - compartment: x - - formula: C21H35N4O5 + - compartment: "x" + - formula: "C21H35N4O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lysvalphe_x + - id: "lysvalphe_x" - name: "Lysyl-Valyl-Phenylalanine" - - compartment: x - - formula: C20H33N4O4 + - compartment: "x" + - formula: "C20H33N4O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lysvaltrp_x + - id: "lysvaltrp_x" - name: "Lysyl-Valyl-Tryptophan" - - compartment: x - - formula: C22H34N5O4 + - compartment: "x" + - formula: "C22H34N5O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: c3dc_x + - id: "c3dc_x" - name: "Malonyl Carnitine" - - compartment: x - - formula: C10H16NO6 + - compartment: "x" + - formula: "C10H16NO6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: malthp_x + - id: "malthp_x" - name: "Maltoheptaose" - - compartment: x - - formula: C42H72O36 + - compartment: "x" + - formula: "C42H72O36" - charge: 0 - - inchis: 1S/C42H72O36/c43-1-8-15(50)16(51)24(59)37(67-8)74-31-10(3-45)69-39(26(61)18(31)53)76-33-12(5-47)71-41(28(63)20(33)55)78-35-14(7-49)72-42(29(64)22(35)57)77-34-13(6-48)70-40(27(62)21(34)56)75-32-11(4-46)68-38(25(60)19(32)54)73-30-9(2-44)66-36(65)23(58)17(30)52/h8-65H,1-7H2/t8-,9-,10-,11-,12-,13-,14-,15-,16+,17-,18-,19-,20-,21-,22-,23-,24-,25-,26-,27-,28-,29-,30-,31-,32-,33-,34-,35-,36?,37-,38-,39-,40-,41-,42-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C42H72O36/c43-1-8-15(50)16(51)24(59)37(67-8)74-31-10(3-45)69-39(26(61)18(31)53)76-33-12(5-47)71-41(28(63)20(33)55)78-35-14(7-49)72-42(29(64)22(35)57)77-34-13(6-48)70-40(27(62)21(34)56)75-32-11(4-46)68-38(25(60)19(32)54)73-30-9(2-44)66-36(65)23(58)17(30)52/h8-65H,1-7H2/t8-,9-,10-,11-,12-,13-,14-,15-,16+,17-,18-,19-,20-,21-,22-,23-,24-,25-,26-,27-,28-,29-,30-,31-,32-,33-,34-,35-,36?,37-,38-,39-,40-,41-,42-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: malthx_x + - id: "malthx_x" - name: "Maltohexaose" - - compartment: x - - formula: C36H62O31 + - compartment: "x" + - formula: "C36H62O31" - charge: 0 - - inchis: 1S/C36H62O31/c37-1-7-13(43)14(44)21(51)32(58-7)64-27-9(3-39)60-34(23(53)16(27)46)66-29-11(5-41)62-36(25(55)18(29)48)67-30-12(6-42)61-35(24(54)19(30)49)65-28-10(4-40)59-33(22(52)17(28)47)63-26-8(2-38)57-31(56)20(50)15(26)45/h7-56H,1-6H2/t7-,8-,9-,10-,11-,12-,13-,14+,15-,16-,17-,18-,19-,20-,21-,22-,23-,24-,25-,26-,27-,28-,29-,30-,31?,32-,33-,34-,35-,36-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C36H62O31/c37-1-7-13(43)14(44)21(51)32(58-7)64-27-9(3-39)60-34(23(53)16(27)46)66-29-11(5-41)62-36(25(55)18(29)48)67-30-12(6-42)61-35(24(54)19(30)49)65-28-10(4-40)59-33(22(52)17(28)47)63-26-8(2-38)57-31(56)20(50)15(26)45/h7-56H,1-6H2/t7-,8-,9-,10-,11-,12-,13-,14+,15-,16-,17-,18-,19-,20-,21-,22-,23-,24-,25-,26-,27-,28-,29-,30-,31?,32-,33-,34-,35-,36-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: maltpt_x + - id: "maltpt_x" - name: "Maltopentaose" - - compartment: x - - formula: C30H52O26 + - compartment: "x" + - formula: "C30H52O26" - charge: 0 - - inchis: 1S/C30H52O26/c31-1-6-11(36)12(37)18(43)27(49-6)54-23-8(3-33)51-29(20(45)14(23)39)56-25-10(5-35)52-30(21(46)16(25)41)55-24-9(4-34)50-28(19(44)15(24)40)53-22-7(2-32)48-26(47)17(42)13(22)38/h6-47H,1-5H2/t6-,7-,8-,9-,10-,11-,12+,13-,14-,15-,16-,17-,18-,19-,20-,21-,22-,23-,24-,25-,26?,27-,28-,29-,30-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C30H52O26/c31-1-6-11(36)12(37)18(43)27(49-6)54-23-8(3-33)51-29(20(45)14(23)39)56-25-10(5-35)52-30(21(46)16(25)41)55-24-9(4-34)50-28(19(44)15(24)40)53-22-7(2-32)48-26(47)17(42)13(22)38/h6-47H,1-5H2/t6-,7-,8-,9-,10-,11-,12+,13-,14-,15-,16-,17-,18-,19-,20-,21-,22-,23-,24-,25-,26?,27-,28-,29-,30-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: maltttr_x + - id: "maltttr_x" - name: "Maltotetraose" - - compartment: x - - formula: C24H42O21 + - compartment: "x" + - formula: "C24H42O21" - charge: 0 - - inchis: 1S/C24H42O21/c25-1-5-9(29)10(30)15(35)22(40-5)44-19-7(3-27)42-24(17(37)12(19)32)45-20-8(4-28)41-23(16(36)13(20)33)43-18-6(2-26)39-21(38)14(34)11(18)31/h5-38H,1-4H2/t5-,6-,7-,8-,9-,10+,11-,12-,13-,14-,15-,16-,17-,18-,19-,20-,21?,22-,23-,24-/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C24H42O21/c25-1-5-9(29)10(30)15(35)22(40-5)44-19-7(3-27)42-24(17(37)12(19)32)45-20-8(4-28)41-23(16(36)13(20)33)43-18-6(2-26)39-21(38)14(34)11(18)31/h5-38H,1-4H2/t5-,6-,7-,8-,9-,10+,11-,12-,13-,14-,15-,16-,17-,18-,19-,20-,21?,22-,23-,24-/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: mqn10_x + - id: "mqn10_x" - name: "Menaquinone-10" - - compartment: x - - formula: C61H88O2 + - compartment: "x" + - formula: "C61H88O2" - charge: 0 - - inchis: 1S/C61H88O2/c1-46(2)24-15-25-47(3)26-16-27-48(4)28-17-29-49(5)30-18-31-50(6)32-19-33-51(7)34-20-35-52(8)36-21-37-53(9)38-22-39-54(10)40-23-41-55(11)44-45-57-56(12)60(62)58-42-13-14-43-59(58)61(57)63/h13-14,24,26,28,30,32,34,36,38,40,42-44H,15-23,25,27,29,31,33,35,37,39,41,45H2,1-12H3 - - metFrom: Recon3D + - inchis: "1S/C61H88O2/c1-46(2)24-15-25-47(3)26-16-27-48(4)28-17-29-49(5)30-18-31-50(6)32-19-33-51(7)34-20-35-52(8)36-21-37-53(9)38-22-39-54(10)40-23-41-55(11)44-45-57-56(12)60(62)58-42-13-14-43-59(58)61(57)63/h13-14,24,26,28,30,32,34,36,38,40,42-44H,15-23,25,27,29,31,33,35,37,39,41,45H2,1-12H3" + - metFrom: "Recon3D" - !!omap - - id: mqn11_x + - id: "mqn11_x" - name: "Menaquinone-11" - - compartment: x - - formula: C66H96O2 + - compartment: "x" + - formula: "C66H96O2" - charge: 0 - - inchis: 1S/C66H96O2/c1-50(2)26-16-27-51(3)28-17-29-52(4)30-18-31-53(5)32-19-33-54(6)34-20-35-55(7)36-21-37-56(8)38-22-39-57(9)40-23-41-58(10)42-24-43-59(11)44-25-45-60(12)48-49-62-61(13)65(67)63-46-14-15-47-64(63)66(62)68/h14-15,26,28,30,32,34,36,38,40,42,44,46-48H,16-25,27,29,31,33,35,37,39,41,43,45,49H2,1-13H3 - - metFrom: Recon3D + - inchis: "1S/C66H96O2/c1-50(2)26-16-27-51(3)28-17-29-52(4)30-18-31-53(5)32-19-33-54(6)34-20-35-55(7)36-21-37-56(8)38-22-39-57(9)40-23-41-58(10)42-24-43-59(11)44-25-45-60(12)48-49-62-61(13)65(67)63-46-14-15-47-64(63)66(62)68/h14-15,26,28,30,32,34,36,38,40,42,44,46-48H,16-25,27,29,31,33,35,37,39,41,43,45,49H2,1-13H3" + - metFrom: "Recon3D" - !!omap - - id: mqn7_x + - id: "mqn7_x" - name: "Menaquinone-7" - - compartment: x - - formula: C46H64O2 + - compartment: "x" + - formula: "C46H64O2" - charge: 0 - - inchis: 1S/C46H64O2/c1-34(2)18-12-19-35(3)20-13-21-36(4)22-14-23-37(5)24-15-25-38(6)26-16-27-39(7)28-17-29-40(8)32-33-42-41(9)45(47)43-30-10-11-31-44(43)46(42)48/h10-11,18,20,22,24,26,28,30-32H,12-17,19,21,23,25,27,29,33H2,1-9H3/b35-20+,36-22+,37-24+,38-26+,39-28+,40-32+ - - metFrom: Recon3D + - inchis: "1S/C46H64O2/c1-34(2)18-12-19-35(3)20-13-21-36(4)22-14-23-37(5)24-15-25-38(6)26-16-27-39(7)28-17-29-40(8)32-33-42-41(9)45(47)43-30-10-11-31-44(43)46(42)48/h10-11,18,20,22,24,26,28,30-32H,12-17,19,21,23,25,27,29,33H2,1-9H3/b35-20+,36-22+,37-24+,38-26+,39-28+,40-32+" + - metFrom: "Recon3D" - !!omap - - id: mqn8_x + - id: "mqn8_x" - name: "Menaquinone-8" - - compartment: x - - formula: C51H72O2 + - compartment: "x" + - formula: "C51H72O2" - charge: 0 - - inchis: 1S/C51H72O2/c1-38(2)20-13-21-39(3)22-14-23-40(4)24-15-25-41(5)26-16-27-42(6)28-17-29-43(7)30-18-31-44(8)32-19-33-45(9)36-37-47-46(10)50(52)48-34-11-12-35-49(48)51(47)53/h11-12,20,22,24,26,28,30,32,34-36H,13-19,21,23,25,27,29,31,33,37H2,1-10H3 - - metFrom: Recon3D + - inchis: "1S/C51H72O2/c1-38(2)20-13-21-39(3)22-14-23-40(4)24-15-25-41(5)26-16-27-42(6)28-17-29-43(7)30-18-31-44(8)32-19-33-45(9)36-37-47-46(10)50(52)48-34-11-12-35-49(48)51(47)53/h11-12,20,22,24,26,28,30,32,34-36H,13-19,21,23,25,27,29,31,33,37H2,1-10H3" + - metFrom: "Recon3D" - !!omap - - id: mqn9_x + - id: "mqn9_x" - name: "Menaquinone-9" - - compartment: x - - formula: C56H80O2 + - compartment: "x" + - formula: "C56H80O2" - charge: 0 - - inchis: 1S/C56H80O2/c1-42(2)22-14-23-43(3)24-15-25-44(4)26-16-27-45(5)28-17-29-46(6)30-18-31-47(7)32-19-33-48(8)34-20-35-49(9)36-21-37-50(10)40-41-52-51(11)55(57)53-38-12-13-39-54(53)56(52)58/h12-13,22,24,26,28,30,32,34,36,38-40H,14-21,23,25,27,29,31,33,35,37,41H2,1-11H3/b43-24+,44-26+,45-28+,46-30+,47-32+,48-34+,49-36+,50-40+ - - metFrom: Recon3D + - inchis: "1S/C56H80O2/c1-42(2)22-14-23-43(3)24-15-25-44(4)26-16-27-45(5)28-17-29-46(6)30-18-31-47(7)32-19-33-48(8)34-20-35-49(9)36-21-37-50(10)40-41-52-51(11)55(57)53-38-12-13-39-54(53)56(52)58/h12-13,22,24,26,28,30,32,34,36,38-40H,14-21,23,25,27,29,31,33,35,37,41H2,1-11H3/b43-24+,44-26+,45-28+,46-30+,47-32+,48-34+,49-36+,50-40+" + - metFrom: "Recon3D" - !!omap - - id: ch4s_x + - id: "ch4s_x" - name: "Methanethiol" - - compartment: x - - formula: CH4S + - compartment: "x" + - formula: "CH4S" - charge: 0 - - inchis: 1S/CH4S/c1-2/h2H,1H3 - - metFrom: Recon3D + - inchis: "1S/CH4S/c1-2/h2H,1H3" + - metFrom: "Recon3D" - !!omap - - id: metargleu_x + - id: "metargleu_x" - name: "Methionyl-Arginyl-Leucine" - - compartment: x - - formula: C17H35N6O4S + - compartment: "x" + - formula: "C17H35N6O4S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: metasntyr_x + - id: "metasntyr_x" - name: "Methionyl-Asparaginyl-Tyrosine" - - compartment: x - - formula: C18H26N4O6S + - compartment: "x" + - formula: "C18H26N4O6S" - charge: 0 - - inchis: 1/C18H26N4O6S/c1-29-7-6-12(19)16(25)21-13(9-15(20)24)17(26)22-14(18(27)28)8-10-2-4-11(23)5-3-10/h2-5,12-14,23H,6-9,19H2,1H3,(H2,20,24)(H,21,25)(H,22,26)(H,27,28)/t12-,13+,14-/s2 - - metFrom: Recon3D + - inchis: "1/C18H26N4O6S/c1-29-7-6-12(19)16(25)21-13(9-15(20)24)17(26)22-14(18(27)28)8-10-2-4-11(23)5-3-10/h2-5,12-14,23H,6-9,19H2,1H3,(H2,20,24)(H,21,25)(H,22,26)(H,27,28)/t12-,13+,14-/s2" + - metFrom: "Recon3D" - !!omap - - id: metglntyr_x + - id: "metglntyr_x" - name: "Methionyl-Glutaminyl-Tyrosine" - - compartment: x - - formula: C19H28N4O6S + - compartment: "x" + - formula: "C19H28N4O6S" - charge: 0 - - inchis: 1S/C19H28N4O6S/c1-30-9-8-13(20)17(26)22-14(6-7-16(21)25)18(27)23-15(19(28)29)10-11-2-4-12(24)5-3-11/h2-5,13-15,24H,6-10,20H2,1H3,(H2,21,25)(H,22,26)(H,23,27)(H,28,29)/t13-,14-,15-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C19H28N4O6S/c1-30-9-8-13(20)17(26)22-14(6-7-16(21)25)18(27)23-15(19(28)29)10-11-2-4-12(24)5-3-11/h2-5,13-15,24H,6-10,20H2,1H3,(H2,21,25)(H,22,26)(H,23,27)(H,28,29)/t13-,14-,15-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: metglyarg_x + - id: "metglyarg_x" - name: "Methionyl-Glycyl-Arginine" - - compartment: x - - formula: C13H27N6O4S + - compartment: "x" + - formula: "C13H27N6O4S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: methislys_x + - id: "methislys_x" - name: "Methionyl-Histidyl-Lysine" - - compartment: x - - formula: C17H31N6O4S + - compartment: "x" + - formula: "C17H31N6O4S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: metmetile_x + - id: "metmetile_x" - name: "Methionyl-Methionyl-Isoleucine" - - compartment: x - - formula: C16H31N3O4S2 + - compartment: "x" + - formula: "C16H31N3O4S2" - charge: 0 - - inchis: 1/C16H31N3O4S2/c1-5-10(2)13(16(22)23)19-15(21)12(7-9-25-4)18-14(20)11(17)6-8-24-3/h10-13H,5-9,17H2,1-4H3,(H,18,20)(H,19,21)(H,22,23)/t10?,11-,12+,13?/s2 - - metFrom: Recon3D + - inchis: "1/C16H31N3O4S2/c1-5-10(2)13(16(22)23)19-15(21)12(7-9-25-4)18-14(20)11(17)6-8-24-3/h10-13H,5-9,17H2,1-4H3,(H,18,20)(H,19,21)(H,22,23)/t10?,11-,12+,13?/s2" + - metFrom: "Recon3D" - !!omap - - id: metphearg_x + - id: "metphearg_x" - name: "Methionyl-Phenylalanyl-Arginine" - - compartment: x - - formula: C20H33N6O4S + - compartment: "x" + - formula: "C20H33N6O4S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: mettrpphe_x + - id: "mettrpphe_x" - name: "Methionyl-Tryptophanyl-Phenylalanine" - - compartment: x - - formula: C25H30N4O4S + - compartment: "x" + - formula: "C25H30N4O4S" - charge: 0 - - inchis: 1/C25H30N4O4S/c1-34-12-11-19(26)23(30)28-21(14-17-15-27-20-10-6-5-9-18(17)20)24(31)29-22(25(32)33)13-16-7-3-2-4-8-16/h2-10,15,19,21-22,27H,11-14,26H2,1H3,(H,28,30)(H,29,31)(H,32,33)/t19-,21+,22-/s2 - - metFrom: Recon3D + - inchis: "1/C25H30N4O4S/c1-34-12-11-19(26)23(30)28-21(14-17-15-27-20-10-6-5-9-18(17)20)24(31)29-22(25(32)33)13-16-7-3-2-4-8-16/h2-10,15,19,21-22,27H,11-14,26H2,1H3,(H,28,30)(H,29,31)(H,32,33)/t19-,21+,22-/s2" + - metFrom: "Recon3D" - !!omap - - id: methsucc_x + - id: "methsucc_x" - name: "Methyl-Succinate" - - compartment: x - - formula: C5H6O4 + - compartment: "x" + - formula: "C5H6O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: mhglz_x + - id: "mhglz_x" - name: "Methyl-hydroxy-gliclazide" - - compartment: x - - formula: C15H20N3O4S + - compartment: "x" + - formula: "C15H20N3O4S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: mvlac_x + - id: "mvlac_x" - name: "Mevalonate-Lactone" - - compartment: x - - formula: C6H10O3 + - compartment: "x" + - formula: "C6H10O3" - charge: 0 - - inchis: 1S/C6H10O3/c1-6(8)2-3-9-5(7)4-6/h8H,2-4H2,1H3/t6-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C6H10O3/c1-6(8)2-3-9-5(7)4-6/h8H,2-4H2,1H3/t6-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: m02482x + - id: "m02482x" - name: "Mg2+" - - compartment: x - - formula: Mg + - compartment: "x" + - formula: "Mg" - charge: 2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: mdz_x + - id: "mdz_x" - name: "Midazolam" - - compartment: x - - formula: C18H13ClFN3 + - compartment: "x" + - formula: "C18H13ClFN3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: mdzglc_x + - id: "mdzglc_x" - name: "Midazolam-glucuronide" - - compartment: x - - formula: C24H21ClFN3O6 + - compartment: "x" + - formula: "C24H21ClFN3O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02497x + - id: "m02497x" - name: "N-(omega)-hydroxyarginine" - - compartment: x - - formula: C6H15N4O3 + - compartment: "x" + - formula: "C6H15N4O3" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: actyr_x + - id: "actyr_x" - name: "N-Acetyl-Tyrosine" - - compartment: x - - formula: C11H12NO4 + - compartment: "x" + - formula: "C11H12NO4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: acleu_L_x + - id: "acleu_L_x" - name: "N-Acetylleucine" - - compartment: x - - formula: C8H14NO3 + - compartment: "x" + - formula: "C8H14NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: nacvanala_x + - id: "nacvanala_x" - name: "N-Acetylvanilalanine" - - compartment: x - - formula: C12H14NO5 + - compartment: "x" + - formula: "C12H14NO5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02530x + - id: "m02530x" - name: "N-acetyl-L-alanine" - - compartment: x - - formula: C5H8NO3 + - compartment: "x" + - formula: "C5H8NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02531x + - id: "m02531x" - name: "N-acetyl-L-asparagine" - - compartment: x - - formula: C6H9N2O4 + - compartment: "x" + - formula: "C6H9N2O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02532x + - id: "m02532x" - name: "N-acetyl-L-aspartate" - - compartment: x - - formula: C6H7NO5 + - compartment: "x" + - formula: "C6H7NO5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02534x + - id: "m02534x" - name: "N-acetyl-L-cysteine" - - compartment: x - - formula: C5H8NO3S + - compartment: "x" + - formula: "C5H8NO3S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02536x + - id: "m02536x" - name: "N-acetyl-L-glutamate" - - compartment: x - - formula: C7H9NO5 + - compartment: "x" + - formula: "C7H9NO5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02550x + - id: "m02550x" - name: "N-acetyl-seryl-aspartate" - - compartment: x - - formula: C9H12N2O7 + - compartment: "x" + - formula: "C9H12N2O7" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02551x + - id: "m02551x" - name: "N-acetyl-seryl-aspartyl-lysyl-proline" - - compartment: x - - formula: C20H32N5O9 + - compartment: "x" + - formula: "C20H32N5O9" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02525x + - id: "m02525x" - name: "N-acetylgalactosamine" - - compartment: x - - formula: C8H15NO6 + - compartment: "x" + - formula: "C8H15NO6" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02540x + - id: "m02540x" - name: "N-acetylmethionine" - - compartment: x - - formula: C7H12NO3S + - compartment: "x" + - formula: "C7H12NO3S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02543x + - id: "m02543x" - name: "N-acetylneuraminate" - - compartment: x - - formula: C11H18NO9 + - compartment: "x" + - formula: "C11H18NO9" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02546x + - id: "m02546x" - name: "N-acetylornithine" - - compartment: x - - formula: C7H14N2O3 + - compartment: "x" + - formula: "C7H14N2O3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02559x + - id: "m02559x" - name: "N-carbamoyl-L-aspartate" - - compartment: x - - formula: C5H6N2O5 + - compartment: "x" + - formula: "C5H6N2O5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: desfvs_x + - id: "desfvs_x" - name: "N-desisopropyl-fluvastatin" - - compartment: x - - formula: C21H19FNNaO4 + - compartment: "x" + - formula: "C21H19FNNaO4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ndersv_x + - id: "ndersv_x" - name: "N-desmethyl-rosuvastatin" - - compartment: x - - formula: C42H48CaF2N6O12S2 + - compartment: "x" + - formula: "C42H48CaF2N6O12S2" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02574x + - id: "m02574x" - name: "N-formimino-L-glutamate" - - compartment: x - - formula: C6H8N2O4 + - compartment: "x" + - formula: "C6H8N2O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02601x + - id: "m02601x" - name: "N-methylhistamine" - - compartment: x - - formula: C6H12N3 + - compartment: "x" + - formula: "C6H12N3" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02603x + - id: "m02603x" - name: "N-methylsalsolinol" - - compartment: x - - formula: C11H16NO2 + - compartment: "x" + - formula: "C11H16NO2" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02503x + - id: "m02503x" - name: "N1-acetylspermidine" - - compartment: x - - formula: C9H23N3O + - compartment: "x" + - formula: "C9H23N3O" - charge: 2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02517x + - id: "m02517x" - name: "N6,N6,N6-trimethyl-L-lysine" - - compartment: x - - formula: C9H20N2O2 + - compartment: "x" + - formula: "C9H20N2O2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02518x + - id: "m02518x" - name: "N8-acetylspermidine" - - compartment: x - - formula: C9H23N3O + - compartment: "x" + - formula: "C9H23N3O" - charge: 2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02553x + - id: "m02553x" - name: "NADH" - - compartment: x - - formula: C21H27N7O14P2 + - compartment: "x" + - formula: "C21H27N7O14P2" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02579x + - id: "m02579x" - name: "NH4+" - - compartment: x - - formula: H4N + - compartment: "x" + - formula: "H4N" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: nfd_x + - id: "nfd_x" - name: "Nifedipine" - - compartment: x - - formula: C17H18N2O6 + - compartment: "x" + - formula: "C17H18N2O6" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: nfdnpy_x + - id: "nfdnpy_x" - name: "Nitropyridine metabolite of nifedipine" - - compartment: x - - formula: C17H16N2O6 + - compartment: "x" + - formula: "C17H16N2O6" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: aracheth_x + - id: "aracheth_x" - name: "O-Arachidonoyl Ethanolamine" - - compartment: x - - formula: C22H38NO2 + - compartment: "x" + - formula: "C22H38NO2" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02634x + - id: "m02634x" - name: "O-acetylcarnitine" - - compartment: x - - formula: C9H17NO4 + - compartment: "x" + - formula: "C9H17NO4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02635x + - id: "m02635x" - name: "O-butanoylcarnitine" - - compartment: x - - formula: C11H21NO4 + - compartment: "x" + - formula: "C11H21NO4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02654x + - id: "m02654x" - name: "O-methylhippurate" - - compartment: x - - formula: C10H10NO3 + - compartment: "x" + - formula: "C10H10NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02657x + - id: "m02657x" - name: "O-propanoylcarnitine" - - compartment: x - - formula: C10H19NO4 + - compartment: "x" + - formula: "C10H19NO4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02633x + - id: "m02633x" - name: "OAA" - - compartment: x - - formula: C4H2O5 + - compartment: "x" + - formula: "C4H2O5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: c81crn_x + - id: "c81crn_x" - name: "Octenoyl Carnitine" - - compartment: x - - formula: C15H27NO4 + - compartment: "x" + - formula: "C15H27NO4" - charge: 0 - - inchis: 1S/C15H27NO4/c1-5-6-7-8-9-10-15(19)20-13(16(2,3)4)11-12-14(17)18/h9-10,13H,5-8,11-12H2,1-4H3/b10-9+/t13-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C15H27NO4/c1-5-6-7-8-9-10-15(19)20-13(16(2,3)4)11-12-14(17)18/h9-10,13H,5-8,11-12H2,1-4H3/b10-9+/t13-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: oleth_x + - id: "oleth_x" - name: "Oleoyl Ethanolamide" - - compartment: x - - formula: C20H39NO2 + - compartment: "x" + - formula: "C20H39NO2" - charge: 0 - - inchis: 1S/C20H39NO2/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-20(23)21-18-19-22/h9-10,22H,2-8,11-19H2,1H3,(H,21,23)/b10-9- - - metFrom: Recon3D + - inchis: "1S/C20H39NO2/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-20(23)21-18-19-22/h9-10,22H,2-8,11-19H2,1H3,(H,21,23)/b10-9-" + - metFrom: "Recon3D" - !!omap - - id: pcresol_x + - id: "pcresol_x" - name: "P-Cresol" - - compartment: x - - formula: C7H7O + - compartment: "x" + - formula: "C7H7O" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pcs_x + - id: "pcs_x" - name: "P-Cresol Sulfate" - - compartment: x - - formula: C7H7O4S + - compartment: "x" + - formula: "C7H7O4S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02684x + - id: "m02684x" - name: "PC-LD pool" - - compartment: x - - formula: C10H18NO8PR2 + - compartment: "x" + - formula: "C10H18NO8PR2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02685x + - id: "m02685x" - name: "PE-LD pool" - - compartment: x - - formula: C7H12NO8PR2 + - compartment: "x" + - formula: "C7H12NO8PR2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02696x + - id: "m02696x" - name: "PEP" - - compartment: x - - formula: C3H2O6P + - compartment: "x" + - formula: "C3H2O6P" - charge: -3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02715x + - id: "m02715x" - name: "PG-CL pool" - - compartment: x - - formula: C8H12O10PR2 + - compartment: "x" + - formula: "C8H12O10PR2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02750x + - id: "m02750x" - name: "PI pool" - - compartment: x - - formula: C11H16O13PR2 + - compartment: "x" + - formula: "C11H16O13PR2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02759x + - id: "m02759x" - name: "PPi" - - compartment: x - - formula: HO7P2 + - compartment: "x" + - formula: "HO7P2" - charge: -3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02806x + - id: "m02806x" - name: "PRPP" - - compartment: x - - formula: C5H8O14P3 + - compartment: "x" + - formula: "C5H8O14P3" - charge: -5 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02808x + - id: "m02808x" - name: "PS-LD pool" - - compartment: x - - formula: C8H11NO10PR2 + - compartment: "x" + - formula: "C8H11NO10PR2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pmeth_x + - id: "pmeth_x" - name: "Palmitoylethanolamide" - - compartment: x - - formula: C18H37NO2 + - compartment: "x" + - formula: "C18H37NO2" - charge: 0 - - inchis: 1S/C18H37NO2/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-18(21)19-16-17-20/h20H,2-17H2,1H3,(H,19,21) - - metFrom: Recon3D + - inchis: "1S/C18H37NO2/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-18(21)19-16-17-20/h20H,2-17H2,1H3,(H,19,21)" + - metFrom: "Recon3D" - !!omap - - id: pect_x + - id: "pect_x" - name: "Pectin" - - compartment: x - - formula: C2535H3509O2535 + - compartment: "x" + - formula: "C2535H3509O2535" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pectindchac_x + - id: "pectindchac_x" - name: "Pectin-Deoxycholic Acid Complex" - - compartment: x - - formula: C2559H3549O2539 + - compartment: "x" + - formula: "C2559H3549O2539" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pectingchol_x + - id: "pectingchol_x" - name: "Pectin-Glycocholate Complex" - - compartment: x - - formula: C2561H3553NO2541 + - compartment: "x" + - formula: "C2561H3553NO2541" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pectintchol_x + - id: "pectintchol_x" - name: "Pectin-Taurocholic Acid Complex" - - compartment: x - - formula: C2561H3555NO2542S + - compartment: "x" + - formula: "C2561H3555NO2542S" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pendecaeth_x + - id: "pendecaeth_x" - name: "Pentadecanoyl Thanolamide (C15:0)" - - compartment: x - - formula: C17H35NO2 + - compartment: "x" + - formula: "C17H35NO2" - charge: 0 - - inchis: 1S/C17H35NO2/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-17(20)18-15-16-19/h19H,2-16H2,1H3,(H,18,20) - - metFrom: Recon3D + - inchis: "1S/C17H35NO2/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-17(20)18-15-16-19/h19H,2-16H2,1H3,(H,18,20)" + - metFrom: "Recon3D" - !!omap - - id: pheacgly_x + - id: "pheacgly_x" - name: "Phenylacetylglycine" - - compartment: x - - formula: C10H10NO3 + - compartment: "x" + - formula: "C10H10NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: phacgly_x + - id: "phacgly_x" - name: "Phenylacetylglycine_phacgly" - - compartment: x - - formula: C10H10NO3 + - compartment: "x" + - formula: "C10H10NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pheasnmet_x + - id: "pheasnmet_x" - name: "Phenylalanyl-Asparaginyl-Methionine" - - compartment: x - - formula: C18H26N4O5S + - compartment: "x" + - formula: "C18H26N4O5S" - charge: 0 - - inchis: 1/C18H26N4O5S/c1-28-8-7-13(18(26)27)21-17(25)14(10-15(20)23)22-16(24)12(19)9-11-5-3-2-4-6-11/h2-6,12-14H,7-10,19H2,1H3,(H2,20,23)(H,21,25)(H,22,24)(H,26,27)/t12-,13-,14+/s2 - - metFrom: Recon3D + - inchis: "1/C18H26N4O5S/c1-28-8-7-13(18(26)27)21-17(25)14(10-15(20)23)22-16(24)12(19)9-11-5-3-2-4-6-11/h2-6,12-14H,7-10,19H2,1H3,(H2,20,23)(H,21,25)(H,22,24)(H,26,27)/t12-,13-,14+/s2" + - metFrom: "Recon3D" - !!omap - - id: pheasp_x + - id: "pheasp_x" - name: "Phenylalanyl-Aspartate" - - compartment: x - - formula: C13H15N2O5 + - compartment: "x" + - formula: "C13H15N2O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pheglnphe_x + - id: "pheglnphe_x" - name: "Phenylalanyl-Glutaminyl-Phenylalanine" - - compartment: x - - formula: C23H28N4O5 + - compartment: "x" + - formula: "C23H28N4O5" - charge: 0 - - inchis: 1/C23H28N4O5/c24-17(13-15-7-3-1-4-8-15)21(29)26-18(11-12-20(25)28)22(30)27-19(23(31)32)14-16-9-5-2-6-10-16/h1-10,17-19H,11-14,24H2,(H2,25,28)(H,26,29)(H,27,30)(H,31,32)/t17-,18+,19-/s2 - - metFrom: Recon3D + - inchis: "1/C23H28N4O5/c24-17(13-15-7-3-1-4-8-15)21(29)26-18(11-12-20(25)28)22(30)27-19(23(31)32)14-16-9-5-2-6-10-16/h1-10,17-19H,11-14,24H2,(H2,25,28)(H,26,29)(H,27,30)(H,31,32)/t17-,18+,19-/s2" + - metFrom: "Recon3D" - !!omap - - id: pheleu_x + - id: "pheleu_x" - name: "Phenylalanyl-Leucine" - - compartment: x - - formula: C15H22N2O3 + - compartment: "x" + - formula: "C15H22N2O3" - charge: 0 - - inchis: 1/C15H22N2O3/c1-10(2)8-13(15(19)20)17-14(18)12(16)9-11-6-4-3-5-7-11/h3-7,10,12-13H,8-9,16H2,1-2H3,(H,17,18)(H,19,20)/t12-,13+/s2 - - metFrom: Recon3D + - inchis: "1/C15H22N2O3/c1-10(2)8-13(15(19)20)17-14(18)12(16)9-11-6-4-3-5-7-11/h3-7,10,12-13H,8-9,16H2,1-2H3,(H,17,18)(H,19,20)/t12-,13+/s2" + - metFrom: "Recon3D" - !!omap - - id: pheleuasp_x + - id: "pheleuasp_x" - name: "Phenylalanyl-Leucyl-Aspartate" - - compartment: x - - formula: C19H26N3O6 + - compartment: "x" + - formula: "C19H26N3O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pheleuhis_x + - id: "pheleuhis_x" - name: "Phenylalanyl-Leucyl-Histidine" - - compartment: x - - formula: C21H29N5O4 + - compartment: "x" + - formula: "C21H29N5O4" - charge: 0 - - inchis: 1S/C21H29N5O4/c1-13(2)8-17(25-19(27)16(22)9-14-6-4-3-5-7-14)20(28)26-18(21(29)30)10-15-11-23-12-24-15/h3-7,11-13,16-18H,8-10,22H2,1-2H3,(H,23,24)(H,25,27)(H,26,28)(H,29,30)/t16-,17-,18-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C21H29N5O4/c1-13(2)8-17(25-19(27)16(22)9-14-6-4-3-5-7-14)20(28)26-18(21(29)30)10-15-11-23-12-24-15/h3-7,11-13,16-18H,8-10,22H2,1-2H3,(H,23,24)(H,25,27)(H,26,28)(H,29,30)/t16-,17-,18-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: phelysala_x + - id: "phelysala_x" - name: "Phenylalanyl-Lysyl-Alanine" - - compartment: x - - formula: C18H29N4O4 + - compartment: "x" + - formula: "C18H29N4O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: phelyspro_x + - id: "phelyspro_x" - name: "Phenylalanyl-Lysyl-Proline" - - compartment: x - - formula: C20H31N4O4 + - compartment: "x" + - formula: "C20H31N4O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: phephe_x + - id: "phephe_x" - name: "Phenylalanyl-Phenylalanine" - - compartment: x - - formula: C18H20N2O3 + - compartment: "x" + - formula: "C18H20N2O3" - charge: 0 - - inchis: 1/C18H20N2O3/c19-15(11-13-7-3-1-4-8-13)17(21)20-16(18(22)23)12-14-9-5-2-6-10-14/h1-10,15-16H,11-12,19H2,(H,20,21)(H,22,23)/t15-,16+/s2 - - metFrom: Recon3D + - inchis: "1/C18H20N2O3/c19-15(11-13-7-3-1-4-8-13)17(21)20-16(18(22)23)12-14-9-5-2-6-10-14/h1-10,15-16H,11-12,19H2,(H,20,21)(H,22,23)/t15-,16+/s2" + - metFrom: "Recon3D" - !!omap - - id: phepheasn_x + - id: "phepheasn_x" - name: "Phenylalanyl-Phenylalaninyl-Asparagine" - - compartment: x - - formula: C22H26N4O5 + - compartment: "x" + - formula: "C22H26N4O5" - charge: 0 - - inchis: 1/C22H26N4O5/c23-16(11-14-7-3-1-4-8-14)20(28)25-17(12-15-9-5-2-6-10-15)21(29)26-18(22(30)31)13-19(24)27/h1-10,16-18H,11-13,23H2,(H2,24,27)(H,25,28)(H,26,29)(H,30,31)/t16-,17+,18-/s2 - - metFrom: Recon3D + - inchis: "1/C22H26N4O5/c23-16(11-14-7-3-1-4-8-14)20(28)25-17(12-15-9-5-2-6-10-15)21(29)26-18(22(30)31)13-19(24)27/h1-10,16-18H,11-13,23H2,(H2,24,27)(H,25,28)(H,26,29)(H,30,31)/t16-,17+,18-/s2" + - metFrom: "Recon3D" - !!omap - - id: phephethr_x + - id: "phephethr_x" - name: "Phenylalanyl-Phenylalaninyl-Threonine" - - compartment: x - - formula: C22H27N3O5 + - compartment: "x" + - formula: "C22H27N3O5" - charge: 0 - - inchis: 1/C22H27N3O5/c1-14(26)19(22(29)30)25-21(28)18(13-16-10-6-3-7-11-16)24-20(27)17(23)12-15-8-4-2-5-9-15/h2-11,14,17-19,26H,12-13,23H2,1H3,(H,24,27)(H,25,28)(H,29,30)/t14-,17-,18+,19-/s2 - - metFrom: Recon3D + - inchis: "1/C22H27N3O5/c1-14(26)19(22(29)30)25-21(28)18(13-16-10-6-3-7-11-16)24-20(27)17(23)12-15-8-4-2-5-9-15/h2-11,14,17-19,26H,12-13,23H2,1H3,(H,24,27)(H,25,28)(H,29,30)/t14-,17-,18+,19-/s2" + - metFrom: "Recon3D" - !!omap - - id: pheproarg_x + - id: "pheproarg_x" - name: "Phenylalanyl-Prolyl-Arginine" - - compartment: x - - formula: C20H31N6O4 + - compartment: "x" + - formula: "C20H31N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: phesertrp_x + - id: "phesertrp_x" - name: "Phenylalanyl-Seryl-Tryptophan" - - compartment: x - - formula: C23H26N4O5 + - compartment: "x" + - formula: "C23H26N4O5" - charge: 0 - - inchis: 1/C23H26N4O5/c24-17(10-14-6-2-1-3-7-14)21(29)27-20(13-28)22(30)26-19(23(31)32)11-15-12-25-18-9-5-4-8-16(15)18/h1-9,12,17,19-20,25,28H,10-11,13,24H2,(H,26,30)(H,27,29)(H,31,32)/t17-,19-,20+/s2 - - metFrom: Recon3D + - inchis: "1/C23H26N4O5/c24-17(10-14-6-2-1-3-7-14)21(29)27-20(13-28)22(30)26-19(23(31)32)11-15-12-25-18-9-5-4-8-16(15)18/h1-9,12,17,19-20,25,28H,10-11,13,24H2,(H,26,30)(H,27,29)(H,31,32)/t17-,19-,20+/s2" + - metFrom: "Recon3D" - !!omap - - id: phethrlys_x + - id: "phethrlys_x" - name: "Phenylalanyl-Threonyl-Lysine" - - compartment: x - - formula: C19H31N4O5 + - compartment: "x" + - formula: "C19H31N4O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: phetrpleu_x + - id: "phetrpleu_x" - name: "Phenylalanyl-Tryptophanyl-Leucine" - - compartment: x - - formula: C26H32N4O4 + - compartment: "x" + - formula: "C26H32N4O4" - charge: 0 - - inchis: 1/C26H32N4O4/c1-16(2)12-23(26(33)34)30-25(32)22(14-18-15-28-21-11-7-6-10-19(18)21)29-24(31)20(27)13-17-8-4-3-5-9-17/h3-11,15-16,20,22-23,28H,12-14,27H2,1-2H3,(H,29,31)(H,30,32)(H,33,34)/t20-,22+,23-/s2 - - metFrom: Recon3D + - inchis: "1/C26H32N4O4/c1-16(2)12-23(26(33)34)30-25(32)22(14-18-15-28-21-11-7-6-10-19(18)21)29-24(31)20(27)13-17-8-4-3-5-9-17/h3-11,15-16,20,22-23,28H,12-14,27H2,1-2H3,(H,29,31)(H,30,32)(H,33,34)/t20-,22+,23-/s2" + - metFrom: "Recon3D" - !!omap - - id: phetyr_x + - id: "phetyr_x" - name: "Phenylalanyl-Tyrosine" - - compartment: x - - formula: C18H20N2O4 + - compartment: "x" + - formula: "C18H20N2O4" - charge: 0 - - inchis: 1/C18H20N2O4/c19-15(10-12-4-2-1-3-5-12)17(22)20-16(18(23)24)11-13-6-8-14(21)9-7-13/h1-9,15-16,21H,10-11,19H2,(H,20,22)(H,23,24)/t15-,16+/s2 - - metFrom: Recon3D + - inchis: "1/C18H20N2O4/c19-15(10-12-4-2-1-3-5-12)17(22)20-16(18(23)24)11-13-6-8-14(21)9-7-13/h1-9,15-16,21H,10-11,19H2,(H,20,22)(H,23,24)/t15-,16+/s2" + - metFrom: "Recon3D" - !!omap - - id: phetyrgln_x + - id: "phetyrgln_x" - name: "Phenylalanyl-Tyrosinyl-Glutamine" - - compartment: x - - formula: C23H28N4O6 + - compartment: "x" + - formula: "C23H28N4O6" - charge: 0 - - inchis: 1/C23H28N4O6/c24-17(12-14-4-2-1-3-5-14)21(30)27-19(13-15-6-8-16(28)9-7-15)22(31)26-18(23(32)33)10-11-20(25)29/h1-9,17-19,28H,10-13,24H2,(H2,25,29)(H,26,31)(H,27,30)(H,32,33)/t17-,18-,19+/s2 - - metFrom: Recon3D + - inchis: "1/C23H28N4O6/c24-17(12-14-4-2-1-3-5-14)21(30)27-19(13-15-6-8-16(28)9-7-15)22(31)26-18(23(32)33)10-11-20(25)29/h1-9,17-19,28H,10-13,24H2,(H2,25,29)(H,26,31)(H,27,30)(H,32,33)/t17-,18-,19+/s2" + - metFrom: "Recon3D" - !!omap - - id: phetyrlys_x + - id: "phetyrlys_x" - name: "Phenylalanyl-Tyrosinyl-Lysine" - - compartment: x - - formula: C24H33N4O5 + - compartment: "x" + - formula: "C24H33N4O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: phlac_x + - id: "phlac_x" - name: "Phenyllactate" - - compartment: x - - formula: C9H9O3 + - compartment: "x" + - formula: "C9H9O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: phyt_x + - id: "phyt_x" - name: "Phytanate" - - compartment: x - - formula: C20H39O2 + - compartment: "x" + - formula: "C20H39O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: proargasp_x + - id: "proargasp_x" - name: "Prolyl-Arginyl-Aspartate" - - compartment: x - - formula: C15H26N6O6 + - compartment: "x" + - formula: "C15H26N6O6" - charge: 0 - - inchis: 1/C15H26N6O6/c16-15(17)19-6-2-4-9(20-12(24)8-3-1-5-18-8)13(25)21-10(14(26)27)7-11(22)23/h8-10,18H,1-7H2,(H,20,24)(H,21,25)(H,22,23)(H,26,27)(H4,16,17,19)/t8?,9-,10+/s2 - - metFrom: Recon3D + - inchis: "1/C15H26N6O6/c16-15(17)19-6-2-4-9(20-12(24)8-3-1-5-18-8)13(25)21-10(14(26)27)7-11(22)23/h8-10,18H,1-7H2,(H,20,24)(H,21,25)(H,22,23)(H,26,27)(H4,16,17,19)/t8?,9-,10+/s2" + - metFrom: "Recon3D" - !!omap - - id: proargcys_x + - id: "proargcys_x" - name: "Prolyl-Arginyl-Cysteine" - - compartment: x - - formula: C14H27N6O4S + - compartment: "x" + - formula: "C14H27N6O4S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: proasncys_x + - id: "proasncys_x" - name: "Prolyl-Asparaginyl-Cysteine" - - compartment: x - - formula: C12H20N4O5S + - compartment: "x" + - formula: "C12H20N4O5S" - charge: 0 - - inchis: 1/C12H20N4O5S/c13-9(17)4-7(11(19)16-8(5-22)12(20)21)15-10(18)6-2-1-3-14-6/h6-8,14,22H,1-5H2,(H2,13,17)(H,15,18)(H,16,19)(H,20,21)/t6?,7-,8+/s2 - - metFrom: Recon3D + - inchis: "1/C12H20N4O5S/c13-9(17)4-7(11(19)16-8(5-22)12(20)21)15-10(18)6-2-1-3-14-6/h6-8,14,22H,1-5H2,(H2,13,17)(H,15,18)(H,16,19)(H,20,21)/t6?,7-,8+/s2" + - metFrom: "Recon3D" - !!omap - - id: procys_x + - id: "procys_x" - name: "Prolyl-Cysteine" - - compartment: x - - formula: C8H14N2O3S + - compartment: "x" + - formula: "C8H14N2O3S" - charge: 0 - - inchis: 1/C8H14N2O3S/c11-7(5-2-1-3-9-5)10-6(4-14)8(12)13/h5-6,9,14H,1-4H2,(H,10,11)(H,12,13)/t5?,6-/s2 - - metFrom: Recon3D + - inchis: "1/C8H14N2O3S/c11-7(5-2-1-3-9-5)10-6(4-14)8(12)13/h5-6,9,14H,1-4H2,(H,10,11)(H,12,13)/t5?,6-/s2" + - metFrom: "Recon3D" - !!omap - - id: proglulys_x + - id: "proglulys_x" - name: "Prolyl-Glutamatsyl-Lysine" - - compartment: x - - formula: C16H28N4O6 + - compartment: "x" + - formula: "C16H28N4O6" - charge: 0 - - inchis: 1/C16H28N4O6/c17-8-2-1-4-12(16(25)26)20-15(24)11(6-7-13(21)22)19-14(23)10-5-3-9-18-10/h10-12,18H,1-9,17H2,(H,19,23)(H,20,24)(H,21,22)(H,25,26)/t10?,11-,12+/s2 - - metFrom: Recon3D + - inchis: "1/C16H28N4O6/c17-8-2-1-4-12(16(25)26)20-15(24)11(6-7-13(21)22)19-14(23)10-5-3-9-18-10/h10-12,18H,1-9,17H2,(H,19,23)(H,20,24)(H,21,22)(H,25,26)/t10?,11-,12+/s2" + - metFrom: "Recon3D" - !!omap - - id: proglnpro_x + - id: "proglnpro_x" - name: "Prolyl-Glutaminyl-Proline" - - compartment: x - - formula: C15H24N4O5 + - compartment: "x" + - formula: "C15H24N4O5" - charge: 0 - - inchis: 1/C15H24N4O5/c16-12(20)6-5-10(18-13(21)9-3-1-7-17-9)14(22)19-8-2-4-11(19)15(23)24/h9-11,17H,1-8H2,(H2,16,20)(H,18,21)(H,23,24)/t9?,10-,11-/s2 - - metFrom: Recon3D + - inchis: "1/C15H24N4O5/c16-12(20)6-5-10(18-13(21)9-3-1-7-17-9)14(22)19-8-2-4-11(19)15(23)24/h9-11,17H,1-8H2,(H2,16,20)(H,18,21)(H,23,24)/t9?,10-,11-/s2" + - metFrom: "Recon3D" - !!omap - - id: prohis_x + - id: "prohis_x" - name: "Prolyl-Histidine" - - compartment: x - - formula: C11H16N4O3 + - compartment: "x" + - formula: "C11H16N4O3" - charge: 0 - - inchis: 1/C11H16N4O3/c16-10(8-2-1-3-13-8)15-9(11(17)18)4-7-5-12-6-14-7/h5-6,8-9,13H,1-4H2,(H,12,14)(H,15,16)(H,17,18)/t8?,9-/s2 - - metFrom: Recon3D + - inchis: "1/C11H16N4O3/c16-10(8-2-1-3-13-8)15-9(11(17)18)4-7-5-12-6-14-7/h5-6,8-9,13H,1-4H2,(H,12,14)(H,15,16)(H,17,18)/t8?,9-/s2" + - metFrom: "Recon3D" - !!omap - - id: prohistyr_x + - id: "prohistyr_x" - name: "Prolyl-Histidyl-Tyrosine" - - compartment: x - - formula: C20H26N5O5 + - compartment: "x" + - formula: "C20H26N5O5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: proleuarg_x + - id: "proleuarg_x" - name: "Prolyl-Leucyl-Arginine" - - compartment: x - - formula: C17H33N6O4 + - compartment: "x" + - formula: "C17H33N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: prolyspro_x + - id: "prolyspro_x" - name: "Prolyl-Lysyl-Proline" - - compartment: x - - formula: C16H29N4O4 + - compartment: "x" + - formula: "C16H29N4O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: prophe_x + - id: "prophe_x" - name: "Prolyl-Phenylalanine" - - compartment: x - - formula: C14H18N2O3 + - compartment: "x" + - formula: "C14H18N2O3" - charge: 1 - - inchis: 1S/C14H18N2O3/c17-13(11-7-4-8-15-11)16-12(14(18)19)9-10-5-2-1-3-6-10/h1-3,5-6,11-12,15H,4,7-9H2,(H,16,17)(H,18,19)/t11-,12-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C14H18N2O3/c17-13(11-7-4-8-15-11)16-12(14(18)19)9-10-5-2-1-3-6-10/h1-3,5-6,11-12,15H,4,7-9H2,(H,16,17)(H,18,19)/t11-,12-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: proproarg_x + - id: "proproarg_x" - name: "Prolyl-Prolyl-Arginine" - - compartment: x - - formula: C16H29N6O4 + - compartment: "x" + - formula: "C16H29N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: propropro_x + - id: "propropro_x" - name: "Prolyl-Prolyl-Proline" - - compartment: x - - formula: C15H23N3O4 + - compartment: "x" + - formula: "C15H23N3O4" - charge: 0 - - inchis: 1/C15H23N3O4/c19-13(10-4-1-7-16-10)17-8-2-5-11(17)14(20)18-9-3-6-12(18)15(21)22/h10-12,16H,1-9H2,(H,21,22)/t10?,11-,12+/s2 - - metFrom: Recon3D + - inchis: "1/C15H23N3O4/c19-13(10-4-1-7-16-10)17-8-2-5-11(17)14(20)18-9-3-6-12(18)15(21)22/h10-12,16H,1-9H2,(H,21,22)/t10?,11-,12+/s2" + - metFrom: "Recon3D" - !!omap - - id: protrplys_x + - id: "protrplys_x" - name: "Prolyl-Tryptophanyl-Lysine" - - compartment: x - - formula: C22H32N5O4 + - compartment: "x" + - formula: "C22H32N5O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: protrpthr_x + - id: "protrpthr_x" - name: "Prolyl-Tryptophanyl-Threonine" - - compartment: x - - formula: C20H26N4O5 + - compartment: "x" + - formula: "C20H26N4O5" - charge: 0 - - inchis: 1S/C20H26N4O5/c1-11(25)17(20(28)29)24-19(27)16(23-18(26)15-7-4-8-21-15)9-12-10-22-14-6-3-2-5-13(12)14/h2-3,5-6,10-11,15-17,21-22,25H,4,7-9H2,1H3,(H,23,26)(H,24,27)(H,28,29)/t11-,15+,16+,17+/m1/s1 - - metFrom: Recon3D + - inchis: "1S/C20H26N4O5/c1-11(25)17(20(28)29)24-19(27)16(23-18(26)15-7-4-8-21-15)9-12-10-22-14-6-3-2-5-13(12)14/h2-3,5-6,10-11,15-17,21-22,25H,4,7-9H2,1H3,(H,23,26)(H,24,27)(H,28,29)/t11-,15+,16+,17+/m1/s1" + - metFrom: "Recon3D" - !!omap - - id: provalgln_x + - id: "provalgln_x" - name: "Prolyl-Valyl-Glutamine" - - compartment: x - - formula: C15H26N4O5 + - compartment: "x" + - formula: "C15H26N4O5" - charge: 0 - - inchis: 1/C15H26N4O5/c1-8(2)12(19-13(21)9-4-3-7-17-9)14(22)18-10(15(23)24)5-6-11(16)20/h8-10,12,17H,3-7H2,1-2H3,(H2,16,20)(H,18,22)(H,19,21)(H,23,24)/t9?,10-,12+/s2 - - metFrom: Recon3D + - inchis: "1/C15H26N4O5/c1-8(2)12(19-13(21)9-4-3-7-17-9)14(22)18-10(15(23)24)5-6-11(16)20/h8-10,12,17H,3-7H2,1-2H3,(H2,16,20)(H,18,22)(H,19,21)(H,23,24)/t9?,10-,12+/s2" + - metFrom: "Recon3D" - !!omap - - id: ppiogly_x + - id: "ppiogly_x" - name: "Propionyl-Glycine" - - compartment: x - - formula: C5H8NO3 + - compartment: "x" + - formula: "C5H8NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: psylchol_x + - id: "psylchol_x" - name: "Psillium-Glycocholic Acid Complex" - - compartment: x - - formula: C9642032H15428743NO8667420 + - compartment: "x" + - formula: "C9642032H15428743NO8667420" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: psyl_x + - id: "psyl_x" - name: "Psyllium" - - compartment: x - - formula: C9642006H15428700O8667414 + - compartment: "x" + - formula: "C9642006H15428700O8667414" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: psyltchol_x + - id: "psyltchol_x" - name: "Psyllium-Taurocholic Acid Complex" - - compartment: x - - formula: C9642032H15428745NO8667421S + - compartment: "x" + - formula: "C9642032H15428745NO8667421S" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: psyltdechol_x + - id: "psyltdechol_x" - name: "Psyllium-Taurodeoxycholic Acid Complex" - - compartment: x - - formula: C9642032H15428744NO8667420S + - compartment: "x" + - formula: "C9642032H15428744NO8667420S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: Rtotal_x + - id: "Rtotal_x" - name: "R Total" - - compartment: x - - formula: CO2R + - compartment: "x" + - formula: "CO2R" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: Rtotal2_x + - id: "Rtotal2_x" - name: "R Total 2 Position" - - compartment: x - - formula: CO2R2 + - compartment: "x" + - formula: "CO2R2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: Rtotal3_x + - id: "Rtotal3_x" - name: "R Total 3 Position" - - compartment: x - - formula: CO2R3 + - compartment: "x" + - formula: "CO2R3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: caribup_R_x + - id: "caribup_R_x" - name: "R-carboxy ibuprofen" - - compartment: x - - formula: C13H14O4 + - compartment: "x" + - formula: "C13H14O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: slfcys_x + - id: "slfcys_x" - name: "S-Sulfo-L-Cysteine" - - compartment: x - - formula: C3H8NO5S2 + - compartment: "x" + - formula: "C3H8NO5S2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02870x + - id: "m02870x" - name: "S-adenosylmethioninamine" - - compartment: x - - formula: C14H24N6O3S + - compartment: "x" + - formula: "C14H24N6O3S" - charge: 2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: caribup_s_x + - id: "caribup_s_x" - name: "S-carboxy ibuprofen" - - compartment: x - - formula: C13H14O4 + - compartment: "x" + - formula: "C13H14O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: caribupglu_S_x + - id: "caribupglu_S_x" - name: "S-carboxy ibuprofen glucuronide" - - compartment: x - - formula: C19H22O10 + - compartment: "x" + - formula: "C19H22O10" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02900x + - id: "m02900x" - name: "S-glutathionyl-2-4-dinitrobenzene" - - compartment: x - - formula: C16H17N5O10S + - compartment: "x" + - formula: "C16H17N5O10S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02901x + - id: "m02901x" - name: "S-glutathionyl-ethacrynic acid" - - compartment: x - - formula: C23H25Cl2N3O9S + - compartment: "x" + - formula: "C23H25Cl2N3O9S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02871x + - id: "m02871x" - name: "SAH" - - compartment: x - - formula: C14H20N6O5S + - compartment: "x" + - formula: "C14H20N6O5S" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02877x + - id: "m02877x" - name: "SAM" - - compartment: x - - formula: C15H23N6O5S + - compartment: "x" + - formula: "C15H23N6O5S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02908x + - id: "m02908x" - name: "SM pool" - - compartment: x - - formula: C23H48N2O5PRCO + - compartment: "x" + - formula: "C23H48N2O5PRCO" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sebacid_x + - id: "sebacid_x" - name: "Sebacicacid" - - compartment: x - - formula: C10H16O4 + - compartment: "x" + - formula: "C10H16O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: c10dc_x + - id: "c10dc_x" - name: "Sebacoyl Carnitine" - - compartment: x - - formula: C17H30NO6 + - compartment: "x" + - formula: "C17H30NO6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: serargala_x + - id: "serargala_x" - name: "Seryl-Arginyl-Alanine" - - compartment: x - - formula: C12H25N6O5 + - compartment: "x" + - formula: "C12H25N6O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: serargtrp_x + - id: "serargtrp_x" - name: "Seryl-Arginyl-Tryptophan" - - compartment: x - - formula: C20H30N7O5 + - compartment: "x" + - formula: "C20H30N7O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sercysarg_x + - id: "sercysarg_x" - name: "Seryl-Cysteinyl-Arginine" - - compartment: x - - formula: C12H25N6O5S + - compartment: "x" + - formula: "C12H25N6O5S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: serglyglu_x + - id: "serglyglu_x" - name: "Seryl-Glycyl-Glutamate" - - compartment: x - - formula: C10H16N3O7 + - compartment: "x" + - formula: "C10H16N3O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: serlyshis_x + - id: "serlyshis_x" - name: "Seryl-Lysyl-Histidine" - - compartment: x - - formula: C15H27N6O5 + - compartment: "x" + - formula: "C15H27N6O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: serphelys_x + - id: "serphelys_x" - name: "Seryl-Phenylalanyl-Lysine" - - compartment: x - - formula: C18H29N4O5 + - compartment: "x" + - formula: "C18H29N4O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sertrphis_x + - id: "sertrphis_x" - name: "Seryl-Tryptophanyl-Histidine" - - compartment: x - - formula: C20H24N6O5 + - compartment: "x" + - formula: "C20H24N6O5" - charge: 0 - - inchis: 1/C20H24N6O5/c21-14(9-27)18(28)25-16(5-11-7-23-15-4-2-1-3-13(11)15)19(29)26-17(20(30)31)6-12-8-22-10-24-12/h1-4,7-8,10,14,16-17,23,27H,5-6,9,21H2,(H,22,24)(H,25,28)(H,26,29)(H,30,31)/t14-,16+,17-/s2 - - metFrom: Recon3D + - inchis: "1/C20H24N6O5/c21-14(9-27)18(28)25-16(5-11-7-23-15-4-2-1-3-13(11)15)19(29)26-17(20(30)31)6-12-8-22-10-24-12/h1-4,7-8,10,14,16-17,23,27H,5-6,9,21H2,(H,22,24)(H,25,28)(H,26,29)(H,30,31)/t14-,16+,17-/s2" + - metFrom: "Recon3D" - !!omap - - id: sphmyln1824_hs_x + - id: "sphmyln1824_hs_x" - name: "Sm (D18:0/24:0), Sphingomyelin" - - compartment: x - - formula: C47H98N2O6P + - compartment: "x" + - formula: "C47H98N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln180241_hs_x + - id: "sphmyln180241_hs_x" - name: "Sm (D18:0/24:1), Sphingomyelin" - - compartment: x - - formula: C47H96N2O6P + - compartment: "x" + - formula: "C47H96N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln1825_hs_x + - id: "sphmyln1825_hs_x" - name: "Sm (D18:0/25:0), Sphingomyelin" - - compartment: x - - formula: C48H100N2O6P + - compartment: "x" + - formula: "C48H100N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln18114_hs_x + - id: "sphmyln18114_hs_x" - name: "Sm (D18:1/14:0), Sphingomyelin" - - compartment: x - - formula: C37H76N2O6P + - compartment: "x" + - formula: "C37H76N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln18115_hs_x + - id: "sphmyln18115_hs_x" - name: "Sm (D18:1/15:0), Sphingomyelin" - - compartment: x - - formula: C38H78N2O6P + - compartment: "x" + - formula: "C38H78N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln18116_hs_x + - id: "sphmyln18116_hs_x" - name: "Sm (D18:1/16:0), Sphingomyelin" - - compartment: x - - formula: C39H80N2O6P + - compartment: "x" + - formula: "C39H80N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln181161_hs_x + - id: "sphmyln181161_hs_x" - name: "Sm (D18:1/16:1), Sphingomyelin" - - compartment: x - - formula: C39H78N2O6P + - compartment: "x" + - formula: "C39H78N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln18117_hs_x + - id: "sphmyln18117_hs_x" - name: "Sm (D18:1/17:0), Sphingomyelin" - - compartment: x - - formula: C40H82N2O6P + - compartment: "x" + - formula: "C40H82N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln18118_hs_x + - id: "sphmyln18118_hs_x" - name: "Sm (D18:1/18:0), Sphingomyelin" - - compartment: x - - formula: C41H84N2O6P + - compartment: "x" + - formula: "C41H84N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln181181_hs_x + - id: "sphmyln181181_hs_x" - name: "Sm (D18:1/18:1), Sphingomyelin" - - compartment: x - - formula: C41H82N2O6P + - compartment: "x" + - formula: "C41H82N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln18120_hs_x + - id: "sphmyln18120_hs_x" - name: "Sm (D18:1/20:0), Sphingomyelin" - - compartment: x - - formula: C43H88N2O6P + - compartment: "x" + - formula: "C43H88N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln181201_hs_x + - id: "sphmyln181201_hs_x" - name: "Sm (D18:1/20:1), Sphingomyelin" - - compartment: x - - formula: C43H86N2O6P + - compartment: "x" + - formula: "C43H86N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln18121_hs_x + - id: "sphmyln18121_hs_x" - name: "Sm (D18:1/21:0), Sphingomyelin" - - compartment: x - - formula: C44H90N2O6P + - compartment: "x" + - formula: "C44H90N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln18122_hs_x + - id: "sphmyln18122_hs_x" - name: "Sm (D18:1/22:0), Sphingomyelin" - - compartment: x - - formula: C45H92N2O6P + - compartment: "x" + - formula: "C45H92N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln181221_hs_x + - id: "sphmyln181221_hs_x" - name: "Sm (D18:1/22:1), Sphingomyelin" - - compartment: x - - formula: C45H90N2O6P + - compartment: "x" + - formula: "C45H90N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sphmyln18123_hs_x + - id: "sphmyln18123_hs_x" - name: "Sm (D18:1/23:0), Sphingomyelin" - - compartment: x - - formula: C46H94N2O6P + - compartment: "x" + - formula: "C46H94N2O6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: steeth_x + - id: "steeth_x" - name: "Stearoyl Ethanolamide" - - compartment: x - - formula: C20H41NO2 + - compartment: "x" + - formula: "C20H41NO2" - charge: 0 - - inchis: 1S/C20H41NO2/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-20(23)21-18-19-22/h22H,2-19H2,1H3,(H,21,23) - - metFrom: Recon3D + - inchis: "1S/C20H41NO2/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-20(23)21-18-19-22/h22H,2-19H2,1H3,(H,21,23)" + - metFrom: "Recon3D" - !!omap - - id: subeac_x + - id: "subeac_x" - name: "Suberic Acid" - - compartment: x - - formula: C8H12O4 + - compartment: "x" + - formula: "C8H12O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: c8dc_x + - id: "c8dc_x" - name: "Suberyl Carnitine" - - compartment: x - - formula: C15H26NO6 + - compartment: "x" + - formula: "C15H26NO6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: subgly_x + - id: "subgly_x" - name: "Suberyl-Glycine" - - compartment: x - - formula: C10H15NO5 + - compartment: "x" + - formula: "C10H15NO5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: c4dc_x + - id: "c4dc_x" - name: "Succinyl Carnitine" - - compartment: x - - formula: C11H18NO6 + - compartment: "x" + - formula: "C11H18NO6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sucaceto_x + - id: "sucaceto_x" - name: "Succinylacetone" - - compartment: x - - formula: C7H9O4 + - compartment: "x" + - formula: "C7H9O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02959x + - id: "m02959x" - name: "TAG-VLDL pool" - - compartment: x - - formula: C6H5O6R3 + - compartment: "x" + - formula: "C6H5O6R3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02956x + - id: "m02956x" - name: "TAG-chylomicron pool" - - compartment: x - - formula: C6H5O6R3 + - compartment: "x" + - formula: "C6H5O6R3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tacr_x + - id: "tacr_x" - name: "Tacrolimus" - - compartment: x - - formula: C44H69NO12 + - compartment: "x" + - formula: "C44H69NO12" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tcdca3s_x + - id: "tcdca3s_x" - name: "Taurochenodeoxycholic acid 3-sulfate" - - compartment: x - - formula: C26H44NO9S2 + - compartment: "x" + - formula: "C26H44NO9S2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tca3s_x + - id: "tca3s_x" - name: "Taurocholic acid 3-sulfate" - - compartment: x - - formula: C26H44NO10S2 + - compartment: "x" + - formula: "C26H44NO10S2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tdca3s_x + - id: "tdca3s_x" - name: "Taurodeoxycholic acid 3-sulfate" - - compartment: x - - formula: C26H43NO9S2 + - compartment: "x" + - formula: "C26H43NO9S2" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: thyochol_x + - id: "thyochol_x" - name: "Taurohyocholic acid; N-(3alpha,6alpha,7alpha-Trihydroxy-5beta-cholan-24-oyl)taurine" - - compartment: x - - formula: C26H44NO7S + - compartment: "x" + - formula: "C26H44NO7S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tudca3s_x + - id: "tudca3s_x" - name: "Tauroursodeoxycholic acid 3-sulfate" - - compartment: x - - formula: C26H44NO9S2 + - compartment: "x" + - formula: "C26H44NO9S2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tetdec2crn_x + - id: "tetdec2crn_x" - name: "Tetradecadienoyl Carnitine" - - compartment: x - - formula: C21H37NO4 + - compartment: "x" + - formula: "C21H37NO4" - charge: 0 - - inchis: 1/C21H37NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-21(25)26-19(17-20(23)24)18-22(2,3)4/h12-15,19H,5-11,16-18H2,1-4H3/b13-12-,15-14+ - - metFrom: Recon3D + - inchis: "1/C21H37NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-21(25)26-19(17-20(23)24)18-22(2,3)4/h12-15,19H,5-11,16-18H2,1-4H3/b13-12-,15-14+" + - metFrom: "Recon3D" - !!omap - - id: tetdece1crn_x + - id: "tetdece1crn_x" - name: "Tetradecenoyl Carnitine" - - compartment: x - - formula: C21H39NO4 + - compartment: "x" + - formula: "C21H39NO4" - charge: 0 - - inchis: 1/C21H39NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-21(25)26-19(17-20(23)24)18-22(2,3)4/h12-13,19H,5-11,14-18H2,1-4H3/b13-12- - - metFrom: Recon3D + - inchis: "1/C21H39NO4/c1-5-6-7-8-9-10-11-12-13-14-15-16-21(25)26-19(17-20(23)24)18-22(2,3)4/h12-13,19H,5-11,14-18H2,1-4H3/b13-12-" + - metFrom: "Recon3D" - !!omap - - id: thrargtyr_x + - id: "thrargtyr_x" - name: "Threonyl-Arginyl-Tyrosine" - - compartment: x - - formula: C19H31N6O6 + - compartment: "x" + - formula: "C19H31N6O6" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: thrasntyr_x + - id: "thrasntyr_x" - name: "Threonyl-Asparaginyl-Tyrosine" - - compartment: x - - formula: C17H24N4O7 + - compartment: "x" + - formula: "C17H24N4O7" - charge: 0 - - inchis: 1/C17H24N4O7/c1-8(22)14(19)16(26)20-11(7-13(18)24)15(25)21-12(17(27)28)6-9-2-4-10(23)5-3-9/h2-5,8,11-12,14,22-23H,6-7,19H2,1H3,(H2,18,24)(H,20,26)(H,21,25)(H,27,28)/t8-,11+,12-,14-/s2 - - metFrom: Recon3D + - inchis: "1/C17H24N4O7/c1-8(22)14(19)16(26)20-11(7-13(18)24)15(25)21-12(17(27)28)6-9-2-4-10(23)5-3-9/h2-5,8,11-12,14,22-23H,6-7,19H2,1H3,(H2,18,24)(H,20,26)(H,21,25)(H,27,28)/t8-,11+,12-,14-/s2" + - metFrom: "Recon3D" - !!omap - - id: thrglnglu_x + - id: "thrglnglu_x" - name: "Threonyl-Glutaminyl-Glutamate" - - compartment: x - - formula: C14H23N4O8 + - compartment: "x" + - formula: "C14H23N4O8" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: thrglntyr_x + - id: "thrglntyr_x" - name: "Threonyl-Glutaminyl-Tyrosine" - - compartment: x - - formula: C18H26N4O7 + - compartment: "x" + - formula: "C18H26N4O7" - charge: 0 - - inchis: 1/C18H26N4O7/c1-9(23)15(20)17(27)21-12(6-7-14(19)25)16(26)22-13(18(28)29)8-10-2-4-11(24)5-3-10/h2-5,9,12-13,15,23-24H,6-8,20H2,1H3,(H2,19,25)(H,21,27)(H,22,26)(H,28,29)/t9-,12+,13-,15-/s2 - - metFrom: Recon3D + - inchis: "1/C18H26N4O7/c1-9(23)15(20)17(27)21-12(6-7-14(19)25)16(26)22-13(18(28)29)8-10-2-4-11(24)5-3-10/h2-5,9,12-13,15,23-24H,6-8,20H2,1H3,(H2,19,25)(H,21,27)(H,22,26)(H,28,29)/t9-,12+,13-,15-/s2" + - metFrom: "Recon3D" - !!omap - - id: thrhishis_x + - id: "thrhishis_x" - name: "Threonyl-Histidinyl-Histidine" - - compartment: x - - formula: C16H23N7O5 + - compartment: "x" + - formula: "C16H23N7O5" - charge: 0 - - inchis: 1/C16H23N7O5/c1-8(24)13(17)15(26)22-11(2-9-4-18-6-20-9)14(25)23-12(16(27)28)3-10-5-19-7-21-10/h4-8,11-13,24H,2-3,17H2,1H3,(H,18,20)(H,19,21)(H,22,26)(H,23,25)(H,27,28)/t8-,11+,12-,13-/s2 - - metFrom: Recon3D + - inchis: "1/C16H23N7O5/c1-8(24)13(17)15(26)22-11(2-9-4-18-6-20-9)14(25)23-12(16(27)28)3-10-5-19-7-21-10/h4-8,11-13,24H,2-3,17H2,1H3,(H,18,20)(H,19,21)(H,22,26)(H,23,25)(H,27,28)/t8-,11+,12-,13-/s2" + - metFrom: "Recon3D" - !!omap - - id: thrilearg_x + - id: "thrilearg_x" - name: "Threonyl-Isoleucyl-Arginine" - - compartment: x - - formula: C16H33N6O5 + - compartment: "x" + - formula: "C16H33N6O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: thrmetarg_x + - id: "thrmetarg_x" - name: "Threonyl-Methionyl-Arginine" - - compartment: x - - formula: C15H31N6O5S + - compartment: "x" + - formula: "C15H31N6O5S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: thrphearg_x + - id: "thrphearg_x" - name: "Threonyl-Phenylalanyl-Arginine" - - compartment: x - - formula: C19H31N6O5 + - compartment: "x" + - formula: "C19H31N6O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: thrserarg_x + - id: "thrserarg_x" - name: "Threonyl-Seryl-Arginine" - - compartment: x - - formula: C13H27N6O6 + - compartment: "x" + - formula: "C13H27N6O6" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: thrthrarg_x + - id: "thrthrarg_x" - name: "Threonyl-Threonyl-Arginine" - - compartment: x - - formula: C14H29N6O6 + - compartment: "x" + - formula: "C14H29N6O6" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: thrtyrmet_x + - id: "thrtyrmet_x" - name: "Threonyl-Tyrosyl-Methionine" - - compartment: x - - formula: C18H27N3O6S + - compartment: "x" + - formula: "C18H27N3O6S" - charge: 0 - - inchis: 1/C18H27N3O6S/c1-10(22)15(19)17(25)21-14(9-11-3-5-12(23)6-4-11)16(24)20-13(18(26)27)7-8-28-2/h3-6,10,13-15,22-23H,7-9,19H2,1-2H3,(H,20,24)(H,21,25)(H,26,27)/t10-,13-,14+,15-/s2 - - metFrom: Recon3D + - inchis: "1/C18H27N3O6S/c1-10(22)15(19)17(25)21-14(9-11-3-5-12(23)6-4-11)16(24)20-13(18(26)27)7-8-28-2/h3-6,10,13-15,22-23H,7-9,19H2,1-2H3,(H,20,24)(H,21,25)(H,26,27)/t10-,13-,14+,15-/s2" + - metFrom: "Recon3D" - !!omap - - id: txb2_x + - id: "txb2_x" - name: "Thromboxane B2" - - compartment: x - - formula: C20H33O6 + - compartment: "x" + - formula: "C20H33O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: c51crn_x + - id: "c51crn_x" - name: "Tiglyl Carnitine" - - compartment: x - - formula: C12H21NO4 + - compartment: "x" + - formula: "C12H21NO4" - charge: 0 - - inchis: 1/C12H21NO4/c1-6-9(2)12(16)17-10(7-11(14)15)8-13(3,4)5/h6,10H,7-8H2,1-5H3/b9-6+ - - metFrom: Recon3D + - inchis: "1/C12H21NO4/c1-6-9(2)12(16)17-10(7-11(14)15)8-13(3,4)5/h6,10H,7-8H2,1-5H3/b9-6+" + - metFrom: "Recon3D" - !!omap - - id: tiggly_x + - id: "tiggly_x" - name: "Tiglyl Glycine" - - compartment: x - - formula: C7H10NO3 + - compartment: "x" + - formula: "C7H10NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tmd_x + - id: "tmd_x" - name: "Torasemide" - - compartment: x - - formula: C16H19N4O3S + - compartment: "x" + - formula: "C16H19N4O3S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tmdm1_x + - id: "tmdm1_x" - name: "Torasemide-M1" - - compartment: x - - formula: C16H19N4O4S + - compartment: "x" + - formula: "C16H19N4O4S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tmdm3_x + - id: "tmdm3_x" - name: "Torasemide-M3" - - compartment: x - - formula: C16H19N4O4S + - compartment: "x" + - formula: "C16H19N4O4S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tmdm5_x + - id: "tmdm5_x" - name: "Torasemide-M5" - - compartment: x - - formula: C16H16N4O5S + - compartment: "x" + - formula: "C16H16N4O5S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: eic21114tr_x + - id: "eic21114tr_x" - name: "Trans,Cis,Cis-2,11,14-Eicosatrienoic Acid" - - compartment: x - - formula: C20H33O2 + - compartment: "x" + - formula: "C20H33O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: hpdece_x + - id: "hpdece_x" - name: "Trans-Delta-2-Heptadecanoic Acid" - - compartment: x - - formula: C17H31O2 + - compartment: "x" + - formula: "C17H31O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: trideceth_x + - id: "trideceth_x" - name: "Tridecanoyl Thanolamide (C13:0)" - - compartment: x - - formula: C15H31NO2 + - compartment: "x" + - formula: "C15H31NO2" - charge: 0 - - inchis: 1S/C15H31NO2/c1-2-3-4-5-6-7-8-9-10-11-12-15(18)16-13-14-17/h17H,2-14H2,1H3,(H,16,18) - - metFrom: Recon3D + - inchis: "1S/C15H31NO2/c1-2-3-4-5-6-7-8-9-10-11-12-15(18)16-13-14-17/h17H,2-14H2,1H3,(H,16,18)" + - metFrom: "Recon3D" - !!omap - - id: trpalapro_x + - id: "trpalapro_x" - name: "Tryptophanyl-Alanyl-Proline" - - compartment: x - - formula: C19H24N4O4 + - compartment: "x" + - formula: "C19H24N4O4" - charge: 0 - - inchis: 1S/C19H24N4O4/c1-11(18(25)23-8-4-7-16(23)19(26)27)22-17(24)14(20)9-12-10-21-15-6-3-2-5-13(12)15/h2-3,5-6,10-11,14,16,21H,4,7-9,20H2,1H3,(H,22,24)(H,26,27)/t11-,14-,16-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C19H24N4O4/c1-11(18(25)23-8-4-7-16(23)19(26)27)22-17(24)14(20)9-12-10-21-15-6-3-2-5-13(12)15/h2-3,5-6,10-11,14,16,21H,4,7-9,20H2,1H3,(H,22,24)(H,26,27)/t11-,14-,16-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: trpargala_x + - id: "trpargala_x" - name: "Tryptophanyl-Arginyl-Alanine" - - compartment: x - - formula: C20H30N7O4 + - compartment: "x" + - formula: "C20H30N7O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: trpaspasp_x + - id: "trpaspasp_x" - name: "Tryptophanyl-Aspartyl-Aspartate" - - compartment: x - - formula: C19H20N4O8 + - compartment: "x" + - formula: "C19H20N4O8" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: trpglngln_x + - id: "trpglngln_x" - name: "Tryptophanyl-Glutaminyl-Glutamine" - - compartment: x - - formula: C21H28N6O6 + - compartment: "x" + - formula: "C21H28N6O6" - charge: 0 - - inchis: 1/C21H28N6O6/c22-13(9-11-10-25-14-4-2-1-3-12(11)14)19(30)26-15(5-7-17(23)28)20(31)27-16(21(32)33)6-8-18(24)29/h1-4,10,13,15-16,25H,5-9,22H2,(H2,23,28)(H2,24,29)(H,26,30)(H,27,31)(H,32,33)/t13-,15+,16-/s2 - - metFrom: Recon3D + - inchis: "1/C21H28N6O6/c22-13(9-11-10-25-14-4-2-1-3-12(11)14)19(30)26-15(5-7-17(23)28)20(31)27-16(21(32)33)6-8-18(24)29/h1-4,10,13,15-16,25H,5-9,22H2,(H2,23,28)(H2,24,29)(H,26,30)(H,27,31)(H,32,33)/t13-,15+,16-/s2" + - metFrom: "Recon3D" - !!omap - - id: trpglugly_x + - id: "trpglugly_x" - name: "Tryptophanyl-Glutamyl-Glycine" - - compartment: x - - formula: C18H21N4O6 + - compartment: "x" + - formula: "C18H21N4O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: trpgluleu_x + - id: "trpgluleu_x" - name: "Tryptophanyl-Glutamyl-Leucine" - - compartment: x - - formula: C22H29N4O6 + - compartment: "x" + - formula: "C22H29N4O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: trpglupro_x + - id: "trpglupro_x" - name: "Tryptophanyl-Glutamyl-Proline" - - compartment: x - - formula: C21H25N4O6 + - compartment: "x" + - formula: "C21H25N4O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: trpglutyr_x + - id: "trpglutyr_x" - name: "Tryptophanyl-Glutamyl-Tyrosine" - - compartment: x - - formula: C25H27N4O7 + - compartment: "x" + - formula: "C25H27N4O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: trpglyasp_x + - id: "trpglyasp_x" - name: "Tryptophanyl-Glycyl-Aspartate" - - compartment: x - - formula: C17H19N4O6 + - compartment: "x" + - formula: "C17H19N4O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: trpglyleu_x + - id: "trpglyleu_x" - name: "Tryptophanyl-Glycyl-Leucine" - - compartment: x - - formula: C19H26N4O4 + - compartment: "x" + - formula: "C19H26N4O4" - charge: 0 - - inchis: 1/C19H26N4O4/c1-11(2)7-16(19(26)27)23-17(24)10-22-18(25)14(20)8-12-9-21-15-6-4-3-5-13(12)15/h3-6,9,11,14,16,21H,7-8,10,20H2,1-2H3,(H,22,25)(H,23,24)(H,26,27)/t14-,16-/s2 - - metFrom: Recon3D + - inchis: "1/C19H26N4O4/c1-11(2)7-16(19(26)27)23-17(24)10-22-18(25)14(20)8-12-9-21-15-6-4-3-5-13(12)15/h3-6,9,11,14,16,21H,7-8,10,20H2,1-2H3,(H,22,25)(H,23,24)(H,26,27)/t14-,16-/s2" + - metFrom: "Recon3D" - !!omap - - id: trpglyphe_x + - id: "trpglyphe_x" - name: "Tryptophanyl-Glycyl-Phenylalanine" - - compartment: x - - formula: C22H24N4O4 + - compartment: "x" + - formula: "C22H24N4O4" - charge: 0 - - inchis: 1/C22H24N4O4/c23-17(11-15-12-24-18-9-5-4-8-16(15)18)21(28)25-13-20(27)26-19(22(29)30)10-14-6-2-1-3-7-14/h1-9,12,17,19,24H,10-11,13,23H2,(H,25,28)(H,26,27)(H,29,30)/t17-,19-/s2 - - metFrom: Recon3D + - inchis: "1/C22H24N4O4/c23-17(11-15-12-24-18-9-5-4-8-16(15)18)21(28)25-13-20(27)26-19(22(29)30)10-14-6-2-1-3-7-14/h1-9,12,17,19,24H,10-11,13,23H2,(H,25,28)(H,26,27)(H,29,30)/t17-,19-/s2" + - metFrom: "Recon3D" - !!omap - - id: trpglyval_x + - id: "trpglyval_x" - name: "Tryptophanyl-Glycyl-Valine" - - compartment: x - - formula: C18H24N4O4 + - compartment: "x" + - formula: "C18H24N4O4" - charge: 0 - - inchis: 1/C18H24N4O4/c1-10(2)16(18(25)26)22-15(23)9-21-17(24)13(19)7-11-8-20-14-6-4-3-5-12(11)14/h3-6,8,10,13,16,20H,7,9,19H2,1-2H3,(H,21,24)(H,22,23)(H,25,26)/t13-,16-/s2 - - metFrom: Recon3D + - inchis: "1/C18H24N4O4/c1-10(2)16(18(25)26)22-15(23)9-21-17(24)13(19)7-11-8-20-14-6-4-3-5-12(11)14/h3-6,8,10,13,16,20H,7,9,19H2,1-2H3,(H,21,24)(H,22,23)(H,25,26)/t13-,16-/s2" + - metFrom: "Recon3D" - !!omap - - id: trphismet_x + - id: "trphismet_x" - name: "Tryptophanyl-Histidyl-Methionine" - - compartment: x - - formula: C22H28N6O4S + - compartment: "x" + - formula: "C22H28N6O4S" - charge: 0 - - inchis: 1/C22H28N6O4S/c1-33-7-6-18(22(31)32)27-21(30)19(9-14-11-24-12-26-14)28-20(29)16(23)8-13-10-25-17-5-3-2-4-15(13)17/h2-5,10-12,16,18-19,25H,6-9,23H2,1H3,(H,24,26)(H,27,30)(H,28,29)(H,31,32)/t16-,18-,19+/s2 - - metFrom: Recon3D + - inchis: "1/C22H28N6O4S/c1-33-7-6-18(22(31)32)27-21(30)19(9-14-11-24-12-26-14)28-20(29)16(23)8-13-10-25-17-5-3-2-4-15(13)17/h2-5,10-12,16,18-19,25H,6-9,23H2,1H3,(H,24,26)(H,27,30)(H,28,29)(H,31,32)/t16-,18-,19+/s2" + - metFrom: "Recon3D" - !!omap - - id: trpilelys_x + - id: "trpilelys_x" - name: "Tryptophanyl-Isoleucyl-Lysine" - - compartment: x - - formula: C23H36N5O4 + - compartment: "x" + - formula: "C23H36N5O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: trpiletrp_x + - id: "trpiletrp_x" - name: "Tryptophanyl-Isoleucyl-Tryptophan" - - compartment: x - - formula: C28H33N5O4 + - compartment: "x" + - formula: "C28H33N5O4" - charge: 0 - - inchis: 1S/C28H33N5O4/c1-3-16(2)25(33-26(34)21(29)12-17-14-30-22-10-6-4-8-19(17)22)27(35)32-24(28(36)37)13-18-15-31-23-11-7-5-9-20(18)23/h4-11,14-16,21,24-25,30-31H,3,12-13,29H2,1-2H3,(H,32,35)(H,33,34)(H,36,37)/t16-,21-,24-,25-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C28H33N5O4/c1-3-16(2)25(33-26(34)21(29)12-17-14-30-22-10-6-4-8-19(17)22)27(35)32-24(28(36)37)13-18-15-31-23-11-7-5-9-20(18)23/h4-11,14-16,21,24-25,30-31H,3,12-13,29H2,1-2H3,(H,32,35)(H,33,34)(H,36,37)/t16-,21-,24-,25-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: trpleuval_x + - id: "trpleuval_x" - name: "Tryptophanyl-Leucyl-Valine" - - compartment: x - - formula: C22H32N4O4 + - compartment: "x" + - formula: "C22H32N4O4" - charge: 0 - - inchis: 1/C22H32N4O4/c1-12(2)9-18(21(28)26-19(13(3)4)22(29)30)25-20(27)16(23)10-14-11-24-17-8-6-5-7-15(14)17/h5-8,11-13,16,18-19,24H,9-10,23H2,1-4H3,(H,25,27)(H,26,28)(H,29,30)/t16-,18+,19-/s2 - - metFrom: Recon3D + - inchis: "1/C22H32N4O4/c1-12(2)9-18(21(28)26-19(13(3)4)22(29)30)25-20(27)16(23)10-14-11-24-17-8-6-5-7-15(14)17/h5-8,11-13,16,18-19,24H,9-10,23H2,1-4H3,(H,25,27)(H,26,28)(H,29,30)/t16-,18+,19-/s2" + - metFrom: "Recon3D" - !!omap - - id: trplys_x + - id: "trplys_x" - name: "Tryptophanyl-Lysine" - - compartment: x - - formula: C17H25N4O3 + - compartment: "x" + - formula: "C17H25N4O3" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: trpmetarg_x + - id: "trpmetarg_x" - name: "Tryptophanyl-Methionyl-Arginine" - - compartment: x - - formula: C22H34N7O4S + - compartment: "x" + - formula: "C22H34N7O4S" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: trpmetval_x + - id: "trpmetval_x" - name: "Tryptophanyl-Methionyl-Valine" - - compartment: x - - formula: C21H30N4O4S + - compartment: "x" + - formula: "C21H30N4O4S" - charge: 0 - - inchis: 1/C21H30N4O4S/c1-12(2)18(21(28)29)25-20(27)17(8-9-30-3)24-19(26)15(22)10-13-11-23-16-7-5-4-6-14(13)16/h4-7,11-12,15,17-18,23H,8-10,22H2,1-3H3,(H,24,26)(H,25,27)(H,28,29)/t15-,17+,18-/s2 - - metFrom: Recon3D + - inchis: "1/C21H30N4O4S/c1-12(2)18(21(28)29)25-20(27)17(8-9-30-3)24-19(26)15(22)10-13-11-23-16-7-5-4-6-14(13)16/h4-7,11-12,15,17-18,23H,8-10,22H2,1-3H3,(H,24,26)(H,25,27)(H,28,29)/t15-,17+,18-/s2" + - metFrom: "Recon3D" - !!omap - - id: trpphe_x + - id: "trpphe_x" - name: "Tryptophanyl-Phenylalanine" - - compartment: x - - formula: C20H21N3O3 + - compartment: "x" + - formula: "C20H21N3O3" - charge: 0 - - inchis: 1/C20H21N3O3/c21-16(11-14-12-22-17-9-5-4-8-15(14)17)19(24)23-18(20(25)26)10-13-6-2-1-3-7-13/h1-9,12,16,18,22H,10-11,21H2,(H,23,24)(H,25,26)/t16-,18+/s2 - - metFrom: Recon3D + - inchis: "1/C20H21N3O3/c21-16(11-14-12-22-17-9-5-4-8-15(14)17)19(24)23-18(20(25)26)10-13-6-2-1-3-7-13/h1-9,12,16,18,22H,10-11,21H2,(H,23,24)(H,25,26)/t16-,18+/s2" + - metFrom: "Recon3D" - !!omap - - id: trpprogly_x + - id: "trpprogly_x" - name: "Tryptophanyl-Prolyl-Glycine" - - compartment: x - - formula: C18H21N4O4 + - compartment: "x" + - formula: "C18H21N4O4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: trpproleu_x + - id: "trpproleu_x" - name: "Tryptophanyl-Prolyl-Leucine" - - compartment: x - - formula: C22H30N4O4 + - compartment: "x" + - formula: "C22H30N4O4" - charge: 0 - - inchis: 1/C22H30N4O4/c1-13(2)10-18(22(29)30)25-20(27)19-8-5-9-26(19)21(28)16(23)11-14-12-24-17-7-4-3-6-15(14)17/h3-4,6-7,12-13,16,18-19,24H,5,8-11,23H2,1-2H3,(H,25,27)(H,29,30)/t16-,18-,19-/s2 - - metFrom: Recon3D + - inchis: "1/C22H30N4O4/c1-13(2)10-18(22(29)30)25-20(27)19-8-5-9-26(19)21(28)16(23)11-14-12-24-17-7-4-3-6-15(14)17/h3-4,6-7,12-13,16,18-19,24H,5,8-11,23H2,1-2H3,(H,25,27)(H,29,30)/t16-,18-,19-/s2" + - metFrom: "Recon3D" - !!omap - - id: trpproval_x + - id: "trpproval_x" - name: "Tryptophanyl-Prolyl-Valine" - - compartment: x - - formula: C21H28N4O4 + - compartment: "x" + - formula: "C21H28N4O4" - charge: 0 - - inchis: 1/C21H28N4O4/c1-12(2)18(21(28)29)24-19(26)17-8-5-9-25(17)20(27)15(22)10-13-11-23-16-7-4-3-6-14(13)16/h3-4,6-7,11-12,15,17-18,23H,5,8-10,22H2,1-2H3,(H,24,26)(H,28,29)/t15-,17-,18-/s2 - - metFrom: Recon3D + - inchis: "1/C21H28N4O4/c1-12(2)18(21(28)29)24-19(26)17-8-5-9-25(17)20(27)15(22)10-13-11-23-16-7-4-3-6-14(13)16/h3-4,6-7,11-12,15,17-18,23H,5,8-10,22H2,1-2H3,(H,24,26)(H,28,29)/t15-,17-,18-/s2" + - metFrom: "Recon3D" - !!omap - - id: trpsertyr_x + - id: "trpsertyr_x" - name: "Tryptophanyl-Seryl-Tyrosine" - - compartment: x - - formula: C23H26N4O6 + - compartment: "x" + - formula: "C23H26N4O6" - charge: 0 - - inchis: 1/C23H26N4O6/c24-17(10-14-11-25-18-4-2-1-3-16(14)18)21(30)27-20(12-28)22(31)26-19(23(32)33)9-13-5-7-15(29)8-6-13/h1-8,11,17,19-20,25,28-29H,9-10,12,24H2,(H,26,31)(H,27,30)(H,32,33)/t17-,19-,20+/s2 - - metFrom: Recon3D + - inchis: "1/C23H26N4O6/c24-17(10-14-11-25-18-4-2-1-3-16(14)18)21(30)27-20(12-28)22(31)26-19(23(32)33)9-13-5-7-15(29)8-6-13/h1-8,11,17,19-20,25,28-29H,9-10,12,24H2,(H,26,31)(H,27,30)(H,32,33)/t17-,19-,20+/s2" + - metFrom: "Recon3D" - !!omap - - id: trpthrglu_x + - id: "trpthrglu_x" - name: "Tryptophanyl-Threonyl-Glutamate" - - compartment: x - - formula: C20H25N4O7 + - compartment: "x" + - formula: "C20H25N4O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: trpthrile_x + - id: "trpthrile_x" - name: "Tryptophanyl-Threonyl-Isoleucine" - - compartment: x - - formula: C21H30N4O5 + - compartment: "x" + - formula: "C21H30N4O5" - charge: 0 - - inchis: 1/C21H30N4O5/c1-4-11(2)17(21(29)30)24-20(28)18(12(3)26)25-19(27)15(22)9-13-10-23-16-8-6-5-7-14(13)16/h5-8,10-12,15,17-18,23,26H,4,9,22H2,1-3H3,(H,24,28)(H,25,27)(H,29,30)/t11?,12-,15-,17-,18+/s2 - - metFrom: Recon3D + - inchis: "1/C21H30N4O5/c1-4-11(2)17(21(29)30)24-20(28)18(12(3)26)25-19(27)15(22)9-13-10-23-16-8-6-5-7-14(13)16/h5-8,10-12,15,17-18,23,26H,4,9,22H2,1-3H3,(H,24,28)(H,25,27)(H,29,30)/t11?,12-,15-,17-,18+/s2" + - metFrom: "Recon3D" - !!omap - - id: trpthrtyr_x + - id: "trpthrtyr_x" - name: "Tryptophanyl-Threonyl-Tyrosine" - - compartment: x - - formula: C24H28N4O6 + - compartment: "x" + - formula: "C24H28N4O6" - charge: 0 - - inchis: 1/C24H28N4O6/c1-13(29)21(23(32)27-20(24(33)34)10-14-6-8-16(30)9-7-14)28-22(31)18(25)11-15-12-26-19-5-3-2-4-17(15)19/h2-9,12-13,18,20-21,26,29-30H,10-11,25H2,1H3,(H,27,32)(H,28,31)(H,33,34)/t13-,18-,20-,21+/s2 - - metFrom: Recon3D + - inchis: "1/C24H28N4O6/c1-13(29)21(23(32)27-20(24(33)34)10-14-6-8-16(30)9-7-14)28-22(31)18(25)11-15-12-26-19-5-3-2-4-17(15)19/h2-9,12-13,18,20-21,26,29-30H,10-11,25H2,1H3,(H,27,32)(H,28,31)(H,33,34)/t13-,18-,20-,21+/s2" + - metFrom: "Recon3D" - !!omap - - id: trptyrgln_x + - id: "trptyrgln_x" - name: "Tryptophanyl-Tyrosyl-Glutamine" - - compartment: x - - formula: C25H29N5O6 + - compartment: "x" + - formula: "C25H29N5O6" - charge: 0 - - inchis: 1S/C25H29N5O6/c26-18(12-15-13-28-19-4-2-1-3-17(15)19)23(33)30-21(11-14-5-7-16(31)8-6-14)24(34)29-20(25(35)36)9-10-22(27)32/h1-8,13,18,20-21,28,31H,9-12,26H2,(H2,27,32)(H,29,34)(H,30,33)(H,35,36)/t18-,20-,21-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C25H29N5O6/c26-18(12-15-13-28-19-4-2-1-3-17(15)19)23(33)30-21(11-14-5-7-16(31)8-6-14)24(34)29-20(25(35)36)9-10-22(27)32/h1-8,13,18,20-21,28,31H,9-12,26H2,(H2,27,32)(H,29,34)(H,30,33)(H,35,36)/t18-,20-,21-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: trptyrtyr_x + - id: "trptyrtyr_x" - name: "Tryptophanyl-Tyrosyl-Tyrosine" - - compartment: x - - formula: C29H30N4O6 + - compartment: "x" + - formula: "C29H30N4O6" - charge: 0 - - inchis: 1/C29H30N4O6/c30-23(15-19-16-31-24-4-2-1-3-22(19)24)27(36)32-25(13-17-5-9-20(34)10-6-17)28(37)33-26(29(38)39)14-18-7-11-21(35)12-8-18/h1-12,16,23,25-26,31,34-35H,13-15,30H2,(H,32,36)(H,33,37)(H,38,39)/t23-,25+,26-/s2 - - metFrom: Recon3D + - inchis: "1/C29H30N4O6/c30-23(15-19-16-31-24-4-2-1-3-22(19)24)27(36)32-25(13-17-5-9-20(34)10-6-17)28(37)33-26(29(38)39)14-18-7-11-21(35)12-8-18/h1-12,16,23,25-26,31,34-35H,13-15,30H2,(H,32,36)(H,33,37)(H,38,39)/t23-,25+,26-/s2" + - metFrom: "Recon3D" - !!omap - - id: trpvalasp_x + - id: "trpvalasp_x" - name: "Tryptophanyl-Valyl-Aspartate" - - compartment: x - - formula: C20H25N4O6 + - compartment: "x" + - formula: "C20H25N4O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: Tyr_ggn_x + - id: "Tyr_ggn_x" - name: "Tyr-194 Of Apo-Glycogenin Protein (Primer For Glycogen Synthesis)" - - compartment: x - - formula: C1779H2725N455O528S14 + - compartment: "x" + - formula: "C1779H2725N455O528S14" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tyrala_x + - id: "tyrala_x" - name: "Tyrosyl-Alanine" - - compartment: x - - formula: C12H16N2O4 + - compartment: "x" + - formula: "C12H16N2O4" - charge: 0 - - inchis: 1/C12H16N2O4/c1-7(12(17)18)14-11(16)10(13)6-8-2-4-9(15)5-3-8/h2-5,7,10,15H,6,13H2,1H3,(H,14,16)(H,17,18)/t7-,10+/s2 - - metFrom: Recon3D + - inchis: "1/C12H16N2O4/c1-7(12(17)18)14-11(16)10(13)6-8-2-4-9(15)5-3-8/h2-5,7,10,15H,6,13H2,1H3,(H,14,16)(H,17,18)/t7-,10+/s2" + - metFrom: "Recon3D" - !!omap - - id: tyralaphe_x + - id: "tyralaphe_x" - name: "Tyrosyl-Alaninyl-Phenylalanine" - - compartment: x - - formula: C21H25N3O5 + - compartment: "x" + - formula: "C21H25N3O5" - charge: 0 - - inchis: 1/C21H25N3O5/c1-13(23-20(27)17(22)11-15-7-9-16(25)10-8-15)19(26)24-18(21(28)29)12-14-5-3-2-4-6-14/h2-10,13,17-18,25H,11-12,22H2,1H3,(H,23,27)(H,24,26)(H,28,29)/t13-,17+,18+/s2 - - metFrom: Recon3D + - inchis: "1/C21H25N3O5/c1-13(23-20(27)17(22)11-15-7-9-16(25)10-8-15)19(26)24-18(21(28)29)12-14-5-3-2-4-6-14/h2-10,13,17-18,25H,11-12,22H2,1H3,(H,23,27)(H,24,26)(H,28,29)/t13-,17+,18+/s2" + - metFrom: "Recon3D" - !!omap - - id: tyrargglu_x + - id: "tyrargglu_x" - name: "Tyrosyl-Arginyl-Glutamate" - - compartment: x - - formula: C20H30N6O7 + - compartment: "x" + - formula: "C20H30N6O7" - charge: 0 - - inchis: 1/C20H30N6O7/c21-13(10-11-3-5-12(27)6-4-11)17(30)25-14(2-1-9-24-20(22)23)18(31)26-15(19(32)33)7-8-16(28)29/h3-6,13-15,27H,1-2,7-10,21H2,(H,25,30)(H,26,31)(H,28,29)(H,32,33)(H4,22,23,24)/t13-,14+,15-/s2 - - metFrom: Recon3D + - inchis: "1/C20H30N6O7/c21-13(10-11-3-5-12(27)6-4-11)17(30)25-14(2-1-9-24-20(22)23)18(31)26-15(19(32)33)7-8-16(28)29/h3-6,13-15,27H,1-2,7-10,21H2,(H,25,30)(H,26,31)(H,28,29)(H,32,33)(H4,22,23,24)/t13-,14+,15-/s2" + - metFrom: "Recon3D" - !!omap - - id: tyrargser_x + - id: "tyrargser_x" - name: "Tyrosyl-Arginyl-Serine" - - compartment: x - - formula: C18H29N6O6 + - compartment: "x" + - formula: "C18H29N6O6" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tyrasparg_x + - id: "tyrasparg_x" - name: "Tyrosyl-Aspartyl-Arginine" - - compartment: x - - formula: C19H28N6O7 + - compartment: "x" + - formula: "C19H28N6O7" - charge: 0 - - inchis: 1/C19H28N6O7/c20-12(8-10-3-5-11(26)6-4-10)16(29)25-14(9-15(27)28)17(30)24-13(18(31)32)2-1-7-23-19(21)22/h3-6,12-14,26H,1-2,7-9,20H2,(H,24,30)(H,25,29)(H,27,28)(H,31,32)(H4,21,22,23)/t12-,13-,14+/s2 - - metFrom: Recon3D + - inchis: "1/C19H28N6O7/c20-12(8-10-3-5-11(26)6-4-10)16(29)25-14(9-15(27)28)17(30)24-13(18(31)32)2-1-7-23-19(21)22/h3-6,12-14,26H,1-2,7-9,20H2,(H,24,30)(H,25,29)(H,27,28)(H,31,32)(H4,21,22,23)/t12-,13-,14+/s2" + - metFrom: "Recon3D" - !!omap - - id: tyrcysgly_x + - id: "tyrcysgly_x" - name: "Tyrosyl-Cysteinyl-Glycine" - - compartment: x - - formula: C14H19N3O5S + - compartment: "x" + - formula: "C14H19N3O5S" - charge: 0 - - inchis: 1/C14H19N3O5S/c15-10(5-8-1-3-9(18)4-2-8)13(21)17-11(7-23)14(22)16-6-12(19)20/h1-4,10-11,18,23H,5-7,15H2,(H,16,22)(H,17,21)(H,19,20)/t10-,11+/s2 - - metFrom: Recon3D + - inchis: "1/C14H19N3O5S/c15-10(5-8-1-3-9(18)4-2-8)13(21)17-11(7-23)14(22)16-6-12(19)20/h1-4,10-11,18,23H,5-7,15H2,(H,16,22)(H,17,21)(H,19,20)/t10-,11+/s2" + - metFrom: "Recon3D" - !!omap - - id: tyrcysthr_x + - id: "tyrcysthr_x" - name: "Tyrosyl-Cysteinyl-Threonine" - - compartment: x - - formula: C16H23N3O6S + - compartment: "x" + - formula: "C16H23N3O6S" - charge: 0 - - inchis: 1/C16H23N3O6S/c1-8(20)13(16(24)25)19-15(23)12(7-26)18-14(22)11(17)6-9-2-4-10(21)5-3-9/h2-5,8,11-13,20-21,26H,6-7,17H2,1H3,(H,18,22)(H,19,23)(H,24,25)/t8-,11-,12+,13-/s2 - - metFrom: Recon3D + - inchis: "1/C16H23N3O6S/c1-8(20)13(16(24)25)19-15(23)12(7-26)18-14(22)11(17)6-9-2-4-10(21)5-3-9/h2-5,8,11-13,20-21,26H,6-7,17H2,1H3,(H,18,22)(H,19,23)(H,24,25)/t8-,11-,12+,13-/s2" + - metFrom: "Recon3D" - !!omap - - id: tyrglu_x + - id: "tyrglu_x" - name: "Tyrosyl-Glutamate" - - compartment: x - - formula: C14H17N2O6 + - compartment: "x" + - formula: "C14H17N2O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tyrleuarg_x + - id: "tyrleuarg_x" - name: "Tyrosyl-Leucyl-Arginine" - - compartment: x - - formula: C21H35N6O5 + - compartment: "x" + - formula: "C21H35N6O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tyrphetyr_x + - id: "tyrphetyr_x" - name: "Tyrosyl-Phenylalanyl-Tyrosine" - - compartment: x - - formula: C27H29N3O6 + - compartment: "x" + - formula: "C27H29N3O6" - charge: 0 - - inchis: 1/C27H29N3O6/c28-22(14-18-6-10-20(31)11-7-18)25(33)29-23(15-17-4-2-1-3-5-17)26(34)30-24(27(35)36)16-19-8-12-21(32)13-9-19/h1-13,22-24,31-32H,14-16,28H2,(H,29,33)(H,30,34)(H,35,36)/t22-,23+,24-/s2 - - metFrom: Recon3D + - inchis: "1/C27H29N3O6/c28-22(14-18-6-10-20(31)11-7-18)25(33)29-23(15-17-4-2-1-3-5-17)26(34)30-24(27(35)36)16-19-8-12-21(32)13-9-19/h1-13,22-24,31-32H,14-16,28H2,(H,29,33)(H,30,34)(H,35,36)/t22-,23+,24-/s2" + - metFrom: "Recon3D" - !!omap - - id: tyrthr_x + - id: "tyrthr_x" - name: "Tyrosyl-Threonine" - - compartment: x - - formula: C13H18N2O5 + - compartment: "x" + - formula: "C13H18N2O5" - charge: 0 - - inchis: 1/C13H18N2O5/c1-7(16)11(13(19)20)15-12(18)10(14)6-8-2-4-9(17)5-3-8/h2-5,7,10-11,16-17H,6,14H2,1H3,(H,15,18)(H,19,20)/t7-,10-,11+/s2 - - metFrom: Recon3D + - inchis: "1/C13H18N2O5/c1-7(16)11(13(19)20)15-12(18)10(14)6-8-2-4-9(17)5-3-8/h2-5,7,10-11,16-17H,6,14H2,1H3,(H,15,18)(H,19,20)/t7-,10-,11+/s2" + - metFrom: "Recon3D" - !!omap - - id: tyrtrpphe_x + - id: "tyrtrpphe_x" - name: "Tyrosyl-Tryptophanyl-Phenylalanine" - - compartment: x - - formula: C29H30N4O5 + - compartment: "x" + - formula: "C29H30N4O5" - charge: 0 - - inchis: 1S/C29H30N4O5/c30-23(14-19-10-12-21(34)13-11-19)27(35)32-25(16-20-17-31-24-9-5-4-8-22(20)24)28(36)33-26(29(37)38)15-18-6-2-1-3-7-18/h1-13,17,23,25-26,31,34H,14-16,30H2,(H,32,35)(H,33,36)(H,37,38)/t23-,25-,26-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C29H30N4O5/c30-23(14-19-10-12-21(34)13-11-19)27(35)32-25(16-20-17-31-24-9-5-4-8-22(20)24)28(36)33-26(29(37)38)15-18-6-2-1-3-7-18/h1-13,17,23,25-26,31,34H,14-16,30H2,(H,32,35)(H,33,36)(H,37,38)/t23-,25-,26-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: tyrtyr_x + - id: "tyrtyr_x" - name: "Tyrosyl-Tyrosine" - - compartment: x - - formula: C18H20N2O5 + - compartment: "x" + - formula: "C18H20N2O5" - charge: 0 - - inchis: 1/C18H20N2O5/c19-15(9-11-1-5-13(21)6-2-11)17(23)20-16(18(24)25)10-12-3-7-14(22)8-4-12/h1-8,15-16,21-22H,9-10,19H2,(H,20,23)(H,24,25)/t15-,16+/s2 - - metFrom: Recon3D + - inchis: "1/C18H20N2O5/c19-15(9-11-1-5-13(21)6-2-11)17(23)20-16(18(24)25)10-12-3-7-14(22)8-4-12/h1-8,15-16,21-22H,9-10,19H2,(H,20,23)(H,24,25)/t15-,16+/s2" + - metFrom: "Recon3D" - !!omap - - id: tyrvalmet_x + - id: "tyrvalmet_x" - name: "Tyrosyl-Valyl-Methionine" - - compartment: x - - formula: C19H29N3O5S + - compartment: "x" + - formula: "C19H29N3O5S" - charge: 0 - - inchis: 1/C19H29N3O5S/c1-11(2)16(18(25)21-15(19(26)27)8-9-28-3)22-17(24)14(20)10-12-4-6-13(23)7-5-12/h4-7,11,14-16,23H,8-10,20H2,1-3H3,(H,21,25)(H,22,24)(H,26,27)/t14-,15-,16+/s2 - - metFrom: Recon3D + - inchis: "1/C19H29N3O5S/c1-11(2)16(18(25)21-15(19(26)27)8-9-28-3)22-17(24)14(20)10-12-4-6-13(23)7-5-12/h4-7,11,14-16,23H,8-10,20H2,1-3H3,(H,21,25)(H,22,24)(H,26,27)/t14-,15-,16+/s2" + - metFrom: "Recon3D" - !!omap - - id: m03107x + - id: "m03107x" - name: "UDP-galactose" - - compartment: x - - formula: C15H22N2O17P2 + - compartment: "x" + - formula: "C15H22N2O17P2" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m03108x + - id: "m03108x" - name: "UDP-glucose" - - compartment: x - - formula: C15H22N2O17P2 + - compartment: "x" + - formula: "C15H22N2O17P2" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m03109x + - id: "m03109x" - name: "UDP-glucuronate" - - compartment: x - - formula: C15H19N2O18P2 + - compartment: "x" + - formula: "C15H19N2O18P2" - charge: -3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: uchol_x + - id: "uchol_x" - name: "Ursocholic acid; 3alpha,7beta,12alpha-Trihydroxy-5beta-cholan-24-oic acid; 3alpha,7beta,12alpha-Trihydroxy-5beta-cholanic acid; 7beta-Hydroxyisocholic acid; 7-Epicholic acid" - - compartment: x - - formula: C24H39O5 + - compartment: "x" + - formula: "C24H39O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: udca3s_x + - id: "udca3s_x" - name: "Ursodeoxycholic acid 3-sulfate" - - compartment: x - - formula: C24H38O7S + - compartment: "x" + - formula: "C24H38O7S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: valarggly_x + - id: "valarggly_x" - name: "Valyl-Arginyl-Glycine" - - compartment: x - - formula: C13H27N6O4 + - compartment: "x" + - formula: "C13H27N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: valhisasn_x + - id: "valhisasn_x" - name: "Valyl-Histidyl-Asparagine" - - compartment: x - - formula: C15H24N6O5 + - compartment: "x" + - formula: "C15H24N6O5" - charge: 0 - - inchis: 1/C15H24N6O5/c1-7(2)12(17)14(24)20-9(3-8-5-18-6-19-8)13(23)21-10(15(25)26)4-11(16)22/h5-7,9-10,12H,3-4,17H2,1-2H3,(H2,16,22)(H,18,19)(H,20,24)(H,21,23)(H,25,26)/t9-,10+,12+/s2 - - metFrom: Recon3D + - inchis: "1/C15H24N6O5/c1-7(2)12(17)14(24)20-9(3-8-5-18-6-19-8)13(23)21-10(15(25)26)4-11(16)22/h5-7,9-10,12H,3-4,17H2,1-2H3,(H2,16,22)(H,18,19)(H,20,24)(H,21,23)(H,25,26)/t9-,10+,12+/s2" + - metFrom: "Recon3D" - !!omap - - id: valleuphe_x + - id: "valleuphe_x" - name: "Valyl-Leucyl-Phenylalanine" - - compartment: x - - formula: C20H31N3O4 + - compartment: "x" + - formula: "C20H31N3O4" - charge: 0 - - inchis: 1/C20H31N3O4/c1-12(2)10-15(22-19(25)17(21)13(3)4)18(24)23-16(20(26)27)11-14-8-6-5-7-9-14/h5-9,12-13,15-17H,10-11,21H2,1-4H3,(H,22,25)(H,23,24)(H,26,27)/t15-,16+,17+/s2 - - metFrom: Recon3D + - inchis: "1/C20H31N3O4/c1-12(2)10-15(22-19(25)17(21)13(3)4)18(24)23-16(20(26)27)11-14-8-6-5-7-9-14/h5-9,12-13,15-17H,10-11,21H2,1-4H3,(H,22,25)(H,23,24)(H,26,27)/t15-,16+,17+/s2" + - metFrom: "Recon3D" - !!omap - - id: vallystyr_x + - id: "vallystyr_x" - name: "Valyl-Lysyl-Tyrosine" - - compartment: x - - formula: C20H33N4O5 + - compartment: "x" + - formula: "C20H33N4O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: valphearg_x + - id: "valphearg_x" - name: "Valyl-Phenylalanyl-Arginine" - - compartment: x - - formula: C20H33N6O4 + - compartment: "x" + - formula: "C20H33N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: valprotrp_x + - id: "valprotrp_x" - name: "Valyl-Prolyl-Tryptophan" - - compartment: x - - formula: C21H28N4O4 + - compartment: "x" + - formula: "C21H28N4O4" - charge: 0 - - inchis: 1S/C21H28N4O4/c1-12(2)18(22)20(27)25-9-5-8-17(25)19(26)24-16(21(28)29)10-13-11-23-15-7-4-3-6-14(13)15/h3-4,6-7,11-12,16-18,23H,5,8-10,22H2,1-2H3,(H,24,26)(H,28,29)/t16-,17-,18-/m0/s1 - - metFrom: Recon3D + - inchis: "1S/C21H28N4O4/c1-12(2)18(22)20(27)25-9-5-8-17(25)19(26)24-16(21(28)29)10-13-11-23-15-7-4-3-6-14(13)15/h3-4,6-7,11-12,16-18,23H,5,8-10,22H2,1-2H3,(H,24,26)(H,28,29)/t16-,17-,18-/m0/s1" + - metFrom: "Recon3D" - !!omap - - id: valserarg_x + - id: "valserarg_x" - name: "Valyl-Seryl-Arginine" - - compartment: x - - formula: C14H29N6O5 + - compartment: "x" + - formula: "C14H29N6O5" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: valtrpphe_x + - id: "valtrpphe_x" - name: "Valyl-Tryptophanyl-Phenylalanine" - - compartment: x - - formula: C25H30N4O4 + - compartment: "x" + - formula: "C25H30N4O4" - charge: 0 - - inchis: 1/C25H30N4O4/c1-15(2)22(26)24(31)28-20(13-17-14-27-19-11-7-6-10-18(17)19)23(30)29-21(25(32)33)12-16-8-4-3-5-9-16/h3-11,14-15,20-22,27H,12-13,26H2,1-2H3,(H,28,31)(H,29,30)(H,32,33)/t20-,21+,22+/s2 - - metFrom: Recon3D + - inchis: "1/C25H30N4O4/c1-15(2)22(26)24(31)28-20(13-17-14-27-19-11-7-6-10-18(17)19)23(30)29-21(25(32)33)12-16-8-4-3-5-9-16/h3-11,14-15,20-22,27H,12-13,26H2,1-2H3,(H,28,31)(H,29,30)(H,32,33)/t20-,21+,22+/s2" + - metFrom: "Recon3D" - !!omap - - id: valtrpval_x + - id: "valtrpval_x" - name: "Valyl-Tryptophanyl-Valine" - - compartment: x - - formula: C21H30N4O4 + - compartment: "x" + - formula: "C21H30N4O4" - charge: 0 - - inchis: 1/C21H30N4O4/c1-11(2)17(22)20(27)24-16(19(26)25-18(12(3)4)21(28)29)9-13-10-23-15-8-6-5-7-14(13)15/h5-8,10-12,16-18,23H,9,22H2,1-4H3,(H,24,27)(H,25,26)(H,28,29)/t16-,17+,18+/s2 - - metFrom: Recon3D + - inchis: "1/C21H30N4O4/c1-11(2)17(22)20(27)24-16(19(26)25-18(12(3)4)21(28)29)9-13-10-23-15-8-6-5-7-14(13)15/h5-8,10-12,16-18,23H,9,22H2,1-4H3,(H,24,27)(H,25,26)(H,28,29)/t16-,17+,18+/s2" + - metFrom: "Recon3D" - !!omap - - id: valval_x + - id: "valval_x" - name: "Valyl-Valine" - - compartment: x - - formula: C10H20N2O3 + - compartment: "x" + - formula: "C10H20N2O3" - charge: 0 - - inchis: 1/C10H20N2O3/c1-5(2)7(11)9(13)12-8(6(3)4)10(14)15/h5-8H,11H2,1-4H3,(H,12,13)(H,14,15)/t7-,8+/s2 - - metFrom: Recon3D + - inchis: "1/C10H20N2O3/c1-5(2)7(11)9(13)12-8(6(3)4)10(14)15/h5-8H,11H2,1-4H3,(H,12,13)(H,14,15)/t7-,8+/s2" + - metFrom: "Recon3D" - !!omap - - id: vanillac_x + - id: "vanillac_x" - name: "Vanil-Lactate" - - compartment: x - - formula: C10H11O5 + - compartment: "x" + - formula: "C10H11O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: vldl_hs_x + - id: "vldl_hs_x" - name: "Very Low Density Lipoprotein" - - compartment: x - - formula: X + - compartment: "x" + - formula: "X" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m00186x + - id: "m00186x" - name: "[apotransferin]" - - compartment: x - - formula: C3389H5282N934O1021S50 + - compartment: "x" + - formula: "C3389H5282N934O1021S50" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: acmpglut_x + - id: "acmpglut_x" - name: "acetaminophen-glutathione-conjugate" - - compartment: x - - formula: C18H27N4O10S + - compartment: "x" + - formula: "C18H27N4O10S" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: meracmp_x + - id: "meracmp_x" - name: "acetaminophen-mercapturate-conjugate/N-acetyl-cysteine-acetaminophen" - - compartment: x - - formula: C13H15N2O5S + - compartment: "x" + - formula: "C13H15N2O5S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: acmp_x + - id: "acmp_x" - name: "acetaminophen/paracetamol" - - compartment: x - - formula: C8H9NO2 + - compartment: "x" + - formula: "C8H9NO2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: nfdac_x + - id: "nfdac_x" - name: "acid metabolite of nifedipine" - - compartment: x - - formula: C16H13N2O6 + - compartment: "x" + - formula: "C16H13N2O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01268x + - id: "m01268x" - name: "activation-ppara" - - compartment: x - - formula: C2303H3655N619O695S34R + - compartment: "x" + - formula: "C2303H3655N619O695S34R" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01291x + - id: "m01291x" - name: "adrenic acid" - - compartment: x - - formula: C22H35O2 + - compartment: "x" + - formula: "C22H35O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01313x + - id: "m01313x" - name: "allantoin" - - compartment: x - - formula: C4H6N4O3 + - compartment: "x" + - formula: "C4H6N4O3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01314x + - id: "m01314x" - name: "allopregnanolone" - - compartment: x - - formula: C21H34O2 + - compartment: "x" + - formula: "C21H34O2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: allop_x + - id: "allop_x" - name: "allopurinol" - - compartment: x - - formula: C5H4N4O + - compartment: "x" + - formula: "C5H4N4O" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01315x + - id: "m01315x" - name: "alloxan" - - compartment: x - - formula: C4N2O4 + - compartment: "x" + - formula: "C4N2O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01321x + - id: "m01321x" - name: "alpha-CEHC-glucuronide" - - compartment: x - - formula: C22H29O10 + - compartment: "x" + - formula: "C22H29O10" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01332x + - id: "m01332x" - name: "aminoacetone" - - compartment: x - - formula: C3H8NO + - compartment: "x" + - formula: "C3H8NO" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01335x + - id: "m01335x" - name: "anandamide" - - compartment: x - - formula: C22H37NO2 + - compartment: "x" + - formula: "C22H37NO2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01337x + - id: "m01337x" - name: "androsterone sulfate" - - compartment: x - - formula: C19H29O5S + - compartment: "x" + - formula: "C19H29O5S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01342x + - id: "m01342x" - name: "anthranilate" - - compartment: x - - formula: C7H6NO2 + - compartment: "x" + - formula: "C7H6NO2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01343x + - id: "m01343x" - name: "antichymotrypsin" - - compartment: x - - formula: C2144H3392N554O636S17 + - compartment: "x" + - formula: "C2144H3392N554O636S17" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01345x + - id: "m01345x" - name: "antitrypsin" - - compartment: x - - formula: C2112H3313N539O629S13 + - compartment: "x" + - formula: "C2112H3313N539O629S13" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01347x + - id: "m01347x" - name: "apelin-(1-12)" - - compartment: x - - formula: C60H105N22O15S + - compartment: "x" + - formula: "C60H105N22O15S" - charge: 3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01348x + - id: "m01348x" - name: "apelin-13" - - compartment: x - - formula: C69H114N23O16S + - compartment: "x" + - formula: "C69H114N23O16S" - charge: 3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01350x + - id: "m01350x" - name: "apoA1" - - compartment: x - - formula: C1367H2173N381O419S4 + - compartment: "x" + - formula: "C1367H2173N381O419S4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01351x + - id: "m01351x" - name: "apoB100" - - compartment: x - - formula: C23182H36564N6112O6944S104 + - compartment: "x" + - formula: "C23182H36564N6112O6944S104" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01353x + - id: "m01353x" - name: "apoC1" - - compartment: x - - formula: C421H695N109O124S2 + - compartment: "x" + - formula: "C421H695N109O124S2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01354x + - id: "m01354x" - name: "apoC2" - - compartment: x - - formula: C509H801N123O159S3 + - compartment: "x" + - formula: "C509H801N123O159S3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01355x + - id: "m01355x" - name: "apoC3" - - compartment: x - - formula: C484H760N128O149S3 + - compartment: "x" + - formula: "C484H760N128O149S3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01359x + - id: "m01359x" - name: "apoE" - - compartment: x - - formula: C1569H2559N477O483S10 + - compartment: "x" + - formula: "C1569H2559N477O483S10" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01362x + - id: "m01362x" - name: "arachidonate" - - compartment: x - - formula: C20H31O2 + - compartment: "x" + - formula: "C20H31O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01366x + - id: "m01366x" - name: "argininosuccinate" - - compartment: x - - formula: C10H17N4O6 + - compartment: "x" + - formula: "C10H17N4O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: atvacid_x + - id: "atvacid_x" - name: "atorvastatin-acid" - - compartment: x - - formula: C33H34FN2O5 + - compartment: "x" + - formula: "C33H34FN2O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: atvlac_x + - id: "atvlac_x" - name: "atorvastatin-lactone" - - compartment: x - - formula: C33H33FN2O4 + - compartment: "x" + - formula: "C33H33FN2O4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01372x + - id: "m01372x" - name: "azelaic acid" - - compartment: x - - formula: C9H14O4 + - compartment: "x" + - formula: "C9H14O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01373x + - id: "m01373x" - name: "behenic acid" - - compartment: x - - formula: C22H43O2 + - compartment: "x" + - formula: "C22H43O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01380x + - id: "m01380x" - name: "benzoate" - - compartment: x - - formula: C7H5O2 + - compartment: "x" + - formula: "C7H5O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01387x + - id: "m01387x" - name: "beta-casomorphin" - - compartment: x - - formula: C44H60N7O11 + - compartment: "x" + - formula: "C44H60N7O11" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01386x + - id: "m01386x" - name: "beta-casomorphin (1-6)" - - compartment: x - - formula: C38H49N6O10 + - compartment: "x" + - formula: "C38H49N6O10" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01392x + - id: "m01392x" - name: "beta-hydroxy-beta-methylbutyrate" - - compartment: x - - formula: C5H9O3 + - compartment: "x" + - formula: "C5H9O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01395x + - id: "m01395x" - name: "bile-PC pool" - - compartment: x - - formula: C10H18NO8PR2 + - compartment: "x" + - formula: "C10H18NO8PR2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01399x + - id: "m01399x" - name: "biliverdin" - - compartment: x - - formula: C33H32N4O6 + - compartment: "x" + - formula: "C33H32N4O6" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01417x + - id: "m01417x" - name: "calcitriol" - - compartment: x - - formula: C27H44O3 + - compartment: "x" + - formula: "C27H44O3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01421x + - id: "m01421x" - name: "carbonate" - - compartment: x - - formula: CH2O3 + - compartment: "x" + - formula: "CH2O3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: crglz_x + - id: "crglz_x" - name: "carboxy-gliclazide" - - compartment: x - - formula: C15H17N3O5S + - compartment: "x" + - formula: "C15H17N3O5S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01423x + - id: "m01423x" - name: "carnosine" - - compartment: x - - formula: C9H14N4O3 + - compartment: "x" + - formula: "C9H14N4O3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01430x + - id: "m01430x" - name: "ceramide pool" - - compartment: x - - formula: C18H36NO2RCO + - compartment: "x" + - formula: "C18H36NO2RCO" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01431x + - id: "m01431x" - name: "ceramide-1P pool" - - compartment: x - - formula: C18H35NO5PRCO + - compartment: "x" + - formula: "C18H35NO5PRCO" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: crvs_x + - id: "crvs_x" - name: "cerivastatin" - - compartment: x - - formula: C25H31FNNaO5 + - compartment: "x" + - formula: "C25H31FNNaO5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: crvsm1_x + - id: "crvsm1_x" - name: "cerivastatin-M1" - - compartment: x - - formula: C24H29FNNaO5 + - compartment: "x" + - formula: "C24H29FNNaO5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: crvsm23_x + - id: "crvsm23_x" - name: "cerivastatin-M23" - - compartment: x - - formula: C25H31FNNaO6 + - compartment: "x" + - formula: "C25H31FNNaO6" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: crvsm24_x + - id: "crvsm24_x" - name: "cerivastatin-M24" - - compartment: x - - formula: C24H29FNNaO6 + - compartment: "x" + - formula: "C24H29FNNaO6" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01432x + - id: "m01432x" - name: "cerotic acid" - - compartment: x - - formula: C26H51O2 + - compartment: "x" + - formula: "C26H51O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01439x + - id: "m01439x" - name: "chitobiose" - - compartment: x - - formula: C16H28N2O11 + - compartment: "x" + - formula: "C16H28N2O11" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01446x + - id: "m01446x" - name: "cholest-5-ene-3beta,7alpha,24(S)-triol" - - compartment: x - - formula: C27H46O3 + - compartment: "x" + - formula: "C27H46O3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01447x + - id: "m01447x" - name: "cholest-5-ene-3beta,7alpha,25-triol" - - compartment: x - - formula: C27H46O3 + - compartment: "x" + - formula: "C27H46O3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01448x + - id: "m01448x" - name: "cholest-5-ene-3beta,7alpha,27-triol" - - compartment: x - - formula: C27H46O3 + - compartment: "x" + - formula: "C27H46O3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01504x + - id: "m01504x" - name: "cholesterol-ester-palm" - - compartment: x - - formula: C43H76O2 + - compartment: "x" + - formula: "C43H76O2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01512x + - id: "m01512x" - name: "cholesterol-sulfate" - - compartment: x - - formula: C27H45O4S + - compartment: "x" + - formula: "C27H45O4S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01571x + - id: "m01571x" - name: "cimetidine" - - compartment: x - - formula: C10H16N6S + - compartment: "x" + - formula: "C10H16N6S" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01580x + - id: "m01580x" - name: "cis-aconitate" - - compartment: x - - formula: C6H3O6 + - compartment: "x" + - formula: "C6H3O6" - charge: -3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01582x + - id: "m01582x" - name: "cis-cetoleic acid" - - compartment: x - - formula: C22H41O2 + - compartment: "x" + - formula: "C22H41O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01583x + - id: "m01583x" - name: "cis-erucic acid" - - compartment: x - - formula: C22H41O2 + - compartment: "x" + - formula: "C22H41O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01584x + - id: "m01584x" - name: "cis-gondoic acid" - - compartment: x - - formula: C20H37O2 + - compartment: "x" + - formula: "C20H37O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01585x + - id: "m01585x" - name: "cis-vaccenic acid" - - compartment: x - - formula: C18H33O2 + - compartment: "x" + - formula: "C18H33O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01600x + - id: "m01600x" - name: "cobamide-coenzyme" - - compartment: x - - formula: C72H100CoN18O17P + - compartment: "x" + - formula: "C72H100CoN18O17P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01601x + - id: "m01601x" - name: "cocaine" - - compartment: x - - formula: C17H21NO4 + - compartment: "x" + - formula: "C17H21NO4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01605x + - id: "m01605x" - name: "coproporphyrinogen I" - - compartment: x - - formula: C36H40N4O8 + - compartment: "x" + - formula: "C36H40N4O8" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01609x + - id: "m01609x" - name: "core 4" - - compartment: x - - formula: C24H40N3O15X + - compartment: "x" + - formula: "C24H40N3O15X" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01616x + - id: "m01616x" - name: "cortisone" - - compartment: x - - formula: C21H28O5 + - compartment: "x" + - formula: "C21H28O5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01620x + - id: "m01620x" - name: "creatine-phosphate" - - compartment: x - - formula: C4H8N3O5P + - compartment: "x" + - formula: "C4H8N3O5P" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: csa_x + - id: "csa_x" - name: "cyclosporine" - - compartment: x - - formula: C62H111N11O12 + - compartment: "x" + - formula: "C62H111N11O12" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: csasulp_x + - id: "csasulp_x" - name: "cyclosporine-sulphate" - - compartment: x - - formula: C62H110N11O15S + - compartment: "x" + - formula: "C62H110N11O15S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01627x + - id: "m01627x" - name: "cysteamine" - - compartment: x - - formula: C2H8NS + - compartment: "x" + - formula: "C2H8NS" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: cysacmp_x + - id: "cysacmp_x" - name: "cysteine-conjugate-acetaminophen" - - compartment: x - - formula: C11H14N2O4S + - compartment: "x" + - formula: "C11H14N2O4S" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01644x + - id: "m01644x" - name: "dCMP" - - compartment: x - - formula: C9H12N3O7P + - compartment: "x" + - formula: "C9H12N3O7P" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01686x + - id: "m01686x" - name: "dGMP" - - compartment: x - - formula: C10H12N5O7P + - compartment: "x" + - formula: "C10H12N5O7P" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01688x + - id: "m01688x" - name: "dGTP" - - compartment: x - - formula: C10H12N5O13P3 + - compartment: "x" + - formula: "C10H12N5O13P3" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01747x + - id: "m01747x" - name: "dTDP" - - compartment: x - - formula: C10H13N2O11P2 + - compartment: "x" + - formula: "C10H13N2O11P2" - charge: -3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01752x + - id: "m01752x" - name: "dTMP" - - compartment: x - - formula: C10H13N2O8P + - compartment: "x" + - formula: "C10H13N2O8P" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01753x + - id: "m01753x" - name: "dTTP" - - compartment: x - - formula: C10H13N2O14P3 + - compartment: "x" + - formula: "C10H13N2O14P3" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01651x + - id: "m01651x" - name: "de-Fuc form of PA6 (wo peptide linkage)" - - compartment: x - - formula: C84H136N6O62 + - compartment: "x" + - formula: "C84H136N6O62" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: dhglz_x + - id: "dhglz_x" - name: "dehydro-gliclazide" - - compartment: x - - formula: C15H18N3O3S + - compartment: "x" + - formula: "C15H18N3O3S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01660x + - id: "m01660x" - name: "dehydroepiandrosterone" - - compartment: x - - formula: C19H28O2 + - compartment: "x" + - formula: "C19H28O2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: deoxfvs_x + - id: "deoxfvs_x" - name: "deoxy-fluvastatin-dinor" - - compartment: x - - formula: C22H21FNNaO2 + - compartment: "x" + - formula: "C22H21FNNaO2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01674x + - id: "m01674x" - name: "dephospho-CoA" - - compartment: x - - formula: C21H33N7O13P2S + - compartment: "x" + - formula: "C21H33N7O13P2S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: fvstet_x + - id: "fvstet_x" - name: "des-isopropyl-dihydro-fluvastatin-tetranor" - - compartment: x - - formula: C17H13FNNaO2 + - compartment: "x" + - formula: "C17H13FNNaO2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: fvstetglu_x + - id: "fvstetglu_x" - name: "des-isopropyl-dihydro-fluvastatin-tetranor-glucuronide" - - compartment: x - - formula: C23H20FNNaO8 + - compartment: "x" + - formula: "C23H20FNNaO8" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: profvs_x + - id: "profvs_x" - name: "des-isoproylpropionic-acid-fluvastatin" - - compartment: x - - formula: C18H16FNNaO2 + - compartment: "x" + - formula: "C18H16FNNaO2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: dspvs_x + - id: "dspvs_x" - name: "desacyl dehydro-pravastatin" - - compartment: x - - formula: C18H23NaO5 + - compartment: "x" + - formula: "C18H23NaO5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01675x + - id: "m01675x" - name: "desmosterol" - - compartment: x - - formula: C27H44O + - compartment: "x" + - formula: "C27H44O" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01696x + - id: "m01696x" - name: "dihomo-gamma-linolenate" - - compartment: x - - formula: C20H33O2 + - compartment: "x" + - formula: "C20H33O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01698x + - id: "m01698x" - name: "dihydrobiopterin" - - compartment: x - - formula: C9H13N5O3 + - compartment: "x" + - formula: "C9H13N5O3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01705x + - id: "m01705x" - name: "dihydrothymine" - - compartment: x - - formula: C5H8N2O2 + - compartment: "x" + - formula: "C5H8N2O2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01708x + - id: "m01708x" - name: "dimethylglycine" - - compartment: x - - formula: C4H9NO2 + - compartment: "x" + - formula: "C4H9NO2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01767x + - id: "m01767x" - name: "ecgonine-methyl ester" - - compartment: x - - formula: C10H17NO3 + - compartment: "x" + - formula: "C10H17NO3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01771x + - id: "m01771x" - name: "eicosanoate" - - compartment: x - - formula: C20H39O2 + - compartment: "x" + - formula: "C20H39O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01773x + - id: "m01773x" - name: "eicosanoyl-CoA" - - compartment: x - - formula: C41H70N7O17P3S + - compartment: "x" + - formula: "C41H70N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01778x + - id: "m01778x" - name: "elaidate" - - compartment: x - - formula: C18H33O2 + - compartment: "x" + - formula: "C18H33O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01790x + - id: "m01790x" - name: "estrone" - - compartment: x - - formula: C18H22O2 + - compartment: "x" + - formula: "C18H22O2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01798x + - id: "m01798x" - name: "ethanolamine-phosphate" - - compartment: x - - formula: C2H7NO4P + - compartment: "x" + - formula: "C2H7NO4P" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01820x + - id: "m01820x" - name: "fatty acid-VLDL pool" - - compartment: x - - formula: CHO2R + - compartment: "x" + - formula: "CHO2R" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01807x + - id: "m01807x" - name: "fatty acid-chylomicron pool" - - compartment: x - - formula: CHO2R + - compartment: "x" + - formula: "CHO2R" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01819x + - id: "m01819x" - name: "fatty acid-uptake pool" - - compartment: x - - formula: CHO2R + - compartment: "x" + - formula: "CHO2R" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01827x + - id: "m01827x" - name: "fibrinogen" - - compartment: x - - formula: C12932H19804N3662O4205S96 + - compartment: "x" + - formula: "C12932H19804N3662O4205S96" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: fvs_x + - id: "fvs_x" - name: "fluvastatin" - - compartment: x - - formula: C24H25FNNaO4 + - compartment: "x" + - formula: "C24H25FNNaO4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01831x + - id: "m01831x" - name: "formaldehyde" - - compartment: x - - formula: CH2O + - compartment: "x" + - formula: "CH2O" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01839x + - id: "m01839x" - name: "formyl-N-acetyl-5-methoxykynurenamine" - - compartment: x - - formula: C13H16N2O4 + - compartment: "x" + - formula: "C13H16N2O4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01841x + - id: "m01841x" - name: "fructose-1,6-bisphosphate" - - compartment: x - - formula: C6H10O12P2 + - compartment: "x" + - formula: "C6H10O12P2" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01862x + - id: "m01862x" - name: "fumarate" - - compartment: x - - formula: C4H2O4 + - compartment: "x" + - formula: "C4H2O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01909x + - id: "m01909x" - name: "galactitol" - - compartment: x - - formula: C6H14O6 + - compartment: "x" + - formula: "C6H14O6" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01924x + - id: "m01924x" - name: "gamma-CEHC-glucuronide" - - compartment: x - - formula: C21H27O10 + - compartment: "x" + - formula: "C21H27O10" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01922x + - id: "m01922x" - name: "gamma-butyrobetaine" - - compartment: x - - formula: C7H15NO2 + - compartment: "x" + - formula: "C7H15NO2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01923x + - id: "m01923x" - name: "gamma-carboxyethyl-hydroxychroman" - - compartment: x - - formula: C15H19O4 + - compartment: "x" + - formula: "C15H19O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01925x + - id: "m01925x" - name: "gamma-glutamyl-3-aminopropiononitrile" - - compartment: x - - formula: C8H13N3O3 + - compartment: "x" + - formula: "C8H13N3O3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01926x + - id: "m01926x" - name: "gamma-glutamyl-beta-cyanoalanine" - - compartment: x - - formula: C9H12N3O5 + - compartment: "x" + - formula: "C9H12N3O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01927x + - id: "m01927x" - name: "gamma-glutamyl-cysteine" - - compartment: x - - formula: C8H13N2O5S + - compartment: "x" + - formula: "C8H13N2O5S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01932x + - id: "m01932x" - name: "gamma-linolenate" - - compartment: x - - formula: C18H29O2 + - compartment: "x" + - formula: "C18H29O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01954x + - id: "m01954x" - name: "glcnac-alpha-1,4-core 1" - - compartment: x - - formula: C22H37N2O15X + - compartment: "x" + - formula: "C22H37N2O15X" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01967x + - id: "m01967x" - name: "glucose-1-phosphate" - - compartment: x - - formula: C6H11O9P + - compartment: "x" + - formula: "C6H11O9P" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01972x + - id: "m01972x" - name: "glucosylceramide pool" - - compartment: x - - formula: C24H46NO7RCO + - compartment: "x" + - formula: "C24H46NO7RCO" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01973x + - id: "m01973x" - name: "glucuronate" - - compartment: x - - formula: C6H9O7 + - compartment: "x" + - formula: "C6H9O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: glc3meacp_x + - id: "glc3meacp_x" - name: "glucuronide-conjugate of 3-methoxy-acetaminophen" - - compartment: x - - formula: C14H16NO9 + - compartment: "x" + - formula: "C14H16NO9" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: gtacmp_x + - id: "gtacmp_x" - name: "glucuronide-thiomethyl-acetaminophen conjugate" - - compartment: x - - formula: C15H18NO8S + - compartment: "x" + - formula: "C15H18NO8S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01980x + - id: "m01980x" - name: "glutathionyl-leukotriene C4" - - compartment: x - - formula: X + - compartment: "x" + - formula: "X" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01981x + - id: "m01981x" - name: "glyceraldehyde" - - compartment: x - - formula: C3H6O3 + - compartment: "x" + - formula: "C3H6O3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01984x + - id: "m01984x" - name: "glycerone" - - compartment: x - - formula: C3H6O3 + - compartment: "x" + - formula: "C3H6O3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01991x + - id: "m01991x" - name: "glycogenin G4G4" - - compartment: x - - formula: C1827H2805N455O568S14 + - compartment: "x" + - formula: "C1827H2805N455O568S14" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01992x + - id: "m01992x" - name: "glycogenin G4G7" - - compartment: x - - formula: C1845H2835N455O583S14 + - compartment: "x" + - formula: "C1845H2835N455O583S14" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m01998x + - id: "m01998x" - name: "glycolate" - - compartment: x - - formula: C2H3O3 + - compartment: "x" + - formula: "C2H3O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02000x + - id: "m02000x" - name: "glycolithocholate" - - compartment: x - - formula: C26H42NO4 + - compartment: "x" + - formula: "C26H42NO4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02004x + - id: "m02004x" - name: "glycoursodeoxycholate" - - compartment: x - - formula: C26H43NO5 + - compartment: "x" + - formula: "C26H43NO5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02007x + - id: "m02007x" - name: "glyoxalate" - - compartment: x - - formula: C2H1O3 + - compartment: "x" + - formula: "C2H1O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02035x + - id: "m02035x" - name: "guanidine" - - compartment: x - - formula: CH5N3 + - compartment: "x" + - formula: "CH5N3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02036x + - id: "m02036x" - name: "guanidinoacetate" - - compartment: x - - formula: C3H7N3O2 + - compartment: "x" + - formula: "C3H7N3O2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02044x + - id: "m02044x" - name: "haptoglobin" - - compartment: x - - formula: C2019H3126N540O606S17 + - compartment: "x" + - formula: "C2019H3126N540O606S17" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02053x + - id: "m02053x" - name: "henicosanoic acid" - - compartment: x - - formula: C21H41O2 + - compartment: "x" + - formula: "C21H41O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02096x + - id: "m02096x" - name: "hepoxilin A3" - - compartment: x - - formula: C20H31O4 + - compartment: "x" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02117x + - id: "m02117x" - name: "hexadecenoylcarnitine(9)" - - compartment: x - - formula: C23H43NO4 + - compartment: "x" + - formula: "C23H43NO4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02122x + - id: "m02122x" - name: "hexanoyl-CoA" - - compartment: x - - formula: C27H42N7O17P3S + - compartment: "x" + - formula: "C27H42N7O17P3S" - charge: -4 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02123x + - id: "m02123x" - name: "hippurate" - - compartment: x - - formula: C9H8NO3 + - compartment: "x" + - formula: "C9H8NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02124x + - id: "m02124x" - name: "histamine" - - compartment: x - - formula: C5H10N3 + - compartment: "x" + - formula: "C5H10N3" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02133x + - id: "m02133x" - name: "homocysteine" - - compartment: x - - formula: C4H9NO2S + - compartment: "x" + - formula: "C4H9NO2S" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02134x + - id: "m02134x" - name: "homocysteine-thiolactone" - - compartment: x - - formula: C4H8NOS + - compartment: "x" + - formula: "C4H8NOS" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02135x + - id: "m02135x" - name: "homogentisate" - - compartment: x - - formula: C8H7O4 + - compartment: "x" + - formula: "C8H7O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02142x + - id: "m02142x" - name: "hydracrylate" - - compartment: x - - formula: C3H5O3 + - compartment: "x" + - formula: "C3H5O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: nfdoh_x + - id: "nfdoh_x" - name: "hydroxy metabolite of nifedipine" - - compartment: x - - formula: C16H13N2O7 + - compartment: "x" + - formula: "C16H13N2O7" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02156x + - id: "m02156x" - name: "hypochlorite" - - compartment: x - - formula: ClHO + - compartment: "x" + - formula: "ClHO" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02157x + - id: "m02157x" - name: "hypotaurine" - - compartment: x - - formula: C2H7NO2S + - compartment: "x" + - formula: "C2H7NO2S" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02158x + - id: "m02158x" - name: "hypothiocyanite" - - compartment: x - - formula: CHNOS + - compartment: "x" + - formula: "CHNOS" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ibupgluc_x + - id: "ibupgluc_x" - name: "ibuprofen acyl glucuronide" - - compartment: x - - formula: C19H25O8 + - compartment: "x" + - formula: "C19H25O8" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ibup_R_x + - id: "ibup_R_x" - name: "ibuprofen-R" - - compartment: x - - formula: C13H17O2 + - compartment: "x" + - formula: "C13H17O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ibup_S_x + - id: "ibup_S_x" - name: "ibuprofen-S" - - compartment: x - - formula: C13H17O2 + - compartment: "x" + - formula: "C13H17O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02166x + - id: "m02166x" - name: "imidazole-4-acetate" - - compartment: x - - formula: C5H5N2O2 + - compartment: "x" + - formula: "C5H5N2O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02169x + - id: "m02169x" - name: "indoleacetate" - - compartment: x - - formula: C10H8NO2 + - compartment: "x" + - formula: "C10H8NO2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02173x + - id: "m02173x" - name: "inositol-1-phosphate" - - compartment: x - - formula: C6H11O9P + - compartment: "x" + - formula: "C6H11O9P" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02181x + - id: "m02181x" - name: "isobutyrylglycine" - - compartment: x - - formula: C6H10NO3 + - compartment: "x" + - formula: "C6H10NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02183x + - id: "m02183x" - name: "isocitrate" - - compartment: x - - formula: C6H5O7 + - compartment: "x" + - formula: "C6H5O7" - charge: -3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02185x + - id: "m02185x" - name: "isomaltose" - - compartment: x - - formula: C12H22O11 + - compartment: "x" + - formula: "C12H22O11" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02190x + - id: "m02190x" - name: "isovalerylglycine" - - compartment: x - - formula: C7H12NO3 + - compartment: "x" + - formula: "C7H12NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02318x + - id: "m02318x" - name: "kinetensin" - - compartment: x - - formula: C56H87N17O11 + - compartment: "x" + - formula: "C56H87N17O11" - charge: 2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02314x + - id: "m02314x" - name: "kinetensin 1-3" - - compartment: x - - formula: C15H31N6O4 + - compartment: "x" + - formula: "C15H31N6O4" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02315x + - id: "m02315x" - name: "kinetensin 1-7" - - compartment: x - - formula: C41H67N15O9 + - compartment: "x" + - formula: "C41H67N15O9" - charge: 2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02316x + - id: "m02316x" - name: "kinetensin 1-8" - - compartment: x - - formula: C50H76N16O10 + - compartment: "x" + - formula: "C50H76N16O10" - charge: 2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02317x + - id: "m02317x" - name: "kinetensin 4-8" - - compartment: x - - formula: C35H47N10O7 + - compartment: "x" + - formula: "C35H47N10O7" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02319x + - id: "m02319x" - name: "kynurenine" - - compartment: x - - formula: C10H12N2O3 + - compartment: "x" + - formula: "C10H12N2O3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: nfdlac_x + - id: "nfdlac_x" - name: "lactone form of nifedipine" - - compartment: x - - formula: C16H12N2O6 + - compartment: "x" + - formula: "C16H12N2O6" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02333x + - id: "m02333x" - name: "lactose-6-phosphate" - - compartment: x - - formula: C12H21O14P + - compartment: "x" + - formula: "C12H21O14P" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02336x + - id: "m02336x" - name: "lanosterol" - - compartment: x - - formula: C30H50O + - compartment: "x" + - formula: "C30H50O" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02343x + - id: "m02343x" - name: "lathosterol" - - compartment: x - - formula: C27H46O + - compartment: "x" + - formula: "C27H46O" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02344x + - id: "m02344x" - name: "lauric acid" - - compartment: x - - formula: C12H23O2 + - compartment: "x" + - formula: "C12H23O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02365x + - id: "m02365x" - name: "leukotriene B5" - - compartment: x - - formula: C20H29O4 + - compartment: "x" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02385x + - id: "m02385x" - name: "lignocerate" - - compartment: x - - formula: C24H47O2 + - compartment: "x" + - formula: "C24H47O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02388x + - id: "m02388x" - name: "linoleic-carnitine" - - compartment: x - - formula: C25H45NO4 + - compartment: "x" + - formula: "C25H45NO4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02393x + - id: "m02393x" - name: "lipoamide" - - compartment: x - - formula: C8H15NOS2 + - compartment: "x" + - formula: "C8H15NOS2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02395x + - id: "m02395x" - name: "lipoxin A4" - - compartment: x - - formula: C20H31O5 + - compartment: "x" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02396x + - id: "m02396x" - name: "lipoxin B4" - - compartment: x - - formula: C20H31O5 + - compartment: "x" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02402x + - id: "m02402x" - name: "lithocholate" - - compartment: x - - formula: C24H39O3 + - compartment: "x" + - formula: "C24H39O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lvst_x + - id: "lvst_x" - name: "lovastatin lactone form" - - compartment: x - - formula: C24H36O5 + - compartment: "x" + - formula: "C24H36O5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: lvstacid_x + - id: "lvstacid_x" - name: "lovastatin-hydroxyacid form" - - compartment: x - - formula: C24H37O6 + - compartment: "x" + - formula: "C24H37O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02429x + - id: "m02429x" - name: "lysyl-proline" - - compartment: x - - formula: C11H22N3O3 + - compartment: "x" + - formula: "C11H22N3O3" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02439x + - id: "m02439x" - name: "malate" - - compartment: x - - formula: C4H4O5 + - compartment: "x" + - formula: "C4H4O5" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02441x + - id: "m02441x" - name: "malonic-dialdehyde" - - compartment: x - - formula: C3H3O2 + - compartment: "x" + - formula: "C3H3O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02444x + - id: "m02444x" - name: "malonyl-CoA" - - compartment: x - - formula: C24H33N7O19P3S + - compartment: "x" + - formula: "C24H33N7O19P3S" - charge: -5 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02446x + - id: "m02446x" - name: "maltoheptaose" - - compartment: x - - formula: C42H72O36 + - compartment: "x" + - formula: "C42H72O36" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02447x + - id: "m02447x" - name: "maltohexaose" - - compartment: x - - formula: C36H62O31 + - compartment: "x" + - formula: "C36H62O31" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02448x + - id: "m02448x" - name: "maltononaose" - - compartment: x - - formula: C54H92O46 + - compartment: "x" + - formula: "C54H92O46" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02449x + - id: "m02449x" - name: "maltopentaose" - - compartment: x - - formula: C30H52O26 + - compartment: "x" + - formula: "C30H52O26" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02451x + - id: "m02451x" - name: "maltotetraose" - - compartment: x - - formula: C24H42O21 + - compartment: "x" + - formula: "C24H42O21" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02456x + - id: "m02456x" - name: "margaric acid" - - compartment: x - - formula: C17H33O2 + - compartment: "x" + - formula: "C17H33O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02457x + - id: "m02457x" - name: "mead acid" - - compartment: x - - formula: C20H33O2 + - compartment: "x" + - formula: "C20H33O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02460x + - id: "m02460x" - name: "melatonin" - - compartment: x - - formula: C13H16N2O2 + - compartment: "x" + - formula: "C13H16N2O2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02467x + - id: "m02467x" - name: "metformin" - - compartment: x - - formula: C4H11N5 + - compartment: "x" + - formula: "C4H11N5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02473x + - id: "m02473x" - name: "methylamine" - - compartment: x - - formula: C1H6N + - compartment: "x" + - formula: "C1H6N" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02479x + - id: "m02479x" - name: "methylmalonate" - - compartment: x - - formula: C4H4O4 + - compartment: "x" + - formula: "C4H4O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02494x + - id: "m02494x" - name: "myristic acid" - - compartment: x - - formula: C14H27O2 + - compartment: "x" + - formula: "C14H27O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02563x + - id: "m02563x" - name: "neocasomorphin" - - compartment: x - - formula: C35H51N6O10 + - compartment: "x" + - formula: "C35H51N6O10" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02562x + - id: "m02562x" - name: "neocasomorphin (1-5)" - - compartment: x - - formula: C29H40N5O9 + - compartment: "x" + - formula: "C29H40N5O9" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02564x + - id: "m02564x" - name: "nervonic acid" - - compartment: x - - formula: C24H45O2 + - compartment: "x" + - formula: "C24H45O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02570x + - id: "m02570x" - name: "neuromedin N" - - compartment: x - - formula: C32H51N5O7 + - compartment: "x" + - formula: "C32H51N5O7" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02569x + - id: "m02569x" - name: "neuromedin N(1-4)" - - compartment: x - - formula: C26H40N4O6 + - compartment: "x" + - formula: "C26H40N4O6" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02585x + - id: "m02585x" - name: "nicotinate ribonucleotide" - - compartment: x - - formula: C11H12NO9P + - compartment: "x" + - formula: "C11H12NO9P" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02591x + - id: "m02591x" - name: "nitryl-chloride" - - compartment: x - - formula: ClNO2 + - compartment: "x" + - formula: "ClNO2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02613x + - id: "m02613x" - name: "nonadecylic acid" - - compartment: x - - formula: C19H37O2 + - compartment: "x" + - formula: "C19H37O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02622x + - id: "m02622x" - name: "normetanephrine" - - compartment: x - - formula: C9H14NO3 + - compartment: "x" + - formula: "C9H14NO3" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02639x + - id: "m02639x" - name: "octadecenoylcarnitine(5)" - - compartment: x - - formula: C25H47NO4 + - compartment: "x" + - formula: "C25H47NO4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02646x + - id: "m02646x" - name: "oleate" - - compartment: x - - formula: C18H33O2 + - compartment: "x" + - formula: "C18H33O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02648x + - id: "m02648x" - name: "omega-3-arachidonic acid" - - compartment: x - - formula: C20H31O2 + - compartment: "x" + - formula: "C20H31O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02660x + - id: "m02660x" - name: "orotidine-5-phosphate" - - compartment: x - - formula: C10H10N2O11P + - compartment: "x" + - formula: "C10H10N2O11P" - charge: -3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: oxyp_x + - id: "oxyp_x" - name: "oxypurinol" - - compartment: x - - formula: C5H4N4O2 + - compartment: "x" + - formula: "C5H4N4O2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: oxy1rb_x + - id: "oxy1rb_x" - name: "oxypurinol-1-riboside" - - compartment: x - - formula: C10H12N4O7 + - compartment: "x" + - formula: "C10H12N4O7" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: oxy7rb_x + - id: "oxy7rb_x" - name: "oxypurinol-7-riboside" - - compartment: x - - formula: C10H12N4O7 + - compartment: "x" + - formula: "C10H12N4O7" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02674x + - id: "m02674x" - name: "palmitate" - - compartment: x - - formula: C16H31O2 + - compartment: "x" + - formula: "C16H31O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02675x + - id: "m02675x" - name: "palmitolate" - - compartment: x - - formula: C16H29O2 + - compartment: "x" + - formula: "C16H29O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02676x + - id: "m02676x" - name: "palmitoleoyl-carnitine" - - compartment: x - - formula: C23H43NO4 + - compartment: "x" + - formula: "C23H43NO4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02679x + - id: "m02679x" - name: "pantetheine" - - compartment: x - - formula: C11H22N2O4S + - compartment: "x" + - formula: "C11H22N2O4S" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02690x + - id: "m02690x" - name: "pentadecylic acid" - - compartment: x - - formula: C15H29O2 + - compartment: "x" + - formula: "C15H29O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02714x + - id: "m02714x" - name: "peroxynitrite" - - compartment: x - - formula: NO3 + - compartment: "x" + - formula: "NO3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02720x + - id: "m02720x" - name: "phenylacetate" - - compartment: x - - formula: C8H7O2 + - compartment: "x" + - formula: "C8H7O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02725x + - id: "m02725x" - name: "phenylpyruvate" - - compartment: x - - formula: C9H7O3 + - compartment: "x" + - formula: "C9H7O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02733x + - id: "m02733x" - name: "phosphatidate-LD-TAG pool" - - compartment: x - - formula: C5H5O8PR2 + - compartment: "x" + - formula: "C5H5O8PR2" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02738x + - id: "m02738x" - name: "phosphocholine" - - compartment: x - - formula: C5H13NO4P + - compartment: "x" + - formula: "C5H13NO4P" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02741x + - id: "m02741x" - name: "phosphopantetheine" - - compartment: x - - formula: C11H21N2O7PS + - compartment: "x" + - formula: "C11H21N2O7PS" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02745x + - id: "m02745x" - name: "physeteric acid" - - compartment: x - - formula: C14H25O2 + - compartment: "x" + - formula: "C14H25O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02752x + - id: "m02752x" - name: "picolinic acid" - - compartment: x - - formula: C6H4NO2 + - compartment: "x" + - formula: "C6H4NO2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ptvst_x + - id: "ptvst_x" - name: "pitavastatin" - - compartment: x - - formula: C50H46CaF2N2O8 + - compartment: "x" + - formula: "C50H46CaF2N2O8" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ptvstm13_x + - id: "ptvstm13_x" - name: "pitavastatin-M13" - - compartment: x - - formula: C50H46CaF2N2O10 + - compartment: "x" + - formula: "C50H46CaF2N2O10" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ptvstm3_x + - id: "ptvstm3_x" - name: "pitavastatin-M3" - - compartment: x - - formula: C50H42CaF2N2O8 + - compartment: "x" + - formula: "C50H42CaF2N2O8" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: ptvstlac_x + - id: "ptvstlac_x" - name: "pitavastatin-lactone" - - compartment: x - - formula: C50H44CaF2N2O6 + - compartment: "x" + - formula: "C50H44CaF2N2O6" - charge: 2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02753x + - id: "m02753x" - name: "plasminogen" - - compartment: x - - formula: C3948H6073N1123O1213S59 + - compartment: "x" + - formula: "C3948H6073N1123O1213S59" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02756x + - id: "m02756x" - name: "porphobilinogen" - - compartment: x - - formula: C10H13N2O4 + - compartment: "x" + - formula: "C10H13N2O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pvs_x + - id: "pvs_x" - name: "pravastatin" - - compartment: x - - formula: C23H35NaO7 + - compartment: "x" + - formula: "C23H35NaO7" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: pvsgluc_x + - id: "pvsgluc_x" - name: "pravastatin glucuronide" - - compartment: x - - formula: C29H42NaO13 + - compartment: "x" + - formula: "C29H42NaO13" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02763x + - id: "m02763x" - name: "pregnenolone" - - compartment: x - - formula: C21H32O2 + - compartment: "x" + - formula: "C21H32O2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02762x + - id: "m02762x" - name: "pregnenolone sulfate" - - compartment: x - - formula: C21H31O5S + - compartment: "x" + - formula: "C21H31O5S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02766x + - id: "m02766x" - name: "pristanic acid" - - compartment: x - - formula: C19H37O2 + - compartment: "x" + - formula: "C19H37O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02771x + - id: "m02771x" - name: "propane-1,2-diol" - - compartment: x - - formula: C3H8O2 + - compartment: "x" + - formula: "C3H8O2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02776x + - id: "m02776x" - name: "prostaglandin A1" - - compartment: x - - formula: C20H31O4 + - compartment: "x" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02777x + - id: "m02777x" - name: "prostaglandin A2" - - compartment: x - - formula: C20H29O4 + - compartment: "x" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02778x + - id: "m02778x" - name: "prostaglandin B1" - - compartment: x - - formula: C20H31O4 + - compartment: "x" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02779x + - id: "m02779x" - name: "prostaglandin B2" - - compartment: x - - formula: C20H29O4 + - compartment: "x" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02780x + - id: "m02780x" - name: "prostaglandin C1" - - compartment: x - - formula: C20H31O4 + - compartment: "x" + - formula: "C20H31O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02781x + - id: "m02781x" - name: "prostaglandin C2" - - compartment: x - - formula: C20H29O4 + - compartment: "x" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02782x + - id: "m02782x" - name: "prostaglandin D1" - - compartment: x - - formula: C20H33O5 + - compartment: "x" + - formula: "C20H33O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02784x + - id: "m02784x" - name: "prostaglandin D3" - - compartment: x - - formula: C20H29O5 + - compartment: "x" + - formula: "C20H29O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02787x + - id: "m02787x" - name: "prostaglandin E3" - - compartment: x - - formula: C20H29O5 + - compartment: "x" + - formula: "C20H29O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02788x + - id: "m02788x" - name: "prostaglandin F1alpha" - - compartment: x - - formula: C20H35O5 + - compartment: "x" + - formula: "C20H35O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02790x + - id: "m02790x" - name: "prostaglandin F2beta" - - compartment: x - - formula: C20H33O5 + - compartment: "x" + - formula: "C20H33O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02792x + - id: "m02792x" - name: "prostaglandin G2" - - compartment: x - - formula: C20H31O6 + - compartment: "x" + - formula: "C20H31O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02794x + - id: "m02794x" - name: "prostaglandin H2" - - compartment: x - - formula: C20H31O5 + - compartment: "x" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02795x + - id: "m02795x" - name: "prostaglandin I2" - - compartment: x - - formula: C20H31O5 + - compartment: "x" + - formula: "C20H31O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02796x + - id: "m02796x" - name: "prostaglandin J2" - - compartment: x - - formula: C20H29O4 + - compartment: "x" + - formula: "C20H29O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02802x + - id: "m02802x" - name: "prothrombin" - - compartment: x - - formula: C3066H4754N874O941S35 + - compartment: "x" + - formula: "C3066H4754N874O941S35" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02803x + - id: "m02803x" - name: "protoporphyrin" - - compartment: x - - formula: C34H32N4O4 + - compartment: "x" + - formula: "C34H32N4O4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02805x + - id: "m02805x" - name: "provitamin D3" - - compartment: x - - formula: C27H44O + - compartment: "x" + - formula: "C27H44O" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02812x + - id: "m02812x" - name: "putrescine" - - compartment: x - - formula: C4H14N2 + - compartment: "x" + - formula: "C4H14N2" - charge: 2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02821x + - id: "m02821x" - name: "quinidine" - - compartment: x - - formula: C20H25N2O2 + - compartment: "x" + - formula: "C20H25N2O2" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02822x + - id: "m02822x" - name: "quinolinate" - - compartment: x - - formula: C7H3NO4 + - compartment: "x" + - formula: "C7H3NO4" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02823x + - id: "m02823x" - name: "quinonoid dihydrobiopterin" - - compartment: x - - formula: C9H13N5O3 + - compartment: "x" + - formula: "C9H13N5O3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02832x + - id: "m02832x" - name: "retinal" - - compartment: x - - formula: C20H28O + - compartment: "x" + - formula: "C20H28O" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02837x + - id: "m02837x" - name: "retinyl palmitate" - - compartment: x - - formula: C36H60O2 + - compartment: "x" + - formula: "C36H60O2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02839x + - id: "m02839x" - name: "reverse triiodthyronine" - - compartment: x - - formula: C15H12I3NO4 + - compartment: "x" + - formula: "C15H12I3NO4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: rsv_x + - id: "rsv_x" - name: "rosuvastatin" - - compartment: x - - formula: C44H54CaF2N6O12S2 + - compartment: "x" + - formula: "C44H54CaF2N6O12S2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: rsvlac_x + - id: "rsvlac_x" - name: "rosuvastatin-5S-lactone" - - compartment: x - - formula: C44H52CaF2N6O10S2 + - compartment: "x" + - formula: "C44H52CaF2N6O10S2" - charge: 2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02868x + - id: "m02868x" - name: "saccharopine" - - compartment: x - - formula: C11H19N2O6 + - compartment: "x" + - formula: "C11H19N2O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02875x + - id: "m02875x" - name: "salsolinol" - - compartment: x - - formula: C10H14NO2 + - compartment: "x" + - formula: "C10H14NO2" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02891x + - id: "m02891x" - name: "selenomethionine" - - compartment: x - - formula: C5H11NO2Se + - compartment: "x" + - formula: "C5H11NO2Se" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: smvacid_x + - id: "smvacid_x" - name: "simvastatin dihydroxy acid form" - - compartment: x - - formula: C25H39O6 + - compartment: "x" + - formula: "C25H39O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: smv_x + - id: "smv_x" - name: "simvastatin lactone form" - - compartment: x - - formula: C25H38O5 + - compartment: "x" + - formula: "C25H38O5" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02912x + - id: "m02912x" - name: "sn-glycerol-3-PC" - - compartment: x - - formula: C8H20NO6P + - compartment: "x" + - formula: "C8H20NO6P" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02914x + - id: "m02914x" - name: "sn-glycerol-3-phosphate" - - compartment: x - - formula: C3H7O6P + - compartment: "x" + - formula: "C3H7O6P" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02923x + - id: "m02923x" - name: "spermidine" - - compartment: x - - formula: C7H22N3 + - compartment: "x" + - formula: "C7H22N3" - charge: 3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02920x + - id: "m02920x" - name: "spermidine dialdehyde" - - compartment: x - - formula: C7H14NO2 + - compartment: "x" + - formula: "C7H14NO2" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02921x + - id: "m02921x" - name: "spermidine monoaldehyde 1" - - compartment: x - - formula: C7H18N2O + - compartment: "x" + - formula: "C7H18N2O" - charge: 2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02922x + - id: "m02922x" - name: "spermidine monoaldehyde 2" - - compartment: x - - formula: C7H18N2O + - compartment: "x" + - formula: "C7H18N2O" - charge: 2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02925x + - id: "m02925x" - name: "spermine monoaldehyde" - - compartment: x - - formula: C10H26N3O + - compartment: "x" + - formula: "C10H26N3O" - charge: 3 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02927x + - id: "m02927x" - name: "sphinganine" - - compartment: x - - formula: C18H40NO2 + - compartment: "x" + - formula: "C18H40NO2" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02929x + - id: "m02929x" - name: "sphingosine" - - compartment: x - - formula: C18H38NO2 + - compartment: "x" + - formula: "C18H38NO2" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02933x + - id: "m02933x" - name: "squalene" - - compartment: x - - formula: C30H50 + - compartment: "x" + - formula: "C30H50" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02938x + - id: "m02938x" - name: "stearate" - - compartment: x - - formula: C18H35O2 + - compartment: "x" + - formula: "C18H35O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02939x + - id: "m02939x" - name: "stearidonic acid" - - compartment: x - - formula: C18H27O2 + - compartment: "x" + - formula: "C18H27O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02940x + - id: "m02940x" - name: "stearoylcarnitine" - - compartment: x - - formula: C25H49NO4 + - compartment: "x" + - formula: "C25H49NO4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02942x + - id: "m02942x" - name: "succinate semialdehyde" - - compartment: x - - formula: C4H5O3 + - compartment: "x" + - formula: "C4H5O3" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02950x + - id: "m02950x" - name: "sulfochenodeoxycholate" - - compartment: x - - formula: C24H38O7S + - compartment: "x" + - formula: "C24H38O7S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02951x + - id: "m02951x" - name: "sulfoglycolithocholate" - - compartment: x - - formula: C26H41NO7S + - compartment: "x" + - formula: "C26H41NO7S" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02952x + - id: "m02952x" - name: "sulfotaurolithocholate" - - compartment: x - - formula: C26H43NO8S2 + - compartment: "x" + - formula: "C26H43NO8S2" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: stacmp_x + - id: "stacmp_x" - name: "sulphate-conjugate of thiomethyl-acetaminophen" - - compartment: x - - formula: C9H10NO5S2 + - compartment: "x" + - formula: "C9H10NO5S2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: s3meacmp_x + - id: "s3meacmp_x" - name: "sulphate-conjugate-3-methoxy-acetaminophen" - - compartment: x - - formula: C8H8NO6S + - compartment: "x" + - formula: "C8H8NO6S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: sulpacmp_x + - id: "sulpacmp_x" - name: "sulphate-conjugate-acetaminophen" - - compartment: x - - formula: C8H8NO5S + - compartment: "x" + - formula: "C8H8NO5S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tauribup_S_x + - id: "tauribup_S_x" - name: "taurine conjugate of S-ibuprofen" - - compartment: x - - formula: C15H22NO4S + - compartment: "x" + - formula: "C15H22NO4S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02964x + - id: "m02964x" - name: "taurodeoxycholate" - - compartment: x - - formula: C26H44NO6S + - compartment: "x" + - formula: "C26H44NO6S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02965x + - id: "m02965x" - name: "taurolithocholate" - - compartment: x - - formula: C26H44NO5S + - compartment: "x" + - formula: "C26H44NO5S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02966x + - id: "m02966x" - name: "tauroursodeoxycholate" - - compartment: x - - formula: C26H45NO6S + - compartment: "x" + - formula: "C26H45NO6S" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02974x + - id: "m02974x" - name: "tetradecenoylcarnitine(5)" - - compartment: x - - formula: C21H39NO4 + - compartment: "x" + - formula: "C21H39NO4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02978x + - id: "m02978x" - name: "tetrahydrobiopterin" - - compartment: x - - formula: C9H15N5O3 + - compartment: "x" + - formula: "C9H15N5O3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tsacmgluc_x + - id: "tsacmgluc_x" - name: "thiomethyl-sulphoxide-acetaminophen-glucuronide" - - compartment: x - - formula: C15H18NO9S + - compartment: "x" + - formula: "C15H18NO9S" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tsacmsul_x + - id: "tsacmsul_x" - name: "thiomethyl-sulphoxide-acetaminophen-sulphate" - - compartment: x - - formula: C9H10NO6S2 + - compartment: "x" + - formula: "C9H10NO6S2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: thrfvs_x + - id: "thrfvs_x" - name: "threo-isomer of fluvastain" - - compartment: x - - formula: C24H25FNNaO4 + - compartment: "x" + - formula: "C24H25FNNaO4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02992x + - id: "m02992x" - name: "threonate" - - compartment: x - - formula: C4H7O5 + - compartment: "x" + - formula: "C4H7O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m02995x + - id: "m02995x" - name: "thromboxane B2" - - compartment: x - - formula: C20H33O6 + - compartment: "x" + - formula: "C20H33O6" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m03037x + - id: "m03037x" - name: "trans-4-hydroxy-L-proline" - - compartment: x - - formula: C5H9NO3 + - compartment: "x" + - formula: "C5H9NO3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tlacfvs_x + - id: "tlacfvs_x" - name: "trans-lactone-fluvastatin" - - compartment: x - - formula: C24H23FNNaO3 + - compartment: "x" + - formula: "C24H23FNNaO3" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m03045x + - id: "m03045x" - name: "tricosanoic acid" - - compartment: x - - formula: C23H45O2 + - compartment: "x" + - formula: "C23H45O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m03051x + - id: "m03051x" - name: "tridecylic acid" - - compartment: x - - formula: C13H25O2 + - compartment: "x" + - formula: "C13H25O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: tripvs_x + - id: "tripvs_x" - name: "triol metabolite of pravastatin" - - compartment: x - - formula: C23H37NaO9 + - compartment: "x" + - formula: "C23H37NaO9" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m03088x + - id: "m03088x" - name: "tryptamine" - - compartment: x - - formula: C10H13N2 + - compartment: "x" + - formula: "C10H13N2" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m03099x + - id: "m03099x" - name: "tyramine" - - compartment: x - - formula: C8H12NO + - compartment: "x" + - formula: "C8H12NO" - charge: 1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m03102x + - id: "m03102x" - name: "ubiquinol" - - compartment: x - - formula: C59H92O4 + - compartment: "x" + - formula: "C59H92O4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m03103x + - id: "m03103x" - name: "ubiquinone" - - compartment: x - - formula: C59H90O4 + - compartment: "x" + - formula: "C59H90O4" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m03124x + - id: "m03124x" - name: "urocanate" - - compartment: x - - formula: C6H5N2O2 + - compartment: "x" + - formula: "C6H5N2O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m03125x + - id: "m03125x" - name: "uroporphyrin I" - - compartment: x - - formula: C40H30N4O16 + - compartment: "x" + - formula: "C40H30N4O16" - charge: -8 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m03127x + - id: "m03127x" - name: "uroporphyrinogen I" - - compartment: x - - formula: C40H36N4O16 + - compartment: "x" + - formula: "C40H36N4O16" - charge: -8 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m03129x + - id: "m03129x" - name: "ursodeoxycholate" - - compartment: x - - formula: C24H39O4 + - compartment: "x" + - formula: "C24H39O4" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m03136x + - id: "m03136x" - name: "vanillylmandelate" - - compartment: x - - formula: C9H9O5 + - compartment: "x" + - formula: "C9H9O5" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m03148x + - id: "m03148x" - name: "xanthine" - - compartment: x - - formula: C5H4N4O2 + - compartment: "x" + - formula: "C5H4N4O2" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m03149x + - id: "m03149x" - name: "xanthosine" - - compartment: x - - formula: C10H12N4O6 + - compartment: "x" + - formula: "C10H12N4O6" - charge: 0 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m03150x + - id: "m03150x" - name: "xanthosine-5-phosphate" - - compartment: x - - formula: C10H11N4O9P + - compartment: "x" + - formula: "C10H11N4O9P" - charge: -2 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: m03153x + - id: "m03153x" - name: "ximenic acid" - - compartment: x - - formula: C26H49O2 + - compartment: "x" + - formula: "C26H49O2" - charge: -1 - - inchis: - - metFrom: Recon3D + - inchis: "" + - metFrom: "Recon3D" - !!omap - - id: temp001s + - id: "temp001s" - name: "biomass" - - compartment: s - - formula: X + - compartment: "s" + - formula: "X" - charge: 0 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10000s + - id: "m10000s" - name: "others" - - compartment: s - - formula: + - compartment: "s" + - formula: "" - charge: 0 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10001s + - id: "m10001s" - name: "steroids" - - compartment: s - - formula: + - compartment: "s" + - formula: "" - charge: 0 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10002s + - id: "m10002s" - name: "xenobiotics" - - compartment: s - - formula: + - compartment: "s" + - formula: "" - charge: 0 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10003s + - id: "m10003s" - name: "arachidonate derivatives" - - compartment: s - - formula: + - compartment: "s" + - formula: "" - charge: 0 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m00591x + - id: "m00591x" - name: "20-hydroxy-arachidonate" - - compartment: x - - formula: C20H31O3 + - compartment: "x" + - formula: "C20H31O3" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m01435x + - id: "m01435x" - name: "chenodiol" - - compartment: x - - formula: C24H39O4 + - compartment: "x" + - formula: "C24H39O4" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m02328x + - id: "m02328x" - name: "LacCer pool" - - compartment: x - - formula: C31H56NO13R + - compartment: "x" + - formula: "C31H56NO13R" - charge: 0 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: chylo_hs_x + - id: "chylo_hs_x" - name: "Chylomicron Lipoprotein" - - compartment: x - - formula: X + - compartment: "x" + - formula: "X" - charge: 0 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10004r + - id: "m10004r" - name: "cholesterol-ester plasma pool" - - compartment: r - - formula: C28H45O2R + - compartment: "r" + - formula: "C28H45O2R" - charge: 0 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10004l + - id: "m10004l" - name: "cholesterol-ester plasma pool" - - compartment: l - - formula: C28H45O2R + - compartment: "l" + - formula: "C28H45O2R" - charge: 0 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10005s + - id: "m10005s" - name: "fatty acid pool" - - compartment: s - - formula: CO2R + - compartment: "s" + - formula: "CO2R" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10005c + - id: "m10005c" - name: "fatty acid pool" - - compartment: c - - formula: CO2R + - compartment: "c" + - formula: "CO2R" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10005l + - id: "m10005l" - name: "fatty acid pool" - - compartment: l - - formula: CO2R + - compartment: "l" + - formula: "CO2R" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10005r + - id: "m10005r" - name: "fatty acid pool" - - compartment: r - - formula: CO2R + - compartment: "r" + - formula: "CO2R" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10005p + - id: "m10005p" - name: "fatty acid pool" - - compartment: p - - formula: CO2R + - compartment: "p" + - formula: "CO2R" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10005x + - id: "m10005x" - name: "fatty acid pool" - - compartment: x - - formula: CO2R + - compartment: "x" + - formula: "CO2R" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10006s + - id: "m10006s" - name: "1-acylglycerol-3P pool" - - compartment: s - - formula: C4H6O7PR + - compartment: "s" + - formula: "C4H6O7PR" - charge: -2 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10006m + - id: "m10006m" - name: "1-acylglycerol-3P pool" - - compartment: m - - formula: C4H6O7PR + - compartment: "m" + - formula: "C4H6O7PR" - charge: -2 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10006c + - id: "m10006c" - name: "1-acylglycerol-3P pool" - - compartment: c - - formula: C4H6O7PR + - compartment: "c" + - formula: "C4H6O7PR" - charge: -2 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10006x + - id: "m10006x" - name: "1-acylglycerol-3P pool" - - compartment: x - - formula: C4H6O7PR + - compartment: "x" + - formula: "C4H6O7PR" - charge: -2 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10007c + - id: "m10007c" - name: "acyl-CoA pool" - - compartment: c - - formula: C22H31N7O17P3SR + - compartment: "c" + - formula: "C22H31N7O17P3SR" - charge: -4 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10007m + - id: "m10007m" - name: "acyl-CoA pool" - - compartment: m - - formula: C22H31N7O17P3SR + - compartment: "m" + - formula: "C22H31N7O17P3SR" - charge: -4 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10007g + - id: "m10007g" - name: "acyl-CoA pool" - - compartment: g - - formula: C22H31N7O17P3SR + - compartment: "g" + - formula: "C22H31N7O17P3SR" - charge: -4 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10007p + - id: "m10007p" - name: "acyl-CoA pool" - - compartment: p - - formula: C22H31N7O17P3SR + - compartment: "p" + - formula: "C22H31N7O17P3SR" - charge: -4 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10008c + - id: "m10008c" - name: "protein C terminal" - - compartment: c - - formula: CO2R + - compartment: "c" + - formula: "CO2R" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10009c + - id: "m10009c" - name: "protein N terminal" - - compartment: c - - formula: H3NR + - compartment: "c" + - formula: "H3NR" - charge: 1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10010c + - id: "m10010c" - name: "S-[(2E,6E)-farnesyl]-L-cysteine methyl ester" - - compartment: c - - formula: C19H34NO2S + - compartment: "c" + - formula: "C19H34NO2S" - charge: 1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10011c + - id: "m10011c" - name: "N-formyl-L-glutamate" - - compartment: c - - formula: C6H7NO5 + - compartment: "c" + - formula: "C6H7NO5" - charge: -2 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10011s + - id: "m10011s" - name: "N-formyl-L-glutamate" - - compartment: s - - formula: C6H7NO5 + - compartment: "s" + - formula: "C6H7NO5" - charge: -2 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10011x + - id: "m10011x" - name: "N-formyl-L-glutamate" - - compartment: x - - formula: C6H7NO5 + - compartment: "x" + - formula: "C6H7NO5" - charge: -2 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m02956c + - id: "m02956c" - name: "TAG-chylomicron pool" - - compartment: c - - formula: C6H5O6R3 + - compartment: "c" + - formula: "C6H5O6R3" - charge: 0 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m02956l + - id: "m02956l" - name: "TAG-chylomicron pool" - - compartment: l - - formula: C6H5O6R3 + - compartment: "l" + - formula: "C6H5O6R3" - charge: 0 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m02959r + - id: "m02959r" - name: "TAG-VLDL pool" - - compartment: r - - formula: C6H5O6R3 + - compartment: "r" + - formula: "C6H5O6R3" - charge: 0 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m00235g + - id: "m00235g" - name: "1,2-diacylglycerol-LD-PC pool" - - compartment: g - - formula: C5H6O5R2 + - compartment: "g" + - formula: "C5H6O5R2" - charge: 0 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m00235n + - id: "m00235n" - name: "1,2-diacylglycerol-LD-PC pool" - - compartment: n - - formula: C5H6O5R2 + - compartment: "n" + - formula: "C5H6O5R2" - charge: 0 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m00235s + - id: "m00235s" - name: "1,2-diacylglycerol-LD-PC pool" - - compartment: s - - formula: C5H6O5R2 + - compartment: "s" + - formula: "C5H6O5R2" - charge: 0 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m00235x + - id: "m00235x" - name: "1,2-diacylglycerol-LD-PC pool" - - compartment: x - - formula: C5H6O5R2 + - compartment: "x" + - formula: "C5H6O5R2" - charge: 0 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m00237n + - id: "m00237n" - name: "1,2-diacylglycerol-LD-PI pool" - - compartment: n - - formula: C5H6O5R2 + - compartment: "n" + - formula: "C5H6O5R2" - charge: 0 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m01426c + - id: "m01426c" - name: "CDP-diacylglycerol-CL pool" - - compartment: c - - formula: C14H17N3O15P2R2 + - compartment: "c" + - formula: "C14H17N3O15P2R2" - charge: -2 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m01807c + - id: "m01807c" - name: "fatty acid-chylomicron pool" - - compartment: c - - formula: CHO2R + - compartment: "c" + - formula: "CHO2R" - charge: 0 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m01820c + - id: "m01820c" - name: "fatty acid-VLDL pool" - - compartment: c - - formula: CHO2R + - compartment: "c" + - formula: "CHO2R" - charge: 0 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m02728m + - id: "m02728m" - name: "phosphatidate-LD-PC pool" - - compartment: m - - formula: C5H5O8PR2 + - compartment: "m" + - formula: "C5H5O8PR2" - charge: -2 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m02730m + - id: "m02730m" - name: "phosphatidate-LD-PI pool" - - compartment: m - - formula: C5H5O8PR2 + - compartment: "m" + - formula: "C5H5O8PR2" - charge: -2 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m02730r + - id: "m02730r" - name: "phosphatidate-LD-PI pool" - - compartment: r - - formula: C5H5O8PR2 + - compartment: "r" + - formula: "C5H5O8PR2" - charge: -2 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m02730g + - id: "m02730g" - name: "phosphatidate-LD-PI pool" - - compartment: g - - formula: C5H5O8PR2 + - compartment: "g" + - formula: "C5H5O8PR2" - charge: -2 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m02731r + - id: "m02731r" - name: "phosphatidate-LD-PS pool" - - compartment: r - - formula: C5H5O8PR2 + - compartment: "r" + - formula: "C5H5O8PR2" - charge: -2 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m02731g + - id: "m02731g" - name: "phosphatidate-LD-PS pool" - - compartment: g - - formula: C5H5O8PR2 + - compartment: "g" + - formula: "C5H5O8PR2" - charge: -2 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m02838s + - id: "m02838s" - name: "retinyl-ester" - - compartment: s - - formula: C21H29O2R + - compartment: "s" + - formula: "C21H29O2R" - charge: 0 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m02838x + - id: "m02838x" - name: "retinyl-ester" - - compartment: x - - formula: C21H29O2R + - compartment: "x" + - formula: "C21H29O2R" - charge: 0 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m00196r + - id: "m00196r" - name: "[protein]" - - compartment: r - - formula: X + - compartment: "r" + - formula: "X" - charge: 0 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10012c + - id: "m10012c" - name: "cofactor_pool_biomass" - - compartment: c - - formula: + - compartment: "c" + - formula: "" - charge: 0 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10013c + - id: "m10013c" - name: "protein_pool_biomass" - - compartment: c - - formula: + - compartment: "c" + - formula: "" - charge: 0 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10014c + - id: "m10014c" - name: "lipid_pool_biomass" - - compartment: c - - formula: + - compartment: "c" + - formula: "" - charge: 0 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10015c + - id: "m10015c" - name: "metabolite_pool_biomass" - - compartment: c - - formula: + - compartment: "c" + - formula: "" - charge: 0 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10016c + - id: "m10016c" - name: "2,3-epoxy-2,3-dihydro-2-methyl-3-phytyl-1,4-naphthoquinone" - - compartment: c - - formula: C31H46O3 + - compartment: "c" + - formula: "C31H46O3" - charge: 0 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10017c + - id: "m10017c" - name: "3-hydroxy-2-methyl-3-phytyl-2,3-dihydronaphthoquinone" - - compartment: c - - formula: C31H48O3 + - compartment: "c" + - formula: "C31H48O3" - charge: 0 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10018c + - id: "m10018c" - name: "5-Hydroxy-2-oxo-4-ureido-2,5-dihydro-1H-imidazole-5-carboxylate" - - compartment: c - - formula: C5H5N4O5 + - compartment: "c" + - formula: "C5H5N4O5" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10019c + - id: "m10019c" - name: "5alpha-Pregnan-20alpha-ol-3-one" - - compartment: c - - formula: C21H34O2 + - compartment: "c" + - formula: "C21H34O2" - charge: 0 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10020c + - id: "m10020c" - name: "17alpha,20alpha-Dihydroxypregn-4-en-3-one" - - compartment: c - - formula: C21H32O3 + - compartment: "c" + - formula: "C21H32O3" - charge: 0 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10021c + - id: "m10021c" - name: "alpha-muricholic acid" - - compartment: c - - formula: C24H39O5 + - compartment: "c" + - formula: "C24H39O5" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10021s + - id: "m10021s" - name: "alpha-muricholic acid" - - compartment: s - - formula: C24H39O5 + - compartment: "s" + - formula: "C24H39O5" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10021x + - id: "m10021x" - name: "alpha-muricholic acid" - - compartment: x - - formula: C24H39O5 + - compartment: "x" + - formula: "C24H39O5" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10022c + - id: "m10022c" - name: "beta-muricholic acid" - - compartment: c - - formula: C24H39O5 + - compartment: "c" + - formula: "C24H39O5" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10022s + - id: "m10022s" - name: "beta-muricholic acid" - - compartment: s - - formula: C24H39O5 + - compartment: "s" + - formula: "C24H39O5" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10022x + - id: "m10022x" - name: "beta-muricholic acid" - - compartment: x - - formula: C24H39O5 + - compartment: "x" + - formula: "C24H39O5" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10023c + - id: "m10023c" - name: "dehydrocholic acid" - - compartment: c - - formula: C24H33O5 + - compartment: "c" + - formula: "C24H33O5" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10023s + - id: "m10023s" - name: "dehydrocholic acid" - - compartment: s - - formula: C24H33O5 + - compartment: "s" + - formula: "C24H33O5" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10023x + - id: "m10023x" - name: "dehydrocholic acid" - - compartment: x - - formula: C24H33O5 + - compartment: "x" + - formula: "C24H33O5" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10024c + - id: "m10024c" - name: "tauro-alpha-muricholic acid" - - compartment: c - - formula: C26H44NO7S + - compartment: "c" + - formula: "C26H44NO7S" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10024s + - id: "m10024s" - name: "tauro-alpha-muricholic acid" - - compartment: s - - formula: C26H44NO7S + - compartment: "s" + - formula: "C26H44NO7S" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10024x + - id: "m10024x" - name: "tauro-alpha-muricholic acid" - - compartment: x - - formula: C26H44NO7S + - compartment: "x" + - formula: "C26H44NO7S" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10025c + - id: "m10025c" - name: "omega-muricholic acid" - - compartment: c - - formula: C24H39O5 + - compartment: "c" + - formula: "C24H39O5" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10025s + - id: "m10025s" - name: "omega-muricholic acid" - - compartment: s - - formula: C24H39O5 + - compartment: "s" + - formula: "C24H39O5" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10025x + - id: "m10025x" - name: "omega-muricholic acid" - - compartment: x - - formula: C24H39O5 + - compartment: "x" + - formula: "C24H39O5" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10026c + - id: "m10026c" - name: "taurohyocholic acid" - - compartment: c - - formula: C26H44NO7S + - compartment: "c" + - formula: "C26H44NO7S" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10026s + - id: "m10026s" - name: "taurohyocholic acid" - - compartment: s - - formula: C26H44NO7S + - compartment: "s" + - formula: "C26H44NO7S" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10026x + - id: "m10026x" - name: "taurohyocholic acid" - - compartment: x - - formula: C26H44NO7S + - compartment: "x" + - formula: "C26H44NO7S" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10027c + - id: "m10027c" - name: "glycohyocholic acid" - - compartment: c - - formula: C26H42NO6 + - compartment: "c" + - formula: "C26H42NO6" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10027s + - id: "m10027s" - name: "glycohyocholic acid" - - compartment: s - - formula: C26H42NO6 + - compartment: "s" + - formula: "C26H42NO6" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10027x + - id: "m10027x" - name: "glycohyocholic acid" - - compartment: x - - formula: C26H42NO6 + - compartment: "x" + - formula: "C26H42NO6" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10028c + - id: "m10028c" - name: "glycohyodeoxycholic acid" - - compartment: c - - formula: C26H42NO5 + - compartment: "c" + - formula: "C26H42NO5" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10028s + - id: "m10028s" - name: "glycohyodeoxycholic acid" - - compartment: s - - formula: C26H42NO5 + - compartment: "s" + - formula: "C26H42NO5" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10028x + - id: "m10028x" - name: "glycohyodeoxycholic acid" - - compartment: x - - formula: C26H42NO5 + - compartment: "x" + - formula: "C26H42NO5" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10029c + - id: "m10029c" - name: "glycodehydrocholic acid" - - compartment: c - - formula: C26H36NO6 + - compartment: "c" + - formula: "C26H36NO6" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10029s + - id: "m10029s" - name: "glycodehydrocholic acid" - - compartment: s - - formula: C26H36NO6 + - compartment: "s" + - formula: "C26H36NO6" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10029x + - id: "m10029x" - name: "glycodehydrocholic acid" - - compartment: x - - formula: C26H36NO6 + - compartment: "x" + - formula: "C26H36NO6" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10030c + - id: "m10030c" - name: "hyocholic acid" - - compartment: c - - formula: C24H39O5 + - compartment: "c" + - formula: "C24H39O5" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10030s + - id: "m10030s" - name: "hyocholic acid" - - compartment: s - - formula: C24H39O5 + - compartment: "s" + - formula: "C24H39O5" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10030x + - id: "m10030x" - name: "hyocholic acid" - - compartment: x - - formula: C24H39O5 + - compartment: "x" + - formula: "C24H39O5" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10031c + - id: "m10031c" - name: "tauro-omega-muricholic acid" - - compartment: c - - formula: C26H44NO7S + - compartment: "c" + - formula: "C26H44NO7S" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10031s + - id: "m10031s" - name: "tauro-omega-muricholic acid" - - compartment: s - - formula: C26H44NO7S + - compartment: "s" + - formula: "C26H44NO7S" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10031x + - id: "m10031x" - name: "tauro-omega-muricholic acid" - - compartment: x - - formula: C26H44NO7S + - compartment: "x" + - formula: "C26H44NO7S" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10032c + - id: "m10032c" - name: "tauro-beta-muricholic acid" - - compartment: c - - formula: C26H44NO7S + - compartment: "c" + - formula: "C26H44NO7S" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10032s + - id: "m10032s" - name: "tauro-beta-muricholic acid" - - compartment: s - - formula: C26H44NO7S + - compartment: "s" + - formula: "C26H44NO7S" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10032x + - id: "m10032x" - name: "tauro-beta-muricholic acid" - - compartment: x - - formula: C26H44NO7S + - compartment: "x" + - formula: "C26H44NO7S" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10033c + - id: "m10033c" - name: "murideoxycholic acid" - - compartment: c - - formula: C24H39O4 + - compartment: "c" + - formula: "C24H39O4" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10033s + - id: "m10033s" - name: "murideoxycholic acid" - - compartment: s - - formula: C24H39O4 + - compartment: "s" + - formula: "C24H39O4" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10033x + - id: "m10033x" - name: "murideoxycholic acid" - - compartment: x - - formula: C24H39O4 + - compartment: "x" + - formula: "C24H39O4" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10034c + - id: "m10034c" - name: "taurodehydrocholic acid" - - compartment: c - - formula: C26H38NO7S + - compartment: "c" + - formula: "C26H38NO7S" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10034s + - id: "m10034s" - name: "taurodehydrocholic acid" - - compartment: s - - formula: C26H38NO7S + - compartment: "s" + - formula: "C26H38NO7S" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10034x + - id: "m10034x" - name: "taurodehydrocholic acid" - - compartment: x - - formula: C26H38NO7S + - compartment: "x" + - formula: "C26H38NO7S" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10035c + - id: "m10035c" - name: "alpha-muricholoyl-CoA" - - compartment: c - - formula: C45H70N7O20P3S + - compartment: "c" + - formula: "C45H70N7O20P3S" - charge: -4 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10036c + - id: "m10036c" - name: "beta-muricholoyl-CoA" - - compartment: c - - formula: C45H70N7O20P3S + - compartment: "c" + - formula: "C45H70N7O20P3S" - charge: -4 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10037c + - id: "m10037c" - name: "omega-muricholoyl-CoA" - - compartment: c - - formula: C45H70N7O20P3S + - compartment: "c" + - formula: "C45H70N7O20P3S" - charge: -4 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10038c + - id: "m10038c" - name: "hyocholoyl-CoA" - - compartment: c - - formula: C45H70N7O20P3S + - compartment: "c" + - formula: "C45H70N7O20P3S" - charge: -4 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10039c + - id: "m10039c" - name: "dehydrocholoyl-CoA" - - compartment: c - - formula: C45H64N7O20P3S + - compartment: "c" + - formula: "C45H64N7O20P3S" - charge: -4 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10040c + - id: "m10040c" - name: "hyodeoxycholoyl-CoA" - - compartment: c - - formula: C45H70N7O19P3S + - compartment: "c" + - formula: "C45H70N7O19P3S" - charge: -4 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10041c + - id: "m10041c" - name: "tauro-hyodeoxycholic acid" - - compartment: c - - formula: C26H44NO6S + - compartment: "c" + - formula: "C26H44NO6S" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10041s + - id: "m10041s" - name: "tauro-hyodeoxycholic acid" - - compartment: s - - formula: C26H44NO6S + - compartment: "s" + - formula: "C26H44NO6S" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10041x + - id: "m10041x" - name: "tauro-hyodeoxycholic acid" - - compartment: x - - formula: C26H44NO6S + - compartment: "x" + - formula: "C26H44NO6S" - charge: -1 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - !!omap - - id: m10042c + - id: "m10042c" - name: "ursodeoxycholoyl-CoA" - - compartment: c - - formula: C45H70N7O19P3S + - compartment: "c" + - formula: "C45H70N7O19P3S" - charge: -4 - - inchis: - - metFrom: + - inchis: "" + - metFrom: "" - reactions: - !!omap - - id: HMR_3905 + - id: "HMR_3905" - name: "" - metabolites: !!omap - m01249c: 1 @@ -81103,15 +81103,15 @@ - m02553c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147576 or ENSG00000172955 or ENSG00000180011 or ENSG00000187758 or ENSG00000196344 or ENSG00000196616 or ENSG00000197894 or ENSG00000198099 or ENSG00000248144 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.1;1.1.1.71 - - references: PMID:10868354;PMID:12491384;PMID:12818203;PMID:14674758;PMID:15289102;PMID:15299346;PMID:15327949;PMID:15682493;PMID:15713978 + - gene_reaction_rule: "ENSG00000147576 or ENSG00000172955 or ENSG00000180011 or ENSG00000187758 or ENSG00000196344 or ENSG00000196616 or ENSG00000197894 or ENSG00000198099 or ENSG00000248144" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.1;1.1.1.71" + - references: "PMID:10868354;PMID:12491384;PMID:12818203;PMID:14674758;PMID:15289102;PMID:15299346;PMID:15327949;PMID:15682493;PMID:15713978" - subsystem: - - Glycolysis / Gluconeogenesis + - "Glycolysis / Gluconeogenesis" - confidence_score: 0 - !!omap - - id: HMR_3907 + - id: "HMR_3907" - name: "" - metabolites: !!omap - m01249c: 1 @@ -81121,15 +81121,15 @@ - m02555c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117448 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.2 - - references: + - gene_reaction_rule: "ENSG00000117448" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.2" + - references: "" - subsystem: - - Glycolysis / Gluconeogenesis + - "Glycolysis / Gluconeogenesis" - confidence_score: 0 - !!omap - - id: HMR_4097 + - id: "HMR_4097" - name: "" - metabolites: !!omap - m01252c: -1 @@ -81140,15 +81140,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000131069 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.1 - - references: PMID:10843999;PMID:11150295;PMID:2884217;PMID:4737256;PMID:5995 + - gene_reaction_rule: "ENSG00000131069" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.1" + - references: "PMID:10843999;PMID:11150295;PMID:2884217;PMID:4737256;PMID:5995" - subsystem: - - Glycolysis / Gluconeogenesis + - "Glycolysis / Gluconeogenesis" - confidence_score: 0 - !!omap - - id: HMR_4099 + - id: "HMR_4099" - name: "" - metabolites: !!omap - m01252m: -1 @@ -81159,15 +81159,15 @@ - m02759m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111058 or ENSG00000154930 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.1 - - references: PMID:10843999;PMID:11150295;PMID:2884217;PMID:4737256;PMID:5995 + - gene_reaction_rule: "ENSG00000111058 or ENSG00000154930" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.1" + - references: "PMID:10843999;PMID:11150295;PMID:2884217;PMID:4737256;PMID:5995" - subsystem: - - Glycolysis / Gluconeogenesis + - "Glycolysis / Gluconeogenesis" - confidence_score: 0 - !!omap - - id: HMR_4108 + - id: "HMR_4108" - name: "" - metabolites: !!omap - m01257c: -1 @@ -81177,15 +81177,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000131069 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.1 - - references: PMID:10843999;PMID:14086739;PMID:238571;PMID:2901103 + - gene_reaction_rule: "ENSG00000131069" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.1" + - references: "PMID:10843999;PMID:14086739;PMID:238571;PMID:2901103" - subsystem: - - Glycolysis / Gluconeogenesis + - "Glycolysis / Gluconeogenesis" - confidence_score: 0 - !!omap - - id: HMR_4133 + - id: "HMR_4133" - name: "" - metabolites: !!omap - m01252c: -1 @@ -81195,15 +81195,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000131069 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.1 - - references: PMID:10843999;PMID:14086739;PMID:238571;PMID:2901103 + - gene_reaction_rule: "ENSG00000131069" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.1" + - references: "PMID:10843999;PMID:14086739;PMID:238571;PMID:2901103" - subsystem: - - Glycolysis / Gluconeogenesis + - "Glycolysis / Gluconeogenesis" - confidence_score: 0 - !!omap - - id: HMR_4137 + - id: "HMR_4137" - name: "" - metabolites: !!omap - m01261m: 1 @@ -81214,15 +81214,15 @@ - m02819m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000091140 and ENSG00000110435 and ENSG00000131828 and ENSG00000150768 and ENSG00000163114 and ENSG00000168291 - - rxnFrom: HMRdatabase - - eccodes: 1.2.4.1;2.3.1.12;1.8.1.4;1.2.1.51 - - references: PMID:11079566;PMID:2643922;PMID:8548923 + - gene_reaction_rule: "ENSG00000091140 and ENSG00000110435 and ENSG00000131828 and ENSG00000150768 and ENSG00000163114 and ENSG00000168291" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.4.1;2.3.1.12;1.8.1.4;1.2.1.51" + - references: "PMID:11079566;PMID:2643922;PMID:8548923" - subsystem: - - Glycolysis / Gluconeogenesis + - "Glycolysis / Gluconeogenesis" - confidence_score: 0 - !!omap - - id: HMR_4281 + - id: "HMR_4281" - name: "" - metabolites: !!omap - m02039p: -1 @@ -81232,15 +81232,15 @@ - m02819p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111716 or ENSG00000134333 or ENSG00000151116 or ENSG00000166796 or ENSG00000166800 or ENSG00000171989 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.27 - - references: PMID:12042361;PMID:17045662;PMID:7449128;PMID:9927705 + - gene_reaction_rule: "ENSG00000111716 or ENSG00000134333 or ENSG00000151116 or ENSG00000166796 or ENSG00000166800 or ENSG00000171989" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.27" + - references: "PMID:12042361;PMID:17045662;PMID:7449128;PMID:9927705" - subsystem: - - Glycolysis / Gluconeogenesis + - "Glycolysis / Gluconeogenesis" - confidence_score: 0 - !!omap - - id: HMR_4388 + - id: "HMR_4388" - name: "" - metabolites: !!omap - m02039c: -1 @@ -81250,15 +81250,15 @@ - m02819c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111716 or ENSG00000134333 or ENSG00000151116 or ENSG00000166796 or ENSG00000166800 or ENSG00000171989 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.27 - - references: PMID:12042361;PMID:17045662;PMID:7449128;PMID:9927705 + - gene_reaction_rule: "ENSG00000111716 or ENSG00000134333 or ENSG00000151116 or ENSG00000166796 or ENSG00000166800 or ENSG00000171989" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.27" + - references: "PMID:12042361;PMID:17045662;PMID:7449128;PMID:9927705" - subsystem: - - Glycolysis / Gluconeogenesis + - "Glycolysis / Gluconeogenesis" - confidence_score: 0 - !!omap - - id: HMR_4283 + - id: "HMR_4283" - name: "" - metabolites: !!omap - m01249c: -1 @@ -81269,15 +81269,15 @@ - m02555c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.5 - - references: PMID:16411662;PMID:2060039;PMID:7779080;PMID:8155713;PMID:8605195;PMID:9228057 + - gene_reaction_rule: "ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.5" + - references: "PMID:16411662;PMID:2060039;PMID:7779080;PMID:8155713;PMID:8605195;PMID:9228057" - subsystem: - - Glycolysis / Gluconeogenesis + - "Glycolysis / Gluconeogenesis" - confidence_score: 0 - !!omap - - id: HMR_8357 + - id: "HMR_8357" - name: "" - metabolites: !!omap - m01249m: -1 @@ -81288,15 +81288,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000143149 or ENSG00000164904 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000143149 or ENSG00000164904" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.3" + - references: "" - subsystem: - - Glycolysis / Gluconeogenesis + - "Glycolysis / Gluconeogenesis" - confidence_score: 0 - !!omap - - id: HMR_4379 + - id: "HMR_4379" - name: "" - metabolites: !!omap - m01285c: 1 @@ -81306,15 +81306,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000067057 or ENSG00000141959 or ENSG00000152556 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.11 - - references: PMID:12049998;PMID:5667967 + - gene_reaction_rule: "ENSG00000067057 or ENSG00000141959 or ENSG00000152556" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.11" + - references: "PMID:12049998;PMID:5667967" - subsystem: - - Glycolysis / Gluconeogenesis + - "Glycolysis / Gluconeogenesis" - confidence_score: 0 - !!omap - - id: HMR_4301 + - id: "HMR_4301" - name: "" - metabolites: !!omap - m01841c: 1 @@ -81324,15 +81324,15 @@ - m03130c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000067057 or ENSG00000141959 or ENSG00000152556 or ENSG00000160226 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.11 - - references: PMID:11945275;PMID:4276999 + - gene_reaction_rule: "ENSG00000067057 or ENSG00000141959 or ENSG00000152556 or ENSG00000160226" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.11" + - references: "PMID:11945275;PMID:4276999" - subsystem: - - Glycolysis / Gluconeogenesis + - "Glycolysis / Gluconeogenesis" - confidence_score: 0 - !!omap - - id: HMR_4355 + - id: "HMR_4355" - name: "" - metabolites: !!omap - m01690c: -1 @@ -81340,15 +81340,15 @@ - m02883c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109107 or ENSG00000136872 or ENSG00000149925 or ENSG00000285043 - - rxnFrom: HMRdatabase - - eccodes: 4.1.2.13 - - references: PMID:10214945;PMID:2198022;PMID:4052378;PMID:4084320;PMID:6952783 + - gene_reaction_rule: "ENSG00000109107 or ENSG00000136872 or ENSG00000149925 or ENSG00000285043" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.2.13" + - references: "PMID:10214945;PMID:2198022;PMID:4052378;PMID:4084320;PMID:6952783" - subsystem: - - Glycolysis / Gluconeogenesis + - "Glycolysis / Gluconeogenesis" - confidence_score: 0 - !!omap - - id: HMR_4358 + - id: "HMR_4358" - name: "" - metabolites: !!omap - m01285c: -1 @@ -81358,15 +81358,15 @@ - m02819c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000067225 or ENSG00000121900 or ENSG00000143627 or ENSG00000143630 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.40 - - references: PMID:1009117;PMID:7154942 + - gene_reaction_rule: "ENSG00000067225 or ENSG00000121900 or ENSG00000143627 or ENSG00000143630" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.40" + - references: "PMID:1009117;PMID:7154942" - subsystem: - - Glycolysis / Gluconeogenesis + - "Glycolysis / Gluconeogenesis" - confidence_score: 0 - !!omap - - id: HMR_4360 + - id: "HMR_4360" - name: "" - metabolites: !!omap - m02039c: 2 @@ -81377,15 +81377,15 @@ - m02819c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000180011 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.49 - - references: PMID:20958;PMID:4383524;PMID:4391087;PMID:6014;PMID:7107625;PMID:7107626;PMID:7144586;PMID:7763257;PMID:7993370 + - gene_reaction_rule: "ENSG00000180011" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.49" + - references: "PMID:20958;PMID:4383524;PMID:4391087;PMID:6014;PMID:7107625;PMID:7107626;PMID:7144586;PMID:7763257;PMID:7993370" - subsystem: - - Glycolysis / Gluconeogenesis + - "Glycolysis / Gluconeogenesis" - confidence_score: 0 - !!omap - - id: HMR_4362 + - id: "HMR_4362" - name: "" - metabolites: !!omap - m01334c: 1 @@ -81397,15 +81397,15 @@ - m02819c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 2.7.9.2 - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.9.2" + - references: "" - subsystem: - - Glycolysis / Gluconeogenesis + - "Glycolysis / Gluconeogenesis" - confidence_score: 0 - !!omap - - id: HMR_4363 + - id: "HMR_4363" - name: "" - metabolites: !!omap - m00674c: -1 @@ -81413,30 +81413,30 @@ - m02696c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074800 or ENSG00000108515 or ENSG00000111674 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.11 - - references: PMID:3536714;PMID:7357031 + - gene_reaction_rule: "ENSG00000074800 or ENSG00000108515 or ENSG00000111674" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.11" + - references: "PMID:3536714;PMID:7357031" - subsystem: - - Glycolysis / Gluconeogenesis + - "Glycolysis / Gluconeogenesis" - confidence_score: 0 - !!omap - - id: HMR_4365 + - id: "HMR_4365" - name: "" - metabolites: !!omap - m00674c: -1 - m00913c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000164708 or ENSG00000171314 or ENSG00000172331 or ENSG00000226784 - - rxnFrom: HMRdatabase - - eccodes: 5.4.2.11 - - references: PMID:2840859;PMID:6322090;PMID:9688259 + - gene_reaction_rule: "ENSG00000164708 or ENSG00000171314 or ENSG00000172331 or ENSG00000226784" + - rxnFrom: "HMRdatabase" + - eccodes: "5.4.2.11" + - references: "PMID:2840859;PMID:6322090;PMID:9688259" - subsystem: - - Glycolysis / Gluconeogenesis + - "Glycolysis / Gluconeogenesis" - confidence_score: 0 - !!omap - - id: HMR_4368 + - id: "HMR_4368" - name: "" - metabolites: !!omap - m00247c: -1 @@ -81445,15 +81445,15 @@ - m01371c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000096006 or ENSG00000102144 or ENSG00000154305 or ENSG00000170950 - - rxnFrom: HMRdatabase - - eccodes: 2.7.2.3 - - references: PMID:367367;PMID:4203909;UNIPROT:P00558 + - gene_reaction_rule: "ENSG00000096006 or ENSG00000102144 or ENSG00000154305 or ENSG00000170950" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.2.3" + - references: "PMID:367367;PMID:4203909;UNIPROT:P00558" - subsystem: - - Glycolysis / Gluconeogenesis + - "Glycolysis / Gluconeogenesis" - confidence_score: 0 - !!omap - - id: HMR_4370 + - id: "HMR_4370" - name: "" - metabolites: !!omap - m00247c: -1 @@ -81463,15 +81463,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119640 or ENSG00000170634 - - rxnFrom: HMRdatabase - - eccodes: 3.6.1.7 - - references: + - gene_reaction_rule: "ENSG00000119640 or ENSG00000170634" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.1.7" + - references: "" - subsystem: - - Glycolysis / Gluconeogenesis + - "Glycolysis / Gluconeogenesis" - confidence_score: 0 - !!omap - - id: HMR_4371 + - id: "HMR_4371" - name: "" - metabolites: !!omap - m00247c: -1 @@ -81479,15 +81479,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000164708 or ENSG00000171314 or ENSG00000172331 or ENSG00000226784 - - rxnFrom: HMRdatabase - - eccodes: 5.4.2.1;5.4.2.4 - - references: + - gene_reaction_rule: "ENSG00000164708 or ENSG00000171314 or ENSG00000172331 or ENSG00000226784" + - rxnFrom: "HMRdatabase" + - eccodes: "5.4.2.1;5.4.2.4" + - references: "" - subsystem: - - Glycolysis / Gluconeogenesis + - "Glycolysis / Gluconeogenesis" - confidence_score: 0 - !!omap - - id: HMR_4372 + - id: "HMR_4372" - name: "" - metabolites: !!omap - m00569c: -1 @@ -81496,15 +81496,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000172331 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.13 - - references: + - gene_reaction_rule: "ENSG00000172331" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.13" + - references: "" - subsystem: - - Glycolysis / Gluconeogenesis + - "Glycolysis / Gluconeogenesis" - confidence_score: 0 - !!omap - - id: HMR_4373 + - id: "HMR_4373" - name: "" - metabolites: !!omap - m00247c: -1 @@ -81515,15 +81515,15 @@ - m02751c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105679 or ENSG00000111640 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.12 - - references: PMID:12027953;PMID:14993695;PMID:3370218;PMID:7144574 + - gene_reaction_rule: "ENSG00000105679 or ENSG00000111640" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.12" + - references: "PMID:12027953;PMID:14993695;PMID:3370218;PMID:7144574" - subsystem: - - Glycolysis / Gluconeogenesis + - "Glycolysis / Gluconeogenesis" - confidence_score: 0 - !!omap - - id: HMR_4375 + - id: "HMR_4375" - name: "" - metabolites: !!omap - m01690c: -1 @@ -81531,15 +81531,15 @@ - m01939c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109107 or ENSG00000136872 or ENSG00000149925 or ENSG00000285043 - - rxnFrom: HMRdatabase - - eccodes: 4.1.2.13 - - references: PMID:10641038;PMID:10797566;PMID:12417303;PMID:12676688;PMID:1392515;PMID:2752067 + - gene_reaction_rule: "ENSG00000109107 or ENSG00000136872 or ENSG00000149925 or ENSG00000285043" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.2.13" + - references: "PMID:10641038;PMID:10797566;PMID:12417303;PMID:12676688;PMID:1392515;PMID:2752067" - subsystem: - - Glycolysis / Gluconeogenesis + - "Glycolysis / Gluconeogenesis" - confidence_score: 0 - !!omap - - id: HMR_4377 + - id: "HMR_4377" - name: "" - metabolites: !!omap - m01841c: -1 @@ -81548,45 +81548,45 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130957 or ENSG00000165140 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.11 - - references: PMID:15295071;PMID:214743;PMID:3032541 + - gene_reaction_rule: "ENSG00000130957 or ENSG00000165140" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.11" + - references: "PMID:15295071;PMID:214743;PMID:3032541" - subsystem: - - Glycolysis / Gluconeogenesis + - "Glycolysis / Gluconeogenesis" - confidence_score: 0 - !!omap - - id: HMR_4381 + - id: "HMR_4381" - name: "" - metabolites: !!omap - m01845c: -1 - m01968c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105220 - - rxnFrom: HMRdatabase - - eccodes: 5.3.1.9 - - references: PMID:2272676;PMID:2843500 + - gene_reaction_rule: "ENSG00000105220" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.1.9" + - references: "PMID:2272676;PMID:2843500" - subsystem: - - Glycolysis / Gluconeogenesis + - "Glycolysis / Gluconeogenesis" - confidence_score: 0 - !!omap - - id: HMR_4391 + - id: "HMR_4391" - name: "" - metabolites: !!omap - m01690c: -1 - m01939c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111669 - - rxnFrom: HMRdatabase - - eccodes: 5.3.1.1 - - references: PMID:1168838;PMID:15262334;PMID:15522269;PMID:1959537;PMID:2339591 + - gene_reaction_rule: "ENSG00000111669" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.1.1" + - references: "PMID:1168838;PMID:15262334;PMID:15522269;PMID:1959537;PMID:2339591" - subsystem: - - Glycolysis / Gluconeogenesis + - "Glycolysis / Gluconeogenesis" - confidence_score: 0 - !!omap - - id: HMR_4394 + - id: "HMR_4394" - name: "" - metabolites: !!omap - m01285c: 1 @@ -81596,30 +81596,30 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000106633 or ENSG00000156510 or ENSG00000156515 or ENSG00000159322 or ENSG00000159399 or ENSG00000160883 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.1;2.7.1.2;2.7.1.147 - - references: PMID:16906315;PMID:7061426;PMID:7150652;PMID:8717435 + - gene_reaction_rule: "ENSG00000106633 or ENSG00000156510 or ENSG00000156515 or ENSG00000159322 or ENSG00000159399 or ENSG00000160883" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.1;2.7.1.2;2.7.1.147" + - references: "PMID:16906315;PMID:7061426;PMID:7150652;PMID:8717435" - subsystem: - - Glycolysis / Gluconeogenesis + - "Glycolysis / Gluconeogenesis" - confidence_score: 0 - !!omap - - id: HMR_4396 + - id: "HMR_4396" - name: "" - metabolites: !!omap - m01967c: -1 - m01968c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000079739 or ENSG00000154330 or ENSG00000169299 - - rxnFrom: HMRdatabase - - eccodes: 5.4.2.2;5.4.2.5;5.4.2.6;5.2.2.2 - - references: PMID:600270 + - gene_reaction_rule: "ENSG00000079739 or ENSG00000154330 or ENSG00000169299" + - rxnFrom: "HMRdatabase" + - eccodes: "5.4.2.2;5.4.2.5;5.4.2.6;5.2.2.2" + - references: "PMID:600270" - subsystem: - - Glycolysis / Gluconeogenesis + - "Glycolysis / Gluconeogenesis" - confidence_score: 0 - !!omap - - id: HMR_4521 + - id: "HMR_4521" - name: "" - metabolites: !!omap - m01965r: 1 @@ -81628,15 +81628,15 @@ - m02751r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000131482 or ENSG00000141349 or ENSG00000152254 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.9 - - references: PMID:12101013;PMID:12485600;PMID:1662952;PMID:6291517;PMID:6321405;PMID:6935637 + - gene_reaction_rule: "ENSG00000131482 or ENSG00000141349 or ENSG00000152254" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.9" + - references: "PMID:12101013;PMID:12485600;PMID:1662952;PMID:6291517;PMID:6321405;PMID:6935637" - subsystem: - - Glycolysis / Gluconeogenesis + - "Glycolysis / Gluconeogenesis" - confidence_score: 0 - !!omap - - id: HMR_6410 + - id: "HMR_6410" - name: "" - metabolites: !!omap - m01596m: 1 @@ -81646,15 +81646,15 @@ - m02869m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000131828 and ENSG00000168291) or (ENSG00000163114 and ENSG00000168291) - - rxnFrom: HMRdatabase - - eccodes: 1.2.4.1 - - references: PMID:18032470;PMID:2323578;PMID:2748588 + - gene_reaction_rule: "(ENSG00000131828 and ENSG00000168291) or (ENSG00000163114 and ENSG00000168291)" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.4.1" + - references: "PMID:18032470;PMID:2323578;PMID:2748588" - subsystem: - - Glycolysis / Gluconeogenesis + - "Glycolysis / Gluconeogenesis" - confidence_score: 0 - !!omap - - id: HMR_6412 + - id: "HMR_6412" - name: "" - metabolites: !!omap - m01261m: 1 @@ -81663,30 +81663,30 @@ - m02869m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000091140 and ENSG00000131828 and ENSG00000150768 and ENSG00000168291) or (ENSG00000091140 and ENSG00000150768 and ENSG00000163114 and ENSG00000168291) - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.12 - - references: PMID:12108679;PMID:14741190 + - gene_reaction_rule: "(ENSG00000091140 and ENSG00000131828 and ENSG00000150768 and ENSG00000168291) or (ENSG00000091140 and ENSG00000150768 and ENSG00000163114 and ENSG00000168291)" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.12" + - references: "PMID:12108679;PMID:14741190" - subsystem: - - Glycolysis / Gluconeogenesis + - "Glycolysis / Gluconeogenesis" - confidence_score: 0 - !!omap - - id: HMR_7745 + - id: "HMR_7745" - name: "" - metabolites: !!omap - m01388c: -1 - m01965c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000143891 - - rxnFrom: HMRdatabase - - eccodes: 5.1.3.3 - - references: + - gene_reaction_rule: "ENSG00000143891" + - rxnFrom: "HMRdatabase" + - eccodes: "5.1.3.3" + - references: "" - subsystem: - - Glycolysis / Gluconeogenesis + - "Glycolysis / Gluconeogenesis" - confidence_score: 0 - !!omap - - id: HMR_7746 + - id: "HMR_7746" - name: "" - metabolites: !!omap - m01285c: 1 @@ -81696,15 +81696,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000106633 or ENSG00000156510 or ENSG00000156515 or ENSG00000159399 or ENSG00000160883 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.1;2.7.1.2 - - references: + - gene_reaction_rule: "ENSG00000106633 or ENSG00000156510 or ENSG00000156515 or ENSG00000159399 or ENSG00000160883" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.1;2.7.1.2" + - references: "" - subsystem: - - Glycolysis / Gluconeogenesis + - "Glycolysis / Gluconeogenesis" - confidence_score: 0 - !!omap - - id: HMR_7747 + - id: "HMR_7747" - name: "" - metabolites: !!omap - m01285c: -1 @@ -81714,45 +81714,45 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000159322 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.147 - - references: + - gene_reaction_rule: "ENSG00000159322" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.147" + - references: "" - subsystem: - - Glycolysis / Gluconeogenesis + - "Glycolysis / Gluconeogenesis" - confidence_score: 0 - !!omap - - id: HMR_7748 + - id: "HMR_7748" - name: "" - metabolites: !!omap - m01389c: -1 - m01968c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105220 - - rxnFrom: HMRdatabase - - eccodes: 5.3.1.9 - - references: + - gene_reaction_rule: "ENSG00000105220" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.1.9" + - references: "" - subsystem: - - Glycolysis / Gluconeogenesis + - "Glycolysis / Gluconeogenesis" - confidence_score: 0 - !!omap - - id: HMR_7749 + - id: "HMR_7749" - name: "" - metabolites: !!omap - m01389c: -1 - m01845c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105220 - - rxnFrom: HMRdatabase - - eccodes: 5.3.1.9 - - references: + - gene_reaction_rule: "ENSG00000105220" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.1.9" + - references: "" - subsystem: - - Glycolysis / Gluconeogenesis + - "Glycolysis / Gluconeogenesis" - confidence_score: 0 - !!omap - - id: HMR_8360 + - id: "HMR_8360" - name: "" - metabolites: !!omap - m01249p: 1 @@ -81761,15 +81761,15 @@ - m02041p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000121691 - - rxnFrom: HMRdatabase - - eccodes: 1.11.1.6 - - references: + - gene_reaction_rule: "ENSG00000121691" + - rxnFrom: "HMRdatabase" + - eccodes: "1.11.1.6" + - references: "" - subsystem: - - Glycolysis / Gluconeogenesis + - "Glycolysis / Gluconeogenesis" - confidence_score: 0 - !!omap - - id: HMR_8652 + - id: "HMR_8652" - name: "" - metabolites: !!omap - m01420r: -1 @@ -81779,15 +81779,15 @@ - m02578r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000131482 or ENSG00000141349 or ENSG00000152254 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.9 - - references: + - gene_reaction_rule: "ENSG00000131482 or ENSG00000141349 or ENSG00000152254" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.9" + - references: "" - subsystem: - - Glycolysis / Gluconeogenesis + - "Glycolysis / Gluconeogenesis" - confidence_score: 0 - !!omap - - id: HMR_8757 + - id: "HMR_8757" - name: "" - metabolites: !!omap - m01249c: 1 @@ -81799,15 +81799,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130649 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000130649" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Glycolysis / Gluconeogenesis + - "Glycolysis / Gluconeogenesis" - confidence_score: 0 - !!omap - - id: HMR_3989 + - id: "HMR_3989" - name: "" - metabolites: !!omap - m01965s: 2 @@ -81815,15 +81815,15 @@ - m02450s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000092529 or ENSG00000171298 or ENSG00000214013 or ENSG00000257335 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.20 - - references: PMID:1885588;PMID:2141837;PMID:3128290;PMID:6362728;PMID:7358666 + - gene_reaction_rule: "ENSG00000092529 or ENSG00000171298 or ENSG00000214013 or ENSG00000257335" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.20" + - references: "PMID:1885588;PMID:2141837;PMID:3128290;PMID:6362728;PMID:7358666" - subsystem: - - Starch and sucrose metabolism + - "Starch and sucrose metabolism" - confidence_score: 0 - !!omap - - id: HMR_4122 + - id: "HMR_4122" - name: "" - metabolites: !!omap - m02039c: 3 @@ -81834,15 +81834,15 @@ - m03109c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109814 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.22 - - references: PMID:9737970;PMID:9850599 + - gene_reaction_rule: "ENSG00000109814" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.22" + - references: "PMID:9737970;PMID:9850599" - subsystem: - - Starch and sucrose metabolism + - "Starch and sucrose metabolism" - confidence_score: 0 - !!omap - - id: HMR_4837 + - id: "HMR_4837" - name: "" - metabolites: !!omap - m01965s: 2 @@ -81850,15 +81850,15 @@ - m03039s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000118094 or ENSG00000142102 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.28 - - references: PMID:5125320;PMID:8222277;PMID:8773341;PMID:9427547 + - gene_reaction_rule: "ENSG00000118094 or ENSG00000142102" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.28" + - references: "PMID:5125320;PMID:8222277;PMID:8773341;PMID:9427547" - subsystem: - - Starch and sucrose metabolism + - "Starch and sucrose metabolism" - confidence_score: 0 - !!omap - - id: HMR_5395 + - id: "HMR_5395" - name: "" - metabolites: !!omap - m01995c: 1 @@ -81868,15 +81868,15 @@ - m03108c: -8 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000056998 or ENSG00000163754 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.186 - - references: PMID:12133002;PMID:4475632;PMID:5810070;UNIPROT:Q15125 + - gene_reaction_rule: "ENSG00000056998 or ENSG00000163754" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.186" + - references: "PMID:12133002;PMID:4475632;PMID:5810070;UNIPROT:Q15125" - subsystem: - - Starch and sucrose metabolism + - "Starch and sucrose metabolism" - confidence_score: 0 - !!omap - - id: HMR_5396 + - id: "HMR_5396" - name: "" - metabolites: !!omap - m01990c: 1 @@ -81886,15 +81886,15 @@ - m03108c: -3 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000056998 or ENSG00000104812 or ENSG00000111713 or ENSG00000163754 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.11 - - references: PMID:12133002;PMID:4475632;PMID:5810070;UNIPROT:Q15125 + - gene_reaction_rule: "ENSG00000056998 or ENSG00000104812 or ENSG00000111713 or ENSG00000163754" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.11" + - references: "PMID:12133002;PMID:4475632;PMID:5810070;UNIPROT:Q15125" - subsystem: - - Starch and sucrose metabolism + - "Starch and sucrose metabolism" - confidence_score: 0 - !!omap - - id: HMR_9727 + - id: "HMR_9727" - name: "" - metabolites: !!omap - m02039c: 1 @@ -81903,30 +81903,30 @@ - m03161c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104812 or ENSG00000111713 or ENSG00000119938 or ENSG00000173281 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.11 - - references: + - gene_reaction_rule: "ENSG00000104812 or ENSG00000111713 or ENSG00000119938 or ENSG00000173281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.11" + - references: "" - subsystem: - - Starch and sucrose metabolism + - "Starch and sucrose metabolism" - confidence_score: 0 - !!omap - - id: HMR_5397 + - id: "HMR_5397" - name: "" - metabolites: !!omap - m01990c: -1 - m01992c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000114480 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.18 - - references: PMID:12133002;PMID:4475632;PMID:5810070;UNIPROT:Q15125 + - gene_reaction_rule: "ENSG00000114480" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.18" + - references: "PMID:12133002;PMID:4475632;PMID:5810070;UNIPROT:Q15125" - subsystem: - - Starch and sucrose metabolism + - "Starch and sucrose metabolism" - confidence_score: 0 - !!omap - - id: HMR_5398 + - id: "HMR_5398" - name: "" - metabolites: !!omap - m01967c: 3 @@ -81935,30 +81935,30 @@ - m02751c: -3 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068976 or ENSG00000100504 or ENSG00000100994 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.1 - - references: PMID:12133002;PMID:4475632;PMID:5810070;UNIPROT:Q15125 + - gene_reaction_rule: "ENSG00000068976 or ENSG00000100504 or ENSG00000100994" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.1" + - references: "PMID:12133002;PMID:4475632;PMID:5810070;UNIPROT:Q15125" - subsystem: - - Starch and sucrose metabolism + - "Starch and sucrose metabolism" - confidence_score: 0 - !!omap - - id: HMR_5399 + - id: "HMR_5399" - name: "" - metabolites: !!omap - m01991c: -1 - m01994c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162688 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.25 - - references: PMID:12133002;PMID:4475632;PMID:5810070;UNIPROT:Q15125 + - gene_reaction_rule: "ENSG00000162688" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.25" + - references: "PMID:12133002;PMID:4475632;PMID:5810070;UNIPROT:Q15125" - subsystem: - - Starch and sucrose metabolism + - "Starch and sucrose metabolism" - confidence_score: 0 - !!omap - - id: HMR_5400 + - id: "HMR_5400" - name: "" - metabolites: !!omap - m01965c: 1 @@ -81967,15 +81967,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162688 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.33 - - references: PMID:12133002;PMID:4475632;PMID:5810070;UNIPROT:Q15125 + - gene_reaction_rule: "ENSG00000162688" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.33" + - references: "PMID:12133002;PMID:4475632;PMID:5810070;UNIPROT:Q15125" - subsystem: - - Starch and sucrose metabolism + - "Starch and sucrose metabolism" - confidence_score: 0 - !!omap - - id: HMR_5401 + - id: "HMR_5401" - name: "" - metabolites: !!omap - m01967c: 7 @@ -81984,15 +81984,15 @@ - m02751c: -7 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068976 or ENSG00000100504 or ENSG00000100994 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.1 - - references: PMID:12133002;PMID:4475632;PMID:5810070;UNIPROT:Q15125 + - gene_reaction_rule: "ENSG00000068976 or ENSG00000100504 or ENSG00000100994" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.1" + - references: "PMID:12133002;PMID:4475632;PMID:5810070;UNIPROT:Q15125" - subsystem: - - Starch and sucrose metabolism + - "Starch and sucrose metabolism" - confidence_score: 0 - !!omap - - id: HMR_8568 + - id: "HMR_8568" - name: "" - metabolites: !!omap - m01840c: 1 @@ -82001,15 +82001,15 @@ - m02448c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120563 or ENSG00000174876 or ENSG00000187733 or ENSG00000237763 or ENSG00000240038 or ENSG00000243480 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.1 - - references: + - gene_reaction_rule: "ENSG00000120563 or ENSG00000174876 or ENSG00000187733 or ENSG00000237763 or ENSG00000240038 or ENSG00000243480" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.1" + - references: "" - subsystem: - - Starch and sucrose metabolism + - "Starch and sucrose metabolism" - confidence_score: 0 - !!omap - - id: HMR_8569 + - id: "HMR_8569" - name: "" - metabolites: !!omap - m01965s: 1 @@ -82018,15 +82018,15 @@ - m02448s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120563 or ENSG00000174876 or ENSG00000187733 or ENSG00000237763 or ENSG00000240038 or ENSG00000243480 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.1 - - references: + - gene_reaction_rule: "ENSG00000120563 or ENSG00000174876 or ENSG00000187733 or ENSG00000237763 or ENSG00000240038 or ENSG00000243480" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.1" + - references: "" - subsystem: - - Starch and sucrose metabolism + - "Starch and sucrose metabolism" - confidence_score: 0 - !!omap - - id: HMR_8570 + - id: "HMR_8570" - name: "" - metabolites: !!omap - m01840c: 2 @@ -82035,15 +82035,15 @@ - m02448c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120563 or ENSG00000174876 or ENSG00000187733 or ENSG00000237763 or ENSG00000240038 or ENSG00000243480 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.1 - - references: + - gene_reaction_rule: "ENSG00000120563 or ENSG00000174876 or ENSG00000187733 or ENSG00000237763 or ENSG00000240038 or ENSG00000243480" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.1" + - references: "" - subsystem: - - Starch and sucrose metabolism + - "Starch and sucrose metabolism" - confidence_score: 0 - !!omap - - id: HMR_8571 + - id: "HMR_8571" - name: "" - metabolites: !!omap - m01965s: 2 @@ -82052,15 +82052,15 @@ - m02448s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120563 or ENSG00000174876 or ENSG00000187733 or ENSG00000237763 or ENSG00000240038 or ENSG00000243480 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.1 - - references: + - gene_reaction_rule: "ENSG00000120563 or ENSG00000174876 or ENSG00000187733 or ENSG00000237763 or ENSG00000240038 or ENSG00000243480" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.1" + - references: "" - subsystem: - - Starch and sucrose metabolism + - "Starch and sucrose metabolism" - confidence_score: 0 - !!omap - - id: HMR_8572 + - id: "HMR_8572" - name: "" - metabolites: !!omap - m01840c: 1 @@ -82069,15 +82069,15 @@ - m02447c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120563 or ENSG00000174876 or ENSG00000187733 or ENSG00000237763 or ENSG00000240038 or ENSG00000243480 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.1 - - references: + - gene_reaction_rule: "ENSG00000120563 or ENSG00000174876 or ENSG00000187733 or ENSG00000237763 or ENSG00000240038 or ENSG00000243480" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.1" + - references: "" - subsystem: - - Starch and sucrose metabolism + - "Starch and sucrose metabolism" - confidence_score: 0 - !!omap - - id: HMR_8573 + - id: "HMR_8573" - name: "" - metabolites: !!omap - m01965s: 1 @@ -82086,15 +82086,15 @@ - m02447s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120563 or ENSG00000174876 or ENSG00000187733 or ENSG00000237763 or ENSG00000240038 or ENSG00000243480 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.1 - - references: + - gene_reaction_rule: "ENSG00000120563 or ENSG00000174876 or ENSG00000187733 or ENSG00000237763 or ENSG00000240038 or ENSG00000243480" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.1" + - references: "" - subsystem: - - Starch and sucrose metabolism + - "Starch and sucrose metabolism" - confidence_score: 0 - !!omap - - id: HMR_8574 + - id: "HMR_8574" - name: "" - metabolites: !!omap - m01840c: 1 @@ -82103,15 +82103,15 @@ - m02449c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120563 or ENSG00000174876 or ENSG00000187733 or ENSG00000237763 or ENSG00000240038 or ENSG00000243480 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.1 - - references: + - gene_reaction_rule: "ENSG00000120563 or ENSG00000174876 or ENSG00000187733 or ENSG00000237763 or ENSG00000240038 or ENSG00000243480" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.1" + - references: "" - subsystem: - - Starch and sucrose metabolism + - "Starch and sucrose metabolism" - confidence_score: 0 - !!omap - - id: HMR_8575 + - id: "HMR_8575" - name: "" - metabolites: !!omap - m01965s: 1 @@ -82120,15 +82120,15 @@ - m02449s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120563 or ENSG00000174876 or ENSG00000187733 or ENSG00000237763 or ENSG00000240038 or ENSG00000243480 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.1 - - references: + - gene_reaction_rule: "ENSG00000120563 or ENSG00000174876 or ENSG00000187733 or ENSG00000237763 or ENSG00000240038 or ENSG00000243480" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.1" + - references: "" - subsystem: - - Starch and sucrose metabolism + - "Starch and sucrose metabolism" - confidence_score: 0 - !!omap - - id: HMR_8576 + - id: "HMR_8576" - name: "" - metabolites: !!omap - m01840c: 1 @@ -82137,15 +82137,15 @@ - m02451c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120563 or ENSG00000174876 or ENSG00000187733 or ENSG00000237763 or ENSG00000240038 or ENSG00000243480 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.1 - - references: + - gene_reaction_rule: "ENSG00000120563 or ENSG00000174876 or ENSG00000187733 or ENSG00000237763 or ENSG00000240038 or ENSG00000243480" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.1" + - references: "" - subsystem: - - Starch and sucrose metabolism + - "Starch and sucrose metabolism" - confidence_score: 0 - !!omap - - id: HMR_8577 + - id: "HMR_8577" - name: "" - metabolites: !!omap - m01965s: 1 @@ -82154,15 +82154,15 @@ - m02451s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120563 or ENSG00000174876 or ENSG00000187733 or ENSG00000237763 or ENSG00000240038 or ENSG00000243480 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.1 - - references: + - gene_reaction_rule: "ENSG00000120563 or ENSG00000174876 or ENSG00000187733 or ENSG00000237763 or ENSG00000240038 or ENSG00000243480" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.1" + - references: "" - subsystem: - - Starch and sucrose metabolism + - "Starch and sucrose metabolism" - confidence_score: 0 - !!omap - - id: HMR_8578 + - id: "HMR_8578" - name: "" - metabolites: !!omap - m01840c: 1 @@ -82171,15 +82171,15 @@ - m02452c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120563 or ENSG00000174876 or ENSG00000187733 or ENSG00000237763 or ENSG00000240038 or ENSG00000243480 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.1 - - references: + - gene_reaction_rule: "ENSG00000120563 or ENSG00000174876 or ENSG00000187733 or ENSG00000237763 or ENSG00000240038 or ENSG00000243480" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.1" + - references: "" - subsystem: - - Starch and sucrose metabolism + - "Starch and sucrose metabolism" - confidence_score: 0 - !!omap - - id: HMR_8579 + - id: "HMR_8579" - name: "" - metabolites: !!omap - m01965s: 1 @@ -82188,15 +82188,15 @@ - m02452s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120563 or ENSG00000174876 or ENSG00000187733 or ENSG00000237763 or ENSG00000240038 or ENSG00000243480 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.1 - - references: + - gene_reaction_rule: "ENSG00000120563 or ENSG00000174876 or ENSG00000187733 or ENSG00000237763 or ENSG00000240038 or ENSG00000243480" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.1" + - references: "" - subsystem: - - Starch and sucrose metabolism + - "Starch and sucrose metabolism" - confidence_score: 0 - !!omap - - id: HMR_8581 + - id: "HMR_8581" - name: "" - metabolites: !!omap - m01965s: 1 @@ -82205,15 +82205,15 @@ - m02452s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120563 or ENSG00000174876 or ENSG00000187733 or ENSG00000237763 or ENSG00000240038 or ENSG00000243480 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.1 - - references: + - gene_reaction_rule: "ENSG00000120563 or ENSG00000174876 or ENSG00000187733 or ENSG00000237763 or ENSG00000240038 or ENSG00000243480" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.1" + - references: "" - subsystem: - - Starch and sucrose metabolism + - "Starch and sucrose metabolism" - confidence_score: 0 - !!omap - - id: HMR_8591 + - id: "HMR_8591" - name: "" - metabolites: !!omap - m01965c: 1 @@ -82222,15 +82222,15 @@ - m02452c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000214013 or ENSG00000257335 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.20 - - references: + - gene_reaction_rule: "ENSG00000214013 or ENSG00000257335" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.20" + - references: "" - subsystem: - - Starch and sucrose metabolism + - "Starch and sucrose metabolism" - confidence_score: 0 - !!omap - - id: HMR_8592 + - id: "HMR_8592" - name: "" - metabolites: !!omap - m01965l: 1 @@ -82239,15 +82239,15 @@ - m02452l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171298 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.20 - - references: + - gene_reaction_rule: "ENSG00000171298" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.20" + - references: "" - subsystem: - - Starch and sucrose metabolism + - "Starch and sucrose metabolism" - confidence_score: 0 - !!omap - - id: HMR_8580 + - id: "HMR_8580" - name: "" - metabolites: !!omap - m01840c: 1 @@ -82256,15 +82256,15 @@ - m02452c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120563 or ENSG00000174876 or ENSG00000187733 or ENSG00000237763 or ENSG00000240038 or ENSG00000243480 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.1 - - references: + - gene_reaction_rule: "ENSG00000120563 or ENSG00000174876 or ENSG00000187733 or ENSG00000237763 or ENSG00000240038 or ENSG00000243480" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.1" + - references: "" - subsystem: - - Starch and sucrose metabolism + - "Starch and sucrose metabolism" - confidence_score: 0 - !!omap - - id: HMR_8582 + - id: "HMR_8582" - name: "" - metabolites: !!omap - m01840c: 2 @@ -82272,15 +82272,15 @@ - m02450c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120563 or ENSG00000174876 or ENSG00000187733 or ENSG00000237763 or ENSG00000240038 or ENSG00000243480 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.1 - - references: + - gene_reaction_rule: "ENSG00000120563 or ENSG00000174876 or ENSG00000187733 or ENSG00000237763 or ENSG00000240038 or ENSG00000243480" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.1" + - references: "" - subsystem: - - Starch and sucrose metabolism + - "Starch and sucrose metabolism" - confidence_score: 0 - !!omap - - id: HMR_8587 + - id: "HMR_8587" - name: "" - metabolites: !!omap - m01965c: 2 @@ -82288,15 +82288,15 @@ - m02450c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000214013 or ENSG00000257335 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.20 - - references: + - gene_reaction_rule: "ENSG00000214013 or ENSG00000257335" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.20" + - references: "" - subsystem: - - Starch and sucrose metabolism + - "Starch and sucrose metabolism" - confidence_score: 0 - !!omap - - id: HMR_8589 + - id: "HMR_8589" - name: "" - metabolites: !!omap - m01965l: 2 @@ -82304,15 +82304,15 @@ - m02450l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171298 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.20 - - references: + - gene_reaction_rule: "ENSG00000171298" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.20" + - references: "" - subsystem: - - Starch and sucrose metabolism + - "Starch and sucrose metabolism" - confidence_score: 0 - !!omap - - id: HMR_8583 + - id: "HMR_8583" - name: "" - metabolites: !!omap - m01965s: 8 @@ -82321,15 +82321,15 @@ - m02937s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000257335 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000257335" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.3" + - references: "" - subsystem: - - Starch and sucrose metabolism + - "Starch and sucrose metabolism" - confidence_score: 0 - !!omap - - id: HMR_8584 + - id: "HMR_8584" - name: "" - metabolites: !!omap - m01965s: 1 @@ -82338,15 +82338,15 @@ - m02937s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000090402 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.10 - - references: + - gene_reaction_rule: "ENSG00000090402" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.10" + - references: "" - subsystem: - - Starch and sucrose metabolism + - "Starch and sucrose metabolism" - confidence_score: 0 - !!omap - - id: HMR_8585 + - id: "HMR_8585" - name: "" - metabolites: !!omap - m00247c: -1 @@ -82355,15 +82355,15 @@ - m01967c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165434 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.106 - - references: + - gene_reaction_rule: "ENSG00000165434" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.106" + - references: "" - subsystem: - - Starch and sucrose metabolism + - "Starch and sucrose metabolism" - confidence_score: 0 - !!omap - - id: HMR_3944 + - id: "HMR_3944" - name: "" - metabolites: !!omap - m01967c: -1 @@ -82373,30 +82373,30 @@ - m03130c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169764 - - rxnFrom: HMRdatabase - - eccodes: 2.7.7.9 - - references: PMID:223665;PMID:4433565;PMID:4436332;PMID:6318818;PMID:6320876;PMID:8612650 + - gene_reaction_rule: "ENSG00000169764" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.7.9" + - references: "PMID:223665;PMID:4433565;PMID:4436332;PMID:6318818;PMID:6320876;PMID:8612650" - subsystem: - - Galactose metabolism + - "Galactose metabolism" - confidence_score: 0 - !!omap - - id: HMR_4128 + - id: "HMR_4128" - name: "" - metabolites: !!omap - m03107c: -1 - m03108c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117308 - - rxnFrom: HMRdatabase - - eccodes: 5.1.3.2 - - references: PMID:191453;PMID:845161 + - gene_reaction_rule: "ENSG00000117308" + - rxnFrom: "HMRdatabase" + - eccodes: "5.1.3.2" + - references: "PMID:191453;PMID:845161" - subsystem: - - Galactose metabolism + - "Galactose metabolism" - confidence_score: 0 - !!omap - - id: HMR_4130 + - id: "HMR_4130" - name: "" - metabolites: !!omap - m01285c: 1 @@ -82406,15 +82406,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108479 or ENSG00000156958 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.6 - - references: + - gene_reaction_rule: "ENSG00000108479 or ENSG00000156958" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.6" + - references: "" - subsystem: - - Galactose metabolism + - "Galactose metabolism" - confidence_score: 0 - !!omap - - id: HMR_4131 + - id: "HMR_4131" - name: "" - metabolites: !!omap - m01322c: 1 @@ -82423,15 +82423,15 @@ - m03108c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000213930 - - rxnFrom: HMRdatabase - - eccodes: 2.7.7.12 - - references: + - gene_reaction_rule: "ENSG00000213930" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.7.12" + - references: "" - subsystem: - - Galactose metabolism + - "Galactose metabolism" - confidence_score: 0 - !!omap - - id: HMR_4132 + - id: "HMR_4132" - name: "" - metabolites: !!omap - m01911c: -1 @@ -82440,15 +82440,15 @@ - m03108c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000213930 - - rxnFrom: HMRdatabase - - eccodes: 2.7.7.12 - - references: PMID:10993714 + - gene_reaction_rule: "ENSG00000213930" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.7.12" + - references: "PMID:10993714" - subsystem: - - Galactose metabolism + - "Galactose metabolism" - confidence_score: 0 - !!omap - - id: HMR_4303 + - id: "HMR_4303" - name: "" - metabolites: !!omap - m01840s: 1 @@ -82457,15 +82457,15 @@ - m02945s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000090402 or ENSG00000171298 or ENSG00000214013 or ENSG00000257335 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.10;3.2.1.20;3.2.1.48 - - references: PMID:12055199 + - gene_reaction_rule: "ENSG00000090402 or ENSG00000171298 or ENSG00000214013 or ENSG00000257335" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.10;3.2.1.20;3.2.1.48" + - references: "PMID:12055199" - subsystem: - - Galactose metabolism + - "Galactose metabolism" - confidence_score: 0 - !!omap - - id: HMR_4414 + - id: "HMR_4414" - name: "" - metabolites: !!omap - m01285c: 1 @@ -82475,15 +82475,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108479 or ENSG00000156958 or ENSG00000166262 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.6 - - references: PMID:8908517 + - gene_reaction_rule: "ENSG00000108479 or ENSG00000156958 or ENSG00000166262" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.6" + - references: "PMID:8908517" - subsystem: - - Galactose metabolism + - "Galactose metabolism" - confidence_score: 0 - !!omap - - id: HMR_4415 + - id: "HMR_4415" - name: "" - metabolites: !!omap - m01910s: 1 @@ -82492,15 +82492,15 @@ - m02332s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115850 and ENSG00000163521 and ENSG00000170266 and ENSG00000188167 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.23;3.2.1.108 - - references: PMID:6786877 + - gene_reaction_rule: "ENSG00000115850 and ENSG00000163521 and ENSG00000170266 and ENSG00000188167" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.23;3.2.1.108" + - references: "PMID:6786877" - subsystem: - - Galactose metabolism + - "Galactose metabolism" - confidence_score: 0 - !!omap - - id: HMR_4416 + - id: "HMR_4416" - name: "" - metabolites: !!omap - m01910s: 1 @@ -82509,15 +82509,15 @@ - m02040s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000102393 or ENSG00000170266 or ENSG00000241343 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.22;3.2.1.23 - - references: PMID:3569296 + - gene_reaction_rule: "ENSG00000102393 or ENSG00000170266 or ENSG00000241343" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.22;3.2.1.23" + - references: "PMID:3569296" - subsystem: - - Galactose metabolism + - "Galactose metabolism" - confidence_score: 0 - !!omap - - id: HMR_4774 + - id: "HMR_4774" - name: "" - metabolites: !!omap - m01424c: -1 @@ -82527,15 +82527,15 @@ - m02955c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000067057 or ENSG00000141959 or ENSG00000152556 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.11 - - references: PMID:131802;PMID:1810251;PMID:193556;PMID:2987258;PMID:6091737 + - gene_reaction_rule: "ENSG00000067057 or ENSG00000141959 or ENSG00000152556" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.11" + - references: "PMID:131802;PMID:1810251;PMID:193556;PMID:2987258;PMID:6091737" - subsystem: - - Galactose metabolism + - "Galactose metabolism" - confidence_score: 0 - !!omap - - id: HMR_4775 + - id: "HMR_4775" - name: "" - metabolites: !!omap - m01746c: -1 @@ -82545,15 +82545,15 @@ - m02955c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000067057 or ENSG00000141959 or ENSG00000152556 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.11 - - references: PMID:131802;PMID:1810251 + - gene_reaction_rule: "ENSG00000067057 or ENSG00000141959 or ENSG00000152556" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.11" + - references: "PMID:131802;PMID:1810251" - subsystem: - - Galactose metabolism + - "Galactose metabolism" - confidence_score: 0 - !!omap - - id: HMR_4831 + - id: "HMR_4831" - name: "" - metabolites: !!omap - m00812s: 1 @@ -82563,15 +82563,15 @@ - m02553s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 1.1.99.13 - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.99.13" + - references: "" - subsystem: - - Galactose metabolism + - "Galactose metabolism" - confidence_score: 0 - !!omap - - id: HMR_4832 + - id: "HMR_4832" - name: "" - metabolites: !!omap - m00810s: -1 @@ -82580,15 +82580,15 @@ - m02040s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115850 and ENSG00000163521 and ENSG00000170266 and ENSG00000188167 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.23 - - references: PMID:3109378;UNIPROT:P16278 + - gene_reaction_rule: "ENSG00000115850 and ENSG00000163521 and ENSG00000170266 and ENSG00000188167" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.23" + - references: "PMID:3109378;UNIPROT:P16278" - subsystem: - - Galactose metabolism + - "Galactose metabolism" - confidence_score: 0 - !!omap - - id: HMR_7674 + - id: "HMR_7674" - name: "" - metabolites: !!omap - m01965g: -1 @@ -82598,15 +82598,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000086062 or ENSG00000117411 or ENSG00000167531 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.22 - - references: + - gene_reaction_rule: "ENSG00000086062 or ENSG00000117411 or ENSG00000167531" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.22" + - references: "" - subsystem: - - Galactose metabolism + - "Galactose metabolism" - confidence_score: 0 - !!omap - - id: HMR_8761 + - id: "HMR_8761" - name: "" - metabolites: !!omap - m01285c: 1 @@ -82616,15 +82616,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138030 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.3 - - references: + - gene_reaction_rule: "ENSG00000138030" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.3" + - references: "" - subsystem: - - Galactose metabolism + - "Galactose metabolism" - confidence_score: 0 - !!omap - - id: HMR_8762 + - id: "HMR_8762" - name: "" - metabolites: !!omap - m01690c: 1 @@ -82632,15 +82632,15 @@ - m01981c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109107 or ENSG00000136872 or ENSG00000149925 or ENSG00000285043 - - rxnFrom: HMRdatabase - - eccodes: 4.1.2.13 - - references: + - gene_reaction_rule: "ENSG00000109107 or ENSG00000136872 or ENSG00000149925 or ENSG00000285043" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.2.13" + - references: "" - subsystem: - - Galactose metabolism + - "Galactose metabolism" - confidence_score: 0 - !!omap - - id: HMR_8764 + - id: "HMR_8764" - name: "" - metabolites: !!omap - m01910l: 1 @@ -82649,15 +82649,15 @@ - m02332l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115850 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.108 - - references: + - gene_reaction_rule: "ENSG00000115850" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.108" + - references: "" - subsystem: - - Galactose metabolism + - "Galactose metabolism" - confidence_score: 0 - !!omap - - id: HMR_8766 + - id: "HMR_8766" - name: "" - metabolites: !!omap - m01909c: 1 @@ -82667,15 +82667,15 @@ - m02555c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085662 or ENSG00000198074 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.21 - - references: + - gene_reaction_rule: "ENSG00000085662 or ENSG00000198074" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.21" + - references: "" - subsystem: - - Galactose metabolism + - "Galactose metabolism" - confidence_score: 0 - !!omap - - id: HMR_8767 + - id: "HMR_8767" - name: "" - metabolites: !!omap - m01322c: -1 @@ -82685,15 +82685,15 @@ - m03130c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000213930 - - rxnFrom: HMRdatabase - - eccodes: 2.7.7.12 - - references: + - gene_reaction_rule: "ENSG00000213930" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.7.12" + - references: "" - subsystem: - - Galactose metabolism + - "Galactose metabolism" - confidence_score: 0 - !!omap - - id: HMR_0454 + - id: "HMR_0454" - name: "" - metabolites: !!omap - m01285c: 1 @@ -82703,15 +82703,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.28 - - references: PMID:12125098 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.28" + - references: "PMID:12125098" - subsystem: - - Fructose and mannose metabolism + - "Fructose and mannose metabolism" - confidence_score: 0 - !!omap - - id: HMR_4297 + - id: "HMR_4297" - name: "" - metabolites: !!omap - m01285c: 1 @@ -82721,15 +82721,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000114268 or ENSG00000123836 or ENSG00000158571 or ENSG00000170525 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.105 - - references: PMID:7506254;PMID:7688733 + - gene_reaction_rule: "ENSG00000114268 or ENSG00000123836 or ENSG00000158571 or ENSG00000170525" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.105" + - references: "PMID:7506254;PMID:7688733" - subsystem: - - Fructose and mannose metabolism + - "Fructose and mannose metabolism" - confidence_score: 0 - !!omap - - id: HMR_4310 + - id: "HMR_4310" - name: "" - metabolites: !!omap - m01285c: 1 @@ -82739,15 +82739,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138030 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.3 - - references: PMID:2996495;PMID:7833921 + - gene_reaction_rule: "ENSG00000138030" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.3" + - references: "PMID:2996495;PMID:7833921" - subsystem: - - Fructose and mannose metabolism + - "Fructose and mannose metabolism" - confidence_score: 0 - !!omap - - id: HMR_4315 + - id: "HMR_4315" - name: "" - metabolites: !!omap - m01682c: -1 @@ -82757,15 +82757,15 @@ - m02553c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000140263 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.14 - - references: + - gene_reaction_rule: "ENSG00000140263" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.14" + - references: "" - subsystem: - - Fructose and mannose metabolism + - "Fructose and mannose metabolism" - confidence_score: 0 - !!omap - - id: HMR_4316 + - id: "HMR_4316" - name: "" - metabolites: !!omap - m01682c: -1 @@ -82775,15 +82775,15 @@ - m02555c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085662 or ENSG00000198074 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.21 - - references: + - gene_reaction_rule: "ENSG00000085662 or ENSG00000198074" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.21" + - references: "" - subsystem: - - Fructose and mannose metabolism + - "Fructose and mannose metabolism" - confidence_score: 0 - !!omap - - id: HMR_4317 + - id: "HMR_4317" - name: "" - metabolites: !!omap - m01285c: 1 @@ -82793,15 +82793,15 @@ - m02917c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116199 or ENSG00000141560 or ENSG00000162408 or ENSG00000167363 or ENSG00000172456 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.- - - references: PMID:2211634 + - gene_reaction_rule: "ENSG00000116199 or ENSG00000141560 or ENSG00000162408 or ENSG00000167363 or ENSG00000172456" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.-" + - references: "PMID:2211634" - subsystem: - - Fructose and mannose metabolism + - "Fructose and mannose metabolism" - confidence_score: 0 - !!omap - - id: HMR_4318 + - id: "HMR_4318" - name: "" - metabolites: !!omap - m01285c: 1 @@ -82811,15 +82811,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116199 or ENSG00000141560 or ENSG00000162408 or ENSG00000167363 or ENSG00000172456 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.- - - references: + - gene_reaction_rule: "ENSG00000116199 or ENSG00000141560 or ENSG00000162408 or ENSG00000167363 or ENSG00000172456" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.-" + - references: "" - subsystem: - - Fructose and mannose metabolism + - "Fructose and mannose metabolism" - confidence_score: 0 - !!omap - - id: HMR_4319 + - id: "HMR_4319" - name: "" - metabolites: !!omap - m01285c: 1 @@ -82829,15 +82829,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000156510 or ENSG00000156515 or ENSG00000159399 or ENSG00000160883 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.1 - - references: PMID:16906315;PMID:7061426;PMID:7150652;PMID:8717435 + - gene_reaction_rule: "ENSG00000156510 or ENSG00000156515 or ENSG00000159399 or ENSG00000160883" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.1" + - references: "PMID:16906315;PMID:7061426;PMID:7150652;PMID:8717435" - subsystem: - - Fructose and mannose metabolism + - "Fructose and mannose metabolism" - confidence_score: 0 - !!omap - - id: HMR_4320 + - id: "HMR_4320" - name: "" - metabolites: !!omap - m01285c: 1 @@ -82847,15 +82847,15 @@ - m02454c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116199 or ENSG00000141560 or ENSG00000162408 or ENSG00000167363 or ENSG00000172456 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.- - - references: PMID:10085245 + - gene_reaction_rule: "ENSG00000116199 or ENSG00000141560 or ENSG00000162408 or ENSG00000167363 or ENSG00000172456" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.-" + - references: "PMID:10085245" - subsystem: - - Fructose and mannose metabolism + - "Fructose and mannose metabolism" - confidence_score: 0 - !!omap - - id: HMR_4356 + - id: "HMR_4356" - name: "" - metabolites: !!omap - m01690c: -1 @@ -82863,45 +82863,45 @@ - m01981c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109107 or ENSG00000136872 or ENSG00000149925 or ENSG00000285043 - - rxnFrom: HMRdatabase - - eccodes: 4.1.2.13 - - references: PMID:5114731;PMID:5655259;PMID:6054986 + - gene_reaction_rule: "ENSG00000109107 or ENSG00000136872 or ENSG00000149925 or ENSG00000285043" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.2.13" + - references: "PMID:5114731;PMID:5655259;PMID:6054986" - subsystem: - - Fructose and mannose metabolism + - "Fructose and mannose metabolism" - confidence_score: 0 - !!omap - - id: HMR_4383 + - id: "HMR_4383" - name: "" - metabolites: !!omap - m01845c: -1 - m02455c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178802 - - rxnFrom: HMRdatabase - - eccodes: 5.3.1.8 - - references: PMID:10571009;PMID:12231825;PMID:15033941;PMID:2085314;PMID:7702210;PMID:8381960 + - gene_reaction_rule: "ENSG00000178802" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.1.8" + - references: "PMID:10571009;PMID:12231825;PMID:15033941;PMID:2085314;PMID:7702210;PMID:8381960" - subsystem: - - Fructose and mannose metabolism + - "Fructose and mannose metabolism" - confidence_score: 0 - !!omap - - id: HMR_4385 + - id: "HMR_4385" - name: "" - metabolites: !!omap - m02454c: 1 - m02455c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100413 or ENSG00000100417 or ENSG00000140650 - - rxnFrom: HMRdatabase - - eccodes: 5.4.2.8 - - references: PMID:10593562;PMID:12889654;PMID:15361947 + - gene_reaction_rule: "ENSG00000100413 or ENSG00000100417 or ENSG00000140650" + - rxnFrom: "HMRdatabase" + - eccodes: "5.4.2.8" + - references: "PMID:10593562;PMID:12889654;PMID:15361947" - subsystem: - - Fructose and mannose metabolism + - "Fructose and mannose metabolism" - confidence_score: 0 - !!omap - - id: HMR_4386 + - id: "HMR_4386" - name: "" - metabolites: !!omap - m01948c: -1 @@ -82911,15 +82911,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000144591 or ENSG00000164068 or ENSG00000173540 or ENSG00000176020 - - rxnFrom: HMRdatabase - - eccodes: 2.7.7.22;2.7.7.13 - - references: PMID:13876695 + - gene_reaction_rule: "ENSG00000144591 or ENSG00000164068 or ENSG00000173540 or ENSG00000176020" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.7.22;2.7.7.13" + - references: "PMID:13876695" - subsystem: - - Fructose and mannose metabolism + - "Fructose and mannose metabolism" - confidence_score: 0 - !!omap - - id: HMR_4387 + - id: "HMR_4387" - name: "" - metabolites: !!omap - m01951c: 1 @@ -82929,15 +82929,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000144591 or ENSG00000173540 or ENSG00000176020 - - rxnFrom: HMRdatabase - - eccodes: 2.7.7.13 - - references: PMID:10025667;PMID:8549746;PMID:9451026 + - gene_reaction_rule: "ENSG00000144591 or ENSG00000173540 or ENSG00000176020" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.7.13" + - references: "PMID:10025667;PMID:8549746;PMID:9451026" - subsystem: - - Fructose and mannose metabolism + - "Fructose and mannose metabolism" - confidence_score: 0 - !!omap - - id: HMR_4399 + - id: "HMR_4399" - name: "" - metabolites: !!omap - m01949c: 1 @@ -82945,15 +82945,15 @@ - m02040c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112699 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.47 - - references: PMID:9893952 + - gene_reaction_rule: "ENSG00000112699" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.47" + - references: "PMID:9893952" - subsystem: - - Fructose and mannose metabolism + - "Fructose and mannose metabolism" - confidence_score: 0 - !!omap - - id: HMR_4400 + - id: "HMR_4400" - name: "" - metabolites: !!omap - m01949c: -1 @@ -82963,15 +82963,15 @@ - m02553c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104522 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.271 - - references: PMID:10410995;PMID:2428310;PMID:9603974 + - gene_reaction_rule: "ENSG00000104522" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.271" + - references: "PMID:10410995;PMID:2428310;PMID:9603974" - subsystem: - - Fructose and mannose metabolism + - "Fructose and mannose metabolism" - confidence_score: 0 - !!omap - - id: HMR_4401 + - id: "HMR_4401" - name: "" - metabolites: !!omap - m01950c: -1 @@ -82981,15 +82981,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116783 or ENSG00000254685 or ENSG00000259030 - - rxnFrom: HMRdatabase - - eccodes: 2.7.7.30 - - references: PMID:5646162;PMID:6251080 + - gene_reaction_rule: "ENSG00000116783 or ENSG00000254685 or ENSG00000259030" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.7.30" + - references: "PMID:5646162;PMID:6251080" - subsystem: - - Fructose and mannose metabolism + - "Fructose and mannose metabolism" - confidence_score: 0 - !!omap - - id: HMR_4402 + - id: "HMR_4402" - name: "" - metabolites: !!omap - m01159c: -1 @@ -82999,30 +82999,30 @@ - m02372c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157353 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.52 - - references: PMID:12056818;PMID:12413479 + - gene_reaction_rule: "ENSG00000157353" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.52" + - references: "PMID:12056818;PMID:12413479" - subsystem: - - Fructose and mannose metabolism + - "Fructose and mannose metabolism" - confidence_score: 0 - !!omap - - id: HMR_4403 + - id: "HMR_4403" - name: "" - metabolites: !!omap - m01159c: -1 - m02373c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 5.3.1.25 - - references: PMID:457669;PMID:5050937 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.1.25" + - references: "PMID:457669;PMID:5050937" - subsystem: - - Fructose and mannose metabolism + - "Fructose and mannose metabolism" - confidence_score: 0 - !!omap - - id: HMR_4490 + - id: "HMR_4490" - name: "" - metabolites: !!omap - m01285c: 1 @@ -83032,15 +83032,15 @@ - m02455c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000156510 or ENSG00000156515 or ENSG00000159399 or ENSG00000160883 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.1 - - references: PMID:16906315;PMID:7061426;PMID:7150652;PMID:8717435 + - gene_reaction_rule: "ENSG00000156510 or ENSG00000156515 or ENSG00000159399 or ENSG00000160883" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.1" + - references: "PMID:16906315;PMID:7061426;PMID:7150652;PMID:8717435" - subsystem: - - Fructose and mannose metabolism + - "Fructose and mannose metabolism" - confidence_score: 0 - !!omap - - id: HMR_4706 + - id: "HMR_4706" - name: "" - metabolites: !!omap - m01843c: -1 @@ -83049,15 +83049,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000078237 or ENSG00000108813 or ENSG00000114268 or ENSG00000123836 or ENSG00000158571 or ENSG00000170525 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.46;3.1.3.11 - - references: PMID:11245921;PMID:12379646;PMID:15170386;PMID:15581487;PMID:16316985;PMID:2837207 + - gene_reaction_rule: "ENSG00000078237 or ENSG00000108813 or ENSG00000114268 or ENSG00000123836 or ENSG00000158571 or ENSG00000170525" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.46;3.1.3.11" + - references: "PMID:11245921;PMID:12379646;PMID:15170386;PMID:15581487;PMID:16316985;PMID:2837207" - subsystem: - - Fructose and mannose metabolism + - "Fructose and mannose metabolism" - confidence_score: 0 - !!omap - - id: HMR_8768 + - id: "HMR_8768" - name: "" - metabolites: !!omap - m01949c: -1 @@ -83067,15 +83067,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104522 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.271 - - references: + - gene_reaction_rule: "ENSG00000104522" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.271" + - references: "" - subsystem: - - Fructose and mannose metabolism + - "Fructose and mannose metabolism" - confidence_score: 0 - !!omap - - id: HMR_4590 + - id: "HMR_4590" - name: "" - metabolites: !!omap - m02039c: -1 @@ -83085,15 +83085,15 @@ - m03155c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169738 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.10 - - references: PMID:28341;PMID:4397414;PMID:6821187 + - gene_reaction_rule: "ENSG00000169738" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.10" + - references: "PMID:28341;PMID:4397414;PMID:6821187" - subsystem: - - Pentose and glucuronate interconversions + - "Pentose and glucuronate interconversions" - confidence_score: 0 - !!omap - - id: HMR_4591 + - id: "HMR_4591" - name: "" - metabolites: !!omap - m02039c: 1 @@ -83103,15 +83103,15 @@ - m03155c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115425 or ENSG00000116353 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.15 - - references: PMID:13373783 + - gene_reaction_rule: "ENSG00000115425 or ENSG00000116353" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.15" + - references: "PMID:13373783" - subsystem: - - Pentose and glucuronate interconversions + - "Pentose and glucuronate interconversions" - confidence_score: 0 - !!omap - - id: HMR_4592 + - id: "HMR_4592" - name: "" - metabolites: !!omap - m01758c: -1 @@ -83121,15 +83121,15 @@ - m03155c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085662 or ENSG00000198074 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.21 - - references: + - gene_reaction_rule: "ENSG00000085662 or ENSG00000198074" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.21" + - references: "" - subsystem: - - Pentose and glucuronate interconversions + - "Pentose and glucuronate interconversions" - confidence_score: 0 - !!omap - - id: HMR_4593 + - id: "HMR_4593" - name: "" - metabolites: !!omap - m01759c: 1 @@ -83139,15 +83139,15 @@ - m03155c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000140263 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.9 - - references: + - gene_reaction_rule: "ENSG00000140263" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.9" + - references: "" - subsystem: - - Pentose and glucuronate interconversions + - "Pentose and glucuronate interconversions" - confidence_score: 0 - !!omap - - id: HMR_4594 + - id: "HMR_4594" - name: "" - metabolites: !!omap - m01757c: 1 @@ -83157,15 +83157,15 @@ - m02555c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104808 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.179 - - references: + - gene_reaction_rule: "ENSG00000104808" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.179" + - references: "" - subsystem: - - Pentose and glucuronate interconversions + - "Pentose and glucuronate interconversions" - confidence_score: 0 - !!omap - - id: HMR_4595 + - id: "HMR_4595" - name: "" - metabolites: !!omap - m01285c: -1 @@ -83175,15 +83175,15 @@ - m02039c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000093217 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.17 - - references: + - gene_reaction_rule: "ENSG00000093217" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.17" + - references: "" - subsystem: - - Pentose and glucuronate interconversions + - "Pentose and glucuronate interconversions" - confidence_score: 0 - !!omap - - id: HMR_8341 + - id: "HMR_8341" - name: "" - metabolites: !!omap - m02039c: -1 @@ -83193,15 +83193,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000053371 or ENSG00000085662 or ENSG00000117448 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.21;1.1.1.2 - - references: + - gene_reaction_rule: "ENSG00000053371 or ENSG00000085662 or ENSG00000117448" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.21;1.1.1.2" + - references: "" - subsystem: - - Pentose and glucuronate interconversions + - "Pentose and glucuronate interconversions" - confidence_score: 0 - !!omap - - id: HMR_8342 + - id: "HMR_8342" - name: "" - metabolites: !!omap - m02039c: -1 @@ -83211,15 +83211,15 @@ - m02553c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Pentose and glucuronate interconversions + - "Pentose and glucuronate interconversions" - confidence_score: 0 - !!omap - - id: HMR_8344 + - id: "HMR_8344" - name: "" - metabolites: !!omap - m01973r: -1 @@ -83229,15 +83229,15 @@ - m02555r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117448 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000117448" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Pentose and glucuronate interconversions + - "Pentose and glucuronate interconversions" - confidence_score: 0 - !!omap - - id: HMR_8352 + - id: "HMR_8352" - name: "" - metabolites: !!omap - m00768c: -1 @@ -83247,15 +83247,15 @@ - m02553c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165475 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165475" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Pentose and glucuronate interconversions + - "Pentose and glucuronate interconversions" - confidence_score: 0 - !!omap - - id: HMR_8353 + - id: "HMR_8353" - name: "" - metabolites: !!omap - m00768c: -1 @@ -83264,15 +83264,15 @@ - m02425c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Pentose and glucuronate interconversions + - "Pentose and glucuronate interconversions" - confidence_score: 0 - !!omap - - id: HMR_8726 + - id: "HMR_8726" - name: "" - metabolites: !!omap - m01285c: 1 @@ -83282,15 +83282,15 @@ - m02846c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171174 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000171174" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Pentose and glucuronate interconversions + - "Pentose and glucuronate interconversions" - confidence_score: 0 - !!omap - - id: HMR_8727 + - id: "HMR_8727" - name: "" - metabolites: !!omap - m01684c: 1 @@ -83300,15 +83300,15 @@ - m03114c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120697 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.117 - - references: + - gene_reaction_rule: "ENSG00000120697" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.117" + - references: "" - subsystem: - - Pentose and glucuronate interconversions + - "Pentose and glucuronate interconversions" - confidence_score: 0 - !!omap - - id: HMR_8728 + - id: "HMR_8728" - name: "" - metabolites: !!omap - m01684c: -1 @@ -83317,15 +83317,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Pentose and glucuronate interconversions + - "Pentose and glucuronate interconversions" - confidence_score: 0 - !!omap - - id: HMR_8729 + - id: "HMR_8729" - name: "" - metabolites: !!omap - m01973c: 1 @@ -83335,15 +83335,15 @@ - m03109c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115652 - - rxnFrom: HMRdatabase - - eccodes: 4.1.1.35 - - references: + - gene_reaction_rule: "ENSG00000115652" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.1.35" + - references: "" - subsystem: - - Pentose and glucuronate interconversions + - "Pentose and glucuronate interconversions" - confidence_score: 0 - !!omap - - id: HMR_6537 + - id: "HMR_6537" - name: "" - metabolites: !!omap - m01973c: -1 @@ -83353,15 +83353,15 @@ - m02555c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117448 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.2 - - references: PMID:1748675 + - gene_reaction_rule: "ENSG00000117448" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.2" + - references: "PMID:1748675" - subsystem: - - Pentose and glucuronate interconversions + - "Pentose and glucuronate interconversions" - confidence_score: 0 - !!omap - - id: HMR_1568 + - id: "HMR_1568" - name: "" - metabolites: !!omap - m01249c: -1 @@ -83372,15 +83372,15 @@ - m02553c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.4;1.2.1.5 - - references: PMID:11790142;PMID:2060039;PMID:2549038;PMID:4387261;PMID:8155713;PMID:8328987 + - gene_reaction_rule: "ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.4;1.2.1.5" + - references: "PMID:11790142;PMID:2060039;PMID:2549038;PMID:4387261;PMID:8155713;PMID:8328987" - subsystem: - - Pyruvate metabolism + - "Pyruvate metabolism" - confidence_score: 0 - !!omap - - id: HMR_3853 + - id: "HMR_3853" - name: "" - metabolites: !!omap - m00168c: 1 @@ -83388,15 +83388,15 @@ - m02475c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000124767 or ENSG00000167699 - - rxnFrom: HMRdatabase - - eccodes: 4.4.1.5 - - references: + - gene_reaction_rule: "ENSG00000124767 or ENSG00000167699" + - rxnFrom: "HMRdatabase" + - eccodes: "4.4.1.5" + - references: "" - subsystem: - - Pyruvate metabolism + - "Pyruvate metabolism" - confidence_score: 0 - !!omap - - id: HMR_3854 + - id: "HMR_3854" - name: "" - metabolites: !!omap - m02039c: -1 @@ -83406,15 +83406,15 @@ - m02553c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085662 or ENSG00000198074 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.21 - - references: + - gene_reaction_rule: "ENSG00000085662 or ENSG00000198074" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.21" + - references: "" - subsystem: - - Pyruvate metabolism + - "Pyruvate metabolism" - confidence_score: 0 - !!omap - - id: HMR_3855 + - id: "HMR_3855" - name: "" - metabolites: !!omap - m02039c: -1 @@ -83424,15 +83424,15 @@ - m02771c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085662 or ENSG00000198074 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.21 - - references: + - gene_reaction_rule: "ENSG00000085662 or ENSG00000198074" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.21" + - references: "" - subsystem: - - Pyruvate metabolism + - "Pyruvate metabolism" - confidence_score: 0 - !!omap - - id: HMR_3857 + - id: "HMR_3857" - name: "" - metabolites: !!omap - m00168c: -1 @@ -83442,15 +83442,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000063854 or ENSG00000103253 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.6 - - references: + - gene_reaction_rule: "ENSG00000063854 or ENSG00000103253" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.6" + - references: "" - subsystem: - - Pyruvate metabolism + - "Pyruvate metabolism" - confidence_score: 0 - !!omap - - id: HMR_3859 + - id: "HMR_3859" - name: "" - metabolites: !!omap - m01716c: -1 @@ -83460,15 +83460,15 @@ - m02819c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000166816 or ENSG00000182224 - - rxnFrom: HMRdatabase - - eccodes: 1.1.2.4 - - references: + - gene_reaction_rule: "ENSG00000166816 or ENSG00000182224" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.2.4" + - references: "" - subsystem: - - Pyruvate metabolism + - "Pyruvate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4087 + - id: "HMR_4087" - name: "" - metabolites: !!omap - m01596m: 1 @@ -83478,15 +83478,15 @@ - m02819m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000082212 or ENSG00000151376 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.38;1.1.1.39 - - references: PMID:15989682;PMID:16171388;PMID:4407365;PMID:4778267;PMID:7757881;PMID:8106447 + - gene_reaction_rule: "ENSG00000082212 or ENSG00000151376" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.38;1.1.1.39" + - references: "PMID:15989682;PMID:16171388;PMID:4407365;PMID:4778267;PMID:7757881;PMID:8106447" - subsystem: - - Pyruvate metabolism + - "Pyruvate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4089 + - id: "HMR_4089" - name: "" - metabolites: !!omap - m01596c: 1 @@ -83496,15 +83496,15 @@ - m02819c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000013392 or ENSG00000065833 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.38;1.1.1.40 - - references: PMID:15989682;PMID:16171388;PMID:1935931;PMID:4407365;PMID:4778267;PMID:7757881;PMID:8106447 + - gene_reaction_rule: "ENSG00000013392 or ENSG00000065833" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.38;1.1.1.40" + - references: "PMID:15989682;PMID:16171388;PMID:1935931;PMID:4407365;PMID:4778267;PMID:7757881;PMID:8106447" - subsystem: - - Pyruvate metabolism + - "Pyruvate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4091 + - id: "HMR_4091" - name: "" - metabolites: !!omap - m01596m: 1 @@ -83514,15 +83514,15 @@ - m02819m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000082212 or ENSG00000151376 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.38;1.1.1.40 - - references: PMID:15989682;PMID:16171388;PMID:1935931;PMID:4407365;PMID:4778267;PMID:7757881;PMID:8106447 + - gene_reaction_rule: "ENSG00000082212 or ENSG00000151376" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.38;1.1.1.40" + - references: "PMID:15989682;PMID:16171388;PMID:1935931;PMID:4407365;PMID:4778267;PMID:7757881;PMID:8106447" - subsystem: - - Pyruvate metabolism + - "Pyruvate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4093 + - id: "HMR_4093" - name: "" - metabolites: !!omap - m01252c: 1 @@ -83532,15 +83532,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000172497 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.1 - - references: PMID:11322891;PMID:12545200;PMID:16951743;PMID:34392;PMID:6151837;PMID:7696329 + - gene_reaction_rule: "ENSG00000172497" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.1" + - references: "PMID:11322891;PMID:12545200;PMID:16951743;PMID:34392;PMID:6151837;PMID:7696329" - subsystem: - - Pyruvate metabolism + - "Pyruvate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4095 + - id: "HMR_4095" - name: "" - metabolites: !!omap - m01252m: 1 @@ -83550,15 +83550,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000172497 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.1 - - references: PMID:11322891;PMID:12545200;PMID:16951743;PMID:34392;PMID:6151837;PMID:7696329 + - gene_reaction_rule: "ENSG00000172497" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.1" + - references: "PMID:11322891;PMID:12545200;PMID:16951743;PMID:34392;PMID:6151837;PMID:7696329" - subsystem: - - Pyruvate metabolism + - "Pyruvate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4101 + - id: "HMR_4101" - name: "" - metabolites: !!omap - m01596c: 1 @@ -83568,15 +83568,15 @@ - m02696c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000124253 - - rxnFrom: HMRdatabase - - eccodes: 4.1.1.32 - - references: PMID:11851336;PMID:14505680;PMID:728402;PMID:8325643;PMID:8645161 + - gene_reaction_rule: "ENSG00000124253" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.1.32" + - references: "PMID:11851336;PMID:14505680;PMID:728402;PMID:8325643;PMID:8645161" - subsystem: - - Pyruvate metabolism + - "Pyruvate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4103 + - id: "HMR_4103" - name: "" - metabolites: !!omap - m01596m: 1 @@ -83586,15 +83586,15 @@ - m02696m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100889 - - rxnFrom: HMRdatabase - - eccodes: 4.1.1.32 - - references: PMID:11851336;PMID:14505680;PMID:728402;PMID:8325643;PMID:8645161 + - gene_reaction_rule: "ENSG00000100889" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.1.32" + - references: "PMID:11851336;PMID:14505680;PMID:728402;PMID:8325643;PMID:8645161" - subsystem: - - Pyruvate metabolism + - "Pyruvate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4143 + - id: "HMR_4143" - name: "" - metabolites: !!omap - m01285m: 1 @@ -83606,15 +83606,15 @@ - m02819m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000173599 - - rxnFrom: HMRdatabase - - eccodes: 6.4.1.1 - - references: PMID:12437512;PMID:7918683 + - gene_reaction_rule: "ENSG00000173599" + - rxnFrom: "HMRdatabase" + - eccodes: "6.4.1.1" + - references: "PMID:12437512;PMID:7918683" - subsystem: - - Pyruvate metabolism + - "Pyruvate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4193 + - id: "HMR_4193" - name: "" - metabolites: !!omap - m01424c: -1 @@ -83624,15 +83624,15 @@ - m02819c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000067225 or ENSG00000143627 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.40 - - references: PMID:1009117;PMID:7154942 + - gene_reaction_rule: "ENSG00000067225 or ENSG00000143627" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.40" + - references: "PMID:1009117;PMID:7154942" - subsystem: - - Pyruvate metabolism + - "Pyruvate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8497 + - id: "HMR_8497" - name: "" - metabolites: !!omap - m02039c: -1 @@ -83642,15 +83642,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000053371 or ENSG00000085662 or ENSG00000117448 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.21;1.1.1.2 - - references: + - gene_reaction_rule: "ENSG00000053371 or ENSG00000085662 or ENSG00000117448" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.21;1.1.1.2" + - references: "" - subsystem: - - Pyruvate metabolism + - "Pyruvate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8498 + - id: "HMR_8498" - name: "" - metabolites: !!omap - m01256c: -1 @@ -83662,15 +83662,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130649 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000130649" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Pyruvate metabolism + - "Pyruvate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8499 + - id: "HMR_8499" - name: "" - metabolites: !!omap - m02039c: -1 @@ -83682,15 +83682,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130649 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000130649" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Pyruvate metabolism + - "Pyruvate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8500 + - id: "HMR_8500" - name: "" - metabolites: !!omap - m02039c: -1 @@ -83700,15 +83700,15 @@ - m02771c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000053371 or ENSG00000085662 or ENSG00000117448 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.21;1.1.1.2 - - references: + - gene_reaction_rule: "ENSG00000053371 or ENSG00000085662 or ENSG00000117448" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.21;1.1.1.2" + - references: "" - subsystem: - - Pyruvate metabolism + - "Pyruvate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8501 + - id: "HMR_8501" - name: "" - metabolites: !!omap - m01715c: 1 @@ -83718,15 +83718,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137106 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.79;1.1.1.81 - - references: + - gene_reaction_rule: "ENSG00000137106" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.79;1.1.1.81" + - references: "" - subsystem: - - Pyruvate metabolism + - "Pyruvate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8502 + - id: "HMR_8502" - name: "" - metabolites: !!omap - m00168c: -1 @@ -83737,15 +83737,15 @@ - m02553c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147576 or ENSG00000172955 or ENSG00000187758 or ENSG00000196344 or ENSG00000196616 or ENSG00000197894 or ENSG00000198099 or ENSG00000248144 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.1 - - references: + - gene_reaction_rule: "ENSG00000147576 or ENSG00000172955 or ENSG00000187758 or ENSG00000196344 or ENSG00000196616 or ENSG00000197894 or ENSG00000198099 or ENSG00000248144" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.1" + - references: "" - subsystem: - - Pyruvate metabolism + - "Pyruvate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8503 + - id: "HMR_8503" - name: "" - metabolites: !!omap - m02039c: 2 @@ -83756,15 +83756,15 @@ - m02553c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006534 or ENSG00000072210 or ENSG00000108602 or ENSG00000132746 or ENSG00000143149 or ENSG00000164904 or ENSG00000184254 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.4;1.2.1.5 - - references: + - gene_reaction_rule: "ENSG00000006534 or ENSG00000072210 or ENSG00000108602 or ENSG00000132746 or ENSG00000143149 or ENSG00000164904 or ENSG00000184254" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.4;1.2.1.5" + - references: "" - subsystem: - - Pyruvate metabolism + - "Pyruvate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8504 + - id: "HMR_8504" - name: "" - metabolites: !!omap - m01715c: -1 @@ -83775,15 +83775,15 @@ - m02553c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000143149 or ENSG00000164904 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000143149 or ENSG00000164904" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.3" + - references: "" - subsystem: - - Pyruvate metabolism + - "Pyruvate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8506 + - id: "HMR_8506" - name: "" - metabolites: !!omap - m02039m: 2 @@ -83794,15 +83794,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000143149 or ENSG00000164904 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000143149 or ENSG00000164904" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.3" + - references: "" - subsystem: - - Pyruvate metabolism + - "Pyruvate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8507 + - id: "HMR_8507" - name: "" - metabolites: !!omap - m01715c: 1 @@ -83812,15 +83812,15 @@ - m02771c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147576 or ENSG00000172955 or ENSG00000180011 or ENSG00000187758 or ENSG00000196344 or ENSG00000196616 or ENSG00000197894 or ENSG00000198099 or ENSG00000248144 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000147576 or ENSG00000172955 or ENSG00000180011 or ENSG00000187758 or ENSG00000196344 or ENSG00000196616 or ENSG00000197894 or ENSG00000198099 or ENSG00000248144" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Pyruvate metabolism + - "Pyruvate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8508 + - id: "HMR_8508" - name: "" - metabolites: !!omap - m02039c: 1 @@ -83830,15 +83830,15 @@ - m02771c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147576 or ENSG00000172955 or ENSG00000180011 or ENSG00000187758 or ENSG00000196344 or ENSG00000196616 or ENSG00000197894 or ENSG00000198099 or ENSG00000248144 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000147576 or ENSG00000172955 or ENSG00000180011 or ENSG00000187758 or ENSG00000196344 or ENSG00000196616 or ENSG00000197894 or ENSG00000198099 or ENSG00000248144" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Pyruvate metabolism + - "Pyruvate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8509 + - id: "HMR_8509" - name: "" - metabolites: !!omap - m01715c: -1 @@ -83848,15 +83848,15 @@ - m02771c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000053371 or ENSG00000085662 or ENSG00000117448 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.21;1.1.1.2 - - references: + - gene_reaction_rule: "ENSG00000053371 or ENSG00000085662 or ENSG00000117448" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.21;1.1.1.2" + - references: "" - subsystem: - - Pyruvate metabolism + - "Pyruvate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8511 + - id: "HMR_8511" - name: "" - metabolites: !!omap - m00168m: -1 @@ -83866,15 +83866,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000063854 or ENSG00000103253 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.6 - - references: + - gene_reaction_rule: "ENSG00000063854 or ENSG00000103253" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.6" + - references: "" - subsystem: - - Pyruvate metabolism + - "Pyruvate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8512 + - id: "HMR_8512" - name: "" - metabolites: !!omap - m01716c: -1 @@ -83884,15 +83884,15 @@ - m02819c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000166816 - - rxnFrom: HMRdatabase - - eccodes: 1.1.2.4 - - references: + - gene_reaction_rule: "ENSG00000166816" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.2.4" + - references: "" - subsystem: - - Pyruvate metabolism + - "Pyruvate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8514 + - id: "HMR_8514" - name: "" - metabolites: !!omap - m01824m: -2 @@ -83902,15 +83902,15 @@ - m02819c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000166816 or ENSG00000182224 - - rxnFrom: HMRdatabase - - eccodes: 1.1.2.4 - - references: + - gene_reaction_rule: "ENSG00000166816 or ENSG00000182224" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.2.4" + - references: "" - subsystem: - - Pyruvate metabolism + - "Pyruvate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8516 + - id: "HMR_8516" - name: "" - metabolites: !!omap - m01690c: -1 @@ -83918,15 +83918,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000148090 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000148090" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Pyruvate metabolism + - "Pyruvate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8517 + - id: "HMR_8517" - name: "" - metabolites: !!omap - m01939c: -1 @@ -83934,15 +83934,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 4.2.3.3 - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.3.3" + - references: "" - subsystem: - - Pyruvate metabolism + - "Pyruvate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4280 + - id: "HMR_4280" - name: "" - metabolites: !!omap - m02039m: -1 @@ -83952,15 +83952,15 @@ - m02819m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111716 or ENSG00000134333 or ENSG00000151116 or ENSG00000166796 or ENSG00000166800 or ENSG00000171989 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.27 - - references: PMID:12042361;PMID:17045662;PMID:7449128;PMID:9927705;PMID:18253497 + - gene_reaction_rule: "ENSG00000111716 or ENSG00000134333 or ENSG00000151116 or ENSG00000166796 or ENSG00000166800 or ENSG00000171989" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.27" + - references: "PMID:12042361;PMID:17045662;PMID:7449128;PMID:9927705;PMID:18253497" - subsystem: - - Pyruvate metabolism + - "Pyruvate metabolism" - confidence_score: 0 - !!omap - - id: HMR_0153 + - id: "HMR_0153" - name: "" - metabolites: !!omap - m01334c: 1 @@ -83971,15 +83971,15 @@ - m02774c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111058 or ENSG00000131069 or ENSG00000154930 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.17;6.2.1.1;3.1.2.2 - - references: PMID:11013297;PMID:11013297;PMID:10843999;PMID:11150295;PMID:1924964;PMID:2009071;PMID:7341659 + - gene_reaction_rule: "ENSG00000111058 or ENSG00000131069 or ENSG00000154930" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.17;6.2.1.1;3.1.2.2" + - references: "PMID:11013297;PMID:11013297;PMID:10843999;PMID:11150295;PMID:1924964;PMID:2009071;PMID:7341659" - subsystem: - - Propanoate metabolism + - "Propanoate metabolism" - confidence_score: 0 - !!omap - - id: HMR_3212 + - id: "HMR_3212" - name: "" - metabolites: !!omap - m01265m: 1 @@ -83988,15 +83988,15 @@ - m02774m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111271 or ENSG00000117054 or ENSG00000122971 or ENSG00000151498 or ENSG00000177646 or ENSG00000196177 or ENSG00000240303 - - rxnFrom: HMRdatabase - - eccodes: 1.3.99.3 - - references: + - gene_reaction_rule: "ENSG00000111271 or ENSG00000117054 or ENSG00000122971 or ENSG00000151498 or ENSG00000177646 or ENSG00000196177 or ENSG00000240303" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.99.3" + - references: "" - subsystem: - - Propanoate metabolism + - "Propanoate metabolism" - confidence_score: 0 - !!omap - - id: HMR_3797 + - id: "HMR_3797" - name: "" - metabolites: !!omap - m01334m: -1 @@ -84007,15 +84007,15 @@ - m02774m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111058 or ENSG00000131069 or ENSG00000154930 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.17 - - references: PMID:10843999;PMID:11150295;PMID:1924964;PMID:2009071;PMID:7341659 + - gene_reaction_rule: "ENSG00000111058 or ENSG00000131069 or ENSG00000154930" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.17" + - references: "PMID:10843999;PMID:11150295;PMID:1924964;PMID:2009071;PMID:7341659" - subsystem: - - Propanoate metabolism + - "Propanoate metabolism" - confidence_score: 0 - !!omap - - id: HMR_3800 + - id: "HMR_3800" - name: "" - metabolites: !!omap - m00671m: -1 @@ -84026,15 +84026,15 @@ - m02774m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000083123 and ENSG00000091140 and ENSG00000137992 and ENSG00000248098 - - rxnFrom: HMRdatabase - - eccodes: 1.2.7.2 - - references: PMID:2649080;PMID:283398;PMID:3718468;PMID:9381974 + - gene_reaction_rule: "ENSG00000083123 and ENSG00000091140 and ENSG00000137992 and ENSG00000248098" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.7.2" + - references: "PMID:2649080;PMID:283398;PMID:3718468;PMID:9381974" - subsystem: - - Propanoate metabolism + - "Propanoate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4105 + - id: "HMR_4105" - name: "" - metabolites: !!omap - m01261c: 1 @@ -84043,15 +84043,15 @@ - m02444c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103150 - - rxnFrom: HMRdatabase - - eccodes: 4.1.1.9 - - references: PMID:101148;PMID:10455107;PMID:15003260;PMID:4180063;PMID:4731972;PMID:5578610;PMID:9869665 + - gene_reaction_rule: "ENSG00000103150" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.1.9" + - references: "PMID:101148;PMID:10455107;PMID:15003260;PMID:4180063;PMID:4731972;PMID:5578610;PMID:9869665" - subsystem: - - Propanoate metabolism + - "Propanoate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4106 + - id: "HMR_4106" - name: "" - metabolites: !!omap - m01261m: 1 @@ -84060,15 +84060,15 @@ - m02444m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103150 - - rxnFrom: HMRdatabase - - eccodes: 4.1.1.9 - - references: PMID:101148;PMID:10455107;PMID:15003260;PMID:4180063;PMID:4731972;PMID:5578610;PMID:9869665 + - gene_reaction_rule: "ENSG00000103150" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.1.9" + - references: "PMID:101148;PMID:10455107;PMID:15003260;PMID:4180063;PMID:4731972;PMID:5578610;PMID:9869665" - subsystem: - - Propanoate metabolism + - "Propanoate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4107 + - id: "HMR_4107" - name: "" - metabolites: !!omap - m01261p: 1 @@ -84077,15 +84077,15 @@ - m02444p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103150 - - rxnFrom: HMRdatabase - - eccodes: 4.1.1.9 - - references: PMID:101148;PMID:10455107;PMID:15003260;PMID:4180063;PMID:4731972;PMID:5578610;PMID:9869665 + - gene_reaction_rule: "ENSG00000103150" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.1.9" + - references: "PMID:101148;PMID:10455107;PMID:15003260;PMID:4180063;PMID:4731972;PMID:5578610;PMID:9869665" - subsystem: - - Propanoate metabolism + - "Propanoate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4282 + - id: "HMR_4282" - name: "" - metabolites: !!omap - m00900m: -1 @@ -84096,15 +84096,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119711 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.18;1.2.1.27 - - references: PMID:10989432;PMID:1527093;PMID:2768248;PMID:4285894 + - gene_reaction_rule: "ENSG00000119711" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.18;1.2.1.27" + - references: "PMID:10989432;PMID:1527093;PMID:2768248;PMID:4285894" - subsystem: - - Propanoate metabolism + - "Propanoate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4331 + - id: "HMR_4331" - name: "" - metabolites: !!omap - m01334c: -1 @@ -84114,15 +84114,15 @@ - m02775c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111058 or ENSG00000131069 or ENSG00000154930 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.17;6.2.1.1 - - references: PMID:10843999;PMID:1924964;PMID:2009071;PMID:2884217;PMID:7341659 + - gene_reaction_rule: "ENSG00000111058 or ENSG00000131069 or ENSG00000154930" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.17;6.2.1.1" + - references: "PMID:10843999;PMID:1924964;PMID:2009071;PMID:2884217;PMID:7341659" - subsystem: - - Propanoate metabolism + - "Propanoate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4459 + - id: "HMR_4459" - name: "" - metabolites: !!omap - m01371c: -1 @@ -84132,15 +84132,15 @@ - m02775c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111058 or ENSG00000131069 or ENSG00000154930 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.1;6.2.1.17 - - references: PMID:10843999;PMID:1924964;PMID:2009071;PMID:2884217;PMID:7341659 + - gene_reaction_rule: "ENSG00000111058 or ENSG00000131069 or ENSG00000154930" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.1;6.2.1.17" + - references: "PMID:10843999;PMID:1924964;PMID:2009071;PMID:2884217;PMID:7341659" - subsystem: - - Propanoate metabolism + - "Propanoate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4460 + - id: "HMR_4460" - name: "" - metabolites: !!omap - m01371m: -1 @@ -84150,15 +84150,15 @@ - m02775m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111058 or ENSG00000131069 or ENSG00000154930 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.1;6.2.1.17 - - references: PMID:10843999;PMID:1924964;PMID:2009071;PMID:2884217;PMID:7341659 + - gene_reaction_rule: "ENSG00000111058 or ENSG00000131069 or ENSG00000154930" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.1;6.2.1.17" + - references: "PMID:10843999;PMID:1924964;PMID:2009071;PMID:2884217;PMID:7341659" - subsystem: - - Propanoate metabolism + - "Propanoate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4464 + - id: "HMR_4464" - name: "" - metabolites: !!omap - m01253m: -1 @@ -84167,15 +84167,15 @@ - m02039m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 4.1.1.4 - - references: PMID:4076528;PMID:4624981;PMID:963888 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.1.4" + - references: "PMID:4076528;PMID:4624981;PMID:963888" - subsystem: - - Propanoate metabolism + - "Propanoate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4497 + - id: "HMR_4497" - name: "" - metabolites: !!omap - m00900m: 1 @@ -84185,15 +84185,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116133 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.59 - - references: PMID:13672942 + - gene_reaction_rule: "ENSG00000116133" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.59" + - references: "PMID:13672942" - subsystem: - - Propanoate metabolism + - "Propanoate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4741 + - id: "HMR_4741" - name: "" - metabolites: !!omap - m00799m: -1 @@ -84203,15 +84203,15 @@ - m02142m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000198130 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.4 - - references: PMID:10989434;PMID:8188708;PMID:8824301 + - gene_reaction_rule: "ENSG00000198130" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.4" + - references: "PMID:10989434;PMID:8188708;PMID:8824301" - subsystem: - - Propanoate metabolism + - "Propanoate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8078 + - id: "HMR_8078" - name: "" - metabolites: !!omap - m00665c: 1 @@ -84222,15 +84222,15 @@ - m02774c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Propanoate metabolism + - "Propanoate metabolism" - confidence_score: 0 - !!omap - - id: HMR_9803 + - id: "HMR_9803" - name: "" - metabolites: !!omap - m02039m: -2 @@ -84241,15 +84241,15 @@ - m03168m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Propanoate metabolism + - "Propanoate metabolism" - confidence_score: 0 - !!omap - - id: HMR_9804 + - id: "HMR_9804" - name: "" - metabolites: !!omap - m00799m: -1 @@ -84259,15 +84259,15 @@ - m03168m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087076 or ENSG00000099377 or ENSG00000100867 or ENSG00000109854 or ENSG00000121039 or ENSG00000138400 or ENSG00000139988 or ENSG00000145439 or ENSG00000159692 or ENSG00000160439 or ENSG00000164039 or ENSG00000167733 or ENSG00000170426 or ENSG00000170786 or ENSG00000176387 or ENSG00000183921 or ENSG00000184860 or ENSG00000186153 or ENSG00000187134 or ENSG00000197894 or ENSG00000198074 or ENSG00000198189 or ENSG00000198610 or ENSG00000204228 or ENSG00000227471 or ENSG00000240857 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.- - - references: + - gene_reaction_rule: "ENSG00000087076 or ENSG00000099377 or ENSG00000100867 or ENSG00000109854 or ENSG00000121039 or ENSG00000138400 or ENSG00000139988 or ENSG00000145439 or ENSG00000159692 or ENSG00000160439 or ENSG00000164039 or ENSG00000167733 or ENSG00000170426 or ENSG00000170786 or ENSG00000176387 or ENSG00000183921 or ENSG00000184860 or ENSG00000186153 or ENSG00000187134 or ENSG00000197894 or ENSG00000198074 or ENSG00000198189 or ENSG00000198610 or ENSG00000204228 or ENSG00000227471 or ENSG00000240857" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.-" + - references: "" - subsystem: - - Propanoate metabolism + - "Propanoate metabolism" - confidence_score: 0 - !!omap - - id: HMR_0718 + - id: "HMR_0718" - name: "" - metabolites: !!omap - m00653c: 1 @@ -84276,15 +84276,15 @@ - m01803c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087299 - - rxnFrom: HMRdatabase - - eccodes: 1.1.99.2 - - references: + - gene_reaction_rule: "ENSG00000087299" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.99.2" + - references: "" - subsystem: - - Butanoate metabolism + - "Butanoate metabolism" - confidence_score: 0 - !!omap - - id: HMR_0719 + - id: "HMR_0719" - name: "" - metabolites: !!omap - m00653c: 1 @@ -84294,15 +84294,15 @@ - m02553c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000092621 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.95 - - references: + - gene_reaction_rule: "ENSG00000092621" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.95" + - references: "" - subsystem: - - Butanoate metabolism + - "Butanoate metabolism" - confidence_score: 0 - !!omap - - id: HMR_1434 + - id: "HMR_1434" - name: "" - metabolites: !!omap - m01255c: -1 @@ -84310,15 +84310,15 @@ - m01597c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120437 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.9 - - references: PMID:10064897;PMID:10806397;PMID:1121274;PMID:11330060;PMID:15733928;PMID:1679347;PMID:16927236;PMID:17236799;PMID:1735445;PMID:1979337;PMID:3194209;PMID:6131897;PMID:6378901;PMID:7911016;PMID:8241273 + - gene_reaction_rule: "ENSG00000120437" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.9" + - references: "PMID:10064897;PMID:10806397;PMID:1121274;PMID:11330060;PMID:15733928;PMID:1679347;PMID:16927236;PMID:17236799;PMID:1735445;PMID:1979337;PMID:3194209;PMID:6131897;PMID:6378901;PMID:7911016;PMID:8241273" - subsystem: - - Butanoate metabolism + - "Butanoate metabolism" - confidence_score: 0 - !!omap - - id: HMR_1436 + - id: "HMR_1436" - name: "" - metabolites: !!omap - m01253c: -1 @@ -84329,15 +84329,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000081760 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.16 - - references: PMID:4073493 + - gene_reaction_rule: "ENSG00000081760" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.16" + - references: "PMID:4073493" - subsystem: - - Butanoate metabolism + - "Butanoate metabolism" - confidence_score: 0 - !!omap - - id: HMR_3163 + - id: "HMR_3163" - name: "" - metabolites: !!omap - m01412m: -1 @@ -84346,15 +84346,15 @@ - m01803m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111271 or ENSG00000117054 or ENSG00000122971 or ENSG00000151498 or ENSG00000177646 or ENSG00000196177 or ENSG00000240303 - - rxnFrom: HMRdatabase - - eccodes: 1.3.99.3 - - references: PMID:13295225;PMID:3597357 + - gene_reaction_rule: "ENSG00000111271 or ENSG00000117054 or ENSG00000122971 or ENSG00000151498 or ENSG00000177646 or ENSG00000196177 or ENSG00000240303" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.99.3" + - references: "PMID:13295225;PMID:3597357" - subsystem: - - Butanoate metabolism + - "Butanoate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4461 + - id: "HMR_4461" - name: "" - metabolites: !!omap - m00157m: -1 @@ -84364,15 +84364,15 @@ - m02553m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000161267 or ENSG00000164039 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.30 - - references: PMID:1639787;PMID:3355176;PMID:3705199;PMID:475768;PMID:719045;PMID:7686368;PMID:8608144;PMID:8679568 + - gene_reaction_rule: "ENSG00000161267 or ENSG00000164039" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.30" + - references: "PMID:1639787;PMID:3355176;PMID:3705199;PMID:475768;PMID:719045;PMID:7686368;PMID:8608144;PMID:8679568" - subsystem: - - Butanoate metabolism + - "Butanoate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4604 + - id: "HMR_4604" - name: "" - metabolites: !!omap - m01255p: -1 @@ -84383,15 +84383,15 @@ - m02131p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112972 - - rxnFrom: HMRdatabase - - eccodes: 2.3.3.10 - - references: PMID:11087424;PMID:11108725;PMID:1358203;PMID:7893153 + - gene_reaction_rule: "ENSG00000112972" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.3.10" + - references: "PMID:11087424;PMID:11108725;PMID:1358203;PMID:7893153" - subsystem: - - Butanoate metabolism + - "Butanoate metabolism" - confidence_score: 0 - !!omap - - id: HMR_5351 + - id: "HMR_5351" - name: "" - metabolites: !!omap - m00648c: -1 @@ -84401,15 +84401,15 @@ - m02553c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111716 or ENSG00000151116 or ENSG00000166796 or ENSG00000166800 or ENSG00000171989 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.27 - - references: + - gene_reaction_rule: "ENSG00000111716 or ENSG00000151116 or ENSG00000166796 or ENSG00000166800 or ENSG00000171989" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.27" + - references: "" - subsystem: - - Butanoate metabolism + - "Butanoate metabolism" - confidence_score: 0 - !!omap - - id: HMR_7709 + - id: "HMR_7709" - name: "" - metabolites: !!omap - m00159m: -1 @@ -84417,15 +84417,15 @@ - m02040m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000121310 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.55 - - references: + - gene_reaction_rule: "ENSG00000121310" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.55" + - references: "" - subsystem: - - Butanoate metabolism + - "Butanoate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4052 + - id: "HMR_4052" - name: "" - metabolites: !!omap - m01334c: 1 @@ -84435,15 +84435,15 @@ - m02845c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101911 or ENSG00000147224 or ENSG00000229937 - - rxnFrom: HMRdatabase - - eccodes: 2.7.6.1 - - references: PMID:11101685;PMID:7572345 + - gene_reaction_rule: "ENSG00000101911 or ENSG00000147224 or ENSG00000229937" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.6.1" + - references: "PMID:11101685;PMID:7572345" - subsystem: - - Pentose phosphate pathway + - "Pentose phosphate pathway" - confidence_score: 0 - !!omap - - id: HMR_4304 + - id: "HMR_4304" - name: "" - metabolites: !!omap - m01961r: 1 @@ -84453,15 +84453,15 @@ - m02555r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160211 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.49 - - references: PMID:15774558;PMID:16756494;PMID:2753047;PMID:4169027 + - gene_reaction_rule: "ENSG00000160211" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.49" + - references: "PMID:15774558;PMID:16756494;PMID:2753047;PMID:4169027" - subsystem: - - Pentose phosphate pathway + - "Pentose phosphate pathway" - confidence_score: 0 - !!omap - - id: HMR_4306 + - id: "HMR_4306" - name: "" - metabolites: !!omap - m01961c: -1 @@ -84471,15 +84471,15 @@ - m02555c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160211 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.49 - - references: PMID:15774558;PMID:16756494;PMID:2753047;PMID:4169027 + - gene_reaction_rule: "ENSG00000160211" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.49" + - references: "PMID:15774558;PMID:16756494;PMID:2753047;PMID:4169027" - subsystem: - - Pentose phosphate pathway + - "Pentose phosphate pathway" - confidence_score: 0 - !!omap - - id: HMR_4350 + - id: "HMR_4350" - name: "" - metabolites: !!omap - m01285c: -1 @@ -84489,60 +84489,60 @@ - m02845c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000158019 or ENSG00000171174 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.15 - - references: PMID:13295274;PMID:17618002 + - gene_reaction_rule: "ENSG00000158019 or ENSG00000171174" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.15" + - references: "PMID:13295274;PMID:17618002" - subsystem: - - Pentose phosphate pathway + - "Pentose phosphate pathway" - confidence_score: 0 - !!omap - - id: HMR_4351 + - id: "HMR_4351" - name: "" - metabolites: !!omap - m02845r: -1 - m02846r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000153574 - - rxnFrom: HMRdatabase - - eccodes: 5.3.1.6 - - references: PMID:14690456;PMID:14988808;PMID:15234337;PMID:2843500 + - gene_reaction_rule: "ENSG00000153574" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.1.6" + - references: "PMID:14690456;PMID:14988808;PMID:15234337;PMID:2843500" - subsystem: - - Pentose phosphate pathway + - "Pentose phosphate pathway" - confidence_score: 0 - !!omap - - id: HMR_4352 + - id: "HMR_4352" - name: "" - metabolites: !!omap - m02845c: -1 - m02846c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000153574 - - rxnFrom: HMRdatabase - - eccodes: 5.3.1.6 - - references: PMID:14690456;PMID:14988808;PMID:15234337;PMID:2843500 + - gene_reaction_rule: "ENSG00000153574" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.1.6" + - references: "PMID:14690456;PMID:14988808;PMID:15234337;PMID:2843500" - subsystem: - - Pentose phosphate pathway + - "Pentose phosphate pathway" - confidence_score: 0 - !!omap - - id: HMR_4354 + - id: "HMR_4354" - name: "" - metabolites: !!omap - m02844c: -1 - m02845c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000079739 or ENSG00000169299 - - rxnFrom: HMRdatabase - - eccodes: 5.4.2.2;5.4.2.7 - - references: PMID:14953458;PMID:3023765;PMID:5769188;PMID:8050998 + - gene_reaction_rule: "ENSG00000079739 or ENSG00000169299" + - rxnFrom: "HMRdatabase" + - eccodes: "5.4.2.2;5.4.2.7" + - references: "PMID:14953458;PMID:3023765;PMID:5769188;PMID:8050998" - subsystem: - - Pentose phosphate pathway + - "Pentose phosphate pathway" - confidence_score: 0 - !!omap - - id: HMR_4398 + - id: "HMR_4398" - name: "" - metabolites: !!omap - m00640c: -1 @@ -84550,15 +84550,15 @@ - m01939c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023697 - - rxnFrom: HMRdatabase - - eccodes: 4.1.2.4 - - references: PMID:4989681;PMID:9226884 + - gene_reaction_rule: "ENSG00000023697" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.2.4" + - references: "PMID:4989681;PMID:9226884" - subsystem: - - Pentose phosphate pathway + - "Pentose phosphate pathway" - confidence_score: 0 - !!omap - - id: HMR_4404 + - id: "HMR_4404" - name: "" - metabolites: !!omap - m01761c: -1 @@ -84567,15 +84567,15 @@ - m01939c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000007350 or ENSG00000151005 or ENSG00000163931 - - rxnFrom: HMRdatabase - - eccodes: 2.2.1.1 - - references: PMID:234468;PMID:2495942;PMID:2843500;PMID:3089282;PMID:5141430;PMID:7115375;PMID:7154948;PMID:9924800 + - gene_reaction_rule: "ENSG00000007350 or ENSG00000151005 or ENSG00000163931" + - rxnFrom: "HMRdatabase" + - eccodes: "2.2.1.1" + - references: "PMID:234468;PMID:2495942;PMID:2843500;PMID:3089282;PMID:5141430;PMID:7115375;PMID:7154948;PMID:9924800" - subsystem: - - Pentose phosphate pathway + - "Pentose phosphate pathway" - confidence_score: 0 - !!omap - - id: HMR_4473 + - id: "HMR_4473" - name: "" - metabolites: !!omap - m01169r: -1 @@ -84585,15 +84585,15 @@ - m02846r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000142657 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.44 - - references: PMID:12398160;PMID:1504088;PMID:15558954;PMID:16756494;PMID:2753047;PMID:3943305;PMID:6212636;PMID:7194116;PMID:7225115;PMID:7623792 + - gene_reaction_rule: "ENSG00000142657" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.44" + - references: "PMID:12398160;PMID:1504088;PMID:15558954;PMID:16756494;PMID:2753047;PMID:3943305;PMID:6212636;PMID:7194116;PMID:7225115;PMID:7623792" - subsystem: - - Pentose phosphate pathway + - "Pentose phosphate pathway" - confidence_score: 0 - !!omap - - id: HMR_4474 + - id: "HMR_4474" - name: "" - metabolites: !!omap - m01169c: -1 @@ -84603,15 +84603,15 @@ - m02846c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000142657 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.44 - - references: PMID:12398160;PMID:1504088;PMID:15558954;PMID:16756494;PMID:2753047;PMID:3943305;PMID:6212636;PMID:7194116;PMID:7225115;PMID:7623792 + - gene_reaction_rule: "ENSG00000142657" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.44" + - references: "PMID:12398160;PMID:1504088;PMID:15558954;PMID:16756494;PMID:2753047;PMID:3943305;PMID:6212636;PMID:7194116;PMID:7225115;PMID:7623792" - subsystem: - - Pentose phosphate pathway + - "Pentose phosphate pathway" - confidence_score: 0 - !!omap - - id: HMR_4476 + - id: "HMR_4476" - name: "" - metabolites: !!omap - m01169c: -1 @@ -84621,30 +84621,30 @@ - m02039c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130066 or ENSG00000141504 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.57 - - references: PMID:10978316 + - gene_reaction_rule: "ENSG00000130066 or ENSG00000141504" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.57" + - references: "PMID:10978316" - subsystem: - - Pentose phosphate pathway + - "Pentose phosphate pathway" - confidence_score: 0 - !!omap - - id: HMR_4477 + - id: "HMR_4477" - name: "" - metabolites: !!omap - m01761c: -1 - m02846c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197713 or ENSG00000235376 - - rxnFrom: HMRdatabase - - eccodes: 5.1.3.1 - - references: PMID:15234337;PMID:234468;PMID:2843500 + - gene_reaction_rule: "ENSG00000197713 or ENSG00000235376" + - rxnFrom: "HMRdatabase" + - eccodes: "5.1.3.1" + - references: "PMID:15234337;PMID:234468;PMID:2843500" - subsystem: - - Pentose phosphate pathway + - "Pentose phosphate pathway" - confidence_score: 0 - !!omap - - id: HMR_4501 + - id: "HMR_4501" - name: "" - metabolites: !!omap - m01761c: -1 @@ -84653,15 +84653,15 @@ - m02884c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000007350 or ENSG00000151005 or ENSG00000163931 - - rxnFrom: HMRdatabase - - eccodes: 2.2.1.1 - - references: PMID:13385248;PMID:2495942;UNIPROT:P29401 + - gene_reaction_rule: "ENSG00000007350 or ENSG00000151005 or ENSG00000163931" + - rxnFrom: "HMRdatabase" + - eccodes: "2.2.1.1" + - references: "PMID:13385248;PMID:2495942;UNIPROT:P29401" - subsystem: - - Pentose phosphate pathway + - "Pentose phosphate pathway" - confidence_score: 0 - !!omap - - id: HMR_4565 + - id: "HMR_4565" - name: "" - metabolites: !!omap - m01785c: 1 @@ -84670,15 +84670,15 @@ - m02884c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000177156 - - rxnFrom: HMRdatabase - - eccodes: 2.2.1.2 - - references: PMID:8549825;UNIPROT:P37837 + - gene_reaction_rule: "ENSG00000177156" + - rxnFrom: "HMRdatabase" + - eccodes: "2.2.1.2" + - references: "PMID:8549825;UNIPROT:P37837" - subsystem: - - Pentose phosphate pathway + - "Pentose phosphate pathway" - confidence_score: 0 - !!omap - - id: HMR_4567 + - id: "HMR_4567" - name: "" - metabolites: !!omap - m01285c: -1 @@ -84688,15 +84688,15 @@ - m02884c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000067057 or ENSG00000141959 or ENSG00000152556 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.11 - - references: PMID:4084320;PMID:4272358 + - gene_reaction_rule: "ENSG00000067057 or ENSG00000141959 or ENSG00000152556" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.11" + - references: "PMID:4084320;PMID:4272358" - subsystem: - - Pentose phosphate pathway + - "Pentose phosphate pathway" - confidence_score: 0 - !!omap - - id: HMR_4568 + - id: "HMR_4568" - name: "" - metabolites: !!omap - m02039c: -1 @@ -84706,15 +84706,15 @@ - m03130c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000067057 or ENSG00000141959 or ENSG00000152556 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.11 - - references: PMID:11945275 + - gene_reaction_rule: "ENSG00000067057 or ENSG00000141959 or ENSG00000152556" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.11" + - references: "PMID:11945275" - subsystem: - - Pentose phosphate pathway + - "Pentose phosphate pathway" - confidence_score: 0 - !!omap - - id: HMR_9799 + - id: "HMR_9799" - name: "" - metabolites: !!omap - m01285c: 1 @@ -84724,15 +84724,15 @@ - m03165c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197417 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.14 - - references: + - gene_reaction_rule: "ENSG00000197417" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.14" + - references: "" - subsystem: - - Pentose phosphate pathway + - "Pentose phosphate pathway" - confidence_score: 0 - !!omap - - id: HMR_9800 + - id: "HMR_9800" - name: "" - metabolites: !!omap - m01285c: 1 @@ -84742,15 +84742,15 @@ - m03166c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138030 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.3 - - references: + - gene_reaction_rule: "ENSG00000138030" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.3" + - references: "" - subsystem: - - Pentose phosphate pathway + - "Pentose phosphate pathway" - confidence_score: 0 - !!omap - - id: HMR_4623 + - id: "HMR_4623" - name: "" - metabolites: !!omap - m01169r: 1 @@ -84759,15 +84759,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049239 or ENSG00000130313 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.31 - - references: PMID:3858849;PMID:3932573;PMID:6852020;PMID:971315 + - gene_reaction_rule: "ENSG00000049239 or ENSG00000130313" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.31" + - references: "PMID:3858849;PMID:3932573;PMID:6852020;PMID:971315" - subsystem: - - Pentose phosphate pathway + - "Pentose phosphate pathway" - confidence_score: 0 - !!omap - - id: HMR_4625 + - id: "HMR_4625" - name: "" - metabolites: !!omap - m01169c: 1 @@ -84776,30 +84776,30 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049239 or ENSG00000130313 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.31 - - references: PMID:3858849;PMID:3932573;PMID:6852020;PMID:971315 + - gene_reaction_rule: "ENSG00000049239 or ENSG00000130313" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.31" + - references: "PMID:3858849;PMID:3932573;PMID:6852020;PMID:971315" - subsystem: - - Pentose phosphate pathway + - "Pentose phosphate pathway" - confidence_score: 0 - !!omap - - id: HMR_4710 + - id: "HMR_4710" - name: "" - metabolites: !!omap - m00639c: -1 - m00640c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169299 or ENSG00000180953 - - rxnFrom: HMRdatabase - - eccodes: 5.4.2.7 - - references: PMID:3023765 + - gene_reaction_rule: "ENSG00000169299 or ENSG00000180953" + - rxnFrom: "HMRdatabase" + - eccodes: "5.4.2.7" + - references: "PMID:3023765" - subsystem: - - Pentose phosphate pathway + - "Pentose phosphate pathway" - confidence_score: 0 - !!omap - - id: HMR_4841 + - id: "HMR_4841" - name: "" - metabolites: !!omap - m02039c: -1 @@ -84809,15 +84809,15 @@ - m02843c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.5 - - references: PMID:15234337 + - gene_reaction_rule: "ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.5" + - references: "PMID:15234337" - subsystem: - - Pentose phosphate pathway + - "Pentose phosphate pathway" - confidence_score: 0 - !!omap - - id: HMR_8074 + - id: "HMR_8074" - name: "" - metabolites: !!omap - m00640c: 1 @@ -84827,15 +84827,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000158019 or ENSG00000171174 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.15 - - references: + - gene_reaction_rule: "ENSG00000158019 or ENSG00000171174" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.15" + - references: "" - subsystem: - - Pentose phosphate pathway + - "Pentose phosphate pathway" - confidence_score: 0 - !!omap - - id: HMR_8653 + - id: "HMR_8653" - name: "" - metabolites: !!omap - m01961r: -1 @@ -84845,15 +84845,15 @@ - m02553r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049239 or ENSG00000130313 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.31 - - references: + - gene_reaction_rule: "ENSG00000049239 or ENSG00000130313" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.31" + - references: "" - subsystem: - - Pentose phosphate pathway + - "Pentose phosphate pathway" - confidence_score: 0 - !!omap - - id: HMR_3998 + - id: "HMR_3998" - name: "" - metabolites: !!omap - m01285c: -1 @@ -84863,15 +84863,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000054179 or ENSG00000138185 or ENSG00000168032 or ENSG00000171302 or ENSG00000187097 or ENSG00000188833 or ENSG00000197217 or ENSG00000197586 - - rxnFrom: HMRdatabase - - eccodes: 3.6.1.5;3.6.1.6 - - references: PMID:11278936 + - gene_reaction_rule: "ENSG00000054179 or ENSG00000138185 or ENSG00000168032 or ENSG00000171302 or ENSG00000187097 or ENSG00000188833 or ENSG00000197217 or ENSG00000197586" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.1.5;3.6.1.6" + - references: "PMID:11278936" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4000 + - id: "HMR_4000" - name: "" - metabolites: !!omap - m01371c: -1 @@ -84879,15 +84879,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000061918 and ENSG00000164116) or ENSG00000070019 or ENSG00000078295 or ENSG00000101890 or ENSG00000121281 or ENSG00000129467 or ENSG00000132518 or ENSG00000138031 or ENSG00000143199 or ENSG00000152402 or ENSG00000155897 or ENSG00000159899 or ENSG00000162104 or ENSG00000164742 or ENSG00000169418 or ENSG00000173175 or ENSG00000174233 - - rxnFrom: HMRdatabase - - eccodes: 4.6.1.1;4.6.1.2 - - references: PMID:10966920;PMID:15659711 + - gene_reaction_rule: "(ENSG00000061918 and ENSG00000164116) or ENSG00000070019 or ENSG00000078295 or ENSG00000101890 or ENSG00000121281 or ENSG00000129467 or ENSG00000132518 or ENSG00000138031 or ENSG00000143199 or ENSG00000152402 or ENSG00000155897 or ENSG00000159899 or ENSG00000162104 or ENSG00000164742 or ENSG00000169418 or ENSG00000173175 or ENSG00000174233" + - rxnFrom: "HMRdatabase" + - eccodes: "4.6.1.1;4.6.1.2" + - references: "PMID:10966920;PMID:15659711" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4002 + - id: "HMR_4002" - name: "" - metabolites: !!omap - m01285c: -2 @@ -84895,15 +84895,15 @@ - m01371c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000004455 or ENSG00000085231 or ENSG00000106992 or ENSG00000140057 or ENSG00000147853 or ENSG00000154027 or ENSG00000155085 or ENSG00000162433 or ENSG00000165695 or ENSG00000273841 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.3 - - references: PMID:16798851;PMID:1969292;PMID:211388;PMID:6182143;PMID:6244157 + - gene_reaction_rule: "ENSG00000004455 or ENSG00000085231 or ENSG00000106992 or ENSG00000140057 or ENSG00000147853 or ENSG00000154027 or ENSG00000155085 or ENSG00000162433 or ENSG00000165695 or ENSG00000273841" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.3" + - references: "PMID:16798851;PMID:1969292;PMID:211388;PMID:6182143;PMID:6244157" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4004 + - id: "HMR_4004" - name: "" - metabolites: !!omap - m01285m: -2 @@ -84911,15 +84911,15 @@ - m01371m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000004455 or ENSG00000085231 or ENSG00000106992 or ENSG00000140057 or ENSG00000147853 or ENSG00000154027 or ENSG00000155085 or ENSG00000162433 or ENSG00000165695 or ENSG00000273841 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.3 - - references: PMID:16798851;PMID:1969292;PMID:211388;PMID:6182143;PMID:6244157 + - gene_reaction_rule: "ENSG00000004455 or ENSG00000085231 or ENSG00000106992 or ENSG00000140057 or ENSG00000147853 or ENSG00000154027 or ENSG00000155085 or ENSG00000162433 or ENSG00000165695 or ENSG00000273841" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.3" + - references: "PMID:16798851;PMID:1969292;PMID:211388;PMID:6182143;PMID:6244157" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4010 + - id: "HMR_4010" - name: "" - metabolites: !!omap - m01280c: 1 @@ -84928,15 +84928,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000014257 or ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000146587 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.5 - - references: PMID:1550832 + - gene_reaction_rule: "ENSG00000014257 or ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000146587 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.5" + - references: "PMID:1550832" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4081 + - id: "HMR_4081" - name: "" - metabolites: !!omap - m01280s: 1 @@ -84945,15 +84945,15 @@ - m02751s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000014257 or ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000146587 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.5 - - references: PMID:1550832 + - gene_reaction_rule: "ENSG00000014257 or ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000146587 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.5" + - references: "PMID:1550832" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4082 + - id: "HMR_4082" - name: "" - metabolites: !!omap - m01280m: 1 @@ -84962,15 +84962,15 @@ - m02751m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000014257 or ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000146587 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.5 - - references: PMID:1550832 + - gene_reaction_rule: "ENSG00000014257 or ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000146587 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.5" + - references: "PMID:1550832" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4012 + - id: "HMR_4012" - name: "" - metabolites: !!omap - m01280c: -1 @@ -84980,15 +84980,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000156110 or ENSG00000156136 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.20;2.7.1.74 - - references: PMID:132087;PMID:3030413;PMID:6315069 + - gene_reaction_rule: "ENSG00000156110 or ENSG00000156136" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.20;2.7.1.74" + - references: "PMID:132087;PMID:3030413;PMID:6315069" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4014 + - id: "HMR_4014" - name: "" - metabolites: !!omap - m01334c: 1 @@ -84997,15 +84997,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000065989 or ENSG00000073417 or ENSG00000095464 or ENSG00000105650 or ENSG00000112541 or ENSG00000113231 or ENSG00000113448 or ENSG00000115252 or ENSG00000123360 or ENSG00000128655 or ENSG00000132915 or ENSG00000133256 or ENSG00000137496 or ENSG00000138735 or ENSG00000139053 or ENSG00000152270 or ENSG00000154678 or ENSG00000156973 or ENSG00000160191 or ENSG00000171408 or ENSG00000172572 or ENSG00000184588 or ENSG00000185527 or ENSG00000186642 or ENSG00000205268 - - rxnFrom: HMRdatabase - - eccodes: 3.1.4.17 - - references: PMID:10441464;PMID:11368177;PMID:14604994;PMID:17324123;PMID:3007144 + - gene_reaction_rule: "ENSG00000065989 or ENSG00000073417 or ENSG00000095464 or ENSG00000105650 or ENSG00000112541 or ENSG00000113231 or ENSG00000113448 or ENSG00000115252 or ENSG00000123360 or ENSG00000128655 or ENSG00000132915 or ENSG00000133256 or ENSG00000137496 or ENSG00000138735 or ENSG00000139053 or ENSG00000152270 or ENSG00000154678 or ENSG00000156973 or ENSG00000160191 or ENSG00000171408 or ENSG00000172572 or ENSG00000184588 or ENSG00000185527 or ENSG00000186642 or ENSG00000205268" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.4.17" + - references: "PMID:10441464;PMID:11368177;PMID:14604994;PMID:17324123;PMID:3007144" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4020 + - id: "HMR_4020" - name: "" - metabolites: !!omap - m01285c: -1 @@ -85014,15 +85014,15 @@ - m02016c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000143774 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.8 - - references: PMID:8663313 + - gene_reaction_rule: "ENSG00000143774" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.8" + - references: "PMID:8663313" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4022 + - id: "HMR_4022" - name: "" - metabolites: !!omap - m01433c: 1 @@ -85030,15 +85030,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000061918 and ENSG00000164116) or ENSG00000070019 or ENSG00000078295 or ENSG00000101890 or ENSG00000121281 or ENSG00000129467 or ENSG00000132518 or ENSG00000138031 or ENSG00000143199 or ENSG00000152402 or ENSG00000155897 or ENSG00000159899 or ENSG00000162104 or ENSG00000164742 or ENSG00000169418 or ENSG00000173175 or ENSG00000174233 - - rxnFrom: HMRdatabase - - eccodes: 4.6.1.1;4.6.1.2 - - references: PMID:11952099 + - gene_reaction_rule: "(ENSG00000061918 and ENSG00000164116) or ENSG00000070019 or ENSG00000078295 or ENSG00000101890 or ENSG00000121281 or ENSG00000129467 or ENSG00000132518 or ENSG00000138031 or ENSG00000143199 or ENSG00000152402 or ENSG00000155897 or ENSG00000159899 or ENSG00000162104 or ENSG00000164742 or ENSG00000169418 or ENSG00000173175 or ENSG00000174233" + - rxnFrom: "HMRdatabase" + - eccodes: "4.6.1.1;4.6.1.2" + - references: "PMID:11952099" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4038 + - id: "HMR_4038" - name: "" - metabolites: !!omap - m01804c: -1 @@ -85046,15 +85046,15 @@ - m02167c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138363 - - rxnFrom: HMRdatabase - - eccodes: 3.5.4.10 - - references: PMID:8567683;PMID:9332377 + - gene_reaction_rule: "ENSG00000138363" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.4.10" + - references: "PMID:8567683;PMID:9332377" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4040 + - id: "HMR_4040" - name: "" - metabolites: !!omap - m02039c: 1 @@ -85065,15 +85065,15 @@ - m03150c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000106348 or ENSG00000178035 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.205 - - references: PMID:4371273 + - gene_reaction_rule: "ENSG00000106348 or ENSG00000178035" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.205" + - references: "PMID:4371273" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4042 + - id: "HMR_4042" - name: "" - metabolites: !!omap - m01282c: 1 @@ -85085,15 +85085,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000035687 or ENSG00000185100 - - rxnFrom: HMRdatabase - - eccodes: 6.3.4.4 - - references: PMID:1592113 + - gene_reaction_rule: "ENSG00000035687 or ENSG00000185100" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.4.4" + - references: "PMID:1592113" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4046 + - id: "HMR_4046" - name: "" - metabolites: !!omap - m01334c: 1 @@ -85107,15 +85107,15 @@ - m03150c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000163655 - - rxnFrom: HMRdatabase - - eccodes: 6.3.5.2 - - references: PMID:3436958;PMID:6260205;PMID:8089153 + - gene_reaction_rule: "ENSG00000163655" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.5.2" + - references: "PMID:3436958;PMID:6260205;PMID:8089153" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4048 + - id: "HMR_4048" - name: "" - metabolites: !!omap - m01433c: -1 @@ -85124,15 +85124,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000065989 or ENSG00000073417 or ENSG00000095464 or ENSG00000105650 or ENSG00000112541 or ENSG00000113231 or ENSG00000113448 or ENSG00000115252 or ENSG00000123360 or ENSG00000128655 or ENSG00000132915 or ENSG00000133256 or ENSG00000137496 or ENSG00000138735 or ENSG00000139053 or ENSG00000152270 or ENSG00000154678 or ENSG00000156973 or ENSG00000160191 or ENSG00000171408 or ENSG00000172572 or ENSG00000184588 or ENSG00000185527 or ENSG00000186642 or ENSG00000205268 - - rxnFrom: HMRdatabase - - eccodes: 3.1.4.17;3.1.4.35 - - references: PMID:14604994 + - gene_reaction_rule: "ENSG00000065989 or ENSG00000073417 or ENSG00000095464 or ENSG00000105650 or ENSG00000112541 or ENSG00000113231 or ENSG00000113448 or ENSG00000115252 or ENSG00000123360 or ENSG00000128655 or ENSG00000132915 or ENSG00000133256 or ENSG00000137496 or ENSG00000138735 or ENSG00000139053 or ENSG00000152270 or ENSG00000154678 or ENSG00000156973 or ENSG00000160191 or ENSG00000171408 or ENSG00000172572 or ENSG00000184588 or ENSG00000185527 or ENSG00000186642 or ENSG00000205268" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.4.17;3.1.4.35" + - references: "PMID:14604994" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4080 + - id: "HMR_4080" - name: "" - metabolites: !!omap - m01334c: -1 @@ -85141,15 +85141,15 @@ - m02578c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116337 or ENSG00000116748 or ENSG00000133805 - - rxnFrom: HMRdatabase - - eccodes: 3.5.4.17;3.5.4.6 - - references: PMID:12482028;PMID:7034783 + - gene_reaction_rule: "ENSG00000116337 or ENSG00000116748 or ENSG00000133805" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.4.17;3.5.4.6" + - references: "PMID:12482028;PMID:7034783" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4085 + - id: "HMR_4085" - name: "" - metabolites: !!omap - m01279c: 1 @@ -85158,15 +85158,15 @@ - m02806c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000198931 - - rxnFrom: HMRdatabase - - eccodes: 2.4.2.7 - - references: PMID:6778226;PMID:692402 + - gene_reaction_rule: "ENSG00000198931" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.2.7" + - references: "PMID:6778226;PMID:692402" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4086 + - id: "HMR_4086" - name: "" - metabolites: !!omap - m01279s: 1 @@ -85175,15 +85175,15 @@ - m02806s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000198931 - - rxnFrom: HMRdatabase - - eccodes: 2.4.2.7 - - references: PMID:6778226;PMID:692402 + - gene_reaction_rule: "ENSG00000198931" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.2.7" + - references: "PMID:6778226;PMID:692402" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4134 + - id: "HMR_4134" - name: "" - metabolites: !!omap - m01948s: -1 @@ -85193,15 +85193,15 @@ - m02751s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000054179 or ENSG00000138185 or ENSG00000168032 or ENSG00000171302 or ENSG00000187097 or ENSG00000188833 or ENSG00000197217 or ENSG00000197586 - - rxnFrom: HMRdatabase - - eccodes: 3.6.1.5;3.6.1.6;3.6.1.42 - - references: PMID:8529670 + - gene_reaction_rule: "ENSG00000054179 or ENSG00000138185 or ENSG00000168032 or ENSG00000171302 or ENSG00000187097 or ENSG00000188833 or ENSG00000197217 or ENSG00000197586" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.1.5;3.6.1.6;3.6.1.42" + - references: "PMID:8529670" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4135 + - id: "HMR_4135" - name: "" - metabolites: !!omap - m01285m: -1 @@ -85210,15 +85210,15 @@ - m02016m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000143774 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.8 - - references: PMID:8663313 + - gene_reaction_rule: "ENSG00000143774" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.8" + - references: "PMID:8663313" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4168 + - id: "HMR_4168" - name: "" - metabolites: !!omap - m02016c: 1 @@ -85228,15 +85228,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125877 - - rxnFrom: HMRdatabase - - eccodes: 3.6.1.19;3.6.1.8 - - references: PMID:11278832;PMID:4310599 + - gene_reaction_rule: "ENSG00000125877" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.1.19;3.6.1.8" + - references: "PMID:11278832;PMID:4310599" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4171 + - id: "HMR_4171" - name: "" - metabolites: !!omap - m01948c: -1 @@ -85246,15 +85246,15 @@ - m02819c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000067225 or ENSG00000143627 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.40 - - references: PMID:1009117;PMID:7154942 + - gene_reaction_rule: "ENSG00000067225 or ENSG00000143627" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.40" + - references: "PMID:1009117;PMID:7154942" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4290 + - id: "HMR_4290" - name: "" - metabolites: !!omap - m02039s: 1 @@ -85264,15 +85264,15 @@ - m02751s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138185 or ENSG00000168032 or ENSG00000188833 - - rxnFrom: HMRdatabase - - eccodes: 3.6.1.5 - - references: PMID:15652174;PMID:16752921;PMID:17095758 + - gene_reaction_rule: "ENSG00000138185 or ENSG00000168032 or ENSG00000188833" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.1.5" + - references: "PMID:15652174;PMID:16752921;PMID:17095758" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4406 + - id: "HMR_4406" - name: "" - metabolites: !!omap - m01131c: 1 @@ -85283,15 +85283,15 @@ - m02806c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000128059 - - rxnFrom: HMRdatabase - - eccodes: 2.4.2.14 - - references: PMID:447621;PMID:8380692 + - gene_reaction_rule: "ENSG00000128059" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.2.14" + - references: "PMID:447621;PMID:8380692" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4412 + - id: "HMR_4412" - name: "" - metabolites: !!omap - m01282c: 1 @@ -85299,15 +85299,15 @@ - m01862c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100354 or ENSG00000239900 - - rxnFrom: HMRdatabase - - eccodes: 4.3.2.2 - - references: PMID:1872474 + - gene_reaction_rule: "ENSG00000100354 or ENSG00000239900" + - rxnFrom: "HMRdatabase" + - eccodes: "4.3.2.2" + - references: "PMID:1872474" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4417 + - id: "HMR_4417" - name: "" - metabolites: !!omap - m02040c: -1 @@ -85316,15 +85316,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000014257 or ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000146587 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.5 - - references: PMID:11690631;PMID:7999131 + - gene_reaction_rule: "ENSG00000014257 or ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000146587 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.5" + - references: "PMID:11690631;PMID:7999131" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4418 + - id: "HMR_4418" - name: "" - metabolites: !!omap - m02159c: 1 @@ -85333,15 +85333,15 @@ - m02806c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165704 - - rxnFrom: HMRdatabase - - eccodes: 2.4.2.8 - - references: PMID:16861950 + - gene_reaction_rule: "ENSG00000165704" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.2.8" + - references: "PMID:16861950" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4419 + - id: "HMR_4419" - name: "" - metabolites: !!omap - m02016c: -1 @@ -85352,15 +85352,15 @@ - m02578c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100938 or ENSG00000137198 - - rxnFrom: HMRdatabase - - eccodes: 1.7.1.7 - - references: PMID:12009299;PMID:12669231 + - gene_reaction_rule: "ENSG00000100938 or ENSG00000137198" + - rxnFrom: "HMRdatabase" + - eccodes: "1.7.1.7" + - references: "PMID:12009299;PMID:12669231" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4421 + - id: "HMR_4421" - name: "" - metabolites: !!omap - m01637c: -1 @@ -85370,15 +85370,15 @@ - m02819c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000067225 or ENSG00000143627 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.40 - - references: PMID:1009117;PMID:7154942 + - gene_reaction_rule: "ENSG00000067225 or ENSG00000143627" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.40" + - references: "PMID:1009117;PMID:7154942" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4449 + - id: "HMR_4449" - name: "" - metabolites: !!omap - m02016c: -1 @@ -85387,15 +85387,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000014257 or ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000146587 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.5 - - references: PMID:10899995 + - gene_reaction_rule: "ENSG00000014257 or ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000146587 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.5" + - references: "PMID:10899995" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4450 + - id: "HMR_4450" - name: "" - metabolites: !!omap - m02016s: -1 @@ -85404,15 +85404,15 @@ - m02751s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000014257 or ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000146587 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.5 - - references: PMID:10899995 + - gene_reaction_rule: "ENSG00000014257 or ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000146587 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.5" + - references: "PMID:10899995" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4451 + - id: "HMR_4451" - name: "" - metabolites: !!omap - m01285m: -1 @@ -85422,15 +85422,15 @@ - m02039m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.73 - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.73" + - references: "" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4452 + - id: "HMR_4452" - name: "" - metabolites: !!omap - m02016c: -1 @@ -85439,15 +85439,15 @@ - m02806c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165704 - - rxnFrom: HMRdatabase - - eccodes: 2.4.2.8 - - references: PMID:15178494;PMID:17081813;PMID:7402756 + - gene_reaction_rule: "ENSG00000165704" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.2.8" + - references: "PMID:15178494;PMID:17081813;PMID:7402756" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4453 + - id: "HMR_4453" - name: "" - metabolites: !!omap - m01334c: 1 @@ -85459,15 +85459,15 @@ - m03150c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000163655 - - rxnFrom: HMRdatabase - - eccodes: 6.3.4.1 - - references: PMID:6260205;PMID:6698284;PMID:7559506;PMID:7706277;PMID:8089153 + - gene_reaction_rule: "ENSG00000163655" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.4.1" + - references: "PMID:6260205;PMID:6698284;PMID:7559506;PMID:7706277;PMID:8089153" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4480 + - id: "HMR_4480" - name: "" - metabolites: !!omap - m01285c: -1 @@ -85476,15 +85476,15 @@ - m01639c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000004455 or ENSG00000072778 or ENSG00000085231 or ENSG00000087008 or ENSG00000106992 or ENSG00000117054 or ENSG00000140057 or ENSG00000147853 or ENSG00000151498 or ENSG00000154027 or ENSG00000155085 or ENSG00000162433 or ENSG00000165695 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.11;2.7.4.3 - - references: PMID:11768308 + - gene_reaction_rule: "ENSG00000004455 or ENSG00000072778 or ENSG00000085231 or ENSG00000087008 or ENSG00000106992 or ENSG00000117054 or ENSG00000140057 or ENSG00000147853 or ENSG00000151498 or ENSG00000154027 or ENSG00000155085 or ENSG00000162433 or ENSG00000165695 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.11;2.7.4.3" + - references: "PMID:11768308" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4481 + - id: "HMR_4481" - name: "" - metabolites: !!omap - m01280c: -1 @@ -85493,15 +85493,15 @@ - m02578c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000093072 or ENSG00000196839 - - rxnFrom: HMRdatabase - - eccodes: 3.5.4.4 - - references: PMID:15016824 + - gene_reaction_rule: "ENSG00000093072 or ENSG00000196839" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.4.4" + - references: "PMID:15016824" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4482 + - id: "HMR_4482" - name: "" - metabolites: !!omap - m01280s: -1 @@ -85510,15 +85510,15 @@ - m02578s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000093072 or ENSG00000196839 - - rxnFrom: HMRdatabase - - eccodes: 3.5.4.4 - - references: PMID:15016824 + - gene_reaction_rule: "ENSG00000093072 or ENSG00000196839" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.4.4" + - references: "PMID:15016824" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4486 + - id: "HMR_4486" - name: "" - metabolites: !!omap - m01965c: -1 @@ -85528,15 +85528,15 @@ - m02193c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000156510 or ENSG00000156515 or ENSG00000159399 or ENSG00000160883 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.1 - - references: PMID:16906315;PMID:7061426;PMID:7150652;PMID:8717435 + - gene_reaction_rule: "ENSG00000156510 or ENSG00000156515 or ENSG00000159399 or ENSG00000160883" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.1" + - references: "PMID:16906315;PMID:7061426;PMID:7150652;PMID:8717435" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4487 + - id: "HMR_4487" - name: "" - metabolites: !!omap - m01637c: 1 @@ -85546,15 +85546,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000156510 or ENSG00000156515 or ENSG00000159399 or ENSG00000160883 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.1 - - references: PMID:16906315;PMID:7061426;PMID:7150652;PMID:8717435 + - gene_reaction_rule: "ENSG00000156510 or ENSG00000156515 or ENSG00000159399 or ENSG00000160883" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.1" + - references: "PMID:16906315;PMID:7061426;PMID:7150652;PMID:8717435" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4488 + - id: "HMR_4488" - name: "" - metabolites: !!omap - m01840c: -1 @@ -85564,15 +85564,15 @@ - m02193c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000156510 or ENSG00000156515 or ENSG00000159399 or ENSG00000160883 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.1 - - references: PMID:16906315;PMID:7061426;PMID:7150652;PMID:8717435 + - gene_reaction_rule: "ENSG00000156510 or ENSG00000156515 or ENSG00000159399 or ENSG00000160883" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.1" + - references: "PMID:16906315;PMID:7061426;PMID:7150652;PMID:8717435" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4489 + - id: "HMR_4489" - name: "" - metabolites: !!omap - m01637c: 1 @@ -85582,15 +85582,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000156510 or ENSG00000156515 or ENSG00000159399 or ENSG00000160883 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.1 - - references: PMID:16906315;PMID:7061426;PMID:7150652;PMID:8717435 + - gene_reaction_rule: "ENSG00000156510 or ENSG00000156515 or ENSG00000159399 or ENSG00000160883" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.1" + - references: "PMID:16906315;PMID:7061426;PMID:7150652;PMID:8717435" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4492 + - id: "HMR_4492" - name: "" - metabolites: !!omap - m02039c: 1 @@ -85600,15 +85600,15 @@ - m02455c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000156510 or ENSG00000156515 or ENSG00000159399 or ENSG00000160883 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.1 - - references: PMID:16906315;PMID:7061426;PMID:7150652;PMID:8717435 + - gene_reaction_rule: "ENSG00000156510 or ENSG00000156515 or ENSG00000159399 or ENSG00000160883" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.1" + - references: "PMID:16906315;PMID:7061426;PMID:7150652;PMID:8717435" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4493 + - id: "HMR_4493" - name: "" - metabolites: !!omap - m01637c: 1 @@ -85618,15 +85618,15 @@ - m02455c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000156510 or ENSG00000156515 or ENSG00000159399 or ENSG00000160883 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.1 - - references: PMID:16906315;PMID:7061426;PMID:7150652;PMID:8717435 + - gene_reaction_rule: "ENSG00000156510 or ENSG00000156515 or ENSG00000159399 or ENSG00000160883" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.1" + - references: "PMID:16906315;PMID:7061426;PMID:7150652;PMID:8717435" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4495 + - id: "HMR_4495" - name: "" - metabolites: !!omap - m01962c: -1 @@ -85636,15 +85636,15 @@ - m02193c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000156510 or ENSG00000156515 or ENSG00000159399 or ENSG00000160883 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.1 - - references: PMID:16906315;PMID:7061426;PMID:7150652;PMID:8717435 + - gene_reaction_rule: "ENSG00000156510 or ENSG00000156515 or ENSG00000159399 or ENSG00000160883" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.1" + - references: "PMID:16906315;PMID:7061426;PMID:7150652;PMID:8717435" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4496 + - id: "HMR_4496" - name: "" - metabolites: !!omap - m01637c: 1 @@ -85654,15 +85654,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000156510 or ENSG00000156515 or ENSG00000159399 or ENSG00000160883 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.1 - - references: PMID:16906315;PMID:7061426;PMID:7150652;PMID:8717435 + - gene_reaction_rule: "ENSG00000156510 or ENSG00000156515 or ENSG00000159399 or ENSG00000160883" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.1" + - references: "PMID:16906315;PMID:7061426;PMID:7150652;PMID:8717435" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4518 + - id: "HMR_4518" - name: "" - metabolites: !!omap - m02037c: -1 @@ -85671,15 +85671,15 @@ - m03148c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119125 - - rxnFrom: HMRdatabase - - eccodes: 3.5.4.3 - - references: PMID:10348987;PMID:14342518;PMID:16742482;PMID:4821397;PMID:4822729;PMID:950009 + - gene_reaction_rule: "ENSG00000119125" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.4.3" + - references: "PMID:10348987;PMID:14342518;PMID:16742482;PMID:4821397;PMID:4822729;PMID:950009" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4519 + - id: "HMR_4519" - name: "" - metabolites: !!omap - m02039c: 1 @@ -85690,15 +85690,15 @@ - m03148c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000158125 - - rxnFrom: HMRdatabase - - eccodes: 1.17.1.4 - - references: PMID:2713424;PMID:8248161 + - gene_reaction_rule: "ENSG00000158125" + - rxnFrom: "HMRdatabase" + - eccodes: "1.17.1.4" + - references: "PMID:2713424;PMID:8248161" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4520 + - id: "HMR_4520" - name: "" - metabolites: !!omap - m02040c: -1 @@ -85708,15 +85708,15 @@ - m03148c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000158125 - - rxnFrom: HMRdatabase - - eccodes: 1.17.3.2 - - references: PMID:11993848;PMID:1643670;PMID:3010873;PMID:8343533 + - gene_reaction_rule: "ENSG00000158125" + - rxnFrom: "HMRdatabase" + - eccodes: "1.17.3.2" + - references: "PMID:11993848;PMID:1643670;PMID:3010873;PMID:8343533" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4573 + - id: "HMR_4573" - name: "" - metabolites: !!omap - m01680c: -1 @@ -85726,15 +85726,15 @@ - m02819c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000067225 or ENSG00000143627 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.40 - - references: PMID:1009117;PMID:7154942 + - gene_reaction_rule: "ENSG00000067225 or ENSG00000143627" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.40" + - references: "PMID:1009117;PMID:7154942" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4574 + - id: "HMR_4574" - name: "" - metabolites: !!omap - m02159c: 1 @@ -85743,15 +85743,15 @@ - m02844c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000198805 - - rxnFrom: HMRdatabase - - eccodes: 2.4.2.1 - - references: PMID:2301;PMID:37803;UNIPROT:P00491 + - gene_reaction_rule: "ENSG00000198805" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.2.1" + - references: "PMID:2301;PMID:37803;UNIPROT:P00491" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4600 + - id: "HMR_4600" - name: "" - metabolites: !!omap - m01285c: 1 @@ -85761,15 +85761,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000114956 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.113 - - references: PMID:15748706 + - gene_reaction_rule: "ENSG00000114956" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.113" + - references: "PMID:15748706" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4602 + - id: "HMR_4602" - name: "" - metabolites: !!omap - m01669c: 1 @@ -85778,15 +85778,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000014257 or ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000146587 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.5 - - references: PMID:11690631;PMID:17405878;PMID:6284244;PMID:7999131;UNIPROT:P21589;UNIPROT:Q96P26 + - gene_reaction_rule: "ENSG00000014257 or ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000146587 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.5" + - references: "PMID:11690631;PMID:17405878;PMID:6284244;PMID:7999131;UNIPROT:P21589;UNIPROT:Q96P26" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4603 + - id: "HMR_4603" - name: "" - metabolites: !!omap - m00639c: -1 @@ -85795,15 +85795,15 @@ - m02751c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000025708 or ENSG00000198805 - - rxnFrom: HMRdatabase - - eccodes: 2.4.2.1;2.4.2.4 - - references: PMID:2301;PMID:37803;UNIPROT:P00491 + - gene_reaction_rule: "ENSG00000025708 or ENSG00000198805" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.2.1;2.4.2.4" + - references: "PMID:2301;PMID:37803;UNIPROT:P00491" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4611 + - id: "HMR_4611" - name: "" - metabolites: !!omap - m01371c: -1 @@ -85813,15 +85813,15 @@ - m02990c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000048392 and ENSG00000100348 and ENSG00000167325 and ENSG00000171848) or (ENSG00000048392 and ENSG00000136810 and ENSG00000167325 and ENSG00000171848) - - rxnFrom: HMRdatabase - - eccodes: 1.17.4.1 - - references: PMID:6121703;PMID:8074691 + - gene_reaction_rule: "(ENSG00000048392 and ENSG00000100348 and ENSG00000167325 and ENSG00000171848) or (ENSG00000048392 and ENSG00000136810 and ENSG00000167325 and ENSG00000171848)" + - rxnFrom: "HMRdatabase" + - eccodes: "1.17.4.1" + - references: "PMID:6121703;PMID:8074691" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4612 + - id: "HMR_4612" - name: "" - metabolites: !!omap - m01285c: -1 @@ -85831,15 +85831,15 @@ - m02990c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000048392 and ENSG00000100348 and ENSG00000167325 and ENSG00000171848) or (ENSG00000048392 and ENSG00000136810 and ENSG00000167325 and ENSG00000171848) - - rxnFrom: HMRdatabase - - eccodes: 1.17.4.1 - - references: PMID:6121703;PMID:8074691 + - gene_reaction_rule: "(ENSG00000048392 and ENSG00000100348 and ENSG00000167325 and ENSG00000171848) or (ENSG00000048392 and ENSG00000136810 and ENSG00000167325 and ENSG00000171848)" + - rxnFrom: "HMRdatabase" + - eccodes: "1.17.4.1" + - references: "PMID:6121703;PMID:8074691" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4614 + - id: "HMR_4614" - name: "" - metabolites: !!omap - m01688c: 1 @@ -85849,15 +85849,15 @@ - m02990c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000048392 and ENSG00000100348 and ENSG00000167325 and ENSG00000171848) or (ENSG00000048392 and ENSG00000136810 and ENSG00000167325 and ENSG00000171848) - - rxnFrom: HMRdatabase - - eccodes: 1.17.4.1 - - references: PMID:6121703;PMID:8074691 + - gene_reaction_rule: "(ENSG00000048392 and ENSG00000100348 and ENSG00000167325 and ENSG00000171848) or (ENSG00000048392 and ENSG00000136810 and ENSG00000167325 and ENSG00000171848)" + - rxnFrom: "HMRdatabase" + - eccodes: "1.17.4.1" + - references: "PMID:6121703;PMID:8074691" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4615 + - id: "HMR_4615" - name: "" - metabolites: !!omap - m01680c: 1 @@ -85867,15 +85867,15 @@ - m02990c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000048392 and ENSG00000100348 and ENSG00000167325 and ENSG00000171848) or (ENSG00000048392 and ENSG00000136810 and ENSG00000167325 and ENSG00000171848) - - rxnFrom: HMRdatabase - - eccodes: 1.17.4.1 - - references: PMID:6121703;PMID:8074691 + - gene_reaction_rule: "(ENSG00000048392 and ENSG00000100348 and ENSG00000167325 and ENSG00000171848) or (ENSG00000048392 and ENSG00000136810 and ENSG00000167325 and ENSG00000171848)" + - rxnFrom: "HMRdatabase" + - eccodes: "1.17.4.1" + - references: "PMID:6121703;PMID:8074691" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4617 + - id: "HMR_4617" - name: "" - metabolites: !!omap - m01623c: -1 @@ -85885,15 +85885,15 @@ - m02990c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000048392 and ENSG00000100348 and ENSG00000167325 and ENSG00000171848) or (ENSG00000048392 and ENSG00000136810 and ENSG00000167325 and ENSG00000171848) - - rxnFrom: HMRdatabase - - eccodes: 1.17.4.1 - - references: PMID:6121703;PMID:8074691 + - gene_reaction_rule: "(ENSG00000048392 and ENSG00000100348 and ENSG00000167325 and ENSG00000171848) or (ENSG00000048392 and ENSG00000136810 and ENSG00000167325 and ENSG00000171848)" + - rxnFrom: "HMRdatabase" + - eccodes: "1.17.4.1" + - references: "PMID:6121703;PMID:8074691" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4618 + - id: "HMR_4618" - name: "" - metabolites: !!omap - m01756c: 1 @@ -85903,15 +85903,15 @@ - m03130c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000048392 and ENSG00000100348 and ENSG00000167325 and ENSG00000171848) or (ENSG00000048392 and ENSG00000136810 and ENSG00000167325 and ENSG00000171848) - - rxnFrom: HMRdatabase - - eccodes: 1.17.4.1 - - references: PMID:6121703;PMID:8074691 + - gene_reaction_rule: "(ENSG00000048392 and ENSG00000100348 and ENSG00000167325 and ENSG00000171848) or (ENSG00000048392 and ENSG00000136810 and ENSG00000167325 and ENSG00000171848)" + - rxnFrom: "HMRdatabase" + - eccodes: "1.17.4.1" + - references: "PMID:6121703;PMID:8074691" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4619 + - id: "HMR_4619" - name: "" - metabolites: !!omap - m01424c: -1 @@ -85921,15 +85921,15 @@ - m02990c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000048392 and ENSG00000100348 and ENSG00000167325 and ENSG00000171848) or (ENSG00000048392 and ENSG00000136810 and ENSG00000167325 and ENSG00000171848) - - rxnFrom: HMRdatabase - - eccodes: 1.17.4.1 - - references: PMID:6121703;PMID:8074691 + - gene_reaction_rule: "(ENSG00000048392 and ENSG00000100348 and ENSG00000167325 and ENSG00000171848) or (ENSG00000048392 and ENSG00000136810 and ENSG00000167325 and ENSG00000171848)" + - rxnFrom: "HMRdatabase" + - eccodes: "1.17.4.1" + - references: "PMID:6121703;PMID:8074691" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4621 + - id: "HMR_4621" - name: "" - metabolites: !!omap - m01754c: 1 @@ -85939,15 +85939,15 @@ - m03106c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000048392 and ENSG00000100348 and ENSG00000167325 and ENSG00000171848) or (ENSG00000048392 and ENSG00000136810 and ENSG00000167325 and ENSG00000171848) - - rxnFrom: HMRdatabase - - eccodes: 1.17.4.1 - - references: PMID:6121703;PMID:8074691 + - gene_reaction_rule: "(ENSG00000048392 and ENSG00000100348 and ENSG00000167325 and ENSG00000171848) or (ENSG00000048392 and ENSG00000136810 and ENSG00000167325 and ENSG00000171848)" + - rxnFrom: "HMRdatabase" + - eccodes: "1.17.4.1" + - references: "PMID:6121703;PMID:8074691" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4632 + - id: "HMR_4632" - name: "" - metabolites: !!omap - m01639c: -1 @@ -85956,15 +85956,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000014257 or ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000146587 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.5 - - references: PMID:11690631;PMID:17405878;PMID:6284244;PMID:7999131;UNIPROT:P21589;UNIPROT:Q96P26 + - gene_reaction_rule: "ENSG00000014257 or ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000146587 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.5" + - references: "PMID:11690631;PMID:17405878;PMID:6284244;PMID:7999131;UNIPROT:P21589;UNIPROT:Q96P26" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4646 + - id: "HMR_4646" - name: "" - metabolites: !!omap - m02039c: 1 @@ -85975,15 +85975,15 @@ - m03148c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000158125 - - rxnFrom: HMRdatabase - - eccodes: 1.17.1.4 - - references: PMID:11246119;PMID:12632927 + - gene_reaction_rule: "ENSG00000158125" + - rxnFrom: "HMRdatabase" + - eccodes: "1.17.1.4" + - references: "PMID:11246119;PMID:12632927" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4648 + - id: "HMR_4648" - name: "" - metabolites: !!omap - m02039p: 1 @@ -85994,15 +85994,15 @@ - m03148p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000158125 - - rxnFrom: HMRdatabase - - eccodes: 1.17.1.4 - - references: PMID:11246119;PMID:12632927 + - gene_reaction_rule: "ENSG00000158125" + - rxnFrom: "HMRdatabase" + - eccodes: "1.17.1.4" + - references: "PMID:11246119;PMID:12632927" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4649 + - id: "HMR_4649" - name: "" - metabolites: !!omap - m02040c: -1 @@ -86012,15 +86012,15 @@ - m03148c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000158125 - - rxnFrom: HMRdatabase - - eccodes: 1.17.3.2 - - references: PMID:16087479;PMID:1643670;PMID:16756494;PMID:18600557;PMID:8343533 + - gene_reaction_rule: "ENSG00000158125" + - rxnFrom: "HMRdatabase" + - eccodes: "1.17.3.2" + - references: "PMID:16087479;PMID:1643670;PMID:16756494;PMID:18600557;PMID:8343533" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4650 + - id: "HMR_4650" - name: "" - metabolites: !!omap - m02040p: -1 @@ -86030,15 +86030,15 @@ - m03148p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000158125 - - rxnFrom: HMRdatabase - - eccodes: 1.17.3.2 - - references: PMID:16087479;PMID:1643670;PMID:16756494;PMID:18600557;PMID:8343533 + - gene_reaction_rule: "ENSG00000158125" + - rxnFrom: "HMRdatabase" + - eccodes: "1.17.3.2" + - references: "PMID:16087479;PMID:1643670;PMID:16756494;PMID:18600557;PMID:8343533" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4651 + - id: "HMR_4651" - name: "" - metabolites: !!omap - m02037c: 1 @@ -86047,15 +86047,15 @@ - m02844c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000198805 - - rxnFrom: HMRdatabase - - eccodes: 2.4.2.15;2.4.2.1 - - references: PMID:2301;PMID:37803;UNIPROT:P00491 + - gene_reaction_rule: "ENSG00000198805" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.2.15;2.4.2.1" + - references: "PMID:2301;PMID:37803;UNIPROT:P00491" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4663 + - id: "HMR_4663" - name: "" - metabolites: !!omap - m02751c: -1 @@ -86064,15 +86064,15 @@ - m03149c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000198805 - - rxnFrom: HMRdatabase - - eccodes: 2.4.2.1 - - references: PMID:2301;PMID:37803;UNIPROT:P00491 + - gene_reaction_rule: "ENSG00000198805" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.2.1" + - references: "PMID:2301;PMID:37803;UNIPROT:P00491" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4664 + - id: "HMR_4664" - name: "" - metabolites: !!omap - m02759c: 1 @@ -86081,15 +86081,15 @@ - m03150c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165704 - - rxnFrom: HMRdatabase - - eccodes: 2.4.2.22 - - references: + - gene_reaction_rule: "ENSG00000165704" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.2.22" + - references: "" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4694 + - id: "HMR_4694" - name: "" - metabolites: !!omap - m01666c: -1 @@ -86098,15 +86098,15 @@ - m02578c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000093072 or ENSG00000196839 - - rxnFrom: HMRdatabase - - eccodes: 3.5.4.4 - - references: PMID:12381379;PMID:4625871;PMID:9388 + - gene_reaction_rule: "ENSG00000093072 or ENSG00000196839" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.4.4" + - references: "PMID:12381379;PMID:4625871;PMID:9388" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4695 + - id: "HMR_4695" - name: "" - metabolites: !!omap - m00639c: -1 @@ -86115,15 +86115,15 @@ - m02751c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000025708 or ENSG00000198805 - - rxnFrom: HMRdatabase - - eccodes: 2.4.2.1;2.4.2.4 - - references: PMID:2301;PMID:37803;UNIPROT:P00491 + - gene_reaction_rule: "ENSG00000025708 or ENSG00000198805" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.2.1;2.4.2.4" + - references: "PMID:2301;PMID:37803;UNIPROT:P00491" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4705 + - id: "HMR_4705" - name: "" - metabolites: !!omap - m02040c: -1 @@ -86132,15 +86132,15 @@ - m03150c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000014257 or ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000146587 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.5 - - references: PMID:11690631;PMID:17405878;PMID:6284244;PMID:7999131;UNIPROT:P21589;UNIPROT:Q96P26 + - gene_reaction_rule: "ENSG00000014257 or ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000146587 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.5" + - references: "PMID:11690631;PMID:17405878;PMID:6284244;PMID:7999131;UNIPROT:P21589;UNIPROT:Q96P26" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4709 + - id: "HMR_4709" - name: "" - metabolites: !!omap - m00639c: -1 @@ -86149,15 +86149,15 @@ - m02751c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000025708 or ENSG00000198805 - - rxnFrom: HMRdatabase - - eccodes: 2.4.2.1;2.4.2.4 - - references: PMID:2301;PMID:37803;UNIPROT:P00491 + - gene_reaction_rule: "ENSG00000025708 or ENSG00000198805" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.2.1;2.4.2.4" + - references: "PMID:2301;PMID:37803;UNIPROT:P00491" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4799 + - id: "HMR_4799" - name: "" - metabolites: !!omap - m01131c: -1 @@ -86169,15 +86169,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000159131 - - rxnFrom: HMRdatabase - - eccodes: 6.3.4.13 - - references: PMID:8299947 + - gene_reaction_rule: "ENSG00000159131" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.4.13" + - references: "PMID:8299947" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4802 + - id: "HMR_4802" - name: "" - metabolites: !!omap - m01132c: -1 @@ -86188,15 +86188,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000159131 - - rxnFrom: HMRdatabase - - eccodes: 6.3.3.1 - - references: PMID:4084560 + - gene_reaction_rule: "ENSG00000159131" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.3.1" + - references: "PMID:4084560" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4804 + - id: "HMR_4804" - name: "" - metabolites: !!omap - m01130c: -1 @@ -86205,15 +86205,15 @@ - m02039c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000128050 - - rxnFrom: HMRdatabase - - eccodes: 4.1.1.21 - - references: PMID:4772278;UNIPROT:P22234 + - gene_reaction_rule: "ENSG00000128050" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.1.21" + - references: "PMID:4772278;UNIPROT:P22234" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4808 + - id: "HMR_4808" - name: "" - metabolites: !!omap - m01132c: 1 @@ -86227,15 +86227,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178921 - - rxnFrom: HMRdatabase - - eccodes: 6.3.5.3 - - references: PMID:6722784;UNIPROT:O15067 + - gene_reaction_rule: "ENSG00000178921" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.5.3" + - references: "PMID:6722784;UNIPROT:O15067" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4810 + - id: "HMR_4810" - name: "" - metabolites: !!omap - m01130c: -1 @@ -86247,15 +86247,15 @@ - m02872c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000128050 - - rxnFrom: HMRdatabase - - eccodes: 6.3.2.6 - - references: PMID:17224163;UNIPROT:P22234 + - gene_reaction_rule: "ENSG00000128050" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.2.6" + - references: "PMID:17224163;UNIPROT:P22234" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4812 + - id: "HMR_4812" - name: "" - metabolites: !!omap - m01304c: -1 @@ -86263,15 +86263,15 @@ - m02872c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100354 or ENSG00000239900 - - rxnFrom: HMRdatabase - - eccodes: 4.3.2.2 - - references: PMID:1872474 + - gene_reaction_rule: "ENSG00000100354 or ENSG00000239900" + - rxnFrom: "HMRdatabase" + - eccodes: "4.3.2.2" + - references: "PMID:1872474" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4814 + - id: "HMR_4814" - name: "" - metabolites: !!omap - m00266c: -1 @@ -86280,15 +86280,15 @@ - m02980c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138363 - - rxnFrom: HMRdatabase - - eccodes: 2.1.2.3 - - references: PMID:11381136 + - gene_reaction_rule: "ENSG00000138363" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.2.3" + - references: "PMID:11381136" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_5301 + - id: "HMR_5301" - name: "" - metabolites: !!omap - m01948c: 1 @@ -86298,15 +86298,15 @@ - m03123c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130717 or ENSG00000143179 or ENSG00000198276 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.48 - - references: + - gene_reaction_rule: "ENSG00000130717 or ENSG00000143179 or ENSG00000198276" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.48" + - references: "" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_5353 + - id: "HMR_5353" - name: "" - metabolites: !!omap - m01285c: -1 @@ -86315,15 +86315,15 @@ - m01686c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000143774 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.8 - - references: PMID:164875;PMID:211390;PMID:3024975;PMID:4307347;PMID:5552394 + - gene_reaction_rule: "ENSG00000143774" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.8" + - references: "PMID:164875;PMID:211390;PMID:3024975;PMID:4307347;PMID:5552394" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6601 + - id: "HMR_6601" - name: "" - metabolites: !!omap - m01312c: -1 @@ -86332,15 +86332,15 @@ - m03122c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151360 - - rxnFrom: HMRdatabase - - eccodes: 3.5.3.4 - - references: + - gene_reaction_rule: "ENSG00000151360" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.3.4" + - references: "" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6602 + - id: "HMR_6602" - name: "" - metabolites: !!omap - m01315c: 1 @@ -86350,15 +86350,15 @@ - m03121c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117592 or ENSG00000121053 or ENSG00000130508 or ENSG00000147485 or ENSG00000167419 - - rxnFrom: HMRdatabase - - eccodes: 1.11.1.7 - - references: PMID:10600166 + - gene_reaction_rule: "ENSG00000117592 or ENSG00000121053 or ENSG00000130508 or ENSG00000147485 or ENSG00000167419" + - rxnFrom: "HMRdatabase" + - eccodes: "1.11.1.7" + - references: "PMID:10600166" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6603 + - id: "HMR_6603" - name: "" - metabolites: !!omap - m01315s: 1 @@ -86368,15 +86368,15 @@ - m03121s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117592 or ENSG00000121053 or ENSG00000130508 or ENSG00000147485 or ENSG00000167419 - - rxnFrom: HMRdatabase - - eccodes: 1.11.1.7 - - references: PMID:10600166 + - gene_reaction_rule: "ENSG00000117592 or ENSG00000121053 or ENSG00000130508 or ENSG00000147485 or ENSG00000167419" + - rxnFrom: "HMRdatabase" + - eccodes: "1.11.1.7" + - references: "PMID:10600166" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6605 + - id: "HMR_6605" - name: "" - metabolites: !!omap - m02040c: -1 @@ -86385,15 +86385,15 @@ - m03120c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:8325534 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:8325534" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6606 + - id: "HMR_6606" - name: "" - metabolites: !!omap - m01368c: -1 @@ -86402,15 +86402,15 @@ - m03120c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:8325534 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:8325534" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6607 + - id: "HMR_6607" - name: "" - metabolites: !!omap - m02040c: -1 @@ -86419,15 +86419,15 @@ - m03120c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6609 + - id: "HMR_6609" - name: "" - metabolites: !!omap - m01312c: 1 @@ -86436,15 +86436,15 @@ - m02040c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 3.5.2.5 - - references: PMID:11342423;PMID:8248161 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.2.5" + - references: "PMID:11342423;PMID:8248161" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6610 + - id: "HMR_6610" - name: "" - metabolites: !!omap - m01104c: -1 @@ -86453,15 +86453,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:8248161;PMID:11342423 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:8248161;PMID:11342423" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6611 + - id: "HMR_6611" - name: "" - metabolites: !!omap - m01104c: 1 @@ -86471,15 +86471,15 @@ - m03120c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 1.7.3.3 - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "1.7.3.3" + - references: "" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_7144 + - id: "HMR_7144" - name: "" - metabolites: !!omap - m01288c: -1 @@ -86489,15 +86489,15 @@ - m02845c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000142185 or ENSG00000165609 or ENSG00000170222 or ENSG00000170502 - - rxnFrom: HMRdatabase - - eccodes: 3.6.1.13;3.6.1.53 - - references: + - gene_reaction_rule: "ENSG00000142185 or ENSG00000165609 or ENSG00000170222 or ENSG00000170502" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.1.13;3.6.1.53" + - references: "" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8755 + - id: "HMR_8755" - name: "" - metabolites: !!omap - m02040p: -1 @@ -86507,15 +86507,15 @@ - m03148p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000158125 - - rxnFrom: HMRdatabase - - eccodes: 1.17.3.2 - - references: + - gene_reaction_rule: "ENSG00000158125" + - rxnFrom: "HMRdatabase" + - eccodes: "1.17.3.2" + - references: "" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_9797 + - id: "HMR_9797" - name: "" - metabolites: !!omap - m01279c: -1 @@ -86524,15 +86524,15 @@ - m02578c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4016 + - id: "HMR_4016" - name: "" - metabolites: !!omap - m01285c: -1 @@ -86541,15 +86541,15 @@ - m02034c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.6 - - references: PMID:11768308 + - gene_reaction_rule: "ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.6" + - references: "PMID:11768308" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4018 + - id: "HMR_4018" - name: "" - metabolites: !!omap - m01285m: -1 @@ -86558,15 +86558,15 @@ - m02034m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.6 - - references: PMID:11768308 + - gene_reaction_rule: "ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.6" + - references: "PMID:11768308" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4044 + - id: "HMR_4044" - name: "" - metabolites: !!omap - m01285c: -1 @@ -86575,15 +86575,15 @@ - m01642c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.6 - - references: PMID:11768308 + - gene_reaction_rule: "ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.6" + - references: "PMID:11768308" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4291 + - id: "HMR_4291" - name: "" - metabolites: !!omap - m01285c: -1 @@ -86592,15 +86592,15 @@ - m02193c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.6 - - references: PMID:11768308 + - gene_reaction_rule: "ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.6" + - references: "PMID:11768308" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4420 + - id: "HMR_4420" - name: "" - metabolites: !!omap - m01285m: -1 @@ -86609,15 +86609,15 @@ - m01642m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.6 - - references: PMID:11768308 + - gene_reaction_rule: "ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.6" + - references: "PMID:11768308" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4570 + - id: "HMR_4570" - name: "" - metabolites: !!omap - m01285c: -1 @@ -86626,15 +86626,15 @@ - m01688c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.6 - - references: PMID:11768308;PMID:2546816;PMID:2832402;UNIPROT:P15531 + - gene_reaction_rule: "ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.6" + - references: "PMID:11768308;PMID:2546816;PMID:2832402;UNIPROT:P15531" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4572 + - id: "HMR_4572" - name: "" - metabolites: !!omap - m01285m: -1 @@ -86643,15 +86643,15 @@ - m01688m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.6 - - references: PMID:11768308;PMID:2546816;PMID:2832402;UNIPROT:P15531 + - gene_reaction_rule: "ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.6" + - references: "PMID:11768308;PMID:2546816;PMID:2832402;UNIPROT:P15531" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4006 + - id: "HMR_4006" - name: "" - metabolites: !!omap - m01285c: -1 @@ -86660,15 +86660,15 @@ - m03130c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.6 - - references: PMID:132087 + - gene_reaction_rule: "ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.6" + - references: "PMID:132087" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4028 + - id: "HMR_4028" - name: "" - metabolites: !!omap - m01285c: -1 @@ -86677,15 +86677,15 @@ - m01623c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.6 - - references: PMID:132087 + - gene_reaction_rule: "ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.6" + - references: "PMID:132087" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4030 + - id: "HMR_4030" - name: "" - metabolites: !!omap - m01285m: -1 @@ -86694,15 +86694,15 @@ - m01623m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.6 - - references: PMID:132087 + - gene_reaction_rule: "ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.6" + - references: "PMID:132087" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4670 + - id: "HMR_4670" - name: "" - metabolites: !!omap - m01285c: -1 @@ -86711,15 +86711,15 @@ - m01645c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.6 - - references: PMID:11768308;PMID:2546816;PMID:2832402;UNIPROT:P15531 + - gene_reaction_rule: "ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.6" + - references: "PMID:11768308;PMID:2546816;PMID:2832402;UNIPROT:P15531" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4673 + - id: "HMR_4673" - name: "" - metabolites: !!omap - m01285c: -1 @@ -86728,15 +86728,15 @@ - m01756c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.6 - - references: PMID:132087 + - gene_reaction_rule: "ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.6" + - references: "PMID:132087" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4675 + - id: "HMR_4675" - name: "" - metabolites: !!omap - m01285m: 1 @@ -86745,15 +86745,15 @@ - m01756m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.6 - - references: PMID:132087 + - gene_reaction_rule: "ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.6" + - references: "PMID:132087" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6614 + - id: "HMR_6614" - name: "" - metabolites: !!omap - m01637c: -1 @@ -86762,15 +86762,15 @@ - m01753c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.6 - - references: PMID:3026468 + - gene_reaction_rule: "ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.6" + - references: "PMID:3026468" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6615 + - id: "HMR_6615" - name: "" - metabolites: !!omap - m01637m: -1 @@ -86779,15 +86779,15 @@ - m01753m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.6 - - references: PMID:3026468 + - gene_reaction_rule: "ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.6" + - references: "PMID:3026468" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6616 + - id: "HMR_6616" - name: "" - metabolites: !!omap - m01637n: -1 @@ -86796,15 +86796,15 @@ - m01753n: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.6 - - references: PMID:3026468 + - gene_reaction_rule: "ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.6" + - references: "PMID:3026468" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4635 + - id: "HMR_4635" - name: "" - metabolites: !!omap - m01285c: -1 @@ -86813,15 +86813,15 @@ - m01753c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.6 - - references: PMID:132087 + - gene_reaction_rule: "ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.6" + - references: "PMID:132087" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3793 + - id: "HMR_3793" - name: "" - metabolites: !!omap - m00661m: -1 @@ -86830,15 +86830,15 @@ - m02819m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113492 - - rxnFrom: HMRdatabase - - eccodes: 2.6.1.40 - - references: PMID:5773299 + - gene_reaction_rule: "ENSG00000113492" + - rxnFrom: "HMRdatabase" + - eccodes: "2.6.1.40" + - references: "PMID:5773299" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3931 + - id: "HMR_3931" - name: "" - metabolites: !!omap - m02039c: -1 @@ -86848,15 +86848,15 @@ - m02990c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000184470 or ENSG00000197763 or ENSG00000198431 - - rxnFrom: HMRdatabase - - eccodes: 1.8.1.9 - - references: PMID:10462449;PMID:11060283;PMID:15110392 + - gene_reaction_rule: "ENSG00000184470 or ENSG00000197763 or ENSG00000198431" + - rxnFrom: "HMRdatabase" + - eccodes: "1.8.1.9" + - references: "PMID:10462449;PMID:11060283;PMID:15110392" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3969 + - id: "HMR_3969" - name: "" - metabolites: !!omap - m02039c: 1 @@ -86866,15 +86866,15 @@ - m03123c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130717 or ENSG00000143179 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.48 - - references: + - gene_reaction_rule: "ENSG00000130717 or ENSG00000143179" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.48" + - references: "" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3970 + - id: "HMR_3970" - name: "" - metabolites: !!omap - m02040c: -1 @@ -86883,15 +86883,15 @@ - m03123c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.5 - - references: + - gene_reaction_rule: "ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.5" + - references: "" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4008 + - id: "HMR_4008" - name: "" - metabolites: !!omap - m01285c: -1 @@ -86900,15 +86900,15 @@ - m03114c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162368 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.14;2.7.4.4 - - references: PMID:10462544;PMID:11912132;PMID:132087;PMID:7581800;PMID:8867780 + - gene_reaction_rule: "ENSG00000162368" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.14;2.7.4.4" + - references: "PMID:10462544;PMID:11912132;PMID:132087;PMID:7581800;PMID:8867780" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4032 + - id: "HMR_4032" - name: "" - metabolites: !!omap - m01285c: 1 @@ -86920,15 +86920,15 @@ - m03130c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000047230 or ENSG00000171793 - - rxnFrom: HMRdatabase - - eccodes: 6.3.4.2 - - references: PMID:10064135;PMID:7695960;PMID:8365402;PMID:932036 + - gene_reaction_rule: "ENSG00000047230 or ENSG00000171793" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.4.2" + - references: "PMID:10064135;PMID:7695960;PMID:8365402;PMID:932036" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4034 + - id: "HMR_4034" - name: "" - metabolites: !!omap - m01285c: 2 @@ -86942,15 +86942,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084774 - - rxnFrom: HMRdatabase - - eccodes: 6.3.5.5 - - references: PMID:2472341;PMID:29209;PMID:8089153 + - gene_reaction_rule: "ENSG00000084774" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.5.5" + - references: "PMID:2472341;PMID:29209;PMID:8089153" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4036 + - id: "HMR_4036" - name: "" - metabolites: !!omap - m01596c: 1 @@ -86959,15 +86959,15 @@ - m03114c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000114491 - - rxnFrom: HMRdatabase - - eccodes: 4.1.1.23 - - references: PMID:856170;PMID:8631878;PMID:9042911 + - gene_reaction_rule: "ENSG00000114491" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.1.23" + - references: "PMID:856170;PMID:8631878;PMID:9042911" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4050 + - id: "HMR_4050" - name: "" - metabolites: !!omap - m01370c: 1 @@ -86977,15 +86977,15 @@ - m02751c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084774 - - rxnFrom: HMRdatabase - - eccodes: 2.1.3.2 - - references: PMID:13319326;PMID:29209 + - gene_reaction_rule: "ENSG00000084774" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.3.2" + - references: "PMID:13319326;PMID:29209" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4056 + - id: "HMR_4056" - name: "" - metabolites: !!omap - m01752c: -1 @@ -86994,15 +86994,15 @@ - m02996c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000014257 or ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000146587 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.5;3.1.3.35 - - references: PMID:14235544;PMID:15262124;PMID:15990964 + - gene_reaction_rule: "ENSG00000014257 or ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000146587 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.5;3.1.3.35" + - references: "PMID:14235544;PMID:15262124;PMID:15990964" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4059 + - id: "HMR_4059" - name: "" - metabolites: !!omap - m02039r: 1 @@ -87012,15 +87012,15 @@ - m03114r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000054179 or ENSG00000138185 or ENSG00000168032 or ENSG00000171302 or ENSG00000187097 or ENSG00000188833 or ENSG00000197217 or ENSG00000197586 - - rxnFrom: HMRdatabase - - eccodes: 3.6.1.5;3.6.1.6 - - references: PMID:10858452 + - gene_reaction_rule: "ENSG00000054179 or ENSG00000138185 or ENSG00000168032 or ENSG00000171302 or ENSG00000187097 or ENSG00000188833 or ENSG00000197217 or ENSG00000197586" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.1.5;3.6.1.6" + - references: "PMID:10858452" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4060 + - id: "HMR_4060" - name: "" - metabolites: !!omap - m02039s: 1 @@ -87030,15 +87030,15 @@ - m03114s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000054179 or ENSG00000138185 or ENSG00000168032 or ENSG00000171302 or ENSG00000187097 or ENSG00000188833 or ENSG00000197217 or ENSG00000197586 - - rxnFrom: HMRdatabase - - eccodes: 3.6.1.5;3.6.1.6 - - references: PMID:10858452 + - gene_reaction_rule: "ENSG00000054179 or ENSG00000138185 or ENSG00000168032 or ENSG00000171302 or ENSG00000187097 or ENSG00000188833 or ENSG00000197217 or ENSG00000197586" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.1.5;3.6.1.6" + - references: "PMID:10858452" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4127 + - id: "HMR_4127" - name: "" - metabolites: !!omap - m01967c: 1 @@ -87048,15 +87048,15 @@ - m03114c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000154269 or ENSG00000183828 or ENSG00000197594 - - rxnFrom: HMRdatabase - - eccodes: 3.6.1.8;3.6.1.9;3.6.1.45 - - references: PMID:11579996;PMID:11946484;PMID:12429023;PMID:12846830;PMID:1315502;PMID:2822037;PMID:2848456;PMID:3001038;PMID:4403504;PMID:7532398;PMID:7860751;PMID:8001561 + - gene_reaction_rule: "ENSG00000154269 or ENSG00000183828 or ENSG00000197594" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.1.8;3.6.1.9;3.6.1.45" + - references: "PMID:11579996;PMID:11946484;PMID:12429023;PMID:12846830;PMID:1315502;PMID:2822037;PMID:2848456;PMID:3001038;PMID:4403504;PMID:7532398;PMID:7860751;PMID:8001561" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4177 + - id: "HMR_4177" - name: "" - metabolites: !!omap - m01590c: -1 @@ -87065,15 +87065,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000014257 or ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000146587 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.5 - - references: PMID:7479738 + - gene_reaction_rule: "ENSG00000014257 or ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000146587 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.5" + - references: "PMID:7479738" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4179 + - id: "HMR_4179" - name: "" - metabolites: !!omap - m01590s: -1 @@ -87082,15 +87082,15 @@ - m02751s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000014257 or ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000146587 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.5 - - references: PMID:7479738 + - gene_reaction_rule: "ENSG00000014257 or ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000146587 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.5" + - references: "PMID:7479738" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4182 + - id: "HMR_4182" - name: "" - metabolites: !!omap - m01590c: 1 @@ -87100,15 +87100,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116199 or ENSG00000141560 or ENSG00000162408 or ENSG00000167363 or ENSG00000172456 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.- - - references: + - gene_reaction_rule: "ENSG00000116199 or ENSG00000141560 or ENSG00000162408 or ENSG00000167363 or ENSG00000172456" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.-" + - references: "" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4183 + - id: "HMR_4183" - name: "" - metabolites: !!omap - m01424s: -1 @@ -87118,15 +87118,15 @@ - m02751s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138185 or ENSG00000168032 or ENSG00000188833 - - rxnFrom: HMRdatabase - - eccodes: 3.6.1.5 - - references: PMID:15652174;PMID:16752921;PMID:17095758 + - gene_reaction_rule: "ENSG00000138185 or ENSG00000168032 or ENSG00000188833" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.1.5" + - references: "PMID:15652174;PMID:16752921;PMID:17095758" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4192 + - id: "HMR_4192" - name: "" - metabolites: !!omap - m01424s: 1 @@ -87136,15 +87136,15 @@ - m02751s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138185 or ENSG00000168032 or ENSG00000188833 - - rxnFrom: HMRdatabase - - eccodes: 3.6.1.5 - - references: PMID:15652174;PMID:16752921;PMID:17095758 + - gene_reaction_rule: "ENSG00000138185 or ENSG00000168032 or ENSG00000188833" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.1.5" + - references: "PMID:15652174;PMID:16752921;PMID:17095758" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4194 + - id: "HMR_4194" - name: "" - metabolites: !!omap - m01285c: 1 @@ -87158,15 +87158,15 @@ - m03130c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000047230 or ENSG00000171793 - - rxnFrom: HMRdatabase - - eccodes: 6.3.4.2 - - references: PMID:16820675;PMID:932036 + - gene_reaction_rule: "ENSG00000047230 or ENSG00000171793" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.4.2" + - references: "PMID:16820675;PMID:932036" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4210 + - id: "HMR_4210" - name: "" - metabolites: !!omap - m02039c: -1 @@ -87176,15 +87176,15 @@ - m03130c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000067225 or ENSG00000143627 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.40 - - references: PMID:1009117;PMID:7154942 + - gene_reaction_rule: "ENSG00000067225 or ENSG00000143627" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.40" + - references: "PMID:1009117;PMID:7154942" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4211 + - id: "HMR_4211" - name: "" - metabolites: !!omap - m02039s: 1 @@ -87194,15 +87194,15 @@ - m03130s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125877 - - rxnFrom: HMRdatabase - - eccodes: 3.6.1.19 - - references: PMID:15652174;PMID:16752921;PMID:17095758 + - gene_reaction_rule: "ENSG00000125877" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.1.19" + - references: "PMID:15652174;PMID:16752921;PMID:17095758" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4343 + - id: "HMR_4343" - name: "" - metabolites: !!omap - m02759c: 1 @@ -87211,15 +87211,15 @@ - m03118c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000094841 - - rxnFrom: HMRdatabase - - eccodes: 2.4.2.9 - - references: + - gene_reaction_rule: "ENSG00000094841" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.2.9" + - references: "" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4345 + - id: "HMR_4345" - name: "" - metabolites: !!omap - m01052c: -1 @@ -87229,15 +87229,15 @@ - m03118c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000188641 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.2 - - references: PMID:15450176;PMID:8429016 + - gene_reaction_rule: "ENSG00000188641" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.2" + - references: "PMID:15450176;PMID:8429016" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4346 + - id: "HMR_4346" - name: "" - metabolites: !!omap - m00923c: 1 @@ -87246,15 +87246,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000092964 or ENSG00000113657 or ENSG00000147647 - - rxnFrom: HMRdatabase - - eccodes: 3.5.2.2 - - references: PMID:2827580 + - gene_reaction_rule: "ENSG00000092964 or ENSG00000113657 or ENSG00000147647" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.2.2" + - references: "PMID:2827580" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4470 + - id: "HMR_4470" - name: "" - metabolites: !!omap - m01705c: 1 @@ -87264,15 +87264,15 @@ - m02997c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000188641 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.2 - - references: PMID:1260500;PMID:8615641 + - gene_reaction_rule: "ENSG00000188641" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.2" + - references: "PMID:1260500;PMID:8615641" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4471 + - id: "HMR_4471" - name: "" - metabolites: !!omap - m01705m: 1 @@ -87282,15 +87282,15 @@ - m02997m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000188641 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.2 - - references: PMID:1260500;PMID:8615641 + - gene_reaction_rule: "ENSG00000188641" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.2" + - references: "PMID:1260500;PMID:8615641" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4472 + - id: "HMR_4472" - name: "" - metabolites: !!omap - m01705c: 1 @@ -87300,15 +87300,15 @@ - m02997c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000188641 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.2 - - references: PMID:15450176 + - gene_reaction_rule: "ENSG00000188641" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.2" + - references: "PMID:15450176" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4484 + - id: "HMR_4484" - name: "" - metabolites: !!omap - m01752m: -1 @@ -87317,15 +87317,15 @@ - m02996m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000014257 or ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000146587 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.5;3.1.3.35 - - references: PMID:14235544;PMID:15262124;PMID:15990964 + - gene_reaction_rule: "ENSG00000014257 or ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000146587 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.5;3.1.3.35" + - references: "PMID:14235544;PMID:15262124;PMID:15990964" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4485 + - id: "HMR_4485" - name: "" - metabolites: !!omap - m00639c: -1 @@ -87334,15 +87334,15 @@ - m02997c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000025708 or ENSG00000198805 - - rxnFrom: HMRdatabase - - eccodes: 2.4.2.1;2.4.2.4 - - references: PMID:15262124;PMID:15990964 + - gene_reaction_rule: "ENSG00000025708 or ENSG00000198805" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.2.1;2.4.2.4" + - references: "PMID:15262124;PMID:15990964" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4510 + - id: "HMR_4510" - name: "" - metabolites: !!omap - m01644c: -1 @@ -87351,15 +87351,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000014257 or ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000146587 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.5 - - references: PMID:11690631;PMID:17405878;PMID:6284244;PMID:7999131;UNIPROT:Q96P26 + - gene_reaction_rule: "ENSG00000014257 or ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000146587 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.5" + - references: "PMID:11690631;PMID:17405878;PMID:6284244;PMID:7999131;UNIPROT:Q96P26" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4512 + - id: "HMR_4512" - name: "" - metabolites: !!omap - m01285c: -1 @@ -87368,15 +87368,15 @@ - m01644c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162368 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.14 - - references: PMID:10462544;PMID:11912132 + - gene_reaction_rule: "ENSG00000162368" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.14" + - references: "PMID:10462544;PMID:11912132" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4513 + - id: "HMR_4513" - name: "" - metabolites: !!omap - m01285c: 1 @@ -87386,15 +87386,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000156136 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.74 - - references: PMID:12036920;PMID:1657002;PMID:213049;PMID:8399394;PMID:9342341;PMID:9593124 + - gene_reaction_rule: "ENSG00000156136" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.74" + - references: "PMID:12036920;PMID:1657002;PMID:213049;PMID:8399394;PMID:9342341;PMID:9593124" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4514 + - id: "HMR_4514" - name: "" - metabolites: !!omap - m01668c: -1 @@ -87403,15 +87403,15 @@ - m02578c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111732 or ENSG00000158825 - - rxnFrom: HMRdatabase - - eccodes: 3.5.4.14 - - references: + - gene_reaction_rule: "ENSG00000111732 or ENSG00000158825" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.4.14" + - references: "" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4577 + - id: "HMR_4577" - name: "" - metabolites: !!omap - m02659c: 1 @@ -87420,15 +87420,15 @@ - m02806c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000114491 - - rxnFrom: HMRdatabase - - eccodes: 2.4.2.10 - - references: PMID:6338005 + - gene_reaction_rule: "ENSG00000114491" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.2.10" + - references: "PMID:6338005" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4579 + - id: "HMR_4579" - name: "" - metabolites: !!omap - m02751c: -1 @@ -87437,15 +87437,15 @@ - m03123c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000007001 or ENSG00000183696 - - rxnFrom: HMRdatabase - - eccodes: 2.4.2.3 - - references: PMID:8339277 + - gene_reaction_rule: "ENSG00000007001 or ENSG00000183696" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.2.3" + - references: "PMID:8339277" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4580 + - id: "HMR_4580" - name: "" - metabolites: !!omap - m01630c: -1 @@ -87454,15 +87454,15 @@ - m03123c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111732 or ENSG00000158825 or ENSG00000173627 - - rxnFrom: HMRdatabase - - eccodes: 3.5.4.5 - - references: PMID:17066440;PMID:17560270;PMID:17640070;PMID:17672864;PMID:18306229 + - gene_reaction_rule: "ENSG00000111732 or ENSG00000158825 or ENSG00000173627" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.4.5" + - references: "PMID:17066440;PMID:17560270;PMID:17640070;PMID:17672864;PMID:18306229" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4608 + - id: "HMR_4608" - name: "" - metabolites: !!omap - m00180c: -1 @@ -87471,15 +87471,15 @@ - m02559c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084774 - - rxnFrom: HMRdatabase - - eccodes: 3.5.2.3 - - references: PMID:2903106;PMID:4831620 + - gene_reaction_rule: "ENSG00000084774" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.2.3" + - references: "PMID:2903106;PMID:4831620" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4575 + - id: "HMR_4575" - name: "" - metabolites: !!omap - m00180c: -1 @@ -87488,15 +87488,15 @@ - m03103m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000102967 - - rxnFrom: HMRdatabase - - eccodes: 1.3.5.2;1.3.1.14 - - references: PMID:184741;PMID:199900;PMID:216313;PMID:2540819;PMID:3733756;PMID:6186531;PMID:7196415;PMID:8925840;PMID:9179295 + - gene_reaction_rule: "ENSG00000102967" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.5.2;1.3.1.14" + - references: "PMID:184741;PMID:199900;PMID:216313;PMID:2540819;PMID:3733756;PMID:6186531;PMID:7196415;PMID:8925840;PMID:9179295" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4637 + - id: "HMR_4637" - name: "" - metabolites: !!omap - m01285c: -1 @@ -87505,15 +87505,15 @@ - m01752c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000168393 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.12;2.7.4.9 - - references: PMID:8845311 + - gene_reaction_rule: "ENSG00000168393" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.12;2.7.4.9" + - references: "PMID:8845311" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4642 + - id: "HMR_4642" - name: "" - metabolites: !!omap - m01673c: 1 @@ -87522,15 +87522,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125458 or ENSG00000205309 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.- - - references: + - gene_reaction_rule: "ENSG00000125458 or ENSG00000205309" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.-" + - references: "" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4643 + - id: "HMR_4643" - name: "" - metabolites: !!omap - m01755m: 1 @@ -87540,15 +87540,15 @@ - m02759m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125877 or ENSG00000128951 - - rxnFrom: HMRdatabase - - eccodes: 3.6.1.23;3.6.1.19 - - references: PMID:8631816 + - gene_reaction_rule: "ENSG00000125877 or ENSG00000128951" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.1.23;3.6.1.19" + - references: "PMID:8631816" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4644 + - id: "HMR_4644" - name: "" - metabolites: !!omap - m01045c: -1 @@ -87557,15 +87557,15 @@ - m01755c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000176890 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.45 - - references: PMID:15375535;PMID:15992031;PMID:34155;PMID:3567221;PMID:8621617 + - gene_reaction_rule: "ENSG00000176890" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.45" + - references: "PMID:15375535;PMID:15992031;PMID:34155;PMID:3567221;PMID:8621617" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4672 + - id: "HMR_4672" - name: "" - metabolites: !!omap - m01645c: -1 @@ -87574,15 +87574,15 @@ - m02578c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 3.5.4.13 - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.4.13" + - references: "" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4676 + - id: "HMR_4676" - name: "" - metabolites: !!omap - m01590c: 1 @@ -87592,15 +87592,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130717 or ENSG00000143179 or ENSG00000198276 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.48 - - references: PMID:11306702;PMID:9923963;UNIPROT:Q9HA47 + - gene_reaction_rule: "ENSG00000130717 or ENSG00000143179 or ENSG00000198276" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.48" + - references: "PMID:11306702;PMID:9923963;UNIPROT:Q9HA47" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4736 + - id: "HMR_4736" - name: "" - metabolites: !!omap - m00922c: 1 @@ -87609,15 +87609,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147647 - - rxnFrom: HMRdatabase - - eccodes: 3.5.2.2 - - references: PMID:17065093;UNIPROT:Q14117 + - gene_reaction_rule: "ENSG00000147647" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.2.2" + - references: "PMID:17065093;UNIPROT:Q14117" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4819 + - id: "HMR_4819" - name: "" - metabolites: !!omap - m00922c: -1 @@ -87628,15 +87628,15 @@ - m02578c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100024 - - rxnFrom: HMRdatabase - - eccodes: 3.5.1.6 - - references: PMID:10542323;PMID:3678231 + - gene_reaction_rule: "ENSG00000100024" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.1.6" + - references: "PMID:10542323;PMID:3678231" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_5299 + - id: "HMR_5299" - name: "" - metabolites: !!omap - m01285c: 1 @@ -87646,15 +87646,15 @@ - m03123c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130717 or ENSG00000143179 or ENSG00000198276 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.48 - - references: PMID:11306702;PMID:9923963;UNIPROT:Q9HA47 + - gene_reaction_rule: "ENSG00000130717 or ENSG00000143179 or ENSG00000198276" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.48" + - references: "PMID:11306702;PMID:9923963;UNIPROT:Q9HA47" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_5352 + - id: "HMR_5352" - name: "" - metabolites: !!omap - m01754c: 1 @@ -87664,15 +87664,15 @@ - m03123c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130717 or ENSG00000143179 or ENSG00000198276 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.48 - - references: PMID:11306702;PMID:11494055;PMID:64250;PMID:9923963 + - gene_reaction_rule: "ENSG00000130717 or ENSG00000143179 or ENSG00000198276" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.48" + - references: "PMID:11306702;PMID:11494055;PMID:64250;PMID:9923963" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_5415 + - id: "HMR_5415" - name: "" - metabolites: !!omap - m01285m: 1 @@ -87682,15 +87682,15 @@ - m02487m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000048392 and ENSG00000100348 and ENSG00000167325 and ENSG00000171848) or (ENSG00000048392 and ENSG00000136810 and ENSG00000167325 and ENSG00000171848) - - rxnFrom: HMRdatabase - - eccodes: 1.17.4.1 - - references: PMID:5553404;PMID:5671058 + - gene_reaction_rule: "(ENSG00000048392 and ENSG00000100348 and ENSG00000167325 and ENSG00000171848) or (ENSG00000048392 and ENSG00000136810 and ENSG00000167325 and ENSG00000171848)" + - rxnFrom: "HMRdatabase" + - eccodes: "1.17.4.1" + - references: "PMID:5553404;PMID:5671058" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_5416 + - id: "HMR_5416" - name: "" - metabolites: !!omap - m01680m: -1 @@ -87700,15 +87700,15 @@ - m02487m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000048392 and ENSG00000100348 and ENSG00000167325 and ENSG00000171848) or (ENSG00000048392 and ENSG00000136810 and ENSG00000167325 and ENSG00000171848) - - rxnFrom: HMRdatabase - - eccodes: 1.17.4.1 - - references: PMID:5553404;PMID:5671058 + - gene_reaction_rule: "(ENSG00000048392 and ENSG00000100348 and ENSG00000167325 and ENSG00000171848) or (ENSG00000048392 and ENSG00000136810 and ENSG00000167325 and ENSG00000171848)" + - rxnFrom: "HMRdatabase" + - eccodes: "1.17.4.1" + - references: "PMID:5553404;PMID:5671058" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_5417 + - id: "HMR_5417" - name: "" - metabolites: !!omap - m02039m: -1 @@ -87718,15 +87718,15 @@ - m02555m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000184470 or ENSG00000197763 or ENSG00000198431 - - rxnFrom: HMRdatabase - - eccodes: 1.8.1.9 - - references: PMID:5553404;PMID:5671058 + - gene_reaction_rule: "ENSG00000184470 or ENSG00000197763 or ENSG00000198431" + - rxnFrom: "HMRdatabase" + - eccodes: "1.8.1.9" + - references: "PMID:5553404;PMID:5671058" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6612 + - id: "HMR_6612" - name: "" - metabolites: !!omap - m01637m: -1 @@ -87735,15 +87735,15 @@ - m01752m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000168393 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.9 - - references: PMID:8024690 + - gene_reaction_rule: "ENSG00000168393" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.9" + - references: "PMID:8024690" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6613 + - id: "HMR_6613" - name: "" - metabolites: !!omap - m01637n: -1 @@ -87752,15 +87752,15 @@ - m01752n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000168393 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.9 - - references: PMID:8024690 + - gene_reaction_rule: "ENSG00000168393" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.9" + - references: "PMID:8024690" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6621 + - id: "HMR_6621" - name: "" - metabolites: !!omap - m01756m: -1 @@ -87770,15 +87770,15 @@ - m03130m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000048392 and ENSG00000100348 and ENSG00000167325 and ENSG00000171848) or (ENSG00000048392 and ENSG00000136810 and ENSG00000167325 and ENSG00000171848) - - rxnFrom: HMRdatabase - - eccodes: 1.17.4.1 - - references: PMID:6997299;PMID:8483833 + - gene_reaction_rule: "(ENSG00000048392 and ENSG00000100348 and ENSG00000167325 and ENSG00000171848) or (ENSG00000048392 and ENSG00000136810 and ENSG00000167325 and ENSG00000171848)" + - rxnFrom: "HMRdatabase" + - eccodes: "1.17.4.1" + - references: "PMID:6997299;PMID:8483833" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6622 + - id: "HMR_6622" - name: "" - metabolites: !!omap - m01756n: 1 @@ -87788,15 +87788,15 @@ - m03130n: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000048392 and ENSG00000100348 and ENSG00000167325 and ENSG00000171848) or (ENSG00000048392 and ENSG00000136810 and ENSG00000167325 and ENSG00000171848) - - rxnFrom: HMRdatabase - - eccodes: 1.17.4.1 - - references: PMID:6997299;PMID:8483833 + - gene_reaction_rule: "(ENSG00000048392 and ENSG00000100348 and ENSG00000167325 and ENSG00000171848) or (ENSG00000048392 and ENSG00000136810 and ENSG00000167325 and ENSG00000171848)" + - rxnFrom: "HMRdatabase" + - eccodes: "1.17.4.1" + - references: "PMID:6997299;PMID:8483833" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6623 + - id: "HMR_6623" - name: "" - metabolites: !!omap - m01673c: -1 @@ -87806,15 +87806,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167900 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.21 - - references: PMID:11812127 + - gene_reaction_rule: "ENSG00000167900" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.21" + - references: "PMID:11812127" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6624 + - id: "HMR_6624" - name: "" - metabolites: !!omap - m01673m: -1 @@ -87824,15 +87824,15 @@ - m02039m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000166548 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.21 - - references: PMID:11812127 + - gene_reaction_rule: "ENSG00000166548" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.21" + - references: "PMID:11812127" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6627 + - id: "HMR_6627" - name: "" - metabolites: !!omap - m01747c: -1 @@ -87842,15 +87842,15 @@ - m02819c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000067225 or ENSG00000143627 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.40 - - references: PMID:8967971;PMID:10585400 + - gene_reaction_rule: "ENSG00000067225 or ENSG00000143627" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.40" + - references: "PMID:8967971;PMID:10585400" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_7744 + - id: "HMR_7744" - name: "" - metabolites: !!omap - m02040c: -1 @@ -87859,15 +87859,15 @@ - m03118c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165526 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.70 - - references: + - gene_reaction_rule: "ENSG00000165526" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.70" + - references: "" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8072 + - id: "HMR_8072" - name: "" - metabolites: !!omap - m00639c: -1 @@ -87876,15 +87876,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8637 + - id: "HMR_8637" - name: "" - metabolites: !!omap - m01632c: -1 @@ -87893,15 +87893,15 @@ - m03118c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3965 + - id: "HMR_3965" - name: "" - metabolites: !!omap - m01754c: -1 @@ -87911,15 +87911,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000128951 - - rxnFrom: HMRdatabase - - eccodes: 3.6.1.23 - - references: + - gene_reaction_rule: "ENSG00000128951" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.1.23" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_3966 + - id: "HMR_3966" - name: "" - metabolites: !!omap - m01334m: 1 @@ -87929,15 +87929,15 @@ - m02759m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125877 - - rxnFrom: HMRdatabase - - eccodes: 3.6.1.19 - - references: + - gene_reaction_rule: "ENSG00000125877" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.1.19" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_3967 + - id: "HMR_3967" - name: "" - metabolites: !!omap - m01424c: -1 @@ -87946,15 +87946,15 @@ - m02034c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162368 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.14 - - references: + - gene_reaction_rule: "ENSG00000162368" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.14" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_3968 + - id: "HMR_3968" - name: "" - metabolites: !!omap - m01285c: -1 @@ -87963,15 +87963,15 @@ - m01755c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000168393 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.9 - - references: + - gene_reaction_rule: "ENSG00000168393" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.9" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_3999 + - id: "HMR_3999" - name: "" - metabolites: !!omap - m01285s: -1 @@ -87981,15 +87981,15 @@ - m02751s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138185 or ENSG00000168032 or ENSG00000188833 - - rxnFrom: HMRdatabase - - eccodes: 3.6.1.5 - - references: PMID:11278936 + - gene_reaction_rule: "ENSG00000138185 or ENSG00000168032 or ENSG00000188833" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.1.5" + - references: "PMID:11278936" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_4024 + - id: "HMR_4024" - name: "" - metabolites: !!omap - m01285c: -1 @@ -87998,15 +87998,15 @@ - m01590c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162368 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.14;2.7.4.25 - - references: PMID:10462544;PMID:11912132;PMID:132087;PMID:7581800;PMID:8867780 + - gene_reaction_rule: "ENSG00000162368" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.14;2.7.4.25" + - references: "PMID:10462544;PMID:11912132;PMID:132087;PMID:7581800;PMID:8867780" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_4026 + - id: "HMR_4026" - name: "" - metabolites: !!omap - m01285m: -1 @@ -88015,15 +88015,15 @@ - m01590m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134326 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.14 - - references: PMID:10462544;PMID:11912132;PMID:132087;PMID:7581800;PMID:8867780 + - gene_reaction_rule: "ENSG00000134326" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.14" + - references: "PMID:10462544;PMID:11912132;PMID:132087;PMID:7581800;PMID:8867780" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_4054 + - id: "HMR_4054" - name: "" - metabolites: !!omap - m01285c: 1 @@ -88033,15 +88033,15 @@ - m02996c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167900 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.21 - - references: PMID:1063125;PMID:14519855;PMID:3457791 + - gene_reaction_rule: "ENSG00000167900" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.21" + - references: "PMID:1063125;PMID:14519855;PMID:3457791" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_4061 + - id: "HMR_4061" - name: "" - metabolites: !!omap - m02039s: 1 @@ -88051,15 +88051,15 @@ - m03130s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138185 or ENSG00000168032 or ENSG00000188833 - - rxnFrom: HMRdatabase - - eccodes: 3.6.1.39;3.6.1.5 - - references: PMID:15652174;PMID:16752921;PMID:17095758 + - gene_reaction_rule: "ENSG00000138185 or ENSG00000168032 or ENSG00000188833" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.1.39;3.6.1.5" + - references: "PMID:15652174;PMID:16752921;PMID:17095758" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_4083 + - id: "HMR_4083" - name: "" - metabolites: !!omap - m01280m: -1 @@ -88069,15 +88069,15 @@ - m02039m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000156110 or ENSG00000156136 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000156110 or ENSG00000156136" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_4136 + - id: "HMR_4136" - name: "" - metabolites: !!omap - m01948s: 1 @@ -88087,15 +88087,15 @@ - m02751s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000054179 or ENSG00000079805 or ENSG00000087470 or ENSG00000101210 or ENSG00000106976 or ENSG00000138185 or ENSG00000140598 or ENSG00000156508 or ENSG00000164347 or ENSG00000167658 or ENSG00000168032 or ENSG00000168827 or ENSG00000171302 or ENSG00000178952 or ENSG00000187097 or ENSG00000188833 or ENSG00000197217 or ENSG00000197586 or ENSG00000197959 - - rxnFrom: HMRdatabase - - eccodes: 3.6.5.1;3.6.5.2;3.6.5.3;3.6.5.4;3.6.5.5;3.6.5.6 - - references: PMID:15652174;PMID:16752921;PMID:17095758 + - gene_reaction_rule: "ENSG00000054179 or ENSG00000079805 or ENSG00000087470 or ENSG00000101210 or ENSG00000106976 or ENSG00000138185 or ENSG00000140598 or ENSG00000156508 or ENSG00000164347 or ENSG00000167658 or ENSG00000168032 or ENSG00000168827 or ENSG00000171302 or ENSG00000178952 or ENSG00000187097 or ENSG00000188833 or ENSG00000197217 or ENSG00000197586 or ENSG00000197959" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.5.1;3.6.5.2;3.6.5.3;3.6.5.4;3.6.5.5;3.6.5.6" + - references: "PMID:15652174;PMID:16752921;PMID:17095758" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_4180 + - id: "HMR_4180" - name: "" - metabolites: !!omap - m01285c: 1 @@ -88105,15 +88105,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130717 or ENSG00000143179 or ENSG00000198276 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.48 - - references: PMID:132087;PMID:64250 + - gene_reaction_rule: "ENSG00000130717 or ENSG00000143179 or ENSG00000198276" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.48" + - references: "PMID:132087;PMID:64250" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_4185 + - id: "HMR_4185" - name: "" - metabolites: !!omap - m01283c: 1 @@ -88123,15 +88123,15 @@ - m02946c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138801 or ENSG00000198682 - - rxnFrom: HMRdatabase - - eccodes: 2.7.7.4 - - references: PMID:10679223 + - gene_reaction_rule: "ENSG00000138801 or ENSG00000198682" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.7.4" + - references: "PMID:10679223" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_4186 + - id: "HMR_4186" - name: "" - metabolites: !!omap - m01283c: -1 @@ -88141,15 +88141,15 @@ - m02682c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138801 or ENSG00000198682 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.25 - - references: PMID:10679223;PMID:11931637 + - gene_reaction_rule: "ENSG00000138801 or ENSG00000198682" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.25" + - references: "PMID:10679223;PMID:11931637" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_4342 + - id: "HMR_4342" - name: "" - metabolites: !!omap - m02039s: 1 @@ -88159,15 +88159,15 @@ - m02751s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000054179 or ENSG00000138185 or ENSG00000168032 or ENSG00000171302 or ENSG00000187097 or ENSG00000188833 or ENSG00000197217 or ENSG00000197586 - - rxnFrom: HMRdatabase - - eccodes: 3.6.1.5;3.6.1.6 - - references: PMID:15652174;PMID:16752921;PMID:17095758 + - gene_reaction_rule: "ENSG00000054179 or ENSG00000138185 or ENSG00000168032 or ENSG00000171302 or ENSG00000187097 or ENSG00000188833 or ENSG00000197217 or ENSG00000197586" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.1.5;3.6.1.6" + - references: "PMID:15652174;PMID:16752921;PMID:17095758" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_4344 + - id: "HMR_4344" - name: "" - metabolites: !!omap - m01052c: -1 @@ -88177,15 +88177,15 @@ - m03118c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.1 - - references: PMID:1260500 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.1" + - references: "PMID:1260500" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_4483 + - id: "HMR_4483" - name: "" - metabolites: !!omap - m01285m: 1 @@ -88195,15 +88195,15 @@ - m02996m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000166548 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.21 - - references: PMID:1063125;PMID:14519855;PMID:3457791 + - gene_reaction_rule: "ENSG00000166548" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.21" + - references: "PMID:1063125;PMID:14519855;PMID:3457791" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_4507 + - id: "HMR_4507" - name: "" - metabolites: !!omap - m01644c: -1 @@ -88212,15 +88212,15 @@ - m02578c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000129187 - - rxnFrom: HMRdatabase - - eccodes: 3.5.4.12 - - references: PMID:8448179 + - gene_reaction_rule: "ENSG00000129187" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.4.12" + - references: "PMID:8448179" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_4516 + - id: "HMR_4516" - name: "" - metabolites: !!omap - m01643c: -1 @@ -88230,15 +88230,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000179958 - - rxnFrom: HMRdatabase - - eccodes: 3.6.1.12 - - references: PMID:6121703 + - gene_reaction_rule: "ENSG00000179958" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.1.12" + - references: "PMID:6121703" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_4601 + - id: "HMR_4601" - name: "" - metabolites: !!omap - m01285m: 1 @@ -88248,15 +88248,15 @@ - m02039m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000114956 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.113 - - references: PMID:15748706 + - gene_reaction_rule: "ENSG00000114956" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.113" + - references: "PMID:15748706" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_4633 + - id: "HMR_4633" - name: "" - metabolites: !!omap - m01285c: 1 @@ -88266,15 +88266,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000196839 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.76;2.7.1.76 - - references: PMID:11812127;PMID:202960 + - gene_reaction_rule: "ENSG00000196839" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.76;2.7.1.76" + - references: "PMID:11812127;PMID:202960" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_4640 + - id: "HMR_4640" - name: "" - metabolites: !!omap - m01285m: 1 @@ -88283,15 +88283,15 @@ - m01755m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000168393 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.4;2.7.4.9 - - references: PMID:13363863;PMID:13363863mitochondrion + - gene_reaction_rule: "ENSG00000168393" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.4;2.7.4.9" + - references: "PMID:13363863;PMID:13363863mitochondrion" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_4641 + - id: "HMR_4641" - name: "" - metabolites: !!omap - m01285c: 1 @@ -88301,15 +88301,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167900 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.21 - - references: PMID:1063125;PMID:16630572;PMID:3457791 + - gene_reaction_rule: "ENSG00000167900" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.21" + - references: "PMID:1063125;PMID:16630572;PMID:3457791" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_4680 + - id: "HMR_4680" - name: "" - metabolites: !!omap - m00639c: -1 @@ -88318,15 +88318,15 @@ - m03118c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000007001 or ENSG00000183696 - - rxnFrom: HMRdatabase - - eccodes: 2.4.2.3 - - references: PMID:14038100;PMID:14156740;PMID:6198074;PMID:7838140 + - gene_reaction_rule: "ENSG00000007001 or ENSG00000183696" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.2.3" + - references: "PMID:14038100;PMID:14156740;PMID:6198074;PMID:7838140" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_4806 + - id: "HMR_4806" - name: "" - metabolites: !!omap - m00266c: -1 @@ -88336,15 +88336,15 @@ - m02980c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000159131 - - rxnFrom: HMRdatabase - - eccodes: 2.1.2.2 - - references: PMID:11381136;PMID:4084560;PMID:9265631 + - gene_reaction_rule: "ENSG00000159131" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.2.2" + - references: "PMID:11381136;PMID:4084560;PMID:9265631" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_5394 + - id: "HMR_5394" - name: "" - metabolites: !!omap - m02038c: -1 @@ -88353,15 +88353,15 @@ - m03149c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 3.5.4.15 - - references: PMID:10348987;PMID:14725335 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.4.15" + - references: "PMID:10348987;PMID:14725335" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_6625 + - id: "HMR_6625" - name: "" - metabolites: !!omap - m01285m: 1 @@ -88371,15 +88371,15 @@ - m02039m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000166548 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.21 - - references: + - gene_reaction_rule: "ENSG00000166548" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.21" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_6626 + - id: "HMR_6626" - name: "" - metabolites: !!omap - m01673m: 1 @@ -88388,15 +88388,15 @@ - m02751m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125458 or ENSG00000205309 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.- - - references: + - gene_reaction_rule: "ENSG00000125458 or ENSG00000205309" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.-" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7160 + - id: "HMR_7160" - name: "" - metabolites: !!omap - m01642c: -0.3 @@ -88407,15 +88407,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000115350 and ENSG00000148229) or (ENSG00000062822 and ENSG00000077514 and ENSG00000106628 and ENSG00000175482) or (ENSG00000014138 and ENSG00000101868) or (ENSG00000014138 and ENSG00000062822 and ENSG00000077514 and ENSG00000100479 and ENSG00000101868 and ENSG00000106628 and ENSG00000115350 and ENSG00000148229 and ENSG00000175482 and ENSG00000177084) or ENSG00000009413 or ENSG00000051341 or ENSG00000070501 or ENSG00000101751 or ENSG00000111445 or ENSG00000112941 or ENSG00000122008 or ENSG00000122678 or ENSG00000130997 or ENSG00000132382 or ENSG00000140521 or ENSG00000166169 or ENSG00000170734 or ENSG00000256525 - - rxnFrom: HMRdatabase - - eccodes: 2.7.7.7 - - references: + - gene_reaction_rule: "(ENSG00000115350 and ENSG00000148229) or (ENSG00000062822 and ENSG00000077514 and ENSG00000106628 and ENSG00000175482) or (ENSG00000014138 and ENSG00000101868) or (ENSG00000014138 and ENSG00000062822 and ENSG00000077514 and ENSG00000100479 and ENSG00000101868 and ENSG00000106628 and ENSG00000115350 and ENSG00000148229 and ENSG00000175482 and ENSG00000177084) or ENSG00000009413 or ENSG00000051341 or ENSG00000070501 or ENSG00000101751 or ENSG00000111445 or ENSG00000112941 or ENSG00000122008 or ENSG00000122678 or ENSG00000130997 or ENSG00000132382 or ENSG00000140521 or ENSG00000166169 or ENSG00000170734 or ENSG00000256525" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.7.7" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7161 + - id: "HMR_7161" - name: "" - metabolites: !!omap - m01371c: -0.18 @@ -88426,15 +88426,15 @@ - m03130c: -0.18 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000113356 or ENSG00000121851) and (ENSG00000090060 or ENSG00000115421 or ENSG00000164329 or ENSG00000218823) and (ENSG00000083223 or ENSG00000134744 or ENSG00000149016) and ENSG00000005075 and ENSG00000013503 and ENSG00000047315 and ENSG00000058600 and ENSG00000066379 and ENSG00000068654 and ENSG00000099817 and ENSG00000099821 and ENSG00000100142 and ENSG00000100413 and ENSG00000102978 and ENSG00000105258 and ENSG00000107951 and ENSG00000125630 and ENSG00000132664 and ENSG00000137054 and ENSG00000144231 and ENSG00000147669 and ENSG00000148606 and ENSG00000161980 and ENSG00000163882 and ENSG00000168002 and ENSG00000168495 and ENSG00000171453 and ENSG00000177700 and ENSG00000181222 and ENSG00000186141 and ENSG00000186184 - - rxnFrom: HMRdatabase - - eccodes: 2.7.7.6;2.7.7.19;2.7.7.52 - - references: + - gene_reaction_rule: "(ENSG00000113356 or ENSG00000121851) and (ENSG00000090060 or ENSG00000115421 or ENSG00000164329 or ENSG00000218823) and (ENSG00000083223 or ENSG00000134744 or ENSG00000149016) and ENSG00000005075 and ENSG00000013503 and ENSG00000047315 and ENSG00000058600 and ENSG00000066379 and ENSG00000068654 and ENSG00000099817 and ENSG00000099821 and ENSG00000100142 and ENSG00000100413 and ENSG00000102978 and ENSG00000105258 and ENSG00000107951 and ENSG00000125630 and ENSG00000132664 and ENSG00000137054 and ENSG00000144231 and ENSG00000147669 and ENSG00000148606 and ENSG00000161980 and ENSG00000163882 and ENSG00000168002 and ENSG00000168495 and ENSG00000171453 and ENSG00000177700 and ENSG00000181222 and ENSG00000186141 and ENSG00000186184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.7.6;2.7.7.19;2.7.7.52" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7162 + - id: "HMR_7162" - name: "" - metabolites: !!omap - m01285c: -0.18 @@ -88445,15 +88445,15 @@ - m03106c: -0.18 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000113356 or ENSG00000121851) and (ENSG00000090060 or ENSG00000115421 or ENSG00000164329 or ENSG00000218823) and (ENSG00000083223 or ENSG00000134744 or ENSG00000149016) and ENSG00000005075 and ENSG00000013503 and ENSG00000047315 and ENSG00000058600 and ENSG00000066379 and ENSG00000068654 and ENSG00000099817 and ENSG00000099821 and ENSG00000100142 and ENSG00000100413 and ENSG00000102978 and ENSG00000105258 and ENSG00000107951 and ENSG00000125630 and ENSG00000132664 and ENSG00000137054 and ENSG00000144231 and ENSG00000147669 and ENSG00000148606 and ENSG00000161980 and ENSG00000163882 and ENSG00000168002 and ENSG00000168495 and ENSG00000171453 and ENSG00000177700 and ENSG00000181222 and ENSG00000186141 and ENSG00000186184 - - rxnFrom: HMRdatabase - - eccodes: 2.7.7.8 - - references: + - gene_reaction_rule: "(ENSG00000113356 or ENSG00000121851) and (ENSG00000090060 or ENSG00000115421 or ENSG00000164329 or ENSG00000218823) and (ENSG00000083223 or ENSG00000134744 or ENSG00000149016) and ENSG00000005075 and ENSG00000013503 and ENSG00000047315 and ENSG00000058600 and ENSG00000066379 and ENSG00000068654 and ENSG00000099817 and ENSG00000099821 and ENSG00000100142 and ENSG00000100413 and ENSG00000102978 and ENSG00000105258 and ENSG00000107951 and ENSG00000125630 and ENSG00000132664 and ENSG00000137054 and ENSG00000144231 and ENSG00000147669 and ENSG00000148606 and ENSG00000161980 and ENSG00000163882 and ENSG00000168002 and ENSG00000168495 and ENSG00000171453 and ENSG00000177700 and ENSG00000181222 and ENSG00000186141 and ENSG00000186184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.7.8" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7163 + - id: "HMR_7163" - name: "" - metabolites: !!omap - m01639c: 0.3 @@ -88465,15 +88465,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000113456 and ENSG00000172613) or ENSG00000164053 or ENSG00000183479 or ENSG00000213689 - - rxnFrom: HMRdatabase - - eccodes: 3.1.11.2 - - references: + - gene_reaction_rule: "(ENSG00000113456 and ENSG00000172613) or ENSG00000164053 or ENSG00000183479 or ENSG00000213689" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.11.2" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7164 + - id: "HMR_7164" - name: "" - metabolites: !!omap - m01334c: 0.18 @@ -88485,15 +88485,15 @@ - m03114c: 0.18 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000113456 and ENSG00000172613) or ENSG00000164053 or ENSG00000183479 or ENSG00000213689 - - rxnFrom: HMRdatabase - - eccodes: 3.1.11.2 - - references: + - gene_reaction_rule: "(ENSG00000113456 and ENSG00000172613) or ENSG00000164053 or ENSG00000183479 or ENSG00000213689" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.11.2" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7713 + - id: "HMR_7713" - name: "" - metabolites: !!omap - m01280l: 1 @@ -88502,15 +88502,15 @@ - m02751l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.5 - - references: + - gene_reaction_rule: "ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.5" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7716 + - id: "HMR_7716" - name: "" - metabolites: !!omap - m02040l: -1 @@ -88519,15 +88519,15 @@ - m03123l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.5 - - references: + - gene_reaction_rule: "ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.5" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7717 + - id: "HMR_7717" - name: "" - metabolites: !!omap - m02040m: -1 @@ -88536,15 +88536,15 @@ - m03123m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7721 + - id: "HMR_7721" - name: "" - metabolites: !!omap - m01590l: -1 @@ -88553,15 +88553,15 @@ - m02751l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.5 - - references: + - gene_reaction_rule: "ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.5" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7725 + - id: "HMR_7725" - name: "" - metabolites: !!omap - m01752l: -1 @@ -88570,15 +88570,15 @@ - m02996l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.- - - references: + - gene_reaction_rule: "ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.-" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7728 + - id: "HMR_7728" - name: "" - metabolites: !!omap - m02016l: -1 @@ -88587,15 +88587,15 @@ - m02751l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.5 - - references: + - gene_reaction_rule: "ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.5" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7800 + - id: "HMR_7800" - name: "" - metabolites: !!omap - m01285c: -1 @@ -88604,15 +88604,15 @@ - m02034c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000154027 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.3 - - references: + - gene_reaction_rule: "ENSG00000154027" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.3" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7801 + - id: "HMR_7801" - name: "" - metabolites: !!omap - m01285m: -1 @@ -88621,15 +88621,15 @@ - m02034m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147853 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.10 - - references: + - gene_reaction_rule: "ENSG00000147853" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.10" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7802 + - id: "HMR_7802" - name: "" - metabolites: !!omap - m01637c: -2 @@ -88637,15 +88637,15 @@ - m01642c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000154027 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.3 - - references: + - gene_reaction_rule: "ENSG00000154027" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.3" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7863 + - id: "HMR_7863" - name: "" - metabolites: !!omap - m01424c: -1 @@ -88654,15 +88654,15 @@ - m03114c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162368 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.14 - - references: + - gene_reaction_rule: "ENSG00000162368" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.14" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7864 + - id: "HMR_7864" - name: "" - metabolites: !!omap - m01424n: -1 @@ -88671,15 +88671,15 @@ - m03114n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162368 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.14 - - references: + - gene_reaction_rule: "ENSG00000162368" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.14" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7865 + - id: "HMR_7865" - name: "" - metabolites: !!omap - m03106c: -2 @@ -88687,15 +88687,15 @@ - m03130c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162368 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.14 - - references: + - gene_reaction_rule: "ENSG00000162368" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.14" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7866 + - id: "HMR_7866" - name: "" - metabolites: !!omap - m03106n: -2 @@ -88703,15 +88703,15 @@ - m03130n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162368 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.14 - - references: + - gene_reaction_rule: "ENSG00000162368" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.14" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7867 + - id: "HMR_7867" - name: "" - metabolites: !!omap - m01948c: -1 @@ -88720,15 +88720,15 @@ - m03114c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162368 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.14 - - references: + - gene_reaction_rule: "ENSG00000162368" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.14" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7868 + - id: "HMR_7868" - name: "" - metabolites: !!omap - m01948n: -1 @@ -88737,15 +88737,15 @@ - m03114n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162368 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.14 - - references: + - gene_reaction_rule: "ENSG00000162368" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.14" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7869 + - id: "HMR_7869" - name: "" - metabolites: !!omap - m01637c: -1 @@ -88754,15 +88754,15 @@ - m03114c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162368 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.14 - - references: + - gene_reaction_rule: "ENSG00000162368" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.14" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7870 + - id: "HMR_7870" - name: "" - metabolites: !!omap - m01637n: -1 @@ -88771,15 +88771,15 @@ - m03114n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162368 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.14 - - references: + - gene_reaction_rule: "ENSG00000162368" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.14" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7871 + - id: "HMR_7871" - name: "" - metabolites: !!omap - m01643c: -1 @@ -88788,15 +88788,15 @@ - m03114c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162368 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.14 - - references: + - gene_reaction_rule: "ENSG00000162368" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.14" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7872 + - id: "HMR_7872" - name: "" - metabolites: !!omap - m01643n: -1 @@ -88805,15 +88805,15 @@ - m03114n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162368 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.14 - - references: + - gene_reaction_rule: "ENSG00000162368" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.14" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7873 + - id: "HMR_7873" - name: "" - metabolites: !!omap - m01680c: -1 @@ -88822,15 +88822,15 @@ - m03114c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162368 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.14 - - references: + - gene_reaction_rule: "ENSG00000162368" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.14" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7874 + - id: "HMR_7874" - name: "" - metabolites: !!omap - m01680n: -1 @@ -88839,15 +88839,15 @@ - m03114n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162368 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.14 - - references: + - gene_reaction_rule: "ENSG00000162368" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.14" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7875 + - id: "HMR_7875" - name: "" - metabolites: !!omap - m01285m: -1 @@ -88856,15 +88856,15 @@ - m03114m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134326 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.14 - - references: + - gene_reaction_rule: "ENSG00000134326" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.14" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7876 + - id: "HMR_7876" - name: "" - metabolites: !!omap - m01285n: -1 @@ -88873,15 +88873,15 @@ - m03114n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162368 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.14 - - references: + - gene_reaction_rule: "ENSG00000162368" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.14" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7878 + - id: "HMR_7878" - name: "" - metabolites: !!omap - m01285c: -1 @@ -88890,15 +88890,15 @@ - m01714c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.6 - - references: + - gene_reaction_rule: "ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.6" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7879 + - id: "HMR_7879" - name: "" - metabolites: !!omap - m01709c: 1 @@ -88908,15 +88908,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125877 - - rxnFrom: HMRdatabase - - eccodes: 3.6.1.19 - - references: + - gene_reaction_rule: "ENSG00000125877" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.1.19" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7880 + - id: "HMR_7880" - name: "" - metabolites: !!omap - m01671c: 1 @@ -88925,15 +88925,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125458 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.- - - references: + - gene_reaction_rule: "ENSG00000125458" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.-" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7881 + - id: "HMR_7881" - name: "" - metabolites: !!omap - m01285n: -1 @@ -88942,15 +88942,15 @@ - m01714n: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011052 or ENSG00000239672 or ENSG00000243678 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.6 - - references: + - gene_reaction_rule: "ENSG00000011052 or ENSG00000239672 or ENSG00000243678" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.6" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7882 + - id: "HMR_7882" - name: "" - metabolites: !!omap - m01285n: -1 @@ -88959,15 +88959,15 @@ - m02034n: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011052 or ENSG00000239672 or ENSG00000243678 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.6 - - references: + - gene_reaction_rule: "ENSG00000011052 or ENSG00000239672 or ENSG00000243678" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.6" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7883 + - id: "HMR_7883" - name: "" - metabolites: !!omap - m01285m: -1 @@ -88976,15 +88976,15 @@ - m03130m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000155085 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.6 - - references: + - gene_reaction_rule: "ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000155085 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.6" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7884 + - id: "HMR_7884" - name: "" - metabolites: !!omap - m01285n: -1 @@ -88993,15 +88993,15 @@ - m03130n: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011052 or ENSG00000239672 or ENSG00000243678 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.6 - - references: + - gene_reaction_rule: "ENSG00000011052 or ENSG00000239672 or ENSG00000243678" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.6" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7885 + - id: "HMR_7885" - name: "" - metabolites: !!omap - m01285n: -1 @@ -89010,15 +89010,15 @@ - m01623n: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011052 or ENSG00000239672 or ENSG00000243678 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.6 - - references: + - gene_reaction_rule: "ENSG00000011052 or ENSG00000239672 or ENSG00000243678" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.6" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7886 + - id: "HMR_7886" - name: "" - metabolites: !!omap - m01285m: -1 @@ -89027,15 +89027,15 @@ - m01753m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000155085 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.6 - - references: + - gene_reaction_rule: "ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000155085 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.6" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7887 + - id: "HMR_7887" - name: "" - metabolites: !!omap - m01285n: -1 @@ -89044,15 +89044,15 @@ - m01753n: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011052 or ENSG00000239672 or ENSG00000243678 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.6 - - references: + - gene_reaction_rule: "ENSG00000011052 or ENSG00000239672 or ENSG00000243678" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.6" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7888 + - id: "HMR_7888" - name: "" - metabolites: !!omap - m01285n: -1 @@ -89061,15 +89061,15 @@ - m01688n: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011052 or ENSG00000239672 or ENSG00000243678 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.6 - - references: + - gene_reaction_rule: "ENSG00000011052 or ENSG00000239672 or ENSG00000243678" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.6" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7889 + - id: "HMR_7889" - name: "" - metabolites: !!omap - m01285n: -1 @@ -89078,15 +89078,15 @@ - m01756n: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011052 or ENSG00000239672 or ENSG00000243678 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.6 - - references: + - gene_reaction_rule: "ENSG00000011052 or ENSG00000239672 or ENSG00000243678" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.6" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7890 + - id: "HMR_7890" - name: "" - metabolites: !!omap - m01285m: -1 @@ -89095,15 +89095,15 @@ - m01645m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000155085 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.6 - - references: + - gene_reaction_rule: "ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000155085 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.6" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7891 + - id: "HMR_7891" - name: "" - metabolites: !!omap - m01285n: -1 @@ -89112,15 +89112,15 @@ - m01645n: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011052 or ENSG00000239672 or ENSG00000243678 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.6 - - references: + - gene_reaction_rule: "ENSG00000011052 or ENSG00000239672 or ENSG00000243678" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.6" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7892 + - id: "HMR_7892" - name: "" - metabolites: !!omap - m01285n: -1 @@ -89129,15 +89129,15 @@ - m01642n: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011052 or ENSG00000239672 or ENSG00000243678 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.6 - - references: + - gene_reaction_rule: "ENSG00000011052 or ENSG00000239672 or ENSG00000243678" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.6" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7893 + - id: "HMR_7893" - name: "" - metabolites: !!omap - m01285n: -1 @@ -89146,15 +89146,15 @@ - m02193n: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011052 or ENSG00000239672 or ENSG00000243678 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.6 - - references: + - gene_reaction_rule: "ENSG00000011052 or ENSG00000239672 or ENSG00000243678" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.6" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7894 + - id: "HMR_7894" - name: "" - metabolites: !!omap - m01285m: -1 @@ -89163,15 +89163,15 @@ - m01714m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000155085 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.6 - - references: + - gene_reaction_rule: "ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000155085 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.6" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7895 + - id: "HMR_7895" - name: "" - metabolites: !!omap - m01285m: -1 @@ -89180,15 +89180,15 @@ - m02193m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000155085 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.6 - - references: + - gene_reaction_rule: "ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000155085 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.6" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8083 + - id: "HMR_8083" - name: "" - metabolites: !!omap - m01433n: -1 @@ -89197,15 +89197,15 @@ - m02040n: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000065989 or ENSG00000073417 or ENSG00000095464 or ENSG00000105650 or ENSG00000112541 or ENSG00000113231 or ENSG00000113448 or ENSG00000115252 or ENSG00000123360 or ENSG00000128655 or ENSG00000132915 or ENSG00000133256 or ENSG00000137496 or ENSG00000138735 or ENSG00000139053 or ENSG00000152270 or ENSG00000154678 or ENSG00000156973 or ENSG00000160191 or ENSG00000171408 or ENSG00000172572 or ENSG00000184588 or ENSG00000185527 or ENSG00000186642 or ENSG00000205268 - - rxnFrom: HMRdatabase - - eccodes: 3.1.4.35 - - references: + - gene_reaction_rule: "ENSG00000065989 or ENSG00000073417 or ENSG00000095464 or ENSG00000105650 or ENSG00000112541 or ENSG00000113231 or ENSG00000113448 or ENSG00000115252 or ENSG00000123360 or ENSG00000128655 or ENSG00000132915 or ENSG00000133256 or ENSG00000137496 or ENSG00000138735 or ENSG00000139053 or ENSG00000152270 or ENSG00000154678 or ENSG00000156973 or ENSG00000160191 or ENSG00000171408 or ENSG00000172572 or ENSG00000184588 or ENSG00000185527 or ENSG00000186642 or ENSG00000205268" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.4.35" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8085 + - id: "HMR_8085" - name: "" - metabolites: !!omap - m01433g: -1 @@ -89214,15 +89214,15 @@ - m02040g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000065989 or ENSG00000073417 or ENSG00000095464 or ENSG00000105650 or ENSG00000112541 or ENSG00000113231 or ENSG00000113448 or ENSG00000115252 or ENSG00000123360 or ENSG00000128655 or ENSG00000132915 or ENSG00000133256 or ENSG00000137496 or ENSG00000138735 or ENSG00000139053 or ENSG00000152270 or ENSG00000154678 or ENSG00000156973 or ENSG00000160191 or ENSG00000171408 or ENSG00000172572 or ENSG00000184588 or ENSG00000185527 or ENSG00000186642 or ENSG00000205268 - - rxnFrom: HMRdatabase - - eccodes: 3.1.4.17 - - references: + - gene_reaction_rule: "ENSG00000065989 or ENSG00000073417 or ENSG00000095464 or ENSG00000105650 or ENSG00000112541 or ENSG00000113231 or ENSG00000113448 or ENSG00000115252 or ENSG00000123360 or ENSG00000128655 or ENSG00000132915 or ENSG00000133256 or ENSG00000137496 or ENSG00000138735 or ENSG00000139053 or ENSG00000152270 or ENSG00000154678 or ENSG00000156973 or ENSG00000160191 or ENSG00000171408 or ENSG00000172572 or ENSG00000184588 or ENSG00000185527 or ENSG00000186642 or ENSG00000205268" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.4.17" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8087 + - id: "HMR_8087" - name: "" - metabolites: !!omap - m01334g: 1 @@ -89231,15 +89231,15 @@ - m02040g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000065989 or ENSG00000073417 or ENSG00000095464 or ENSG00000105650 or ENSG00000112541 or ENSG00000113231 or ENSG00000113448 or ENSG00000115252 or ENSG00000123360 or ENSG00000128655 or ENSG00000132915 or ENSG00000133256 or ENSG00000137496 or ENSG00000138735 or ENSG00000139053 or ENSG00000152270 or ENSG00000154678 or ENSG00000156973 or ENSG00000160191 or ENSG00000171408 or ENSG00000172572 or ENSG00000184588 or ENSG00000185527 or ENSG00000186642 or ENSG00000205268 - - rxnFrom: HMRdatabase - - eccodes: 3.1.4.17 - - references: + - gene_reaction_rule: "ENSG00000065989 or ENSG00000073417 or ENSG00000095464 or ENSG00000105650 or ENSG00000112541 or ENSG00000113231 or ENSG00000113448 or ENSG00000115252 or ENSG00000123360 or ENSG00000128655 or ENSG00000132915 or ENSG00000133256 or ENSG00000137496 or ENSG00000138735 or ENSG00000139053 or ENSG00000152270 or ENSG00000154678 or ENSG00000156973 or ENSG00000160191 or ENSG00000171408 or ENSG00000172572 or ENSG00000184588 or ENSG00000185527 or ENSG00000186642 or ENSG00000205268" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.4.17" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8443 + - id: "HMR_8443" - name: "" - metabolites: !!omap - m01286c: -1 @@ -89249,15 +89249,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165609 or ENSG00000170222 or ENSG00000170502 - - rxnFrom: HMRdatabase - - eccodes: 3.6.1.13 - - references: + - gene_reaction_rule: "ENSG00000165609 or ENSG00000170222 or ENSG00000170502" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.1.13" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8444 + - id: "HMR_8444" - name: "" - metabolites: !!omap - m01287c: -1 @@ -89267,15 +89267,15 @@ - m02454c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165609 or ENSG00000170222 or ENSG00000170502 - - rxnFrom: HMRdatabase - - eccodes: 3.6.1.13 - - references: + - gene_reaction_rule: "ENSG00000165609 or ENSG00000170222 or ENSG00000170502" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.1.13" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8445 + - id: "HMR_8445" - name: "" - metabolites: !!omap - m01285m: 1 @@ -89285,15 +89285,15 @@ - m02039m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130717 or ENSG00000143179 or ENSG00000198276 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000130717 or ENSG00000143179 or ENSG00000198276" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8446 + - id: "HMR_8446" - name: "" - metabolites: !!omap - m01630n: -1 @@ -89302,15 +89302,15 @@ - m03123n: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111732 - - rxnFrom: HMRdatabase - - eccodes: 3.5.4.5 - - references: + - gene_reaction_rule: "ENSG00000111732" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.4.5" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8448 + - id: "HMR_8448" - name: "" - metabolites: !!omap - m01424c: -1 @@ -89319,15 +89319,15 @@ - m01688c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162368 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.14 - - references: + - gene_reaction_rule: "ENSG00000162368" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.14" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8449 + - id: "HMR_8449" - name: "" - metabolites: !!omap - m01424n: -1 @@ -89336,15 +89336,15 @@ - m01688n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162368 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.14 - - references: + - gene_reaction_rule: "ENSG00000162368" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.14" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8450 + - id: "HMR_8450" - name: "" - metabolites: !!omap - m01643c: -1 @@ -89353,15 +89353,15 @@ - m01688c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162368 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.14 - - references: + - gene_reaction_rule: "ENSG00000162368" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.14" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8451 + - id: "HMR_8451" - name: "" - metabolites: !!omap - m01643n: -1 @@ -89370,15 +89370,15 @@ - m01688n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162368 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.14 - - references: + - gene_reaction_rule: "ENSG00000162368" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.14" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8452 + - id: "HMR_8452" - name: "" - metabolites: !!omap - m01643c: -2 @@ -89386,15 +89386,15 @@ - m01645c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162368 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.14 - - references: + - gene_reaction_rule: "ENSG00000162368" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.14" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8453 + - id: "HMR_8453" - name: "" - metabolites: !!omap - m01643n: -2 @@ -89402,15 +89402,15 @@ - m01645n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162368 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.14 - - references: + - gene_reaction_rule: "ENSG00000162368" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.14" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8454 + - id: "HMR_8454" - name: "" - metabolites: !!omap - m01637c: -1 @@ -89419,15 +89419,15 @@ - m01644c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162368 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.14 - - references: + - gene_reaction_rule: "ENSG00000162368" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.14" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8455 + - id: "HMR_8455" - name: "" - metabolites: !!omap - m01637n: -1 @@ -89436,15 +89436,15 @@ - m01644n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162368 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.14 - - references: + - gene_reaction_rule: "ENSG00000162368" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.14" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8456 + - id: "HMR_8456" - name: "" - metabolites: !!omap - m01643c: -1 @@ -89453,15 +89453,15 @@ - m03130c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162368 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.14 - - references: + - gene_reaction_rule: "ENSG00000162368" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.14" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8457 + - id: "HMR_8457" - name: "" - metabolites: !!omap - m01643n: -1 @@ -89470,15 +89470,15 @@ - m03130n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162368 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.14 - - references: + - gene_reaction_rule: "ENSG00000162368" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.14" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8458 + - id: "HMR_8458" - name: "" - metabolites: !!omap - m01285n: -1 @@ -89487,15 +89487,15 @@ - m01590n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162368 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.14 - - references: + - gene_reaction_rule: "ENSG00000162368" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.14" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8459 + - id: "HMR_8459" - name: "" - metabolites: !!omap - m01285n: -1 @@ -89504,15 +89504,15 @@ - m01644n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162368 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.14 - - references: + - gene_reaction_rule: "ENSG00000162368" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.14" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8460 + - id: "HMR_8460" - name: "" - metabolites: !!omap - m01424n: -1 @@ -89521,15 +89521,15 @@ - m01644n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162368 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.14 - - references: + - gene_reaction_rule: "ENSG00000162368" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.14" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8461 + - id: "HMR_8461" - name: "" - metabolites: !!omap - m01643c: -1 @@ -89538,15 +89538,15 @@ - m02034c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000154027 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.3 - - references: + - gene_reaction_rule: "ENSG00000154027" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.3" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8462 + - id: "HMR_8462" - name: "" - metabolites: !!omap - m01643n: -1 @@ -89555,15 +89555,15 @@ - m02034n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162368 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.14 - - references: + - gene_reaction_rule: "ENSG00000162368" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.14" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8463 + - id: "HMR_8463" - name: "" - metabolites: !!omap - m01424c: -1 @@ -89572,15 +89572,15 @@ - m01644c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162368 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.14 - - references: + - gene_reaction_rule: "ENSG00000162368" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.14" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8464 + - id: "HMR_8464" - name: "" - metabolites: !!omap - m01424n: -1 @@ -89589,15 +89589,15 @@ - m02034n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162368 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.14 - - references: + - gene_reaction_rule: "ENSG00000162368" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.14" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8465 + - id: "HMR_8465" - name: "" - metabolites: !!omap - m01424c: -2 @@ -89605,15 +89605,15 @@ - m01623c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162368 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.14 - - references: + - gene_reaction_rule: "ENSG00000162368" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.14" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8466 + - id: "HMR_8466" - name: "" - metabolites: !!omap - m01424n: -2 @@ -89621,15 +89621,15 @@ - m01623n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162368 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.14 - - references: + - gene_reaction_rule: "ENSG00000162368" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.14" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8467 + - id: "HMR_8467" - name: "" - metabolites: !!omap - m01424c: -1 @@ -89638,15 +89638,15 @@ - m03130c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162368 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.14 - - references: + - gene_reaction_rule: "ENSG00000162368" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.14" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8468 + - id: "HMR_8468" - name: "" - metabolites: !!omap - m01424n: -1 @@ -89655,15 +89655,15 @@ - m03130n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162368 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.14 - - references: + - gene_reaction_rule: "ENSG00000162368" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.14" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8469 + - id: "HMR_8469" - name: "" - metabolites: !!omap - m01424c: -1 @@ -89672,15 +89672,15 @@ - m01642c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162368 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.14 - - references: + - gene_reaction_rule: "ENSG00000162368" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.14" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8470 + - id: "HMR_8470" - name: "" - metabolites: !!omap - m01424n: -1 @@ -89689,15 +89689,15 @@ - m01642n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162368 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.14 - - references: + - gene_reaction_rule: "ENSG00000162368" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.14" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8471 + - id: "HMR_8471" - name: "" - metabolites: !!omap - m01424c: -1 @@ -89706,15 +89706,15 @@ - m01645c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162368 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.14 - - references: + - gene_reaction_rule: "ENSG00000162368" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.14" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8472 + - id: "HMR_8472" - name: "" - metabolites: !!omap - m01424n: -1 @@ -89723,15 +89723,15 @@ - m01645n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162368 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.14 - - references: + - gene_reaction_rule: "ENSG00000162368" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.14" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8473 + - id: "HMR_8473" - name: "" - metabolites: !!omap - m01666s: -1 @@ -89740,15 +89740,15 @@ - m02578s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000196839 - - rxnFrom: HMRdatabase - - eccodes: 3.5.4.4 - - references: + - gene_reaction_rule: "ENSG00000196839" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.4.4" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8474 + - id: "HMR_8474" - name: "" - metabolites: !!omap - m01334s: 1 @@ -89758,15 +89758,15 @@ - m02751s: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000054179 or ENSG00000138185 or ENSG00000168032 or ENSG00000171302 or ENSG00000187097 or ENSG00000188833 or ENSG00000197217 or ENSG00000197586 - - rxnFrom: HMRdatabase - - eccodes: 3.6.1.5;3.6.1.6;3.6.1.42 - - references: + - gene_reaction_rule: "ENSG00000054179 or ENSG00000138185 or ENSG00000168032 or ENSG00000171302 or ENSG00000187097 or ENSG00000188833 or ENSG00000197217 or ENSG00000197586" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.1.5;3.6.1.6;3.6.1.42" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8477 + - id: "HMR_8477" - name: "" - metabolites: !!omap - m01285m: -1 @@ -89776,15 +89776,15 @@ - m02039m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000156136 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000156136" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8478 + - id: "HMR_8478" - name: "" - metabolites: !!omap - m01285n: -1 @@ -89794,15 +89794,15 @@ - m02039n: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000156136 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.74 - - references: + - gene_reaction_rule: "ENSG00000156136" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.74" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8479 + - id: "HMR_8479" - name: "" - metabolites: !!omap - m01644n: -1 @@ -89812,15 +89812,15 @@ - m03130n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000156136 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.74 - - references: + - gene_reaction_rule: "ENSG00000156136" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.74" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8480 + - id: "HMR_8480" - name: "" - metabolites: !!omap - m01668n: -1 @@ -89829,15 +89829,15 @@ - m02578n: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111732 - - rxnFrom: HMRdatabase - - eccodes: 3.5.4.5 - - references: + - gene_reaction_rule: "ENSG00000111732" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.4.5" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8481 + - id: "HMR_8481" - name: "" - metabolites: !!omap - m01637m: -1 @@ -89846,15 +89846,15 @@ - m01686m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8482 + - id: "HMR_8482" - name: "" - metabolites: !!omap - m02039m: -1 @@ -89864,15 +89864,15 @@ - m02990m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000184470 or ENSG00000197763 or ENSG00000198431 - - rxnFrom: HMRdatabase - - eccodes: 1.8.1.9 - - references: + - gene_reaction_rule: "ENSG00000184470 or ENSG00000197763 or ENSG00000198431" + - rxnFrom: "HMRdatabase" + - eccodes: "1.8.1.9" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8483 + - id: "HMR_8483" - name: "" - metabolites: !!omap - m01755n: 1 @@ -89882,15 +89882,15 @@ - m02759n: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000128951 - - rxnFrom: HMRdatabase - - eccodes: 3.6.1.23 - - references: + - gene_reaction_rule: "ENSG00000128951" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.1.23" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8484 + - id: "HMR_8484" - name: "" - metabolites: !!omap - m01285m: 1 @@ -89900,15 +89900,15 @@ - m02170m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8485 + - id: "HMR_8485" - name: "" - metabolites: !!omap - m02039g: 1 @@ -89918,15 +89918,15 @@ - m03114g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171302 or ENSG00000197217 or ENSG00000197586 - - rxnFrom: HMRdatabase - - eccodes: 3.6.1.6 - - references: + - gene_reaction_rule: "ENSG00000171302 or ENSG00000197217 or ENSG00000197586" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.1.6" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8486 + - id: "HMR_8486" - name: "" - metabolites: !!omap - m01279c: 1 @@ -89935,15 +89935,15 @@ - m02844c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000198805 - - rxnFrom: HMRdatabase - - eccodes: 2.4.2.1 - - references: + - gene_reaction_rule: "ENSG00000198805" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.2.1" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8487 + - id: "HMR_8487" - name: "" - metabolites: !!omap - m02040s: -1 @@ -89952,15 +89952,15 @@ - m03123s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000122643 or ENSG00000135318 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.5 - - references: + - gene_reaction_rule: "ENSG00000122643 or ENSG00000135318" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.5" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8488 + - id: "HMR_8488" - name: "" - metabolites: !!omap - m02039c: 1 @@ -89970,15 +89970,15 @@ - m03154c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125877 - - rxnFrom: HMRdatabase - - eccodes: 3.6.1.19 - - references: + - gene_reaction_rule: "ENSG00000125877" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.1.19" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8489 + - id: "HMR_8489" - name: "" - metabolites: !!omap - m02039c: 1 @@ -89988,15 +89988,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125877 - - rxnFrom: HMRdatabase - - eccodes: 3.6.1.19 - - references: + - gene_reaction_rule: "ENSG00000125877" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.1.19" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8493 + - id: "HMR_8493" - name: "" - metabolites: !!omap - m01644l: -1 @@ -90005,15 +90005,15 @@ - m02751l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134575 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.2 - - references: + - gene_reaction_rule: "ENSG00000134575" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.2" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8494 + - id: "HMR_8494" - name: "" - metabolites: !!omap - m01639l: -1 @@ -90022,15 +90022,15 @@ - m02751l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134575 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.2 - - references: + - gene_reaction_rule: "ENSG00000134575" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.2" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8495 + - id: "HMR_8495" - name: "" - metabolites: !!omap - m01669l: 1 @@ -90039,15 +90039,15 @@ - m02751l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134575 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.2 - - references: + - gene_reaction_rule: "ENSG00000134575" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.2" + - references: "" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: HMR_3802 + - id: "HMR_3802" - name: "" - metabolites: !!omap - m01306m: -1 @@ -90059,15 +90059,15 @@ - m02578m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000148672 or ENSG00000182890 - - rxnFrom: HMRdatabase - - eccodes: 1.4.1.3 - - references: PMID:11254391;PMID:3377777 + - gene_reaction_rule: "ENSG00000148672 or ENSG00000182890" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.1.3" + - references: "PMID:11254391;PMID:3377777" - subsystem: - - Alanine, aspartate and glutamate metabolism + - "Alanine, aspartate and glutamate metabolism" - confidence_score: 0 - !!omap - - id: HMR_3804 + - id: "HMR_3804" - name: "" - metabolites: !!omap - m01306m: -1 @@ -90079,15 +90079,15 @@ - m02578m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000148672 or ENSG00000182890 - - rxnFrom: HMRdatabase - - eccodes: 1.4.1.3 - - references: PMID:11254391;PMID:3377777 + - gene_reaction_rule: "ENSG00000148672 or ENSG00000182890" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.1.3" + - references: "PMID:11254391;PMID:3377777" - subsystem: - - Alanine, aspartate and glutamate metabolism + - "Alanine, aspartate and glutamate metabolism" - confidence_score: 0 - !!omap - - id: HMR_3811 + - id: "HMR_3811" - name: "" - metabolites: !!omap - m01334c: 1 @@ -90099,15 +90099,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130707 - - rxnFrom: HMRdatabase - - eccodes: 6.3.4.5 - - references: PMID:12055339;PMID:518841;PMID:6194510;PMID:650761;PMID:652976;PMID:7776957 + - gene_reaction_rule: "ENSG00000130707" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.4.5" + - references: "PMID:12055339;PMID:518841;PMID:6194510;PMID:650761;PMID:652976;PMID:7776957" - subsystem: - - Alanine, aspartate and glutamate metabolism + - "Alanine, aspartate and glutamate metabolism" - confidence_score: 0 - !!omap - - id: HMR_3813 + - id: "HMR_3813" - name: "" - metabolites: !!omap - m01365c: -1 @@ -90115,15 +90115,15 @@ - m01862c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000126522 or ENSG00000241258 - - rxnFrom: HMRdatabase - - eccodes: 4.3.2.1 - - references: PMID:11092456;PMID:12055339 + - gene_reaction_rule: "ENSG00000126522 or ENSG00000241258" + - rxnFrom: "HMRdatabase" + - eccodes: "4.3.2.1" + - references: "PMID:11092456;PMID:12055339" - subsystem: - - Alanine, aspartate and glutamate metabolism + - "Alanine, aspartate and glutamate metabolism" - confidence_score: 0 - !!omap - - id: HMR_3822 + - id: "HMR_3822" - name: "" - metabolites: !!omap - m00559m: -1 @@ -90134,15 +90134,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000159423 - - rxnFrom: HMRdatabase - - eccodes: 1.5.1.12 - - references: + - gene_reaction_rule: "ENSG00000159423" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.1.12" + - references: "" - subsystem: - - Alanine, aspartate and glutamate metabolism + - "Alanine, aspartate and glutamate metabolism" - confidence_score: 0 - !!omap - - id: HMR_3827 + - id: "HMR_3827" - name: "" - metabolites: !!omap - m01306m: -1 @@ -90151,15 +90151,15 @@ - m02633m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125166 - - rxnFrom: HMRdatabase - - eccodes: 2.6.1.1 - - references: PMID:3207426;PMID:7499788;PMID:7719646 + - gene_reaction_rule: "ENSG00000125166" + - rxnFrom: "HMRdatabase" + - eccodes: "2.6.1.1" + - references: "PMID:3207426;PMID:7499788;PMID:7719646" - subsystem: - - Alanine, aspartate and glutamate metabolism + - "Alanine, aspartate and glutamate metabolism" - confidence_score: 0 - !!omap - - id: HMR_3829 + - id: "HMR_3829" - name: "" - metabolites: !!omap - m01306c: -1 @@ -90168,15 +90168,15 @@ - m02633c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120053 or ENSG00000169154 - - rxnFrom: HMRdatabase - - eccodes: 2.6.1.1 - - references: PMID:3207426;PMID:7499788;PMID:7719646 + - gene_reaction_rule: "ENSG00000120053 or ENSG00000169154" + - rxnFrom: "HMRdatabase" + - eccodes: "2.6.1.1" + - references: "PMID:3207426;PMID:7499788;PMID:7719646" - subsystem: - - Alanine, aspartate and glutamate metabolism + - "Alanine, aspartate and glutamate metabolism" - confidence_score: 0 - !!omap - - id: HMR_3831 + - id: "HMR_3831" - name: "" - metabolites: !!omap - m01370c: -1 @@ -90185,15 +90185,15 @@ - m02578c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000091483 - - rxnFrom: HMRdatabase - - eccodes: 4.3.1.1 - - references: + - gene_reaction_rule: "ENSG00000091483" + - rxnFrom: "HMRdatabase" + - eccodes: "4.3.1.1" + - references: "" - subsystem: - - Alanine, aspartate and glutamate metabolism + - "Alanine, aspartate and glutamate metabolism" - confidence_score: 0 - !!omap - - id: HMR_3862 + - id: "HMR_3862" - name: "" - metabolites: !!omap - m01369m: -1 @@ -90203,15 +90203,15 @@ - m02578m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162174 or ENSG00000166183 - - rxnFrom: HMRdatabase - - eccodes: 3.4.19.5 - - references: + - gene_reaction_rule: "ENSG00000162174 or ENSG00000166183" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.19.5" + - references: "" - subsystem: - - Alanine, aspartate and glutamate metabolism + - "Alanine, aspartate and glutamate metabolism" - confidence_score: 0 - !!omap - - id: HMR_3865 + - id: "HMR_3865" - name: "" - metabolites: !!omap - m00918m: -1 @@ -90221,15 +90221,15 @@ - m02039m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125166 - - rxnFrom: HMRdatabase - - eccodes: 2.6.1.1;2.6.1.7 - - references: + - gene_reaction_rule: "ENSG00000125166" + - rxnFrom: "HMRdatabase" + - eccodes: "2.6.1.1;2.6.1.7" + - references: "" - subsystem: - - Alanine, aspartate and glutamate metabolism + - "Alanine, aspartate and glutamate metabolism" - confidence_score: 0 - !!omap - - id: HMR_3870 + - id: "HMR_3870" - name: "" - metabolites: !!omap - m02026m: 2 @@ -90239,15 +90239,15 @@ - m02555m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104687 - - rxnFrom: HMRdatabase - - eccodes: 1.8.1.7 - - references: PMID:10708558;PMID:10781871;PMID:1154381;PMID:12821209;PMID:237922;PMID:3003504;PMID:31912;PMID:4380255;PMID:6170346;PMID:8981046;PMID:9621574 + - gene_reaction_rule: "ENSG00000104687" + - rxnFrom: "HMRdatabase" + - eccodes: "1.8.1.7" + - references: "PMID:10708558;PMID:10781871;PMID:1154381;PMID:12821209;PMID:237922;PMID:3003504;PMID:31912;PMID:4380255;PMID:6170346;PMID:8981046;PMID:9621574" - subsystem: - - Alanine, aspartate and glutamate metabolism + - "Alanine, aspartate and glutamate metabolism" - confidence_score: 0 - !!omap - - id: HMR_3873 + - id: "HMR_3873" - name: "" - metabolites: !!omap - m01285m: 2 @@ -90260,15 +90260,15 @@ - m02751m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021826 - - rxnFrom: HMRdatabase - - eccodes: 6.3.4.16 - - references: PMID:15897806;PMID:175068;PMID:2893372;PMID:3886433;PMID:4347313;PMID:7248316 + - gene_reaction_rule: "ENSG00000021826" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.4.16" + - references: "PMID:15897806;PMID:175068;PMID:2893372;PMID:3886433;PMID:4347313;PMID:7248316" - subsystem: - - Alanine, aspartate and glutamate metabolism + - "Alanine, aspartate and glutamate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8654 + - id: "HMR_8654" - name: "" - metabolites: !!omap - m01285m: 2 @@ -90280,15 +90280,15 @@ - m02751m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021826 - - rxnFrom: HMRdatabase - - eccodes: 6.3.4.16 - - references: + - gene_reaction_rule: "ENSG00000021826" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.4.16" + - references: "" - subsystem: - - Alanine, aspartate and glutamate metabolism + - "Alanine, aspartate and glutamate metabolism" - confidence_score: 0 - !!omap - - id: HMR_3890 + - id: "HMR_3890" - name: "" - metabolites: !!omap - m01285c: 1 @@ -90299,15 +90299,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135821 or ENSG00000146166 - - rxnFrom: HMRdatabase - - eccodes: 6.3.1.2 - - references: PMID:11080211;PMID:1356223;PMID:14583610;PMID:16213501;PMID:7595668;PMID:8838581;PMID:9053810 + - gene_reaction_rule: "ENSG00000135821 or ENSG00000146166" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.1.2" + - references: "PMID:11080211;PMID:1356223;PMID:14583610;PMID:16213501;PMID:7595668;PMID:8838581;PMID:9053810" - subsystem: - - Alanine, aspartate and glutamate metabolism + - "Alanine, aspartate and glutamate metabolism" - confidence_score: 0 - !!omap - - id: HMR_3892 + - id: "HMR_3892" - name: "" - metabolites: !!omap - m01974m: 1 @@ -90317,15 +90317,15 @@ - m02578m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115419 - - rxnFrom: HMRdatabase - - eccodes: 3.5.1.2;3.5.1.38 - - references: PMID:11015561;PMID:11130979;PMID:17267261;PMID:6704422 + - gene_reaction_rule: "ENSG00000115419" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.1.2;3.5.1.38" + - references: "PMID:11015561;PMID:11130979;PMID:17267261;PMID:6704422" - subsystem: - - Alanine, aspartate and glutamate metabolism + - "Alanine, aspartate and glutamate metabolism" - confidence_score: 0 - !!omap - - id: HMR_9802 + - id: "HMR_9802" - name: "" - metabolites: !!omap - m01974c: 1 @@ -90335,15 +90335,15 @@ - m02578c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135423 - - rxnFrom: HMRdatabase - - eccodes: 3.5.1.2;3.5.1.38 - - references: PMID:11015561;PMID:11130979;PMID:17267261;PMID:6704422 + - gene_reaction_rule: "ENSG00000135423" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.1.2;3.5.1.38" + - references: "PMID:11015561;PMID:11130979;PMID:17267261;PMID:6704422" - subsystem: - - Alanine, aspartate and glutamate metabolism + - "Alanine, aspartate and glutamate metabolism" - confidence_score: 0 - !!omap - - id: HMR_3899 + - id: "HMR_3899" - name: "" - metabolites: !!omap - m01306c: -1 @@ -90352,15 +90352,15 @@ - m02819c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167701 - - rxnFrom: HMRdatabase - - eccodes: 2.6.1.2 - - references: PMID:15663181;PMID:2088925;PMID:454616 + - gene_reaction_rule: "ENSG00000167701" + - rxnFrom: "HMRdatabase" + - eccodes: "2.6.1.2" + - references: "PMID:15663181;PMID:2088925;PMID:454616" - subsystem: - - Alanine, aspartate and glutamate metabolism + - "Alanine, aspartate and glutamate metabolism" - confidence_score: 0 - !!omap - - id: HMR_3903 + - id: "HMR_3903" - name: "" - metabolites: !!omap - m01334c: 1 @@ -90374,15 +90374,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000070669 - - rxnFrom: HMRdatabase - - eccodes: 6.3.5.4 - - references: PMID:4216348 + - gene_reaction_rule: "ENSG00000070669" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.5.4" + - references: "PMID:4216348" - subsystem: - - Alanine, aspartate and glutamate metabolism + - "Alanine, aspartate and glutamate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4109 + - id: "HMR_4109" - name: "" - metabolites: !!omap - m01306m: -1 @@ -90391,15 +90391,15 @@ - m02819m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000166123 - - rxnFrom: HMRdatabase - - eccodes: 2.6.1.2 - - references: PMID:15663181;PMID:2088925;PMID:454616 + - gene_reaction_rule: "ENSG00000166123" + - rxnFrom: "HMRdatabase" + - eccodes: "2.6.1.2" + - references: "PMID:15663181;PMID:2088925;PMID:454616" - subsystem: - - Alanine, aspartate and glutamate metabolism + - "Alanine, aspartate and glutamate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4114 + - id: "HMR_4114" - name: "" - metabolites: !!omap - m00672c: -1 @@ -90409,15 +90409,15 @@ - m02578c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000114021 - - rxnFrom: HMRdatabase - - eccodes: 3.5.1.3 - - references: PMID:3003502;PMID:319948;PMID:4436326;PMID:5114531;PMID:894284 + - gene_reaction_rule: "ENSG00000114021" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.1.3" + - references: "PMID:3003502;PMID:319948;PMID:4436326;PMID:5114531;PMID:894284" - subsystem: - - Alanine, aspartate and glutamate metabolism + - "Alanine, aspartate and glutamate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4115 + - id: "HMR_4115" - name: "" - metabolites: !!omap - m00672m: -1 @@ -90427,15 +90427,15 @@ - m02578m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000114021 - - rxnFrom: HMRdatabase - - eccodes: 3.5.1.3 - - references: PMID:3003502;PMID:319948;PMID:4436326;PMID:5114531;PMID:894284 + - gene_reaction_rule: "ENSG00000114021" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.1.3" + - references: "PMID:3003502;PMID:319948;PMID:4436326;PMID:5114531;PMID:894284" - subsystem: - - Alanine, aspartate and glutamate metabolism + - "Alanine, aspartate and glutamate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4118 + - id: "HMR_4118" - name: "" - metabolites: !!omap - m02026c: 2 @@ -90445,15 +90445,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104687 - - rxnFrom: HMRdatabase - - eccodes: 1.8.1.7 - - references: PMID:10708558;PMID:10781871;PMID:1154381;PMID:12821209;PMID:237922;PMID:3003504;PMID:31912;PMID:4380255;PMID:6170346;PMID:8981046;PMID:9621574 + - gene_reaction_rule: "ENSG00000104687" + - rxnFrom: "HMRdatabase" + - eccodes: "1.8.1.7" + - references: "PMID:10708558;PMID:10781871;PMID:1154381;PMID:12821209;PMID:237922;PMID:3003504;PMID:31912;PMID:4380255;PMID:6170346;PMID:8981046;PMID:9621574" - subsystem: - - Alanine, aspartate and glutamate metabolism + - "Alanine, aspartate and glutamate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4172 + - id: "HMR_4172" - name: "" - metabolites: !!omap - m01369c: -1 @@ -90463,15 +90463,15 @@ - m02578c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162174 or ENSG00000166183 - - rxnFrom: HMRdatabase - - eccodes: 3.5.1.1;3.5.1.38 - - references: PMID:4311065;PMID:4894450 + - gene_reaction_rule: "ENSG00000162174 or ENSG00000166183" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.1.1;3.5.1.38" + - references: "PMID:4311065;PMID:4894450" - subsystem: - - Alanine, aspartate and glutamate metabolism + - "Alanine, aspartate and glutamate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4196 + - id: "HMR_4196" - name: "" - metabolites: !!omap - m00672c: 1 @@ -90480,15 +90480,15 @@ - m02819c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171097 - - rxnFrom: HMRdatabase - - eccodes: 2.6.1.15;2.6.1.63 - - references: PMID:12850267;PMID:1296212;PMID:3003500;PMID:4762917;PMID:4797019;PMID:4822504;PMID:5059882 + - gene_reaction_rule: "ENSG00000171097" + - rxnFrom: "HMRdatabase" + - eccodes: "2.6.1.15;2.6.1.63" + - references: "PMID:12850267;PMID:1296212;PMID:3003500;PMID:4762917;PMID:4797019;PMID:4822504;PMID:5059882" - subsystem: - - Alanine, aspartate and glutamate metabolism + - "Alanine, aspartate and glutamate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4197 + - id: "HMR_4197" - name: "" - metabolites: !!omap - m00672m: 1 @@ -90497,15 +90497,15 @@ - m02819m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109576 or ENSG00000137944 - - rxnFrom: HMRdatabase - - eccodes: 2.6.1.15;2.6.1.63 - - references: PMID:12850267;PMID:1296212;PMID:3003500;PMID:4762917;PMID:4797019;PMID:4822504;PMID:5059882 + - gene_reaction_rule: "ENSG00000109576 or ENSG00000137944" + - rxnFrom: "HMRdatabase" + - eccodes: "2.6.1.15;2.6.1.63" + - references: "PMID:12850267;PMID:1296212;PMID:3003500;PMID:4762917;PMID:4797019;PMID:4822504;PMID:5059882" - subsystem: - - Alanine, aspartate and glutamate metabolism + - "Alanine, aspartate and glutamate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4287 + - id: "HMR_4287" - name: "" - metabolites: !!omap - m02039m: 2 @@ -90516,15 +90516,15 @@ - m02943m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134333 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.16 - - references: PMID:4066712;PMID:7814412 + - gene_reaction_rule: "ENSG00000134333" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.16" + - references: "PMID:4066712;PMID:7814412" - subsystem: - - Alanine, aspartate and glutamate metabolism + - "Alanine, aspartate and glutamate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4690 + - id: "HMR_4690" - name: "" - metabolites: !!omap - m00970c: 1 @@ -90533,15 +90533,15 @@ - m02039c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000128683 or ENSG00000136750 - - rxnFrom: HMRdatabase - - eccodes: 4.1.1.15 - - references: + - gene_reaction_rule: "ENSG00000128683 or ENSG00000136750" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.1.15" + - references: "" - subsystem: - - Alanine, aspartate and glutamate metabolism + - "Alanine, aspartate and glutamate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4693 + - id: "HMR_4693" - name: "" - metabolites: !!omap - m00970m: -1 @@ -90550,15 +90550,15 @@ - m02942m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000183044 - - rxnFrom: HMRdatabase - - eccodes: 2.6.1.19 - - references: + - gene_reaction_rule: "ENSG00000183044" + - rxnFrom: "HMRdatabase" + - eccodes: "2.6.1.19" + - references: "" - subsystem: - - Alanine, aspartate and glutamate metabolism + - "Alanine, aspartate and glutamate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6780 + - id: "HMR_6780" - name: "" - metabolites: !!omap - m01005m: 1 @@ -90567,15 +90567,15 @@ - m03101m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125166 or ENSG00000198650 - - rxnFrom: HMRdatabase - - eccodes: 2.6.1.5;2.6.1.57;2.6.1.1 - - references: + - gene_reaction_rule: "ENSG00000125166 or ENSG00000198650" + - rxnFrom: "HMRdatabase" + - eccodes: "2.6.1.5;2.6.1.57;2.6.1.1" + - references: "" - subsystem: - - Alanine, aspartate and glutamate metabolism + - "Alanine, aspartate and glutamate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6968 + - id: "HMR_6968" - name: "" - metabolites: !!omap - m01261m: 1 @@ -90585,15 +90585,15 @@ - m02531m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000161653 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.1 - - references: PMID:12594532;PMID:12459178 + - gene_reaction_rule: "ENSG00000161653" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.1" + - references: "PMID:12594532;PMID:12459178" - subsystem: - - Alanine, aspartate and glutamate metabolism + - "Alanine, aspartate and glutamate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6969 + - id: "HMR_6969" - name: "" - metabolites: !!omap - m01252c: 1 @@ -90602,15 +90602,15 @@ - m02531c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108381 or ENSG00000132744 - - rxnFrom: HMRdatabase - - eccodes: 3.5.1.15 - - references: PMID:10837925;PMID:8252036 + - gene_reaction_rule: "ENSG00000108381 or ENSG00000132744" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.1.15" + - references: "PMID:10837925;PMID:8252036" - subsystem: - - Alanine, aspartate and glutamate metabolism + - "Alanine, aspartate and glutamate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6970 + - id: "HMR_6970" - name: "" - metabolites: !!omap - m00169c: -1 @@ -90619,15 +90619,15 @@ - m01974c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167701 - - rxnFrom: HMRdatabase - - eccodes: 2.6.1.2 - - references: PMID:6820415 + - gene_reaction_rule: "ENSG00000167701" + - rxnFrom: "HMRdatabase" + - eccodes: "2.6.1.2" + - references: "PMID:6820415" - subsystem: - - Alanine, aspartate and glutamate metabolism + - "Alanine, aspartate and glutamate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6971 + - id: "HMR_6971" - name: "" - metabolites: !!omap - m00169c: -1 @@ -90635,15 +90635,15 @@ - m01931c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006625 or ENSG00000134864 - - rxnFrom: HMRdatabase - - eccodes: 2.3.2.4 - - references: PMID:2570694;PMID:6150932 + - gene_reaction_rule: "ENSG00000006625 or ENSG00000134864" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.2.4" + - references: "PMID:2570694;PMID:6150932" - subsystem: - - Alanine, aspartate and glutamate metabolism + - "Alanine, aspartate and glutamate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6972 + - id: "HMR_6972" - name: "" - metabolites: !!omap - m01127c: -1 @@ -90651,15 +90651,15 @@ - m02026c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006625 or ENSG00000134864 - - rxnFrom: HMRdatabase - - eccodes: 2.3.2.4 - - references: PMID:2570694;PMID:6150932 + - gene_reaction_rule: "ENSG00000006625 or ENSG00000134864" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.2.4" + - references: "PMID:2570694;PMID:6150932" - subsystem: - - Alanine, aspartate and glutamate metabolism + - "Alanine, aspartate and glutamate metabolism" - confidence_score: 0 - !!omap - - id: HMR_7641 + - id: "HMR_7641" - name: "" - metabolites: !!omap - m01641p: -1 @@ -90671,30 +90671,30 @@ - m02633p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000203797 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.1 - - references: + - gene_reaction_rule: "ENSG00000203797" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.1" + - references: "" - subsystem: - - Alanine, aspartate and glutamate metabolism + - "Alanine, aspartate and glutamate metabolism" - confidence_score: 0 - !!omap - - id: HMR_7642 + - id: "HMR_7642" - name: "" - metabolites: !!omap - m01307c: 1 - m01638c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147471 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000147471" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Alanine, aspartate and glutamate metabolism + - "Alanine, aspartate and glutamate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8626 + - id: "HMR_8626" - name: "" - metabolites: !!omap - m01261m: -1 @@ -90704,15 +90704,15 @@ - m02532m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000185818 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000185818" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Alanine, aspartate and glutamate metabolism + - "Alanine, aspartate and glutamate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8628 + - id: "HMR_8628" - name: "" - metabolites: !!omap - m01252c: 1 @@ -90721,15 +90721,15 @@ - m02532c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108381 or ENSG00000132744 - - rxnFrom: HMRdatabase - - eccodes: 3.5.1.15 - - references: + - gene_reaction_rule: "ENSG00000108381 or ENSG00000132744" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.1.15" + - references: "" - subsystem: - - Alanine, aspartate and glutamate metabolism + - "Alanine, aspartate and glutamate metabolism" - confidence_score: 0 - !!omap - - id: HMR_3806 + - id: "HMR_3806" - name: "" - metabolites: !!omap - m01974m: -1 @@ -90740,15 +90740,15 @@ - m02553m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000159423 - - rxnFrom: HMRdatabase - - eccodes: 1.5.1.12 - - references: PMID:1286669;PMID:2211729 + - gene_reaction_rule: "ENSG00000159423" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.1.12" + - references: "PMID:1286669;PMID:2211729" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_3807 + - id: "HMR_3807" - name: "" - metabolites: !!omap - m01306m: -1 @@ -90757,15 +90757,15 @@ - m02658m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000065154 - - rxnFrom: HMRdatabase - - eccodes: 2.6.1.13 - - references: PMID:11465067;PMID:3816496;PMID:6819292 + - gene_reaction_rule: "ENSG00000065154" + - rxnFrom: "HMRdatabase" + - eccodes: "2.6.1.13" + - references: "PMID:11465067;PMID:3816496;PMID:6819292" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_3809 + - id: "HMR_3809" - name: "" - metabolites: !!omap - m01420m: 1 @@ -90775,15 +90775,15 @@ - m02751m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000036473 - - rxnFrom: HMRdatabase - - eccodes: 2.1.3.3 - - references: PMID:12788037;PMID:893420 + - gene_reaction_rule: "ENSG00000036473" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.3.3" + - references: "PMID:12788037;PMID:893420" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_3816 + - id: "HMR_3816" - name: "" - metabolites: !!omap - m01365c: -1 @@ -90792,15 +90792,15 @@ - m03121c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000081181 or ENSG00000118520 - - rxnFrom: HMRdatabase - - eccodes: 3.5.3.1 - - references: PMID:12055339;PMID:3583682;PMID:743206;PMID:9144563 + - gene_reaction_rule: "ENSG00000081181 or ENSG00000118520" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.3.1" + - references: "PMID:12055339;PMID:3583682;PMID:743206;PMID:9144563" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_3819 + - id: "HMR_3819" - name: "" - metabolites: !!omap - m00559c: -1 @@ -90809,15 +90809,15 @@ - m02374c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000159423 - - rxnFrom: HMRdatabase - - eccodes: 1.5.1.12 - - references: + - gene_reaction_rule: "ENSG00000159423" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.1.12" + - references: "" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_3820 + - id: "HMR_3820" - name: "" - metabolites: !!omap - m00559m: -1 @@ -90826,15 +90826,15 @@ - m02374m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000159423 - - rxnFrom: HMRdatabase - - eccodes: 1.5.1.12 - - references: PMID:1286669;PMID:2211729;PMID:8621661 + - gene_reaction_rule: "ENSG00000159423" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.1.12" + - references: "PMID:1286669;PMID:2211729;PMID:8621661" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_3832 + - id: "HMR_3832" - name: "" - metabolites: !!omap - m01365c: -1 @@ -90844,15 +90844,15 @@ - m02578c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 3.5.3.6 - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.3.6" + - references: "" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_3833 + - id: "HMR_3833" - name: "" - metabolites: !!omap - m00559c: -1 @@ -90862,15 +90862,15 @@ - m02770c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104524 or ENSG00000143811 or ENSG00000183010 or ENSG00000243709 - - rxnFrom: HMRdatabase - - eccodes: 1.5.1.2 - - references: PMID:12514185;PMID:2722838;PMID:3768405;PMID:6250440 + - gene_reaction_rule: "ENSG00000104524 or ENSG00000143811 or ENSG00000183010 or ENSG00000243709" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.1.2" + - references: "PMID:12514185;PMID:2722838;PMID:3768405;PMID:6250440" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_3835 + - id: "HMR_3835" - name: "" - metabolites: !!omap - m00559c: -1 @@ -90880,15 +90880,15 @@ - m02770c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104524 or ENSG00000143811 or ENSG00000183010 or ENSG00000243709 - - rxnFrom: HMRdatabase - - eccodes: 1.5.1.2 - - references: PMID:12376638;PMID:12514185;PMID:16730026;PMID:3768405;PMID:6250440;PMID:9003320 + - gene_reaction_rule: "ENSG00000104524 or ENSG00000143811 or ENSG00000183010 or ENSG00000243709" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.1.2" + - references: "PMID:12376638;PMID:12514185;PMID:16730026;PMID:3768405;PMID:6250440;PMID:9003320" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_3837 + - id: "HMR_3837" - name: "" - metabolites: !!omap - m00559m: -1 @@ -90898,15 +90898,15 @@ - m02770m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104524 or ENSG00000143811 or ENSG00000183010 or ENSG00000243709 - - rxnFrom: HMRdatabase - - eccodes: 1.5.1.2 - - references: + - gene_reaction_rule: "ENSG00000104524 or ENSG00000143811 or ENSG00000183010 or ENSG00000243709" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.1.2" + - references: "" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_3838 + - id: "HMR_3838" - name: "" - metabolites: !!omap - m00559m: -1 @@ -90916,15 +90916,15 @@ - m03103m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100033 or ENSG00000250799 - - rxnFrom: HMRdatabase - - eccodes: 1.5.99.8 - - references: PMID:18506409 + - gene_reaction_rule: "ENSG00000100033 or ENSG00000250799" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.99.8" + - references: "PMID:18506409" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_3895 + - id: "HMR_3895" - name: "" - metabolites: !!omap - m01285m: 1 @@ -90933,15 +90933,15 @@ - m01976m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000059573 - - rxnFrom: HMRdatabase - - eccodes: 2.7.2.11 - - references: PMID:10736367;PMID:8761662 + - gene_reaction_rule: "ENSG00000059573" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.2.11" + - references: "PMID:10736367;PMID:8761662" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_3897 + - id: "HMR_3897" - name: "" - metabolites: !!omap - m01976m: -1 @@ -90952,15 +90952,15 @@ - m02751m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000059573 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.41 - - references: PMID:10736367;PMID:8761662 + - gene_reaction_rule: "ENSG00000059573" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.41" + - references: "PMID:10736367;PMID:8761662" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_3956 + - id: "HMR_3956" - name: "" - metabolites: !!omap - m01596m: -1 @@ -90969,15 +90969,15 @@ - m02046m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169239 or ENSG00000174990 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.1 - - references: + - gene_reaction_rule: "ENSG00000169239 or ENSG00000174990" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.1" + - references: "" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_3993 + - id: "HMR_3993" - name: "" - metabolites: !!omap - m01588c: 2 @@ -90990,15 +90990,15 @@ - m02630c: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000007171 or ENSG00000089250 or ENSG00000164867 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.39 - - references: + - gene_reaction_rule: "ENSG00000007171 or ENSG00000089250 or ENSG00000164867" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.39" + - references: "" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_4073 + - id: "HMR_4073" - name: "" - metabolites: !!omap - m01596c: 1 @@ -91007,15 +91007,15 @@ - m02877c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123505 - - rxnFrom: HMRdatabase - - eccodes: 4.1.1.50 - - references: PMID:1764068 + - gene_reaction_rule: "ENSG00000123505" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.1.50" + - references: "PMID:1764068" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_4075 + - id: "HMR_4075" - name: "" - metabolites: !!omap - m01116c: 1 @@ -91025,15 +91025,15 @@ - m02923c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116649 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.16 - - references: PMID:2730590;PMID:3109311 + - gene_reaction_rule: "ENSG00000116649" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.16" + - references: "PMID:2730590;PMID:3109311" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_4077 + - id: "HMR_4077" - name: "" - metabolites: !!omap - m01116c: 1 @@ -91043,15 +91043,15 @@ - m02926c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000102172 or ENSG00000116649 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.16;2.5.1.22 - - references: PMID:2730590;PMID:3109311 + - gene_reaction_rule: "ENSG00000102172 or ENSG00000116649" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.16;2.5.1.22" + - references: "PMID:2730590;PMID:3109311" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_4190 + - id: "HMR_4190" - name: "" - metabolites: !!omap - m01365c: -1 @@ -91063,15 +91063,15 @@ - m02630c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000007171 or ENSG00000089250 or ENSG00000164867 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.39 - - references: PMID:11125020;PMID:7515853 + - gene_reaction_rule: "ENSG00000007171 or ENSG00000089250 or ENSG00000164867" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.39" + - references: "PMID:11125020;PMID:7515853" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_4191 + - id: "HMR_4191" - name: "" - metabolites: !!omap - m01303m: 1 @@ -91080,15 +91080,15 @@ - m02039m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000142920 - - rxnFrom: HMRdatabase - - eccodes: 4.1.1.19 - - references: PMID:10800966;PMID:14738999 + - gene_reaction_rule: "ENSG00000142920" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.1.19" + - references: "PMID:10800966;PMID:14738999" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_4212 + - id: "HMR_4212" - name: "" - metabolites: !!omap - m01596c: 1 @@ -91097,15 +91097,15 @@ - m02812c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115758 - - rxnFrom: HMRdatabase - - eccodes: 4.1.1.17 - - references: PMID:10623504;PMID:15670771;PMID:6853503;PMID:8608396 + - gene_reaction_rule: "ENSG00000115758" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.1.17" + - references: "PMID:10623504;PMID:15670771;PMID:6853503;PMID:8608396" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_4422 + - id: "HMR_4422" - name: "" - metabolites: !!omap - m01596s: 1 @@ -91114,15 +91114,15 @@ - m02812s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115758 - - rxnFrom: HMRdatabase - - eccodes: 4.1.1.17 - - references: PMID:10623504;PMID:15670771;PMID:6853503;PMID:8608396 + - gene_reaction_rule: "ENSG00000115758" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.1.17" + - references: "PMID:10623504;PMID:15670771;PMID:6853503;PMID:8608396" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_4423 + - id: "HMR_4423" - name: "" - metabolites: !!omap - m00969s: 1 @@ -91134,15 +91134,15 @@ - m02812s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000002726 or ENSG00000131471 or ENSG00000131480 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.10;1.4.3.6 - - references: PMID:12072962;PMID:15795708;PMID:17006978;PMID:6403048 + - gene_reaction_rule: "ENSG00000002726 or ENSG00000131471 or ENSG00000131480" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.10;1.4.3.6" + - references: "PMID:12072962;PMID:15795708;PMID:17006978;PMID:6403048" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_4424 + - id: "HMR_4424" - name: "" - metabolites: !!omap - m01303m: -1 @@ -91151,15 +91151,15 @@ - m03121m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116771 - - rxnFrom: HMRdatabase - - eccodes: 3.5.3.11 - - references: PMID:11804860;PMID:14648699 + - gene_reaction_rule: "ENSG00000116771" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.3.11" + - references: "PMID:11804860;PMID:14648699" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_4583 + - id: "HMR_4583" - name: "" - metabolites: !!omap - m01619c: -1 @@ -91169,15 +91169,15 @@ - m02877c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130005 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.2 - - references: PMID:11165387;PMID:12969151;PMID:13192118;PMID:15465786;PMID:8547310 + - gene_reaction_rule: "ENSG00000130005" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.2" + - references: "PMID:11165387;PMID:12969151;PMID:13192118;PMID:15465786;PMID:8547310" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_4605 + - id: "HMR_4605" - name: "" - metabolites: !!omap - m00969m: -1 @@ -91188,15 +91188,15 @@ - m02555m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000143149 or ENSG00000164904 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.3 - - references: PMID:10467734;PMID:11790142;PMID:4817964;PMID:8155713;PMID:8645224;PMID:8786138 + - gene_reaction_rule: "ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000143149 or ENSG00000164904" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.3" + - references: "PMID:10467734;PMID:11790142;PMID:4817964;PMID:8155713;PMID:8645224;PMID:8786138" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_4606 + - id: "HMR_4606" - name: "" - metabolites: !!omap - m00970c: -1 @@ -91208,15 +91208,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000172508 - - rxnFrom: HMRdatabase - - eccodes: 6.3.2.11 - - references: PMID:448355;PMID:487087 + - gene_reaction_rule: "ENSG00000172508" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.2.11" + - references: "PMID:448355;PMID:487087" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_4607 + - id: "HMR_4607" - name: "" - metabolites: !!omap - m00970c: 1 @@ -91226,15 +91226,15 @@ - m02132c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000133313 or ENSG00000150656 - - rxnFrom: HMRdatabase - - eccodes: 3.4.13.18;3.4.13.20 - - references: PMID:2334521;PMID:4026801 + - gene_reaction_rule: "ENSG00000133313 or ENSG00000150656" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.13.18;3.4.13.20" + - references: "PMID:2334521;PMID:4026801" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_4776 + - id: "HMR_4776" - name: "" - metabolites: !!omap - m01306c: -1 @@ -91245,15 +91245,15 @@ - m03037c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072682 or ENSG00000122884 or ENSG00000149380 - - rxnFrom: HMRdatabase - - eccodes: 1.14.11.2 - - references: + - gene_reaction_rule: "ENSG00000072682 or ENSG00000122884 or ENSG00000149380" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.11.2" + - references: "" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_4777 + - id: "HMR_4777" - name: "" - metabolites: !!omap - m01306m: -1 @@ -91264,15 +91264,15 @@ - m03037m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072682 or ENSG00000122884 or ENSG00000149380 - - rxnFrom: HMRdatabase - - eccodes: 1.14.11.2 - - references: + - gene_reaction_rule: "ENSG00000072682 or ENSG00000122884 or ENSG00000149380" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.11.2" + - references: "" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_4778 + - id: "HMR_4778" - name: "" - metabolites: !!omap - m02039c: 2 @@ -91282,15 +91282,15 @@ - m03037c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104524 or ENSG00000143811 or ENSG00000183010 or ENSG00000243709 - - rxnFrom: HMRdatabase - - eccodes: 1.5.1.2 - - references: PMID:12514185;PMID:3768405;PMID:6250440;PMID:675382 + - gene_reaction_rule: "ENSG00000104524 or ENSG00000143811 or ENSG00000183010 or ENSG00000243709" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.1.2" + - references: "PMID:12514185;PMID:3768405;PMID:6250440;PMID:675382" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_4779 + - id: "HMR_4779" - name: "" - metabolites: !!omap - m02039m: 2 @@ -91300,15 +91300,15 @@ - m03037m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104524 or ENSG00000143811 or ENSG00000183010 or ENSG00000243709 - - rxnFrom: HMRdatabase - - eccodes: 1.5.1.2 - - references: PMID:12514185;PMID:3768405;PMID:6250440;PMID:675382 + - gene_reaction_rule: "ENSG00000104524 or ENSG00000143811 or ENSG00000183010 or ENSG00000243709" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.1.2" + - references: "PMID:12514185;PMID:3768405;PMID:6250440;PMID:675382" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_4780 + - id: "HMR_4780" - name: "" - metabolites: !!omap - m02039c: 2 @@ -91318,15 +91318,15 @@ - m03037c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104524 or ENSG00000143811 or ENSG00000183010 or ENSG00000243709 - - rxnFrom: HMRdatabase - - eccodes: 1.5.1.2 - - references: PMID:12514185;PMID:3768405;PMID:6250440;PMID:675382 + - gene_reaction_rule: "ENSG00000104524 or ENSG00000143811 or ENSG00000183010 or ENSG00000243709" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.1.2" + - references: "PMID:12514185;PMID:3768405;PMID:6250440;PMID:675382" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_4781 + - id: "HMR_4781" - name: "" - metabolites: !!omap - m02039m: 2 @@ -91336,15 +91336,15 @@ - m03037m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104524 or ENSG00000143811 or ENSG00000183010 or ENSG00000243709 - - rxnFrom: HMRdatabase - - eccodes: 1.5.1.2 - - references: PMID:12514185;PMID:3768405;PMID:6250440;PMID:675382 + - gene_reaction_rule: "ENSG00000104524 or ENSG00000143811 or ENSG00000183010 or ENSG00000243709" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.1.2" + - references: "PMID:12514185;PMID:3768405;PMID:6250440;PMID:675382" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_4784 + - id: "HMR_4784" - name: "" - metabolites: !!omap - m02039m: 1 @@ -91355,15 +91355,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000159423 - - rxnFrom: HMRdatabase - - eccodes: 1.5.1.12 - - references: PMID:1286669;PMID:15535970;PMID:2211729 + - gene_reaction_rule: "ENSG00000159423" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.1.12" + - references: "PMID:1286669;PMID:15535970;PMID:2211729" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_4785 + - id: "HMR_4785" - name: "" - metabolites: !!omap - m02039m: 1 @@ -91374,15 +91374,15 @@ - m02555m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000159423 - - rxnFrom: HMRdatabase - - eccodes: 1.5.1.12 - - references: PMID:1286669;PMID:2211729 + - gene_reaction_rule: "ENSG00000159423" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.1.12" + - references: "PMID:1286669;PMID:2211729" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_4786 + - id: "HMR_4786" - name: "" - metabolites: !!omap - m00989m: 1 @@ -91391,15 +91391,15 @@ - m02358m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120053 or ENSG00000125166 - - rxnFrom: HMRdatabase - - eccodes: 2.6.1.1;2.6.1.23 - - references: + - gene_reaction_rule: "ENSG00000120053 or ENSG00000125166" + - rxnFrom: "HMRdatabase" + - eccodes: "2.6.1.1;2.6.1.23" + - references: "" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_4787 + - id: "HMR_4787" - name: "" - metabolites: !!omap - m00989m: -1 @@ -91407,15 +91407,15 @@ - m02819m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000241935 - - rxnFrom: HMRdatabase - - eccodes: 4.1.3.16 - - references: + - gene_reaction_rule: "ENSG00000241935" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.3.16" + - references: "" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_5384 + - id: "HMR_5384" - name: "" - metabolites: !!omap - m01116c: -1 @@ -91424,15 +91424,15 @@ - m02751c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099810 - - rxnFrom: HMRdatabase - - eccodes: 2.4.2.28 - - references: PMID:1903946;PMID:415762;PMID:5378381;PMID:7732755 + - gene_reaction_rule: "ENSG00000099810" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.2.28" + - references: "PMID:1903946;PMID:415762;PMID:5378381;PMID:7732755" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_6929 + - id: "HMR_6929" - name: "" - metabolites: !!omap - m01261c: 1 @@ -91442,15 +91442,15 @@ - m02926c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130066 or ENSG00000141504 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.57 - - references: PMID:10978316 + - gene_reaction_rule: "ENSG00000130066 or ENSG00000141504" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.57" + - references: "PMID:10978316" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_6930 + - id: "HMR_6930" - name: "" - metabolites: !!omap - m01261p: 1 @@ -91460,15 +91460,15 @@ - m02926p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130066 or ENSG00000141504 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.57 - - references: PMID:10978316 + - gene_reaction_rule: "ENSG00000130066 or ENSG00000141504" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.57" + - references: "PMID:10978316" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_6931 + - id: "HMR_6931" - name: "" - metabolites: !!omap - m02039c: 1 @@ -91480,15 +91480,15 @@ - m02926c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000002726 or ENSG00000131471 or ENSG00000131480 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.6;1.4.3.21;1.4.3.22 - - references: PMID:7040832;PMID:10047787 + - gene_reaction_rule: "ENSG00000002726 or ENSG00000131471 or ENSG00000131480" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.6;1.4.3.21;1.4.3.22" + - references: "PMID:7040832;PMID:10047787" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_6932 + - id: "HMR_6932" - name: "" - metabolites: !!omap - m02039s: 1 @@ -91500,15 +91500,15 @@ - m02926s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000002726 or ENSG00000131471 or ENSG00000131480 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.6;1.4.3.21;1.4.3.22 - - references: PMID:7040832;PMID:10047787 + - gene_reaction_rule: "ENSG00000002726 or ENSG00000131471 or ENSG00000131480" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.6;1.4.3.21;1.4.3.22" + - references: "PMID:7040832;PMID:10047787" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_6933 + - id: "HMR_6933" - name: "" - metabolites: !!omap - m02039p: 1 @@ -91520,15 +91520,15 @@ - m02926p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000002726 or ENSG00000131471 or ENSG00000131480 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.6;1.4.3.21;1.4.3.22 - - references: PMID:7040832;PMID:10047787 + - gene_reaction_rule: "ENSG00000002726 or ENSG00000131471 or ENSG00000131480" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.6;1.4.3.21;1.4.3.22" + - references: "PMID:7040832;PMID:10047787" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_6934 + - id: "HMR_6934" - name: "" - metabolites: !!omap - m02039c: 1 @@ -91540,15 +91540,15 @@ - m02925c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000002726 or ENSG00000131471 or ENSG00000131480 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.6;1.4.3.21;1.4.3.22 - - references: PMID:10047787;PMID:7040832 + - gene_reaction_rule: "ENSG00000002726 or ENSG00000131471 or ENSG00000131480" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.6;1.4.3.21;1.4.3.22" + - references: "PMID:10047787;PMID:7040832" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_6935 + - id: "HMR_6935" - name: "" - metabolites: !!omap - m02039s: 1 @@ -91560,15 +91560,15 @@ - m02925s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000002726 or ENSG00000131471 or ENSG00000131480 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.6;1.4.3.21;1.4.3.22 - - references: PMID:10047787;PMID:7040832 + - gene_reaction_rule: "ENSG00000002726 or ENSG00000131471 or ENSG00000131480" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.6;1.4.3.21;1.4.3.22" + - references: "PMID:10047787;PMID:7040832" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_6936 + - id: "HMR_6936" - name: "" - metabolites: !!omap - m02039p: 1 @@ -91580,15 +91580,15 @@ - m02925p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000002726 or ENSG00000131471 or ENSG00000131480 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.6;1.4.3.21;1.4.3.22 - - references: PMID:10047787;PMID:7040832 + - gene_reaction_rule: "ENSG00000002726 or ENSG00000131471 or ENSG00000131480" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.6;1.4.3.21;1.4.3.22" + - references: "PMID:10047787;PMID:7040832" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_6938 + - id: "HMR_6938" - name: "" - metabolites: !!omap - m01261c: 1 @@ -91598,15 +91598,15 @@ - m02923c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130066 or ENSG00000141504 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.57 - - references: PMID:10978316 + - gene_reaction_rule: "ENSG00000130066 or ENSG00000141504" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.57" + - references: "PMID:10978316" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_6939 + - id: "HMR_6939" - name: "" - metabolites: !!omap - m01261p: 1 @@ -91616,15 +91616,15 @@ - m02923p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130066 or ENSG00000141504 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.57 - - references: PMID:10978316 + - gene_reaction_rule: "ENSG00000130066 or ENSG00000141504" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.57" + - references: "PMID:10978316" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_6940 + - id: "HMR_6940" - name: "" - metabolites: !!omap - m01261c: 1 @@ -91634,15 +91634,15 @@ - m02923c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_6941 + - id: "HMR_6941" - name: "" - metabolites: !!omap - m02039c: 1 @@ -91654,15 +91654,15 @@ - m02923c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000002726 or ENSG00000131471 or ENSG00000131480 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.6;1.4.3.21;1.4.3.22 - - references: PMID:10047787;PMID:7040832 + - gene_reaction_rule: "ENSG00000002726 or ENSG00000131471 or ENSG00000131480" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.6;1.4.3.21;1.4.3.22" + - references: "PMID:10047787;PMID:7040832" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_6942 + - id: "HMR_6942" - name: "" - metabolites: !!omap - m02039s: 1 @@ -91674,15 +91674,15 @@ - m02923s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000002726 or ENSG00000131471 or ENSG00000131480 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.6;1.4.3.21;1.4.3.22 - - references: PMID:10047787;PMID:7040832 + - gene_reaction_rule: "ENSG00000002726 or ENSG00000131471 or ENSG00000131480" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.6;1.4.3.21;1.4.3.22" + - references: "PMID:10047787;PMID:7040832" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_6943 + - id: "HMR_6943" - name: "" - metabolites: !!omap - m02039p: 1 @@ -91694,15 +91694,15 @@ - m02923p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000002726 or ENSG00000131471 or ENSG00000131480 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.6;1.4.3.21;1.4.3.22 - - references: PMID:10047787;PMID:7040832 + - gene_reaction_rule: "ENSG00000002726 or ENSG00000131471 or ENSG00000131480" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.6;1.4.3.21;1.4.3.22" + - references: "PMID:10047787;PMID:7040832" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_6944 + - id: "HMR_6944" - name: "" - metabolites: !!omap - m02039c: 1 @@ -91714,15 +91714,15 @@ - m02923c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000002726 or ENSG00000131471 or ENSG00000131480 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.6;1.4.3.21;1.4.3.22 - - references: PMID:7040832;PMID:10047787 + - gene_reaction_rule: "ENSG00000002726 or ENSG00000131471 or ENSG00000131480" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.6;1.4.3.21;1.4.3.22" + - references: "PMID:7040832;PMID:10047787" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_6945 + - id: "HMR_6945" - name: "" - metabolites: !!omap - m02039s: 1 @@ -91734,15 +91734,15 @@ - m02923s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000002726 or ENSG00000131471 or ENSG00000131480 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.6;1.4.3.21;1.4.3.22 - - references: PMID:7040832;PMID:10047787 + - gene_reaction_rule: "ENSG00000002726 or ENSG00000131471 or ENSG00000131480" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.6;1.4.3.21;1.4.3.22" + - references: "PMID:7040832;PMID:10047787" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_6946 + - id: "HMR_6946" - name: "" - metabolites: !!omap - m02039p: 1 @@ -91754,15 +91754,15 @@ - m02923p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000002726 or ENSG00000131471 or ENSG00000131480 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.6;1.4.3.21;1.4.3.22 - - references: PMID:7040832;PMID:10047787 + - gene_reaction_rule: "ENSG00000002726 or ENSG00000131471 or ENSG00000131480" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.6;1.4.3.21;1.4.3.22" + - references: "PMID:7040832;PMID:10047787" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_6947 + - id: "HMR_6947" - name: "" - metabolites: !!omap - m02039c: 1 @@ -91774,15 +91774,15 @@ - m02921c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000002726 or ENSG00000131471 or ENSG00000131480 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.6;1.4.3.21;1.4.3.22 - - references: PMID:7040832;PMID:10047787 + - gene_reaction_rule: "ENSG00000002726 or ENSG00000131471 or ENSG00000131480" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.6;1.4.3.21;1.4.3.22" + - references: "PMID:7040832;PMID:10047787" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_6948 + - id: "HMR_6948" - name: "" - metabolites: !!omap - m02039s: 1 @@ -91794,15 +91794,15 @@ - m02921s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000002726 or ENSG00000131471 or ENSG00000131480 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.6;1.4.3.21;1.4.3.22 - - references: PMID:7040832;PMID:10047787 + - gene_reaction_rule: "ENSG00000002726 or ENSG00000131471 or ENSG00000131480" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.6;1.4.3.21;1.4.3.22" + - references: "PMID:7040832;PMID:10047787" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_6949 + - id: "HMR_6949" - name: "" - metabolites: !!omap - m02039p: 1 @@ -91814,15 +91814,15 @@ - m02921p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000002726 or ENSG00000131471 or ENSG00000131480 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.6;1.4.3.21;1.4.3.22 - - references: PMID:7040832;PMID:10047787 + - gene_reaction_rule: "ENSG00000002726 or ENSG00000131471 or ENSG00000131480" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.6;1.4.3.21;1.4.3.22" + - references: "PMID:7040832;PMID:10047787" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_6950 + - id: "HMR_6950" - name: "" - metabolites: !!omap - m02039c: 1 @@ -91834,15 +91834,15 @@ - m02922c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000002726 or ENSG00000131471 or ENSG00000131480 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.6;1.4.3.21;1.4.3.22 - - references: PMID:10047787;PMID:7040832 + - gene_reaction_rule: "ENSG00000002726 or ENSG00000131471 or ENSG00000131480" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.6;1.4.3.21;1.4.3.22" + - references: "PMID:10047787;PMID:7040832" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_6951 + - id: "HMR_6951" - name: "" - metabolites: !!omap - m02039s: 1 @@ -91854,15 +91854,15 @@ - m02922s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000002726 or ENSG00000131471 or ENSG00000131480 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.6;1.4.3.21;1.4.3.22 - - references: PMID:10047787;PMID:7040832 + - gene_reaction_rule: "ENSG00000002726 or ENSG00000131471 or ENSG00000131480" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.6;1.4.3.21;1.4.3.22" + - references: "PMID:10047787;PMID:7040832" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_6952 + - id: "HMR_6952" - name: "" - metabolites: !!omap - m02039p: 1 @@ -91874,15 +91874,15 @@ - m02922p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000002726 or ENSG00000131471 or ENSG00000131480 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.6;1.4.3.21;1.4.3.22 - - references: PMID:10047787;PMID:7040832 + - gene_reaction_rule: "ENSG00000002726 or ENSG00000131471 or ENSG00000131480" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.6;1.4.3.21;1.4.3.22" + - references: "PMID:10047787;PMID:7040832" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_6953 + - id: "HMR_6953" - name: "" - metabolites: !!omap - m02039c: 2 @@ -91893,15 +91893,15 @@ - m02921c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064763 or ENSG00000118514 or ENSG00000197601 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.- - - references: PMID:7040832;PMID:10047787 + - gene_reaction_rule: "ENSG00000064763 or ENSG00000118514 or ENSG00000197601" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.-" + - references: "PMID:7040832;PMID:10047787" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_6954 + - id: "HMR_6954" - name: "" - metabolites: !!omap - m02039c: 2 @@ -91912,15 +91912,15 @@ - m02922c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064763 or ENSG00000118514 or ENSG00000197601 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.- - - references: PMID:7040832;PMID:10047787 + - gene_reaction_rule: "ENSG00000064763 or ENSG00000118514 or ENSG00000197601" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.-" + - references: "PMID:7040832;PMID:10047787" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_6955 + - id: "HMR_6955" - name: "" - metabolites: !!omap - m00557m: -1 @@ -91928,15 +91928,15 @@ - m02040m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 2.6.1.82 - - references: PMID:7040832;PMID:10047787 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "2.6.1.82" + - references: "PMID:7040832;PMID:10047787" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_6956 + - id: "HMR_6956" - name: "" - metabolites: !!omap - m01261c: 1 @@ -91946,15 +91946,15 @@ - m02504c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_6957 + - id: "HMR_6957" - name: "" - metabolites: !!omap - m01261p: 1 @@ -91964,15 +91964,15 @@ - m02504p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_6958 + - id: "HMR_6958" - name: "" - metabolites: !!omap - m01250c: 1 @@ -91983,15 +91983,15 @@ - m02923c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088826 or ENSG00000148832 - - rxnFrom: HMRdatabase - - eccodes: 1.5.3.13;1.5.3.16 - - references: PMID:11454677;PMID:9359869;PMID:9359869;PMID:11454677;PMID:11454677;PMID:9359869;PMID:11454677;PMID:9359869;PMID:11454677;PMID:9359869;PMID:11454677;PMID:9359869;PMID:9359869;PMID:11454677;PMID:11454677;PMID:9359869;PMID:9359869;PMID:11454677;PMID:11454677;PMID:9359869 + - gene_reaction_rule: "ENSG00000088826 or ENSG00000148832" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.3.13;1.5.3.16" + - references: "PMID:11454677;PMID:9359869;PMID:9359869;PMID:11454677;PMID:11454677;PMID:9359869;PMID:11454677;PMID:9359869;PMID:11454677;PMID:9359869;PMID:11454677;PMID:9359869;PMID:9359869;PMID:11454677;PMID:11454677;PMID:9359869;PMID:9359869;PMID:11454677;PMID:11454677;PMID:9359869" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_6959 + - id: "HMR_6959" - name: "" - metabolites: !!omap - m01250p: 1 @@ -92002,15 +92002,15 @@ - m02923p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088826 or ENSG00000148832 - - rxnFrom: HMRdatabase - - eccodes: 1.5.3.13;1.5.3.16 - - references: PMID:11454677;PMID:9359869;PMID:9359869;PMID:11454677;PMID:11454677;PMID:9359869;PMID:11454677;PMID:9359869;PMID:11454677;PMID:9359869;PMID:11454677;PMID:9359869;PMID:9359869;PMID:11454677;PMID:11454677;PMID:9359869;PMID:9359869;PMID:11454677;PMID:11454677;PMID:9359869 + - gene_reaction_rule: "ENSG00000088826 or ENSG00000148832" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.3.13;1.5.3.16" + - references: "PMID:11454677;PMID:9359869;PMID:9359869;PMID:11454677;PMID:11454677;PMID:9359869;PMID:11454677;PMID:9359869;PMID:11454677;PMID:9359869;PMID:11454677;PMID:9359869;PMID:9359869;PMID:11454677;PMID:11454677;PMID:9359869;PMID:9359869;PMID:11454677;PMID:11454677;PMID:9359869" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_6960 + - id: "HMR_6960" - name: "" - metabolites: !!omap - m01261c: 1 @@ -92020,15 +92020,15 @@ - m02503c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_6961 + - id: "HMR_6961" - name: "" - metabolites: !!omap - m01250c: 1 @@ -92039,15 +92039,15 @@ - m02812c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088826 or ENSG00000148832 - - rxnFrom: HMRdatabase - - eccodes: 1.5.3.13;1.5.3.16 - - references: PMID:11454677;PMID:9359869;PMID:11454677;PMID:9359869;PMID:9359869;PMID:11454677;PMID:11454677;PMID:9359869;PMID:9359869;PMID:11454677;PMID:11454677;PMID:9359869;PMID:11454677;PMID:9359869;PMID:11454677;PMID:9359869;PMID:9359869;PMID:11454677;PMID:11454677;PMID:9359869 + - gene_reaction_rule: "ENSG00000088826 or ENSG00000148832" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.3.13;1.5.3.16" + - references: "PMID:11454677;PMID:9359869;PMID:11454677;PMID:9359869;PMID:9359869;PMID:11454677;PMID:11454677;PMID:9359869;PMID:9359869;PMID:11454677;PMID:11454677;PMID:9359869;PMID:11454677;PMID:9359869;PMID:11454677;PMID:9359869;PMID:9359869;PMID:11454677;PMID:11454677;PMID:9359869" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_6962 + - id: "HMR_6962" - name: "" - metabolites: !!omap - m01250p: 1 @@ -92058,15 +92058,15 @@ - m02812p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088826 or ENSG00000148832 - - rxnFrom: HMRdatabase - - eccodes: 1.5.3.13;1.5.3.16 - - references: PMID:11454677;PMID:9359869;PMID:11454677;PMID:9359869;PMID:9359869;PMID:11454677;PMID:11454677;PMID:9359869;PMID:9359869;PMID:11454677;PMID:11454677;PMID:9359869;PMID:11454677;PMID:9359869;PMID:11454677;PMID:9359869;PMID:9359869;PMID:11454677;PMID:11454677;PMID:9359869 + - gene_reaction_rule: "ENSG00000088826 or ENSG00000148832" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.3.13;1.5.3.16" + - references: "PMID:11454677;PMID:9359869;PMID:11454677;PMID:9359869;PMID:9359869;PMID:11454677;PMID:11454677;PMID:9359869;PMID:9359869;PMID:11454677;PMID:11454677;PMID:9359869;PMID:11454677;PMID:9359869;PMID:11454677;PMID:9359869;PMID:9359869;PMID:11454677;PMID:11454677;PMID:9359869" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_6963 + - id: "HMR_6963" - name: "" - metabolites: !!omap - m01250c: 1 @@ -92077,15 +92077,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088826 or ENSG00000148832 - - rxnFrom: HMRdatabase - - eccodes: 1.5.3.13;1.5.3.16 - - references: PMID:11454677;PMID:9359869;PMID:9359869;PMID:9359869;PMID:11454677;PMID:9359869;PMID:11454677;PMID:11454677;PMID:9359869;PMID:9359869;PMID:11454677;PMID:9359869;PMID:11454677;PMID:11454677;PMID:9359869;PMID:11454677;PMID:9359869;PMID:11454677;PMID:9359869;PMID:11454677 + - gene_reaction_rule: "ENSG00000088826 or ENSG00000148832" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.3.13;1.5.3.16" + - references: "PMID:11454677;PMID:9359869;PMID:9359869;PMID:9359869;PMID:11454677;PMID:9359869;PMID:11454677;PMID:11454677;PMID:9359869;PMID:9359869;PMID:11454677;PMID:9359869;PMID:11454677;PMID:11454677;PMID:9359869;PMID:11454677;PMID:9359869;PMID:11454677;PMID:9359869;PMID:11454677" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_6964 + - id: "HMR_6964" - name: "" - metabolites: !!omap - m01250p: 1 @@ -92096,15 +92096,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088826 or ENSG00000148832 - - rxnFrom: HMRdatabase - - eccodes: 1.5.3.13;1.5.3.16 - - references: PMID:11454677;PMID:9359869;PMID:9359869;PMID:9359869;PMID:11454677;PMID:9359869;PMID:11454677;PMID:11454677;PMID:9359869;PMID:9359869;PMID:11454677;PMID:9359869;PMID:11454677;PMID:11454677;PMID:9359869;PMID:11454677;PMID:9359869;PMID:11454677;PMID:9359869;PMID:11454677 + - gene_reaction_rule: "ENSG00000088826 or ENSG00000148832" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.3.13;1.5.3.16" + - references: "PMID:11454677;PMID:9359869;PMID:9359869;PMID:9359869;PMID:11454677;PMID:9359869;PMID:11454677;PMID:11454677;PMID:9359869;PMID:9359869;PMID:11454677;PMID:9359869;PMID:11454677;PMID:11454677;PMID:9359869;PMID:11454677;PMID:9359869;PMID:11454677;PMID:9359869;PMID:11454677" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_6965 + - id: "HMR_6965" - name: "" - metabolites: !!omap - m01661c: -1 @@ -92114,15 +92114,15 @@ - m02923c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095059 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.46 - - references: PMID:9188485;PMID:9188485;PMID:9188485;PMID:9188485 + - gene_reaction_rule: "ENSG00000095059" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.46" + - references: "PMID:9188485;PMID:9188485;PMID:9188485;PMID:9188485" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_6966 + - id: "HMR_6966" - name: "" - metabolites: !!omap - m00248c: -1 @@ -92130,15 +92130,15 @@ - m01661c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095059 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.46 - - references: PMID:9188485;PMID:9188485;PMID:9188485;PMID:9188485 + - gene_reaction_rule: "ENSG00000095059" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.46" + - references: "PMID:9188485;PMID:9188485;PMID:9188485;PMID:9188485" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_6967 + - id: "HMR_6967" - name: "" - metabolites: !!omap - m00248c: -1 @@ -92147,15 +92147,15 @@ - m02923c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095059 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.46 - - references: PMID:9188485;PMID:9188485;PMID:9188485;PMID:9188485 + - gene_reaction_rule: "ENSG00000095059" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.46" + - references: "PMID:9188485;PMID:9188485;PMID:9188485;PMID:9188485" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_6973 + - id: "HMR_6973" - name: "" - metabolites: !!omap - m02039c: -2 @@ -92166,15 +92166,15 @@ - m02925c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064763 or ENSG00000118514 or ENSG00000197601 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.- - - references: PMID:10047787;PMID:7040832 + - gene_reaction_rule: "ENSG00000064763 or ENSG00000118514 or ENSG00000197601" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.-" + - references: "PMID:10047787;PMID:7040832" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_8096 + - id: "HMR_8096" - name: "" - metabolites: !!omap - m02039m: -1 @@ -92183,15 +92183,15 @@ - m02327m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000159423 - - rxnFrom: HMRdatabase - - eccodes: 1.5.1.12 - - references: + - gene_reaction_rule: "ENSG00000159423" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.1.12" + - references: "" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_8097 + - id: "HMR_8097" - name: "" - metabolites: !!omap - m02039m: -2 @@ -92202,15 +92202,15 @@ - m02553m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000159423 - - rxnFrom: HMRdatabase - - eccodes: 1.5.1.12 - - references: + - gene_reaction_rule: "ENSG00000159423" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.1.12" + - references: "" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_8098 + - id: "HMR_8098" - name: "" - metabolites: !!omap - m00989m: 1 @@ -92219,15 +92219,15 @@ - m02633m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125166 - - rxnFrom: HMRdatabase - - eccodes: 2.6.1.21 - - references: + - gene_reaction_rule: "ENSG00000125166" + - rxnFrom: "HMRdatabase" + - eccodes: "2.6.1.21" + - references: "" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_8416 + - id: "HMR_8416" - name: "" - metabolites: !!omap - m01261m: -1 @@ -92237,15 +92237,15 @@ - m02536m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000161653 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000161653" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_8425 + - id: "HMR_8425" - name: "" - metabolites: !!omap - m01252c: 1 @@ -92254,15 +92254,15 @@ - m02658c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000114786 or ENSG00000243989 - - rxnFrom: HMRdatabase - - eccodes: 3.5.1.14 - - references: + - gene_reaction_rule: "ENSG00000114786 or ENSG00000243989" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.1.14" + - references: "" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_8426 + - id: "HMR_8426" - name: "" - metabolites: !!omap - m01365m: -1 @@ -92271,15 +92271,15 @@ - m03121m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000081181 or ENSG00000118520 - - rxnFrom: HMRdatabase - - eccodes: 3.5.3.1 - - references: + - gene_reaction_rule: "ENSG00000081181 or ENSG00000118520" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.3.1" + - references: "" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_8427 + - id: "HMR_8427" - name: "" - metabolites: !!omap - m01285m: -1 @@ -92289,15 +92289,15 @@ - m02039m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104879 or ENSG00000131730 or ENSG00000166165 or ENSG00000223572 or ENSG00000237289 - - rxnFrom: HMRdatabase - - eccodes: 2.7.3.2 - - references: + - gene_reaction_rule: "ENSG00000104879 or ENSG00000131730 or ENSG00000166165 or ENSG00000223572 or ENSG00000237289" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.3.2" + - references: "" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_8431 + - id: "HMR_8431" - name: "" - metabolites: !!omap - m01620c: -1 @@ -92305,15 +92305,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_8432 + - id: "HMR_8432" - name: "" - metabolites: !!omap - m01045m: 1 @@ -92324,15 +92324,15 @@ - m02980m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123453 - - rxnFrom: HMRdatabase - - eccodes: 1.5.8.3 - - references: + - gene_reaction_rule: "ENSG00000123453" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.8.3" + - references: "" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_8603 + - id: "HMR_8603" - name: "" - metabolites: !!omap - m01261c: -1 @@ -92342,15 +92342,15 @@ - m02812c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130066 or ENSG00000141504 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.57 - - references: + - gene_reaction_rule: "ENSG00000130066 or ENSG00000141504" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.57" + - references: "" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_8604 + - id: "HMR_8604" - name: "" - metabolites: !!omap - m02039c: 1 @@ -92362,15 +92362,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000002726 or ENSG00000069535 or ENSG00000131471 or ENSG00000131480 or ENSG00000189221 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.4 - - references: + - gene_reaction_rule: "ENSG00000002726 or ENSG00000069535 or ENSG00000131471 or ENSG00000131480 or ENSG00000189221" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.4" + - references: "" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_8605 + - id: "HMR_8605" - name: "" - metabolites: !!omap - m00952c: 1 @@ -92381,15 +92381,15 @@ - m02553c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000143149 or ENSG00000164904 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000143149 or ENSG00000164904" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.3" + - references: "" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_8606 + - id: "HMR_8606" - name: "" - metabolites: !!omap - m00969c: 1 @@ -92401,15 +92401,15 @@ - m02812c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000002726 or ENSG00000131480 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.22 - - references: + - gene_reaction_rule: "ENSG00000002726 or ENSG00000131480" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.22" + - references: "" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_8607 + - id: "HMR_8607" - name: "" - metabolites: !!omap - m01016c: -1 @@ -92419,15 +92419,15 @@ - m02471c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_8608 + - id: "HMR_8608" - name: "" - metabolites: !!omap - m00558c: 1 @@ -92437,15 +92437,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110887 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.3 - - references: + - gene_reaction_rule: "ENSG00000110887" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.3" + - references: "" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_8609 + - id: "HMR_8609" - name: "" - metabolites: !!omap - m00559m: -1 @@ -92455,15 +92455,15 @@ - m02770m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104524 or ENSG00000143811 or ENSG00000183010 or ENSG00000243709 - - rxnFrom: HMRdatabase - - eccodes: 1.5.1.2 - - references: + - gene_reaction_rule: "ENSG00000104524 or ENSG00000143811 or ENSG00000183010 or ENSG00000243709" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.1.2" + - references: "" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_8610 + - id: "HMR_8610" - name: "" - metabolites: !!omap - m00559c: 1 @@ -92473,15 +92473,15 @@ - m02770c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000250799 - - rxnFrom: HMRdatabase - - eccodes: 1.5.99.8 - - references: + - gene_reaction_rule: "ENSG00000250799" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.99.8" + - references: "" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_8611 + - id: "HMR_8611" - name: "" - metabolites: !!omap - m00559m: 1 @@ -92491,15 +92491,15 @@ - m02770m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100033 or ENSG00000250799 - - rxnFrom: HMRdatabase - - eccodes: 1.5.99.8 - - references: + - gene_reaction_rule: "ENSG00000100033 or ENSG00000250799" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.99.8" + - references: "" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: HMR_4285 + - id: "HMR_4285" - name: "" - metabolites: !!omap - m02039m: 2 @@ -92510,15 +92510,15 @@ - m02943m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112294 or ENSG00000137261 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.24;1.2.1.16 - - references: PMID:3190233;PMID:656447;PMID:7616245;PMID:7814412 + - gene_reaction_rule: "ENSG00000112294 or ENSG00000137261" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.24;1.2.1.16" + - references: "PMID:3190233;PMID:656447;PMID:7616245;PMID:7814412" - subsystem: - - Alanine, aspartate and glutamate metabolism + - "Alanine, aspartate and glutamate metabolism" - confidence_score: 0 - !!omap - - id: HMR_0457 + - id: "HMR_0457" - name: "" - metabolites: !!omap - m00913c: 1 @@ -92528,15 +92528,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000168237 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.31 - - references: PMID:16753811;PMID:216417;PMID:2537226;PMID:6252205 + - gene_reaction_rule: "ENSG00000168237" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.31" + - references: "PMID:16753811;PMID:216417;PMID:2537226;PMID:6252205" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_0460 + - id: "HMR_0460" - name: "" - metabolites: !!omap - m00913m: 1 @@ -92546,15 +92546,15 @@ - m02039m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000168237 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.31 - - references: PMID:16753811;PMID:216417;PMID:2537226;PMID:6252205 + - gene_reaction_rule: "ENSG00000168237" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.31" + - references: "PMID:16753811;PMID:216417;PMID:2537226;PMID:6252205" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3750 + - id: "HMR_3750" - name: "" - metabolites: !!omap - m01597m: -1 @@ -92564,15 +92564,15 @@ - m02181m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149124 or ENSG00000156689 or ENSG00000166840 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.13 - - references: PMID:3707752 + - gene_reaction_rule: "ENSG00000149124 or ENSG00000156689 or ENSG00000166840" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.13" + - references: "PMID:3707752" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3752 + - id: "HMR_3752" - name: "" - metabolites: !!omap - m01802m: 1 @@ -92581,15 +92581,15 @@ - m02468m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000196177 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.5 - - references: + - gene_reaction_rule: "ENSG00000196177" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.5" + - references: "" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3770 + - id: "HMR_3770" - name: "" - metabolites: !!omap - m00826m: -1 @@ -92598,15 +92598,15 @@ - m02189m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000196177 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.5 - - references: + - gene_reaction_rule: "ENSG00000196177" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.5" + - references: "" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3771 + - id: "HMR_3771" - name: "" - metabolites: !!omap - m01597m: -1 @@ -92616,15 +92616,15 @@ - m02190m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149124 or ENSG00000156689 or ENSG00000166840 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.13 - - references: PMID:3707752 + - gene_reaction_rule: "ENSG00000149124 or ENSG00000156689 or ENSG00000166840" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.13" + - references: "PMID:3707752" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3772 + - id: "HMR_3772" - name: "" - metabolites: !!omap - m00825m: -1 @@ -92634,15 +92634,15 @@ - m02039m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149124 or ENSG00000156689 or ENSG00000166840 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.13 - - references: PMID:657530;PMID:11406611 + - gene_reaction_rule: "ENSG00000149124 or ENSG00000156689 or ENSG00000166840" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.13" + - references: "PMID:657530;PMID:11406611" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3782 + - id: "HMR_3782" - name: "" - metabolites: !!omap - m00663m: -1 @@ -92652,15 +92652,15 @@ - m02039m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149124 or ENSG00000156689 or ENSG00000166840 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.13 - - references: PMID:3707752 + - gene_reaction_rule: "ENSG00000149124 or ENSG00000156689 or ENSG00000166840" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.13" + - references: "PMID:3707752" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3784 + - id: "HMR_3784" - name: "" - metabolites: !!omap - m00663m: -1 @@ -92669,15 +92669,15 @@ - m02999m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000196177 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.5 - - references: + - gene_reaction_rule: "ENSG00000196177" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.5" + - references: "" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3794 + - id: "HMR_3794" - name: "" - metabolites: !!omap - m01261m: 1 @@ -92687,15 +92687,15 @@ - m02530m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000161653 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.1 - - references: PMID:12594532;PMID:12459178 + - gene_reaction_rule: "ENSG00000161653" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.1" + - references: "PMID:12594532;PMID:12459178" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3839 + - id: "HMR_3839" - name: "" - metabolites: !!omap - m00913c: -1 @@ -92705,15 +92705,15 @@ - m02553c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000092621 or ENSG00000134882 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.95 - - references: PMID:14645240 + - gene_reaction_rule: "ENSG00000092621 or ENSG00000134882" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.95" + - references: "PMID:14645240" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3841 + - id: "HMR_3841" - name: "" - metabolites: !!omap - m00914c: -1 @@ -92722,15 +92722,15 @@ - m01974c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135069 - - rxnFrom: HMRdatabase - - eccodes: 2.6.1.52 - - references: PMID:12633500;PMID:6089514 + - gene_reaction_rule: "ENSG00000135069" + - rxnFrom: "HMRdatabase" + - eccodes: "2.6.1.52" + - references: "PMID:12633500;PMID:6089514" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3843 + - id: "HMR_3843" - name: "" - metabolites: !!omap - m00916c: -1 @@ -92739,15 +92739,15 @@ - m02896c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111237 or ENSG00000146733 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.3 - - references: PMID:4307821 + - gene_reaction_rule: "ENSG00000111237 or ENSG00000146733" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.3" + - references: "PMID:4307821" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3845 + - id: "HMR_3845" - name: "" - metabolites: !!omap - m01045c: 1 @@ -92757,15 +92757,15 @@ - m02980c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000176974 - - rxnFrom: HMRdatabase - - eccodes: 2.1.2.1 - - references: PMID:10762066;PMID:6821365;PMID:8505317 + - gene_reaction_rule: "ENSG00000176974" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.2.1" + - references: "PMID:10762066;PMID:6821365;PMID:8505317" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3847 + - id: "HMR_3847" - name: "" - metabolites: !!omap - m01261m: 1 @@ -92774,15 +92774,15 @@ - m02321m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100116 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.29 - - references: + - gene_reaction_rule: "ENSG00000100116" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.29" + - references: "" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3849 + - id: "HMR_3849" - name: "" - metabolites: !!omap - m01831p: 1 @@ -92793,15 +92793,15 @@ - m02880p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123453 or ENSG00000179761 - - rxnFrom: HMRdatabase - - eccodes: 1.5.3.1;1.5.99.1 - - references: + - gene_reaction_rule: "ENSG00000123453 or ENSG00000179761" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.3.1;1.5.99.1" + - references: "" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3852 + - id: "HMR_3852" - name: "" - metabolites: !!omap - m01332c: -1 @@ -92813,15 +92813,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000131471 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.21 - - references: + - gene_reaction_rule: "ENSG00000131471" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.21" + - references: "" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3856 + - id: "HMR_3856" - name: "" - metabolites: !!omap - m01715c: 1 @@ -92831,15 +92831,15 @@ - m02553c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137106 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.79;1.1.1.81 - - references: + - gene_reaction_rule: "ENSG00000137106" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.79;1.1.1.81" + - references: "" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3860 + - id: "HMR_3860" - name: "" - metabolites: !!omap - m01332m: 1 @@ -92848,15 +92848,15 @@ - m02321m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3883 + - id: "HMR_3883" - name: "" - metabolites: !!omap - m02039c: 1 @@ -92865,15 +92865,15 @@ - m02896c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135094 or ENSG00000139410 or ENSG00000167720 - - rxnFrom: HMRdatabase - - eccodes: 4.3.1.17;4.3.1.19 - - references: PMID:4433562 + - gene_reaction_rule: "ENSG00000135094 or ENSG00000139410 or ENSG00000167720" + - rxnFrom: "HMRdatabase" + - eccodes: "4.3.1.17;4.3.1.19" + - references: "PMID:4433562" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3901 + - id: "HMR_3901" - name: "" - metabolites: !!omap - m01986c: -1 @@ -92883,15 +92883,15 @@ - m02880c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000124713 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.20 - - references: PMID:9597750 + - gene_reaction_rule: "ENSG00000124713" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.20" + - references: "PMID:9597750" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3939 + - id: "HMR_3939" - name: "" - metabolites: !!omap - m00630m: -1 @@ -92900,15 +92900,15 @@ - m02944m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023330 or ENSG00000158578 or ENSG00000178773 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.37 - - references: PMID:7592562 + - gene_reaction_rule: "ENSG00000023330 or ENSG00000158578 or ENSG00000178773" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.37" + - references: "PMID:7592562" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3974 + - id: "HMR_3974" - name: "" - metabolites: !!omap - m01654c: -1 @@ -92918,15 +92918,15 @@ - m02819c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135094 or ENSG00000139410 or ENSG00000167720 - - rxnFrom: HMRdatabase - - eccodes: 4.3.1.17;4.3.1.19 - - references: PMID:15618015;PMID:4156834 + - gene_reaction_rule: "ENSG00000135094 or ENSG00000139410 or ENSG00000167720" + - rxnFrom: "HMRdatabase" + - eccodes: "4.3.1.17;4.3.1.19" + - references: "PMID:15618015;PMID:4156834" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4198 + - id: "HMR_4198" - name: "" - metabolites: !!omap - m01307c: 1 @@ -92935,15 +92935,15 @@ - m02896c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000172482 - - rxnFrom: HMRdatabase - - eccodes: 2.6.1.51 - - references: PMID:10347152;PMID:6469715 + - gene_reaction_rule: "ENSG00000172482" + - rxnFrom: "HMRdatabase" + - eccodes: "2.6.1.51" + - references: "PMID:10347152;PMID:6469715" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4199 + - id: "HMR_4199" - name: "" - metabolites: !!omap - m01252c: 1 @@ -92952,15 +92952,15 @@ - m02530c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000114786 or ENSG00000243989 - - rxnFrom: HMRdatabase - - eccodes: 3.5.1.14 - - references: PMID:9518469 + - gene_reaction_rule: "ENSG00000114786 or ENSG00000243989" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.1.14" + - references: "PMID:9518469" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4200 + - id: "HMR_4200" - name: "" - metabolites: !!omap - m01654c: 1 @@ -92968,15 +92968,15 @@ - m02896c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135094 or ENSG00000139410 or ENSG00000167720 - - rxnFrom: HMRdatabase - - eccodes: 4.3.1.17;4.3.1.19 - - references: PMID:4433562 + - gene_reaction_rule: "ENSG00000135094 or ENSG00000139410 or ENSG00000167720" + - rxnFrom: "HMRdatabase" + - eccodes: "4.3.1.17;4.3.1.19" + - references: "PMID:4433562" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4284 + - id: "HMR_4284" - name: "" - metabolites: !!omap - m01249c: 1 @@ -92984,15 +92984,15 @@ - m02993c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4348 + - id: "HMR_4348" - name: "" - metabolites: !!omap - m00671c: 1 @@ -93001,30 +93001,30 @@ - m02993c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135094 or ENSG00000139410 - - rxnFrom: HMRdatabase - - eccodes: 4.3.1.19 - - references: + - gene_reaction_rule: "ENSG00000135094 or ENSG00000139410" + - rxnFrom: "HMRdatabase" + - eccodes: "4.3.1.19" + - references: "" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4466 + - id: "HMR_4466" - name: "" - metabolites: !!omap - m00646c: 1 - m02154c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178922 - - rxnFrom: HMRdatabase - - eccodes: 5.3.1.22 - - references: + - gene_reaction_rule: "ENSG00000178922" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.1.22" + - references: "" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4467 + - id: "HMR_4467" - name: "" - metabolites: !!omap - m01307p: 1 @@ -93033,15 +93033,15 @@ - m02896p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000172482 - - rxnFrom: HMRdatabase - - eccodes: 2.6.1.51 - - references: + - gene_reaction_rule: "ENSG00000172482" + - rxnFrom: "HMRdatabase" + - eccodes: "2.6.1.51" + - references: "" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4582 + - id: "HMR_4582" - name: "" - metabolites: !!omap - m01365c: -1 @@ -93050,15 +93050,15 @@ - m02658c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171766 - - rxnFrom: HMRdatabase - - eccodes: 2.1.4.1 - - references: PMID:15465786;PMID:9148748 + - gene_reaction_rule: "ENSG00000171766" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.4.1" + - references: "PMID:15465786;PMID:9148748" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4584 + - id: "HMR_4584" - name: "" - metabolites: !!omap - m01285c: 1 @@ -93068,15 +93068,15 @@ - m02039c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104879 or ENSG00000131730 or ENSG00000166165 or ENSG00000223572 or ENSG00000237289 - - rxnFrom: HMRdatabase - - eccodes: 2.7.3.2 - - references: + - gene_reaction_rule: "ENSG00000104879 or ENSG00000131730 or ENSG00000166165 or ENSG00000223572 or ENSG00000237289" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.3.2" + - references: "" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4696 + - id: "HMR_4696" - name: "" - metabolites: !!omap - m01394c: 1 @@ -93086,15 +93086,15 @@ - m02553c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000016391 - - rxnFrom: HMRdatabase - - eccodes: 1.1.99.1 - - references: + - gene_reaction_rule: "ENSG00000016391" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.99.1" + - references: "" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4697 + - id: "HMR_4697" - name: "" - metabolites: !!omap - m01393c: 1 @@ -93105,15 +93105,15 @@ - m02553c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000164904 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.8 - - references: PMID:10505788;PMID:7646513 + - gene_reaction_rule: "ENSG00000164904" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.8" + - references: "PMID:10505788;PMID:7646513" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4698 + - id: "HMR_4698" - name: "" - metabolites: !!omap - m01393c: 1 @@ -93124,15 +93124,15 @@ - m02555c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000164904 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.8 - - references: PMID:10505788;PMID:7646513 + - gene_reaction_rule: "ENSG00000164904" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.8" + - references: "PMID:10505788;PMID:7646513" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4699 + - id: "HMR_4699" - name: "" - metabolites: !!omap - m01393c: -1 @@ -93141,15 +93141,15 @@ - m02471c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000132840 or ENSG00000145692 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.5 - - references: + - gene_reaction_rule: "ENSG00000132840 or ENSG00000145692" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.5" + - references: "" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4700 + - id: "HMR_4700" - name: "" - metabolites: !!omap - m01708c: 1 @@ -93161,15 +93161,15 @@ - m02880c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000090857 or ENSG00000132837 - - rxnFrom: HMRdatabase - - eccodes: 1.5.8.4 - - references: + - gene_reaction_rule: "ENSG00000090857 or ENSG00000132837" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.8.4" + - references: "" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4742 + - id: "HMR_4742" - name: "" - metabolites: !!omap - m01074m: 1 @@ -93180,15 +93180,15 @@ - m02944m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023330 or ENSG00000158578 or ENSG00000178773 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.37 - - references: PMID:7592562 + - gene_reaction_rule: "ENSG00000023330 or ENSG00000158578 or ENSG00000178773" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.37" + - references: "PMID:7592562" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4788 + - id: "HMR_4788" - name: "" - metabolites: !!omap - m01307m: -1 @@ -93197,15 +93197,15 @@ - m02819m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113492 or ENSG00000172482 - - rxnFrom: HMRdatabase - - eccodes: 2.6.1.44 - - references: + - gene_reaction_rule: "ENSG00000113492 or ENSG00000172482" + - rxnFrom: "HMRdatabase" + - eccodes: "2.6.1.44" + - references: "" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4789 + - id: "HMR_4789" - name: "" - metabolites: !!omap - m01986p: -1 @@ -93217,15 +93217,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110887 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.3 - - references: + - gene_reaction_rule: "ENSG00000110887" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.3" + - references: "" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4791 + - id: "HMR_4791" - name: "" - metabolites: !!omap - m01307p: -1 @@ -93234,15 +93234,15 @@ - m02819p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000172482 - - rxnFrom: HMRdatabase - - eccodes: 2.6.1.44 - - references: + - gene_reaction_rule: "ENSG00000172482" + - rxnFrom: "HMRdatabase" + - eccodes: "2.6.1.44" + - references: "" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4792 + - id: "HMR_4792" - name: "" - metabolites: !!omap - m01045m: -1 @@ -93252,15 +93252,15 @@ - m02980m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000182199 - - rxnFrom: HMRdatabase - - eccodes: 2.1.2.1 - - references: PMID:10762066;PMID:6821365;PMID:8505317 + - gene_reaction_rule: "ENSG00000182199" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.2.1" + - references: "PMID:10762066;PMID:6821365;PMID:8505317" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4937 + - id: "HMR_4937" - name: "" - metabolites: !!omap - m01307c: -1 @@ -93269,15 +93269,15 @@ - m02026c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099998 or ENSG00000100031 or ENSG00000100121 or ENSG00000131067 or ENSG00000133475 or ENSG00000167741 or ENSG00000274252 - - rxnFrom: HMRdatabase - - eccodes: 2.3.2.2 - - references: PMID:7892271;PMID:7892271;PMID:7892271;PMID:7892271;PMID:7892271;PMID:7892271;PMID:7892271;PMID:7892271;PMID:7892271;PMID:7892271 + - gene_reaction_rule: "ENSG00000099998 or ENSG00000100031 or ENSG00000100121 or ENSG00000131067 or ENSG00000133475 or ENSG00000167741 or ENSG00000274252" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.2.2" + - references: "PMID:7892271;PMID:7892271;PMID:7892271;PMID:7892271;PMID:7892271;PMID:7892271;PMID:7892271;PMID:7892271;PMID:7892271;PMID:7892271" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_5392 + - id: "HMR_5392" - name: "" - metabolites: !!omap - m01285c: 6 @@ -93289,15 +93289,15 @@ - m02981c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136877 - - rxnFrom: HMRdatabase - - eccodes: 6.3.2.17 - - references: PMID:16859665;PMID:2645826;PMID:2695555;PMID:7027025;PMID:7142207 + - gene_reaction_rule: "ENSG00000136877" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.2.17" + - references: "PMID:16859665;PMID:2645826;PMID:2695555;PMID:7027025;PMID:7142207" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_5393 + - id: "HMR_5393" - name: "" - metabolites: !!omap - m01974c: 6 @@ -93306,15 +93306,15 @@ - m02981c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137563 - - rxnFrom: HMRdatabase - - eccodes: 3.4.19.9 - - references: PMID:12909365;PMID:16859665 + - gene_reaction_rule: "ENSG00000137563" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.19.9" + - references: "PMID:12909365;PMID:16859665" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6409 + - id: "HMR_6409" - name: "" - metabolites: !!omap - m01701m: 1 @@ -93324,15 +93324,15 @@ - m02553m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000091140 and ENSG00000140905 and ENSG00000145020 and ENSG00000178445 - - rxnFrom: HMRdatabase - - eccodes: 1.8.1.4;2.1.2.10 - - references: PMID:2643922 + - gene_reaction_rule: "ENSG00000091140 and ENSG00000140905 and ENSG00000145020 and ENSG00000178445" + - rxnFrom: "HMRdatabase" + - eccodes: "1.8.1.4;2.1.2.10" + - references: "PMID:2643922" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_7702 + - id: "HMR_7702" - name: "" - metabolites: !!omap - m01998c: 1 @@ -93342,15 +93342,15 @@ - m02555c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137106 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.79;1.1.1.81 - - references: + - gene_reaction_rule: "ENSG00000137106" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.79;1.1.1.81" + - references: "" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_7703 + - id: "HMR_7703" - name: "" - metabolites: !!omap - m01998c: -1 @@ -93359,15 +93359,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101323 or ENSG00000116882 - - rxnFrom: HMRdatabase - - eccodes: 1.1.3.15 - - references: + - gene_reaction_rule: "ENSG00000101323 or ENSG00000116882" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.3.15" + - references: "" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8433 + - id: "HMR_8433" - name: "" - metabolites: !!omap - m01596m: 1 @@ -93377,15 +93377,15 @@ - m02878m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000091140 and ENSG00000140905 and ENSG00000145020 and ENSG00000178445 - - rxnFrom: HMRdatabase - - eccodes: 1.8.1.4;2.1.2.10 - - references: + - gene_reaction_rule: "ENSG00000091140 and ENSG00000140905 and ENSG00000145020 and ENSG00000178445" + - rxnFrom: "HMRdatabase" + - eccodes: "1.8.1.4;2.1.2.10" + - references: "" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8434 + - id: "HMR_8434" - name: "" - metabolites: !!omap - m01045m: 1 @@ -93396,15 +93396,15 @@ - m02980m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000091140 and ENSG00000140905 and ENSG00000145020 and ENSG00000178445 - - rxnFrom: HMRdatabase - - eccodes: 1.8.1.4;2.1.2.10 - - references: + - gene_reaction_rule: "ENSG00000091140 and ENSG00000140905 and ENSG00000145020 and ENSG00000178445" + - rxnFrom: "HMRdatabase" + - eccodes: "1.8.1.4;2.1.2.10" + - references: "" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8435 + - id: "HMR_8435" - name: "" - metabolites: !!omap - m01596m: 1 @@ -93414,15 +93414,15 @@ - m02879m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000091140 and ENSG00000140905 and ENSG00000145020 and ENSG00000178445 - - rxnFrom: HMRdatabase - - eccodes: 1.4.4.2 - - references: + - gene_reaction_rule: "ENSG00000091140 and ENSG00000140905 and ENSG00000145020 and ENSG00000178445" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.4.2" + - references: "" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8436 + - id: "HMR_8436" - name: "" - metabolites: !!omap - m01045m: 1 @@ -93433,15 +93433,15 @@ - m02980m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000091140 and ENSG00000140905 and ENSG00000145020 and ENSG00000178445 - - rxnFrom: HMRdatabase - - eccodes: 1.8.1.4;2.1.2.10 - - references: + - gene_reaction_rule: "ENSG00000091140 and ENSG00000140905 and ENSG00000145020 and ENSG00000178445" + - rxnFrom: "HMRdatabase" + - eccodes: "1.8.1.4;2.1.2.10" + - references: "" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8437 + - id: "HMR_8437" - name: "" - metabolites: !!omap - m01703m: 1 @@ -93451,15 +93451,15 @@ - m02553m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000091140 and ENSG00000140905 and ENSG00000145020 and ENSG00000178445 - - rxnFrom: HMRdatabase - - eccodes: 1.8.1.4;2.1.2.10 - - references: + - gene_reaction_rule: "ENSG00000091140 and ENSG00000140905 and ENSG00000145020 and ENSG00000178445" + - rxnFrom: "HMRdatabase" + - eccodes: "1.8.1.4;2.1.2.10" + - references: "" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8439 + - id: "HMR_8439" - name: "" - metabolites: !!omap - m01708m: -1 @@ -93470,15 +93470,15 @@ - m02880m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000132837 - - rxnFrom: HMRdatabase - - eccodes: 1.5.8.4 - - references: + - gene_reaction_rule: "ENSG00000132837" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.8.4" + - references: "" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8440 + - id: "HMR_8440" - name: "" - metabolites: !!omap - m01393m: 1 @@ -93489,15 +93489,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000164904 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.8 - - references: + - gene_reaction_rule: "ENSG00000164904" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.8" + - references: "" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8441 + - id: "HMR_8441" - name: "" - metabolites: !!omap - m01394m: 1 @@ -93506,15 +93506,15 @@ - m01803m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000016391 - - rxnFrom: HMRdatabase - - eccodes: 1.1.99.1 - - references: + - gene_reaction_rule: "ENSG00000016391" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.99.1" + - references: "" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8442 + - id: "HMR_8442" - name: "" - metabolites: !!omap - m00671c: -1 @@ -93525,15 +93525,15 @@ - m02774c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 1.2.7.2 - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.7.2" + - references: "" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_9718 + - id: "HMR_9718" - name: "" - metabolites: !!omap - m01285c: 1 @@ -93543,15 +93543,15 @@ - m02655c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.39 - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.39" + - references: "" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_9486 + - id: "HMR_9486" - name: "" - metabolites: !!omap - m02040c: -1 @@ -93560,15 +93560,15 @@ - m02993c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000185875 - - rxnFrom: HMRdatabase - - eccodes: 4.2.3.1 - - references: + - gene_reaction_rule: "ENSG00000185875" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.3.1" + - references: "" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4426 + - id: "HMR_4426" - name: "" - metabolites: !!omap - m01259c: -1 @@ -93578,15 +93578,15 @@ - m02039c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000102030 or ENSG00000122390 or ENSG00000139977 or ENSG00000156269 or ENSG00000164134 or ENSG00000173418 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.88 - - references: PMID:9916263;PMID:11390029;PMID:1127438 + - gene_reaction_rule: "ENSG00000102030 or ENSG00000122390 or ENSG00000139977 or ENSG00000156269 or ENSG00000164134 or ENSG00000173418" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.88" + - references: "PMID:9916263;PMID:11390029;PMID:1127438" - subsystem: - - Histidine metabolism + - "Histidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4428 + - id: "HMR_4428" - name: "" - metabolites: !!omap - m01596c: 1 @@ -93595,15 +93595,15 @@ - m02125c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000132437 or ENSG00000140287 - - rxnFrom: HMRdatabase - - eccodes: 4.1.1.22;4.1.1.28 - - references: PMID:11513473;PMID:6778871 + - gene_reaction_rule: "ENSG00000132437 or ENSG00000140287" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.1.22;4.1.1.28" + - references: "PMID:11513473;PMID:6778871" - subsystem: - - Histidine metabolism + - "Histidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4429 + - id: "HMR_4429" - name: "" - metabolites: !!omap - m02039c: 1 @@ -93613,15 +93613,15 @@ - m02877c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000150540 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.8 - - references: + - gene_reaction_rule: "ENSG00000150540" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.8" + - references: "" - subsystem: - - Histidine metabolism + - "Histidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4430 + - id: "HMR_4430" - name: "" - metabolites: !!omap - m02039c: 1 @@ -93633,15 +93633,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000002726 or ENSG00000069535 or ENSG00000131471 or ENSG00000131480 or ENSG00000189221 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.4 - - references: + - gene_reaction_rule: "ENSG00000002726 or ENSG00000069535 or ENSG00000131471 or ENSG00000131480 or ENSG00000189221" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.4" + - references: "" - subsystem: - - Histidine metabolism + - "Histidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4431 + - id: "HMR_4431" - name: "" - metabolites: !!omap - m02039c: 2 @@ -93652,15 +93652,15 @@ - m02553c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.5 - - references: + - gene_reaction_rule: "ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.5" + - references: "" - subsystem: - - Histidine metabolism + - "Histidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4437 + - id: "HMR_4437" - name: "" - metabolites: !!omap - m02039c: 1 @@ -93669,15 +93669,15 @@ - m03124c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084110 - - rxnFrom: HMRdatabase - - eccodes: 4.3.1.3 - - references: PMID:9432011 + - gene_reaction_rule: "ENSG00000084110" + - rxnFrom: "HMRdatabase" + - eccodes: "4.3.1.3" + - references: "PMID:9432011" - subsystem: - - Histidine metabolism + - "Histidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4658 + - id: "HMR_4658" - name: "" - metabolites: !!omap - m01099c: -1 @@ -93687,15 +93687,15 @@ - m02980c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160282 - - rxnFrom: HMRdatabase - - eccodes: 2.1.2.5 - - references: PMID:10773664;PMID:13672973;PMID:14697341;PMID:15272307;PMID:7050870;PMID:9677387 + - gene_reaction_rule: "ENSG00000160282" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.2.5" + - references: "PMID:10773664;PMID:13672973;PMID:14697341;PMID:15272307;PMID:7050870;PMID:9677387" - subsystem: - - Histidine metabolism + - "Histidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4660 + - id: "HMR_4660" - name: "" - metabolites: !!omap - m01009c: -1 @@ -93704,15 +93704,15 @@ - m02574c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000139344 - - rxnFrom: HMRdatabase - - eccodes: 3.5.2.7 - - references: PMID:13739526;PMID:13914653;UNIPROT:Q96NU7 + - gene_reaction_rule: "ENSG00000139344" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.2.7" + - references: "PMID:13739526;PMID:13914653;UNIPROT:Q96NU7" - subsystem: - - Histidine metabolism + - "Histidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4712 + - id: "HMR_4712" - name: "" - metabolites: !!omap - m01009c: 1 @@ -93720,15 +93720,15 @@ - m03124c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000159650 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.49 - - references: PMID:14702039 + - gene_reaction_rule: "ENSG00000159650" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.49" + - references: "PMID:14702039" - subsystem: - - Histidine metabolism + - "Histidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_5336 + - id: "HMR_5336" - name: "" - metabolites: !!omap - m01974c: 1 @@ -93738,15 +93738,15 @@ - m02867c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068903 or ENSG00000077463 or ENSG00000078124 or ENSG00000096717 or ENSG00000124523 or ENSG00000124596 or ENSG00000132744 or ENSG00000133315 or ENSG00000138744 or ENSG00000142082 or ENSG00000156795 or ENSG00000157045 or ENSG00000172264 or ENSG00000187531 - - rxnFrom: HMRdatabase - - eccodes: 3.5.1.- - - references: + - gene_reaction_rule: "ENSG00000068903 or ENSG00000077463 or ENSG00000078124 or ENSG00000096717 or ENSG00000124523 or ENSG00000124596 or ENSG00000132744 or ENSG00000133315 or ENSG00000138744 or ENSG00000142082 or ENSG00000156795 or ENSG00000157045 or ENSG00000172264 or ENSG00000187531" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.1.-" + - references: "" - subsystem: - - Histidine metabolism + - "Histidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_5337 + - id: "HMR_5337" - name: "" - metabolites: !!omap - m02026c: -1 @@ -93754,15 +93754,15 @@ - m03124c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006695 or ENSG00000054267 or ENSG00000117682 or ENSG00000120942 or ENSG00000183665 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.- - - references: PMID:11669511 + - gene_reaction_rule: "ENSG00000006695 or ENSG00000054267 or ENSG00000117682 or ENSG00000120942 or ENSG00000183665" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.-" + - references: "PMID:11669511" - subsystem: - - Histidine metabolism + - "Histidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_5338 + - id: "HMR_5338" - name: "" - metabolites: !!omap - m01261c: -1 @@ -93772,15 +93772,15 @@ - m02867c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.199 - - references: PMID:8898873;PMID:11669511 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.199" + - references: "PMID:8898873;PMID:11669511" - subsystem: - - Histidine metabolism + - "Histidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_5339 + - id: "HMR_5339" - name: "" - metabolites: !!omap - m01252c: 1 @@ -93789,15 +93789,15 @@ - m02867c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068903 or ENSG00000077463 or ENSG00000078124 or ENSG00000096717 or ENSG00000124523 or ENSG00000124596 or ENSG00000132744 or ENSG00000133315 or ENSG00000138744 or ENSG00000142082 or ENSG00000156795 or ENSG00000157045 or ENSG00000172264 or ENSG00000187531 - - rxnFrom: HMRdatabase - - eccodes: 3.5.1.- - - references: PMID:11669511;PMID:8898873 + - gene_reaction_rule: "ENSG00000068903 or ENSG00000077463 or ENSG00000078124 or ENSG00000096717 or ENSG00000124523 or ENSG00000124596 or ENSG00000132744 or ENSG00000133315 or ENSG00000138744 or ENSG00000142082 or ENSG00000156795 or ENSG00000157045 or ENSG00000172264 or ENSG00000187531" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.1.-" + - references: "PMID:11669511;PMID:8898873" - subsystem: - - Histidine metabolism + - "Histidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_5340 + - id: "HMR_5340" - name: "" - metabolites: !!omap - m02040c: -1 @@ -93806,15 +93806,15 @@ - m02867c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068903 or ENSG00000077463 or ENSG00000078124 or ENSG00000096717 or ENSG00000124523 or ENSG00000124596 or ENSG00000132744 or ENSG00000133315 or ENSG00000138744 or ENSG00000142082 or ENSG00000156795 or ENSG00000157045 or ENSG00000172264 or ENSG00000187531 - - rxnFrom: HMRdatabase - - eccodes: 3.5.1.- - - references: PMID:11669511 + - gene_reaction_rule: "ENSG00000068903 or ENSG00000077463 or ENSG00000078124 or ENSG00000096717 or ENSG00000124523 or ENSG00000124596 or ENSG00000132744 or ENSG00000133315 or ENSG00000138744 or ENSG00000142082 or ENSG00000156795 or ENSG00000157045 or ENSG00000172264 or ENSG00000187531" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.1.-" + - references: "PMID:11669511" - subsystem: - - Histidine metabolism + - "Histidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8783 + - id: "HMR_8783" - name: "" - metabolites: !!omap - m02039c: 1 @@ -93826,15 +93826,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000002726 or ENSG00000131471 or ENSG00000131480 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.6;1.4.3.21;1.4.3.22 - - references: + - gene_reaction_rule: "ENSG00000002726 or ENSG00000131471 or ENSG00000131480" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.6;1.4.3.21;1.4.3.22" + - references: "" - subsystem: - - Histidine metabolism + - "Histidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8784 + - id: "HMR_8784" - name: "" - metabolites: !!omap - m02039c: 2 @@ -93845,15 +93845,15 @@ - m02553c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000143149 or ENSG00000164904 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000143149 or ENSG00000164904" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.3" + - references: "" - subsystem: - - Histidine metabolism + - "Histidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8786 + - id: "HMR_8786" - name: "" - metabolites: !!omap - m02039m: 2 @@ -93864,15 +93864,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111275 or ENSG00000137124 or ENSG00000164904 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.4;1.2.1.5 - - references: + - gene_reaction_rule: "ENSG00000111275 or ENSG00000137124 or ENSG00000164904" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.4;1.2.1.5" + - references: "" - subsystem: - - Histidine metabolism + - "Histidine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4239 + - id: "HMR_4239" - name: "" - metabolites: !!omap - m00670m: -1 @@ -93883,15 +93883,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000091140 and ENSG00000105953 and ENSG00000119689 - - rxnFrom: HMRdatabase - - eccodes: 1.2.4.2 - - references: PMID:10676873 + - gene_reaction_rule: "ENSG00000091140 and ENSG00000105953 and ENSG00000119689" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.4.2" + - references: "PMID:10676873" - subsystem: - - Lysine metabolism + - "Lysine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4241 + - id: "HMR_4241" - name: "" - metabolites: !!omap - m02039n: -1 @@ -93901,15 +93901,15 @@ - m02877n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000055609 and ENSG00000272333) or (ENSG00000055609 and ENSG00000167548) or ENSG00000005483 or ENSG00000099381 or ENSG00000101945 or ENSG00000104885 or ENSG00000106462 or ENSG00000108799 or ENSG00000109685 or ENSG00000110066 or ENSG00000116539 or ENSG00000118058 or ENSG00000133247 or ENSG00000136169 or ENSG00000139718 or ENSG00000143379 or ENSG00000145391 or ENSG00000147548 or ENSG00000152455 or ENSG00000165671 or ENSG00000170364 or ENSG00000181090 or ENSG00000181555 or ENSG00000183955 or ENSG00000185420 or ENSG00000204371 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.43 - - references: + - gene_reaction_rule: "(ENSG00000055609 and ENSG00000272333) or (ENSG00000055609 and ENSG00000167548) or ENSG00000005483 or ENSG00000099381 or ENSG00000101945 or ENSG00000104885 or ENSG00000106462 or ENSG00000108799 or ENSG00000109685 or ENSG00000110066 or ENSG00000116539 or ENSG00000118058 or ENSG00000133247 or ENSG00000136169 or ENSG00000139718 or ENSG00000143379 or ENSG00000145391 or ENSG00000147548 or ENSG00000152455 or ENSG00000165671 or ENSG00000170364 or ENSG00000181090 or ENSG00000181555 or ENSG00000183955 or ENSG00000185420 or ENSG00000204371" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.43" + - references: "" - subsystem: - - Lysine metabolism + - "Lysine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4288 + - id: "HMR_4288" - name: "" - metabolites: !!omap - m01306m: -1 @@ -93921,15 +93921,15 @@ - m02868m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008311 - - rxnFrom: HMRdatabase - - eccodes: 1.5.1.8 - - references: + - gene_reaction_rule: "ENSG00000008311" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.1.8" + - references: "" - subsystem: - - Lysine metabolism + - "Lysine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4596 + - id: "HMR_4596" - name: "" - metabolites: !!omap - m00670c: -1 @@ -93938,15 +93938,15 @@ - m02322c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109576 - - rxnFrom: HMRdatabase - - eccodes: 2.6.1.39 - - references: PMID:8087205 + - gene_reaction_rule: "ENSG00000109576" + - rxnFrom: "HMRdatabase" + - eccodes: "2.6.1.39" + - references: "PMID:8087205" - subsystem: - - Lysine metabolism + - "Lysine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4597 + - id: "HMR_4597" - name: "" - metabolites: !!omap - m00670m: -1 @@ -93955,15 +93955,15 @@ - m02322m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109576 - - rxnFrom: HMRdatabase - - eccodes: 2.6.1.39 - - references: PMID:8087205 + - gene_reaction_rule: "ENSG00000109576" + - rxnFrom: "HMRdatabase" + - eccodes: "2.6.1.39" + - references: "PMID:8087205" - subsystem: - - Lysine metabolism + - "Lysine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4599 + - id: "HMR_4599" - name: "" - metabolites: !!omap - m00670m: -1 @@ -93973,15 +93973,15 @@ - m02899m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105953 or ENSG00000181192 or ENSG00000197444 - - rxnFrom: HMRdatabase - - eccodes: 1.2.4.2 - - references: PMID:10676873 + - gene_reaction_rule: "ENSG00000105953 or ENSG00000181192 or ENSG00000197444" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.4.2" + - references: "PMID:10676873" - subsystem: - - Lysine metabolism + - "Lysine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4667 + - id: "HMR_4667" - name: "" - metabolites: !!omap - m00631m: 1 @@ -93993,15 +93993,15 @@ - m02868m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008311 or ENSG00000143653 - - rxnFrom: HMRdatabase - - eccodes: 1.5.1.9 - - references: PMID:235294;PMID:4774398 + - gene_reaction_rule: "ENSG00000008311 or ENSG00000143653" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.1.9" + - references: "PMID:235294;PMID:4774398" - subsystem: - - Lysine metabolism + - "Lysine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4668 + - id: "HMR_4668" - name: "" - metabolites: !!omap - m00631m: 1 @@ -94013,15 +94013,15 @@ - m02868m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008311 - - rxnFrom: HMRdatabase - - eccodes: 1.5.1.10 - - references: PMID:2117549 + - gene_reaction_rule: "ENSG00000008311" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.1.10" + - references: "PMID:2117549" - subsystem: - - Lysine metabolism + - "Lysine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4737 + - id: "HMR_4737" - name: "" - metabolites: !!omap - m00631c: -1 @@ -94032,15 +94032,15 @@ - m02553c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000164904 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.31 - - references: PMID:2160277 + - gene_reaction_rule: "ENSG00000164904" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.31" + - references: "PMID:2160277" - subsystem: - - Lysine metabolism + - "Lysine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4739 + - id: "HMR_4739" - name: "" - metabolites: !!omap - m00631m: -1 @@ -94051,15 +94051,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000164904 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.31 - - references: + - gene_reaction_rule: "ENSG00000164904" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.31" + - references: "" - subsystem: - - Lysine metabolism + - "Lysine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4740 + - id: "HMR_4740" - name: "" - metabolites: !!omap - m00556c: -1 @@ -94068,15 +94068,15 @@ - m02040c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000079931 or ENSG00000123454 - - rxnFrom: HMRdatabase - - eccodes: 1.14.17.1 - - references: PMID:3443096;PMID:3443096;PMID:7759508;PMID:7759508;PMID:9763470;PMID:3443096;PMID:7759508;PMID:3443096;PMID:9763470;PMID:7759508;PMID:3443096;PMID:9763470;PMID:7759508;PMID:9763470;PMID:3443096;PMID:9763470;PMID:7759508;PMID:3443096;PMID:3443096;PMID:9763470;PMID:7759508;PMID:9763470;PMID:7759508;PMID:3443096;PMID:9763470;PMID:7759508;PMID:3443096;PMID:9763470;PMID:7759508;PMID:9763470 + - gene_reaction_rule: "ENSG00000079931 or ENSG00000123454" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.17.1" + - references: "PMID:3443096;PMID:3443096;PMID:7759508;PMID:7759508;PMID:9763470;PMID:3443096;PMID:7759508;PMID:3443096;PMID:9763470;PMID:7759508;PMID:3443096;PMID:9763470;PMID:7759508;PMID:9763470;PMID:3443096;PMID:9763470;PMID:7759508;PMID:3443096;PMID:3443096;PMID:9763470;PMID:7759508;PMID:9763470;PMID:7759508;PMID:3443096;PMID:9763470;PMID:7759508;PMID:3443096;PMID:9763470;PMID:7759508;PMID:9763470" - subsystem: - - Lysine metabolism + - "Lysine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6415 + - id: "HMR_6415" - name: "" - metabolites: !!omap - m01597m: -1 @@ -94085,15 +94085,15 @@ - m02899m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119689 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.61 - - references: PMID:9620315 + - gene_reaction_rule: "ENSG00000119689" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.61" + - references: "PMID:9620315" - subsystem: - - Lysine metabolism + - "Lysine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6974 + - id: "HMR_6974" - name: "" - metabolites: !!omap - m00196c: -1 @@ -94102,15 +94102,15 @@ - m02426c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Lysine metabolism + - "Lysine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6975 + - id: "HMR_6975" - name: "" - metabolites: !!omap - m00204c: -1 @@ -94120,15 +94120,15 @@ - m02877c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000055609 and ENSG00000272333) or (ENSG00000055609 and ENSG00000167548) or ENSG00000005483 or ENSG00000099381 or ENSG00000101945 or ENSG00000104885 or ENSG00000109685 or ENSG00000110066 or ENSG00000116539 or ENSG00000118058 or ENSG00000133247 or ENSG00000136169 or ENSG00000139718 or ENSG00000143379 or ENSG00000145391 or ENSG00000147548 or ENSG00000152455 or ENSG00000165671 or ENSG00000170364 or ENSG00000181090 or ENSG00000181555 or ENSG00000183955 or ENSG00000185420 or ENSG00000204371 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.43 - - references: + - gene_reaction_rule: "(ENSG00000055609 and ENSG00000272333) or (ENSG00000055609 and ENSG00000167548) or ENSG00000005483 or ENSG00000099381 or ENSG00000101945 or ENSG00000104885 or ENSG00000109685 or ENSG00000110066 or ENSG00000116539 or ENSG00000118058 or ENSG00000133247 or ENSG00000136169 or ENSG00000139718 or ENSG00000143379 or ENSG00000145391 or ENSG00000147548 or ENSG00000152455 or ENSG00000165671 or ENSG00000170364 or ENSG00000181090 or ENSG00000181555 or ENSG00000183955 or ENSG00000185420 or ENSG00000204371" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.43" + - references: "" - subsystem: - - Lysine metabolism + - "Lysine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6976 + - id: "HMR_6976" - name: "" - metabolites: !!omap - m00212c: 1 @@ -94138,15 +94138,15 @@ - m02877c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000055609 and ENSG00000272333) or (ENSG00000055609 and ENSG00000167548) or ENSG00000005483 or ENSG00000099381 or ENSG00000101945 or ENSG00000104885 or ENSG00000109685 or ENSG00000110066 or ENSG00000116539 or ENSG00000118058 or ENSG00000133247 or ENSG00000136169 or ENSG00000139718 or ENSG00000143379 or ENSG00000145391 or ENSG00000147548 or ENSG00000152455 or ENSG00000165671 or ENSG00000170364 or ENSG00000181090 or ENSG00000181555 or ENSG00000183955 or ENSG00000185420 or ENSG00000204371 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.43 - - references: + - gene_reaction_rule: "(ENSG00000055609 and ENSG00000272333) or (ENSG00000055609 and ENSG00000167548) or ENSG00000005483 or ENSG00000099381 or ENSG00000101945 or ENSG00000104885 or ENSG00000109685 or ENSG00000110066 or ENSG00000116539 or ENSG00000118058 or ENSG00000133247 or ENSG00000136169 or ENSG00000139718 or ENSG00000143379 or ENSG00000145391 or ENSG00000147548 or ENSG00000152455 or ENSG00000165671 or ENSG00000170364 or ENSG00000181090 or ENSG00000181555 or ENSG00000183955 or ENSG00000185420 or ENSG00000204371" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.43" + - references: "" - subsystem: - - Lysine metabolism + - "Lysine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6977 + - id: "HMR_6977" - name: "" - metabolites: !!omap - m00211c: 1 @@ -94156,15 +94156,15 @@ - m02877c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000055609 and ENSG00000272333) or (ENSG00000055609 and ENSG00000167548) or ENSG00000005483 or ENSG00000099381 or ENSG00000101945 or ENSG00000104885 or ENSG00000109685 or ENSG00000110066 or ENSG00000116539 or ENSG00000118058 or ENSG00000133247 or ENSG00000136169 or ENSG00000139718 or ENSG00000143379 or ENSG00000145391 or ENSG00000147548 or ENSG00000152455 or ENSG00000165671 or ENSG00000170364 or ENSG00000181090 or ENSG00000181555 or ENSG00000183955 or ENSG00000185420 or ENSG00000204371 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.43 - - references: + - gene_reaction_rule: "(ENSG00000055609 and ENSG00000272333) or (ENSG00000055609 and ENSG00000167548) or ENSG00000005483 or ENSG00000099381 or ENSG00000101945 or ENSG00000104885 or ENSG00000109685 or ENSG00000110066 or ENSG00000116539 or ENSG00000118058 or ENSG00000133247 or ENSG00000136169 or ENSG00000139718 or ENSG00000143379 or ENSG00000145391 or ENSG00000147548 or ENSG00000152455 or ENSG00000165671 or ENSG00000170364 or ENSG00000181090 or ENSG00000181555 or ENSG00000183955 or ENSG00000185420 or ENSG00000204371" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.43" + - references: "" - subsystem: - - Lysine metabolism + - "Lysine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6978 + - id: "HMR_6978" - name: "" - metabolites: !!omap - m00196c: 1 @@ -94174,15 +94174,15 @@ - m02517c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000114902 and ENSG00000118363 and ENSG00000129128 and ENSG00000140612 and ENSG00000166562 - - rxnFrom: HMRdatabase - - eccodes: 3.4.21.89;3.4.-.- - - references: + - gene_reaction_rule: "ENSG00000114902 and ENSG00000118363 and ENSG00000129128 and ENSG00000140612 and ENSG00000166562" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.21.89;3.4.-.-" + - references: "" - subsystem: - - Lysine metabolism + - "Lysine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6979 + - id: "HMR_6979" - name: "" - metabolites: !!omap - m00789c: 1 @@ -94193,15 +94193,15 @@ - m02943c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000185973 - - rxnFrom: HMRdatabase - - eccodes: 1.14.11.8 - - references: + - gene_reaction_rule: "ENSG00000185973" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.11.8" + - references: "" - subsystem: - - Lysine metabolism + - "Lysine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6980 + - id: "HMR_6980" - name: "" - metabolites: !!omap - m00789c: -1 @@ -94210,15 +94210,15 @@ - m02039c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000182199 - - rxnFrom: HMRdatabase - - eccodes: 2.1.2.1 - - references: + - gene_reaction_rule: "ENSG00000182199" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.2.1" + - references: "" - subsystem: - - Lysine metabolism + - "Lysine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6981 + - id: "HMR_6981" - name: "" - metabolites: !!omap - m01034c: -1 @@ -94229,15 +94229,15 @@ - m02553c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000143149 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.47 - - references: + - gene_reaction_rule: "ENSG00000143149" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.47" + - references: "" - subsystem: - - Lysine metabolism + - "Lysine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6982 + - id: "HMR_6982" - name: "" - metabolites: !!omap - m01306c: -1 @@ -94248,15 +94248,15 @@ - m02943c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000129151 - - rxnFrom: HMRdatabase - - eccodes: 1.4.11.1 - - references: + - gene_reaction_rule: "ENSG00000129151" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.11.1" + - references: "" - subsystem: - - Lysine metabolism + - "Lysine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6983 + - id: "HMR_6983" - name: "" - metabolites: !!omap - m00204c: -1 @@ -94267,15 +94267,15 @@ - m02943c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000083444 or ENSG00000106397 or ENSG00000152952 or ENSG00000167123 - - rxnFrom: HMRdatabase - - eccodes: 1.14.11.4 - - references: + - gene_reaction_rule: "ENSG00000083444 or ENSG00000106397 or ENSG00000152952 or ENSG00000167123" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.11.4" + - references: "" - subsystem: - - Lysine metabolism + - "Lysine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6984 + - id: "HMR_6984" - name: "" - metabolites: !!omap - m01036c: 1 @@ -94285,15 +94285,15 @@ - m03107c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000106397 or ENSG00000130309 or ENSG00000198756 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.50 - - references: + - gene_reaction_rule: "ENSG00000106397 or ENSG00000130309 or ENSG00000198756" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.50" + - references: "" - subsystem: - - Lysine metabolism + - "Lysine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6985 + - id: "HMR_6985" - name: "" - metabolites: !!omap - m00232c: 1 @@ -94303,15 +94303,15 @@ - m03108c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000106397 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.66 - - references: + - gene_reaction_rule: "ENSG00000106397" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.66" + - references: "" - subsystem: - - Lysine metabolism + - "Lysine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8017 + - id: "HMR_8017" - name: "" - metabolites: !!omap - m01157p: 1 @@ -94323,15 +94323,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Lysine metabolism + - "Lysine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8018 + - id: "HMR_8018" - name: "" - metabolites: !!omap - m01157p: -1 @@ -94339,15 +94339,15 @@ - m02040p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Lysine metabolism + - "Lysine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8019 + - id: "HMR_8019" - name: "" - metabolites: !!omap - m01663p: -1 @@ -94357,15 +94357,15 @@ - m02553p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Lysine metabolism + - "Lysine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8021 + - id: "HMR_8021" - name: "" - metabolites: !!omap - m00556p: 1 @@ -94375,15 +94375,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000179761 - - rxnFrom: HMRdatabase - - eccodes: 1.5.3.1;1.5.3.7 - - references: + - gene_reaction_rule: "ENSG00000179761" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.3.1;1.5.3.7" + - references: "" - subsystem: - - Lysine metabolism + - "Lysine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8025 + - id: "HMR_8025" - name: "" - metabolites: !!omap - m00204n: -1 @@ -94393,15 +94393,15 @@ - m02877n: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000055609 and ENSG00000272333) or (ENSG00000055609 and ENSG00000167548) or ENSG00000005483 or ENSG00000099381 or ENSG00000101945 or ENSG00000104885 or ENSG00000106462 or ENSG00000108799 or ENSG00000109685 or ENSG00000110066 or ENSG00000116539 or ENSG00000118058 or ENSG00000133247 or ENSG00000136169 or ENSG00000139718 or ENSG00000143379 or ENSG00000145391 or ENSG00000147548 or ENSG00000152455 or ENSG00000165671 or ENSG00000170364 or ENSG00000181090 or ENSG00000181555 or ENSG00000183955 or ENSG00000204371 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.43 - - references: + - gene_reaction_rule: "(ENSG00000055609 and ENSG00000272333) or (ENSG00000055609 and ENSG00000167548) or ENSG00000005483 or ENSG00000099381 or ENSG00000101945 or ENSG00000104885 or ENSG00000106462 or ENSG00000108799 or ENSG00000109685 or ENSG00000110066 or ENSG00000116539 or ENSG00000118058 or ENSG00000133247 or ENSG00000136169 or ENSG00000139718 or ENSG00000143379 or ENSG00000145391 or ENSG00000147548 or ENSG00000152455 or ENSG00000165671 or ENSG00000170364 or ENSG00000181090 or ENSG00000181555 or ENSG00000183955 or ENSG00000204371" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.43" + - references: "" - subsystem: - - Lysine metabolism + - "Lysine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8026 + - id: "HMR_8026" - name: "" - metabolites: !!omap - m00212n: 1 @@ -94411,15 +94411,15 @@ - m02877n: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000055609 and ENSG00000272333) or (ENSG00000055609 and ENSG00000167548) or ENSG00000005483 or ENSG00000099381 or ENSG00000101945 or ENSG00000104885 or ENSG00000106462 or ENSG00000108799 or ENSG00000109685 or ENSG00000110066 or ENSG00000116539 or ENSG00000118058 or ENSG00000133247 or ENSG00000136169 or ENSG00000139718 or ENSG00000143379 or ENSG00000145391 or ENSG00000147548 or ENSG00000152455 or ENSG00000165671 or ENSG00000170364 or ENSG00000181090 or ENSG00000181555 or ENSG00000183955 or ENSG00000204371 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.43 - - references: + - gene_reaction_rule: "(ENSG00000055609 and ENSG00000272333) or (ENSG00000055609 and ENSG00000167548) or ENSG00000005483 or ENSG00000099381 or ENSG00000101945 or ENSG00000104885 or ENSG00000106462 or ENSG00000108799 or ENSG00000109685 or ENSG00000110066 or ENSG00000116539 or ENSG00000118058 or ENSG00000133247 or ENSG00000136169 or ENSG00000139718 or ENSG00000143379 or ENSG00000145391 or ENSG00000147548 or ENSG00000152455 or ENSG00000165671 or ENSG00000170364 or ENSG00000181090 or ENSG00000181555 or ENSG00000183955 or ENSG00000204371" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.43" + - references: "" - subsystem: - - Lysine metabolism + - "Lysine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8027 + - id: "HMR_8027" - name: "" - metabolites: !!omap - m00211n: 1 @@ -94429,15 +94429,15 @@ - m02877n: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000055609 and ENSG00000272333) or (ENSG00000055609 and ENSG00000167548) or ENSG00000005483 or ENSG00000099381 or ENSG00000101945 or ENSG00000104885 or ENSG00000106462 or ENSG00000108799 or ENSG00000109685 or ENSG00000110066 or ENSG00000116539 or ENSG00000118058 or ENSG00000133247 or ENSG00000136169 or ENSG00000139718 or ENSG00000143379 or ENSG00000145391 or ENSG00000147548 or ENSG00000152455 or ENSG00000165671 or ENSG00000170364 or ENSG00000181090 or ENSG00000181555 or ENSG00000183955 or ENSG00000204371 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.43 - - references: + - gene_reaction_rule: "(ENSG00000055609 and ENSG00000272333) or (ENSG00000055609 and ENSG00000167548) or ENSG00000005483 or ENSG00000099381 or ENSG00000101945 or ENSG00000104885 or ENSG00000106462 or ENSG00000108799 or ENSG00000109685 or ENSG00000110066 or ENSG00000116539 or ENSG00000118058 or ENSG00000133247 or ENSG00000136169 or ENSG00000139718 or ENSG00000143379 or ENSG00000145391 or ENSG00000147548 or ENSG00000152455 or ENSG00000165671 or ENSG00000170364 or ENSG00000181090 or ENSG00000181555 or ENSG00000183955 or ENSG00000204371" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.43" + - references: "" - subsystem: - - Lysine metabolism + - "Lysine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8029 + - id: "HMR_8029" - name: "" - metabolites: !!omap - m00196r: 1 @@ -94447,15 +94447,15 @@ - m02517r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000114902 and ENSG00000118363 and ENSG00000129128 and ENSG00000140612 and ENSG00000166562 - - rxnFrom: HMRdatabase - - eccodes: 3.4.21.89;3.4.-.- - - references: + - gene_reaction_rule: "ENSG00000114902 and ENSG00000118363 and ENSG00000129128 and ENSG00000140612 and ENSG00000166562" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.21.89;3.4.-.-" + - references: "" - subsystem: - - Lysine metabolism + - "Lysine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3164 + - id: "HMR_3164" - name: "" - metabolites: !!omap - m00173m: 1 @@ -94463,15 +94463,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:1735445;PMID:8012501;PMID:8188243;PMID:13295248 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:1735445;PMID:8012501;PMID:8188243;PMID:13295248" - subsystem: - - Tryptophan metabolism + - "Tryptophan metabolism" - confidence_score: 0 - !!omap - - id: HMR_3166 + - id: "HMR_3166" - name: "" - metabolites: !!omap - m00173m: -1 @@ -94481,15 +94481,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:10231530;PMID:10329704;PMID:1651711;PMID:1735445;PMID:6773478;PMID:7150615;PMID:8188243;PMID:8687463;PMID:9553139;PMID:8687463;PMID:10231530 + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:10231530;PMID:10329704;PMID:1651711;PMID:1735445;PMID:6773478;PMID:7150615;PMID:8188243;PMID:8687463;PMID:9553139;PMID:8687463;PMID:10231530" - subsystem: - - Tryptophan metabolism + - "Tryptophan metabolism" - confidence_score: 0 - !!omap - - id: HMR_3885 + - id: "HMR_3885" - name: "" - metabolites: !!omap - m01255m: -1 @@ -94497,15 +94497,15 @@ - m01597m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000075239 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.9 - - references: PMID:10064897;PMID:10806397;PMID:1121274;PMID:11330060;PMID:15733928;PMID:1679347;PMID:16927236;PMID:17236799;PMID:1735445;PMID:1979337;PMID:3194209;PMID:6131897;PMID:6378901;PMID:7911016;PMID:8241273;PMID:3709573 + - gene_reaction_rule: "ENSG00000075239" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.9" + - references: "PMID:10064897;PMID:10806397;PMID:1121274;PMID:11330060;PMID:15733928;PMID:1679347;PMID:16927236;PMID:17236799;PMID:1735445;PMID:1979337;PMID:3194209;PMID:6131897;PMID:6378901;PMID:7911016;PMID:8241273;PMID:3709573" - subsystem: - - Tryptophan metabolism + - "Tryptophan metabolism" - confidence_score: 0 - !!omap - - id: HMR_4250 + - id: "HMR_4250" - name: "" - metabolites: !!omap - m00629c: -1 @@ -94514,15 +94514,15 @@ - m02822c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Tryptophan metabolism + - "Tryptophan metabolism" - confidence_score: 0 - !!omap - - id: HMR_8091 + - id: "HMR_8091" - name: "" - metabolites: !!omap - m00786c: 1 @@ -94531,15 +94531,15 @@ - m02039c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000132437 - - rxnFrom: HMRdatabase - - eccodes: 4.1.1.28 - - references: + - gene_reaction_rule: "ENSG00000132437" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.1.28" + - references: "" - subsystem: - - Tryptophan metabolism + - "Tryptophan metabolism" - confidence_score: 0 - !!omap - - id: HMR_8092 + - id: "HMR_8092" - name: "" - metabolites: !!omap - m00786c: -1 @@ -94550,15 +94550,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000069535 or ENSG00000189221 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.4 - - references: + - gene_reaction_rule: "ENSG00000069535 or ENSG00000189221" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.4" + - references: "" - subsystem: - - Tryptophan metabolism + - "Tryptophan metabolism" - confidence_score: 0 - !!omap - - id: HMR_8563 + - id: "HMR_8563" - name: "" - metabolites: !!omap - m02039m: 2 @@ -94569,15 +94569,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111275 or ENSG00000137124 or ENSG00000164904 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.4;1.2.1.5 - - references: + - gene_reaction_rule: "ENSG00000111275 or ENSG00000137124 or ENSG00000164904" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.4;1.2.1.5" + - references: "" - subsystem: - - Tryptophan metabolism + - "Tryptophan metabolism" - confidence_score: 0 - !!omap - - id: HMR_8564 + - id: "HMR_8564" - name: "" - metabolites: !!omap - m00926c: 1 @@ -94586,15 +94586,15 @@ - m02319c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109576 or ENSG00000137944 or ENSG00000171097 - - rxnFrom: HMRdatabase - - eccodes: 2.6.1.7 - - references: + - gene_reaction_rule: "ENSG00000109576 or ENSG00000137944 or ENSG00000171097" + - rxnFrom: "HMRdatabase" + - eccodes: "2.6.1.7" + - references: "" - subsystem: - - Tryptophan metabolism + - "Tryptophan metabolism" - confidence_score: 0 - !!omap - - id: HMR_8565 + - id: "HMR_8565" - name: "" - metabolites: !!omap - m00926c: -1 @@ -94602,15 +94602,15 @@ - m02040c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Tryptophan metabolism + - "Tryptophan metabolism" - confidence_score: 0 - !!omap - - id: HMR_8566 + - id: "HMR_8566" - name: "" - metabolites: !!omap - m01161c: 1 @@ -94622,15 +94622,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138061 or ENSG00000140465 or ENSG00000140505 or ENSG00000165841 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000138061 or ENSG00000140465 or ENSG00000140505 or ENSG00000165841" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Tryptophan metabolism + - "Tryptophan metabolism" - confidence_score: 0 - !!omap - - id: HMR_3935 + - id: "HMR_3935" - name: "" - metabolites: !!omap - m01831c: -1 @@ -94638,15 +94638,15 @@ - m02152c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117305 - - rxnFrom: HMRdatabase - - eccodes: 4.4.1.22 - - references: + - gene_reaction_rule: "ENSG00000117305" + - rxnFrom: "HMRdatabase" + - eccodes: "4.4.1.22" + - references: "" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4681 + - id: "HMR_4681" - name: "" - metabolites: !!omap - m01596c: 1 @@ -94655,15 +94655,15 @@ - m02724c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000132437 - - rxnFrom: HMRdatabase - - eccodes: 4.1.1.28 - - references: + - gene_reaction_rule: "ENSG00000132437" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.1.28" + - references: "" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4682 + - id: "HMR_4682" - name: "" - metabolites: !!omap - m02039c: 1 @@ -94675,15 +94675,15 @@ - m02719c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000002726 or ENSG00000069535 or ENSG00000131471 or ENSG00000131480 or ENSG00000189221 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.4;1.4.3.21 - - references: + - gene_reaction_rule: "ENSG00000002726 or ENSG00000069535 or ENSG00000131471 or ENSG00000131480 or ENSG00000189221" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.4;1.4.3.21" + - references: "" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4683 + - id: "HMR_4683" - name: "" - metabolites: !!omap - m02039c: 2 @@ -94694,15 +94694,15 @@ - m02720c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.5;1.2.1.39 - - references: PMID:15230339 + - gene_reaction_rule: "ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.5;1.2.1.39" + - references: "PMID:15230339" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4685 + - id: "HMR_4685" - name: "" - metabolites: !!omap - m02039m: 2 @@ -94713,15 +94713,15 @@ - m02720m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.5;1.2.1.39 - - references: PMID:15230339 + - gene_reaction_rule: "ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.5;1.2.1.39" + - references: "PMID:15230339" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4686 + - id: "HMR_4686" - name: "" - metabolites: !!omap - m02039c: -2 @@ -94732,15 +94732,15 @@ - m02720c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.5 - - references: PMID:17379813;PMID:18621017 + - gene_reaction_rule: "ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.5" + - references: "PMID:17379813;PMID:18621017" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4687 + - id: "HMR_4687" - name: "" - metabolites: !!omap - m02039m: -2 @@ -94751,15 +94751,15 @@ - m02720m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.5 - - references: PMID:17379813;PMID:18621017 + - gene_reaction_rule: "ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.5" + - references: "PMID:17379813;PMID:18621017" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4702 + - id: "HMR_4702" - name: "" - metabolites: !!omap - m01596c: 1 @@ -94771,15 +94771,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 4.1.1.- - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.1.-" + - references: "" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4703 + - id: "HMR_4703" - name: "" - metabolites: !!omap - m00576c: 1 @@ -94790,15 +94790,15 @@ - m02553c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138356 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.29 - - references: PMID:11569919;PMID:16143537 + - gene_reaction_rule: "ENSG00000138356" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.29" + - references: "PMID:11569919;PMID:16143537" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4704 + - id: "HMR_4704" - name: "" - metabolites: !!omap - m00576c: 1 @@ -94809,15 +94809,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138356 - - rxnFrom: HMRdatabase - - eccodes: 1.2.3.1 - - references: PMID:11569919;PMID:16143537 + - gene_reaction_rule: "ENSG00000138356" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.3.1" + - references: "PMID:11569919;PMID:16143537" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6988 + - id: "HMR_6988" - name: "" - metabolites: !!omap - m02039c: -2 @@ -94827,15 +94827,15 @@ - m02175c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115705 - - rxnFrom: HMRdatabase - - eccodes: 1.11.1.8 - - references: + - gene_reaction_rule: "ENSG00000115705" + - rxnFrom: "HMRdatabase" + - eccodes: "1.11.1.8" + - references: "" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: HMR_7689 + - id: "HMR_7689" - name: "" - metabolites: !!omap - m01736c: -1 @@ -94845,15 +94845,15 @@ - m02682c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000196502 or ENSG00000197165 or ENSG00000213648 or ENSG00000261052 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.1 - - references: + - gene_reaction_rule: "ENSG00000196502 or ENSG00000197165 or ENSG00000213648 or ENSG00000261052" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.1" + - references: "" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: HMR_7701 + - id: "HMR_7701" - name: "" - metabolites: !!omap - m02039c: -1 @@ -94863,15 +94863,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137857 or ENSG00000140279 - - rxnFrom: HMRdatabase - - eccodes: 1.11.1.-;1.6.3.1 - - references: + - gene_reaction_rule: "ENSG00000137857 or ENSG00000140279" + - rxnFrom: "HMRdatabase" + - eccodes: "1.11.1.-;1.6.3.1" + - references: "" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8094 + - id: "HMR_8094" - name: "" - metabolites: !!omap - m02039c: 1 @@ -94881,15 +94881,15 @@ - m02682c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000261052 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000261052" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8529 + - id: "HMR_8529" - name: "" - metabolites: !!omap - m01831c: 1 @@ -94901,15 +94901,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000002726 or ENSG00000131471 or ENSG00000131480 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.6;1.4.3.21;1.4.3.22 - - references: + - gene_reaction_rule: "ENSG00000002726 or ENSG00000131471 or ENSG00000131480" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.6;1.4.3.21;1.4.3.22" + - references: "" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8530 + - id: "HMR_8530" - name: "" - metabolites: !!omap - m01831c: -1 @@ -94920,15 +94920,15 @@ - m02553c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147576 or ENSG00000172955 or ENSG00000187758 or ENSG00000196344 or ENSG00000196616 or ENSG00000197894 or ENSG00000198099 or ENSG00000248144 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.1 - - references: + - gene_reaction_rule: "ENSG00000147576 or ENSG00000172955 or ENSG00000187758 or ENSG00000196344 or ENSG00000196616 or ENSG00000197894 or ENSG00000198099 or ENSG00000248144" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.1" + - references: "" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8533 + - id: "HMR_8533" - name: "" - metabolites: !!omap - m00638c: -2 @@ -94937,15 +94937,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000077498 - - rxnFrom: HMRdatabase - - eccodes: 1.14.18.1 - - references: + - gene_reaction_rule: "ENSG00000077498" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.18.1" + - references: "" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8534 + - id: "HMR_8534" - name: "" - metabolites: !!omap - m00734c: 1 @@ -94955,15 +94955,15 @@ - m03052c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000196502 or ENSG00000197165 or ENSG00000213648 or ENSG00000261052 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.1 - - references: + - gene_reaction_rule: "ENSG00000196502 or ENSG00000197165 or ENSG00000213648 or ENSG00000261052" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.1" + - references: "" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8535 + - id: "HMR_8535" - name: "" - metabolites: !!omap - m02039c: 1 @@ -94973,15 +94973,15 @@ - m03100c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000196502 or ENSG00000197165 or ENSG00000213648 or ENSG00000261052 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.1 - - references: + - gene_reaction_rule: "ENSG00000196502 or ENSG00000197165 or ENSG00000213648 or ENSG00000261052" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.1" + - references: "" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8537 + - id: "HMR_8537" - name: "" - metabolites: !!omap - m00965c: 1 @@ -94991,15 +94991,15 @@ - m03101c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000180176 - - rxnFrom: HMRdatabase - - eccodes: 1.14.16.2 - - references: + - gene_reaction_rule: "ENSG00000180176" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.16.2" + - references: "" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8541 + - id: "HMR_8541" - name: "" - metabolites: !!omap - m02354c: 2 @@ -95007,15 +95007,15 @@ - m03101c: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000077498 - - rxnFrom: HMRdatabase - - eccodes: 1.14.18.1 - - references: + - gene_reaction_rule: "ENSG00000077498" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.18.1" + - references: "" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8542 + - id: "HMR_8542" - name: "" - metabolites: !!omap - m02040c: 2 @@ -95024,15 +95024,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000077498 - - rxnFrom: HMRdatabase - - eccodes: 1.14.18.1 - - references: + - gene_reaction_rule: "ENSG00000077498" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.18.1" + - references: "" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8543 + - id: "HMR_8543" - name: "" - metabolites: !!omap - m00739c: 1 @@ -95042,15 +95042,15 @@ - m02175c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115705 - - rxnFrom: HMRdatabase - - eccodes: 1.11.1.8 - - references: + - gene_reaction_rule: "ENSG00000115705" + - rxnFrom: "HMRdatabase" + - eccodes: "1.11.1.8" + - references: "" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8544 + - id: "HMR_8544" - name: "" - metabolites: !!omap - m00807c: 1 @@ -95060,15 +95060,15 @@ - m03101c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115705 - - rxnFrom: HMRdatabase - - eccodes: 1.11.1.8 - - references: + - gene_reaction_rule: "ENSG00000115705" + - rxnFrom: "HMRdatabase" + - eccodes: "1.11.1.8" + - references: "" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8630 + - id: "HMR_8630" - name: "" - metabolites: !!omap - m00981c: -2 @@ -95076,15 +95076,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000077498 - - rxnFrom: HMRdatabase - - eccodes: 1.14.18.1 - - references: + - gene_reaction_rule: "ENSG00000077498" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.18.1" + - references: "" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8540 + - id: "HMR_8540" - name: "" - metabolites: !!omap - m01053c: -1 @@ -95094,15 +95094,15 @@ - m03163c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: HMR_9733 + - id: "HMR_9733" - name: "" - metabolites: !!omap - m01596c: 1 @@ -95111,15 +95111,15 @@ - m03162c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: HMR_9734 + - id: "HMR_9734" - name: "" - metabolites: !!omap - m02040c: 2 @@ -95128,15 +95128,15 @@ - m03163c: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000077498 - - rxnFrom: HMRdatabase - - eccodes: 1.14.18.1 - - references: + - gene_reaction_rule: "ENSG00000077498" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.18.1" + - references: "" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3206 + - id: "HMR_3206" - name: "" - metabolites: !!omap - m00662m: -1 @@ -95145,15 +95145,15 @@ - m02774m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16 - - references: PMID:10064897;PMID:1121274;PMID:15043762;PMID:2575092;PMID:6378901;PMID:7958339 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16" + - references: "PMID:10064897;PMID:1121274;PMID:15043762;PMID:2575092;PMID:6378901;PMID:7958339" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3208 + - id: "HMR_3208" - name: "" - metabolites: !!omap - m01285m: 1 @@ -95165,15 +95165,15 @@ - m02774m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000114054 and ENSG00000175198 - - rxnFrom: HMRdatabase - - eccodes: 6.4.1.3 - - references: PMID:2740237;PMID:6765947 + - gene_reaction_rule: "ENSG00000114054 and ENSG00000175198" + - rxnFrom: "HMRdatabase" + - eccodes: "6.4.1.3" + - references: "PMID:2740237;PMID:6765947" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3211 + - id: "HMR_3211" - name: "" - metabolites: !!omap - m01265m: 1 @@ -95182,45 +95182,45 @@ - m03103m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117054 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.7 - - references: PMID:10502673;PMID:3597357;PMID:4062874 + - gene_reaction_rule: "ENSG00000117054" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.7" + - references: "PMID:10502673;PMID:3597357;PMID:4062874" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3213 + - id: "HMR_3213" - name: "" - metabolites: !!omap - m00166m: 1 - m02480m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000124370 - - rxnFrom: HMRdatabase - - eccodes: 5.1.99.1 - - references: PMID:11481338;PMID:2862845;PMID:3071715PMID:13934211;PMID:11481338 + - gene_reaction_rule: "ENSG00000124370" + - rxnFrom: "HMRdatabase" + - eccodes: "5.1.99.1" + - references: "PMID:11481338;PMID:2862845;PMID:3071715PMID:13934211;PMID:11481338" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3215 + - id: "HMR_3215" - name: "" - metabolites: !!omap - m00166m: -1 - m02944m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000146085 - - rxnFrom: HMRdatabase - - eccodes: 5.4.99.2 - - references: PMID:2453061;PMID:6124211;PMID:9285782 + - gene_reaction_rule: "ENSG00000146085" + - rxnFrom: "HMRdatabase" + - eccodes: "5.4.99.2" + - references: "PMID:2453061;PMID:6124211;PMID:9285782" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3747 + - id: "HMR_3747" - name: "" - metabolites: !!omap - m00824c: 1 @@ -95229,15 +95229,15 @@ - m03135c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060982 - - rxnFrom: HMRdatabase - - eccodes: 2.6.1.42 - - references: + - gene_reaction_rule: "ENSG00000060982" + - rxnFrom: "HMRdatabase" + - eccodes: "2.6.1.42" + - references: "" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3744 + - id: "HMR_3744" - name: "" - metabolites: !!omap - m00824m: 1 @@ -95246,15 +95246,15 @@ - m03135m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105552 - - rxnFrom: HMRdatabase - - eccodes: 2.6.1.42 - - references: PMID:12234469;PMID:12504794;PMID:8938168;PMID:9681479;PMID:974100 + - gene_reaction_rule: "ENSG00000105552" + - rxnFrom: "HMRdatabase" + - eccodes: "2.6.1.42" + - references: "PMID:12234469;PMID:12504794;PMID:8938168;PMID:9681479;PMID:974100" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3757 + - id: "HMR_3757" - name: "" - metabolites: !!omap - m00661m: 1 @@ -95264,15 +95264,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 or ENSG00000106049 or ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.31;1.1.1.35 - - references: PMID:10329704;PMID:10989433;PMID:16466957;PMID:16794601;PMID:6773478;PMID:8313870;PMID:8687463 + - gene_reaction_rule: "ENSG00000072506 or ENSG00000106049 or ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.31;1.1.1.35" + - references: "PMID:10329704;PMID:10989433;PMID:16466957;PMID:16794601;PMID:6773478;PMID:8313870;PMID:8687463" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3761 + - id: "HMR_3761" - name: "" - metabolites: !!omap - m00166m: 1 @@ -95283,15 +95283,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119711 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.18 - - references: PMID:10989432;PMID:2768248 + - gene_reaction_rule: "ENSG00000119711" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.18" + - references: "PMID:10989432;PMID:2768248" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3777 + - id: "HMR_3777" - name: "" - metabolites: !!omap - m00669c: 1 @@ -95300,15 +95300,15 @@ - m02184c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060982 - - rxnFrom: HMRdatabase - - eccodes: 2.6.1.42 - - references: + - gene_reaction_rule: "ENSG00000060982" + - rxnFrom: "HMRdatabase" + - eccodes: "2.6.1.42" + - references: "" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3778 + - id: "HMR_3778" - name: "" - metabolites: !!omap - m00669m: 1 @@ -95317,15 +95317,15 @@ - m02184m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105552 - - rxnFrom: HMRdatabase - - eccodes: 2.6.1.42 - - references: PMID:12234469;PMID:12504794;PMID:8938168;PMID:9681479;PMID:974100 + - gene_reaction_rule: "ENSG00000105552" + - rxnFrom: "HMRdatabase" + - eccodes: "2.6.1.42" + - references: "PMID:12234469;PMID:12504794;PMID:8938168;PMID:9681479;PMID:974100" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3795 + - id: "HMR_3795" - name: "" - metabolites: !!omap - m00661m: -1 @@ -95336,15 +95336,15 @@ - m02774m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119711 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.27 - - references: PMID:10989432;PMID:1527093;PMID:2768248;PMID:8120000 + - gene_reaction_rule: "ENSG00000119711" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.27" + - references: "PMID:10989432;PMID:1527093;PMID:2768248;PMID:8120000" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4797 + - id: "HMR_4797" - name: "" - metabolites: !!omap - m00661c: -1 @@ -95355,15 +95355,15 @@ - m02553c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000143149 or ENSG00000164904 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.3 - - references: PMID:10947204;PMID:10989432;PMID:1527093;PMID:16683190;PMID:8120000;PMID:8155713;PMID:8634152;PMID:9787093 + - gene_reaction_rule: "ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000143149 or ENSG00000164904" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.3" + - references: "PMID:10947204;PMID:10989432;PMID:1527093;PMID:16683190;PMID:8120000;PMID:8155713;PMID:8634152;PMID:9787093" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6417 + - id: "HMR_6417" - name: "" - metabolites: !!omap - m01597m: -1 @@ -95372,15 +95372,15 @@ - m02857m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137992 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.168 - - references: PMID:9665099;PMID:2699399;PMID:9665099;PMID:2699399 + - gene_reaction_rule: "ENSG00000137992" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.168" + - references: "PMID:9665099;PMID:2699399;PMID:9665099;PMID:2699399" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6419 + - id: "HMR_6419" - name: "" - metabolites: !!omap - m00669m: -1 @@ -95390,15 +95390,15 @@ - m02856m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000083123 and ENSG00000142046 and ENSG00000248098 - - rxnFrom: HMRdatabase - - eccodes: 1.2.4.4 - - references: PMID:11839747;PMID:12387880;PMID:15576032 + - gene_reaction_rule: "ENSG00000083123 and ENSG00000142046 and ENSG00000248098" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.4.4" + - references: "PMID:11839747;PMID:12387880;PMID:15576032" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6420 + - id: "HMR_6420" - name: "" - metabolites: !!omap - m00663m: 1 @@ -95407,15 +95407,15 @@ - m02856m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137992 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.168 - - references: PMID:1943690 + - gene_reaction_rule: "ENSG00000137992" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.168" + - references: "PMID:1943690" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6421 + - id: "HMR_6421" - name: "" - metabolites: !!omap - m01013m: -1 @@ -95425,15 +95425,15 @@ - m02858m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000083123 and ENSG00000142046 and ENSG00000248098 - - rxnFrom: HMRdatabase - - eccodes: 1.2.4.4 - - references: PMID:11839747;PMID:12387880;PMID:15576032 + - gene_reaction_rule: "ENSG00000083123 and ENSG00000142046 and ENSG00000248098" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.4.4" + - references: "PMID:11839747;PMID:12387880;PMID:15576032" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6422 + - id: "HMR_6422" - name: "" - metabolites: !!omap - m01597m: -1 @@ -95442,15 +95442,15 @@ - m02858m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137992 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.168 - - references: PMID:1943690 + - gene_reaction_rule: "ENSG00000137992" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.168" + - references: "PMID:1943690" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6923 + - id: "HMR_6923" - name: "" - metabolites: !!omap - m01013c: 1 @@ -95459,15 +95459,15 @@ - m02360c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060982 - - rxnFrom: HMRdatabase - - eccodes: 2.6.1.42;2.6.1.6 - - references: + - gene_reaction_rule: "ENSG00000060982" + - rxnFrom: "HMRdatabase" + - eccodes: "2.6.1.42;2.6.1.6" + - references: "" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3765 + - id: "HMR_3765" - name: "" - metabolites: !!omap - m01013m: 1 @@ -95476,15 +95476,15 @@ - m02360m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105552 - - rxnFrom: HMRdatabase - - eccodes: 2.6.1.42;2.6.1.6 - - references: PMID:12234469;PMID:12504794;PMID:8938168;PMID:9681479;PMID:974100 + - gene_reaction_rule: "ENSG00000105552" + - rxnFrom: "HMRdatabase" + - eccodes: "2.6.1.42;2.6.1.6" + - references: "PMID:12234469;PMID:12504794;PMID:8938168;PMID:9681479;PMID:974100" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6924 + - id: "HMR_6924" - name: "" - metabolites: !!omap - m01013c: -1 @@ -95493,15 +95493,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000179148 or ENSG00000179477 or ENSG00000188676 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.- - - references: PMID:11027593;PMID:11027593;PMID:11027593;PMID:11027593 + - gene_reaction_rule: "ENSG00000179148 or ENSG00000179477 or ENSG00000188676" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.-" + - references: "PMID:11027593;PMID:11027593;PMID:11027593;PMID:11027593" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6925 + - id: "HMR_6925" - name: "" - metabolites: !!omap - m01013c: -1 @@ -95511,15 +95511,15 @@ - m02553c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087076 or ENSG00000099377 or ENSG00000100867 or ENSG00000109854 or ENSG00000121039 or ENSG00000138400 or ENSG00000139988 or ENSG00000145439 or ENSG00000159692 or ENSG00000160439 or ENSG00000164039 or ENSG00000167733 or ENSG00000170426 or ENSG00000170786 or ENSG00000176387 or ENSG00000183921 or ENSG00000184860 or ENSG00000186153 or ENSG00000187134 or ENSG00000197894 or ENSG00000198074 or ENSG00000198189 or ENSG00000198610 or ENSG00000204228 or ENSG00000227471 or ENSG00000240857 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.- - - references: PMID:6434570;PMID:6688766 + - gene_reaction_rule: "ENSG00000087076 or ENSG00000099377 or ENSG00000100867 or ENSG00000109854 or ENSG00000121039 or ENSG00000138400 or ENSG00000139988 or ENSG00000145439 or ENSG00000159692 or ENSG00000160439 or ENSG00000164039 or ENSG00000167733 or ENSG00000170426 or ENSG00000170786 or ENSG00000176387 or ENSG00000183921 or ENSG00000184860 or ENSG00000186153 or ENSG00000187134 or ENSG00000197894 or ENSG00000198074 or ENSG00000198189 or ENSG00000198610 or ENSG00000204228 or ENSG00000227471 or ENSG00000240857" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.-" + - references: "PMID:6434570;PMID:6688766" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6926 + - id: "HMR_6926" - name: "" - metabolites: !!omap - m00667m: -1 @@ -95531,15 +95531,15 @@ - m02999m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000078070 and ENSG00000131844 - - rxnFrom: HMRdatabase - - eccodes: 6.4.1.4 - - references: PMID:7059658 + - gene_reaction_rule: "ENSG00000078070 and ENSG00000131844" + - rxnFrom: "HMRdatabase" + - eccodes: "6.4.1.4" + - references: "PMID:7059658" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6927 + - id: "HMR_6927" - name: "" - metabolites: !!omap - m00666m: -1 @@ -95549,15 +95549,15 @@ - m02040m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000078070 and ENSG00000131844 - - rxnFrom: HMRdatabase - - eccodes: 6.4.1.4 - - references: PMID:7059658 + - gene_reaction_rule: "ENSG00000078070 and ENSG00000131844" + - rxnFrom: "HMRdatabase" + - eccodes: "6.4.1.4" + - references: "PMID:7059658" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8088 + - id: "HMR_8088" - name: "" - metabolites: !!omap - m00661m: -1 @@ -95566,15 +95566,15 @@ - m02325m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000183044 - - rxnFrom: HMRdatabase - - eccodes: 2.6.1.22 - - references: + - gene_reaction_rule: "ENSG00000183044" + - rxnFrom: "HMRdatabase" + - eccodes: "2.6.1.22" + - references: "" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8787 + - id: "HMR_8787" - name: "" - metabolites: !!omap - m01596m: 1 @@ -95583,15 +95583,15 @@ - m02774m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103150 - - rxnFrom: HMRdatabase - - eccodes: 4.1.1.9 - - references: + - gene_reaction_rule: "ENSG00000103150" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.1.9" + - references: "" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3743 + - id: "HMR_3743" - name: "" - metabolites: !!omap - m01364m: 1 @@ -95601,15 +95601,15 @@ - m02558m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149124 or ENSG00000156689 or ENSG00000166840 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.13 - - references: PMID:10903396;PMID:10079066 + - gene_reaction_rule: "ENSG00000149124 or ENSG00000156689 or ENSG00000166840" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.13" + - references: "PMID:10903396;PMID:10079066" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_3940 + - id: "HMR_3940" - name: "" - metabolites: !!omap - m01698c: 1 @@ -95620,15 +95620,15 @@ - m03101c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171759 - - rxnFrom: HMRdatabase - - eccodes: 1.14.16.1 - - references: PMID:3298976;PMID:4074362 + - gene_reaction_rule: "ENSG00000171759" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.16.1" + - references: "PMID:3298976;PMID:4074362" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4214 + - id: "HMR_4214" - name: "" - metabolites: !!omap - m02371c: 1 @@ -95636,15 +95636,15 @@ - m03089c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000131203 or ENSG00000151790 or ENSG00000188676 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.11;1.13.11.52 - - references: PMID:10564724;PMID:446865;PMID:7514170 + - gene_reaction_rule: "ENSG00000131203 or ENSG00000151790 or ENSG00000188676" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.11;1.13.11.52" + - references: "PMID:10564724;PMID:446865;PMID:7514170" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4216 + - id: "HMR_4216" - name: "" - metabolites: !!omap - m01833c: 1 @@ -95654,15 +95654,15 @@ - m02371c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000183077 - - rxnFrom: HMRdatabase - - eccodes: 3.5.1.49;3.5.1.9 - - references: + - gene_reaction_rule: "ENSG00000183077" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.1.49;3.5.1.9" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4218 + - id: "HMR_4218" - name: "" - metabolites: !!omap - m01307c: 1 @@ -95672,15 +95672,15 @@ - m02371c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115919 - - rxnFrom: HMRdatabase - - eccodes: 3.7.1.3 - - references: PMID:11354681;PMID:162555;PMID:17334708;PMID:1772066;UNIPROT:Q16719 + - gene_reaction_rule: "ENSG00000115919" + - rxnFrom: "HMRdatabase" + - eccodes: "3.7.1.3" + - references: "PMID:11354681;PMID:162555;PMID:17334708;PMID:1772066;UNIPROT:Q16719" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4219 + - id: "HMR_4219" - name: "" - metabolites: !!omap - m01342c: 1 @@ -95690,15 +95690,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000183077 - - rxnFrom: HMRdatabase - - eccodes: 3.5.1.9 - - references: PMID:4140137;PMID:4190298 + - gene_reaction_rule: "ENSG00000183077" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.1.9" + - references: "PMID:4140137;PMID:4190298" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4220 + - id: "HMR_4220" - name: "" - metabolites: !!omap - m00788c: -1 @@ -95710,15 +95710,15 @@ - m02630c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117009 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.9 - - references: + - gene_reaction_rule: "ENSG00000117009" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.9" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4222 + - id: "HMR_4222" - name: "" - metabolites: !!omap - m00990c: -1 @@ -95728,15 +95728,15 @@ - m02319c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109576 or ENSG00000137944 or ENSG00000171097 - - rxnFrom: HMRdatabase - - eccodes: 2.6.1.7 - - references: PMID:10756023;PMID:10756023 + - gene_reaction_rule: "ENSG00000109576 or ENSG00000137944 or ENSG00000171097" + - rxnFrom: "HMRdatabase" + - eccodes: "2.6.1.7" + - references: "PMID:10756023;PMID:10756023" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4224 + - id: "HMR_4224" - name: "" - metabolites: !!omap - m01307c: 1 @@ -95746,15 +95746,15 @@ - m02319c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115919 - - rxnFrom: HMRdatabase - - eccodes: 3.7.1.3 - - references: PMID:12850267;PMID:2243296;PMID:2732805;PMID:377059;PMID:501446;PMID:6027578;PMID:6466295 + - gene_reaction_rule: "ENSG00000115919" + - rxnFrom: "HMRdatabase" + - eccodes: "3.7.1.3" + - references: "PMID:12850267;PMID:2243296;PMID:2732805;PMID:377059;PMID:501446;PMID:6027578;PMID:6466295" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4225 + - id: "HMR_4225" - name: "" - metabolites: !!omap - m00775c: 1 @@ -95763,15 +95763,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115919 - - rxnFrom: HMRdatabase - - eccodes: 3.7.1.3 - - references: + - gene_reaction_rule: "ENSG00000115919" + - rxnFrom: "HMRdatabase" + - eccodes: "3.7.1.3" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4227 + - id: "HMR_4227" - name: "" - metabolites: !!omap - m00775c: -2 @@ -95782,15 +95782,15 @@ - m02631c: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000121691 - - rxnFrom: HMRdatabase - - eccodes: 1.11.1.6 - - references: + - gene_reaction_rule: "ENSG00000121691" + - rxnFrom: "HMRdatabase" + - eccodes: "1.11.1.6" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4231 + - id: "HMR_4231" - name: "" - metabolites: !!omap - m00629c: -1 @@ -95799,15 +95799,15 @@ - m02039c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000153086 - - rxnFrom: HMRdatabase - - eccodes: 4.1.1.45 - - references: PMID:12140278 + - gene_reaction_rule: "ENSG00000153086" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.1.45" + - references: "PMID:12140278" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4232 + - id: "HMR_4232" - name: "" - metabolites: !!omap - m00633c: -1 @@ -95816,15 +95816,15 @@ - m02752c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:9291104 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:9291104" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4233 + - id: "HMR_4233" - name: "" - metabolites: !!omap - m00633c: -1 @@ -95835,15 +95835,15 @@ - m02553c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.32 - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.32" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4235 + - id: "HMR_4235" - name: "" - metabolites: !!omap - m00634c: -1 @@ -95854,15 +95854,15 @@ - m02578c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 1.5.1.- - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.1.-" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4242 + - id: "HMR_4242" - name: "" - metabolites: !!omap - m01596m: 1 @@ -95873,15 +95873,15 @@ - m03103m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105607 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.6 - - references: PMID:3081514 + - gene_reaction_rule: "ENSG00000105607" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.6" + - references: "PMID:3081514" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4243 + - id: "HMR_4243" - name: "" - metabolites: !!omap - m01596m: 1 @@ -95892,15 +95892,15 @@ - m02039m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105607 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.6 - - references: + - gene_reaction_rule: "ENSG00000105607" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.6" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4244 + - id: "HMR_4244" - name: "" - metabolites: !!omap - m00788c: -1 @@ -95909,15 +95909,15 @@ - m01974c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109576 or ENSG00000137944 or ENSG00000171097 - - rxnFrom: HMRdatabase - - eccodes: 2.6.1.7 - - references: PMID:1017797;UNIPROT:Q16773;UNIPROT:Q8N5Z0 + - gene_reaction_rule: "ENSG00000109576 or ENSG00000137944 or ENSG00000171097" + - rxnFrom: "HMRdatabase" + - eccodes: "2.6.1.7" + - references: "PMID:1017797;UNIPROT:Q16773;UNIPROT:Q8N5Z0" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4245 + - id: "HMR_4245" - name: "" - metabolites: !!omap - m00924c: -1 @@ -95925,15 +95925,15 @@ - m03151c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:18124509;PMID:6027578 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:18124509;PMID:6027578" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4246 + - id: "HMR_4246" - name: "" - metabolites: !!omap - m00788c: -1 @@ -95943,15 +95943,15 @@ - m03151c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109576 or ENSG00000137944 or ENSG00000171097 - - rxnFrom: HMRdatabase - - eccodes: 2.6.1.7 - - references: PMID:10559215;PMID:8908429 + - gene_reaction_rule: "ENSG00000109576 or ENSG00000137944 or ENSG00000171097" + - rxnFrom: "HMRdatabase" + - eccodes: "2.6.1.7" + - references: "PMID:10559215;PMID:8908429" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4248 + - id: "HMR_4248" - name: "" - metabolites: !!omap - m02039c: -1 @@ -95959,15 +95959,15 @@ - m03151c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:8986443;PMID:8908429 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:8986443;PMID:8908429" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6707 + - id: "HMR_6707" - name: "" - metabolites: !!omap - m01596c: 1 @@ -95976,15 +95976,15 @@ - m03089c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000132437 - - rxnFrom: HMRdatabase - - eccodes: 4.1.1.28 - - references: + - gene_reaction_rule: "ENSG00000132437" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.1.28" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6708 + - id: "HMR_6708" - name: "" - metabolites: !!omap - m00221c: -1 @@ -95993,15 +95993,15 @@ - m03089c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10493906 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10493906" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6709 + - id: "HMR_6709" - name: "" - metabolites: !!omap - m01384c: -1 @@ -96009,15 +96009,15 @@ - m03089c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6710 + - id: "HMR_6710" - name: "" - metabolites: !!omap - m01384c: -1 @@ -96027,15 +96027,15 @@ - m02877c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000100462 and ENSG00000126457) or ENSG00000010165 or ENSG00000029639 or ENSG00000059588 or ENSG00000066651 or ENSG00000067365 or ENSG00000068438 or ENSG00000071462 or ENSG00000087995 or ENSG00000100483 or ENSG00000101247 or ENSG00000101574 or ENSG00000103037 or ENSG00000105202 or ENSG00000108592 or ENSG00000110871 or ENSG00000111218 or ENSG00000111641 or ENSG00000114735 or ENSG00000117481 or ENSG00000122435 or ENSG00000122687 or ENSG00000123427 or ENSG00000123600 or ENSG00000126749 or ENSG00000127804 or ENSG00000130305 or ENSG00000132275 or ENSG00000132600 or ENSG00000137574 or ENSG00000137760 or ENSG00000138382 or ENSG00000139160 or ENSG00000139780 or ENSG00000142453 or ENSG00000143499 or ENSG00000144401 or ENSG00000145194 or ENSG00000145331 or ENSG00000145388 or ENSG00000146834 or ENSG00000150456 or ENSG00000156239 or ENSG00000160310 or ENSG00000162623 or ENSG00000162851 or ENSG00000164169 or ENSG00000165055 or ENSG00000165275 or ENSG00000165644 or ENSG00000165792 or ENSG00000168806 or ENSG00000169519 or ENSG00000170439 or ENSG00000171806 or ENSG00000171861 or ENSG00000174173 or ENSG00000178694 or ENSG00000179299 or ENSG00000180917 or ENSG00000181038 or ENSG00000181090 or ENSG00000183955 or ENSG00000185238 or ENSG00000185432 or ENSG00000186666 or ENSG00000188573 or ENSG00000198890 or ENSG00000203791 or ENSG00000204371 or ENSG00000205629 or ENSG00000206562 or ENSG00000214756 or ENSG00000241058 or ENSG00000250305 or ENSG00000278619 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.- - - references: PMID:1528988 + - gene_reaction_rule: "(ENSG00000100462 and ENSG00000126457) or ENSG00000010165 or ENSG00000029639 or ENSG00000059588 or ENSG00000066651 or ENSG00000067365 or ENSG00000068438 or ENSG00000071462 or ENSG00000087995 or ENSG00000100483 or ENSG00000101247 or ENSG00000101574 or ENSG00000103037 or ENSG00000105202 or ENSG00000108592 or ENSG00000110871 or ENSG00000111218 or ENSG00000111641 or ENSG00000114735 or ENSG00000117481 or ENSG00000122435 or ENSG00000122687 or ENSG00000123427 or ENSG00000123600 or ENSG00000126749 or ENSG00000127804 or ENSG00000130305 or ENSG00000132275 or ENSG00000132600 or ENSG00000137574 or ENSG00000137760 or ENSG00000138382 or ENSG00000139160 or ENSG00000139780 or ENSG00000142453 or ENSG00000143499 or ENSG00000144401 or ENSG00000145194 or ENSG00000145331 or ENSG00000145388 or ENSG00000146834 or ENSG00000150456 or ENSG00000156239 or ENSG00000160310 or ENSG00000162623 or ENSG00000162851 or ENSG00000164169 or ENSG00000165055 or ENSG00000165275 or ENSG00000165644 or ENSG00000165792 or ENSG00000168806 or ENSG00000169519 or ENSG00000170439 or ENSG00000171806 or ENSG00000171861 or ENSG00000174173 or ENSG00000178694 or ENSG00000179299 or ENSG00000180917 or ENSG00000181038 or ENSG00000181090 or ENSG00000183955 or ENSG00000185238 or ENSG00000185432 or ENSG00000186666 or ENSG00000188573 or ENSG00000198890 or ENSG00000203791 or ENSG00000204371 or ENSG00000205629 or ENSG00000206562 or ENSG00000214756 or ENSG00000241058 or ENSG00000250305 or ENSG00000278619" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.-" + - references: "PMID:1528988" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6711 + - id: "HMR_6711" - name: "" - metabolites: !!omap - m02039c: 1 @@ -96045,15 +96045,15 @@ - m03088c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000241644 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.49 - - references: + - gene_reaction_rule: "ENSG00000241644" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.49" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6712 + - id: "HMR_6712" - name: "" - metabolites: !!omap - m00230c: -1 @@ -96062,15 +96062,15 @@ - m03088c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:8891913 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:8891913" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6713 + - id: "HMR_6713" - name: "" - metabolites: !!omap - m02039c: 1 @@ -96082,15 +96082,15 @@ - m03088c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000002726 or ENSG00000069535 or ENSG00000189221 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.4;1.4.3.22 - - references: + - gene_reaction_rule: "ENSG00000002726 or ENSG00000069535 or ENSG00000189221" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.4;1.4.3.22" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6714 + - id: "HMR_6714" - name: "" - metabolites: !!omap - m02039c: 2 @@ -96101,15 +96101,15 @@ - m02553c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000143149 or ENSG00000164904 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000143149 or ENSG00000164904" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.3" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6715 + - id: "HMR_6715" - name: "" - metabolites: !!omap - m02169c: -1 @@ -96118,15 +96118,15 @@ - m02877c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000093010 or ENSG00000184154 or ENSG00000284844 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.6 - - references: PMID:8527006 + - gene_reaction_rule: "ENSG00000093010 or ENSG00000184154 or ENSG00000284844" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.6" + - references: "PMID:8527006" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6716 + - id: "HMR_6716" - name: "" - metabolites: !!omap - m01107c: -1 @@ -96134,15 +96134,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000131203 or ENSG00000188676 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.52 - - references: + - gene_reaction_rule: "ENSG00000131203 or ENSG00000188676" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.52" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6717 + - id: "HMR_6717" - name: "" - metabolites: !!omap - m01106c: 1 @@ -96152,15 +96152,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000183077 - - rxnFrom: HMRdatabase - - eccodes: 3.5.1.9 - - references: + - gene_reaction_rule: "ENSG00000183077" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.1.9" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6718 + - id: "HMR_6718" - name: "" - metabolites: !!omap - m01105c: 1 @@ -96169,15 +96169,15 @@ - m02039c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000132437 - - rxnFrom: HMRdatabase - - eccodes: 4.1.1.28 - - references: + - gene_reaction_rule: "ENSG00000132437" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.1.28" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6719 + - id: "HMR_6719" - name: "" - metabolites: !!omap - m00947c: 1 @@ -96188,15 +96188,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000069535 or ENSG00000189221 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.4 - - references: + - gene_reaction_rule: "ENSG00000069535 or ENSG00000189221" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.4" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6720 + - id: "HMR_6720" - name: "" - metabolites: !!omap - m00787c: 1 @@ -96206,15 +96206,15 @@ - m03109c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6721 + - id: "HMR_6721" - name: "" - metabolites: !!omap - m00787c: -1 @@ -96224,15 +96224,15 @@ - m02578c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 3.5.4.- - - references: PMID:10409626 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.4.-" + - references: "PMID:10409626" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6722 + - id: "HMR_6722" - name: "" - metabolites: !!omap - m00787c: -1 @@ -96242,15 +96242,15 @@ - m03152c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169154 - - rxnFrom: HMRdatabase - - eccodes: 2.6.1.- - - references: PMID:10409626 + - gene_reaction_rule: "ENSG00000169154" + - rxnFrom: "HMRdatabase" + - eccodes: "2.6.1.-" + - references: "PMID:10409626" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6723 + - id: "HMR_6723" - name: "" - metabolites: !!omap - m00787c: -1 @@ -96259,15 +96259,15 @@ - m02040c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: PMID:10409626 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "PMID:10409626" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6725 + - id: "HMR_6725" - name: "" - metabolites: !!omap - m01306c: -1 @@ -96276,15 +96276,15 @@ - m02725c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120053 or ENSG00000125166 or ENSG00000198650 - - rxnFrom: HMRdatabase - - eccodes: 2.6.1.1;2.6.1.5;2.6.1.57 - - references: + - gene_reaction_rule: "ENSG00000120053 or ENSG00000125166 or ENSG00000198650" + - rxnFrom: "HMRdatabase" + - eccodes: "2.6.1.1;2.6.1.5;2.6.1.57" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6726 + - id: "HMR_6726" - name: "" - metabolites: !!omap - m00654c: 1 @@ -96293,30 +96293,30 @@ - m02725c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000158104 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.27 - - references: + - gene_reaction_rule: "ENSG00000158104" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.27" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6727 + - id: "HMR_6727" - name: "" - metabolites: !!omap - m00647c: 1 - m02725c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000240972 - - rxnFrom: HMRdatabase - - eccodes: 5.3.2.1 - - references: + - gene_reaction_rule: "ENSG00000240972" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.2.1" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6728 + - id: "HMR_6728" - name: "" - metabolites: !!omap - m01698c: 1 @@ -96327,15 +96327,15 @@ - m03101c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000180176 - - rxnFrom: HMRdatabase - - eccodes: 1.14.16.2 - - references: + - gene_reaction_rule: "ENSG00000180176" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.16.2" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6729 + - id: "HMR_6729" - name: "" - metabolites: !!omap - m02039c: -2 @@ -96345,15 +96345,15 @@ - m03101c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000077498 - - rxnFrom: HMRdatabase - - eccodes: 1.14.18.1 - - references: + - gene_reaction_rule: "ENSG00000077498" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.18.1" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6730 + - id: "HMR_6730" - name: "" - metabolites: !!omap - m00830c: 1 @@ -96363,15 +96363,15 @@ - m02877c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000093010 or ENSG00000184154 or ENSG00000284844 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.6 - - references: PMID:12075857 + - gene_reaction_rule: "ENSG00000093010 or ENSG00000184154 or ENSG00000284844" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.6" + - references: "PMID:12075857" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6731 + - id: "HMR_6731" - name: "" - metabolites: !!omap - m01596c: 1 @@ -96380,15 +96380,15 @@ - m02354c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000132437 - - rxnFrom: HMRdatabase - - eccodes: 4.1.1.28 - - references: + - gene_reaction_rule: "ENSG00000132437" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.1.28" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6734 + - id: "HMR_6734" - name: "" - metabolites: !!omap - m01249c: 1 @@ -96397,15 +96397,15 @@ - m02875c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:8891913;PMID:10556560;PMID:8891913;PMID:10556560;PMID:8891913;PMID:10556560 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:8891913;PMID:10556560;PMID:8891913;PMID:10556560;PMID:8891913;PMID:10556560" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6735 + - id: "HMR_6735" - name: "" - metabolites: !!omap - m02039c: 1 @@ -96415,15 +96415,15 @@ - m02877c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000093010 or ENSG00000184154 or ENSG00000284844 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.6 - - references: PMID:8891913;PMID:10556560;PMID:8891913;PMID:10556560;PMID:10556560;PMID:8891913;PMID:8891913;PMID:10556560 + - gene_reaction_rule: "ENSG00000093010 or ENSG00000184154 or ENSG00000284844" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.6" + - references: "PMID:8891913;PMID:10556560;PMID:8891913;PMID:10556560;PMID:10556560;PMID:8891913;PMID:8891913;PMID:10556560" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6736 + - id: "HMR_6736" - name: "" - metabolites: !!omap - m02039c: 1 @@ -96433,15 +96433,15 @@ - m02877c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000093010 or ENSG00000184154 or ENSG00000284844 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.6 - - references: PMID:10556560;PMID:8891913;PMID:10556560;PMID:8891913;PMID:10556560;PMID:8891913;PMID:10556560;PMID:8891913 + - gene_reaction_rule: "ENSG00000093010 or ENSG00000184154 or ENSG00000284844" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.6" + - references: "PMID:10556560;PMID:8891913;PMID:10556560;PMID:8891913;PMID:10556560;PMID:8891913;PMID:10556560;PMID:8891913" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6737 + - id: "HMR_6737" - name: "" - metabolites: !!omap - m00156c: 1 @@ -96451,15 +96451,15 @@ - m02877c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000100462 and ENSG00000126457) or ENSG00000010165 or ENSG00000029639 or ENSG00000059588 or ENSG00000066651 or ENSG00000067365 or ENSG00000068438 or ENSG00000071462 or ENSG00000087995 or ENSG00000100483 or ENSG00000101247 or ENSG00000101574 or ENSG00000103037 or ENSG00000105202 or ENSG00000108592 or ENSG00000110871 or ENSG00000111218 or ENSG00000111641 or ENSG00000114735 or ENSG00000117481 or ENSG00000122435 or ENSG00000122687 or ENSG00000123427 or ENSG00000123600 or ENSG00000126749 or ENSG00000127804 or ENSG00000130305 or ENSG00000132275 or ENSG00000132600 or ENSG00000137574 or ENSG00000137760 or ENSG00000138382 or ENSG00000139160 or ENSG00000139780 or ENSG00000142453 or ENSG00000143499 or ENSG00000144401 or ENSG00000145194 or ENSG00000145331 or ENSG00000145388 or ENSG00000146834 or ENSG00000150456 or ENSG00000156239 or ENSG00000160310 or ENSG00000162623 or ENSG00000162851 or ENSG00000164169 or ENSG00000165055 or ENSG00000165275 or ENSG00000165644 or ENSG00000165792 or ENSG00000168806 or ENSG00000169519 or ENSG00000170439 or ENSG00000171806 or ENSG00000171861 or ENSG00000174173 or ENSG00000178694 or ENSG00000179299 or ENSG00000180917 or ENSG00000181038 or ENSG00000181090 or ENSG00000183955 or ENSG00000185238 or ENSG00000185432 or ENSG00000186666 or ENSG00000188573 or ENSG00000198890 or ENSG00000203791 or ENSG00000204371 or ENSG00000205629 or ENSG00000206562 or ENSG00000214756 or ENSG00000241058 or ENSG00000250305 or ENSG00000278619 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.- - - references: PMID:11008878 + - gene_reaction_rule: "(ENSG00000100462 and ENSG00000126457) or ENSG00000010165 or ENSG00000029639 or ENSG00000059588 or ENSG00000066651 or ENSG00000067365 or ENSG00000068438 or ENSG00000071462 or ENSG00000087995 or ENSG00000100483 or ENSG00000101247 or ENSG00000101574 or ENSG00000103037 or ENSG00000105202 or ENSG00000108592 or ENSG00000110871 or ENSG00000111218 or ENSG00000111641 or ENSG00000114735 or ENSG00000117481 or ENSG00000122435 or ENSG00000122687 or ENSG00000123427 or ENSG00000123600 or ENSG00000126749 or ENSG00000127804 or ENSG00000130305 or ENSG00000132275 or ENSG00000132600 or ENSG00000137574 or ENSG00000137760 or ENSG00000138382 or ENSG00000139160 or ENSG00000139780 or ENSG00000142453 or ENSG00000143499 or ENSG00000144401 or ENSG00000145194 or ENSG00000145331 or ENSG00000145388 or ENSG00000146834 or ENSG00000150456 or ENSG00000156239 or ENSG00000160310 or ENSG00000162623 or ENSG00000162851 or ENSG00000164169 or ENSG00000165055 or ENSG00000165275 or ENSG00000165644 or ENSG00000165792 or ENSG00000168806 or ENSG00000169519 or ENSG00000170439 or ENSG00000171806 or ENSG00000171861 or ENSG00000174173 or ENSG00000178694 or ENSG00000179299 or ENSG00000180917 or ENSG00000181038 or ENSG00000181090 or ENSG00000183955 or ENSG00000185238 or ENSG00000185432 or ENSG00000186666 or ENSG00000188573 or ENSG00000198890 or ENSG00000203791 or ENSG00000204371 or ENSG00000205629 or ENSG00000206562 or ENSG00000214756 or ENSG00000241058 or ENSG00000250305 or ENSG00000278619" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.-" + - references: "PMID:11008878" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6738 + - id: "HMR_6738" - name: "" - metabolites: !!omap - m01736c: 1 @@ -96468,15 +96468,15 @@ - m02876c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10556560;PMID:10556560;PMID:8891914;PMID:8891914;PMID:8891914;PMID:10556560 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10556560;PMID:10556560;PMID:8891914;PMID:8891914;PMID:8891914;PMID:10556560" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6739 + - id: "HMR_6739" - name: "" - metabolites: !!omap - m02039c: 1 @@ -96486,15 +96486,15 @@ - m02877c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000093010 or ENSG00000184154 or ENSG00000284844 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.6 - - references: PMID:8891913;PMID:10556560;PMID:10556560;PMID:8891913;PMID:10556560;PMID:10556560;PMID:8891913;PMID:8891913 + - gene_reaction_rule: "ENSG00000093010 or ENSG00000184154 or ENSG00000284844" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.6" + - references: "PMID:8891913;PMID:10556560;PMID:10556560;PMID:8891913;PMID:10556560;PMID:10556560;PMID:8891913;PMID:8891913" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6740 + - id: "HMR_6740" - name: "" - metabolites: !!omap - m00231c: 1 @@ -96503,15 +96503,15 @@ - m02876c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000132437 - - rxnFrom: HMRdatabase - - eccodes: 4.1.1.28 - - references: PMID:10556560;PMID:8891913;PMID:10556560;PMID:8891913;PMID:10556560;PMID:8891913;PMID:10556560;PMID:8891913 + - gene_reaction_rule: "ENSG00000132437" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.1.28" + - references: "PMID:10556560;PMID:8891913;PMID:10556560;PMID:8891913;PMID:10556560;PMID:8891913;PMID:10556560;PMID:8891913" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6741 + - id: "HMR_6741" - name: "" - metabolites: !!omap - m01368c: -1 @@ -96522,15 +96522,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123454 - - rxnFrom: HMRdatabase - - eccodes: 1.14.17.1 - - references: + - gene_reaction_rule: "ENSG00000123454" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.17.1" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6742 + - id: "HMR_6742" - name: "" - metabolites: !!omap - m00945c: -1 @@ -96539,15 +96539,15 @@ - m02617c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:8891913 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:8891913" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6743 + - id: "HMR_6743" - name: "" - metabolites: !!omap - m01290c: 1 @@ -96557,15 +96557,15 @@ - m02877c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000141744 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.28 - - references: + - gene_reaction_rule: "ENSG00000141744" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.28" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6744 + - id: "HMR_6744" - name: "" - metabolites: !!omap - m01290c: 1 @@ -96575,15 +96575,15 @@ - m02599c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:8891913 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:8891913" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6745 + - id: "HMR_6745" - name: "" - metabolites: !!omap - m00726c: 1 @@ -96594,15 +96594,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000069535 or ENSG00000189221 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.4 - - references: + - gene_reaction_rule: "ENSG00000069535 or ENSG00000189221" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.4" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6746 + - id: "HMR_6746" - name: "" - metabolites: !!omap - m01290c: -1 @@ -96612,15 +96612,15 @@ - m02877c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000093010 or ENSG00000184154 or ENSG00000284844 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.6 - - references: + - gene_reaction_rule: "ENSG00000093010 or ENSG00000184154 or ENSG00000284844" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.6" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6747 + - id: "HMR_6747" - name: "" - metabolites: !!omap - m00820c: 1 @@ -96631,15 +96631,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000069535 or ENSG00000189221 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.4 - - references: + - gene_reaction_rule: "ENSG00000069535 or ENSG00000189221" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.4" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6748 + - id: "HMR_6748" - name: "" - metabolites: !!omap - m00820c: -1 @@ -96650,15 +96650,15 @@ - m03136c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.5 - - references: PMID:17379813;PMID:18621017 + - gene_reaction_rule: "ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.5" + - references: "PMID:17379813;PMID:18621017" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6749 + - id: "HMR_6749" - name: "" - metabolites: !!omap - m00820c: -1 @@ -96669,15 +96669,15 @@ - m03136c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.5 - - references: PMID:17379813;PMID:18621017 + - gene_reaction_rule: "ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.5" + - references: "PMID:17379813;PMID:18621017" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6750 + - id: "HMR_6750" - name: "" - metabolites: !!omap - m02039c: 1 @@ -96687,15 +96687,15 @@ - m02877c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000093010 or ENSG00000184154 or ENSG00000284844 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.6 - - references: + - gene_reaction_rule: "ENSG00000093010 or ENSG00000184154 or ENSG00000284844" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.6" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6751 + - id: "HMR_6751" - name: "" - metabolites: !!omap - m00820c: 1 @@ -96707,15 +96707,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000069535 or ENSG00000189221 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.4 - - references: + - gene_reaction_rule: "ENSG00000069535 or ENSG00000189221" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.4" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6752 + - id: "HMR_6752" - name: "" - metabolites: !!omap - m00726c: 1 @@ -96727,15 +96727,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000069535 or ENSG00000189221 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.4 - - references: + - gene_reaction_rule: "ENSG00000069535 or ENSG00000189221" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.4" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6753 + - id: "HMR_6753" - name: "" - metabolites: !!omap - m00726c: -1 @@ -96746,15 +96746,15 @@ - m02553c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.5 - - references: PMID:10424772;PMID:11958479;PMID:3466164 + - gene_reaction_rule: "ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.5" + - references: "PMID:10424772;PMID:11958479;PMID:3466164" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6754 + - id: "HMR_6754" - name: "" - metabolites: !!omap - m00726c: -1 @@ -96765,15 +96765,15 @@ - m02555c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.5 - - references: PMID:11790142;PMID:12604221 + - gene_reaction_rule: "ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.5" + - references: "PMID:11790142;PMID:12604221" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6755 + - id: "HMR_6755" - name: "" - metabolites: !!omap - m00727c: -1 @@ -96783,15 +96783,15 @@ - m03136c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000093010 or ENSG00000184154 or ENSG00000284844 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.6 - - references: + - gene_reaction_rule: "ENSG00000093010 or ENSG00000184154 or ENSG00000284844" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.6" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6756 + - id: "HMR_6756" - name: "" - metabolites: !!omap - m00726c: -1 @@ -96801,15 +96801,15 @@ - m02553c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147576 or ENSG00000172955 or ENSG00000187758 or ENSG00000196344 or ENSG00000196616 or ENSG00000197894 or ENSG00000198099 or ENSG00000248144 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.1 - - references: + - gene_reaction_rule: "ENSG00000147576 or ENSG00000172955 or ENSG00000187758 or ENSG00000196344 or ENSG00000196616 or ENSG00000197894 or ENSG00000198099 or ENSG00000248144" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.1" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6757 + - id: "HMR_6757" - name: "" - metabolites: !!omap - m00730c: -1 @@ -96819,15 +96819,15 @@ - m02877c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000093010 or ENSG00000184154 or ENSG00000284844 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.6 - - references: + - gene_reaction_rule: "ENSG00000093010 or ENSG00000184154 or ENSG00000284844" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.6" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6758 + - id: "HMR_6758" - name: "" - metabolites: !!omap - m00728c: 1 @@ -96839,15 +96839,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000002726 or ENSG00000069535 or ENSG00000131471 or ENSG00000131480 or ENSG00000189221 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.4;1.4.3.6;1.4.3.21;1.4.3.22 - - references: + - gene_reaction_rule: "ENSG00000002726 or ENSG00000069535 or ENSG00000131471 or ENSG00000131480 or ENSG00000189221" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.4;1.4.3.6;1.4.3.21;1.4.3.22" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6759 + - id: "HMR_6759" - name: "" - metabolites: !!omap - m00728c: -1 @@ -96856,15 +96856,15 @@ - m02621c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.78 - - references: PMID:8891913;PMID:10556560;PMID:8891913;PMID:8891913;PMID:10556560;PMID:10556560 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.78" + - references: "PMID:8891913;PMID:10556560;PMID:8891913;PMID:8891913;PMID:10556560;PMID:10556560" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6760 + - id: "HMR_6760" - name: "" - metabolites: !!omap - m00728c: -1 @@ -96875,15 +96875,15 @@ - m02553c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.5 - - references: + - gene_reaction_rule: "ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.5" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6761 + - id: "HMR_6761" - name: "" - metabolites: !!omap - m00728c: -1 @@ -96894,15 +96894,15 @@ - m02555c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.5 - - references: + - gene_reaction_rule: "ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.5" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6762 + - id: "HMR_6762" - name: "" - metabolites: !!omap - m00729c: -1 @@ -96912,15 +96912,15 @@ - m02877c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000093010 or ENSG00000184154 or ENSG00000284844 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.6 - - references: + - gene_reaction_rule: "ENSG00000093010 or ENSG00000184154 or ENSG00000284844" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.6" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6763 + - id: "HMR_6763" - name: "" - metabolites: !!omap - m00821c: 1 @@ -96930,15 +96930,15 @@ - m02877c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000093010 or ENSG00000184154 or ENSG00000284844 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.6 - - references: + - gene_reaction_rule: "ENSG00000093010 or ENSG00000184154 or ENSG00000284844" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.6" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6764 + - id: "HMR_6764" - name: "" - metabolites: !!omap - m00818c: 1 @@ -96950,15 +96950,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000069535 or ENSG00000189221 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.4 - - references: + - gene_reaction_rule: "ENSG00000069535 or ENSG00000189221" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.4" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6765 + - id: "HMR_6765" - name: "" - metabolites: !!omap - m00821c: -1 @@ -96967,15 +96967,15 @@ - m02603c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:8891913;PMID:10556560;PMID:8891913;PMID:8891913;PMID:10556560;PMID:10556560 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:8891913;PMID:10556560;PMID:8891913;PMID:8891913;PMID:10556560;PMID:10556560" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6766 + - id: "HMR_6766" - name: "" - metabolites: !!omap - m00818c: -1 @@ -96986,15 +96986,15 @@ - m02553c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.5 - - references: PMID:17379813;PMID:18621017 + - gene_reaction_rule: "ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.5" + - references: "PMID:17379813;PMID:18621017" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6767 + - id: "HMR_6767" - name: "" - metabolites: !!omap - m00818c: -1 @@ -97005,15 +97005,15 @@ - m02555c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.5 - - references: PMID:1898068 + - gene_reaction_rule: "ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.5" + - references: "PMID:1898068" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6768 + - id: "HMR_6768" - name: "" - metabolites: !!omap - m01005c: 1 @@ -97022,15 +97022,15 @@ - m03101c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120053 or ENSG00000125166 or ENSG00000198650 - - rxnFrom: HMRdatabase - - eccodes: 2.6.1.1;2.6.1.5;2.6.1.57 - - references: PMID:15865;PMID:3207426;PMID:4396841;PMID:7719646;PMID:7999802 + - gene_reaction_rule: "ENSG00000120053 or ENSG00000125166 or ENSG00000198650" + - rxnFrom: "HMRdatabase" + - eccodes: "2.6.1.1;2.6.1.5;2.6.1.57" + - references: "PMID:15865;PMID:3207426;PMID:4396841;PMID:7719646;PMID:7999802" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6770 + - id: "HMR_6770" - name: "" - metabolites: !!omap - m01005c: 1 @@ -97042,30 +97042,30 @@ - m03101c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104951 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.2 - - references: PMID:15865;PMID:3207426;PMID:4396841;PMID:7719646;PMID:7999802 + - gene_reaction_rule: "ENSG00000104951" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.2" + - references: "PMID:15865;PMID:3207426;PMID:4396841;PMID:7719646;PMID:7999802" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6771 + - id: "HMR_6771" - name: "" - metabolites: !!omap - m00643c: 1 - m01005c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000240972 - - rxnFrom: HMRdatabase - - eccodes: 5.3.2.1 - - references: + - gene_reaction_rule: "ENSG00000240972" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.2.1" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6772 + - id: "HMR_6772" - name: "" - metabolites: !!omap - m01005c: -1 @@ -97074,15 +97074,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000158104 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.27 - - references: PMID:2014797;PMID:3037254;PMID:4627454 + - gene_reaction_rule: "ENSG00000158104" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.27" + - references: "PMID:2014797;PMID:3037254;PMID:4627454" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6774 + - id: "HMR_6774" - name: "" - metabolites: !!omap - m01010c: 1 @@ -97091,30 +97091,30 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113924 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.5 - - references: PMID:7705358;PMID:9244427 + - gene_reaction_rule: "ENSG00000113924" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.5" + - references: "PMID:7705358;PMID:9244427" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6776 + - id: "HMR_6776" - name: "" - metabolites: !!omap - m01010c: -1 - m01863c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100577 - - rxnFrom: HMRdatabase - - eccodes: 5.2.1.2 - - references: + - gene_reaction_rule: "ENSG00000100577" + - rxnFrom: "HMRdatabase" + - eccodes: "5.2.1.2" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6778 + - id: "HMR_6778" - name: "" - metabolites: !!omap - m01253c: 1 @@ -97124,15 +97124,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103876 - - rxnFrom: HMRdatabase - - eccodes: 3.7.1.2 - - references: PMID:8364576 + - gene_reaction_rule: "ENSG00000103876" + - rxnFrom: "HMRdatabase" + - eccodes: "3.7.1.2" + - references: "PMID:8364576" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6782 + - id: "HMR_6782" - name: "" - metabolites: !!omap - m01004c: 1 @@ -97142,15 +97142,15 @@ - m02553c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.222;1.1.1.237 - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.222;1.1.1.237" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6783 + - id: "HMR_6783" - name: "" - metabolites: !!omap - m00981c: 1 @@ -97158,15 +97158,15 @@ - m02040c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6784 + - id: "HMR_6784" - name: "" - metabolites: !!omap - m00981c: -1 @@ -97177,15 +97177,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.12 - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.12" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6785 + - id: "HMR_6785" - name: "" - metabolites: !!omap - m00982c: -1 @@ -97198,15 +97198,15 @@ - m02553c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6786 + - id: "HMR_6786" - name: "" - metabolites: !!omap - m00995c: 1 @@ -97216,15 +97216,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.23 - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.23" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6787 + - id: "HMR_6787" - name: "" - metabolites: !!omap - m01596c: 1 @@ -97233,15 +97233,15 @@ - m03101c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000132437 - - rxnFrom: HMRdatabase - - eccodes: 4.1.1.28 - - references: + - gene_reaction_rule: "ENSG00000132437" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.1.28" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6788 + - id: "HMR_6788" - name: "" - metabolites: !!omap - m02039c: 1 @@ -97251,15 +97251,15 @@ - m03099c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000093010 or ENSG00000184154 or ENSG00000241644 or ENSG00000284844 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.49;2.1.1.6 - - references: PMID:9813302;PMID:10552930 + - gene_reaction_rule: "ENSG00000093010 or ENSG00000184154 or ENSG00000241644 or ENSG00000284844" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.49;2.1.1.6" + - references: "PMID:9813302;PMID:10552930" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6789 + - id: "HMR_6789" - name: "" - metabolites: !!omap - m01002c: 1 @@ -97271,15 +97271,15 @@ - m03099c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000002726 or ENSG00000069535 or ENSG00000131471 or ENSG00000131480 or ENSG00000189221 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.4;1.4.3.21 - - references: + - gene_reaction_rule: "ENSG00000002726 or ENSG00000069535 or ENSG00000131471 or ENSG00000131480 or ENSG00000189221" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.4;1.4.3.21" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6790 + - id: "HMR_6790" - name: "" - metabolites: !!omap - m01002c: -1 @@ -97290,15 +97290,15 @@ - m02553c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.5 - - references: + - gene_reaction_rule: "ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.5" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6791 + - id: "HMR_6791" - name: "" - metabolites: !!omap - m01002c: -1 @@ -97309,15 +97309,15 @@ - m02555c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.5 - - references: + - gene_reaction_rule: "ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.5" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6792 + - id: "HMR_6792" - name: "" - metabolites: !!omap - m00991c: -1 @@ -97326,15 +97326,15 @@ - m02588c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:9586954 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:9586954" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6798 + - id: "HMR_6798" - name: "" - metabolites: !!omap - m00733c: -1 @@ -97344,15 +97344,15 @@ - m03109c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.17 - - references: PMID:7263841;PMID:8405382 + - gene_reaction_rule: "ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.17" + - references: "PMID:7263841;PMID:8405382" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6799 + - id: "HMR_6799" - name: "" - metabolites: !!omap - m00733r: 1 @@ -97362,15 +97362,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.17 - - references: PMID:7263841;PMID:8405382 + - gene_reaction_rule: "ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.17" + - references: "PMID:7263841;PMID:8405382" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6800 + - id: "HMR_6800" - name: "" - metabolites: !!omap - m00732c: -1 @@ -97380,15 +97380,15 @@ - m03109c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.17 - - references: PMID:7263841;PMID:8405382 + - gene_reaction_rule: "ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.17" + - references: "PMID:7263841;PMID:8405382" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6801 + - id: "HMR_6801" - name: "" - metabolites: !!omap - m00732r: 1 @@ -97398,15 +97398,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.17 - - references: PMID:7263841;PMID:8405382 + - gene_reaction_rule: "ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.17" + - references: "PMID:7263841;PMID:8405382" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6802 + - id: "HMR_6802" - name: "" - metabolites: !!omap - m02039c: 1 @@ -97416,15 +97416,15 @@ - m02877c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.- - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.-" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6803 + - id: "HMR_6803" - name: "" - metabolites: !!omap - m02040c: 1 @@ -97433,15 +97433,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000077498 - - rxnFrom: HMRdatabase - - eccodes: 1.14.18.1 - - references: PMID:10620346 + - gene_reaction_rule: "ENSG00000077498" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.18.1" + - references: "PMID:10620346" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6806 + - id: "HMR_6806" - name: "" - metabolites: !!omap - m02039c: -2 @@ -97449,15 +97449,15 @@ - m02500c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10620346 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10620346" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6807 + - id: "HMR_6807" - name: "" - metabolites: !!omap - m01154c: -1 @@ -97466,15 +97466,15 @@ - m02040c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:8891913 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:8891913" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6808 + - id: "HMR_6808" - name: "" - metabolites: !!omap - m01736c: -1 @@ -97483,15 +97483,15 @@ - m02041c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117592 or ENSG00000121053 or ENSG00000130508 or ENSG00000147485 or ENSG00000167419 - - rxnFrom: HMRdatabase - - eccodes: 1.11.1.7 - - references: PMID:9164836 + - gene_reaction_rule: "ENSG00000117592 or ENSG00000121053 or ENSG00000130508 or ENSG00000147485 or ENSG00000167419" + - rxnFrom: "HMRdatabase" + - eccodes: "1.11.1.7" + - references: "PMID:9164836" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6811 + - id: "HMR_6811" - name: "" - metabolites: !!omap - m01138c: -1 @@ -97499,15 +97499,15 @@ - m02026c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: PMID:9164836;PMID:10903891 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "PMID:9164836;PMID:10903891" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6813 + - id: "HMR_6813" - name: "" - metabolites: !!omap - m01738c: -1 @@ -97517,15 +97517,15 @@ - m02041c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005381 or ENSG00000115705 or ENSG00000117592 or ENSG00000121053 or ENSG00000167419 - - rxnFrom: HMRdatabase - - eccodes: 1.11.1.7;1.11.1.8;1.11.2.2 - - references: + - gene_reaction_rule: "ENSG00000005381 or ENSG00000115705 or ENSG00000117592 or ENSG00000121053 or ENSG00000167419" + - rxnFrom: "HMRdatabase" + - eccodes: "1.11.1.7;1.11.1.8;1.11.2.2" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6814 + - id: "HMR_6814" - name: "" - metabolites: !!omap - m01333c: -1 @@ -97534,15 +97534,15 @@ - m02555c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116791 - - rxnFrom: HMRdatabase - - eccodes: 1.6.5.5 - - references: + - gene_reaction_rule: "ENSG00000116791" + - rxnFrom: "HMRdatabase" + - eccodes: "1.6.5.5" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6815 + - id: "HMR_6815" - name: "" - metabolites: !!omap - m01136c: -1 @@ -97550,15 +97550,15 @@ - m02026c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: PMID:9503014;PMID:8307579;PMID:9480897;PMID:9480897;PMID:2034681;PMID:2345169;PMID:2345169;PMID:8276420;PMID:8473333;PMID:1885604;PMID:7587384;PMID:8617495;PMID:7789971;PMID:9396740;PMID:9417084;PMID:8703034;PMID:9278457;PMID:10783391;PMID:12618591;PMID:12618591;PMID:12042665;PMID:12720545;PMID:14742434 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "PMID:9503014;PMID:8307579;PMID:9480897;PMID:9480897;PMID:2034681;PMID:2345169;PMID:2345169;PMID:8276420;PMID:8473333;PMID:1885604;PMID:7587384;PMID:8617495;PMID:7789971;PMID:9396740;PMID:9417084;PMID:8703034;PMID:9278457;PMID:10783391;PMID:12618591;PMID:12618591;PMID:12042665;PMID:12720545;PMID:14742434" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6817 + - id: "HMR_6817" - name: "" - metabolites: !!omap - m01739c: -1 @@ -97568,15 +97568,15 @@ - m02555c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116791 - - rxnFrom: HMRdatabase - - eccodes: 1.6.5.5 - - references: PMID:9164836 + - gene_reaction_rule: "ENSG00000116791" + - rxnFrom: "HMRdatabase" + - eccodes: "1.6.5.5" + - references: "PMID:9164836" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6818 + - id: "HMR_6818" - name: "" - metabolites: !!omap - m01290c: -1 @@ -97586,15 +97586,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6819 + - id: "HMR_6819" - name: "" - metabolites: !!omap - m01292c: 1 @@ -97604,15 +97604,15 @@ - m02555c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116791 - - rxnFrom: HMRdatabase - - eccodes: 1.6.5.5 - - references: PMID:9164836 + - gene_reaction_rule: "ENSG00000116791" + - rxnFrom: "HMRdatabase" + - eccodes: "1.6.5.5" + - references: "PMID:9164836" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6820 + - id: "HMR_6820" - name: "" - metabolites: !!omap - m01135c: -1 @@ -97620,15 +97620,15 @@ - m02026c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: PMID:9164836;PMID:9038184 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "PMID:9164836;PMID:9038184" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6822 + - id: "HMR_6822" - name: "" - metabolites: !!omap - m02039c: 5 @@ -97636,15 +97636,15 @@ - m02618c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6823 + - id: "HMR_6823" - name: "" - metabolites: !!omap - m02039c: -1 @@ -97654,15 +97654,15 @@ - m02619c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116791 - - rxnFrom: HMRdatabase - - eccodes: 1.6.5.5 - - references: PMID:9164836 + - gene_reaction_rule: "ENSG00000116791" + - rxnFrom: "HMRdatabase" + - eccodes: "1.6.5.5" + - references: "PMID:9164836" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6824 + - id: "HMR_6824" - name: "" - metabolites: !!omap - m01140c: -1 @@ -97670,15 +97670,15 @@ - m02618c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: PMID:9038184;PMID:9164836 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "PMID:9038184;PMID:9164836" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6826 + - id: "HMR_6826" - name: "" - metabolites: !!omap - m00720c: -1 @@ -97688,15 +97688,15 @@ - m03052c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197406 or ENSG00000211448 or ENSG00000211452 - - rxnFrom: HMRdatabase - - eccodes: 1.97.1.10;1.97.1.11 - - references: + - gene_reaction_rule: "ENSG00000197406 or ENSG00000211448 or ENSG00000211452" + - rxnFrom: "HMRdatabase" + - eccodes: "1.97.1.10;1.97.1.11" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6827 + - id: "HMR_6827" - name: "" - metabolites: !!omap - m00720r: -1 @@ -97706,15 +97706,15 @@ - m03052r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197406 or ENSG00000211448 or ENSG00000211452 - - rxnFrom: HMRdatabase - - eccodes: 1.97.1.10;1.97.1.11 - - references: + - gene_reaction_rule: "ENSG00000197406 or ENSG00000211448 or ENSG00000211452" + - rxnFrom: "HMRdatabase" + - eccodes: "1.97.1.10;1.97.1.11" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6828 + - id: "HMR_6828" - name: "" - metabolites: !!omap - m00720c: -1 @@ -97724,15 +97724,15 @@ - m03109c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.17 - - references: PMID:7263841 + - gene_reaction_rule: "ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.17" + - references: "PMID:7263841" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6829 + - id: "HMR_6829" - name: "" - metabolites: !!omap - m00720c: -1 @@ -97742,15 +97742,15 @@ - m02682c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000070614 or ENSG00000111962 or ENSG00000115526 or ENSG00000124302 or ENSG00000130540 or ENSG00000135702 or ENSG00000136720 or ENSG00000138653 or ENSG00000140835 or ENSG00000147119 or ENSG00000153936 or ENSG00000154080 or ENSG00000154252 or ENSG00000164100 or ENSG00000166507 or ENSG00000171004 or ENSG00000173597 or ENSG00000175040 or ENSG00000175229 or ENSG00000183196 or ENSG00000185352 or ENSG00000197093 or ENSG00000198075 or ENSG00000198203 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.- - - references: PMID:10199779;PMID:9463486;PMID:8767510;PMID:11397879;PMID:12039030 + - gene_reaction_rule: "ENSG00000070614 or ENSG00000111962 or ENSG00000115526 or ENSG00000124302 or ENSG00000130540 or ENSG00000135702 or ENSG00000136720 or ENSG00000138653 or ENSG00000140835 or ENSG00000147119 or ENSG00000153936 or ENSG00000154080 or ENSG00000154252 or ENSG00000164100 or ENSG00000166507 or ENSG00000171004 or ENSG00000173597 or ENSG00000175040 or ENSG00000175229 or ENSG00000183196 or ENSG00000185352 or ENSG00000197093 or ENSG00000198075 or ENSG00000198203" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.-" + - references: "PMID:10199779;PMID:9463486;PMID:8767510;PMID:11397879;PMID:12039030" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6830 + - id: "HMR_6830" - name: "" - metabolites: !!omap - m00720r: -1 @@ -97760,15 +97760,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.17 - - references: PMID:7263841 + - gene_reaction_rule: "ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.17" + - references: "PMID:7263841" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6831 + - id: "HMR_6831" - name: "" - metabolites: !!omap - m00720c: 1 @@ -97778,15 +97778,15 @@ - m02946c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101846 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.2 - - references: PMID:8767510;PMID:2765556;PMID:7263841;PMID:11861502;PMID:3988241 + - gene_reaction_rule: "ENSG00000101846" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.2" + - references: "PMID:8767510;PMID:2765556;PMID:7263841;PMID:11861502;PMID:3988241" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6834 + - id: "HMR_6834" - name: "" - metabolites: !!omap - m00720c: -1 @@ -97796,15 +97796,15 @@ - m02839c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000211448 or ENSG00000211452 - - rxnFrom: HMRdatabase - - eccodes: 1.97.1.10 - - references: + - gene_reaction_rule: "ENSG00000211448 or ENSG00000211452" + - rxnFrom: "HMRdatabase" + - eccodes: "1.97.1.10" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6835 + - id: "HMR_6835" - name: "" - metabolites: !!omap - m00720r: -1 @@ -97814,15 +97814,15 @@ - m02839r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000211448 or ENSG00000211452 - - rxnFrom: HMRdatabase - - eccodes: 1.97.1.10 - - references: + - gene_reaction_rule: "ENSG00000211448 or ENSG00000211452" + - rxnFrom: "HMRdatabase" + - eccodes: "1.97.1.10" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6836 + - id: "HMR_6836" - name: "" - metabolites: !!omap - m00719c: -1 @@ -97832,15 +97832,15 @@ - m03109c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.17 - - references: PMID:1339448;PMID:7263841;PMID:8405382 + - gene_reaction_rule: "ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.17" + - references: "PMID:1339448;PMID:7263841;PMID:8405382" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6837 + - id: "HMR_6837" - name: "" - metabolites: !!omap - m00719r: 1 @@ -97850,15 +97850,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.17 - - references: PMID:1339448;PMID:7263841;PMID:8405382 + - gene_reaction_rule: "ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.17" + - references: "PMID:1339448;PMID:7263841;PMID:8405382" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6838 + - id: "HMR_6838" - name: "" - metabolites: !!omap - m00734c: 1 @@ -97868,15 +97868,15 @@ - m02839c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000173597 or ENSG00000198203 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.- - - references: PMID:10199779;PMID:9463486;PMID:8767510;PMID:11397879;PMID:12039030 + - gene_reaction_rule: "ENSG00000173597 or ENSG00000198203" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.-" + - references: "PMID:10199779;PMID:9463486;PMID:8767510;PMID:11397879;PMID:12039030" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6839 + - id: "HMR_6839" - name: "" - metabolites: !!omap - m00734c: -1 @@ -97886,15 +97886,15 @@ - m02946c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101846 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.2 - - references: PMID:3988241;PMID:8767510;PMID:2765556;PMID:7263841;PMID:11861502 + - gene_reaction_rule: "ENSG00000101846" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.2" + - references: "PMID:3988241;PMID:8767510;PMID:2765556;PMID:7263841;PMID:11861502" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6840 + - id: "HMR_6840" - name: "" - metabolites: !!omap - m00736c: -1 @@ -97904,15 +97904,15 @@ - m03052c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000211448 or ENSG00000211452 - - rxnFrom: HMRdatabase - - eccodes: 1.97.1.10 - - references: + - gene_reaction_rule: "ENSG00000211448 or ENSG00000211452" + - rxnFrom: "HMRdatabase" + - eccodes: "1.97.1.10" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6841 + - id: "HMR_6841" - name: "" - metabolites: !!omap - m00736r: -1 @@ -97922,15 +97922,15 @@ - m03052r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000211448 or ENSG00000211452 - - rxnFrom: HMRdatabase - - eccodes: 1.97.1.10 - - references: + - gene_reaction_rule: "ENSG00000211448 or ENSG00000211452" + - rxnFrom: "HMRdatabase" + - eccodes: "1.97.1.10" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6842 + - id: "HMR_6842" - name: "" - metabolites: !!omap - m00736c: 1 @@ -97940,15 +97940,15 @@ - m03109c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.17 - - references: PMID:3988241;PMID:7263841;PMID:8333863 + - gene_reaction_rule: "ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.17" + - references: "PMID:3988241;PMID:7263841;PMID:8333863" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6843 + - id: "HMR_6843" - name: "" - metabolites: !!omap - m00736r: -1 @@ -97958,15 +97958,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.17 - - references: PMID:3988241;PMID:7263841;PMID:8333863 + - gene_reaction_rule: "ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.17" + - references: "PMID:3988241;PMID:7263841;PMID:8333863" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6844 + - id: "HMR_6844" - name: "" - metabolites: !!omap - m00736c: -1 @@ -97976,15 +97976,15 @@ - m02682c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000173597 or ENSG00000198203 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.- - - references: PMID:10199779;PMID:9463486;PMID:8767510;PMID:11397879;PMID:12039030 + - gene_reaction_rule: "ENSG00000173597 or ENSG00000198203" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.-" + - references: "PMID:10199779;PMID:9463486;PMID:8767510;PMID:11397879;PMID:12039030" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6845 + - id: "HMR_6845" - name: "" - metabolites: !!omap - m00736c: 1 @@ -97994,15 +97994,15 @@ - m02946c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101846 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.2 - - references: PMID:3988241;PMID:8767510;PMID:2765556;PMID:7263841;PMID:11861502 + - gene_reaction_rule: "ENSG00000101846" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.2" + - references: "PMID:3988241;PMID:8767510;PMID:2765556;PMID:7263841;PMID:11861502" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6848 + - id: "HMR_6848" - name: "" - metabolites: !!omap - m00736c: -1 @@ -98012,15 +98012,15 @@ - m02555c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000211448 or ENSG00000211452 - - rxnFrom: HMRdatabase - - eccodes: 1.97.1.10 - - references: + - gene_reaction_rule: "ENSG00000211448 or ENSG00000211452" + - rxnFrom: "HMRdatabase" + - eccodes: "1.97.1.10" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6849 + - id: "HMR_6849" - name: "" - metabolites: !!omap - m00736r: -1 @@ -98030,15 +98030,15 @@ - m02555r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000211448 or ENSG00000211452 - - rxnFrom: HMRdatabase - - eccodes: 1.97.1.10 - - references: + - gene_reaction_rule: "ENSG00000211448 or ENSG00000211452" + - rxnFrom: "HMRdatabase" + - eccodes: "1.97.1.10" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6850 + - id: "HMR_6850" - name: "" - metabolites: !!omap - m00828c: -1 @@ -98048,15 +98048,15 @@ - m02682c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000173597 or ENSG00000198203 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.- - - references: PMID:10199779;PMID:9463486;PMID:8767510;PMID:11397879;PMID:12039030 + - gene_reaction_rule: "ENSG00000173597 or ENSG00000198203" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.-" + - references: "PMID:10199779;PMID:9463486;PMID:8767510;PMID:11397879;PMID:12039030" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6851 + - id: "HMR_6851" - name: "" - metabolites: !!omap - m00828c: 1 @@ -98066,15 +98066,15 @@ - m02946c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101846 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.2 - - references: PMID:3988241;PMID:8767510;PMID:2765556;PMID:7263841;PMID:11861502 + - gene_reaction_rule: "ENSG00000101846" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.2" + - references: "PMID:3988241;PMID:8767510;PMID:2765556;PMID:7263841;PMID:11861502" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6854 + - id: "HMR_6854" - name: "" - metabolites: !!omap - m02174c: -1 @@ -98084,15 +98084,15 @@ - m03052c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000211448 or ENSG00000211452 - - rxnFrom: HMRdatabase - - eccodes: 1.97.1.10 - - references: + - gene_reaction_rule: "ENSG00000211448 or ENSG00000211452" + - rxnFrom: "HMRdatabase" + - eccodes: "1.97.1.10" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6855 + - id: "HMR_6855" - name: "" - metabolites: !!omap - m02174r: -1 @@ -98102,15 +98102,15 @@ - m03052r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000211448 or ENSG00000211452 - - rxnFrom: HMRdatabase - - eccodes: 1.97.1.10 - - references: + - gene_reaction_rule: "ENSG00000211448 or ENSG00000211452" + - rxnFrom: "HMRdatabase" + - eccodes: "1.97.1.10" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6874 + - id: "HMR_6874" - name: "" - metabolites: !!omap - m02040c: 1 @@ -98119,15 +98119,15 @@ - m03101c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000077498 - - rxnFrom: HMRdatabase - - eccodes: 1.14.18.1 - - references: + - gene_reaction_rule: "ENSG00000077498" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.18.1" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6875 + - id: "HMR_6875" - name: "" - metabolites: !!omap - m00638c: -1 @@ -98135,15 +98135,15 @@ - m02356c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11744399 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11744399" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6876 + - id: "HMR_6876" - name: "" - metabolites: !!omap - m00638c: -1 @@ -98152,15 +98152,15 @@ - m02356c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11744399 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11744399" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6877 + - id: "HMR_6877" - name: "" - metabolites: !!omap - m01134c: -1 @@ -98168,15 +98168,15 @@ - m02356c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:8931873;PMID:8819121;PMID:8819121;PMID:8931873;PMID:8819121;PMID:8931873 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:8931873;PMID:8819121;PMID:8819121;PMID:8931873;PMID:8819121;PMID:8931873" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6878 + - id: "HMR_6878" - name: "" - metabolites: !!omap - m01043c: -1 @@ -98185,15 +98185,15 @@ - m02356c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10903891;PMID:10903891;PMID:10903891 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10903891;PMID:10903891;PMID:10903891" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6879 + - id: "HMR_6879" - name: "" - metabolites: !!omap - m00249c: -1 @@ -98202,15 +98202,15 @@ - m02040c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10490271;PMID:10806337 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10490271;PMID:10806337" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6880 + - id: "HMR_6880" - name: "" - metabolites: !!omap - m00249c: -1 @@ -98219,15 +98219,15 @@ - m01134c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10490271;PMID:10806337 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10490271;PMID:10806337" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6881 + - id: "HMR_6881" - name: "" - metabolites: !!omap - m00723c: -1 @@ -98236,15 +98236,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10806337;PMID:10490271 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10806337;PMID:10490271" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6882 + - id: "HMR_6882" - name: "" - metabolites: !!omap - m00735c: -1 @@ -98252,15 +98252,15 @@ - m02040c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10806337;PMID:10490271 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10806337;PMID:10490271" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6883 + - id: "HMR_6883" - name: "" - metabolites: !!omap - m01139c: -1 @@ -98268,15 +98268,15 @@ - m02356c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: PMID:10903891;PMID:10903891;PMID:10903891;PMID:10903891 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "PMID:10903891;PMID:10903891;PMID:10903891;PMID:10903891" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6885 + - id: "HMR_6885" - name: "" - metabolites: !!omap - m01735c: 1 @@ -98286,15 +98286,15 @@ - m02555c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116791 - - rxnFrom: HMRdatabase - - eccodes: 1.6.5.5 - - references: PMID:12582999;PMID:10903891;PMID:10903891;PMID:12582999;PMID:10903891;PMID:12582999;PMID:10903891;PMID:12582999 + - gene_reaction_rule: "ENSG00000116791" + - rxnFrom: "HMRdatabase" + - eccodes: "1.6.5.5" + - references: "PMID:12582999;PMID:10903891;PMID:10903891;PMID:12582999;PMID:10903891;PMID:12582999;PMID:10903891;PMID:12582999" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6886 + - id: "HMR_6886" - name: "" - metabolites: !!omap - m01137c: -1 @@ -98302,30 +98302,30 @@ - m02355c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: PMID:10903891 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "PMID:10903891" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6888 + - id: "HMR_6888" - name: "" - metabolites: !!omap - m01053c: 1 - m02355c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000080166 - - rxnFrom: HMRdatabase - - eccodes: 5.3.3.12 - - references: + - gene_reaction_rule: "ENSG00000080166" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.3.12" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6889 + - id: "HMR_6889" - name: "" - metabolites: !!omap - m01053c: -1 @@ -98334,15 +98334,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000077498 or ENSG00000107165 - - rxnFrom: HMRdatabase - - eccodes: 1.1.3.-;1.14.18.1 - - references: PMID:11171088;PMID:11171088 + - gene_reaction_rule: "ENSG00000077498 or ENSG00000107165" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.3.-;1.14.18.1" + - references: "PMID:11171088;PMID:11171088" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7628 + - id: "HMR_7628" - name: "" - metabolites: !!omap - m00673c: 1 @@ -98352,15 +98352,15 @@ - m02724c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117592 or ENSG00000121053 or ENSG00000130508 or ENSG00000147485 or ENSG00000167419 - - rxnFrom: HMRdatabase - - eccodes: 1.11.1.7 - - references: + - gene_reaction_rule: "ENSG00000117592 or ENSG00000121053 or ENSG00000130508 or ENSG00000147485 or ENSG00000167419" + - rxnFrom: "HMRdatabase" + - eccodes: "1.11.1.7" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7756 + - id: "HMR_7756" - name: "" - metabolites: !!omap - m00673c: -1 @@ -98370,15 +98370,15 @@ - m02720c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165591 - - rxnFrom: HMRdatabase - - eccodes: 3.5.1.4 - - references: + - gene_reaction_rule: "ENSG00000165591" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.1.4" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8539 + - id: "HMR_8539" - name: "" - metabolites: !!omap - m00965c: 1 @@ -98388,15 +98388,15 @@ - m03101c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171759 - - rxnFrom: HMRdatabase - - eccodes: 1.14.16.1 - - references: + - gene_reaction_rule: "ENSG00000171759" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.16.1" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8794 + - id: "HMR_8794" - name: "" - metabolites: !!omap - m01334c: 1 @@ -98407,15 +98407,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8795 + - id: "HMR_8795" - name: "" - metabolites: !!omap - m01597c: 1 @@ -98424,15 +98424,15 @@ - m02722c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8796 + - id: "HMR_8796" - name: "" - metabolites: !!omap - m01597c: 1 @@ -98441,15 +98441,15 @@ - m02723c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149124 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.13 - - references: + - gene_reaction_rule: "ENSG00000149124" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.13" + - references: "" - subsystem: - - Phenylalanine, tyrosine and tryptophan biosynthesis + - "Phenylalanine, tyrosine and tryptophan biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_3875 + - id: "HMR_3875" - name: "" - metabolites: !!omap - m01371c: -1 @@ -98460,15 +98460,15 @@ - m02877c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000038274 or ENSG00000151224 or ENSG00000168906 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.6 - - references: PMID:7213623 + - gene_reaction_rule: "ENSG00000038274 or ENSG00000151224 or ENSG00000168906" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.6" + - references: "PMID:7213623" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3877 + - id: "HMR_3877" - name: "" - metabolites: !!omap - m01280c: 1 @@ -98477,15 +98477,15 @@ - m02871c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101444 or ENSG00000158467 or ENSG00000168710 - - rxnFrom: HMRdatabase - - eccodes: 3.3.1.1 - - references: PMID:8093102 + - gene_reaction_rule: "ENSG00000101444 or ENSG00000158467 or ENSG00000168710" + - rxnFrom: "HMRdatabase" + - eccodes: "3.3.1.1" + - references: "PMID:8093102" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3879 + - id: "HMR_3879" - name: "" - metabolites: !!omap - m02040c: 1 @@ -98494,15 +98494,15 @@ - m02896c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160200 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.22 - - references: PMID:681363 + - gene_reaction_rule: "ENSG00000160200" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.22" + - references: "PMID:681363" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3881 + - id: "HMR_3881" - name: "" - metabolites: !!omap - m00671c: 1 @@ -98513,15 +98513,15 @@ - m02578c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116761 - - rxnFrom: HMRdatabase - - eccodes: 4.4.1.1 - - references: PMID:10212249;PMID:629532 + - gene_reaction_rule: "ENSG00000116761" + - rxnFrom: "HMRdatabase" + - eccodes: "4.4.1.1" + - references: "PMID:10212249;PMID:629532" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3912 + - id: "HMR_3912" - name: "" - metabolites: !!omap - m01306c: -1 @@ -98530,15 +98530,15 @@ - m02464c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120053 or ENSG00000125166 - - rxnFrom: HMRdatabase - - eccodes: 2.6.1.1;2.6.1.3 - - references: PMID:7426616;PMID:7719646 + - gene_reaction_rule: "ENSG00000120053 or ENSG00000125166" + - rxnFrom: "HMRdatabase" + - eccodes: "2.6.1.1;2.6.1.3" + - references: "PMID:7426616;PMID:7719646" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3917 + - id: "HMR_3917" - name: "" - metabolites: !!omap - m01115c: -1 @@ -98548,15 +98548,15 @@ - m02980c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116984 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.13 - - references: PMID:7961628;PMID:9013615 + - gene_reaction_rule: "ENSG00000116984" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.13" + - references: "PMID:7961628;PMID:9013615" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3919 + - id: "HMR_3919" - name: "" - metabolites: !!omap - m01252c: 1 @@ -98565,15 +98565,15 @@ - m02540c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000114786 or ENSG00000243989 - - rxnFrom: HMRdatabase - - eccodes: 3.5.1.14 - - references: PMID:9518469 + - gene_reaction_rule: "ENSG00000114786 or ENSG00000243989" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.1.14" + - references: "PMID:9518469" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3920 + - id: "HMR_3920" - name: "" - metabolites: !!omap - m02039c: 1 @@ -98582,15 +98582,15 @@ - m02134c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005421 or ENSG00000105852 or ENSG00000105854 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.2 - - references: PMID:12234471;PMID:11226414 + - gene_reaction_rule: "ENSG00000005421 or ENSG00000105852 or ENSG00000105854" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.2" + - references: "PMID:12234471;PMID:11226414" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3922 + - id: "HMR_3922" - name: "" - metabolites: !!omap - m01261m: 1 @@ -98600,15 +98600,15 @@ - m02533m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000161653 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.1 - - references: PMID:7126172 + - gene_reaction_rule: "ENSG00000161653" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.1" + - references: "PMID:7126172" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3928 + - id: "HMR_3928" - name: "" - metabolites: !!omap - m02039c: -1 @@ -98618,15 +98618,15 @@ - m02949c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000128309 or ENSG00000128311 - - rxnFrom: HMRdatabase - - eccodes: 2.8.1.2 - - references: PMID:1953758;PMID:851908 + - gene_reaction_rule: "ENSG00000128309 or ENSG00000128311" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.1.2" + - references: "PMID:1953758;PMID:851908" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3995 + - id: "HMR_3995" - name: "" - metabolites: !!omap - m01628c: 2 @@ -98636,15 +98636,15 @@ - m02555c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000181652 or ENSG00000184470 or ENSG00000197763 or ENSG00000198431 - - rxnFrom: HMRdatabase - - eccodes: 1.8.1.9 - - references: PMID:18042542 + - gene_reaction_rule: "ENSG00000181652 or ENSG00000184470 or ENSG00000197763 or ENSG00000198431" + - rxnFrom: "HMRdatabase" + - eccodes: "1.8.1.9" + - references: "PMID:18042542" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3996 + - id: "HMR_3996" - name: "" - metabolites: !!omap - m01628c: 2 @@ -98654,15 +98654,15 @@ - m02553c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 1.8.1.6 - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "1.8.1.6" + - references: "" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4072 + - id: "HMR_4072" - name: "" - metabolites: !!omap - m01721c: -1 @@ -98672,15 +98672,15 @@ - m02877c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000088305 and ENSG00000130816) or ENSG00000107614 or ENSG00000119772 or ENSG00000142182 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.37 - - references: + - gene_reaction_rule: "(ENSG00000088305 and ENSG00000130816) or ENSG00000107614 or ENSG00000119772 or ENSG00000142182" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.37" + - references: "" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4189 + - id: "HMR_4189" - name: "" - metabolites: !!omap - m02040m: -1 @@ -98690,15 +98690,15 @@ - m02949m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000139531 - - rxnFrom: HMRdatabase - - eccodes: 1.8.3.1 - - references: PMID:12763039;PMID:16475804;PMID:17459792 + - gene_reaction_rule: "ENSG00000139531" + - rxnFrom: "HMRdatabase" + - eccodes: "1.8.3.1" + - references: "PMID:12763039;PMID:16475804;PMID:17459792" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4302 + - id: "HMR_4302" - name: "" - metabolites: !!omap - m01628c: -1 @@ -98709,15 +98709,15 @@ - m02819c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116761 - - rxnFrom: HMRdatabase - - eccodes: 4.4.1.1;4.4.1.8 - - references: PMID:10212249;PMID:629532 + - gene_reaction_rule: "ENSG00000116761" + - rxnFrom: "HMRdatabase" + - eccodes: "4.4.1.1;4.4.1.8" + - references: "PMID:10212249;PMID:629532" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4323 + - id: "HMR_4323" - name: "" - metabolites: !!omap - m01628c: 1 @@ -98727,15 +98727,15 @@ - m02896c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160200 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.22 - - references: PMID:681363 + - gene_reaction_rule: "ENSG00000160200" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.22" + - references: "PMID:681363" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: HMR_5381 + - id: "HMR_5381" - name: "" - metabolites: !!omap - m02039c: 2 @@ -98746,30 +98746,30 @@ - m02990c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000261052 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000261052" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: HMR_5385 + - id: "HMR_5385" - name: "" - metabolites: !!omap - m02481c: -1 - m02910c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000037757 - - rxnFrom: HMRdatabase - - eccodes: 5.3.1.23 - - references: + - gene_reaction_rule: "ENSG00000037757" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.1.23" + - references: "" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: HMR_5386 + - id: "HMR_5386" - name: "" - metabolites: !!omap - m00572c: 1 @@ -98777,15 +98777,15 @@ - m02910c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149089 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.109 - - references: + - gene_reaction_rule: "ENSG00000149089" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.109" + - references: "" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: HMR_5387 + - id: "HMR_5387" - name: "" - metabolites: !!omap - m00245c: 1 @@ -98794,15 +98794,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000145293 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.77 - - references: + - gene_reaction_rule: "ENSG00000145293" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.77" + - references: "" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: HMR_5388 + - id: "HMR_5388" - name: "" - metabolites: !!omap - m00245c: -1 @@ -98813,15 +98813,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000182551 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.53 - - references: + - gene_reaction_rule: "ENSG00000182551" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.53" + - references: "" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: HMR_5389 + - id: "HMR_5389" - name: "" - metabolites: !!omap - m00245c: -1 @@ -98831,15 +98831,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000182551 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.54 - - references: + - gene_reaction_rule: "ENSG00000182551" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.54" + - references: "" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: HMR_5390 + - id: "HMR_5390" - name: "" - metabolites: !!omap - m01016c: 1 @@ -98851,15 +98851,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104951 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.2 - - references: + - gene_reaction_rule: "ENSG00000104951" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.2" + - references: "" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: HMR_5391 + - id: "HMR_5391" - name: "" - metabolites: !!omap - m01016c: -1 @@ -98868,15 +98868,15 @@ - m02471c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000198650 - - rxnFrom: HMRdatabase - - eccodes: 2.6.1.5 - - references: + - gene_reaction_rule: "ENSG00000198650" + - rxnFrom: "HMRdatabase" + - eccodes: "2.6.1.5" + - references: "" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: HMR_5418 + - id: "HMR_5418" - name: "" - metabolites: !!omap - m01261m: 1 @@ -98886,15 +98886,15 @@ - m02540m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000161653 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.1 - - references: PMID:12594532;PMID:12459178 + - gene_reaction_rule: "ENSG00000161653" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.1" + - references: "PMID:12594532;PMID:12459178" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: HMR_5419 + - id: "HMR_5419" - name: "" - metabolites: !!omap - m01261m: 1 @@ -98904,15 +98904,15 @@ - m02534m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000161653 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.1 - - references: PMID:8898873;PMID:7126172 + - gene_reaction_rule: "ENSG00000161653" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.1" + - references: "PMID:8898873;PMID:7126172" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6515 + - id: "HMR_6515" - name: "" - metabolites: !!omap - m02464c: -1 @@ -98921,15 +98921,15 @@ - m02991c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000128309 or ENSG00000128311 - - rxnFrom: HMRdatabase - - eccodes: 2.8.1.2 - - references: + - gene_reaction_rule: "ENSG00000128309 or ENSG00000128311" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.1.2" + - references: "" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6518 + - id: "HMR_6518" - name: "" - metabolites: !!omap - m02039c: 1 @@ -98939,15 +98939,15 @@ - m02986c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000128309 or ENSG00000128311 - - rxnFrom: HMRdatabase - - eccodes: 2.8.1.2 - - references: + - gene_reaction_rule: "ENSG00000128309 or ENSG00000128311" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.1.2" + - references: "" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6519 + - id: "HMR_6519" - name: "" - metabolites: !!omap - m00815c: -1 @@ -98957,15 +98957,15 @@ - m02553c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111716 or ENSG00000151116 or ENSG00000166796 or ENSG00000166800 or ENSG00000171989 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.27 - - references: + - gene_reaction_rule: "ENSG00000111716 or ENSG00000151116 or ENSG00000166796 or ENSG00000166800 or ENSG00000171989" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.27" + - references: "" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6520 + - id: "HMR_6520" - name: "" - metabolites: !!omap - m02039m: 1 @@ -98975,15 +98975,15 @@ - m02991m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000128309 or ENSG00000128311 - - rxnFrom: HMRdatabase - - eccodes: 2.8.1.1 - - references: PMID:1953758;PMID:9070219 + - gene_reaction_rule: "ENSG00000128309 or ENSG00000128311" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.1.1" + - references: "PMID:1953758;PMID:9070219" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6523 + - id: "HMR_6523" - name: "" - metabolites: !!omap - m02039c: -1 @@ -98993,15 +98993,15 @@ - m02986c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000083123 or ENSG00000091140 or ENSG00000117592 or ENSG00000121053 or ENSG00000130508 or ENSG00000142046 or ENSG00000147485 or ENSG00000167419 or ENSG00000248098 or ENSG00000255730 - - rxnFrom: HMRdatabase - - eccodes: 1.11.1.7;1.2.4.4;1.8.1.4 - - references: + - gene_reaction_rule: "ENSG00000083123 or ENSG00000091140 or ENSG00000117592 or ENSG00000121053 or ENSG00000130508 or ENSG00000142046 or ENSG00000147485 or ENSG00000167419 or ENSG00000248098 or ENSG00000255730" + - rxnFrom: "HMRdatabase" + - eccodes: "1.11.1.7;1.2.4.4;1.8.1.4" + - references: "" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8062 + - id: "HMR_8062" - name: "" - metabolites: !!omap - m01654c: -1 @@ -99012,15 +99012,15 @@ - m02682c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000261052 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000261052" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8066 + - id: "HMR_8066" - name: "" - metabolites: !!omap - m00920c: -1 @@ -99029,15 +99029,15 @@ - m02350c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120053 or ENSG00000125166 - - rxnFrom: HMRdatabase - - eccodes: 2.6.1.1;2.6.1.3 - - references: + - gene_reaction_rule: "ENSG00000120053 or ENSG00000125166" + - rxnFrom: "HMRdatabase" + - eccodes: "2.6.1.1;2.6.1.3" + - references: "" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8067 + - id: "HMR_8067" - name: "" - metabolites: !!omap - m00920m: -1 @@ -99046,15 +99046,15 @@ - m02350m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125166 - - rxnFrom: HMRdatabase - - eccodes: 2.6.1.1;2.6.1.3 - - references: + - gene_reaction_rule: "ENSG00000125166" + - rxnFrom: "HMRdatabase" + - eccodes: "2.6.1.1;2.6.1.3" + - references: "" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8068 + - id: "HMR_8068" - name: "" - metabolites: !!omap - m00179c: -1 @@ -99064,15 +99064,15 @@ - m02553c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000014641 or ENSG00000138400 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.37 - - references: + - gene_reaction_rule: "ENSG00000014641 or ENSG00000138400" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.37" + - references: "" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8069 + - id: "HMR_8069" - name: "" - metabolites: !!omap - m00179m: -1 @@ -99082,15 +99082,15 @@ - m02553m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000146701 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.37 - - references: + - gene_reaction_rule: "ENSG00000146701" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.37" + - references: "" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8641 + - id: "HMR_8641" - name: "" - metabolites: !!omap - m01721n: -1 @@ -99100,15 +99100,15 @@ - m02877n: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000088305 and ENSG00000130816) or ENSG00000107614 or ENSG00000119772 or ENSG00000142182 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.37 - - references: + - gene_reaction_rule: "(ENSG00000088305 and ENSG00000130816) or ENSG00000107614 or ENSG00000119772 or ENSG00000142182" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.37" + - references: "" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8682 + - id: "HMR_8682" - name: "" - metabolites: !!omap - m01628c: 2 @@ -99117,15 +99117,15 @@ - m02027c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8683 + - id: "HMR_8683" - name: "" - metabolites: !!omap - m01629c: -1 @@ -99136,15 +99136,15 @@ - m02987c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116761 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000116761" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8684 + - id: "HMR_8684" - name: "" - metabolites: !!omap - m01306m: -1 @@ -99153,15 +99153,15 @@ - m02464m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125166 - - rxnFrom: HMRdatabase - - eccodes: 2.6.1.1 - - references: + - gene_reaction_rule: "ENSG00000125166" + - rxnFrom: "HMRdatabase" + - eccodes: "2.6.1.1" + - references: "" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8685 + - id: "HMR_8685" - name: "" - metabolites: !!omap - m00815c: -1 @@ -99172,15 +99172,15 @@ - m02553c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3868 + - id: "HMR_3868" - name: "" - metabolites: !!omap - m02026c: 2 @@ -99190,15 +99190,15 @@ - m02553c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104687 - - rxnFrom: HMRdatabase - - eccodes: 1.8.1.7 - - references: PMID:10781871;PMID:12821209;PMID:237878;PMID:31912;PMID:4380255;PMID:8981046;PMID:9621574 + - gene_reaction_rule: "ENSG00000104687" + - rxnFrom: "HMRdatabase" + - eccodes: "1.8.1.7" + - references: "PMID:10781871;PMID:12821209;PMID:237878;PMID:31912;PMID:4380255;PMID:8981046;PMID:9621574" - subsystem: - - Glutathione metabolism + - "Glutathione metabolism" - confidence_score: 0 - !!omap - - id: HMR_3869 + - id: "HMR_3869" - name: "" - metabolites: !!omap - m02026m: 2 @@ -99208,15 +99208,15 @@ - m02553m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104687 - - rxnFrom: HMRdatabase - - eccodes: 1.8.1.7 - - references: PMID:10781871;PMID:12821209;PMID:237878;PMID:31912;PMID:4380255;PMID:8981046;PMID:9621574 + - gene_reaction_rule: "ENSG00000104687" + - rxnFrom: "HMRdatabase" + - eccodes: "1.8.1.7" + - references: "PMID:10781871;PMID:12821209;PMID:237878;PMID:31912;PMID:4380255;PMID:8981046;PMID:9621574" - subsystem: - - Glutathione metabolism + - "Glutathione metabolism" - confidence_score: 0 - !!omap - - id: HMR_3889 + - id: "HMR_3889" - name: "" - metabolites: !!omap - m01127c: -1 @@ -99228,15 +99228,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178814 - - rxnFrom: HMRdatabase - - eccodes: 3.5.2.9 - - references: PMID:10078874;PMID:9516961 + - gene_reaction_rule: "ENSG00000178814" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.2.9" + - references: "PMID:10078874;PMID:9516961" - subsystem: - - Glutathione metabolism + - "Glutathione metabolism" - confidence_score: 0 - !!omap - - id: HMR_3933 + - id: "HMR_3933" - name: "" - metabolites: !!omap - m01837c: -1 @@ -99246,15 +99246,15 @@ - m02553c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197894 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.284 - - references: PMID:18288723 + - gene_reaction_rule: "ENSG00000197894" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.284" + - references: "PMID:18288723" - subsystem: - - Glutathione metabolism + - "Glutathione metabolism" - confidence_score: 0 - !!omap - - id: HMR_3937 + - id: "HMR_3937" - name: "" - metabolites: !!omap - m01833c: 1 @@ -99264,15 +99264,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000139684 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.12 - - references: PMID:18288723 + - gene_reaction_rule: "ENSG00000139684" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.12" + - references: "PMID:18288723" - subsystem: - - Glutathione metabolism + - "Glutathione metabolism" - confidence_score: 0 - !!omap - - id: HMR_4116 + - id: "HMR_4116" - name: "" - metabolites: !!omap - m02026c: -2 @@ -99281,15 +99281,15 @@ - m02041c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116157 or ENSG00000117450 or ENSG00000117592 or ENSG00000126432 or ENSG00000164294 or ENSG00000165672 or ENSG00000167468 or ENSG00000167815 or ENSG00000176153 or ENSG00000198704 or ENSG00000211445 or ENSG00000224586 or ENSG00000233276 - - rxnFrom: HMRdatabase - - eccodes: 1.11.1.9;1.11.1.15 - - references: PMID:12427732;PMID:2229017;PMID:25178;PMID:28781;PMID:4209402;PMID:6882790;PMID:7437054 + - gene_reaction_rule: "ENSG00000116157 or ENSG00000117450 or ENSG00000117592 or ENSG00000126432 or ENSG00000164294 or ENSG00000165672 or ENSG00000167468 or ENSG00000167815 or ENSG00000176153 or ENSG00000198704 or ENSG00000211445 or ENSG00000224586 or ENSG00000233276" + - rxnFrom: "HMRdatabase" + - eccodes: "1.11.1.9;1.11.1.15" + - references: "PMID:12427732;PMID:2229017;PMID:25178;PMID:28781;PMID:4209402;PMID:6882790;PMID:7437054" - subsystem: - - Glutathione metabolism + - "Glutathione metabolism" - confidence_score: 0 - !!omap - - id: HMR_4120 + - id: "HMR_4120" - name: "" - metabolites: !!omap - m02026s: -2 @@ -99298,15 +99298,15 @@ - m02041s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116157 or ENSG00000117450 or ENSG00000117592 or ENSG00000126432 or ENSG00000164294 or ENSG00000165672 or ENSG00000167468 or ENSG00000167815 or ENSG00000176153 or ENSG00000198704 or ENSG00000211445 or ENSG00000224586 or ENSG00000233276 - - rxnFrom: HMRdatabase - - eccodes: 1.11.1.9;1.11.1.15 - - references: PMID:12427732;PMID:2229017;PMID:25178;PMID:28781;PMID:4209402;PMID:6882790;PMID:7437054 + - gene_reaction_rule: "ENSG00000116157 or ENSG00000117450 or ENSG00000117592 or ENSG00000126432 or ENSG00000164294 or ENSG00000165672 or ENSG00000167468 or ENSG00000167815 or ENSG00000176153 or ENSG00000198704 or ENSG00000211445 or ENSG00000224586 or ENSG00000233276" + - rxnFrom: "HMRdatabase" + - eccodes: "1.11.1.9;1.11.1.15" + - references: "PMID:12427732;PMID:2229017;PMID:25178;PMID:28781;PMID:4209402;PMID:6882790;PMID:7437054" - subsystem: - - Glutathione metabolism + - "Glutathione metabolism" - confidence_score: 0 - !!omap - - id: HMR_4121 + - id: "HMR_4121" - name: "" - metabolites: !!omap - m02026m: -2 @@ -99315,15 +99315,15 @@ - m02041m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116157 or ENSG00000117450 or ENSG00000117592 or ENSG00000126432 or ENSG00000164294 or ENSG00000165672 or ENSG00000167468 or ENSG00000167815 or ENSG00000176153 or ENSG00000198704 or ENSG00000211445 or ENSG00000224586 or ENSG00000233276 - - rxnFrom: HMRdatabase - - eccodes: 1.11.1.9;1.11.1.15 - - references: PMID:12427732;PMID:2229017;PMID:25178;PMID:28781;PMID:4209402;PMID:6882790;PMID:7437054 + - gene_reaction_rule: "ENSG00000116157 or ENSG00000117450 or ENSG00000117592 or ENSG00000126432 or ENSG00000164294 or ENSG00000165672 or ENSG00000167468 or ENSG00000167815 or ENSG00000176153 or ENSG00000198704 or ENSG00000211445 or ENSG00000224586 or ENSG00000233276" + - rxnFrom: "HMRdatabase" + - eccodes: "1.11.1.9;1.11.1.15" + - references: "PMID:12427732;PMID:2229017;PMID:25178;PMID:28781;PMID:4209402;PMID:6882790;PMID:7437054" - subsystem: - - Glutathione metabolism + - "Glutathione metabolism" - confidence_score: 0 - !!omap - - id: HMR_4175 + - id: "HMR_4175" - name: "" - metabolites: !!omap - m01626c: 1 @@ -99332,15 +99332,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099998 or ENSG00000100031 or ENSG00000100121 or ENSG00000131067 or ENSG00000133475 or ENSG00000167741 or ENSG00000274252 - - rxnFrom: HMRdatabase - - eccodes: 2.3.2.2;3.4.11.4 - - references: PMID:1968061;PMID:3511062 + - gene_reaction_rule: "ENSG00000099998 or ENSG00000100031 or ENSG00000100121 or ENSG00000131067 or ENSG00000133475 or ENSG00000167741 or ENSG00000274252" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.2.2;3.4.11.4" + - references: "PMID:1968061;PMID:3511062" - subsystem: - - Glutathione metabolism + - "Glutathione metabolism" - confidence_score: 0 - !!omap - - id: HMR_4176 + - id: "HMR_4176" - name: "" - metabolites: !!omap - m01626s: 1 @@ -99349,15 +99349,15 @@ - m02040s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099998 or ENSG00000100031 or ENSG00000100121 or ENSG00000131067 or ENSG00000133475 or ENSG00000167741 or ENSG00000274252 - - rxnFrom: HMRdatabase - - eccodes: 2.3.2.2;3.4.11.4 - - references: PMID:1968061;PMID:3511062 + - gene_reaction_rule: "ENSG00000099998 or ENSG00000100031 or ENSG00000100121 or ENSG00000131067 or ENSG00000133475 or ENSG00000167741 or ENSG00000274252" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.2.2;3.4.11.4" + - references: "PMID:1968061;PMID:3511062" - subsystem: - - Glutathione metabolism + - "Glutathione metabolism" - confidence_score: 0 - !!omap - - id: HMR_4324 + - id: "HMR_4324" - name: "" - metabolites: !!omap - m01285c: 1 @@ -99369,15 +99369,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000001084 and ENSG00000023909 - - rxnFrom: HMRdatabase - - eccodes: 6.3.2.2 - - references: PMID:10218110;PMID:10978506 + - gene_reaction_rule: "ENSG00000001084 and ENSG00000023909" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.2.2" + - references: "PMID:10218110;PMID:10978506" - subsystem: - - Glutathione metabolism + - "Glutathione metabolism" - confidence_score: 0 - !!omap - - id: HMR_4326 + - id: "HMR_4326" - name: "" - metabolites: !!omap - m01285c: 1 @@ -99389,15 +99389,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100983 - - rxnFrom: HMRdatabase - - eccodes: 6.3.2.3 - - references: PMID:10978506;PMID:11080313;PMID:2888673 + - gene_reaction_rule: "ENSG00000100983" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.2.3" + - references: "PMID:10978506;PMID:11080313;PMID:2888673" - subsystem: - - Glutathione metabolism + - "Glutathione metabolism" - confidence_score: 0 - !!omap - - id: HMR_4328 + - id: "HMR_4328" - name: "" - metabolites: !!omap - m01626c: -1 @@ -99406,15 +99406,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000002549 or ENSG00000141279 or ENSG00000166825 - - rxnFrom: HMRdatabase - - eccodes: 3.4.11.1;3.4.11.2 - - references: PMID:16189153;PMID:9751082 + - gene_reaction_rule: "ENSG00000002549 or ENSG00000141279 or ENSG00000166825" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.11.1;3.4.11.2" + - references: "PMID:16189153;PMID:9751082" - subsystem: - - Glutathione metabolism + - "Glutathione metabolism" - confidence_score: 0 - !!omap - - id: HMR_4329 + - id: "HMR_4329" - name: "" - metabolites: !!omap - m01626s: -1 @@ -99423,15 +99423,15 @@ - m02040s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000002549 or ENSG00000141279 or ENSG00000166825 - - rxnFrom: HMRdatabase - - eccodes: 3.4.11.1;3.4.11.2 - - references: PMID:16189153;PMID:9751082 + - gene_reaction_rule: "ENSG00000002549 or ENSG00000141279 or ENSG00000166825" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.11.1;3.4.11.2" + - references: "PMID:16189153;PMID:9751082" - subsystem: - - Glutathione metabolism + - "Glutathione metabolism" - confidence_score: 0 - !!omap - - id: HMR_4708 + - id: "HMR_4708" - name: "" - metabolites: !!omap - m01127c: 1 @@ -99439,15 +99439,15 @@ - m01927c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006625 or ENSG00000134864 - - rxnFrom: HMRdatabase - - eccodes: 2.3.2.4 - - references: PMID:6137189 + - gene_reaction_rule: "ENSG00000006625 or ENSG00000134864" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.2.4" + - references: "PMID:6137189" - subsystem: - - Glutathione metabolism + - "Glutathione metabolism" - confidence_score: 0 - !!omap - - id: HMR_8769 + - id: "HMR_8769" - name: "" - metabolites: !!omap - m00097s: 1 @@ -99456,15 +99456,15 @@ - m02026c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099998 or ENSG00000100031 or ENSG00000100121 or ENSG00000131067 or ENSG00000133475 or ENSG00000149435 or ENSG00000167741 - - rxnFrom: HMRdatabase - - eccodes: 2.3.2.2 - - references: + - gene_reaction_rule: "ENSG00000099998 or ENSG00000100031 or ENSG00000100121 or ENSG00000131067 or ENSG00000133475 or ENSG00000149435 or ENSG00000167741" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.2.2" + - references: "" - subsystem: - - Glutathione metabolism + - "Glutathione metabolism" - confidence_score: 0 - !!omap - - id: HMR_8770 + - id: "HMR_8770" - name: "" - metabolites: !!omap - m00097s: -1 @@ -99472,15 +99472,15 @@ - m01307c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006625 or ENSG00000134864 - - rxnFrom: HMRdatabase - - eccodes: 2.3.2.4 - - references: + - gene_reaction_rule: "ENSG00000006625 or ENSG00000134864" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.2.4" + - references: "" - subsystem: - - Glutathione metabolism + - "Glutathione metabolism" - confidence_score: 0 - !!omap - - id: HMR_8771 + - id: "HMR_8771" - name: "" - metabolites: !!omap - m01285c: 1 @@ -99492,15 +99492,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4078 + - id: "HMR_4078" - name: "" - metabolites: !!omap - m00760c: 1 @@ -99511,15 +99511,15 @@ - m02926c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088826 - - rxnFrom: HMRdatabase - - eccodes: 1.5.3.17 - - references: + - gene_reaction_rule: "ENSG00000088826" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.3.17" + - references: "" - subsystem: - - Beta-alanine metabolism + - "Beta-alanine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4079 + - id: "HMR_4079" - name: "" - metabolites: !!omap - m00760c: -1 @@ -99530,15 +99530,15 @@ - m02555c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000143149 or ENSG00000164904 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000143149 or ENSG00000164904" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.3" + - references: "" - subsystem: - - Beta-alanine metabolism + - "Beta-alanine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4174 + - id: "HMR_4174" - name: "" - metabolites: !!omap - m01370c: -1 @@ -99547,15 +99547,15 @@ - m02039c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000128683 or ENSG00000136750 - - rxnFrom: HMRdatabase - - eccodes: 4.1.1.11;4.1.1.15 - - references: PMID:10411630;PMID:12887686;PMID:1516767;PMID:2878977;PMID:6387051;PMID:6707648 + - gene_reaction_rule: "ENSG00000128683 or ENSG00000136750" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.1.11;4.1.1.15" + - references: "PMID:10411630;PMID:12887686;PMID:1516767;PMID:2878977;PMID:6387051;PMID:6707648" - subsystem: - - Beta-alanine metabolism + - "Beta-alanine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4330 + - id: "HMR_4330" - name: "" - metabolites: !!omap - m00900m: -1 @@ -99564,15 +99564,15 @@ - m01974m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000183044 - - rxnFrom: HMRdatabase - - eccodes: 2.6.1.55;2.6.1.19 - - references: PMID:10447691;PMID:23842;PMID:3113494;PMID:3132542;PMID:4154214;PMID:4719123;PMID:7851425 + - gene_reaction_rule: "ENSG00000183044" + - rxnFrom: "HMRdatabase" + - eccodes: "2.6.1.55;2.6.1.19" + - references: "PMID:10447691;PMID:23842;PMID:3113494;PMID:3132542;PMID:4154214;PMID:4719123;PMID:7851425" - subsystem: - - Beta-alanine metabolism + - "Beta-alanine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4347 + - id: "HMR_4347" - name: "" - metabolites: !!omap - m00923c: -1 @@ -99583,15 +99583,15 @@ - m02578c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100024 - - rxnFrom: HMRdatabase - - eccodes: 3.5.1.6 - - references: PMID:10542323;PMID:15638804;PMID:3678231 + - gene_reaction_rule: "ENSG00000100024" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.1.6" + - references: "PMID:10542323;PMID:15638804;PMID:3678231" - subsystem: - - Beta-alanine metabolism + - "Beta-alanine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4425 + - id: "HMR_4425" - name: "" - metabolites: !!omap - m01334c: 1 @@ -99603,15 +99603,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000172508 - - rxnFrom: HMRdatabase - - eccodes: 6.3.2.11 - - references: PMID:448355;PMID:487087 + - gene_reaction_rule: "ENSG00000172508" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.2.11" + - references: "PMID:448355;PMID:487087" - subsystem: - - Beta-alanine metabolism + - "Beta-alanine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4427 + - id: "HMR_4427" - name: "" - metabolites: !!omap - m01383c: 1 @@ -99620,15 +99620,15 @@ - m02125c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000133313 or ENSG00000150656 - - rxnFrom: HMRdatabase - - eccodes: 3.4.13.3;3.4.13.20 - - references: PMID:2334521;PMID:4026801 + - gene_reaction_rule: "ENSG00000133313 or ENSG00000150656" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.13.3;3.4.13.20" + - references: "PMID:2334521;PMID:4026801" - subsystem: - - Beta-alanine metabolism + - "Beta-alanine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4688 + - id: "HMR_4688" - name: "" - metabolites: !!omap - m00969m: -1 @@ -99639,15 +99639,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000143149 or ENSG00000164904 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.3;1.2.1.19 - - references: PMID:2925663;PMID:8155713;PMID:8269919;PMID:8786138;PMID:9417993 + - gene_reaction_rule: "ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000143149 or ENSG00000164904" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.3;1.2.1.19" + - references: "PMID:2925663;PMID:8155713;PMID:8269919;PMID:8786138;PMID:9417993" - subsystem: - - Beta-alanine metabolism + - "Beta-alanine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4689 + - id: "HMR_4689" - name: "" - metabolites: !!omap - m00969c: -1 @@ -99658,15 +99658,15 @@ - m02553c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000143149 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000143149" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Beta-alanine metabolism + - "Beta-alanine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4735 + - id: "HMR_4735" - name: "" - metabolites: !!omap - m00799m: 1 @@ -99674,15 +99674,15 @@ - m02040m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:10671535 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:10671535" - subsystem: - - Beta-alanine metabolism + - "Beta-alanine metabolism" - confidence_score: 0 - !!omap - - id: HMR_7991 + - id: "HMR_7991" - name: "" - metabolites: !!omap - m00248c: 1 @@ -99693,15 +99693,15 @@ - m02923c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Beta-alanine metabolism + - "Beta-alanine metabolism" - confidence_score: 0 - !!omap - - id: HMR_7992 + - id: "HMR_7992" - name: "" - metabolites: !!omap - m00248c: -1 @@ -99713,15 +99713,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000002726 or ENSG00000131471 or ENSG00000131480 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.6;1.4.3.21;1.4.3.22 - - references: + - gene_reaction_rule: "ENSG00000002726 or ENSG00000131471 or ENSG00000131480" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.6;1.4.3.21;1.4.3.22" + - references: "" - subsystem: - - Beta-alanine metabolism + - "Beta-alanine metabolism" - confidence_score: 0 - !!omap - - id: HMR_7993 + - id: "HMR_7993" - name: "" - metabolites: !!omap - m00760c: -1 @@ -99732,15 +99732,15 @@ - m02553c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000143149 or ENSG00000164904 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000143149 or ENSG00000164904" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.3" + - references: "" - subsystem: - - Beta-alanine metabolism + - "Beta-alanine metabolism" - confidence_score: 0 - !!omap - - id: HMR_7128 + - id: "HMR_7128" - name: "" - metabolites: !!omap - m01284c: 1 @@ -99750,15 +99750,15 @@ - m02885c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138801 or ENSG00000198682 - - rxnFrom: HMRdatabase - - eccodes: 2.7.7.4 - - references: + - gene_reaction_rule: "ENSG00000138801 or ENSG00000198682" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.7.4" + - references: "" - subsystem: - - Metabolism of other amino acids + - "Metabolism of other amino acids" - confidence_score: 0 - !!omap - - id: HMR_7129 + - id: "HMR_7129" - name: "" - metabolites: !!omap - m00912c: 1 @@ -99768,15 +99768,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138801 or ENSG00000198682 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.25 - - references: + - gene_reaction_rule: "ENSG00000138801 or ENSG00000198682" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.25" + - references: "" - subsystem: - - Metabolism of other amino acids + - "Metabolism of other amino acids" - confidence_score: 0 - !!omap - - id: HMR_7130 + - id: "HMR_7130" - name: "" - metabolites: !!omap - m00912c: -1 @@ -99787,15 +99787,15 @@ - m02887c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of other amino acids + - "Metabolism of other amino acids" - confidence_score: 0 - !!omap - - id: HMR_7131 + - id: "HMR_7131" - name: "" - metabolites: !!omap - m02039c: -4 @@ -99806,15 +99806,15 @@ - m02887c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000184470 or ENSG00000197763 or ENSG00000198431 - - rxnFrom: HMRdatabase - - eccodes: 1.8.1.9 - - references: + - gene_reaction_rule: "ENSG00000184470 or ENSG00000197763 or ENSG00000198431" + - rxnFrom: "HMRdatabase" + - eccodes: "1.8.1.9" + - references: "" - subsystem: - - Metabolism of other amino acids + - "Metabolism of other amino acids" - confidence_score: 0 - !!omap - - id: HMR_7132 + - id: "HMR_7132" - name: "" - metabolites: !!omap - m01334c: 1 @@ -99825,15 +99825,15 @@ - m02894c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000086475 or ENSG00000179918 - - rxnFrom: HMRdatabase - - eccodes: 2.7.9.3 - - references: + - gene_reaction_rule: "ENSG00000086475 or ENSG00000179918" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.9.3" + - references: "" - subsystem: - - Metabolism of other amino acids + - "Metabolism of other amino acids" - confidence_score: 0 - !!omap - - id: HMR_7133 + - id: "HMR_7133" - name: "" - metabolites: !!omap - m01307c: -1 @@ -99844,15 +99844,15 @@ - m02889c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000132330 - - rxnFrom: HMRdatabase - - eccodes: 4.4.1.16 - - references: + - gene_reaction_rule: "ENSG00000132330" + - rxnFrom: "HMRdatabase" + - eccodes: "4.4.1.16" + - references: "" - subsystem: - - Metabolism of other amino acids + - "Metabolism of other amino acids" - confidence_score: 0 - !!omap - - id: HMR_7134 + - id: "HMR_7134" - name: "" - metabolites: !!omap - m00671c: 1 @@ -99863,15 +99863,15 @@ - m02889c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116761 - - rxnFrom: HMRdatabase - - eccodes: 4.4.1.1 - - references: + - gene_reaction_rule: "ENSG00000116761" + - rxnFrom: "HMRdatabase" + - eccodes: "4.4.1.1" + - references: "" - subsystem: - - Metabolism of other amino acids + - "Metabolism of other amino acids" - confidence_score: 0 - !!omap - - id: HMR_7135 + - id: "HMR_7135" - name: "" - metabolites: !!omap - m02040c: -1 @@ -99880,15 +99880,15 @@ - m02896c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160200 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.22 - - references: + - gene_reaction_rule: "ENSG00000160200" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.22" + - references: "" - subsystem: - - Metabolism of other amino acids + - "Metabolism of other amino acids" - confidence_score: 0 - !!omap - - id: HMR_7136 + - id: "HMR_7136" - name: "" - metabolites: !!omap - m01280c: 1 @@ -99897,15 +99897,15 @@ - m02890c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101444 or ENSG00000158467 or ENSG00000168710 - - rxnFrom: HMRdatabase - - eccodes: 3.3.1.1 - - references: + - gene_reaction_rule: "ENSG00000101444 or ENSG00000158467 or ENSG00000168710" + - rxnFrom: "HMRdatabase" + - eccodes: "3.3.1.1" + - references: "" - subsystem: - - Metabolism of other amino acids + - "Metabolism of other amino acids" - confidence_score: 0 - !!omap - - id: HMR_7137 + - id: "HMR_7137" - name: "" - metabolites: !!omap - m00671c: 1 @@ -99916,15 +99916,15 @@ - m02891c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116761 - - rxnFrom: HMRdatabase - - eccodes: 4.4.1.1 - - references: + - gene_reaction_rule: "ENSG00000116761" + - rxnFrom: "HMRdatabase" + - eccodes: "4.4.1.1" + - references: "" - subsystem: - - Metabolism of other amino acids + - "Metabolism of other amino acids" - confidence_score: 0 - !!omap - - id: HMR_7138 + - id: "HMR_7138" - name: "" - metabolites: !!omap - m02039c: -1 @@ -99936,15 +99936,15 @@ - m02892c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000007933 or ENSG00000010932 or ENSG00000076258 or ENSG00000094963 or ENSG00000131781 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.8 - - references: PMID:17173378*E*Re;PMID:15037206*P + - gene_reaction_rule: "ENSG00000007933 or ENSG00000010932 or ENSG00000076258 or ENSG00000094963 or ENSG00000131781" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.8" + - references: "PMID:17173378*E*Re;PMID:15037206*P" - subsystem: - - Metabolism of other amino acids + - "Metabolism of other amino acids" - confidence_score: 0 - !!omap - - id: HMR_7139 + - id: "HMR_7139" - name: "" - metabolites: !!omap - m01371c: -1 @@ -99955,15 +99955,15 @@ - m02891c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000038274 or ENSG00000151224 or ENSG00000168906 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.6 - - references: + - gene_reaction_rule: "ENSG00000038274 or ENSG00000151224 or ENSG00000168906" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.6" + - references: "" - subsystem: - - Metabolism of other amino acids + - "Metabolism of other amino acids" - confidence_score: 0 - !!omap - - id: HMR_7140 + - id: "HMR_7140" - name: "" - metabolites: !!omap - m02039c: -1 @@ -99973,15 +99973,15 @@ - m02895c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.9 - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.9" + - references: "" - subsystem: - - Metabolism of other amino acids + - "Metabolism of other amino acids" - confidence_score: 0 - !!omap - - id: HMR_7141 + - id: "HMR_7141" - name: "" - metabolites: !!omap - m02039c: 1 @@ -99992,15 +99992,15 @@ - m02895c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000132330 - - rxnFrom: HMRdatabase - - eccodes: 4.4.1.16 - - references: + - gene_reaction_rule: "ENSG00000132330" + - rxnFrom: "HMRdatabase" + - eccodes: "4.4.1.16" + - references: "" - subsystem: - - Metabolism of other amino acids + - "Metabolism of other amino acids" - confidence_score: 0 - !!omap - - id: HMR_7620 + - id: "HMR_7620" - name: "" - metabolites: !!omap - m01334c: 1 @@ -100011,15 +100011,15 @@ - m03075c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000166986 or ENSG00000247626 - - rxnFrom: HMRdatabase - - eccodes: 6.1.1.10 - - references: + - gene_reaction_rule: "ENSG00000166986 or ENSG00000247626" + - rxnFrom: "HMRdatabase" + - eccodes: "6.1.1.10" + - references: "" - subsystem: - - Metabolism of other amino acids + - "Metabolism of other amino acids" - confidence_score: 0 - !!omap - - id: HMR_7647 + - id: "HMR_7647" - name: "" - metabolites: !!omap - m01638p: -1 @@ -100031,15 +100031,15 @@ - m02819p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110887 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.3 - - references: + - gene_reaction_rule: "ENSG00000110887" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.3" + - references: "" - subsystem: - - Metabolism of other amino acids + - "Metabolism of other amino acids" - confidence_score: 0 - !!omap - - id: HMR_8640 + - id: "HMR_8640" - name: "" - metabolites: !!omap - m01721n: -1 @@ -100049,15 +100049,15 @@ - m02882n: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000088305 and ENSG00000130816) or ENSG00000107614 or ENSG00000119772 or ENSG00000142182 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.37 - - references: + - gene_reaction_rule: "(ENSG00000088305 and ENSG00000130816) or ENSG00000107614 or ENSG00000119772 or ENSG00000142182" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.37" + - references: "" - subsystem: - - Metabolism of other amino acids + - "Metabolism of other amino acids" - confidence_score: 0 - !!omap - - id: HMR_8689 + - id: "HMR_8689" - name: "" - metabolites: !!omap - m01101p: 1 @@ -100069,15 +100069,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110887 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.3 - - references: + - gene_reaction_rule: "ENSG00000110887" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.3" + - references: "" - subsystem: - - Metabolism of other amino acids + - "Metabolism of other amino acids" - confidence_score: 0 - !!omap - - id: HMR_8690 + - id: "HMR_8690" - name: "" - metabolites: !!omap - m01073p: 1 @@ -100089,15 +100089,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110887 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.3 - - references: + - gene_reaction_rule: "ENSG00000110887" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.3" + - references: "" - subsystem: - - Metabolism of other amino acids + - "Metabolism of other amino acids" - confidence_score: 0 - !!omap - - id: HMR_3748 + - id: "HMR_3748" - name: "" - metabolites: !!omap - m00824m: -1 @@ -100108,15 +100108,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000083123 and ENSG00000142046 and ENSG00000248098 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.25 - - references: + - gene_reaction_rule: "ENSG00000083123 and ENSG00000142046 and ENSG00000248098" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.25" + - references: "" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3751 + - id: "HMR_3751" - name: "" - metabolites: !!omap - m02180m: -1 @@ -100125,15 +100125,15 @@ - m03103m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000122971 or ENSG00000196177 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.1;1.3.99.12 - - references: PMID:12855692;PMID:6401712;PMID:6874697;PMID:3597357 + - gene_reaction_rule: "ENSG00000122971 or ENSG00000196177" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.1;1.3.99.12" + - references: "PMID:12855692;PMID:6401712;PMID:6874697;PMID:3597357" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3753 + - id: "HMR_3753" - name: "" - metabolites: !!omap - m00785m: 1 @@ -100141,15 +100141,15 @@ - m02468m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:10671535;PMID:12467702 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:10671535;PMID:12467702" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3755 + - id: "HMR_3755" - name: "" - metabolites: !!omap - m00784m: 1 @@ -100159,15 +100159,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000198130 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.4 - - references: PMID:11580916;PMID:8188708 + - gene_reaction_rule: "ENSG00000198130" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.4" + - references: "PMID:11580916;PMID:8188708" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3759 + - id: "HMR_3759" - name: "" - metabolites: !!omap - m00661m: -1 @@ -100178,15 +100178,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000138356 or ENSG00000143149 or ENSG00000164904 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.3;1.2.3.1 - - references: PMID:10947204;PMID:10989432;PMID:1527093;PMID:16683190;PMID:8120000;PMID:8155713;PMID:8634152;PMID:9787093 + - gene_reaction_rule: "ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000138356 or ENSG00000143149 or ENSG00000164904" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.3;1.2.3.1" + - references: "PMID:10947204;PMID:10989432;PMID:1527093;PMID:16683190;PMID:8120000;PMID:8155713;PMID:8634152;PMID:9787093" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3763 + - id: "HMR_3763" - name: "" - metabolites: !!omap - m00166m: 1 @@ -100196,15 +100196,15 @@ - m02479m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119711 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.17;1.2.1.18 - - references: PMID:3071714;PMID:6885824 + - gene_reaction_rule: "ENSG00000119711" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.17;1.2.1.18" + - references: "PMID:3071714;PMID:6885824" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3767 + - id: "HMR_3767" - name: "" - metabolites: !!omap - m01013m: -1 @@ -100215,15 +100215,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000083123 and ENSG00000142046 and ENSG00000248098 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.25 - - references: + - gene_reaction_rule: "ENSG00000083123 and ENSG00000142046 and ENSG00000248098" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.25" + - references: "" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3769 + - id: "HMR_3769" - name: "" - metabolites: !!omap - m00826m: -1 @@ -100232,15 +100232,15 @@ - m03103m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000128928 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.4 - - references: PMID:3597357;PMID:9214289 + - gene_reaction_rule: "ENSG00000128928" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.4" + - references: "PMID:3597357;PMID:9214289" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3773 + - id: "HMR_3773" - name: "" - metabolites: !!omap - m00826m: -1 @@ -100252,15 +100252,15 @@ - m02751m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000078070 and ENSG00000131844 - - rxnFrom: HMRdatabase - - eccodes: 6.4.1.4 - - references: PMID:11401427 + - gene_reaction_rule: "ENSG00000078070 and ENSG00000131844" + - rxnFrom: "HMRdatabase" + - eccodes: "6.4.1.4" + - references: "PMID:11401427" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3775 + - id: "HMR_3775" - name: "" - metabolites: !!omap - m00827m: -1 @@ -100268,15 +100268,15 @@ - m02131m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000148090 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.18 - - references: PMID:3071703 + - gene_reaction_rule: "ENSG00000148090" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.18" + - references: "PMID:3071703" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3780 + - id: "HMR_3780" - name: "" - metabolites: !!omap - m00663m: 1 @@ -100287,15 +100287,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000083123 and ENSG00000142046 and ENSG00000248098 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.25 - - references: + - gene_reaction_rule: "ENSG00000083123 and ENSG00000142046 and ENSG00000248098" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.25" + - references: "" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3783 + - id: "HMR_3783" - name: "" - metabolites: !!omap - m00663m: -1 @@ -100304,15 +100304,15 @@ - m03103m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000122971 or ENSG00000196177 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.1;1.3.99.12 - - references: PMID:6401712 + - gene_reaction_rule: "ENSG00000122971 or ENSG00000196177" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.1;1.3.99.12" + - references: "PMID:6401712" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3785 + - id: "HMR_3785" - name: "" - metabolites: !!omap - m00171m: 1 @@ -100320,15 +100320,15 @@ - m02999m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:10671535;PMID:12467702 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:10671535;PMID:12467702" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3790 + - id: "HMR_3790" - name: "" - metabolites: !!omap - m00661c: -1 @@ -100339,15 +100339,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138356 - - rxnFrom: HMRdatabase - - eccodes: 1.2.3.1 - - references: PMID:11569919;PMID:16143537 + - gene_reaction_rule: "ENSG00000138356" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.3.1" + - references: "PMID:11569919;PMID:16143537" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3792 + - id: "HMR_3792" - name: "" - metabolites: !!omap - m00661m: -1 @@ -100356,15 +100356,15 @@ - m01974m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113492 or ENSG00000183044 - - rxnFrom: HMRdatabase - - eccodes: 2.6.1.22;2.6.1.40 - - references: PMID:5773299 + - gene_reaction_rule: "ENSG00000113492 or ENSG00000183044" + - rxnFrom: "HMRdatabase" + - eccodes: "2.6.1.22;2.6.1.40" + - references: "PMID:5773299" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3796 + - id: "HMR_3796" - name: "" - metabolites: !!omap - m01334m: -1 @@ -100374,15 +100374,15 @@ - m02775m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111058 or ENSG00000131069 or ENSG00000154930 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.1;6.2.1.17 - - references: PMID:10843999;PMID:1924964;PMID:2009071;PMID:2884217;PMID:7341659 + - gene_reaction_rule: "ENSG00000111058 or ENSG00000131069 or ENSG00000154930" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.1;6.2.1.17" + - references: "PMID:10843999;PMID:1924964;PMID:2009071;PMID:2884217;PMID:7341659" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3823 + - id: "HMR_3823" - name: "" - metabolites: !!omap - m00171m: -1 @@ -100392,15 +100392,15 @@ - m02553m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 or ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.178;1.1.1.35 - - references: PMID:10329704;PMID:7639524;PMID:8687463 + - gene_reaction_rule: "ENSG00000072506 or ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.178;1.1.1.35" + - references: "PMID:10329704;PMID:7639524;PMID:8687463" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: HMR_6416 + - id: "HMR_6416" - name: "" - metabolites: !!omap - m00824m: -1 @@ -100410,15 +100410,15 @@ - m02857m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000083123 and ENSG00000142046 and ENSG00000248098 - - rxnFrom: HMRdatabase - - eccodes: 1.2.4.4 - - references: PMID:11839747;PMID:12387880;PMID:15576032 + - gene_reaction_rule: "ENSG00000083123 and ENSG00000142046 and ENSG00000248098" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.4.4" + - references: "PMID:11839747;PMID:12387880;PMID:15576032" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: HMR_3986 + - id: "HMR_3986" - name: "" - metabolites: !!omap - m01438s: -2 @@ -100426,15 +100426,15 @@ - m02040s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000133063 or ENSG00000134216 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:17267599 + - gene_reaction_rule: "ENSG00000133063 or ENSG00000134216" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:17267599" - subsystem: - - Amino sugar and nucleotide sugar metabolism + - "Amino sugar and nucleotide sugar metabolism" - confidence_score: 0 - !!omap - - id: HMR_3988 + - id: "HMR_3988" - name: "" - metabolites: !!omap - m01439l: -1 @@ -100442,15 +100442,15 @@ - m02527l: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: PMID:10481922;PMID:2423070;PMID:6219664;PMID:758959 + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "PMID:10481922;PMID:2423070;PMID:6219664;PMID:758959" - subsystem: - - Amino sugar and nucleotide sugar metabolism + - "Amino sugar and nucleotide sugar metabolism" - confidence_score: 0 - !!omap - - id: HMR_4124 + - id: "HMR_4124" - name: "" - metabolites: !!omap - m01596r: 1 @@ -100459,15 +100459,15 @@ - m03112r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115652 - - rxnFrom: HMRdatabase - - eccodes: 4.1.1.35 - - references: PMID:11877387 + - gene_reaction_rule: "ENSG00000115652" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.1.35" + - references: "PMID:11877387" - subsystem: - - Amino sugar and nucleotide sugar metabolism + - "Amino sugar and nucleotide sugar metabolism" - confidence_score: 0 - !!omap - - id: HMR_4158 + - id: "HMR_4158" - name: "" - metabolites: !!omap - m02039c: -1 @@ -100477,30 +100477,30 @@ - m03130c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117143 or ENSG00000197355 - - rxnFrom: HMRdatabase - - eccodes: 2.7.7.23 - - references: PMID:6303311 + - gene_reaction_rule: "ENSG00000117143 or ENSG00000197355" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.7.23" + - references: "PMID:6303311" - subsystem: - - Amino sugar and nucleotide sugar metabolism + - "Amino sugar and nucleotide sugar metabolism" - confidence_score: 0 - !!omap - - id: HMR_4159 + - id: "HMR_4159" - name: "" - metabolites: !!omap - m03110c: -1 - m03111c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117308 - - rxnFrom: HMRdatabase - - eccodes: 5.1.3.7 - - references: PMID:11841944;PMID:2820646;PMID:656081 + - gene_reaction_rule: "ENSG00000117308" + - rxnFrom: "HMRdatabase" + - eccodes: "5.1.3.7" + - references: "PMID:11841944;PMID:2820646;PMID:656081" - subsystem: - - Amino sugar and nucleotide sugar metabolism + - "Amino sugar and nucleotide sugar metabolism" - confidence_score: 0 - !!omap - - id: HMR_4299 + - id: "HMR_4299" - name: "" - metabolites: !!omap - m01845c: 1 @@ -100510,15 +100510,15 @@ - m02578c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113552 or ENSG00000163281 - - rxnFrom: HMRdatabase - - eccodes: 3.5.99.6 - - references: PMID:10481053;PMID:12965206;PMID:14484386;PMID:7577655 + - gene_reaction_rule: "ENSG00000113552 or ENSG00000163281" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.99.6" + - references: "PMID:10481053;PMID:12965206;PMID:14484386;PMID:7577655" - subsystem: - - Amino sugar and nucleotide sugar metabolism + - "Amino sugar and nucleotide sugar metabolism" - confidence_score: 0 - !!omap - - id: HMR_4300 + - id: "HMR_4300" - name: "" - metabolites: !!omap - m01845c: -1 @@ -100527,15 +100527,15 @@ - m01975c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000131459 or ENSG00000198380 - - rxnFrom: HMRdatabase - - eccodes: 2.6.1.16 - - references: PMID:10806197;PMID:1247594 + - gene_reaction_rule: "ENSG00000131459 or ENSG00000198380" + - rxnFrom: "HMRdatabase" + - eccodes: "2.6.1.16" + - references: "PMID:10806197;PMID:1247594" - subsystem: - - Amino sugar and nucleotide sugar metabolism + - "Amino sugar and nucleotide sugar metabolism" - confidence_score: 0 - !!omap - - id: HMR_4494 + - id: "HMR_4494" - name: "" - metabolites: !!omap - m01285c: 1 @@ -100545,15 +100545,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000106633 or ENSG00000156510 or ENSG00000156515 or ENSG00000159399 or ENSG00000160883 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.1 - - references: PMID:16906315;PMID:7061426;PMID:7150652;PMID:8717435 + - gene_reaction_rule: "ENSG00000106633 or ENSG00000156510 or ENSG00000156515 or ENSG00000159399 or ENSG00000160883" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.1" + - references: "PMID:16906315;PMID:7061426;PMID:7150652;PMID:8717435" - subsystem: - - Amino sugar and nucleotide sugar metabolism + - "Amino sugar and nucleotide sugar metabolism" - confidence_score: 0 - !!omap - - id: HMR_4524 + - id: "HMR_4524" - name: "" - metabolites: !!omap - m01285c: 1 @@ -100563,15 +100563,15 @@ - m02529c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000124357 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.59 - - references: PMID:10824116;PMID:9523722 + - gene_reaction_rule: "ENSG00000124357" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.59" + - references: "PMID:10824116;PMID:9523722" - subsystem: - - Amino sugar and nucleotide sugar metabolism + - "Amino sugar and nucleotide sugar metabolism" - confidence_score: 0 - !!omap - - id: HMR_4525 + - id: "HMR_4525" - name: "" - metabolites: !!omap - m02039r: 1 @@ -100581,15 +100581,15 @@ - m03111r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000159921 - - rxnFrom: HMRdatabase - - eccodes: 5.1.3.14 - - references: PMID:10431835;PMID:15748884;PMID:3740419;PMID:4337336;PMID:5063602;PMID:5417402;PMID:9305887;PMID:9305888 + - gene_reaction_rule: "ENSG00000159921" + - rxnFrom: "HMRdatabase" + - eccodes: "5.1.3.14" + - references: "PMID:10431835;PMID:15748884;PMID:3740419;PMID:4337336;PMID:5063602;PMID:5417402;PMID:9305887;PMID:9305888" - subsystem: - - Amino sugar and nucleotide sugar metabolism + - "Amino sugar and nucleotide sugar metabolism" - confidence_score: 0 - !!omap - - id: HMR_4526 + - id: "HMR_4526" - name: "" - metabolites: !!omap - m02039c: 1 @@ -100599,30 +100599,30 @@ - m03111c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000159921 - - rxnFrom: HMRdatabase - - eccodes: 5.1.3.14 - - references: PMID:10431835;PMID:15748884;PMID:3740419;PMID:4337336;PMID:5063602;PMID:5417402;PMID:9305887;PMID:9305888 + - gene_reaction_rule: "ENSG00000159921" + - rxnFrom: "HMRdatabase" + - eccodes: "5.1.3.14" + - references: "PMID:10431835;PMID:15748884;PMID:3740419;PMID:4337336;PMID:5063602;PMID:5417402;PMID:9305887;PMID:9305888" - subsystem: - - Amino sugar and nucleotide sugar metabolism + - "Amino sugar and nucleotide sugar metabolism" - confidence_score: 0 - !!omap - - id: HMR_4527 + - id: "HMR_4527" - name: "" - metabolites: !!omap - m02524c: -1 - m02527c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000102032 - - rxnFrom: HMRdatabase - - eccodes: 5.1.3.8 - - references: PMID:10502668;PMID:11098137;PMID:3977862;PMID:3995085;PMID:6303311;PMID:9990133 + - gene_reaction_rule: "ENSG00000102032" + - rxnFrom: "HMRdatabase" + - eccodes: "5.1.3.8" + - references: "PMID:10502668;PMID:11098137;PMID:3977862;PMID:3995085;PMID:6303311;PMID:9990133" - subsystem: - - Amino sugar and nucleotide sugar metabolism + - "Amino sugar and nucleotide sugar metabolism" - confidence_score: 0 - !!omap - - id: HMR_4528 + - id: "HMR_4528" - name: "" - metabolites: !!omap - m01285c: 1 @@ -100632,15 +100632,15 @@ - m02539c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000159921 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.60 - - references: PMID:10431835;PMID:6303311 + - gene_reaction_rule: "ENSG00000159921" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.60" + - references: "PMID:10431835;PMID:6303311" - subsystem: - - Amino sugar and nucleotide sugar metabolism + - "Amino sugar and nucleotide sugar metabolism" - confidence_score: 0 - !!omap - - id: HMR_4529 + - id: "HMR_4529" - name: "" - metabolites: !!omap - m02040c: -1 @@ -100650,15 +100650,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095380 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.56;2.5.1.57 - - references: PMID:10749855;PMID:11886839;PMID:3977862;PMID:6093772 + - gene_reaction_rule: "ENSG00000095380" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.56;2.5.1.57" + - references: "PMID:10749855;PMID:11886839;PMID:3977862;PMID:6093772" - subsystem: - - Amino sugar and nucleotide sugar metabolism + - "Amino sugar and nucleotide sugar metabolism" - confidence_score: 0 - !!omap - - id: HMR_4530 + - id: "HMR_4530" - name: "" - metabolites: !!omap - m02040c: -1 @@ -100667,15 +100667,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000170191 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.29 - - references: PMID:16237198;PMID:6093772;PMID:6651781 + - gene_reaction_rule: "ENSG00000170191" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.29" + - references: "PMID:16237198;PMID:6093772;PMID:6651781" - subsystem: - - Amino sugar and nucleotide sugar metabolism + - "Amino sugar and nucleotide sugar metabolism" - confidence_score: 0 - !!omap - - id: HMR_4531 + - id: "HMR_4531" - name: "" - metabolites: !!omap - m02039c: -1 @@ -100687,15 +100687,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 1.14.18.2 - - references: PMID:11522391;PMID:12192086 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.18.2" + - references: "PMID:11522391;PMID:12192086" - subsystem: - - Amino sugar and nucleotide sugar metabolism + - "Amino sugar and nucleotide sugar metabolism" - confidence_score: 0 - !!omap - - id: HMR_4532 + - id: "HMR_4532" - name: "" - metabolites: !!omap - m01593c: -1 @@ -100704,15 +100704,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111726 - - rxnFrom: HMRdatabase - - eccodes: 2.7.7.43 - - references: PMID:1577759;PMID:422125;PMID:4288894;PMID:4803836;PMID:9689047 + - gene_reaction_rule: "ENSG00000111726" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.7.43" + - references: "PMID:1577759;PMID:422125;PMID:4288894;PMID:4803836;PMID:9689047" - subsystem: - - Amino sugar and nucleotide sugar metabolism + - "Amino sugar and nucleotide sugar metabolism" - confidence_score: 0 - !!omap - - id: HMR_4533 + - id: "HMR_4533" - name: "" - metabolites: !!omap - m01592c: 1 @@ -100724,15 +100724,15 @@ - m02630c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 1.14.18.2 - - references: PMID:11211935;PMID:2249689;PMID:8112313 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.18.2" + - references: "PMID:11211935;PMID:2249689;PMID:8112313" - subsystem: - - Amino sugar and nucleotide sugar metabolism + - "Amino sugar and nucleotide sugar metabolism" - confidence_score: 0 - !!omap - - id: HMR_4534 + - id: "HMR_4534" - name: "" - metabolites: !!omap - m01592c: 1 @@ -100744,15 +100744,15 @@ - m02630c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 1.14.18.2 - - references: PMID:10052592;PMID:1964451;PMID:2249689 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.18.2" + - references: "PMID:10052592;PMID:1964451;PMID:2249689" - subsystem: - - Amino sugar and nucleotide sugar metabolism + - "Amino sugar and nucleotide sugar metabolism" - confidence_score: 0 - !!omap - - id: HMR_4536 + - id: "HMR_4536" - name: "" - metabolites: !!omap - m01592n: -1 @@ -100761,15 +100761,15 @@ - m02759n: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111726 - - rxnFrom: HMRdatabase - - eccodes: 2.7.7.43 - - references: PMID:6084482;PMID:9689047 + - gene_reaction_rule: "ENSG00000111726" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.7.43" + - references: "PMID:6084482;PMID:9689047" - subsystem: - - Amino sugar and nucleotide sugar metabolism + - "Amino sugar and nucleotide sugar metabolism" - confidence_score: 0 - !!omap - - id: HMR_4628 + - id: "HMR_4628" - name: "" - metabolites: !!omap - m01261c: -1 @@ -100779,15 +100779,15 @@ - m02529c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100522 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.4 - - references: PMID:10777580;PMID:13428743;PMID:2390284 + - gene_reaction_rule: "ENSG00000100522" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.4" + - references: "PMID:10777580;PMID:13428743;PMID:2390284" - subsystem: - - Amino sugar and nucleotide sugar metabolism + - "Amino sugar and nucleotide sugar metabolism" - confidence_score: 0 - !!omap - - id: HMR_4629 + - id: "HMR_4629" - name: "" - metabolites: !!omap - m01252c: 1 @@ -100796,30 +100796,30 @@ - m02529c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162066 or ENSG00000205923 - - rxnFrom: HMRdatabase - - eccodes: 3.5.1.25 - - references: + - gene_reaction_rule: "ENSG00000162066 or ENSG00000205923" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.1.25" + - references: "" - subsystem: - - Amino sugar and nucleotide sugar metabolism + - "Amino sugar and nucleotide sugar metabolism" - confidence_score: 0 - !!omap - - id: HMR_4631 + - id: "HMR_4631" - name: "" - metabolites: !!omap - m02528c: 1 - m02529c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000013375 - - rxnFrom: HMRdatabase - - eccodes: 5.4.2.3 - - references: PMID:11004509;PMID:1149741 + - gene_reaction_rule: "ENSG00000013375" + - rxnFrom: "HMRdatabase" + - eccodes: "5.4.2.3" + - references: "PMID:11004509;PMID:1149741" - subsystem: - - Amino sugar and nucleotide sugar metabolism + - "Amino sugar and nucleotide sugar metabolism" - confidence_score: 0 - !!omap - - id: HMR_7696 + - id: "HMR_7696" - name: "" - metabolites: !!omap - m01751c: 1 @@ -100829,15 +100829,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Amino sugar and nucleotide sugar metabolism + - "Amino sugar and nucleotide sugar metabolism" - confidence_score: 0 - !!omap - - id: HMR_7697 + - id: "HMR_7697" - name: "" - metabolites: !!omap - m00946c: 1 @@ -100845,30 +100845,30 @@ - m02040c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088451 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.46 - - references: + - gene_reaction_rule: "ENSG00000088451" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.46" + - references: "" - subsystem: - - Amino sugar and nucleotide sugar metabolism + - "Amino sugar and nucleotide sugar metabolism" - confidence_score: 0 - !!omap - - id: HMR_7698 + - id: "HMR_7698" - name: "" - metabolites: !!omap - m01750c: -1 - m01751c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117308 - - rxnFrom: HMRdatabase - - eccodes: 5.1.3.2 - - references: + - gene_reaction_rule: "ENSG00000117308" + - rxnFrom: "HMRdatabase" + - eccodes: "5.1.3.2" + - references: "" - subsystem: - - Amino sugar and nucleotide sugar metabolism + - "Amino sugar and nucleotide sugar metabolism" - confidence_score: 0 - !!omap - - id: HMR_8366 + - id: "HMR_8366" - name: "" - metabolites: !!omap - m01285c: 1 @@ -100878,15 +100878,15 @@ - m02526c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Amino sugar and nucleotide sugar metabolism + - "Amino sugar and nucleotide sugar metabolism" - confidence_score: 0 - !!omap - - id: HMR_8367 + - id: "HMR_8367" - name: "" - metabolites: !!omap - m02039c: 1 @@ -100896,15 +100896,15 @@ - m02526c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Amino sugar and nucleotide sugar metabolism + - "Amino sugar and nucleotide sugar metabolism" - confidence_score: 0 - !!omap - - id: HMR_8368 + - id: "HMR_8368" - name: "" - metabolites: !!omap - m02039c: -1 @@ -100914,15 +100914,15 @@ - m03130c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Amino sugar and nucleotide sugar metabolism + - "Amino sugar and nucleotide sugar metabolism" - confidence_score: 0 - !!omap - - id: HMR_8371 + - id: "HMR_8371" - name: "" - metabolites: !!omap - m00772c: 1 @@ -100932,15 +100932,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095380 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000095380" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Amino sugar and nucleotide sugar metabolism + - "Amino sugar and nucleotide sugar metabolism" - confidence_score: 0 - !!omap - - id: HMR_8372 + - id: "HMR_8372" - name: "" - metabolites: !!omap - m00771c: 1 @@ -100949,15 +100949,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Amino sugar and nucleotide sugar metabolism + - "Amino sugar and nucleotide sugar metabolism" - confidence_score: 0 - !!omap - - id: HMR_8373 + - id: "HMR_8373" - name: "" - metabolites: !!omap - m02524c: -1 @@ -100965,15 +100965,15 @@ - m02819c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135838 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000135838" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Amino sugar and nucleotide sugar metabolism + - "Amino sugar and nucleotide sugar metabolism" - confidence_score: 0 - !!omap - - id: HMR_8375 + - id: "HMR_8375" - name: "" - metabolites: !!omap - m01438c: -1 @@ -100981,15 +100981,15 @@ - m02527c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111261 or ENSG00000133048 or ENSG00000133063 or ENSG00000134216 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.14 - - references: + - gene_reaction_rule: "ENSG00000111261 or ENSG00000133048 or ENSG00000133063 or ENSG00000134216" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.14" + - references: "" - subsystem: - - Amino sugar and nucleotide sugar metabolism + - "Amino sugar and nucleotide sugar metabolism" - confidence_score: 0 - !!omap - - id: HMR_8376 + - id: "HMR_8376" - name: "" - metabolites: !!omap - m01438s: -1 @@ -100997,15 +100997,15 @@ - m02527s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134216 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.14 - - references: + - gene_reaction_rule: "ENSG00000134216" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.14" + - references: "" - subsystem: - - Amino sugar and nucleotide sugar metabolism + - "Amino sugar and nucleotide sugar metabolism" - confidence_score: 0 - !!omap - - id: HMR_8377 + - id: "HMR_8377" - name: "" - metabolites: !!omap - m01592c: 1 @@ -101014,15 +101014,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111726 - - rxnFrom: HMRdatabase - - eccodes: 2.7.7.43 - - references: + - gene_reaction_rule: "ENSG00000111726" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.7.43" + - references: "" - subsystem: - - Amino sugar and nucleotide sugar metabolism + - "Amino sugar and nucleotide sugar metabolism" - confidence_score: 0 - !!omap - - id: HMR_8672 + - id: "HMR_8672" - name: "" - metabolites: !!omap - m01596g: 1 @@ -101031,30 +101031,30 @@ - m03112g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115652 - - rxnFrom: HMRdatabase - - eccodes: 4.1.1.35 - - references: + - gene_reaction_rule: "ENSG00000115652" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.1.35" + - references: "" - subsystem: - - Amino sugar and nucleotide sugar metabolism + - "Amino sugar and nucleotide sugar metabolism" - confidence_score: 0 - !!omap - - id: HMR_8674 + - id: "HMR_8674" - name: "" - metabolites: !!omap - m00946c: -1 - m01748c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Amino sugar and nucleotide sugar metabolism + - "Amino sugar and nucleotide sugar metabolism" - confidence_score: 0 - !!omap - - id: HMR_8675 + - id: "HMR_8675" - name: "" - metabolites: !!omap - m01748c: -1 @@ -101064,15 +101064,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Amino sugar and nucleotide sugar metabolism + - "Amino sugar and nucleotide sugar metabolism" - confidence_score: 0 - !!omap - - id: HMR_5130 + - id: "HMR_5130" - name: "" - metabolites: !!omap - m01334c: 1 @@ -101083,15 +101083,15 @@ - m03101c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134684 - - rxnFrom: HMRdatabase - - eccodes: 6.1.1.1 - - references: + - gene_reaction_rule: "ENSG00000134684" + - rxnFrom: "HMRdatabase" + - eccodes: "6.1.1.1" + - references: "" - subsystem: - - Aminoacyl-tRNA biosynthesis + - "Aminoacyl-tRNA biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_5131 + - id: "HMR_5131" - name: "" - metabolites: !!omap - m01307c: -1 @@ -101102,15 +101102,15 @@ - m03063c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000090861 - - rxnFrom: HMRdatabase - - eccodes: 6.1.1.7 - - references: + - gene_reaction_rule: "ENSG00000090861" + - rxnFrom: "HMRdatabase" + - eccodes: "6.1.1.7" + - references: "" - subsystem: - - Aminoacyl-tRNA biosynthesis + - "Aminoacyl-tRNA biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_5132 + - id: "HMR_5132" - name: "" - metabolites: !!omap - m01334c: 1 @@ -101121,15 +101121,15 @@ - m03064c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113643 - - rxnFrom: HMRdatabase - - eccodes: 6.1.1.19 - - references: + - gene_reaction_rule: "ENSG00000113643" + - rxnFrom: "HMRdatabase" + - eccodes: "6.1.1.19" + - references: "" - subsystem: - - Aminoacyl-tRNA biosynthesis + - "Aminoacyl-tRNA biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_5133 + - id: "HMR_5133" - name: "" - metabolites: !!omap - m01334c: 1 @@ -101140,15 +101140,15 @@ - m03065c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134440 - - rxnFrom: HMRdatabase - - eccodes: 6.1.1.22 - - references: + - gene_reaction_rule: "ENSG00000134440" + - rxnFrom: "HMRdatabase" + - eccodes: "6.1.1.22" + - references: "" - subsystem: - - Aminoacyl-tRNA biosynthesis + - "Aminoacyl-tRNA biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_5134 + - id: "HMR_5134" - name: "" - metabolites: !!omap - m01334c: 1 @@ -101159,15 +101159,15 @@ - m03066c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115866 - - rxnFrom: HMRdatabase - - eccodes: 6.1.1.12 - - references: + - gene_reaction_rule: "ENSG00000115866" + - rxnFrom: "HMRdatabase" + - eccodes: "6.1.1.12" + - references: "" - subsystem: - - Aminoacyl-tRNA biosynthesis + - "Aminoacyl-tRNA biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_5135 + - id: "HMR_5135" - name: "" - metabolites: !!omap - m01334c: 1 @@ -101178,15 +101178,15 @@ - m03067c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110619 - - rxnFrom: HMRdatabase - - eccodes: 6.1.1.16 - - references: + - gene_reaction_rule: "ENSG00000110619" + - rxnFrom: "HMRdatabase" + - eccodes: "6.1.1.16" + - references: "" - subsystem: - - Aminoacyl-tRNA biosynthesis + - "Aminoacyl-tRNA biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_5136 + - id: "HMR_5136" - name: "" - metabolites: !!omap - m01334c: 1 @@ -101197,15 +101197,15 @@ - m03068c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000172053 - - rxnFrom: HMRdatabase - - eccodes: 6.1.1.18 - - references: + - gene_reaction_rule: "ENSG00000172053" + - rxnFrom: "HMRdatabase" + - eccodes: "6.1.1.18" + - references: "" - subsystem: - - Aminoacyl-tRNA biosynthesis + - "Aminoacyl-tRNA biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_5137 + - id: "HMR_5137" - name: "" - metabolites: !!omap - m01334c: 1 @@ -101216,15 +101216,15 @@ - m03069c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136628 - - rxnFrom: HMRdatabase - - eccodes: 6.1.1.17 - - references: + - gene_reaction_rule: "ENSG00000136628" + - rxnFrom: "HMRdatabase" + - eccodes: "6.1.1.17" + - references: "" - subsystem: - - Aminoacyl-tRNA biosynthesis + - "Aminoacyl-tRNA biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_5138 + - id: "HMR_5138" - name: "" - metabolites: !!omap - m01334c: 1 @@ -101235,15 +101235,15 @@ - m03070c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000106105 - - rxnFrom: HMRdatabase - - eccodes: 6.1.1.14 - - references: + - gene_reaction_rule: "ENSG00000106105" + - rxnFrom: "HMRdatabase" + - eccodes: "6.1.1.14" + - references: "" - subsystem: - - Aminoacyl-tRNA biosynthesis + - "Aminoacyl-tRNA biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_5139 + - id: "HMR_5139" - name: "" - metabolites: !!omap - m01334c: 1 @@ -101254,15 +101254,15 @@ - m03071c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000170445 - - rxnFrom: HMRdatabase - - eccodes: 6.1.1.21 - - references: + - gene_reaction_rule: "ENSG00000170445" + - rxnFrom: "HMRdatabase" + - eccodes: "6.1.1.21" + - references: "" - subsystem: - - Aminoacyl-tRNA biosynthesis + - "Aminoacyl-tRNA biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_5140 + - id: "HMR_5140" - name: "" - metabolites: !!omap - m01334c: 1 @@ -101273,15 +101273,15 @@ - m03072c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000196305 - - rxnFrom: HMRdatabase - - eccodes: 6.1.1.5 - - references: + - gene_reaction_rule: "ENSG00000196305" + - rxnFrom: "HMRdatabase" + - eccodes: "6.1.1.5" + - references: "" - subsystem: - - Aminoacyl-tRNA biosynthesis + - "Aminoacyl-tRNA biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_5141 + - id: "HMR_5141" - name: "" - metabolites: !!omap - m01334c: 1 @@ -101292,15 +101292,15 @@ - m03073c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000133706 - - rxnFrom: HMRdatabase - - eccodes: 6.1.1.4 - - references: + - gene_reaction_rule: "ENSG00000133706" + - rxnFrom: "HMRdatabase" + - eccodes: "6.1.1.4" + - references: "" - subsystem: - - Aminoacyl-tRNA biosynthesis + - "Aminoacyl-tRNA biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_5142 + - id: "HMR_5142" - name: "" - metabolites: !!omap - m01334c: 1 @@ -101311,15 +101311,15 @@ - m03074c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000065427 - - rxnFrom: HMRdatabase - - eccodes: 6.1.1.6 - - references: + - gene_reaction_rule: "ENSG00000065427" + - rxnFrom: "HMRdatabase" + - eccodes: "6.1.1.6" + - references: "" - subsystem: - - Aminoacyl-tRNA biosynthesis + - "Aminoacyl-tRNA biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_5143 + - id: "HMR_5143" - name: "" - metabolites: !!omap - m01334c: 1 @@ -101330,15 +101330,15 @@ - m03075c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000166986 - - rxnFrom: HMRdatabase - - eccodes: 6.1.1.10 - - references: + - gene_reaction_rule: "ENSG00000166986" + - rxnFrom: "HMRdatabase" + - eccodes: "6.1.1.10" + - references: "" - subsystem: - - Aminoacyl-tRNA biosynthesis + - "Aminoacyl-tRNA biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_5144 + - id: "HMR_5144" - name: "" - metabolites: !!omap - m00266c: -1 @@ -101347,15 +101347,15 @@ - m02980c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103707 - - rxnFrom: HMRdatabase - - eccodes: 2.1.2.9 - - references: + - gene_reaction_rule: "ENSG00000103707" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.2.9" + - references: "" - subsystem: - - Aminoacyl-tRNA biosynthesis + - "Aminoacyl-tRNA biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_5145 + - id: "HMR_5145" - name: "" - metabolites: !!omap - m01334c: 1 @@ -101366,15 +101366,15 @@ - m03076c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116120 and ENSG00000179115 - - rxnFrom: HMRdatabase - - eccodes: 6.1.1.20 - - references: + - gene_reaction_rule: "ENSG00000116120 and ENSG00000179115" + - rxnFrom: "HMRdatabase" + - eccodes: "6.1.1.20" + - references: "" - subsystem: - - Aminoacyl-tRNA biosynthesis + - "Aminoacyl-tRNA biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_5146 + - id: "HMR_5146" - name: "" - metabolites: !!omap - m01334c: 1 @@ -101385,15 +101385,15 @@ - m03077c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136628 - - rxnFrom: HMRdatabase - - eccodes: 6.1.1.15 - - references: + - gene_reaction_rule: "ENSG00000136628" + - rxnFrom: "HMRdatabase" + - eccodes: "6.1.1.15" + - references: "" - subsystem: - - Aminoacyl-tRNA biosynthesis + - "Aminoacyl-tRNA biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_5147 + - id: "HMR_5147" - name: "" - metabolites: !!omap - m01334c: 1 @@ -101404,15 +101404,15 @@ - m03078c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000031698 - - rxnFrom: HMRdatabase - - eccodes: 6.1.1.11 - - references: + - gene_reaction_rule: "ENSG00000031698" + - rxnFrom: "HMRdatabase" + - eccodes: "6.1.1.11" + - references: "" - subsystem: - - Aminoacyl-tRNA biosynthesis + - "Aminoacyl-tRNA biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_5148 + - id: "HMR_5148" - name: "" - metabolites: !!omap - m01334c: 1 @@ -101423,15 +101423,15 @@ - m03079c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113407 - - rxnFrom: HMRdatabase - - eccodes: 6.1.1.3 - - references: + - gene_reaction_rule: "ENSG00000113407" + - rxnFrom: "HMRdatabase" + - eccodes: "6.1.1.3" + - references: "" - subsystem: - - Aminoacyl-tRNA biosynthesis + - "Aminoacyl-tRNA biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_5149 + - id: "HMR_5149" - name: "" - metabolites: !!omap - m01334c: 1 @@ -101442,15 +101442,15 @@ - m03089c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000140105 - - rxnFrom: HMRdatabase - - eccodes: 6.1.1.2 - - references: + - gene_reaction_rule: "ENSG00000140105" + - rxnFrom: "HMRdatabase" + - eccodes: "6.1.1.2" + - references: "" - subsystem: - - Aminoacyl-tRNA biosynthesis + - "Aminoacyl-tRNA biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_5150 + - id: "HMR_5150" - name: "" - metabolites: !!omap - m01334c: 1 @@ -101461,15 +101461,15 @@ - m03135c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000204394 - - rxnFrom: HMRdatabase - - eccodes: 6.1.1.9 - - references: + - gene_reaction_rule: "ENSG00000204394" + - rxnFrom: "HMRdatabase" + - eccodes: "6.1.1.9" + - references: "" - subsystem: - - Aminoacyl-tRNA biosynthesis + - "Aminoacyl-tRNA biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7171 + - id: "HMR_7171" - name: "" - metabolites: !!omap - m01590g: 1 @@ -101479,15 +101479,15 @@ - m02960g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008513 or ENSG00000110080 or ENSG00000157350 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.4 - - references: + - gene_reaction_rule: "ENSG00000008513 or ENSG00000110080 or ENSG00000157350" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.4" + - references: "" - subsystem: - - O-glycan metabolism + - "O-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7172 + - id: "HMR_7172" - name: "" - metabolites: !!omap - m01590g: 1 @@ -101497,15 +101497,15 @@ - m02906g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000070526 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.3 - - references: + - gene_reaction_rule: "ENSG00000070526" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.3" + - references: "" - subsystem: - - O-glycan metabolism + - "O-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7174 + - id: "HMR_7174" - name: "" - metabolites: !!omap - m01608g: 1 @@ -101515,15 +101515,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000198488 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.147 - - references: + - gene_reaction_rule: "ENSG00000198488" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.147" + - references: "" - subsystem: - - O-glycan metabolism + - "O-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7175 + - id: "HMR_7175" - name: "" - metabolites: !!omap - m01608g: -1 @@ -101533,15 +101533,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000140297 or ENSG00000198488 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.148 - - references: + - gene_reaction_rule: "ENSG00000140297 or ENSG00000198488" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.148" + - references: "" - subsystem: - - O-glycan metabolism + - "O-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7180 + - id: "HMR_7180" - name: "" - metabolites: !!omap - m01871g: 1 @@ -101551,15 +101551,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000140297 or ENSG00000176928 or ENSG00000187210 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.102 - - references: + - gene_reaction_rule: "ENSG00000140297 or ENSG00000176928 or ENSG00000187210" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.102" + - references: "" - subsystem: - - O-glycan metabolism + - "O-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7181 + - id: "HMR_7181" - name: "" - metabolites: !!omap - m01871g: -1 @@ -101569,15 +101569,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000158470 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000158470" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "" - subsystem: - - O-glycan metabolism + - "O-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7183 + - id: "HMR_7183" - name: "" - metabolites: !!omap - m01590g: 1 @@ -101587,15 +101587,15 @@ - m03000g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000070526 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.3 - - references: + - gene_reaction_rule: "ENSG00000070526" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.3" + - references: "" - subsystem: - - O-glycan metabolism + - "O-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7197 + - id: "HMR_7197" - name: "" - metabolites: !!omap - m00196c: -1 @@ -101604,15 +101604,15 @@ - m02896c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - O-glycan metabolism + - "O-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7436 + - id: "HMR_7436" - name: "" - metabolites: !!omap - m00205g: -1 @@ -101622,15 +101622,15 @@ - m03110g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100626 or ENSG00000106648 or ENSG00000109586 or ENSG00000110328 or ENSG00000115339 or ENSG00000119514 or ENSG00000130035 or ENSG00000131386 or ENSG00000136542 or ENSG00000139629 or ENSG00000141429 or ENSG00000143641 or ENSG00000144278 or ENSG00000158089 or ENSG00000164574 or ENSG00000174473 or ENSG00000178234 or ENSG00000182870 or ENSG00000185274 or ENSG00000257594 or ENSG00000259075 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.41 - - references: + - gene_reaction_rule: "ENSG00000100626 or ENSG00000106648 or ENSG00000109586 or ENSG00000110328 or ENSG00000115339 or ENSG00000119514 or ENSG00000130035 or ENSG00000131386 or ENSG00000136542 or ENSG00000139629 or ENSG00000141429 or ENSG00000143641 or ENSG00000144278 or ENSG00000158089 or ENSG00000164574 or ENSG00000174473 or ENSG00000178234 or ENSG00000182870 or ENSG00000185274 or ENSG00000257594 or ENSG00000259075" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.41" + - references: "" - subsystem: - - O-glycan metabolism + - "O-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7438 + - id: "HMR_7438" - name: "" - metabolites: !!omap - m02039g: 1 @@ -101640,15 +101640,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000106392 or ENSG00000171155 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.122 - - references: + - gene_reaction_rule: "ENSG00000106392 or ENSG00000171155" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.122" + - references: "" - subsystem: - - O-glycan metabolism + - "O-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7440 + - id: "HMR_7440" - name: "" - metabolites: !!omap - m01607g: 1 @@ -101658,15 +101658,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000140297 or ENSG00000176928 or ENSG00000187210 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.102 - - references: + - gene_reaction_rule: "ENSG00000140297 or ENSG00000176928 or ENSG00000187210" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.102" + - references: "" - subsystem: - - O-glycan metabolism + - "O-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_8254 + - id: "HMR_8254" - name: "" - metabolites: !!omap - m01954g: 1 @@ -101676,15 +101676,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000118017 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000118017" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "" - subsystem: - - O-glycan metabolism + - "O-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_8255 + - id: "HMR_8255" - name: "" - metabolites: !!omap - m01607g: -1 @@ -101694,15 +101694,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000118017 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000118017" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "" - subsystem: - - O-glycan metabolism + - "O-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_8256 + - id: "HMR_8256" - name: "" - metabolites: !!omap - m01610g: 1 @@ -101712,15 +101712,15 @@ - m03110g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - O-glycan metabolism + - "O-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_8257 + - id: "HMR_8257" - name: "" - metabolites: !!omap - m01611g: 1 @@ -101730,15 +101730,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000187210 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000187210" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - O-glycan metabolism + - "O-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_8258 + - id: "HMR_8258" - name: "" - metabolites: !!omap - m01611g: -1 @@ -101748,15 +101748,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - O-glycan metabolism + - "O-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_8260 + - id: "HMR_8260" - name: "" - metabolites: !!omap - m01612g: 1 @@ -101766,15 +101766,15 @@ - m03110g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - O-glycan metabolism + - "O-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_8261 + - id: "HMR_8261" - name: "" - metabolites: !!omap - m01613g: 1 @@ -101784,15 +101784,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - O-glycan metabolism + - "O-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_1532 + - id: "HMR_1532" - name: "" - metabolites: !!omap - m01706c: 1 @@ -101801,15 +101801,15 @@ - m03026c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000152904 or ENSG00000160752 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.10 - - references: PMID:9741684;PMID:9054372 + - gene_reaction_rule: "ENSG00000152904 or ENSG00000160752" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.10" + - references: "PMID:9741684;PMID:9054372" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7254 + - id: "HMR_7254" - name: "" - metabolites: !!omap - m01657c: 1 @@ -101818,30 +101818,30 @@ - m03026c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117682 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.87 - - references: + - gene_reaction_rule: "ENSG00000117682" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.87" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7255 + - id: "HMR_7255" - name: "" - metabolites: !!omap - m01657c: -1 - m01732c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7256 + - id: "HMR_7256" - name: "" - metabolites: !!omap - m01732c: -1 @@ -101851,15 +101851,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167130 - - rxnFrom: HMRdatabase - - eccodes: 3.6.1.43 - - references: + - gene_reaction_rule: "ENSG00000167130" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.1.43" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7258 + - id: "HMR_7258" - name: "" - metabolites: !!omap - m01657c: -1 @@ -101869,15 +101869,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7259 + - id: "HMR_7259" - name: "" - metabolites: !!omap - m01656c: 1 @@ -101886,15 +101886,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7260 + - id: "HMR_7260" - name: "" - metabolites: !!omap - m01656c: -1 @@ -101904,15 +101904,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7261 + - id: "HMR_7261" - name: "" - metabolites: !!omap - m01730r: 1 @@ -101921,15 +101921,15 @@ - m02751r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000139133 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.256 - - references: + - gene_reaction_rule: "ENSG00000139133" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.256" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7263 + - id: "HMR_7263" - name: "" - metabolites: !!omap - m01424c: 1 @@ -101939,15 +101939,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000175283 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.108 - - references: + - gene_reaction_rule: "ENSG00000175283" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.108" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7264 + - id: "HMR_7264" - name: "" - metabolites: !!omap - m01733c: -1 @@ -101956,15 +101956,15 @@ - m03114c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000172269 - - rxnFrom: HMRdatabase - - eccodes: 2.7.8.15 - - references: + - gene_reaction_rule: "ENSG00000172269" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.8.15" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7265 + - id: "HMR_7265" - name: "" - metabolites: !!omap - m02039c: 1 @@ -101974,15 +101974,15 @@ - m03111c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101901 or ENSG00000172339 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.141 - - references: + - gene_reaction_rule: "ENSG00000101901 or ENSG00000172339" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.141" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7266 + - id: "HMR_7266" - name: "" - metabolites: !!omap - m01390c: 1 @@ -101992,15 +101992,15 @@ - m02498c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000033011 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.142 - - references: + - gene_reaction_rule: "ENSG00000033011" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.142" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7267 + - id: "HMR_7267" - name: "" - metabolites: !!omap - m01323c: 1 @@ -102010,15 +102010,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119523 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.132 - - references: + - gene_reaction_rule: "ENSG00000119523" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.132" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7268 + - id: "HMR_7268" - name: "" - metabolites: !!omap - m01323c: -1 @@ -102028,15 +102028,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119523 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.257 - - references: + - gene_reaction_rule: "ENSG00000119523" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.257" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7269 + - id: "HMR_7269" - name: "" - metabolites: !!omap - m01865c: -1 @@ -102046,15 +102046,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000253710 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.131 - - references: + - gene_reaction_rule: "ENSG00000253710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.131" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7270 + - id: "HMR_7270" - name: "" - metabolites: !!omap - m01866c: 1 @@ -102064,15 +102064,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000253710 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.131 - - references: + - gene_reaction_rule: "ENSG00000253710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.131" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7271 + - id: "HMR_7271" - name: "" - metabolites: !!omap - m01733c: -1 @@ -102081,15 +102081,15 @@ - m01951c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000000419 and ENSG00000136908 and ENSG00000179085) or ENSG00000182858 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.83 - - references: + - gene_reaction_rule: "(ENSG00000000419 and ENSG00000136908 and ENSG00000179085) or ENSG00000182858" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.83" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 2 - !!omap - - id: HMR_7274 + - id: "HMR_7274" - name: "" - metabolites: !!omap - m01733r: 1 @@ -102099,15 +102099,15 @@ - m02039r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000214160 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.258 - - references: + - gene_reaction_rule: "ENSG00000214160" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.258" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7275 + - id: "HMR_7275" - name: "" - metabolites: !!omap - m01733r: 1 @@ -102117,15 +102117,15 @@ - m02039r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000000419 and ENSG00000136908 and ENSG00000179085) or ENSG00000086848 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.259 - - references: + - gene_reaction_rule: "(ENSG00000000419 and ENSG00000136908 and ENSG00000179085) or ENSG00000086848" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.259" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 2 - !!omap - - id: HMR_7276 + - id: "HMR_7276" - name: "" - metabolites: !!omap - m01733r: 1 @@ -102135,15 +102135,15 @@ - m02039r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000182858 or ENSG00000214160 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.260 - - references: + - gene_reaction_rule: "ENSG00000182858 or ENSG00000214160" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.260" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 2 - !!omap - - id: HMR_7277 + - id: "HMR_7277" - name: "" - metabolites: !!omap - m01733r: 1 @@ -102153,15 +102153,15 @@ - m02039r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000086848 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.261 - - references: + - gene_reaction_rule: "ENSG00000086848" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.261" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7278 + - id: "HMR_7278" - name: "" - metabolites: !!omap - m01731r: 1 @@ -102170,15 +102170,15 @@ - m03108r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120697 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.117 - - references: + - gene_reaction_rule: "ENSG00000120697" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.117" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7279 + - id: "HMR_7279" - name: "" - metabolites: !!omap - m01731r: -1 @@ -102188,15 +102188,15 @@ - m02039r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088035 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.267 - - references: + - gene_reaction_rule: "ENSG00000088035" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.267" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7280 + - id: "HMR_7280" - name: "" - metabolites: !!omap - m01731r: -1 @@ -102206,15 +102206,15 @@ - m02039r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000159063 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.265 - - references: + - gene_reaction_rule: "ENSG00000159063" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.265" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7281 + - id: "HMR_7281" - name: "" - metabolites: !!omap - m00154r: 1 @@ -102224,15 +102224,15 @@ - m02039r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000139133 or ENSG00000175548 or ENSG00000159063 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.256 - - references: + - gene_reaction_rule: "ENSG00000139133 or ENSG00000175548 or ENSG00000159063" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.256" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 2 - !!omap - - id: HMR_7285 + - id: "HMR_7285" - name: "" - metabolites: !!omap - m00140r: 1 @@ -102242,15 +102242,15 @@ - m02039r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000118705 and ENSG00000129562 and ENSG00000134910 and ENSG00000163902 and ENSG00000244038) or (ENSG00000104723 and ENSG00000118705 and ENSG00000129562 and ENSG00000163527 and ENSG00000163902 and ENSG00000244038) - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.18 - - references: + - gene_reaction_rule: "(ENSG00000118705 and ENSG00000129562 and ENSG00000134910 and ENSG00000163902 and ENSG00000244038) or (ENSG00000104723 and ENSG00000118705 and ENSG00000129562 and ENSG00000163527 and ENSG00000163902 and ENSG00000244038)" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.18" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7286 + - id: "HMR_7286" - name: "" - metabolites: !!omap - m00139r: 1 @@ -102259,15 +102259,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115275 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.106 - - references: + - gene_reaction_rule: "ENSG00000115275" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.106" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7287 + - id: "HMR_7287" - name: "" - metabolites: !!omap - m00138r: 1 @@ -102276,15 +102276,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000089597 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.84 - - references: + - gene_reaction_rule: "ENSG00000089597" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.84" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7288 + - id: "HMR_7288" - name: "" - metabolites: !!omap - m00138r: -1 @@ -102293,15 +102293,15 @@ - m02453r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7289 + - id: "HMR_7289" - name: "" - metabolites: !!omap - m00138r: -1 @@ -102310,15 +102310,15 @@ - m02453r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111885 or ENSG00000117643 or ENSG00000177239 or ENSG00000198162 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.113 - - references: + - gene_reaction_rule: "ENSG00000111885 or ENSG00000117643 or ENSG00000177239 or ENSG00000198162" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.113" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7290 + - id: "HMR_7290" - name: "" - metabolites: !!omap - m00138r: -1 @@ -102327,15 +102327,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7291 + - id: "HMR_7291" - name: "" - metabolites: !!omap - m01969r: 1 @@ -102344,15 +102344,15 @@ - m02453r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111885 or ENSG00000117643 or ENSG00000177239 or ENSG00000198162 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.113 - - references: + - gene_reaction_rule: "ENSG00000111885 or ENSG00000117643 or ENSG00000177239 or ENSG00000198162" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.113" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7292 + - id: "HMR_7292" - name: "" - metabolites: !!omap - m01969r: 1 @@ -102361,15 +102361,15 @@ - m02453r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7293 + - id: "HMR_7293" - name: "" - metabolites: !!omap - m00151r: 1 @@ -102378,120 +102378,120 @@ - m02453r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111885 or ENSG00000117643 or ENSG00000177239 or ENSG00000198162 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.113 - - references: + - gene_reaction_rule: "ENSG00000111885 or ENSG00000117643 or ENSG00000177239 or ENSG00000198162" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.113" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7294 + - id: "HMR_7294" - name: "" - metabolites: !!omap - m01969g: 1 - m01969r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7295 + - id: "HMR_7295" - name: "" - metabolites: !!omap - m00140g: 1 - m00140r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7296 + - id: "HMR_7296" - name: "" - metabolites: !!omap - m00139g: 1 - m00139r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7297 + - id: "HMR_7297" - name: "" - metabolites: !!omap - m00138g: 1 - m00138r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7298 + - id: "HMR_7298" - name: "" - metabolites: !!omap - m01970g: 1 - m01970r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7299 + - id: "HMR_7299" - name: "" - metabolites: !!omap - m01971g: 1 - m01971r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7300 + - id: "HMR_7300" - name: "" - metabolites: !!omap - m00151g: 1 - m00151r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7301 + - id: "HMR_7301" - name: "" - metabolites: !!omap - m00140g: -1 @@ -102501,15 +102501,15 @@ - m02453g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7302 + - id: "HMR_7302" - name: "" - metabolites: !!omap - m00139g: -1 @@ -102519,15 +102519,15 @@ - m02453g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7303 + - id: "HMR_7303" - name: "" - metabolites: !!omap - m00138g: -1 @@ -102537,15 +102537,15 @@ - m02453g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7304 + - id: "HMR_7304" - name: "" - metabolites: !!omap - m00149g: 1 @@ -102555,15 +102555,15 @@ - m02453g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7305 + - id: "HMR_7305" - name: "" - metabolites: !!omap - m00148g: 1 @@ -102573,15 +102573,15 @@ - m02453g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7306 + - id: "HMR_7306" - name: "" - metabolites: !!omap - m00143g: 1 @@ -102591,15 +102591,15 @@ - m02453g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7308 + - id: "HMR_7308" - name: "" - metabolites: !!omap - m00150g: 1 @@ -102608,15 +102608,15 @@ - m02453g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111885 or ENSG00000117643 or ENSG00000177239 or ENSG00000198162 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.113 - - references: + - gene_reaction_rule: "ENSG00000111885 or ENSG00000117643 or ENSG00000177239 or ENSG00000198162" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.113" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7309 + - id: "HMR_7309" - name: "" - metabolites: !!omap - m00152g: 1 @@ -102625,15 +102625,15 @@ - m02453g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111885 or ENSG00000117643 or ENSG00000177239 or ENSG00000198162 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.113 - - references: + - gene_reaction_rule: "ENSG00000111885 or ENSG00000117643 or ENSG00000177239 or ENSG00000198162" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.113" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7310 + - id: "HMR_7310" - name: "" - metabolites: !!omap - m00146g: 1 @@ -102642,15 +102642,15 @@ - m02453g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111885 or ENSG00000117643 or ENSG00000177239 or ENSG00000198162 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.113 - - references: + - gene_reaction_rule: "ENSG00000111885 or ENSG00000117643 or ENSG00000177239 or ENSG00000198162" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.113" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7311 + - id: "HMR_7311" - name: "" - metabolites: !!omap - m00147g: 1 @@ -102659,15 +102659,15 @@ - m02453g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111885 or ENSG00000117643 or ENSG00000177239 or ENSG00000198162 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.113 - - references: + - gene_reaction_rule: "ENSG00000111885 or ENSG00000117643 or ENSG00000177239 or ENSG00000198162" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.113" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7312 + - id: "HMR_7312" - name: "" - metabolites: !!omap - m00148g: 1 @@ -102676,15 +102676,15 @@ - m02453g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111885 or ENSG00000117643 or ENSG00000177239 or ENSG00000198162 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.113 - - references: + - gene_reaction_rule: "ENSG00000111885 or ENSG00000117643 or ENSG00000177239 or ENSG00000198162" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.113" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7313 + - id: "HMR_7313" - name: "" - metabolites: !!omap - m00149g: 1 @@ -102693,15 +102693,15 @@ - m02453g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111885 or ENSG00000117643 or ENSG00000177239 or ENSG00000198162 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.113 - - references: + - gene_reaction_rule: "ENSG00000111885 or ENSG00000117643 or ENSG00000177239 or ENSG00000198162" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.113" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7314 + - id: "HMR_7314" - name: "" - metabolites: !!omap - m00149g: 1 @@ -102710,15 +102710,15 @@ - m02453g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111885 or ENSG00000117643 or ENSG00000177239 or ENSG00000198162 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.113 - - references: + - gene_reaction_rule: "ENSG00000111885 or ENSG00000117643 or ENSG00000177239 or ENSG00000198162" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.113" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7315 + - id: "HMR_7315" - name: "" - metabolites: !!omap - m00145g: 1 @@ -102727,15 +102727,15 @@ - m02453g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111885 or ENSG00000117643 or ENSG00000177239 or ENSG00000198162 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.113 - - references: + - gene_reaction_rule: "ENSG00000111885 or ENSG00000117643 or ENSG00000177239 or ENSG00000198162" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.113" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7316 + - id: "HMR_7316" - name: "" - metabolites: !!omap - m00143g: 1 @@ -102744,15 +102744,15 @@ - m02453g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111885 or ENSG00000117643 or ENSG00000177239 or ENSG00000198162 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.113 - - references: + - gene_reaction_rule: "ENSG00000111885 or ENSG00000117643 or ENSG00000177239 or ENSG00000198162" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.113" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7317 + - id: "HMR_7317" - name: "" - metabolites: !!omap - m00143g: 1 @@ -102761,15 +102761,15 @@ - m02453g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111885 or ENSG00000117643 or ENSG00000177239 or ENSG00000198162 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.113 - - references: + - gene_reaction_rule: "ENSG00000111885 or ENSG00000117643 or ENSG00000177239 or ENSG00000198162" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.113" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7318 + - id: "HMR_7318" - name: "" - metabolites: !!omap - m00144g: 1 @@ -102778,15 +102778,15 @@ - m02453g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111885 or ENSG00000117643 or ENSG00000177239 or ENSG00000198162 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.113 - - references: + - gene_reaction_rule: "ENSG00000111885 or ENSG00000117643 or ENSG00000177239 or ENSG00000198162" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.113" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7319 + - id: "HMR_7319" - name: "" - metabolites: !!omap - m00145g: 1 @@ -102795,15 +102795,15 @@ - m02453g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111885 or ENSG00000117643 or ENSG00000177239 or ENSG00000198162 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.113 - - references: + - gene_reaction_rule: "ENSG00000111885 or ENSG00000117643 or ENSG00000177239 or ENSG00000198162" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.113" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7320 + - id: "HMR_7320" - name: "" - metabolites: !!omap - m00142g: 1 @@ -102812,15 +102812,15 @@ - m02453g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111885 or ENSG00000117643 or ENSG00000177239 or ENSG00000198162 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.113 - - references: + - gene_reaction_rule: "ENSG00000111885 or ENSG00000117643 or ENSG00000177239 or ENSG00000198162" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.113" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7321 + - id: "HMR_7321" - name: "" - metabolites: !!omap - m00142g: 1 @@ -102829,15 +102829,15 @@ - m02453g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111885 or ENSG00000117643 or ENSG00000177239 or ENSG00000198162 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.113 - - references: + - gene_reaction_rule: "ENSG00000111885 or ENSG00000117643 or ENSG00000177239 or ENSG00000198162" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.113" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7322 + - id: "HMR_7322" - name: "" - metabolites: !!omap - m00142g: 1 @@ -102846,15 +102846,15 @@ - m02453g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111885 or ENSG00000117643 or ENSG00000177239 or ENSG00000198162 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.113 - - references: + - gene_reaction_rule: "ENSG00000111885 or ENSG00000117643 or ENSG00000177239 or ENSG00000198162" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.113" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7323 + - id: "HMR_7323" - name: "" - metabolites: !!omap - m00142g: -1 @@ -102864,15 +102864,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000131446 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.101 - - references: + - gene_reaction_rule: "ENSG00000131446" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.101" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7324 + - id: "HMR_7324" - name: "" - metabolites: !!omap - m02040g: -2 @@ -102881,15 +102881,15 @@ - m02598g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112893 or ENSG00000196547 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.114 - - references: + - gene_reaction_rule: "ENSG00000112893 or ENSG00000196547" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.114" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7325 + - id: "HMR_7325" - name: "" - metabolites: !!omap - m02039g: 1 @@ -102899,15 +102899,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000168282 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.143 - - references: + - gene_reaction_rule: "ENSG00000168282" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.143" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7326 + - id: "HMR_7326" - name: "" - metabolites: !!omap - m02039g: 1 @@ -102917,15 +102917,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000128268 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.144 - - references: + - gene_reaction_rule: "ENSG00000128268" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.144" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7327 + - id: "HMR_7327" - name: "" - metabolites: !!omap - m01868g: 1 @@ -102935,15 +102935,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000071073 or ENSG00000161013 or ENSG00000182050 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.145 - - references: + - gene_reaction_rule: "ENSG00000071073 or ENSG00000161013 or ENSG00000182050" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.145" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7328 + - id: "HMR_7328" - name: "" - metabolites: !!omap - m01868g: -1 @@ -102953,15 +102953,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000152127 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.155 - - references: + - gene_reaction_rule: "ENSG00000152127" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.155" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7329 + - id: "HMR_7329" - name: "" - metabolites: !!omap - m01869g: -1 @@ -102971,15 +102971,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000182050 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.201 - - references: PMID:10570912 + - gene_reaction_rule: "ENSG00000182050" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.201" + - references: "PMID:10570912" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7332 + - id: "HMR_7332" - name: "" - metabolites: !!omap - m01829g: 1 @@ -102989,15 +102989,15 @@ - m02507g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000033170 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.68 - - references: + - gene_reaction_rule: "ENSG00000033170" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.68" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7333 + - id: "HMR_7333" - name: "" - metabolites: !!omap - m01829g: -1 @@ -103007,15 +103007,15 @@ - m03107g: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000086062 or ENSG00000117411 or ENSG00000158470 or ENSG00000158850 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.38 - - references: + - gene_reaction_rule: "ENSG00000086062 or ENSG00000117411 or ENSG00000158470 or ENSG00000158850" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.38" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7334 + - id: "HMR_7334" - name: "" - metabolites: !!omap - m01590g: 2 @@ -103025,15 +103025,15 @@ - m02672g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073849 or ENSG00000144057 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.1 - - references: + - gene_reaction_rule: "ENSG00000073849 or ENSG00000144057" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.1" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7428 + - id: "HMR_7428" - name: "" - metabolites: !!omap - m00141l: -1 @@ -103042,15 +103042,15 @@ - m02453l: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000013288 or ENSG00000104774 or ENSG00000140400 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.24 - - references: + - gene_reaction_rule: "ENSG00000013288 or ENSG00000104774 or ENSG00000140400" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.24" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7429 + - id: "HMR_7429" - name: "" - metabolites: !!omap - m01382l: -1 @@ -103059,15 +103059,15 @@ - m02527l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109323 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.25 - - references: + - gene_reaction_rule: "ENSG00000109323" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.25" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7574 + - id: "HMR_7574" - name: "" - metabolites: !!omap - m00198l: 1 @@ -103076,15 +103076,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000038002 - - rxnFrom: HMRdatabase - - eccodes: 3.5.1.26 - - references: + - gene_reaction_rule: "ENSG00000038002" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.1.26" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7575 + - id: "HMR_7575" - name: "" - metabolites: !!omap - m01651l: -1 @@ -103093,15 +103093,15 @@ - m02527l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167280 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.96 - - references: + - gene_reaction_rule: "ENSG00000167280" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.96" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7576 + - id: "HMR_7576" - name: "" - metabolites: !!omap - m01653l: -1 @@ -103110,15 +103110,15 @@ - m02543l: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 or ENSG00000115488 or ENSG00000162139 or ENSG00000170266 or ENSG00000204099 or ENSG00000204386 - - rxnFrom: HMRdatabase - - eccodes: 3.4.16.5;3.2.1.18;3.2.1.23 - - references: + - gene_reaction_rule: "ENSG00000064601 or ENSG00000115488 or ENSG00000162139 or ENSG00000170266 or ENSG00000204099 or ENSG00000204386" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.16.5;3.2.1.18;3.2.1.23" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7577 + - id: "HMR_7577" - name: "" - metabolites: !!omap - m01910l: 2 @@ -103127,15 +103127,15 @@ - m02508l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5 - - references: + - gene_reaction_rule: "ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7578 + - id: "HMR_7578" - name: "" - metabolites: !!omap - m00141l: 1 @@ -103144,15 +103144,15 @@ - m02527l: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7580 + - id: "HMR_7580" - name: "" - metabolites: !!omap - m01159s: 1 @@ -103161,15 +103161,15 @@ - m02672s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000001036 or ENSG00000179163 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.51 - - references: + - gene_reaction_rule: "ENSG00000001036 or ENSG00000179163" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.51" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7582 + - id: "HMR_7582" - name: "" - metabolites: !!omap - m01159l: 1 @@ -103178,15 +103178,15 @@ - m02672l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000001036 or ENSG00000179163 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.51 - - references: + - gene_reaction_rule: "ENSG00000001036 or ENSG00000179163" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.51" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7585 + - id: "HMR_7585" - name: "" - metabolites: !!omap - m00198l: 1 @@ -103195,15 +103195,15 @@ - m02510l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000038002 - - rxnFrom: HMRdatabase - - eccodes: 3.5.1.26 - - references: + - gene_reaction_rule: "ENSG00000038002" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.1.26" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7586 + - id: "HMR_7586" - name: "" - metabolites: !!omap - m02040l: -1 @@ -103212,15 +103212,15 @@ - m02527l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167280 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000167280" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_7587 + - id: "HMR_7587" - name: "" - metabolites: !!omap - m00141l: 1 @@ -103229,15 +103229,15 @@ - m02527l: 3 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_8691 + - id: "HMR_8691" - name: "" - metabolites: !!omap - m01732r: -1 @@ -103247,15 +103247,15 @@ - m02751r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167130 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000167130" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_8692 + - id: "HMR_8692" - name: "" - metabolites: !!omap - m01731r: -1 @@ -103265,15 +103265,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_8693 + - id: "HMR_8693" - name: "" - metabolites: !!omap - m02039g: 1 @@ -103283,15 +103283,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000071073 or ENSG00000161013 or ENSG00000182050 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.145 - - references: + - gene_reaction_rule: "ENSG00000071073 or ENSG00000161013 or ENSG00000182050" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.145" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_8694 + - id: "HMR_8694" - name: "" - metabolites: !!omap - m02039g: 1 @@ -103301,15 +103301,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000152127 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.155 - - references: + - gene_reaction_rule: "ENSG00000152127" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.155" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_8695 + - id: "HMR_8695" - name: "" - metabolites: !!omap - m02039g: 1 @@ -103319,15 +103319,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: HMR_5151 + - id: "HMR_5151" - name: "" - metabolites: !!omap - m01285c: 1827 @@ -103378,15 +103378,15 @@ - m03082c: 43 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000163631 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000163631" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein assembly + - "Protein assembly" - confidence_score: 0 - !!omap - - id: HMR_5152 + - id: "HMR_5152" - name: "" - metabolites: !!omap - m01285c: 1269 @@ -103437,15 +103437,15 @@ - m03082c: 24 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000196136 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000196136" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein assembly + - "Protein assembly" - confidence_score: 2 - !!omap - - id: HMR_5153 + - id: "HMR_5153" - name: "" - metabolites: !!omap - m01285c: 1254 @@ -103496,15 +103496,15 @@ - m03082c: 27 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197249 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197249" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein assembly + - "Protein assembly" - confidence_score: 2 - !!omap - - id: HMR_5154 + - id: "HMR_5154" - name: "" - metabolites: !!omap - m01285c: 13683 @@ -103555,15 +103555,15 @@ - m03082c: 252 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084674 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000084674" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein assembly + - "Protein assembly" - confidence_score: 2 - !!omap - - id: HMR_5155 + - id: "HMR_5155" - name: "" - metabolites: !!omap - m01285c: 372 @@ -103612,15 +103612,15 @@ - m03082c: 11 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein assembly + - "Protein assembly" - confidence_score: 0 - !!omap - - id: HMR_5156 + - id: "HMR_5156" - name: "" - metabolites: !!omap - m01285c: 261 @@ -103669,15 +103669,15 @@ - m03082c: 6 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein assembly + - "Protein assembly" - confidence_score: 0 - !!omap - - id: HMR_5157 + - id: "HMR_5157" - name: "" - metabolites: !!omap - m01285c: 249 @@ -103722,15 +103722,15 @@ - m03082c: 7 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000130208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein assembly + - "Protein assembly" - confidence_score: 2 - !!omap - - id: HMR_5158 + - id: "HMR_5158" - name: "" - metabolites: !!omap - m01285c: 303 @@ -103777,15 +103777,15 @@ - m03082c: 7 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000234906 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000234906" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein assembly + - "Protein assembly" - confidence_score: 2 - !!omap - - id: HMR_5159 + - id: "HMR_5159" - name: "" - metabolites: !!omap - m01285c: 297 @@ -103830,15 +103830,15 @@ - m03082c: 9 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110245 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000110245" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein assembly + - "Protein assembly" - confidence_score: 2 - !!omap - - id: HMR_5160 + - id: "HMR_5160" - name: "" - metabolites: !!omap - m01285c: 8022 @@ -103889,15 +103889,15 @@ - m03082c: 122 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171560 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000171560" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein assembly + - "Protein assembly" - confidence_score: 2 - !!omap - - id: HMR_5161 + - id: "HMR_5161" - name: "" - metabolites: !!omap - m01285c: 1218 @@ -103948,15 +103948,15 @@ - m03082c: 36 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein assembly + - "Protein assembly" - confidence_score: 0 - !!omap - - id: HMR_5162 + - id: "HMR_5162" - name: "" - metabolites: !!omap - m01285c: 2430 @@ -104007,15 +104007,15 @@ - m03082c: 48 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000122194 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000122194" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein assembly + - "Protein assembly" - confidence_score: 2 - !!omap - - id: HMR_5163 + - id: "HMR_5163" - name: "" - metabolites: !!omap - m01285c: 1866 @@ -104066,15 +104066,15 @@ - m03082c: 37 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000180210 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000180210" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein assembly + - "Protein assembly" - confidence_score: 2 - !!omap - - id: HMR_5164 + - id: "HMR_5164" - name: "" - metabolites: !!omap - m00186c: 1 @@ -104125,15 +104125,15 @@ - m03082c: 48 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072274 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000072274" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein assembly + - "Protein assembly" - confidence_score: 2 - !!omap - - id: HMR_5165 + - id: "HMR_5165" - name: "" - metabolites: !!omap - m01285c: 951 @@ -104184,15 +104184,15 @@ - m03082c: 24 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130203 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000130203" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein assembly + - "Protein assembly" - confidence_score: 2 - !!omap - - id: HMR_5166 + - id: "HMR_5166" - name: "" - metabolites: !!omap - m01285c: 801 @@ -104239,15 +104239,15 @@ - m03082c: 15 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000168487 - - rxnFrom: HMRdatabase - - eccodes: 3.4.24.19 - - references: + - gene_reaction_rule: "ENSG00000168487" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.24.19" + - references: "" - subsystem: - - Protein assembly + - "Protein assembly" - confidence_score: 0 - !!omap - - id: HMR_5167 + - id: "HMR_5167" - name: "" - metabolites: !!omap - m01285c: 315 @@ -104296,15 +104296,15 @@ - m03082c: 11 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14702039;PMID:15164053;PMID:16097034;PMID:1874447;PMID:1998498;PMID:2176490;PMID:2785919;PMID:3170595 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14702039;PMID:15164053;PMID:16097034;PMID:1874447;PMID:1998498;PMID:2176490;PMID:2785919;PMID:3170595" - subsystem: - - Protein assembly + - "Protein assembly" - confidence_score: 0 - !!omap - - id: HMR_5168 + - id: "HMR_5168" - name: "" - metabolites: !!omap - m01285c: 498 @@ -104355,15 +104355,15 @@ - m03082c: 17 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10591208;PMID:12032145;PMID:12080052;PMID:15461802;PMID:15489334;PMID:16195549 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10591208;PMID:12032145;PMID:12080052;PMID:15461802;PMID:15489334;PMID:16195549" - subsystem: - - Protein assembly + - "Protein assembly" - confidence_score: 0 - !!omap - - id: HMR_5169 + - id: "HMR_5169" - name: "" - metabolites: !!omap - m01285c: 855 @@ -104414,15 +104414,15 @@ - m03082c: 21 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein assembly + - "Protein assembly" - confidence_score: 0 - !!omap - - id: HMR_5170 + - id: "HMR_5170" - name: "" - metabolites: !!omap - m01285c: 579 @@ -104473,15 +104473,15 @@ - m03082c: 12 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein assembly + - "Protein assembly" - confidence_score: 0 - !!omap - - id: HMR_5171 + - id: "HMR_5171" - name: "" - metabolites: !!omap - m01285c: 975 @@ -104532,15 +104532,15 @@ - m03082c: 20 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein assembly + - "Protein assembly" - confidence_score: 0 - !!omap - - id: HMR_5172 + - id: "HMR_5172" - name: "" - metabolites: !!omap - m01285c: 1050 @@ -104591,15 +104591,15 @@ - m03082c: 28 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10395894;PMID:10721716;PMID:15489334;PMID:8602861;PMID:8661012 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10395894;PMID:10721716;PMID:15489334;PMID:8602861;PMID:8661012" - subsystem: - - Protein assembly + - "Protein assembly" - confidence_score: 0 - !!omap - - id: HMR_5173 + - id: "HMR_5173" - name: "" - metabolites: !!omap - m01285c: 1404 @@ -104648,15 +104648,15 @@ - m03082c: 27 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein assembly + - "Protein assembly" - confidence_score: 0 - !!omap - - id: HMR_5174 + - id: "HMR_5174" - name: "" - metabolites: !!omap - m01285c: 1425 @@ -104707,15 +104707,15 @@ - m03082c: 35 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein assembly + - "Protein assembly" - confidence_score: 0 - !!omap - - id: HMR_7282 + - id: "HMR_7282" - name: "" - metabolites: !!omap - m00196c: -1 @@ -104724,15 +104724,15 @@ - m02040c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein modification + - "Protein modification" - confidence_score: 0 - !!omap - - id: HMR_7616 + - id: "HMR_7616" - name: "" - metabolites: !!omap - m00196c: -1 @@ -104741,15 +104741,15 @@ - m03101c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein modification + - "Protein modification" - confidence_score: 0 - !!omap - - id: HMR_7617 + - id: "HMR_7617" - name: "" - metabolites: !!omap - m00206c: -1 @@ -104759,15 +104759,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000141736 and ENSG00000146648) or (ENSG00000126934 and ENSG00000169032) or (ENSG00000120899 and ENSG00000146904 and ENSG00000182866) or (ENSG00000037280 and ENSG00000128052) or ENSG00000000938 or ENSG00000007264 or ENSG00000010219 or ENSG00000010671 or ENSG00000010810 or ENSG00000013441 or ENSG00000027644 or ENSG00000030304 or ENSG00000034152 or ENSG00000044524 or ENSG00000047936 or ENSG00000060140 or ENSG00000061938 or ENSG00000062524 or ENSG00000065361 or ENSG00000065559 or ENSG00000066056 or ENSG00000066468 or ENSG00000068078 or ENSG00000070759 or ENSG00000070886 or ENSG00000074966 or ENSG00000076984 or ENSG00000077782 or ENSG00000080224 or ENSG00000092445 or ENSG00000096968 or ENSG00000097007 or ENSG00000101213 or ENSG00000101336 or ENSG00000102010 or ENSG00000102755 or ENSG00000103653 or ENSG00000105204 or ENSG00000105397 or ENSG00000105639 or ENSG00000105976 or ENSG00000106123 or ENSG00000107140 or ENSG00000108984 or ENSG00000111816 or ENSG00000112655 or ENSG00000112742 or ENSG00000113240 or ENSG00000113263 or ENSG00000113721 or ENSG00000115085 or ENSG00000116106 or ENSG00000120156 or ENSG00000122025 or ENSG00000125508 or ENSG00000127334 or ENSG00000133216 or ENSG00000134853 or ENSG00000135333 or ENSG00000135605 or ENSG00000136573 or ENSG00000137764 or ENSG00000140443 or ENSG00000140538 or ENSG00000142235 or ENSG00000142627 or ENSG00000143322 or ENSG00000143479 or ENSG00000145242 or ENSG00000148053 or ENSG00000151422 or ENSG00000153208 or ENSG00000154928 or ENSG00000157404 or ENSG00000157540 or ENSG00000160867 or ENSG00000162434 or ENSG00000162733 or ENSG00000163785 or ENSG00000164078 or ENSG00000164715 or ENSG00000165025 or ENSG00000165731 or ENSG00000167601 or ENSG00000167778 or ENSG00000168078 or ENSG00000169071 or ENSG00000169398 or ENSG00000171094 or ENSG00000171105 or ENSG00000173517 or ENSG00000174292 or ENSG00000176105 or ENSG00000176444 or ENSG00000178568 or ENSG00000179335 or ENSG00000182511 or ENSG00000182578 or ENSG00000182580 or ENSG00000183317 or ENSG00000185483 or ENSG00000196411 or ENSG00000197122 or ENSG00000198400 or ENSG00000204580 or ENSG00000248099 or ENSG00000254087 or ENSG00000275342 - - rxnFrom: HMRdatabase - - eccodes: 2.7.10.1;2.7.10.2;2.7.12.1;2.7.12.2 - - references: + - gene_reaction_rule: "(ENSG00000141736 and ENSG00000146648) or (ENSG00000126934 and ENSG00000169032) or (ENSG00000120899 and ENSG00000146904 and ENSG00000182866) or (ENSG00000037280 and ENSG00000128052) or ENSG00000000938 or ENSG00000007264 or ENSG00000010219 or ENSG00000010671 or ENSG00000010810 or ENSG00000013441 or ENSG00000027644 or ENSG00000030304 or ENSG00000034152 or ENSG00000044524 or ENSG00000047936 or ENSG00000060140 or ENSG00000061938 or ENSG00000062524 or ENSG00000065361 or ENSG00000065559 or ENSG00000066056 or ENSG00000066468 or ENSG00000068078 or ENSG00000070759 or ENSG00000070886 or ENSG00000074966 or ENSG00000076984 or ENSG00000077782 or ENSG00000080224 or ENSG00000092445 or ENSG00000096968 or ENSG00000097007 or ENSG00000101213 or ENSG00000101336 or ENSG00000102010 or ENSG00000102755 or ENSG00000103653 or ENSG00000105204 or ENSG00000105397 or ENSG00000105639 or ENSG00000105976 or ENSG00000106123 or ENSG00000107140 or ENSG00000108984 or ENSG00000111816 or ENSG00000112655 or ENSG00000112742 or ENSG00000113240 or ENSG00000113263 or ENSG00000113721 or ENSG00000115085 or ENSG00000116106 or ENSG00000120156 or ENSG00000122025 or ENSG00000125508 or ENSG00000127334 or ENSG00000133216 or ENSG00000134853 or ENSG00000135333 or ENSG00000135605 or ENSG00000136573 or ENSG00000137764 or ENSG00000140443 or ENSG00000140538 or ENSG00000142235 or ENSG00000142627 or ENSG00000143322 or ENSG00000143479 or ENSG00000145242 or ENSG00000148053 or ENSG00000151422 or ENSG00000153208 or ENSG00000154928 or ENSG00000157404 or ENSG00000157540 or ENSG00000160867 or ENSG00000162434 or ENSG00000162733 or ENSG00000163785 or ENSG00000164078 or ENSG00000164715 or ENSG00000165025 or ENSG00000165731 or ENSG00000167601 or ENSG00000167778 or ENSG00000168078 or ENSG00000169071 or ENSG00000169398 or ENSG00000171094 or ENSG00000171105 or ENSG00000173517 or ENSG00000174292 or ENSG00000176105 or ENSG00000176444 or ENSG00000178568 or ENSG00000179335 or ENSG00000182511 or ENSG00000182578 or ENSG00000182580 or ENSG00000183317 or ENSG00000185483 or ENSG00000196411 or ENSG00000197122 or ENSG00000198400 or ENSG00000204580 or ENSG00000248099 or ENSG00000254087 or ENSG00000275342" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.10.1;2.7.10.2;2.7.12.1;2.7.12.2" + - references: "" - subsystem: - - Protein modification + - "Protein modification" - confidence_score: 0 - !!omap - - id: HMR_7618 + - id: "HMR_7618" - name: "" - metabolites: !!omap - m00206c: 1 @@ -104776,15 +104776,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000054356 or ENSG00000060656 or ENSG00000064655 or ENSG00000070159 or ENSG00000070778 or ENSG00000072135 or ENSG00000076201 or ENSG00000079335 or ENSG00000079393 or ENSG00000080031 or ENSG00000081237 or ENSG00000081377 or ENSG00000081721 or ENSG00000084112 or ENSG00000088179 or ENSG00000100330 or ENSG00000100526 or ENSG00000101224 or ENSG00000104313 or ENSG00000105426 or ENSG00000106278 or ENSG00000108861 or ENSG00000110536 or ENSG00000110786 or ENSG00000111266 or ENSG00000111679 or ENSG00000112245 or ENSG00000112319 or ENSG00000112425 or ENSG00000112679 or ENSG00000116675 or ENSG00000120129 or ENSG00000120875 or ENSG00000127329 or ENSG00000127947 or ENSG00000127952 or ENSG00000130829 or ENSG00000132334 or ENSG00000132670 or ENSG00000133878 or ENSG00000134242 or ENSG00000138166 or ENSG00000139318 or ENSG00000141298 or ENSG00000142949 or ENSG00000143507 or ENSG00000143727 or ENSG00000143851 or ENSG00000144048 or ENSG00000144724 or ENSG00000149177 or ENSG00000149599 or ENSG00000151490 or ENSG00000152104 or ENSG00000152894 or ENSG00000153233 or ENSG00000153707 or ENSG00000155093 or ENSG00000158050 or ENSG00000158079 or ENSG00000158161 or ENSG00000158402 or ENSG00000158716 or ENSG00000162999 or ENSG00000163629 or ENSG00000164045 or ENSG00000164086 or ENSG00000167065 or ENSG00000169410 or ENSG00000170324 or ENSG00000172830 or ENSG00000173482 or ENSG00000175354 or ENSG00000179295 or ENSG00000184007 or ENSG00000184489 or ENSG00000184545 or ENSG00000188542 or ENSG00000188716 or ENSG00000189037 or ENSG00000196090 or ENSG00000196396 or ENSG00000198842 or ENSG00000254505 or ENSG00000274391 or ENSG00000276023 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.48 - - references: + - gene_reaction_rule: "ENSG00000054356 or ENSG00000060656 or ENSG00000064655 or ENSG00000070159 or ENSG00000070778 or ENSG00000072135 or ENSG00000076201 or ENSG00000079335 or ENSG00000079393 or ENSG00000080031 or ENSG00000081237 or ENSG00000081377 or ENSG00000081721 or ENSG00000084112 or ENSG00000088179 or ENSG00000100330 or ENSG00000100526 or ENSG00000101224 or ENSG00000104313 or ENSG00000105426 or ENSG00000106278 or ENSG00000108861 or ENSG00000110536 or ENSG00000110786 or ENSG00000111266 or ENSG00000111679 or ENSG00000112245 or ENSG00000112319 or ENSG00000112425 or ENSG00000112679 or ENSG00000116675 or ENSG00000120129 or ENSG00000120875 or ENSG00000127329 or ENSG00000127947 or ENSG00000127952 or ENSG00000130829 or ENSG00000132334 or ENSG00000132670 or ENSG00000133878 or ENSG00000134242 or ENSG00000138166 or ENSG00000139318 or ENSG00000141298 or ENSG00000142949 or ENSG00000143507 or ENSG00000143727 or ENSG00000143851 or ENSG00000144048 or ENSG00000144724 or ENSG00000149177 or ENSG00000149599 or ENSG00000151490 or ENSG00000152104 or ENSG00000152894 or ENSG00000153233 or ENSG00000153707 or ENSG00000155093 or ENSG00000158050 or ENSG00000158079 or ENSG00000158161 or ENSG00000158402 or ENSG00000158716 or ENSG00000162999 or ENSG00000163629 or ENSG00000164045 or ENSG00000164086 or ENSG00000167065 or ENSG00000169410 or ENSG00000170324 or ENSG00000172830 or ENSG00000173482 or ENSG00000175354 or ENSG00000179295 or ENSG00000184007 or ENSG00000184489 or ENSG00000184545 or ENSG00000188542 or ENSG00000188716 or ENSG00000189037 or ENSG00000196090 or ENSG00000196396 or ENSG00000198842 or ENSG00000254505 or ENSG00000274391 or ENSG00000276023" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.48" + - references: "" - subsystem: - - Protein modification + - "Protein modification" - confidence_score: 0 - !!omap - - id: HMR_7619 + - id: "HMR_7619" - name: "" - metabolites: !!omap - m00206c: -1 @@ -104794,15 +104794,15 @@ - m02682c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000128294 or ENSG00000169902 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.20 - - references: + - gene_reaction_rule: "ENSG00000128294 or ENSG00000169902" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.20" + - references: "" - subsystem: - - Protein modification + - "Protein modification" - confidence_score: 0 - !!omap - - id: HMR_9735 + - id: "HMR_9735" - name: "" - metabolites: !!omap - m00196c: 1 @@ -104811,15 +104811,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein modification + - "Protein modification" - confidence_score: 0 - !!omap - - id: HMR_7621 + - id: "HMR_7621" - name: "" - metabolites: !!omap - m00196c: -1 @@ -104828,15 +104828,15 @@ - m02040c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein modification + - "Protein modification" - confidence_score: 0 - !!omap - - id: HMR_7622 + - id: "HMR_7622" - name: "" - metabolites: !!omap - m00197c: -1 @@ -104845,15 +104845,15 @@ - m02579c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117115 or ENSG00000142619 or ENSG00000142623 or ENSG00000159339 or ENSG00000276747 - - rxnFrom: HMRdatabase - - eccodes: 3.5.3.15 - - references: + - gene_reaction_rule: "ENSG00000117115 or ENSG00000142619 or ENSG00000142623 or ENSG00000159339 or ENSG00000276747" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.3.15" + - references: "" - subsystem: - - Protein modification + - "Protein modification" - confidence_score: 0 - !!omap - - id: HMR_7624 + - id: "HMR_7624" - name: "" - metabolites: !!omap - m00197c: 1 @@ -104862,15 +104862,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000144843 - - rxnFrom: HMRdatabase - - eccodes: 3.2.2.19 - - references: + - gene_reaction_rule: "ENSG00000144843" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.2.19" + - references: "" - subsystem: - - Protein modification + - "Protein modification" - confidence_score: 0 - !!omap - - id: HMR_7626 + - id: "HMR_7626" - name: "" - metabolites: !!omap - m01288c: 1 @@ -104879,15 +104879,15 @@ - m02496c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000144843 - - rxnFrom: HMRdatabase - - eccodes: 3.2.2.19 - - references: + - gene_reaction_rule: "ENSG00000144843" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.2.19" + - references: "" - subsystem: - - Protein modification + - "Protein modification" - confidence_score: 0 - !!omap - - id: HMR_5258 + - id: "HMR_5258" - name: "" - metabolites: !!omap - m01285c: 608 @@ -104918,15 +104918,15 @@ - m03135c: 43 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000163631 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000163631" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein degradation + - "Protein degradation" - confidence_score: 0 - !!omap - - id: HMR_5259 + - id: "HMR_5259" - name: "" - metabolites: !!omap - m01285l: 608 @@ -104957,15 +104957,15 @@ - m03135l: 43 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 or ENSG00000100448 or ENSG00000100600 or ENSG00000101160 or ENSG00000103811 or ENSG00000109861 or ENSG00000117984 or ENSG00000131400 or ENSG00000135047 or ENSG00000136943 or ENSG00000143387 or ENSG00000163131 or ENSG00000164733 or ENSG00000166340 or ENSG00000172543 or ENSG00000174080 or ENSG00000196188 or ENSG00000256043 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000064601 or ENSG00000100448 or ENSG00000100600 or ENSG00000101160 or ENSG00000103811 or ENSG00000109861 or ENSG00000117984 or ENSG00000131400 or ENSG00000135047 or ENSG00000136943 or ENSG00000143387 or ENSG00000163131 or ENSG00000164733 or ENSG00000166340 or ENSG00000172543 or ENSG00000174080 or ENSG00000196188 or ENSG00000256043" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein degradation + - "Protein degradation" - confidence_score: 0 - !!omap - - id: HMR_5260 + - id: "HMR_5260" - name: "" - metabolites: !!omap - m01285c: 422 @@ -104996,15 +104996,15 @@ - m03135c: 24 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein degradation + - "Protein degradation" - confidence_score: 0 - !!omap - - id: HMR_5261 + - id: "HMR_5261" - name: "" - metabolites: !!omap - m01285l: 422 @@ -105035,15 +105035,15 @@ - m03135l: 24 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 or ENSG00000100448 or ENSG00000100600 or ENSG00000101160 or ENSG00000103811 or ENSG00000109861 or ENSG00000117984 or ENSG00000131400 or ENSG00000135047 or ENSG00000136943 or ENSG00000143387 or ENSG00000163131 or ENSG00000164733 or ENSG00000166340 or ENSG00000172543 or ENSG00000174080 or ENSG00000196188 or ENSG00000256043 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000064601 or ENSG00000100448 or ENSG00000100600 or ENSG00000101160 or ENSG00000103811 or ENSG00000109861 or ENSG00000117984 or ENSG00000131400 or ENSG00000135047 or ENSG00000136943 or ENSG00000143387 or ENSG00000163131 or ENSG00000164733 or ENSG00000166340 or ENSG00000172543 or ENSG00000174080 or ENSG00000196188 or ENSG00000256043" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein degradation + - "Protein degradation" - confidence_score: 0 - !!omap - - id: HMR_5262 + - id: "HMR_5262" - name: "" - metabolites: !!omap - m01285c: 417 @@ -105074,15 +105074,15 @@ - m03135c: 27 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein degradation + - "Protein degradation" - confidence_score: 0 - !!omap - - id: HMR_5263 + - id: "HMR_5263" - name: "" - metabolites: !!omap - m01285l: 417 @@ -105113,15 +105113,15 @@ - m03135l: 27 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 or ENSG00000100448 or ENSG00000100600 or ENSG00000101160 or ENSG00000103811 or ENSG00000109861 or ENSG00000117984 or ENSG00000131400 or ENSG00000135047 or ENSG00000136943 or ENSG00000143387 or ENSG00000163131 or ENSG00000164733 or ENSG00000166340 or ENSG00000172543 or ENSG00000174080 or ENSG00000196188 or ENSG00000256043 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000064601 or ENSG00000100448 or ENSG00000100600 or ENSG00000101160 or ENSG00000103811 or ENSG00000109861 or ENSG00000117984 or ENSG00000131400 or ENSG00000135047 or ENSG00000136943 or ENSG00000143387 or ENSG00000163131 or ENSG00000164733 or ENSG00000166340 or ENSG00000172543 or ENSG00000174080 or ENSG00000196188 or ENSG00000256043" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein degradation + - "Protein degradation" - confidence_score: 0 - !!omap - - id: HMR_5264 + - id: "HMR_5264" - name: "" - metabolites: !!omap - m01285c: 4560 @@ -105152,15 +105152,15 @@ - m03135c: 252 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein degradation + - "Protein degradation" - confidence_score: 0 - !!omap - - id: HMR_5265 + - id: "HMR_5265" - name: "" - metabolites: !!omap - m01285l: 4560 @@ -105191,15 +105191,15 @@ - m03135l: 252 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 or ENSG00000100448 or ENSG00000100600 or ENSG00000101160 or ENSG00000103811 or ENSG00000109861 or ENSG00000117984 or ENSG00000131400 or ENSG00000135047 or ENSG00000136943 or ENSG00000143387 or ENSG00000163131 or ENSG00000164733 or ENSG00000166340 or ENSG00000172543 or ENSG00000174080 or ENSG00000196188 or ENSG00000256043 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000064601 or ENSG00000100448 or ENSG00000100600 or ENSG00000101160 or ENSG00000103811 or ENSG00000109861 or ENSG00000117984 or ENSG00000131400 or ENSG00000135047 or ENSG00000136943 or ENSG00000143387 or ENSG00000163131 or ENSG00000164733 or ENSG00000166340 or ENSG00000172543 or ENSG00000174080 or ENSG00000196188 or ENSG00000256043" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein degradation + - "Protein degradation" - confidence_score: 0 - !!omap - - id: HMR_5266 + - id: "HMR_5266" - name: "" - metabolites: !!omap - m01285c: 123 @@ -105229,15 +105229,15 @@ - m03135c: 11 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein degradation + - "Protein degradation" - confidence_score: 0 - !!omap - - id: HMR_5267 + - id: "HMR_5267" - name: "" - metabolites: !!omap - m01285m: 86 @@ -105267,15 +105267,15 @@ - m03135m: 6 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein degradation + - "Protein degradation" - confidence_score: 0 - !!omap - - id: HMR_5268 + - id: "HMR_5268" - name: "" - metabolites: !!omap - m01285c: 82 @@ -105303,15 +105303,15 @@ - m03135c: 7 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein degradation + - "Protein degradation" - confidence_score: 0 - !!omap - - id: HMR_5269 + - id: "HMR_5269" - name: "" - metabolites: !!omap - m01285c: 100 @@ -105340,15 +105340,15 @@ - m03135c: 7 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein degradation + - "Protein degradation" - confidence_score: 0 - !!omap - - id: HMR_5270 + - id: "HMR_5270" - name: "" - metabolites: !!omap - m01285c: 98 @@ -105376,15 +105376,15 @@ - m03135c: 9 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein degradation + - "Protein degradation" - confidence_score: 0 - !!omap - - id: HMR_5271 + - id: "HMR_5271" - name: "" - metabolites: !!omap - m01285c: 2673 @@ -105415,15 +105415,15 @@ - m03135c: 122 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein degradation + - "Protein degradation" - confidence_score: 0 - !!omap - - id: HMR_5272 + - id: "HMR_5272" - name: "" - metabolites: !!omap - m01285l: 2673 @@ -105454,15 +105454,15 @@ - m03135l: 122 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 or ENSG00000100448 or ENSG00000100600 or ENSG00000101160 or ENSG00000103811 or ENSG00000109861 or ENSG00000117984 or ENSG00000131400 or ENSG00000135047 or ENSG00000136943 or ENSG00000143387 or ENSG00000163131 or ENSG00000164733 or ENSG00000166340 or ENSG00000172543 or ENSG00000174080 or ENSG00000196188 or ENSG00000256043 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000064601 or ENSG00000100448 or ENSG00000100600 or ENSG00000101160 or ENSG00000103811 or ENSG00000109861 or ENSG00000117984 or ENSG00000131400 or ENSG00000135047 or ENSG00000136943 or ENSG00000143387 or ENSG00000163131 or ENSG00000164733 or ENSG00000166340 or ENSG00000172543 or ENSG00000174080 or ENSG00000196188 or ENSG00000256043" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein degradation + - "Protein degradation" - confidence_score: 0 - !!omap - - id: HMR_5273 + - id: "HMR_5273" - name: "" - metabolites: !!omap - m01285c: 405 @@ -105493,15 +105493,15 @@ - m03135c: 36 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein degradation + - "Protein degradation" - confidence_score: 0 - !!omap - - id: HMR_5274 + - id: "HMR_5274" - name: "" - metabolites: !!omap - m01285l: 405 @@ -105532,15 +105532,15 @@ - m03135l: 36 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 or ENSG00000100448 or ENSG00000100600 or ENSG00000101160 or ENSG00000103811 or ENSG00000109861 or ENSG00000117984 or ENSG00000131400 or ENSG00000135047 or ENSG00000136943 or ENSG00000143387 or ENSG00000163131 or ENSG00000164733 or ENSG00000166340 or ENSG00000172543 or ENSG00000174080 or ENSG00000196188 or ENSG00000256043 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000064601 or ENSG00000100448 or ENSG00000100600 or ENSG00000101160 or ENSG00000103811 or ENSG00000109861 or ENSG00000117984 or ENSG00000131400 or ENSG00000135047 or ENSG00000136943 or ENSG00000143387 or ENSG00000163131 or ENSG00000164733 or ENSG00000166340 or ENSG00000172543 or ENSG00000174080 or ENSG00000196188 or ENSG00000256043" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein degradation + - "Protein degradation" - confidence_score: 0 - !!omap - - id: HMR_5275 + - id: "HMR_5275" - name: "" - metabolites: !!omap - m01285c: 809 @@ -105571,15 +105571,15 @@ - m03135c: 48 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein degradation + - "Protein degradation" - confidence_score: 0 - !!omap - - id: HMR_5276 + - id: "HMR_5276" - name: "" - metabolites: !!omap - m01285l: 809 @@ -105610,15 +105610,15 @@ - m03135l: 48 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 or ENSG00000100448 or ENSG00000100600 or ENSG00000101160 or ENSG00000103811 or ENSG00000109861 or ENSG00000117984 or ENSG00000131400 or ENSG00000135047 or ENSG00000136943 or ENSG00000143387 or ENSG00000163131 or ENSG00000164733 or ENSG00000166340 or ENSG00000172543 or ENSG00000174080 or ENSG00000196188 or ENSG00000256043 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000064601 or ENSG00000100448 or ENSG00000100600 or ENSG00000101160 or ENSG00000103811 or ENSG00000109861 or ENSG00000117984 or ENSG00000131400 or ENSG00000135047 or ENSG00000136943 or ENSG00000143387 or ENSG00000163131 or ENSG00000164733 or ENSG00000166340 or ENSG00000172543 or ENSG00000174080 or ENSG00000196188 or ENSG00000256043" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein degradation + - "Protein degradation" - confidence_score: 0 - !!omap - - id: HMR_5277 + - id: "HMR_5277" - name: "" - metabolites: !!omap - m01285c: 621 @@ -105649,15 +105649,15 @@ - m03135c: 37 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein degradation + - "Protein degradation" - confidence_score: 0 - !!omap - - id: HMR_5278 + - id: "HMR_5278" - name: "" - metabolites: !!omap - m01285l: 621 @@ -105688,15 +105688,15 @@ - m03135l: 37 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 or ENSG00000100448 or ENSG00000100600 or ENSG00000101160 or ENSG00000103811 or ENSG00000109861 or ENSG00000117984 or ENSG00000131400 or ENSG00000135047 or ENSG00000136943 or ENSG00000143387 or ENSG00000163131 or ENSG00000164733 or ENSG00000166340 or ENSG00000172543 or ENSG00000174080 or ENSG00000196188 or ENSG00000256043 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000064601 or ENSG00000100448 or ENSG00000100600 or ENSG00000101160 or ENSG00000103811 or ENSG00000109861 or ENSG00000117984 or ENSG00000131400 or ENSG00000135047 or ENSG00000136943 or ENSG00000143387 or ENSG00000163131 or ENSG00000164733 or ENSG00000166340 or ENSG00000172543 or ENSG00000174080 or ENSG00000196188 or ENSG00000256043" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein degradation + - "Protein degradation" - confidence_score: 0 - !!omap - - id: HMR_5279 + - id: "HMR_5279" - name: "" - metabolites: !!omap - m00186c: -1 @@ -105727,15 +105727,15 @@ - m03135c: 48 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein degradation + - "Protein degradation" - confidence_score: 0 - !!omap - - id: HMR_5280 + - id: "HMR_5280" - name: "" - metabolites: !!omap - m00186l: -1 @@ -105766,15 +105766,15 @@ - m03135l: 48 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 or ENSG00000100448 or ENSG00000100600 or ENSG00000101160 or ENSG00000103811 or ENSG00000109861 or ENSG00000117984 or ENSG00000131400 or ENSG00000135047 or ENSG00000136943 or ENSG00000143387 or ENSG00000163131 or ENSG00000164733 or ENSG00000166340 or ENSG00000172543 or ENSG00000174080 or ENSG00000196188 or ENSG00000256043 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000064601 or ENSG00000100448 or ENSG00000100600 or ENSG00000101160 or ENSG00000103811 or ENSG00000109861 or ENSG00000117984 or ENSG00000131400 or ENSG00000135047 or ENSG00000136943 or ENSG00000143387 or ENSG00000163131 or ENSG00000164733 or ENSG00000166340 or ENSG00000172543 or ENSG00000174080 or ENSG00000196188 or ENSG00000256043" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein degradation + - "Protein degradation" - confidence_score: 0 - !!omap - - id: HMR_5281 + - id: "HMR_5281" - name: "" - metabolites: !!omap - m01285c: 316 @@ -105805,15 +105805,15 @@ - m03135c: 24 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein degradation + - "Protein degradation" - confidence_score: 0 - !!omap - - id: HMR_5282 + - id: "HMR_5282" - name: "" - metabolites: !!omap - m01285l: 316 @@ -105844,15 +105844,15 @@ - m03135l: 24 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 or ENSG00000100448 or ENSG00000100600 or ENSG00000101160 or ENSG00000103811 or ENSG00000109861 or ENSG00000117984 or ENSG00000131400 or ENSG00000135047 or ENSG00000136943 or ENSG00000143387 or ENSG00000163131 or ENSG00000164733 or ENSG00000166340 or ENSG00000172543 or ENSG00000174080 or ENSG00000196188 or ENSG00000256043 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000064601 or ENSG00000100448 or ENSG00000100600 or ENSG00000101160 or ENSG00000103811 or ENSG00000109861 or ENSG00000117984 or ENSG00000131400 or ENSG00000135047 or ENSG00000136943 or ENSG00000143387 or ENSG00000163131 or ENSG00000164733 or ENSG00000166340 or ENSG00000172543 or ENSG00000174080 or ENSG00000196188 or ENSG00000256043" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein degradation + - "Protein degradation" - confidence_score: 0 - !!omap - - id: HMR_5283 + - id: "HMR_5283" - name: "" - metabolites: !!omap - m01285c: 266 @@ -105881,15 +105881,15 @@ - m03135c: 15 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein degradation + - "Protein degradation" - confidence_score: 0 - !!omap - - id: HMR_5284 + - id: "HMR_5284" - name: "" - metabolites: !!omap - m01285l: 266 @@ -105918,15 +105918,15 @@ - m03135l: 15 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 or ENSG00000100448 or ENSG00000100600 or ENSG00000101160 or ENSG00000103811 or ENSG00000109861 or ENSG00000117984 or ENSG00000131400 or ENSG00000135047 or ENSG00000136943 or ENSG00000143387 or ENSG00000163131 or ENSG00000164733 or ENSG00000166340 or ENSG00000172543 or ENSG00000174080 or ENSG00000196188 or ENSG00000256043 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000064601 or ENSG00000100448 or ENSG00000100600 or ENSG00000101160 or ENSG00000103811 or ENSG00000109861 or ENSG00000117984 or ENSG00000131400 or ENSG00000135047 or ENSG00000136943 or ENSG00000143387 or ENSG00000163131 or ENSG00000164733 or ENSG00000166340 or ENSG00000172543 or ENSG00000174080 or ENSG00000196188 or ENSG00000256043" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein degradation + - "Protein degradation" - confidence_score: 0 - !!omap - - id: HMR_5285 + - id: "HMR_5285" - name: "" - metabolites: !!omap - m01285l: 284 @@ -105957,15 +105957,15 @@ - m03135l: 21 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 or ENSG00000100448 or ENSG00000100600 or ENSG00000101160 or ENSG00000103811 or ENSG00000109861 or ENSG00000117984 or ENSG00000131400 or ENSG00000135047 or ENSG00000136943 or ENSG00000143387 or ENSG00000163131 or ENSG00000164733 or ENSG00000166340 or ENSG00000172543 or ENSG00000174080 or ENSG00000196188 or ENSG00000256043 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000064601 or ENSG00000100448 or ENSG00000100600 or ENSG00000101160 or ENSG00000103811 or ENSG00000109861 or ENSG00000117984 or ENSG00000131400 or ENSG00000135047 or ENSG00000136943 or ENSG00000143387 or ENSG00000163131 or ENSG00000164733 or ENSG00000166340 or ENSG00000172543 or ENSG00000174080 or ENSG00000196188 or ENSG00000256043" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein degradation + - "Protein degradation" - confidence_score: 0 - !!omap - - id: HMR_5286 + - id: "HMR_5286" - name: "" - metabolites: !!omap - m01285l: 192 @@ -105996,15 +105996,15 @@ - m03135l: 12 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 or ENSG00000100448 or ENSG00000100600 or ENSG00000101160 or ENSG00000103811 or ENSG00000109861 or ENSG00000117984 or ENSG00000131400 or ENSG00000135047 or ENSG00000136943 or ENSG00000143387 or ENSG00000163131 or ENSG00000164733 or ENSG00000166340 or ENSG00000172543 or ENSG00000174080 or ENSG00000196188 or ENSG00000256043 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000064601 or ENSG00000100448 or ENSG00000100600 or ENSG00000101160 or ENSG00000103811 or ENSG00000109861 or ENSG00000117984 or ENSG00000131400 or ENSG00000135047 or ENSG00000136943 or ENSG00000143387 or ENSG00000163131 or ENSG00000164733 or ENSG00000166340 or ENSG00000172543 or ENSG00000174080 or ENSG00000196188 or ENSG00000256043" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein degradation + - "Protein degradation" - confidence_score: 0 - !!omap - - id: HMR_5287 + - id: "HMR_5287" - name: "" - metabolites: !!omap - m01285l: 324 @@ -106035,15 +106035,15 @@ - m03135l: 20 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 or ENSG00000100448 or ENSG00000100600 or ENSG00000101160 or ENSG00000103811 or ENSG00000109861 or ENSG00000117984 or ENSG00000131400 or ENSG00000135047 or ENSG00000136943 or ENSG00000143387 or ENSG00000163131 or ENSG00000164733 or ENSG00000166340 or ENSG00000172543 or ENSG00000174080 or ENSG00000196188 or ENSG00000256043 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000064601 or ENSG00000100448 or ENSG00000100600 or ENSG00000101160 or ENSG00000103811 or ENSG00000109861 or ENSG00000117984 or ENSG00000131400 or ENSG00000135047 or ENSG00000136943 or ENSG00000143387 or ENSG00000163131 or ENSG00000164733 or ENSG00000166340 or ENSG00000172543 or ENSG00000174080 or ENSG00000196188 or ENSG00000256043" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein degradation + - "Protein degradation" - confidence_score: 0 - !!omap - - id: HMR_5288 + - id: "HMR_5288" - name: "" - metabolites: !!omap - m01285c: 349 @@ -106074,15 +106074,15 @@ - m03135c: 28 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165996 or ENSG00000206527 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.134 - - references: PMID:10395894;PMID:10721716;PMID:15489334;PMID:8602861;PMID:8661012 + - gene_reaction_rule: "ENSG00000165996 or ENSG00000206527" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.134" + - references: "PMID:10395894;PMID:10721716;PMID:15489334;PMID:8602861;PMID:8661012" - subsystem: - - Protein degradation + - "Protein degradation" - confidence_score: 0 - !!omap - - id: HMR_5289 + - id: "HMR_5289" - name: "" - metabolites: !!omap - m01285l: 467 @@ -106112,15 +106112,15 @@ - m03135l: 27 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 or ENSG00000100448 or ENSG00000100600 or ENSG00000101160 or ENSG00000103811 or ENSG00000109861 or ENSG00000117984 or ENSG00000131400 or ENSG00000135047 or ENSG00000136943 or ENSG00000143387 or ENSG00000163131 or ENSG00000164733 or ENSG00000166340 or ENSG00000172543 or ENSG00000174080 or ENSG00000196188 or ENSG00000256043 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000064601 or ENSG00000100448 or ENSG00000100600 or ENSG00000101160 or ENSG00000103811 or ENSG00000109861 or ENSG00000117984 or ENSG00000131400 or ENSG00000135047 or ENSG00000136943 or ENSG00000143387 or ENSG00000163131 or ENSG00000164733 or ENSG00000166340 or ENSG00000172543 or ENSG00000174080 or ENSG00000196188 or ENSG00000256043" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein degradation + - "Protein degradation" - confidence_score: 0 - !!omap - - id: HMR_5290 + - id: "HMR_5290" - name: "" - metabolites: !!omap - m01285l: 4562 @@ -106151,15 +106151,15 @@ - m03135l: 250 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 or ENSG00000100448 or ENSG00000100600 or ENSG00000101160 or ENSG00000103811 or ENSG00000109861 or ENSG00000117984 or ENSG00000131400 or ENSG00000135047 or ENSG00000136943 or ENSG00000143387 or ENSG00000163131 or ENSG00000164733 or ENSG00000166340 or ENSG00000172543 or ENSG00000174080 or ENSG00000196188 or ENSG00000256043 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000064601 or ENSG00000100448 or ENSG00000100600 or ENSG00000101160 or ENSG00000103811 or ENSG00000109861 or ENSG00000117984 or ENSG00000131400 or ENSG00000135047 or ENSG00000136943 or ENSG00000143387 or ENSG00000163131 or ENSG00000164733 or ENSG00000166340 or ENSG00000172543 or ENSG00000174080 or ENSG00000196188 or ENSG00000256043" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein degradation + - "Protein degradation" - confidence_score: 0 - !!omap - - id: HMR_5291 + - id: "HMR_5291" - name: "" - metabolites: !!omap - m01285l: 474 @@ -106190,15 +106190,15 @@ - m03135l: 35 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein degradation + - "Protein degradation" - confidence_score: 0 - !!omap - - id: HMR_9817 + - id: "HMR_9817" - name: "" - metabolites: !!omap - m01285c: 104 @@ -106228,15 +106228,15 @@ - m03135c: 11 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein degradation + - "Protein degradation" - confidence_score: 0 - !!omap - - id: HMR_9818 + - id: "HMR_9818" - name: "" - metabolites: !!omap - m01285c: 165 @@ -106267,15 +106267,15 @@ - m03135c: 17 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Protein degradation + - "Protein degradation" - confidence_score: 0 - !!omap - - id: HMR_5407 + - id: "HMR_5407" - name: "" - metabolites: !!omap - m01421s: 1 @@ -106283,15 +106283,15 @@ - m02040s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074410 or ENSG00000104267 or ENSG00000107159 or ENSG00000118298 or ENSG00000131686 or ENSG00000133742 or ENSG00000159593 or ENSG00000164879 or ENSG00000167434 or ENSG00000168748 or ENSG00000169239 or ENSG00000174990 or ENSG00000178538 or ENSG00000185015 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.1 - - references: PMID:10938543;PMID:11493685;PMID:12713833;PMID:12747791;PMID:14640555;PMID:17259996;PMID:17504134;PMID:17826101;PMID:7011879;PMID:7672338 + - gene_reaction_rule: "ENSG00000074410 or ENSG00000104267 or ENSG00000107159 or ENSG00000118298 or ENSG00000131686 or ENSG00000133742 or ENSG00000159593 or ENSG00000164879 or ENSG00000167434 or ENSG00000168748 or ENSG00000169239 or ENSG00000174990 or ENSG00000178538 or ENSG00000185015" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.1" + - references: "PMID:10938543;PMID:11493685;PMID:12713833;PMID:12747791;PMID:14640555;PMID:17259996;PMID:17504134;PMID:17826101;PMID:7011879;PMID:7672338" - subsystem: - - Nitrogen metabolism + - "Nitrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_3851 + - id: "HMR_3851" - name: "" - metabolites: !!omap - m00919c: -1 @@ -106301,15 +106301,15 @@ - m02949c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Sulfur metabolism + - "Sulfur metabolism" - confidence_score: 0 - !!omap - - id: HMR_3861 + - id: "HMR_3861" - name: "" - metabolites: !!omap - m00918c: -1 @@ -106319,15 +106319,15 @@ - m02039c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120053 - - rxnFrom: HMRdatabase - - eccodes: 2.6.1.1 - - references: + - gene_reaction_rule: "ENSG00000120053" + - rxnFrom: "HMRdatabase" + - eccodes: "2.6.1.1" + - references: "" - subsystem: - - Sulfur metabolism + - "Sulfur metabolism" - confidence_score: 0 - !!omap - - id: HMR_3866 + - id: "HMR_3866" - name: "" - metabolites: !!omap - m00919m: -1 @@ -106337,15 +106337,15 @@ - m02949m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Sulfur metabolism + - "Sulfur metabolism" - confidence_score: 0 - !!omap - - id: HMR_3915 + - id: "HMR_3915" - name: "" - metabolites: !!omap - m01115c: 1 @@ -106354,15 +106354,15 @@ - m02980c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000150540 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.8 - - references: + - gene_reaction_rule: "ENSG00000150540" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.8" + - references: "" - subsystem: - - Sulfur metabolism + - "Sulfur metabolism" - confidence_score: 0 - !!omap - - id: HMR_4084 + - id: "HMR_4084" - name: "" - metabolites: !!omap - m01334c: 1 @@ -106371,15 +106371,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104331 or ENSG00000162813 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.7 - - references: PMID:10224133 + - gene_reaction_rule: "ENSG00000104331 or ENSG00000162813" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.7" + - references: "PMID:10224133" - subsystem: - - Sulfur metabolism + - "Sulfur metabolism" - confidence_score: 0 - !!omap - - id: HMR_4187 + - id: "HMR_4187" - name: "" - metabolites: !!omap - m01283c: 1 @@ -106388,15 +106388,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104331 or ENSG00000162813 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.7 - - references: PMID:10224133 + - gene_reaction_rule: "ENSG00000104331 or ENSG00000162813" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.7" + - references: "PMID:10224133" - subsystem: - - Sulfur metabolism + - "Sulfur metabolism" - confidence_score: 0 - !!omap - - id: HMR_4188 + - id: "HMR_4188" - name: "" - metabolites: !!omap - m01267c: 1 @@ -106408,15 +106408,15 @@ - m02682c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Sulfur metabolism + - "Sulfur metabolism" - confidence_score: 0 - !!omap - - id: HMR_4701 + - id: "HMR_4701" - name: "" - metabolites: !!omap - m01708c: -1 @@ -106426,15 +106426,15 @@ - m02880c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123453 or ENSG00000132837 - - rxnFrom: HMRdatabase - - eccodes: 1.5.8.4 - - references: + - gene_reaction_rule: "ENSG00000123453 or ENSG00000132837" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.8.4" + - references: "" - subsystem: - - Sulfur metabolism + - "Sulfur metabolism" - confidence_score: 0 - !!omap - - id: HMR_4840 + - id: "HMR_4840" - name: "" - metabolites: !!omap - m02039c: 2 @@ -106444,15 +106444,15 @@ - m02946c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000198610 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.50 - - references: + - gene_reaction_rule: "ENSG00000198610" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.50" + - references: "" - subsystem: - - Sulfur metabolism + - "Sulfur metabolism" - confidence_score: 0 - !!omap - - id: HMR_4842 + - id: "HMR_4842" - name: "" - metabolites: !!omap - m01266c: 1 @@ -106460,15 +106460,15 @@ - m02877c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.5 - - references: + - gene_reaction_rule: "ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.5" + - references: "" - subsystem: - - Sulfur metabolism + - "Sulfur metabolism" - confidence_score: 0 - !!omap - - id: HMR_8662 + - id: "HMR_8662" - name: "" - metabolites: !!omap - m01597m: -1 @@ -106479,15 +106479,15 @@ - m02751m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000163541 and ENSG00000172340) or (ENSG00000136143 and ENSG00000163541) - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.5 - - references: + - gene_reaction_rule: "(ENSG00000163541 and ENSG00000172340) or (ENSG00000136143 and ENSG00000163541)" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.5" + - references: "" - subsystem: - - C5-branched dibasic acid metabolism + - "C5-branched dibasic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8663 + - id: "HMR_8663" - name: "" - metabolites: !!omap - m01285m: -1 @@ -106498,15 +106498,15 @@ - m02751m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000163541 and ENSG00000172340) or (ENSG00000136143 and ENSG00000163541) - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.5 - - references: + - gene_reaction_rule: "(ENSG00000163541 and ENSG00000172340) or (ENSG00000136143 and ENSG00000163541)" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.5" + - references: "" - subsystem: - - C5-branched dibasic acid metabolism + - "C5-branched dibasic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8664 + - id: "HMR_8664" - name: "" - metabolites: !!omap - m00084m: -1 @@ -106514,15 +106514,15 @@ - m02192m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.56 - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.56" + - references: "" - subsystem: - - C5-branched dibasic acid metabolism + - "C5-branched dibasic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8665 + - id: "HMR_8665" - name: "" - metabolites: !!omap - m00084m: -1 @@ -106530,15 +106530,15 @@ - m02466m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.56 - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.56" + - references: "" - subsystem: - - C5-branched dibasic acid metabolism + - "C5-branched dibasic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8666 + - id: "HMR_8666" - name: "" - metabolites: !!omap - m00084m: -1 @@ -106546,15 +106546,15 @@ - m02819m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 4.1.3.25 - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.3.25" + - references: "" - subsystem: - - C5-branched dibasic acid metabolism + - "C5-branched dibasic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8667 + - id: "HMR_8667" - name: "" - metabolites: !!omap - m01285m: -1 @@ -106565,15 +106565,15 @@ - m02751m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000163541 and ENSG00000172340) or (ENSG00000136143 and ENSG00000163541) - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.5 - - references: + - gene_reaction_rule: "(ENSG00000163541 and ENSG00000172340) or (ENSG00000136143 and ENSG00000163541)" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.5" + - references: "" - subsystem: - - C5-branched dibasic acid metabolism + - "C5-branched dibasic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8668 + - id: "HMR_8668" - name: "" - metabolites: !!omap - m01597m: -1 @@ -106584,15 +106584,15 @@ - m02751m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000163541 and ENSG00000172340) or (ENSG00000136143 and ENSG00000163541) - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.5 - - references: + - gene_reaction_rule: "(ENSG00000163541 and ENSG00000172340) or (ENSG00000136143 and ENSG00000163541)" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.5" + - references: "" - subsystem: - - C5-branched dibasic acid metabolism + - "C5-branched dibasic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8669 + - id: "HMR_8669" - name: "" - metabolites: !!omap - m01261m: 1 @@ -106601,15 +106601,15 @@ - m02819m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - C5-branched dibasic acid metabolism + - "C5-branched dibasic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0710 + - id: "HMR_0710" - name: "" - metabolites: !!omap - m01306c: 1 @@ -106619,15 +106619,15 @@ - m02555c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138413 or ENSG00000182054 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.42 - - references: PMID:10521434;PMID:15173171 + - gene_reaction_rule: "ENSG00000138413 or ENSG00000182054" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.42" + - references: "PMID:10521434;PMID:15173171" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: HMR_3787 + - id: "HMR_3787" - name: "" - metabolites: !!omap - m01253m: -1 @@ -106636,15 +106636,15 @@ - m02944m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000083720 or ENSG00000198754 - - rxnFrom: HMRdatabase - - eccodes: 2.8.3.5 - - references: PMID:8751852 + - gene_reaction_rule: "ENSG00000083720 or ENSG00000198754" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.3.5" + - references: "PMID:8751852" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: HMR_3957 + - id: "HMR_3957" - name: "" - metabolites: !!omap - m01306m: 1 @@ -106654,15 +106654,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000067829 or ENSG00000101365 or ENSG00000166411 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.41 - - references: + - gene_reaction_rule: "ENSG00000067829 or ENSG00000101365 or ENSG00000166411" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.41" + - references: "" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: HMR_3958 + - id: "HMR_3958" - name: "" - metabolites: !!omap - m01306m: 1 @@ -106672,15 +106672,15 @@ - m02555m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138413 or ENSG00000182054 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.42 - - references: + - gene_reaction_rule: "ENSG00000138413 or ENSG00000182054" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.42" + - references: "" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4111 + - id: "HMR_4111" - name: "" - metabolites: !!omap - m01306c: 1 @@ -106689,15 +106689,15 @@ - m02662c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138413 or ENSG00000182054 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.42 - - references: PMID:16489927;PMID:9866202 + - gene_reaction_rule: "ENSG00000138413 or ENSG00000182054" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.42" + - references: "PMID:16489927;PMID:9866202" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4112 + - id: "HMR_4112" - name: "" - metabolites: !!omap - m01306m: 1 @@ -106706,15 +106706,15 @@ - m02662m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138413 or ENSG00000182054 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.42 - - references: PMID:16489927;PMID:9866202 + - gene_reaction_rule: "ENSG00000138413 or ENSG00000182054" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.42" + - references: "PMID:16489927;PMID:9866202" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4113 + - id: "HMR_4113" - name: "" - metabolites: !!omap - m01306p: 1 @@ -106723,15 +106723,15 @@ - m02662p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138413 or ENSG00000182054 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.42 - - references: PMID:16489927;PMID:9866202 + - gene_reaction_rule: "ENSG00000138413 or ENSG00000182054" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.42" + - references: "PMID:16489927;PMID:9866202" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4139 + - id: "HMR_4139" - name: "" - metabolites: !!omap - m02039c: -1 @@ -106741,15 +106741,15 @@ - m02633c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000014641 or ENSG00000138400 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.37 - - references: PMID:6625603;PMID:7305925 + - gene_reaction_rule: "ENSG00000014641 or ENSG00000138400" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.37" + - references: "PMID:6625603;PMID:7305925" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4141 + - id: "HMR_4141" - name: "" - metabolites: !!omap - m02039m: -1 @@ -106759,15 +106759,15 @@ - m02633m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000146701 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.37 - - references: PMID:6625603;PMID:7305925 + - gene_reaction_rule: "ENSG00000146701" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.37" + - references: "PMID:6625603;PMID:7305925" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4145 + - id: "HMR_4145" - name: "" - metabolites: !!omap - m01261m: 1 @@ -106778,15 +106778,15 @@ - m02633m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000062485 - - rxnFrom: HMRdatabase - - eccodes: 2.3.3.1;2.3.3.3 - - references: PMID:12549038 + - gene_reaction_rule: "ENSG00000062485" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.3.1;2.3.3.3" + - references: "PMID:12549038" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4147 + - id: "HMR_4147" - name: "" - metabolites: !!omap - m01597m: -1 @@ -106797,15 +106797,15 @@ - m02944m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000163541 and ENSG00000172340) or (ENSG00000136143 and ENSG00000163541) - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.4 - - references: PMID:2943604;PMID:3422742;PMID:3956747;PMID:9765291 + - gene_reaction_rule: "(ENSG00000163541 and ENSG00000172340) or (ENSG00000136143 and ENSG00000163541)" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.4" + - references: "PMID:2943604;PMID:3422742;PMID:3956747;PMID:9765291" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4149 + - id: "HMR_4149" - name: "" - metabolites: !!omap - m01261c: 1 @@ -106817,15 +106817,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000131473 - - rxnFrom: HMRdatabase - - eccodes: 2.3.3.8 - - references: PMID:1371749;PMID:7417478 + - gene_reaction_rule: "ENSG00000131473" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.3.8" + - references: "PMID:1371749;PMID:7417478" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4152 + - id: "HMR_4152" - name: "" - metabolites: !!omap - m01285m: -1 @@ -106836,15 +106836,15 @@ - m02944m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000163541 and ENSG00000172340) or (ENSG00000136143 and ENSG00000163541) - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.5 - - references: PMID:2943604;PMID:3956747;PMID:9765291 + - gene_reaction_rule: "(ENSG00000163541 and ENSG00000172340) or (ENSG00000136143 and ENSG00000163541)" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.5" + - references: "PMID:2943604;PMID:3956747;PMID:9765291" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4209 + - id: "HMR_4209" - name: "" - metabolites: !!omap - m00765m: 1 @@ -106854,15 +106854,15 @@ - m02984m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105953 or ENSG00000181192 or ENSG00000197444 - - rxnFrom: HMRdatabase - - eccodes: 1.2.4.2 - - references: PMID:10676873;PMID:3207422 + - gene_reaction_rule: "ENSG00000105953 or ENSG00000181192 or ENSG00000197444" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.4.2" + - references: "PMID:10676873;PMID:3207422" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4408 + - id: "HMR_4408" - name: "" - metabolites: !!omap - m01862c: -1 @@ -106870,15 +106870,15 @@ - m02439c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000091483 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.2 - - references: PMID:7287666 + - gene_reaction_rule: "ENSG00000091483" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.2" + - references: "PMID:7287666" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4410 + - id: "HMR_4410" - name: "" - metabolites: !!omap - m01862m: -1 @@ -106886,45 +106886,45 @@ - m02439m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000091483 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.2 - - references: PMID:7287666 + - gene_reaction_rule: "ENSG00000091483" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.2" + - references: "PMID:7287666" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4454 + - id: "HMR_4454" - name: "" - metabolites: !!omap - m01587c: -1 - m02183c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000122729 or ENSG00000136381 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.3 - - references: PMID:15263083;PMID:16511074 + - gene_reaction_rule: "ENSG00000122729 or ENSG00000136381" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.3" + - references: "PMID:15263083;PMID:16511074" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4456 + - id: "HMR_4456" - name: "" - metabolites: !!omap - m01587m: -1 - m02183m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100412 or ENSG00000122729 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.3 - - references: PMID:15263083;PMID:16511074 + - gene_reaction_rule: "ENSG00000100412 or ENSG00000122729" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.3" + - references: "PMID:15263083;PMID:16511074" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4458 + - id: "HMR_4458" - name: "" - metabolites: !!omap - m01580m: -1 @@ -106932,15 +106932,15 @@ - m02040m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100412 or ENSG00000122729 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.3 - - references: PMID:15263083;PMID:16511074 + - gene_reaction_rule: "ENSG00000100412 or ENSG00000122729" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.3" + - references: "PMID:15263083;PMID:16511074" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4465 + - id: "HMR_4465" - name: "" - metabolites: !!omap - m01982c: 1 @@ -106950,15 +106950,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137106 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.79;1.1.1.81 - - references: PMID:2689175;PMID:4835376;PMID:8120891;PMID:9463747 + - gene_reaction_rule: "ENSG00000137106" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.79;1.1.1.81" + - references: "PMID:2689175;PMID:4835376;PMID:8120891;PMID:9463747" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4585 + - id: "HMR_4585" - name: "" - metabolites: !!omap - m02039c: -1 @@ -106968,15 +106968,15 @@ - m02662c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138413 or ENSG00000182054 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.42 - - references: PMID:10521434;PMID:16489927;PMID:9866202 + - gene_reaction_rule: "ENSG00000138413 or ENSG00000182054" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.42" + - references: "PMID:10521434;PMID:16489927;PMID:9866202" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4586 + - id: "HMR_4586" - name: "" - metabolites: !!omap - m02039m: -1 @@ -106986,15 +106986,15 @@ - m02662m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138413 or ENSG00000182054 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.42 - - references: PMID:10521434;PMID:16489927;PMID:9866202 + - gene_reaction_rule: "ENSG00000138413 or ENSG00000182054" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.42" + - references: "PMID:10521434;PMID:16489927;PMID:9866202" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4587 + - id: "HMR_4587" - name: "" - metabolites: !!omap - m02039p: -1 @@ -107004,15 +107004,15 @@ - m02662p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138413 or ENSG00000182054 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.42 - - references: PMID:10521434;PMID:16489927;PMID:9866202 + - gene_reaction_rule: "ENSG00000138413 or ENSG00000182054" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.42" + - references: "PMID:10521434;PMID:16489927;PMID:9866202" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4588 + - id: "HMR_4588" - name: "" - metabolites: !!omap - m02039m: -1 @@ -107022,15 +107022,15 @@ - m02662m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138413 or ENSG00000182054 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.42 - - references: PMID:10521434;PMID:16489927;PMID:18484410;PMID:9866202 + - gene_reaction_rule: "ENSG00000138413 or ENSG00000182054" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.42" + - references: "PMID:10521434;PMID:16489927;PMID:18484410;PMID:9866202" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4589 + - id: "HMR_4589" - name: "" - metabolites: !!omap - m01580m: -1 @@ -107038,15 +107038,15 @@ - m02183m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100412 or ENSG00000122729 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.3 - - references: PMID:15263083;PMID:16511074 + - gene_reaction_rule: "ENSG00000100412 or ENSG00000122729" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.3" + - references: "PMID:15263083;PMID:16511074" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4652 + - id: "HMR_4652" - name: "" - metabolites: !!omap - m01862m: -1 @@ -107055,15 +107055,15 @@ - m03103m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073578 and ENSG00000117118 and ENSG00000143252 and ENSG00000204370 - - rxnFrom: HMRdatabase - - eccodes: 1.3.5.1 - - references: PMID:2843227 + - gene_reaction_rule: "ENSG00000073578 and ENSG00000117118 and ENSG00000143252 and ENSG00000204370" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.5.1" + - references: "PMID:2843227" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: HMR_5294 + - id: "HMR_5294" - name: "" - metabolites: !!omap - m01252m: 1 @@ -107071,15 +107071,15 @@ - m02633m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125246 - - rxnFrom: HMRdatabase - - eccodes: 4.1.-.- - - references: PMID:11741334 + - gene_reaction_rule: "ENSG00000125246" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.-.-" + - references: "PMID:11741334" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: HMR_5297 + - id: "HMR_5297" - name: "" - metabolites: !!omap - m01306m: -1 @@ -107090,15 +107090,15 @@ - m02944m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000091140 and ENSG00000105953 and ENSG00000119689 - - rxnFrom: HMRdatabase - - eccodes: 1.2.4.2 - - references: PMID:18004749;PMID:18206986;PMID:3207422;UNIPROT:Q02218 + - gene_reaction_rule: "ENSG00000091140 and ENSG00000105953 and ENSG00000119689" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.4.2" + - references: "PMID:18004749;PMID:18206986;PMID:3207422;UNIPROT:Q02218" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6411 + - id: "HMR_6411" - name: "" - metabolites: !!omap - m01306m: -1 @@ -107108,15 +107108,15 @@ - m02934m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105953 or ENSG00000181192 or ENSG00000197444 - - rxnFrom: HMRdatabase - - eccodes: 1.2.4.2 - - references: PMID:10676873 + - gene_reaction_rule: "ENSG00000105953 or ENSG00000181192 or ENSG00000197444" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.4.2" + - references: "PMID:10676873" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6413 + - id: "HMR_6413" - name: "" - metabolites: !!omap - m00765m: -1 @@ -107125,15 +107125,15 @@ - m02984m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105953 or ENSG00000181192 or ENSG00000197444 - - rxnFrom: HMRdatabase - - eccodes: 1.2.4.2 - - references: PMID:10676873 + - gene_reaction_rule: "ENSG00000105953 or ENSG00000181192 or ENSG00000197444" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.4.2" + - references: "PMID:10676873" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6414 + - id: "HMR_6414" - name: "" - metabolites: !!omap - m01597m: -1 @@ -107142,15 +107142,15 @@ - m02944m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119689 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.61 - - references: PMID:8076640;PMID:9620315 + - gene_reaction_rule: "ENSG00000119689" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.61" + - references: "PMID:8076640;PMID:9620315" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: HMR_7704 + - id: "HMR_7704" - name: "" - metabolites: !!omap - m02007p: -1 @@ -107161,15 +107161,15 @@ - m02661p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101323 or ENSG00000116882 - - rxnFrom: HMRdatabase - - eccodes: 1.1.3.15 - - references: + - gene_reaction_rule: "ENSG00000101323 or ENSG00000116882" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.3.15" + - references: "" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: HMR_7706 + - id: "HMR_7706" - name: "" - metabolites: !!omap - m01998p: -1 @@ -107178,15 +107178,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101323 or ENSG00000116882 - - rxnFrom: HMRdatabase - - eccodes: 1.1.3.15 - - references: + - gene_reaction_rule: "ENSG00000101323 or ENSG00000116882" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.3.15" + - references: "" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8743 + - id: "HMR_8743" - name: "" - metabolites: !!omap - m01802m: 1 @@ -107195,15 +107195,15 @@ - m02943m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073578 and ENSG00000117118 and ENSG00000143252 and ENSG00000204370 - - rxnFrom: HMRdatabase - - eccodes: 1.3.5.1 - - references: + - gene_reaction_rule: "ENSG00000073578 and ENSG00000117118 and ENSG00000143252 and ENSG00000204370" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.5.1" + - references: "" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8772 + - id: "HMR_8772" - name: "" - metabolites: !!omap - m01285c: 1 @@ -107213,15 +107213,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138030 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.3 - - references: + - gene_reaction_rule: "ENSG00000138030" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.3" + - references: "" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8773 + - id: "HMR_8773" - name: "" - metabolites: !!omap - m01690c: 1 @@ -107229,15 +107229,15 @@ - m01997c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109107 or ENSG00000136872 or ENSG00000149925 or ENSG00000285043 - - rxnFrom: HMRdatabase - - eccodes: 4.1.2.13 - - references: + - gene_reaction_rule: "ENSG00000109107 or ENSG00000136872 or ENSG00000149925 or ENSG00000285043" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.2.13" + - references: "" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8774 + - id: "HMR_8774" - name: "" - metabolites: !!omap - m01596c: 1 @@ -107246,15 +107246,15 @@ - m02154c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8775 + - id: "HMR_8775" - name: "" - metabolites: !!omap - m01997c: -1 @@ -107265,15 +107265,15 @@ - m02553c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006534 or ENSG00000072210 or ENSG00000108602 or ENSG00000132746 or ENSG00000143149 or ENSG00000164904 or ENSG00000184254 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.4;1.2.1.5 - - references: + - gene_reaction_rule: "ENSG00000006534 or ENSG00000072210 or ENSG00000108602 or ENSG00000132746 or ENSG00000143149 or ENSG00000164904 or ENSG00000184254" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.4;1.2.1.5" + - references: "" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8777 + - id: "HMR_8777" - name: "" - metabolites: !!omap - m01596m: 1 @@ -107282,15 +107282,15 @@ - m02154m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8778 + - id: "HMR_8778" - name: "" - metabolites: !!omap - m01997m: -1 @@ -107301,15 +107301,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000143149 or ENSG00000164904 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000143149 or ENSG00000164904" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.3" + - references: "" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8779 + - id: "HMR_8779" - name: "" - metabolites: !!omap - m01998m: 1 @@ -107319,15 +107319,15 @@ - m02555m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137106 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000137106" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8780 + - id: "HMR_8780" - name: "" - metabolites: !!omap - m02007c: -1 @@ -107338,15 +107338,15 @@ - m02661c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111716 or ENSG00000151116 or ENSG00000166796 or ENSG00000166800 or ENSG00000166816 or ENSG00000171989 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.27 - - references: + - gene_reaction_rule: "ENSG00000111716 or ENSG00000151116 or ENSG00000166796 or ENSG00000166800 or ENSG00000166816 or ENSG00000171989" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.27" + - references: "" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8781 + - id: "HMR_8781" - name: "" - metabolites: !!omap - m00674c: 1 @@ -107356,15 +107356,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8782 + - id: "HMR_8782" - name: "" - metabolites: !!omap - m01982c: 1 @@ -107374,15 +107374,15 @@ - m02553c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137106 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.79;1.1.1.81 - - references: + - gene_reaction_rule: "ENSG00000137106" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.79;1.1.1.81" + - references: "" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: HMR_3975 + - id: "HMR_3975" - name: "" - metabolites: !!omap - m02039r: 1 @@ -107391,15 +107391,15 @@ - m02759r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107902 or ENSG00000138777 or ENSG00000143363 or ENSG00000180817 - - rxnFrom: HMRdatabase - - eccodes: 3.6.1.1 - - references: PMID:10542310;PMID:16300924 + - gene_reaction_rule: "ENSG00000107902 or ENSG00000138777 or ENSG00000143363 or ENSG00000180817" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.1.1" + - references: "PMID:10542310;PMID:16300924" - subsystem: - - Oxidative phosphorylation + - "Oxidative phosphorylation" - confidence_score: 0 - !!omap - - id: HMR_3977 + - id: "HMR_3977" - name: "" - metabolites: !!omap - m02039c: 1 @@ -107408,15 +107408,15 @@ - m02759c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107902 or ENSG00000138777 or ENSG00000143363 or ENSG00000180817 - - rxnFrom: HMRdatabase - - eccodes: 3.6.1.1 - - references: PMID:10542310;PMID:16300924 + - gene_reaction_rule: "ENSG00000107902 or ENSG00000138777 or ENSG00000143363 or ENSG00000180817" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.1.1" + - references: "PMID:10542310;PMID:16300924" - subsystem: - - Oxidative phosphorylation + - "Oxidative phosphorylation" - confidence_score: 0 - !!omap - - id: HMR_3979 + - id: "HMR_3979" - name: "" - metabolites: !!omap - m02039p: 1 @@ -107425,15 +107425,15 @@ - m02759p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107902 or ENSG00000138777 or ENSG00000143363 or ENSG00000180817 - - rxnFrom: HMRdatabase - - eccodes: 3.6.1.1 - - references: PMID:10542310;PMID:16300924 + - gene_reaction_rule: "ENSG00000107902 or ENSG00000138777 or ENSG00000143363 or ENSG00000180817" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.1.1" + - references: "PMID:10542310;PMID:16300924" - subsystem: - - Oxidative phosphorylation + - "Oxidative phosphorylation" - confidence_score: 0 - !!omap - - id: HMR_6911 + - id: "HMR_6911" - name: "" - metabolites: !!omap - m01802m: 1 @@ -107442,15 +107442,15 @@ - m03103m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105379 or ENSG00000140374 or ENSG00000143252 or ENSG00000171503 - - rxnFrom: HMRdatabase - - eccodes: 1.5.5.1 - - references: + - gene_reaction_rule: "ENSG00000105379 or ENSG00000140374 or ENSG00000143252 or ENSG00000171503" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.5.1" + - references: "" - subsystem: - - Oxidative phosphorylation + - "Oxidative phosphorylation" - confidence_score: 0 - !!omap - - id: HMR_6912 + - id: "HMR_6912" - name: "" - metabolites: !!omap - m02039m: 1 @@ -107459,15 +107459,15 @@ - m02759m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107902 or ENSG00000138777 or ENSG00000143363 or ENSG00000180817 - - rxnFrom: HMRdatabase - - eccodes: 3.6.1.1 - - references: PMID:10542310;PMID:16300924 + - gene_reaction_rule: "ENSG00000107902 or ENSG00000138777 or ENSG00000143363 or ENSG00000180817" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.1.1" + - references: "PMID:10542310;PMID:16300924" - subsystem: - - Oxidative phosphorylation + - "Oxidative phosphorylation" - confidence_score: 0 - !!omap - - id: HMR_6914 + - id: "HMR_6914" - name: "" - metabolites: !!omap - m01824m: 4 @@ -107478,15 +107478,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111775 and ENSG00000112695 and ENSG00000126267 and ENSG00000127184 and ENSG00000131055 and ENSG00000131143 and ENSG00000131174 and ENSG00000135940 and ENSG00000156885 and ENSG00000160471 and ENSG00000161281 and ENSG00000164919 and ENSG00000170516 and ENSG00000176340 and ENSG00000178741 and ENSG00000187581 and ENSG00000198712 and ENSG00000198804 and ENSG00000198938 - - rxnFrom: HMRdatabase - - eccodes: 1.9.3.1 - - references: PMID:3030416 + - gene_reaction_rule: "ENSG00000111775 and ENSG00000112695 and ENSG00000126267 and ENSG00000127184 and ENSG00000131055 and ENSG00000131143 and ENSG00000131174 and ENSG00000135940 and ENSG00000156885 and ENSG00000160471 and ENSG00000161281 and ENSG00000164919 and ENSG00000170516 and ENSG00000176340 and ENSG00000178741 and ENSG00000187581 and ENSG00000198712 and ENSG00000198804 and ENSG00000198938" + - rxnFrom: "HMRdatabase" + - eccodes: "1.9.3.1" + - references: "PMID:3030416" - subsystem: - - Oxidative phosphorylation + - "Oxidative phosphorylation" - confidence_score: 2 - !!omap - - id: HMR_6916 + - id: "HMR_6916" - name: "" - metabolites: !!omap - m01285m: -1 @@ -107497,15 +107497,15 @@ - m02751m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099624 and ENSG00000110955 and ENSG00000116459 and ENSG00000124172 and ENSG00000135390 and ENSG00000152234 and ENSG00000154518 and ENSG00000154723 and ENSG00000156411 and ENSG00000159199 and ENSG00000165629 and ENSG00000167283 and ENSG00000167863 and ENSG00000169020 and ENSG00000173915 and ENSG00000198899 and ENSG00000228253 and ENSG00000241468 and ENSG00000241837 - - rxnFrom: HMRdatabase - - eccodes: 3.6.1.3;3.6.1.5;3.6.3.1;3.6.3.10;3.6.3.14;3.6.3.8;3.6.3.9;3.6.4.3;3.6.4.4;3.6.4.6;3.6.4.12;3.6.4.13 - - references: PMID:2687158;UNIPROT:P06576;UNIPROT:P38606 + - gene_reaction_rule: "ENSG00000099624 and ENSG00000110955 and ENSG00000116459 and ENSG00000124172 and ENSG00000135390 and ENSG00000152234 and ENSG00000154518 and ENSG00000154723 and ENSG00000156411 and ENSG00000159199 and ENSG00000165629 and ENSG00000167283 and ENSG00000167863 and ENSG00000169020 and ENSG00000173915 and ENSG00000198899 and ENSG00000228253 and ENSG00000241468 and ENSG00000241837" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.1.3;3.6.1.5;3.6.3.1;3.6.3.10;3.6.3.14;3.6.3.8;3.6.3.9;3.6.4.3;3.6.4.4;3.6.4.6;3.6.4.12;3.6.4.13" + - references: "PMID:2687158;UNIPROT:P06576;UNIPROT:P38606" - subsystem: - - Oxidative phosphorylation + - "Oxidative phosphorylation" - confidence_score: 2 - !!omap - - id: HMR_6918 + - id: "HMR_6918" - name: "" - metabolites: !!omap - m01824m: -2 @@ -107516,15 +107516,15 @@ - m03103m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000010256 and ENSG00000127540 and ENSG00000140740 and ENSG00000156467 and ENSG00000164405 and ENSG00000169021 and ENSG00000173660 and ENSG00000179091 and ENSG00000184076 and ENSG00000198727 - - rxnFrom: HMRdatabase - - eccodes: 1.10.2.2 - - references: PMID:459885 + - gene_reaction_rule: "ENSG00000010256 and ENSG00000127540 and ENSG00000140740 and ENSG00000156467 and ENSG00000164405 and ENSG00000169021 and ENSG00000173660 and ENSG00000179091 and ENSG00000184076 and ENSG00000198727" + - rxnFrom: "HMRdatabase" + - eccodes: "1.10.2.2" + - references: "PMID:459885" - subsystem: - - Oxidative phosphorylation + - "Oxidative phosphorylation" - confidence_score: 2 - !!omap - - id: HMR_6921 + - id: "HMR_6921" - name: "" - metabolites: !!omap - m02039i: 4 @@ -107535,15 +107535,15 @@ - m03103m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000004779 and ENSG00000023228 and ENSG00000065518 and ENSG00000090266 and ENSG00000099795 and ENSG00000109390 and ENSG00000110717 and ENSG00000115286 and ENSG00000119013 and ENSG00000119421 and ENSG00000125356 and ENSG00000128609 and ENSG00000130414 and ENSG00000131495 and ENSG00000136521 and ENSG00000139180 and ENSG00000140990 and ENSG00000145494 and ENSG00000147123 and ENSG00000147684 and ENSG00000151366 and ENSG00000158864 and ENSG00000160194 and ENSG00000164258 and ENSG00000165264 and ENSG00000166136 and ENSG00000167792 and ENSG00000168653 and ENSG00000170906 and ENSG00000174886 and ENSG00000178127 and ENSG00000183648 and ENSG00000184752 and ENSG00000184983 and ENSG00000186010 and ENSG00000189043 and ENSG00000198695 and ENSG00000198763 and ENSG00000198786 and ENSG00000198840 and ENSG00000198886 and ENSG00000198888 and ENSG00000212907 and ENSG00000213619 - - rxnFrom: HMRdatabase - - eccodes: 1.6.5.3 - - references: PMID:8443209 + - gene_reaction_rule: "ENSG00000004779 and ENSG00000023228 and ENSG00000065518 and ENSG00000090266 and ENSG00000099795 and ENSG00000109390 and ENSG00000110717 and ENSG00000115286 and ENSG00000119013 and ENSG00000119421 and ENSG00000125356 and ENSG00000128609 and ENSG00000130414 and ENSG00000131495 and ENSG00000136521 and ENSG00000139180 and ENSG00000140990 and ENSG00000145494 and ENSG00000147123 and ENSG00000147684 and ENSG00000151366 and ENSG00000158864 and ENSG00000160194 and ENSG00000164258 and ENSG00000165264 and ENSG00000166136 and ENSG00000167792 and ENSG00000168653 and ENSG00000170906 and ENSG00000174886 and ENSG00000178127 and ENSG00000183648 and ENSG00000184752 and ENSG00000184983 and ENSG00000186010 and ENSG00000189043 and ENSG00000198695 and ENSG00000198763 and ENSG00000198786 and ENSG00000198840 and ENSG00000198886 and ENSG00000198888 and ENSG00000212907 and ENSG00000213619" + - rxnFrom: "HMRdatabase" + - eccodes: "1.6.5.3" + - references: "PMID:8443209" - subsystem: - - Oxidative phosphorylation + - "Oxidative phosphorylation" - confidence_score: 2 - !!omap - - id: HMR_3960 + - id: "HMR_3960" - name: "" - metabolites: !!omap - m02039c: -2 @@ -107552,15 +107552,15 @@ - m02631c: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109610 or ENSG00000112096 or ENSG00000142168 or ENSG00000285441 - - rxnFrom: HMRdatabase - - eccodes: 1.15.1.1 - - references: PMID:17603022;PMID:6240978;PMID:7876265 + - gene_reaction_rule: "ENSG00000109610 or ENSG00000112096 or ENSG00000142168 or ENSG00000285441" + - rxnFrom: "HMRdatabase" + - eccodes: "1.15.1.1" + - references: "PMID:17603022;PMID:6240978;PMID:7876265" - subsystem: - - ROS detoxification + - "ROS detoxification" - confidence_score: 0 - !!omap - - id: HMR_3980 + - id: "HMR_3980" - name: "" - metabolites: !!omap - m02040c: 2 @@ -107568,15 +107568,15 @@ - m02630c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000121691 - - rxnFrom: HMRdatabase - - eccodes: 1.11.1.6 - - references: PMID:12054464;PMID:1657986 + - gene_reaction_rule: "ENSG00000121691" + - rxnFrom: "HMRdatabase" + - eccodes: "1.11.1.6" + - references: "PMID:12054464;PMID:1657986" - subsystem: - - ROS detoxification + - "ROS detoxification" - confidence_score: 0 - !!omap - - id: HMR_3982 + - id: "HMR_3982" - name: "" - metabolites: !!omap - m02040m: 2 @@ -107584,15 +107584,15 @@ - m02630m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000121691 - - rxnFrom: HMRdatabase - - eccodes: 1.11.1.6 - - references: PMID:12054464;PMID:1657986 + - gene_reaction_rule: "ENSG00000121691" + - rxnFrom: "HMRdatabase" + - eccodes: "1.11.1.6" + - references: "PMID:12054464;PMID:1657986" - subsystem: - - ROS detoxification + - "ROS detoxification" - confidence_score: 0 - !!omap - - id: HMR_4767 + - id: "HMR_4767" - name: "" - metabolites: !!omap - m01396r: -1 @@ -107600,30 +107600,30 @@ - m01398r: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.95 - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.95" + - references: "" - subsystem: - - ROS detoxification + - "ROS detoxification" - confidence_score: 0 - !!omap - - id: HMR_6608 + - id: "HMR_6608" - name: "" - metabolites: !!omap - m02147c: -1 - m02149c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - ROS detoxification + - "ROS detoxification" - confidence_score: 0 - !!omap - - id: HMR_8409 + - id: "HMR_8409" - name: "" - metabolites: !!omap - m02039s: -2 @@ -107632,15 +107632,15 @@ - m02631s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109610 - - rxnFrom: HMRdatabase - - eccodes: 1.15.1.1 - - references: + - gene_reaction_rule: "ENSG00000109610" + - rxnFrom: "HMRdatabase" + - eccodes: "1.15.1.1" + - references: "" - subsystem: - - ROS detoxification + - "ROS detoxification" - confidence_score: 0 - !!omap - - id: HMR_8410 + - id: "HMR_8410" - name: "" - metabolites: !!omap - m02039m: -2 @@ -107649,15 +107649,15 @@ - m02631m: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112096 or ENSG00000285441 - - rxnFrom: HMRdatabase - - eccodes: 1.15.1.1 - - references: + - gene_reaction_rule: "ENSG00000112096 or ENSG00000285441" + - rxnFrom: "HMRdatabase" + - eccodes: "1.15.1.1" + - references: "" - subsystem: - - ROS detoxification + - "ROS detoxification" - confidence_score: 0 - !!omap - - id: HMR_8413 + - id: "HMR_8413" - name: "" - metabolites: !!omap - m02039n: -2 @@ -107666,15 +107666,15 @@ - m02631n: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000142168 - - rxnFrom: HMRdatabase - - eccodes: 1.15.1.1 - - references: + - gene_reaction_rule: "ENSG00000142168" + - rxnFrom: "HMRdatabase" + - eccodes: "1.15.1.1" + - references: "" - subsystem: - - ROS detoxification + - "ROS detoxification" - confidence_score: 0 - !!omap - - id: HMR_8415 + - id: "HMR_8415" - name: "" - metabolites: !!omap - m02039p: -2 @@ -107683,15 +107683,15 @@ - m02631p: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000142168 - - rxnFrom: HMRdatabase - - eccodes: 1.15.1.1 - - references: + - gene_reaction_rule: "ENSG00000142168" + - rxnFrom: "HMRdatabase" + - eccodes: "1.15.1.1" + - references: "" - subsystem: - - ROS detoxification + - "ROS detoxification" - confidence_score: 0 - !!omap - - id: HMR_0156 + - id: "HMR_0156" - name: "" - metabolites: !!omap - m01334c: -1 @@ -107702,15 +107702,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005187 or ENSG00000066813 or ENSG00000166743 or ENSG00000183549 or ENSG00000183747 or ENSG00000215009 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.2 - - references: + - gene_reaction_rule: "ENSG00000005187 or ENSG00000066813 or ENSG00000166743 or ENSG00000183549 or ENSG00000183747 or ENSG00000215009" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.2" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0165 + - id: "HMR_0165" - name: "" - metabolites: !!omap - m01334c: -1 @@ -107721,15 +107721,15 @@ - m03134c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005187 or ENSG00000066813 or ENSG00000166743 or ENSG00000183549 or ENSG00000183747 or ENSG00000215009 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.2 - - references: + - gene_reaction_rule: "ENSG00000005187 or ENSG00000066813 or ENSG00000166743 or ENSG00000183549 or ENSG00000183747 or ENSG00000215009" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.2" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0168 + - id: "HMR_0168" - name: "" - metabolites: !!omap - m01334c: -1 @@ -107740,15 +107740,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005187 or ENSG00000066813 or ENSG00000166743 or ENSG00000183549 or ENSG00000183747 or ENSG00000215009 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.2 - - references: + - gene_reaction_rule: "ENSG00000005187 or ENSG00000066813 or ENSG00000166743 or ENSG00000183549 or ENSG00000183747 or ENSG00000215009" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.2" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0171 + - id: "HMR_0171" - name: "" - metabolites: !!omap - m01334c: -1 @@ -107759,15 +107759,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005187 or ENSG00000066813 or ENSG00000166743 or ENSG00000183549 or ENSG00000183747 or ENSG00000215009 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.2 - - references: + - gene_reaction_rule: "ENSG00000005187 or ENSG00000066813 or ENSG00000166743 or ENSG00000183549 or ENSG00000183747 or ENSG00000215009" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.2" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0174 + - id: "HMR_0174" - name: "" - metabolites: !!omap - m01334c: -1 @@ -107778,15 +107778,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005187 or ENSG00000066813 or ENSG00000166743 or ENSG00000183549 or ENSG00000183747 or ENSG00000215009 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.2 - - references: + - gene_reaction_rule: "ENSG00000005187 or ENSG00000066813 or ENSG00000166743 or ENSG00000183549 or ENSG00000183747 or ENSG00000215009" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.2" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0177 + - id: "HMR_0177" - name: "" - metabolites: !!omap - m01334c: -1 @@ -107797,15 +107797,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005187 or ENSG00000066813 or ENSG00000166743 or ENSG00000183549 or ENSG00000183747 or ENSG00000215009 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.2 - - references: + - gene_reaction_rule: "ENSG00000005187 or ENSG00000066813 or ENSG00000166743 or ENSG00000183549 or ENSG00000183747 or ENSG00000215009" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.2" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0180 + - id: "HMR_0180" - name: "" - metabolites: !!omap - m01334c: -1 @@ -107816,15 +107816,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005187 or ENSG00000066813 or ENSG00000166743 or ENSG00000183549 or ENSG00000183747 or ENSG00000215009 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.2 - - references: + - gene_reaction_rule: "ENSG00000005187 or ENSG00000066813 or ENSG00000166743 or ENSG00000183549 or ENSG00000183747 or ENSG00000215009" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.2" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0184 + - id: "HMR_0184" - name: "" - metabolites: !!omap - m01334c: -1 @@ -107835,15 +107835,15 @@ - m03117c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005187 or ENSG00000066813 or ENSG00000166743 or ENSG00000183549 or ENSG00000183747 or ENSG00000215009 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.2 - - references: + - gene_reaction_rule: "ENSG00000005187 or ENSG00000066813 or ENSG00000166743 or ENSG00000183549 or ENSG00000183747 or ENSG00000215009" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.2" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0188 + - id: "HMR_0188" - name: "" - metabolites: !!omap - m01334c: -1 @@ -107854,15 +107854,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0192 + - id: "HMR_0192" - name: "" - metabolites: !!omap - m01334c: -1 @@ -107873,15 +107873,15 @@ - m03051c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0196 + - id: "HMR_0196" - name: "" - metabolites: !!omap - m01334c: -1 @@ -107892,15 +107892,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0200 + - id: "HMR_0200" - name: "" - metabolites: !!omap - m00128c: -1 @@ -107911,15 +107911,15 @@ - m02759c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0204 + - id: "HMR_0204" - name: "" - metabolites: !!omap - m00117c: -1 @@ -107930,15 +107930,15 @@ - m02759c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0209 + - id: "HMR_0209" - name: "" - metabolites: !!omap - m01141c: -1 @@ -107949,15 +107949,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0213 + - id: "HMR_0213" - name: "" - metabolites: !!omap - m01334c: -1 @@ -107968,15 +107968,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0217 + - id: "HMR_0217" - name: "" - metabolites: !!omap - m01334c: -1 @@ -107987,15 +107987,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: PMID:8584017PMID:10548543PMID:17379924PMID:17681178PMID:10548543 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "PMID:8584017PMID:10548543PMID:17379924PMID:17681178PMID:10548543" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0226 + - id: "HMR_0226" - name: "" - metabolites: !!omap - m01334c: -1 @@ -108006,15 +108006,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: PMID:8584017;PMID:9784915;PMID:10479480 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "PMID:8584017;PMID:9784915;PMID:10479480" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0233 + - id: "HMR_0233" - name: "" - metabolites: !!omap - m01191c: -1 @@ -108025,15 +108025,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0237 + - id: "HMR_0237" - name: "" - metabolites: !!omap - m01334c: -1 @@ -108044,15 +108044,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0241 + - id: "HMR_0241" - name: "" - metabolites: !!omap - m00003c: -1 @@ -108063,15 +108063,15 @@ - m02759c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0245 + - id: "HMR_0245" - name: "" - metabolites: !!omap - m01237c: -1 @@ -108082,15 +108082,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0249 + - id: "HMR_0249" - name: "" - metabolites: !!omap - m01334c: -1 @@ -108101,15 +108101,15 @@ - m02941c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000119673 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000177465 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: PMID:8584017 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000119673 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000177465 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "PMID:8584017" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0255 + - id: "HMR_0255" - name: "" - metabolites: !!omap - m00019c: -1 @@ -108120,15 +108120,15 @@ - m02759c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0259 + - id: "HMR_0259" - name: "" - metabolites: !!omap - m01334c: -1 @@ -108139,15 +108139,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0263 + - id: "HMR_0263" - name: "" - metabolites: !!omap - m01334c: 1 @@ -108158,15 +108158,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: PMID:8584017 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "PMID:8584017" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0267 + - id: "HMR_0267" - name: "" - metabolites: !!omap - m00127c: -1 @@ -108177,15 +108177,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0271 + - id: "HMR_0271" - name: "" - metabolites: !!omap - m00020c: -1 @@ -108196,15 +108196,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0275 + - id: "HMR_0275" - name: "" - metabolites: !!omap - m00104c: -1 @@ -108215,15 +108215,15 @@ - m02759c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0279 + - id: "HMR_0279" - name: "" - metabolites: !!omap - m01334c: -1 @@ -108234,15 +108234,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0283 + - id: "HMR_0283" - name: "" - metabolites: !!omap - m01334c: -1 @@ -108253,15 +108253,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0289 + - id: "HMR_0289" - name: "" - metabolites: !!omap - m00017c: -1 @@ -108272,15 +108272,15 @@ - m02759c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0293 + - id: "HMR_0293" - name: "" - metabolites: !!omap - m00007c: -1 @@ -108291,15 +108291,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0297 + - id: "HMR_0297" - name: "" - metabolites: !!omap - m01235c: -1 @@ -108310,15 +108310,15 @@ - m02759c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0301 + - id: "HMR_0301" - name: "" - metabolites: !!omap - m00123c: -1 @@ -108329,15 +108329,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0305 + - id: "HMR_0305" - name: "" - metabolites: !!omap - m00101c: -1 @@ -108348,15 +108348,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0309 + - id: "HMR_0309" - name: "" - metabolites: !!omap - m01334c: -1 @@ -108367,15 +108367,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0313 + - id: "HMR_0313" - name: "" - metabolites: !!omap - m01334c: -1 @@ -108386,15 +108386,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0319 + - id: "HMR_0319" - name: "" - metabolites: !!omap - m00016c: -1 @@ -108405,15 +108405,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0323 + - id: "HMR_0323" - name: "" - metabolites: !!omap - m00006c: -1 @@ -108424,15 +108424,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0327 + - id: "HMR_0327" - name: "" - metabolites: !!omap - m01334c: -1 @@ -108443,15 +108443,15 @@ - m03047c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0331 + - id: "HMR_0331" - name: "" - metabolites: !!omap - m01334c: -1 @@ -108462,15 +108462,15 @@ - m02971c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0337 + - id: "HMR_0337" - name: "" - metabolites: !!omap - m00025c: -1 @@ -108481,15 +108481,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0341 + - id: "HMR_0341" - name: "" - metabolites: !!omap - m01334c: -1 @@ -108500,15 +108500,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0345 + - id: "HMR_0345" - name: "" - metabolites: !!omap - m01334c: -1 @@ -108519,15 +108519,15 @@ - m03153c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0349 + - id: "HMR_0349" - name: "" - metabolites: !!omap - m01334c: -1 @@ -108538,15 +108538,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0353 + - id: "HMR_0353" - name: "" - metabolites: !!omap - m00108c: -1 @@ -108557,15 +108557,15 @@ - m02939c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0357 + - id: "HMR_0357" - name: "" - metabolites: !!omap - m00125c: -1 @@ -108576,15 +108576,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0361 + - id: "HMR_0361" - name: "" - metabolites: !!omap - m00103c: -1 @@ -108595,15 +108595,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: PMID:10479480;PMID:9784915;PMID:10479480;PMID:9784915 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "PMID:10479480;PMID:9784915;PMID:10479480;PMID:9784915" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0365 + - id: "HMR_0365" - name: "" - metabolites: !!omap - m00121c: -1 @@ -108614,15 +108614,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0369 + - id: "HMR_0369" - name: "" - metabolites: !!omap - m00134c: 1 @@ -108633,15 +108633,15 @@ - m02759c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0373 + - id: "HMR_0373" - name: "" - metabolites: !!omap - m00113c: 1 @@ -108652,15 +108652,15 @@ - m02759c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: PMID:9784915;PMID:9784915 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "PMID:9784915;PMID:9784915" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0377 + - id: "HMR_0377" - name: "" - metabolites: !!omap - m00095c: -1 @@ -108671,15 +108671,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0381 + - id: "HMR_0381" - name: "" - metabolites: !!omap - m00010c: -1 @@ -108690,15 +108690,15 @@ - m02759c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0385 + - id: "HMR_0385" - name: "" - metabolites: !!omap - m00341c: -1 @@ -108709,15 +108709,15 @@ - m02759c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0389 + - id: "HMR_0389" - name: "" - metabolites: !!omap - m00260c: -1 @@ -108728,15 +108728,15 @@ - m02759c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0393 + - id: "HMR_0393" - name: "" - metabolites: !!omap - m00315c: -1 @@ -108747,15 +108747,15 @@ - m02759c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0397 + - id: "HMR_0397" - name: "" - metabolites: !!omap - m01334c: -1 @@ -108766,15 +108766,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: PMID:8584017 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "PMID:8584017" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0401 + - id: "HMR_0401" - name: "" - metabolites: !!omap - m01334c: -1 @@ -108785,15 +108785,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: PMID:8584017 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "PMID:8584017" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0405 + - id: "HMR_0405" - name: "" - metabolites: !!omap - m01334c: -1 @@ -108804,15 +108804,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0409 + - id: "HMR_0409" - name: "" - metabolites: !!omap - m01334c: -1 @@ -108823,15 +108823,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: PMID:8584017;PMID:12525535;PMID:11889465 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "PMID:8584017;PMID:12525535;PMID:11889465" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0413 + - id: "HMR_0413" - name: "" - metabolites: !!omap - m00119c: -1 @@ -108842,15 +108842,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0417 + - id: "HMR_0417" - name: "" - metabolites: !!omap - m00131c: 1 @@ -108861,15 +108861,15 @@ - m02759c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0421 + - id: "HMR_0421" - name: "" - metabolites: !!omap - m00110c: 1 @@ -108880,15 +108880,15 @@ - m02759c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: PMID:10479480;PMID:9784915;PMID:10479480;PMID:9784915 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "PMID:10479480;PMID:9784915;PMID:10479480;PMID:9784915" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0425 + - id: "HMR_0425" - name: "" - metabolites: !!omap - m00093c: 1 @@ -108899,15 +108899,15 @@ - m02759c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0429 + - id: "HMR_0429" - name: "" - metabolites: !!omap - m00008c: -1 @@ -108918,15 +108918,15 @@ - m02759c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0433 + - id: "HMR_0433" - name: "" - metabolites: !!omap - m00021c: -1 @@ -108937,15 +108937,15 @@ - m02759c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0437 + - id: "HMR_0437" - name: "" - metabolites: !!omap - m00264c: -1 @@ -108956,15 +108956,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (cytosolic) + - "Fatty acid activation (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2942 + - id: "HMR_2942" - name: "" - metabolites: !!omap - m01334r: -1 @@ -108975,15 +108975,15 @@ - m02759r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2943 + - id: "HMR_2943" - name: "" - metabolites: !!omap - m01334r: -1 @@ -108994,15 +108994,15 @@ - m03051r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2944 + - id: "HMR_2944" - name: "" - metabolites: !!omap - m01334r: -1 @@ -109013,15 +109013,15 @@ - m02759r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2945 + - id: "HMR_2945" - name: "" - metabolites: !!omap - m01141r: -1 @@ -109032,15 +109032,15 @@ - m02759r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2946 + - id: "HMR_2946" - name: "" - metabolites: !!omap - m00128r: -1 @@ -109051,15 +109051,15 @@ - m02759r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2947 + - id: "HMR_2947" - name: "" - metabolites: !!omap - m00117r: -1 @@ -109070,15 +109070,15 @@ - m02759r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2948 + - id: "HMR_2948" - name: "" - metabolites: !!omap - m01334r: -1 @@ -109089,15 +109089,15 @@ - m02759r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2949 + - id: "HMR_2949" - name: "" - metabolites: !!omap - m01334r: -1 @@ -109108,15 +109108,15 @@ - m02759r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: PMID:8584017PMID:10548543PMID:17379924PMID:17681178PMID:10548543 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "PMID:8584017PMID:10548543PMID:17379924PMID:17681178PMID:10548543" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2951 + - id: "HMR_2951" - name: "" - metabolites: !!omap - m01191r: -1 @@ -109127,15 +109127,15 @@ - m02759r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2952 + - id: "HMR_2952" - name: "" - metabolites: !!omap - m01334r: -1 @@ -109146,15 +109146,15 @@ - m02759r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: PMID:8584017;PMID:9784915;PMID:10479480 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "PMID:8584017;PMID:9784915;PMID:10479480" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2954 + - id: "HMR_2954" - name: "" - metabolites: !!omap - m01334r: -1 @@ -109165,15 +109165,15 @@ - m02759r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2955 + - id: "HMR_2955" - name: "" - metabolites: !!omap - m00003r: -1 @@ -109184,15 +109184,15 @@ - m02759r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2956 + - id: "HMR_2956" - name: "" - metabolites: !!omap - m01237r: -1 @@ -109203,15 +109203,15 @@ - m02759r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2957 + - id: "HMR_2957" - name: "" - metabolites: !!omap - m01334r: -1 @@ -109222,15 +109222,15 @@ - m02941r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000119673 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000177465 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: PMID:8584017 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000119673 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000177465 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "PMID:8584017" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2959 + - id: "HMR_2959" - name: "" - metabolites: !!omap - m01334r: 1 @@ -109241,15 +109241,15 @@ - m02759r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: PMID:8584017 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "PMID:8584017" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2961 + - id: "HMR_2961" - name: "" - metabolites: !!omap - m00127r: -1 @@ -109260,15 +109260,15 @@ - m02759r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2962 + - id: "HMR_2962" - name: "" - metabolites: !!omap - m00019r: -1 @@ -109279,15 +109279,15 @@ - m02759r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2963 + - id: "HMR_2963" - name: "" - metabolites: !!omap - m01334r: -1 @@ -109298,15 +109298,15 @@ - m02759r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2964 + - id: "HMR_2964" - name: "" - metabolites: !!omap - m00104r: -1 @@ -109317,15 +109317,15 @@ - m02759r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2965 + - id: "HMR_2965" - name: "" - metabolites: !!omap - m01334r: -1 @@ -109336,15 +109336,15 @@ - m02759r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2966 + - id: "HMR_2966" - name: "" - metabolites: !!omap - m01334r: -1 @@ -109355,15 +109355,15 @@ - m02759r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2967 + - id: "HMR_2967" - name: "" - metabolites: !!omap - m00007r: -1 @@ -109374,15 +109374,15 @@ - m02759r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2968 + - id: "HMR_2968" - name: "" - metabolites: !!omap - m00017r: -1 @@ -109393,15 +109393,15 @@ - m02759r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2969 + - id: "HMR_2969" - name: "" - metabolites: !!omap - m01235r: -1 @@ -109412,15 +109412,15 @@ - m02759r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2970 + - id: "HMR_2970" - name: "" - metabolites: !!omap - m00123r: -1 @@ -109431,15 +109431,15 @@ - m02759r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2971 + - id: "HMR_2971" - name: "" - metabolites: !!omap - m00101r: -1 @@ -109450,15 +109450,15 @@ - m02759r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2972 + - id: "HMR_2972" - name: "" - metabolites: !!omap - m01334r: -1 @@ -109469,15 +109469,15 @@ - m02759r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2973 + - id: "HMR_2973" - name: "" - metabolites: !!omap - m01334r: -1 @@ -109488,15 +109488,15 @@ - m02759r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2974 + - id: "HMR_2974" - name: "" - metabolites: !!omap - m00016r: -1 @@ -109507,15 +109507,15 @@ - m02759r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2975 + - id: "HMR_2975" - name: "" - metabolites: !!omap - m00006r: -1 @@ -109526,15 +109526,15 @@ - m02759r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2976 + - id: "HMR_2976" - name: "" - metabolites: !!omap - m01334r: -1 @@ -109545,15 +109545,15 @@ - m03047r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2977 + - id: "HMR_2977" - name: "" - metabolites: !!omap - m01334r: -1 @@ -109564,15 +109564,15 @@ - m02971r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2978 + - id: "HMR_2978" - name: "" - metabolites: !!omap - m00025r: -1 @@ -109583,15 +109583,15 @@ - m02759r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2979 + - id: "HMR_2979" - name: "" - metabolites: !!omap - m01334r: -1 @@ -109602,15 +109602,15 @@ - m02759r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2980 + - id: "HMR_2980" - name: "" - metabolites: !!omap - m01334r: -1 @@ -109621,15 +109621,15 @@ - m03153r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2981 + - id: "HMR_2981" - name: "" - metabolites: !!omap - m01334r: -1 @@ -109640,15 +109640,15 @@ - m02759r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2982 + - id: "HMR_2982" - name: "" - metabolites: !!omap - m00108r: -1 @@ -109659,15 +109659,15 @@ - m02939r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2983 + - id: "HMR_2983" - name: "" - metabolites: !!omap - m00125r: -1 @@ -109678,15 +109678,15 @@ - m02759r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2984 + - id: "HMR_2984" - name: "" - metabolites: !!omap - m00103r: -1 @@ -109697,15 +109697,15 @@ - m02759r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: PMID:10479480;PMID:9784915;PMID:10479480;PMID:9784915 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "PMID:10479480;PMID:9784915;PMID:10479480;PMID:9784915" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2985 + - id: "HMR_2985" - name: "" - metabolites: !!omap - m00121r: -1 @@ -109716,15 +109716,15 @@ - m02759r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2986 + - id: "HMR_2986" - name: "" - metabolites: !!omap - m00134r: 1 @@ -109735,15 +109735,15 @@ - m02759r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2987 + - id: "HMR_2987" - name: "" - metabolites: !!omap - m00113r: 1 @@ -109754,15 +109754,15 @@ - m02759r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: PMID:9784915;PMID:9784915 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "PMID:9784915;PMID:9784915" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2988 + - id: "HMR_2988" - name: "" - metabolites: !!omap - m00095r: -1 @@ -109773,15 +109773,15 @@ - m02759r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2989 + - id: "HMR_2989" - name: "" - metabolites: !!omap - m00010r: -1 @@ -109792,15 +109792,15 @@ - m02759r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2990 + - id: "HMR_2990" - name: "" - metabolites: !!omap - m00341r: -1 @@ -109811,15 +109811,15 @@ - m02759r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2991 + - id: "HMR_2991" - name: "" - metabolites: !!omap - m01334r: -1 @@ -109830,15 +109830,15 @@ - m02759r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: PMID:8584017 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "PMID:8584017" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2992 + - id: "HMR_2992" - name: "" - metabolites: !!omap - m01334r: -1 @@ -109849,15 +109849,15 @@ - m02759r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: PMID:8584017 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "PMID:8584017" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2994 + - id: "HMR_2994" - name: "" - metabolites: !!omap - m01334r: -1 @@ -109868,15 +109868,15 @@ - m02759r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2996 + - id: "HMR_2996" - name: "" - metabolites: !!omap - m01334r: -1 @@ -109887,15 +109887,15 @@ - m02759r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: PMID:8584017;PMID:12525535;PMID:11889465 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "PMID:8584017;PMID:12525535;PMID:11889465" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2998 + - id: "HMR_2998" - name: "" - metabolites: !!omap - m00119r: -1 @@ -109906,15 +109906,15 @@ - m02759r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2999 + - id: "HMR_2999" - name: "" - metabolites: !!omap - m00131r: 1 @@ -109925,15 +109925,15 @@ - m02759r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_3000 + - id: "HMR_3000" - name: "" - metabolites: !!omap - m00110r: 1 @@ -109944,15 +109944,15 @@ - m02759r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: PMID:10479480;PMID:9784915;PMID:10479480;PMID:9784915 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "PMID:10479480;PMID:9784915;PMID:10479480;PMID:9784915" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_3001 + - id: "HMR_3001" - name: "" - metabolites: !!omap - m00093r: 1 @@ -109963,15 +109963,15 @@ - m02759r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_3002 + - id: "HMR_3002" - name: "" - metabolites: !!omap - m00008r: -1 @@ -109982,15 +109982,15 @@ - m02759r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_3003 + - id: "HMR_3003" - name: "" - metabolites: !!omap - m00021r: -1 @@ -110001,15 +110001,15 @@ - m02759r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid activation (endoplasmic reticular) + - "Fatty acid activation (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2152 + - id: "HMR_2152" - name: "" - metabolites: !!omap - m00184c: 1 @@ -110020,15 +110020,15 @@ - m02442c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151093 or ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85;2.3.1.179 - - references: PMID:11750882;PMID:4452359;PMID:6137188;PMID:7567999;PMID:7834997;PMID:8962082 + - gene_reaction_rule: "ENSG00000151093 or ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85;2.3.1.179" + - references: "PMID:11750882;PMID:4452359;PMID:6137188;PMID:7567999;PMID:7834997;PMID:8962082" - subsystem: - - Fatty acid biosynthesis (even-chain) + - "Fatty acid biosynthesis (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2153 + - id: "HMR_2153" - name: "" - metabolites: !!omap - m00158c: 1 @@ -110038,15 +110038,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85;2.3.1.86;1.1.1.100 - - references: PMID:11750882;PMID:4452359;PMID:6137188;PMID:7567999;PMID:7834997;PMID:8962082 + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85;2.3.1.86;1.1.1.100" + - references: "PMID:11750882;PMID:4452359;PMID:6137188;PMID:7567999;PMID:7834997;PMID:8962082" - subsystem: - - Fatty acid biosynthesis (even-chain) + - "Fatty acid biosynthesis (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2154 + - id: "HMR_2154" - name: "" - metabolites: !!omap - m00158c: -1 @@ -110054,15 +110054,15 @@ - m02040c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85;4.2.1.59 - - references: PMID:6137188;PMID:8962082;UNIPROT:P49327 + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85;4.2.1.59" + - references: "PMID:6137188;PMID:8962082;UNIPROT:P49327" - subsystem: - - Fatty acid biosynthesis (even-chain) + - "Fatty acid biosynthesis (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2155 + - id: "HMR_2155" - name: "" - metabolites: !!omap - m01409c: -1 @@ -110072,15 +110072,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115425 or ENSG00000116353 or ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.1.3.85;1.3.1.39 - - references: + - gene_reaction_rule: "ENSG00000115425 or ENSG00000116353 or ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.3.85;1.3.1.39" + - references: "" - subsystem: - - Fatty acid biosynthesis (even-chain) + - "Fatty acid biosynthesis (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2156 + - id: "HMR_2156" - name: "" - metabolites: !!omap - m00184c: 1 @@ -110091,15 +110091,15 @@ - m02442c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151093 or ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85;2.3.1.41;2.3.1.179 - - references: PMID:11750882;PMID:4452359;PMID:6137188;PMID:7567999;PMID:7834997;PMID:8962082 + - gene_reaction_rule: "ENSG00000151093 or ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85;2.3.1.41;2.3.1.179" + - references: "PMID:11750882;PMID:4452359;PMID:6137188;PMID:7567999;PMID:7834997;PMID:8962082" - subsystem: - - Fatty acid biosynthesis (even-chain) + - "Fatty acid biosynthesis (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2157 + - id: "HMR_2157" - name: "" - metabolites: !!omap - m00881c: -1 @@ -110109,15 +110109,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85;2.3.1.86;1.1.1.100 - - references: PMID:11750882;PMID:4452359;PMID:6137188;PMID:7567999;PMID:7834997;PMID:8962082 + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85;2.3.1.86;1.1.1.100" + - references: "PMID:11750882;PMID:4452359;PMID:6137188;PMID:7567999;PMID:7834997;PMID:8962082" - subsystem: - - Fatty acid biosynthesis (even-chain) + - "Fatty acid biosynthesis (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2158 + - id: "HMR_2158" - name: "" - metabolites: !!omap - m00052c: 1 @@ -110125,15 +110125,15 @@ - m02040c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85;4.2.1.59 - - references: PMID:7567999 + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85;4.2.1.59" + - references: "PMID:7567999" - subsystem: - - Fatty acid biosynthesis (even-chain) + - "Fatty acid biosynthesis (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2159 + - id: "HMR_2159" - name: "" - metabolites: !!omap - m00052c: -1 @@ -110143,15 +110143,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85;1.3.1.39 - - references: PMID:7567999 + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85;1.3.1.39" + - references: "PMID:7567999" - subsystem: - - Fatty acid biosynthesis (even-chain) + - "Fatty acid biosynthesis (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2160 + - id: "HMR_2160" - name: "" - metabolites: !!omap - m00184c: 1 @@ -110162,15 +110162,15 @@ - m02442c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151093 or ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85;2.3.1.41;2.3.1.179 - - references: PMID:11750882;PMID:4452359;PMID:6137188;PMID:7567999;PMID:7834997;PMID:8962082 + - gene_reaction_rule: "ENSG00000151093 or ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85;2.3.1.41;2.3.1.179" + - references: "PMID:11750882;PMID:4452359;PMID:6137188;PMID:7567999;PMID:7834997;PMID:8962082" - subsystem: - - Fatty acid biosynthesis (even-chain) + - "Fatty acid biosynthesis (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2161 + - id: "HMR_2161" - name: "" - metabolites: !!omap - m00161c: 1 @@ -110180,15 +110180,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85;2.3.1.86;1.1.1.100 - - references: PMID:11750882;PMID:4452359;PMID:6137188;PMID:7567999;PMID:7834997;PMID:8962082 + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85;2.3.1.86;1.1.1.100" + - references: "PMID:11750882;PMID:4452359;PMID:6137188;PMID:7567999;PMID:7834997;PMID:8962082" - subsystem: - - Fatty acid biosynthesis (even-chain) + - "Fatty acid biosynthesis (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2162 + - id: "HMR_2162" - name: "" - metabolites: !!omap - m00058c: 1 @@ -110196,15 +110196,15 @@ - m02040c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85;4.2.1.59 - - references: PMID:7567999 + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85;4.2.1.59" + - references: "PMID:7567999" - subsystem: - - Fatty acid biosynthesis (even-chain) + - "Fatty acid biosynthesis (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2163 + - id: "HMR_2163" - name: "" - metabolites: !!omap - m00058c: -1 @@ -110214,15 +110214,15 @@ - m02643c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85;1.3.1.39 - - references: PMID:7567999 + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85;1.3.1.39" + - references: "PMID:7567999" - subsystem: - - Fatty acid biosynthesis (even-chain) + - "Fatty acid biosynthesis (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2164 + - id: "HMR_2164" - name: "" - metabolites: !!omap - m00184c: 1 @@ -110233,15 +110233,15 @@ - m02643c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151093 or ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85;2.3.1.41;2.3.1.179 - - references: PMID:11750882;PMID:4452359;PMID:6137188;PMID:7567999;PMID:7834997;PMID:8962082 + - gene_reaction_rule: "ENSG00000151093 or ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85;2.3.1.41;2.3.1.179" + - references: "PMID:11750882;PMID:4452359;PMID:6137188;PMID:7567999;PMID:7834997;PMID:8962082" - subsystem: - - Fatty acid biosynthesis (even-chain) + - "Fatty acid biosynthesis (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2165 + - id: "HMR_2165" - name: "" - metabolites: !!omap - m00160c: 1 @@ -110251,15 +110251,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85;2.3.1.86;1.1.1.100 - - references: PMID:11750882;PMID:4452359;PMID:6137188;PMID:7567999;PMID:7834997;PMID:8962082 + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85;2.3.1.86;1.1.1.100" + - references: "PMID:11750882;PMID:4452359;PMID:6137188;PMID:7567999;PMID:7834997;PMID:8962082" - subsystem: - - Fatty acid biosynthesis (even-chain) + - "Fatty acid biosynthesis (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2166 + - id: "HMR_2166" - name: "" - metabolites: !!omap - m00038c: 1 @@ -110267,15 +110267,15 @@ - m02040c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85;4.2.1.59 - - references: PMID:7567999 + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85;4.2.1.59" + - references: "PMID:7567999" - subsystem: - - Fatty acid biosynthesis (even-chain) + - "Fatty acid biosynthesis (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2167 + - id: "HMR_2167" - name: "" - metabolites: !!omap - m00038c: -1 @@ -110285,15 +110285,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85;1.3.1.39 - - references: PMID:7567999 + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85;1.3.1.39" + - references: "PMID:7567999" - subsystem: - - Fatty acid biosynthesis (even-chain) + - "Fatty acid biosynthesis (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2168 + - id: "HMR_2168" - name: "" - metabolites: !!omap - m00184c: 1 @@ -110304,15 +110304,15 @@ - m02442c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151093 or ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85;2.3.1.41;2.3.1.179 - - references: PMID:11750882;PMID:4452359;PMID:6137188;PMID:7567999;PMID:7834997;PMID:8962082 + - gene_reaction_rule: "ENSG00000151093 or ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85;2.3.1.41;2.3.1.179" + - references: "PMID:11750882;PMID:4452359;PMID:6137188;PMID:7567999;PMID:7834997;PMID:8962082" - subsystem: - - Fatty acid biosynthesis (even-chain) + - "Fatty acid biosynthesis (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2169 + - id: "HMR_2169" - name: "" - metabolites: !!omap - m00867c: -1 @@ -110322,15 +110322,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85;2.3.1.86;1.1.1.100 - - references: PMID:11750882;PMID:4452359;PMID:6137188;PMID:7567999;PMID:7834997;PMID:8962082 + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85;2.3.1.86;1.1.1.100" + - references: "PMID:11750882;PMID:4452359;PMID:6137188;PMID:7567999;PMID:7834997;PMID:8962082" - subsystem: - - Fatty acid biosynthesis (even-chain) + - "Fatty acid biosynthesis (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2170 + - id: "HMR_2170" - name: "" - metabolites: !!omap - m00041c: 1 @@ -110338,15 +110338,15 @@ - m02040c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85;4.2.1.59 - - references: PMID:7567999 + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85;4.2.1.59" + - references: "PMID:7567999" - subsystem: - - Fatty acid biosynthesis (even-chain) + - "Fatty acid biosynthesis (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2171 + - id: "HMR_2171" - name: "" - metabolites: !!omap - m00041c: -1 @@ -110356,15 +110356,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85;1.3.1.39 - - references: PMID:7567999 + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85;1.3.1.39" + - references: "PMID:7567999" - subsystem: - - Fatty acid biosynthesis (even-chain) + - "Fatty acid biosynthesis (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2173 + - id: "HMR_2173" - name: "" - metabolites: !!omap - m00184c: 1 @@ -110375,15 +110375,15 @@ - m02442c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151093 or ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85;2.3.1.41;2.3.1.179 - - references: PMID:11750882;PMID:4452359;PMID:6137188;PMID:7567999;PMID:7834997;PMID:8962082 + - gene_reaction_rule: "ENSG00000151093 or ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85;2.3.1.41;2.3.1.179" + - references: "PMID:11750882;PMID:4452359;PMID:6137188;PMID:7567999;PMID:7834997;PMID:8962082" - subsystem: - - Fatty acid biosynthesis (even-chain) + - "Fatty acid biosynthesis (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2174 + - id: "HMR_2174" - name: "" - metabolites: !!omap - m00905c: -1 @@ -110393,15 +110393,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85;2.3.1.86;1.1.1.100 - - references: PMID:11750882;PMID:4452359;PMID:6137188;PMID:7567999;PMID:7834997;PMID:8962082 + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85;2.3.1.86;1.1.1.100" + - references: "PMID:11750882;PMID:4452359;PMID:6137188;PMID:7567999;PMID:7834997;PMID:8962082" - subsystem: - - Fatty acid biosynthesis (even-chain) + - "Fatty acid biosynthesis (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2175 + - id: "HMR_2175" - name: "" - metabolites: !!omap - m00065c: 1 @@ -110409,15 +110409,15 @@ - m02130c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85;4.2.1.59 - - references: PMID:7567999 + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85;4.2.1.59" + - references: "PMID:7567999" - subsystem: - - Fatty acid biosynthesis (even-chain) + - "Fatty acid biosynthesis (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2176 + - id: "HMR_2176" - name: "" - metabolites: !!omap - m00065c: -1 @@ -110427,15 +110427,15 @@ - m02972c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85;1.3.1.39 - - references: PMID:7567999 + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85;1.3.1.39" + - references: "PMID:7567999" - subsystem: - - Fatty acid biosynthesis (even-chain) + - "Fatty acid biosynthesis (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2178 + - id: "HMR_2178" - name: "" - metabolites: !!omap - m00184c: 1 @@ -110446,15 +110446,15 @@ - m02972c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151093 or ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85;2.3.1.41;2.3.1.179 - - references: PMID:11750882;PMID:4452359;PMID:6137188;PMID:7567999;PMID:7834997;PMID:8962082 + - gene_reaction_rule: "ENSG00000151093 or ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85;2.3.1.41;2.3.1.179" + - references: "PMID:11750882;PMID:4452359;PMID:6137188;PMID:7567999;PMID:7834997;PMID:8962082" - subsystem: - - Fatty acid biosynthesis (even-chain) + - "Fatty acid biosynthesis (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2179 + - id: "HMR_2179" - name: "" - metabolites: !!omap - m00162c: 1 @@ -110464,15 +110464,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85;2.3.1.86;1.1.1.100 - - references: PMID:11750882;PMID:4452359;PMID:6137188;PMID:7567999;PMID:7834997;PMID:8962082 + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85;2.3.1.86;1.1.1.100" + - references: "PMID:11750882;PMID:4452359;PMID:6137188;PMID:7567999;PMID:7834997;PMID:8962082" - subsystem: - - Fatty acid biosynthesis (even-chain) + - "Fatty acid biosynthesis (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2180 + - id: "HMR_2180" - name: "" - metabolites: !!omap - m00050c: 1 @@ -110480,15 +110480,15 @@ - m02040c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85;4.2.1.59 - - references: PMID:7567999 + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85;4.2.1.59" + - references: "PMID:7567999" - subsystem: - - Fatty acid biosynthesis (even-chain) + - "Fatty acid biosynthesis (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2181 + - id: "HMR_2181" - name: "" - metabolites: !!omap - m00050c: -1 @@ -110498,15 +110498,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85;1.3.1.39 - - references: PMID:7567999 + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85;1.3.1.39" + - references: "PMID:7567999" - subsystem: - - Fatty acid biosynthesis (even-chain) + - "Fatty acid biosynthesis (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_4156 + - id: "HMR_4156" - name: "" - metabolites: !!omap - m01261c: -1 @@ -110518,15 +110518,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000076555 or ENSG00000278540 - - rxnFrom: HMRdatabase - - eccodes: 6.4.1.2 - - references: PMID:7732023;PMID:16854592;PMID:18455495;PMID:10677481;PMID:16721829;PMID:17126822;PMID:235695;PMID:24055;PMID:6116153;PMID:6116159;PMID:6116163;PMID:6138355;PMID:7732023;PMID:9099716 + - gene_reaction_rule: "ENSG00000076555 or ENSG00000278540" + - rxnFrom: "HMRdatabase" + - eccodes: "6.4.1.2" + - references: "PMID:7732023;PMID:16854592;PMID:18455495;PMID:10677481;PMID:16721829;PMID:17126822;PMID:235695;PMID:24055;PMID:6116153;PMID:6116159;PMID:6116163;PMID:6138355;PMID:7732023;PMID:9099716" - subsystem: - - Fatty acid biosynthesis (even-chain) + - "Fatty acid biosynthesis (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_4295 + - id: "HMR_4295" - name: "" - metabolites: !!omap - m01261m: -1 @@ -110538,15 +110538,15 @@ - m02751m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000076555 - - rxnFrom: HMRdatabase - - eccodes: 6.4.1.2 - - references: PMID:10677481;PMID:16721829;PMID:17126822;PMID:235695;PMID:24055;PMID:6116153;PMID:6116159;PMID:6116163;PMID:6138355;PMID:7732023;PMID:9099716 + - gene_reaction_rule: "ENSG00000076555" + - rxnFrom: "HMRdatabase" + - eccodes: "6.4.1.2" + - references: "PMID:10677481;PMID:16721829;PMID:17126822;PMID:235695;PMID:24055;PMID:6116153;PMID:6116159;PMID:6116163;PMID:6138355;PMID:7732023;PMID:9099716" - subsystem: - - Fatty acid biosynthesis (even-chain) + - "Fatty acid biosynthesis (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2227 + - id: "HMR_2227" - name: "" - metabolites: !!omap - m00184c: -1 @@ -110555,15 +110555,15 @@ - m02774c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85 - - references: + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85" + - references: "" - subsystem: - - Fatty acid biosynthesis (odd-chain) + - "Fatty acid biosynthesis (odd-chain)" - confidence_score: 0 - !!omap - - id: HMR_2228 + - id: "HMR_2228" - name: "" - metabolites: !!omap - m00184c: 1 @@ -110574,15 +110574,15 @@ - m02773c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85 - - references: + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85" + - references: "" - subsystem: - - Fatty acid biosynthesis (odd-chain) + - "Fatty acid biosynthesis (odd-chain)" - confidence_score: 0 - !!omap - - id: HMR_2229 + - id: "HMR_2229" - name: "" - metabolites: !!omap - m00796c: 1 @@ -110592,15 +110592,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85 - - references: + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85" + - references: "" - subsystem: - - Fatty acid biosynthesis (odd-chain) + - "Fatty acid biosynthesis (odd-chain)" - confidence_score: 0 - !!omap - - id: HMR_2230 + - id: "HMR_2230" - name: "" - metabolites: !!omap - m00062c: 1 @@ -110608,15 +110608,15 @@ - m02040c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85 - - references: + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85" + - references: "" - subsystem: - - Fatty acid biosynthesis (odd-chain) + - "Fatty acid biosynthesis (odd-chain)" - confidence_score: 0 - !!omap - - id: HMR_2231 + - id: "HMR_2231" - name: "" - metabolites: !!omap - m00062c: -1 @@ -110626,15 +110626,15 @@ - m02693c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85 - - references: + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85" + - references: "" - subsystem: - - Fatty acid biosynthesis (odd-chain) + - "Fatty acid biosynthesis (odd-chain)" - confidence_score: 0 - !!omap - - id: HMR_2232 + - id: "HMR_2232" - name: "" - metabolites: !!omap - m00184c: 1 @@ -110645,15 +110645,15 @@ - m02693c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85 - - references: + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85" + - references: "" - subsystem: - - Fatty acid biosynthesis (odd-chain) + - "Fatty acid biosynthesis (odd-chain)" - confidence_score: 0 - !!omap - - id: HMR_2233 + - id: "HMR_2233" - name: "" - metabolites: !!omap - m00781c: 1 @@ -110663,15 +110663,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85 - - references: + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85" + - references: "" - subsystem: - - Fatty acid biosynthesis (odd-chain) + - "Fatty acid biosynthesis (odd-chain)" - confidence_score: 0 - !!omap - - id: HMR_2234 + - id: "HMR_2234" - name: "" - metabolites: !!omap - m00047c: 1 @@ -110679,15 +110679,15 @@ - m02040c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85 - - references: + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85" + - references: "" - subsystem: - - Fatty acid biosynthesis (odd-chain) + - "Fatty acid biosynthesis (odd-chain)" - confidence_score: 0 - !!omap - - id: HMR_2235 + - id: "HMR_2235" - name: "" - metabolites: !!omap - m00047c: -1 @@ -110697,15 +110697,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85 - - references: + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85" + - references: "" - subsystem: - - Fatty acid biosynthesis (odd-chain) + - "Fatty acid biosynthesis (odd-chain)" - confidence_score: 0 - !!omap - - id: HMR_2236 + - id: "HMR_2236" - name: "" - metabolites: !!omap - m00184c: 1 @@ -110716,15 +110716,15 @@ - m02442c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85 - - references: + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85" + - references: "" - subsystem: - - Fatty acid biosynthesis (odd-chain) + - "Fatty acid biosynthesis (odd-chain)" - confidence_score: 0 - !!omap - - id: HMR_2237 + - id: "HMR_2237" - name: "" - metabolites: !!omap - m00791c: 1 @@ -110734,15 +110734,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85 - - references: + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85" + - references: "" - subsystem: - - Fatty acid biosynthesis (odd-chain) + - "Fatty acid biosynthesis (odd-chain)" - confidence_score: 0 - !!omap - - id: HMR_2238 + - id: "HMR_2238" - name: "" - metabolites: !!omap - m00055c: 1 @@ -110750,15 +110750,15 @@ - m02040c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85 - - references: + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85" + - references: "" - subsystem: - - Fatty acid biosynthesis (odd-chain) + - "Fatty acid biosynthesis (odd-chain)" - confidence_score: 0 - !!omap - - id: HMR_2239 + - id: "HMR_2239" - name: "" - metabolites: !!omap - m00055c: -1 @@ -110768,15 +110768,15 @@ - m02615c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85 - - references: + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85" + - references: "" - subsystem: - - Fatty acid biosynthesis (odd-chain) + - "Fatty acid biosynthesis (odd-chain)" - confidence_score: 0 - !!omap - - id: HMR_2240 + - id: "HMR_2240" - name: "" - metabolites: !!omap - m00184c: 1 @@ -110787,15 +110787,15 @@ - m02615c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85 - - references: + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85" + - references: "" - subsystem: - - Fatty acid biosynthesis (odd-chain) + - "Fatty acid biosynthesis (odd-chain)" - confidence_score: 0 - !!omap - - id: HMR_2241 + - id: "HMR_2241" - name: "" - metabolites: !!omap - m00805c: 1 @@ -110805,15 +110805,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85 - - references: + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85" + - references: "" - subsystem: - - Fatty acid biosynthesis (odd-chain) + - "Fatty acid biosynthesis (odd-chain)" - confidence_score: 0 - !!omap - - id: HMR_2242 + - id: "HMR_2242" - name: "" - metabolites: !!omap - m00070c: 1 @@ -110821,15 +110821,15 @@ - m02040c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85 - - references: + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85" + - references: "" - subsystem: - - Fatty acid biosynthesis (odd-chain) + - "Fatty acid biosynthesis (odd-chain)" - confidence_score: 0 - !!omap - - id: HMR_2243 + - id: "HMR_2243" - name: "" - metabolites: !!omap - m00070c: -1 @@ -110839,15 +110839,15 @@ - m03115c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85 - - references: + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85" + - references: "" - subsystem: - - Fatty acid biosynthesis (odd-chain) + - "Fatty acid biosynthesis (odd-chain)" - confidence_score: 0 - !!omap - - id: HMR_2244 + - id: "HMR_2244" - name: "" - metabolites: !!omap - m00184c: 1 @@ -110858,15 +110858,15 @@ - m03115c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85 - - references: + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85" + - references: "" - subsystem: - - Fatty acid biosynthesis (odd-chain) + - "Fatty acid biosynthesis (odd-chain)" - confidence_score: 0 - !!omap - - id: HMR_2245 + - id: "HMR_2245" - name: "" - metabolites: !!omap - m00803c: 1 @@ -110876,15 +110876,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85 - - references: + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85" + - references: "" - subsystem: - - Fatty acid biosynthesis (odd-chain) + - "Fatty acid biosynthesis (odd-chain)" - confidence_score: 0 - !!omap - - id: HMR_2246 + - id: "HMR_2246" - name: "" - metabolites: !!omap - m00068c: 1 @@ -110892,15 +110892,15 @@ - m02040c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85 - - references: + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85" + - references: "" - subsystem: - - Fatty acid biosynthesis (odd-chain) + - "Fatty acid biosynthesis (odd-chain)" - confidence_score: 0 - !!omap - - id: HMR_2247 + - id: "HMR_2247" - name: "" - metabolites: !!omap - m00068c: -1 @@ -110910,15 +110910,15 @@ - m03048c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85 - - references: + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85" + - references: "" - subsystem: - - Fatty acid biosynthesis (odd-chain) + - "Fatty acid biosynthesis (odd-chain)" - confidence_score: 0 - !!omap - - id: HMR_2249 + - id: "HMR_2249" - name: "" - metabolites: !!omap - m00184c: 1 @@ -110929,15 +110929,15 @@ - m03048c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85 - - references: + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85" + - references: "" - subsystem: - - Fatty acid biosynthesis (odd-chain) + - "Fatty acid biosynthesis (odd-chain)" - confidence_score: 0 - !!omap - - id: HMR_2250 + - id: "HMR_2250" - name: "" - metabolites: !!omap - m00794c: 1 @@ -110947,15 +110947,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85 - - references: + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85" + - references: "" - subsystem: - - Fatty acid biosynthesis (odd-chain) + - "Fatty acid biosynthesis (odd-chain)" - confidence_score: 0 - !!omap - - id: HMR_2251 + - id: "HMR_2251" - name: "" - metabolites: !!omap - m00060c: 1 @@ -110963,15 +110963,15 @@ - m02040c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85 - - references: + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85" + - references: "" - subsystem: - - Fatty acid biosynthesis (odd-chain) + - "Fatty acid biosynthesis (odd-chain)" - confidence_score: 0 - !!omap - - id: HMR_2252 + - id: "HMR_2252" - name: "" - metabolites: !!omap - m00060c: -1 @@ -110981,15 +110981,15 @@ - m02687c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85 - - references: + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85" + - references: "" - subsystem: - - Fatty acid biosynthesis (odd-chain) + - "Fatty acid biosynthesis (odd-chain)" - confidence_score: 0 - !!omap - - id: HMR_2254 + - id: "HMR_2254" - name: "" - metabolites: !!omap - m00184c: 1 @@ -111000,15 +111000,15 @@ - m02687c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85 - - references: + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85" + - references: "" - subsystem: - - Fatty acid biosynthesis (odd-chain) + - "Fatty acid biosynthesis (odd-chain)" - confidence_score: 0 - !!omap - - id: HMR_2255 + - id: "HMR_2255" - name: "" - metabolites: !!omap - m00779c: 1 @@ -111018,15 +111018,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85 - - references: + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85" + - references: "" - subsystem: - - Fatty acid biosynthesis (odd-chain) + - "Fatty acid biosynthesis (odd-chain)" - confidence_score: 0 - !!omap - - id: HMR_2256 + - id: "HMR_2256" - name: "" - metabolites: !!omap - m00045c: 1 @@ -111034,15 +111034,15 @@ - m02040c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85 - - references: + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85" + - references: "" - subsystem: - - Fatty acid biosynthesis (odd-chain) + - "Fatty acid biosynthesis (odd-chain)" - confidence_score: 0 - !!omap - - id: HMR_2257 + - id: "HMR_2257" - name: "" - metabolites: !!omap - m00045c: -1 @@ -111052,15 +111052,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85 - - references: + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85" + - references: "" - subsystem: - - Fatty acid biosynthesis (odd-chain) + - "Fatty acid biosynthesis (odd-chain)" - confidence_score: 0 - !!omap - - id: HMR_2305 + - id: "HMR_2305" - name: "" - metabolites: !!omap - m00840c: 1 @@ -111071,15 +111071,15 @@ - m02647c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.199 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.199" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis (unsaturated) + - "Fatty acid biosynthesis (unsaturated)" - confidence_score: 0 - !!omap - - id: HMR_2307 + - id: "HMR_2307" - name: "" - metabolites: !!omap - m00700c: 1 @@ -111089,15 +111089,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149084 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.330 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000149084" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.330" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis (unsaturated) + - "Fatty acid biosynthesis (unsaturated)" - confidence_score: 0 - !!omap - - id: HMR_2309 + - id: "HMR_2309" - name: "" - metabolites: !!omap - m00700c: -1 @@ -111105,15 +111105,15 @@ - m03012c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.134 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.134" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis (unsaturated) + - "Fatty acid biosynthesis (unsaturated)" - confidence_score: 0 - !!omap - - id: HMR_2311 + - id: "HMR_2311" - name: "" - metabolites: !!omap - m00007c: 1 @@ -111123,15 +111123,15 @@ - m03012c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099797 or ENSG00000205678 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.93 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000099797 or ENSG00000205678" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.93" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis (unsaturated) + - "Fatty acid biosynthesis (unsaturated)" - confidence_score: 0 - !!omap - - id: HMR_2315 + - id: "HMR_2315" - name: "" - metabolites: !!omap - m00007c: -1 @@ -111142,15 +111142,15 @@ - m02444c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.199 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.199" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis (unsaturated) + - "Fatty acid biosynthesis (unsaturated)" - confidence_score: 0 - !!omap - - id: HMR_2317 + - id: "HMR_2317" - name: "" - metabolites: !!omap - m00701c: 1 @@ -111160,15 +111160,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149084 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.330 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000149084" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.330" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis (unsaturated) + - "Fatty acid biosynthesis (unsaturated)" - confidence_score: 0 - !!omap - - id: HMR_2319 + - id: "HMR_2319" - name: "" - metabolites: !!omap - m00701c: -1 @@ -111176,15 +111176,15 @@ - m03013c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.134 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.134" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis (unsaturated) + - "Fatty acid biosynthesis (unsaturated)" - confidence_score: 0 - !!omap - - id: HMR_2321 + - id: "HMR_2321" - name: "" - metabolites: !!omap - m00016c: 1 @@ -111194,15 +111194,15 @@ - m03013c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099797 or ENSG00000205678 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.93 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000099797 or ENSG00000205678" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.93" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis (unsaturated) + - "Fatty acid biosynthesis (unsaturated)" - confidence_score: 0 - !!omap - - id: HMR_2324 + - id: "HMR_2324" - name: "" - metabolites: !!omap - m00016c: -1 @@ -111213,15 +111213,15 @@ - m02444c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.199 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.199" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis (unsaturated) + - "Fatty acid biosynthesis (unsaturated)" - confidence_score: 0 - !!omap - - id: HMR_2326 + - id: "HMR_2326" - name: "" - metabolites: !!omap - m00709c: 1 @@ -111231,15 +111231,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149084 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.330 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000149084" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.330" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis (unsaturated) + - "Fatty acid biosynthesis (unsaturated)" - confidence_score: 0 - !!omap - - id: HMR_2328 + - id: "HMR_2328" - name: "" - metabolites: !!omap - m00709c: -1 @@ -111247,15 +111247,15 @@ - m03015c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.134 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.134" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis (unsaturated) + - "Fatty acid biosynthesis (unsaturated)" - confidence_score: 0 - !!omap - - id: HMR_2330 + - id: "HMR_2330" - name: "" - metabolites: !!omap - m00025c: 1 @@ -111265,15 +111265,15 @@ - m03015c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099797 or ENSG00000205678 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.93 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000099797 or ENSG00000205678" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.93" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis (unsaturated) + - "Fatty acid biosynthesis (unsaturated)" - confidence_score: 0 - !!omap - - id: HMR_2332 + - id: "HMR_2332" - name: "" - metabolites: !!omap - m00025c: -1 @@ -111284,15 +111284,15 @@ - m02444c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.199 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.199" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis (unsaturated) + - "Fatty acid biosynthesis (unsaturated)" - confidence_score: 0 - !!omap - - id: HMR_2334 + - id: "HMR_2334" - name: "" - metabolites: !!omap - m00715c: 1 @@ -111302,15 +111302,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149084 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.330 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000149084" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.330" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis (unsaturated) + - "Fatty acid biosynthesis (unsaturated)" - confidence_score: 0 - !!omap - - id: HMR_2336 + - id: "HMR_2336" - name: "" - metabolites: !!omap - m00715c: -1 @@ -111318,15 +111318,15 @@ - m03016c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.134 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.134" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis (unsaturated) + - "Fatty acid biosynthesis (unsaturated)" - confidence_score: 0 - !!omap - - id: HMR_2338 + - id: "HMR_2338" - name: "" - metabolites: !!omap - m02039c: -1 @@ -111336,15 +111336,15 @@ - m03016c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099797 or ENSG00000205678 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.93 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000099797 or ENSG00000205678" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.93" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis (unsaturated) + - "Fatty acid biosynthesis (unsaturated)" - confidence_score: 0 - !!omap - - id: HMR_2342 + - id: "HMR_2342" - name: "" - metabolites: !!omap - m00843c: 1 @@ -111355,15 +111355,15 @@ - m02444c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.199 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.199" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis (unsaturated) + - "Fatty acid biosynthesis (unsaturated)" - confidence_score: 0 - !!omap - - id: HMR_2343 + - id: "HMR_2343" - name: "" - metabolites: !!omap - m00702c: 1 @@ -111373,15 +111373,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149084 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.330 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000149084" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.330" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis (unsaturated) + - "Fatty acid biosynthesis (unsaturated)" - confidence_score: 0 - !!omap - - id: HMR_2344 + - id: "HMR_2344" - name: "" - metabolites: !!omap - m00702c: -1 @@ -111389,15 +111389,15 @@ - m03014c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.134 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.134" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis (unsaturated) + - "Fatty acid biosynthesis (unsaturated)" - confidence_score: 0 - !!omap - - id: HMR_2345 + - id: "HMR_2345" - name: "" - metabolites: !!omap - m00018c: 1 @@ -111407,15 +111407,15 @@ - m03014c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099797 or ENSG00000205678 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.93 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000099797 or ENSG00000205678" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.93" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis (unsaturated) + - "Fatty acid biosynthesis (unsaturated)" - confidence_score: 0 - !!omap - - id: HMR_2347 + - id: "HMR_2347" - name: "" - metabolites: !!omap - m00116c: -1 @@ -111426,15 +111426,15 @@ - m02444c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.199 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.199" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis (unsaturated) + - "Fatty acid biosynthesis (unsaturated)" - confidence_score: 0 - !!omap - - id: HMR_2348 + - id: "HMR_2348" - name: "" - metabolites: !!omap - m00707c: 1 @@ -111444,15 +111444,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149084 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.330 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000149084" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.330" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis (unsaturated) + - "Fatty acid biosynthesis (unsaturated)" - confidence_score: 0 - !!omap - - id: HMR_2349 + - id: "HMR_2349" - name: "" - metabolites: !!omap - m00707c: -1 @@ -111460,15 +111460,15 @@ - m03018c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.134 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.134" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis (unsaturated) + - "Fatty acid biosynthesis (unsaturated)" - confidence_score: 0 - !!omap - - id: HMR_2350 + - id: "HMR_2350" - name: "" - metabolites: !!omap - m01236c: 1 @@ -111478,15 +111478,15 @@ - m03018c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099797 or ENSG00000205678 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.93 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000099797 or ENSG00000205678" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.93" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis (unsaturated) + - "Fatty acid biosynthesis (unsaturated)" - confidence_score: 0 - !!omap - - id: HMR_2353 + - id: "HMR_2353" - name: "" - metabolites: !!omap - m00839c: 1 @@ -111497,15 +111497,15 @@ - m02444c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.199 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.199" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis (unsaturated) + - "Fatty acid biosynthesis (unsaturated)" - confidence_score: 0 - !!omap - - id: HMR_2354 + - id: "HMR_2354" - name: "" - metabolites: !!omap - m00699c: 1 @@ -111515,15 +111515,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149084 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.330 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000149084" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.330" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis (unsaturated) + - "Fatty acid biosynthesis (unsaturated)" - confidence_score: 0 - !!omap - - id: HMR_2355 + - id: "HMR_2355" - name: "" - metabolites: !!omap - m00699c: -1 @@ -111531,15 +111531,15 @@ - m03011c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.134 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.134" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis (unsaturated) + - "Fatty acid biosynthesis (unsaturated)" - confidence_score: 0 - !!omap - - id: HMR_2356 + - id: "HMR_2356" - name: "" - metabolites: !!omap - m00006c: 1 @@ -111549,15 +111549,15 @@ - m03011c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099797 or ENSG00000205678 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.93 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000099797 or ENSG00000205678" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.93" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis (unsaturated) + - "Fatty acid biosynthesis (unsaturated)" - confidence_score: 0 - !!omap - - id: HMR_2361 + - id: "HMR_2361" - name: "" - metabolites: !!omap - m00106c: -1 @@ -111568,15 +111568,15 @@ - m02444c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.199 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.199" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis (unsaturated) + - "Fatty acid biosynthesis (unsaturated)" - confidence_score: 0 - !!omap - - id: HMR_2362 + - id: "HMR_2362" - name: "" - metabolites: !!omap - m00704c: 1 @@ -111586,15 +111586,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149084 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.330 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000149084" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.330" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis (unsaturated) + - "Fatty acid biosynthesis (unsaturated)" - confidence_score: 0 - !!omap - - id: HMR_2363 + - id: "HMR_2363" - name: "" - metabolites: !!omap - m00704c: -1 @@ -111602,15 +111602,15 @@ - m03017c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.134 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.134" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis (unsaturated) + - "Fatty acid biosynthesis (unsaturated)" - confidence_score: 0 - !!omap - - id: HMR_2364 + - id: "HMR_2364" - name: "" - metabolites: !!omap - m00123c: 1 @@ -111620,15 +111620,15 @@ - m03017c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099797 or ENSG00000205678 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.93 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000099797 or ENSG00000205678" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.93" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis (unsaturated) + - "Fatty acid biosynthesis (unsaturated)" - confidence_score: 0 - !!omap - - id: HMR_2190 + - id: "HMR_2190" - name: "" - metabolites: !!omap - m00890c: 1 @@ -111639,15 +111639,15 @@ - m02678c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.199 - - references: PMID:16564093;PMID:19505953;PMID:17583696;PMID:12032166;PMID:11567032 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.199" + - references: "PMID:16564093;PMID:19505953;PMID:17583696;PMID:12032166;PMID:11567032" - subsystem: - - Fatty acid elongation (even-chain) + - "Fatty acid elongation (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2191 + - id: "HMR_2191" - name: "" - metabolites: !!omap - m00793c: 1 @@ -111657,15 +111657,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149084 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.330 - - references: PMID:10479480;PMID:12482854 + - gene_reaction_rule: "ENSG00000149084" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.330" + - references: "PMID:10479480;PMID:12482854" - subsystem: - - Fatty acid elongation (even-chain) + - "Fatty acid elongation (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2193 + - id: "HMR_2193" - name: "" - metabolites: !!omap - m00057c: 1 @@ -111673,15 +111673,15 @@ - m02040c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.134 - - references: PMID:16564093;PMID:4379659 + - gene_reaction_rule: "ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.134" + - references: "PMID:16564093;PMID:4379659" - subsystem: - - Fatty acid elongation (even-chain) + - "Fatty acid elongation (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2194 + - id: "HMR_2194" - name: "" - metabolites: !!omap - m00057c: -1 @@ -111691,15 +111691,15 @@ - m02941c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099797 or ENSG00000205678 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.93 - - references: PMID:12482854;PMID:10479480 + - gene_reaction_rule: "ENSG00000099797 or ENSG00000205678" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.93" + - references: "PMID:12482854;PMID:10479480" - subsystem: - - Fatty acid elongation (even-chain) + - "Fatty acid elongation (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2201 + - id: "HMR_2201" - name: "" - metabolites: !!omap - m00872c: 1 @@ -111710,15 +111710,15 @@ - m02941c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.199 - - references: PMID:10479480 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.199" + - references: "PMID:10479480" - subsystem: - - Fatty acid elongation (even-chain) + - "Fatty acid elongation (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2202 + - id: "HMR_2202" - name: "" - metabolites: !!omap - m00777c: 1 @@ -111728,15 +111728,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149084 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.330 - - references: PMID:10479480 + - gene_reaction_rule: "ENSG00000149084" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.330" + - references: "PMID:10479480" - subsystem: - - Fatty acid elongation (even-chain) + - "Fatty acid elongation (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2203 + - id: "HMR_2203" - name: "" - metabolites: !!omap - m00043c: 1 @@ -111744,15 +111744,15 @@ - m02040c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.134 - - references: PMID:10479480 + - gene_reaction_rule: "ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.134" + - references: "PMID:10479480" - subsystem: - - Fatty acid elongation (even-chain) + - "Fatty acid elongation (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2204 + - id: "HMR_2204" - name: "" - metabolites: !!omap - m00043c: -1 @@ -111762,15 +111762,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099797 or ENSG00000205678 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.93 - - references: PMID:10479480 + - gene_reaction_rule: "ENSG00000099797 or ENSG00000205678" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.93" + - references: "PMID:10479480" - subsystem: - - Fatty acid elongation (even-chain) + - "Fatty acid elongation (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2205 + - id: "HMR_2205" - name: "" - metabolites: !!omap - m00866c: 1 @@ -111781,15 +111781,15 @@ - m02444c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.199 - - references: PMID:10479480;PMID:19826053 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.199" + - references: "PMID:10479480;PMID:19826053" - subsystem: - - Fatty acid elongation (even-chain) + - "Fatty acid elongation (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2208 + - id: "HMR_2208" - name: "" - metabolites: !!omap - m00776c: 1 @@ -111799,15 +111799,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149084 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.330 - - references: PMID:10479480 + - gene_reaction_rule: "ENSG00000149084" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.330" + - references: "PMID:10479480" - subsystem: - - Fatty acid elongation (even-chain) + - "Fatty acid elongation (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2209 + - id: "HMR_2209" - name: "" - metabolites: !!omap - m00040c: 1 @@ -111815,15 +111815,15 @@ - m02040c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.134 - - references: PMID:10479480 + - gene_reaction_rule: "ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.134" + - references: "PMID:10479480" - subsystem: - - Fatty acid elongation (even-chain) + - "Fatty acid elongation (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2210 + - id: "HMR_2210" - name: "" - metabolites: !!omap - m00040c: -1 @@ -111833,15 +111833,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099797 or ENSG00000205678 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.93 - - references: PMID:10479480 + - gene_reaction_rule: "ENSG00000099797 or ENSG00000205678" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.93" + - references: "PMID:10479480" - subsystem: - - Fatty acid elongation (even-chain) + - "Fatty acid elongation (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2211 + - id: "HMR_2211" - name: "" - metabolites: !!omap - m00904c: 1 @@ -111852,15 +111852,15 @@ - m02444c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.199 - - references: PMID:10479480 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.199" + - references: "PMID:10479480" - subsystem: - - Fatty acid elongation (even-chain) + - "Fatty acid elongation (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2212 + - id: "HMR_2212" - name: "" - metabolites: !!omap - m00800c: 1 @@ -111870,15 +111870,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149084 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.330 - - references: PMID:10479480 + - gene_reaction_rule: "ENSG00000149084" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.330" + - references: "PMID:10479480" - subsystem: - - Fatty acid elongation (even-chain) + - "Fatty acid elongation (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2213 + - id: "HMR_2213" - name: "" - metabolites: !!omap - m00064c: 1 @@ -111886,15 +111886,15 @@ - m02040c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.134 - - references: PMID:10479480 + - gene_reaction_rule: "ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.134" + - references: "PMID:10479480" - subsystem: - - Fatty acid elongation (even-chain) + - "Fatty acid elongation (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2214 + - id: "HMR_2214" - name: "" - metabolites: !!omap - m00064c: -1 @@ -111904,15 +111904,15 @@ - m02971c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099797 or ENSG00000205678 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.93 - - references: PMID:10479480 + - gene_reaction_rule: "ENSG00000099797 or ENSG00000205678" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.93" + - references: "PMID:10479480" - subsystem: - - Fatty acid elongation (even-chain) + - "Fatty acid elongation (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2215 + - id: "HMR_2215" - name: "" - metabolites: !!omap - m00878c: 1 @@ -111923,15 +111923,15 @@ - m02971c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.199 - - references: PMID:18728184;PMID:16036915 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.199" + - references: "PMID:18728184;PMID:16036915" - subsystem: - - Fatty acid elongation (even-chain) + - "Fatty acid elongation (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2217 + - id: "HMR_2217" - name: "" - metabolites: !!omap - m00783c: 1 @@ -111941,15 +111941,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149084 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.330 - - references: + - gene_reaction_rule: "ENSG00000149084" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.330" + - references: "" - subsystem: - - Fatty acid elongation (even-chain) + - "Fatty acid elongation (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2218 + - id: "HMR_2218" - name: "" - metabolites: !!omap - m00049c: 1 @@ -111957,15 +111957,15 @@ - m02040c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.134 - - references: + - gene_reaction_rule: "ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.134" + - references: "" - subsystem: - - Fatty acid elongation (even-chain) + - "Fatty acid elongation (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2219 + - id: "HMR_2219" - name: "" - metabolites: !!omap - m00049c: -1 @@ -111975,15 +111975,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099797 or ENSG00000205678 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.93 - - references: + - gene_reaction_rule: "ENSG00000099797 or ENSG00000205678" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.93" + - references: "" - subsystem: - - Fatty acid elongation (even-chain) + - "Fatty acid elongation (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2259 + - id: "HMR_2259" - name: "" - metabolites: !!omap - m00887c: 1 @@ -111994,15 +111994,15 @@ - m02444c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.199 - - references: PMID:10479480 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.199" + - references: "PMID:10479480" - subsystem: - - Fatty acid elongation (odd-chain) + - "Fatty acid elongation (odd-chain)" - confidence_score: 0 - !!omap - - id: HMR_2260 + - id: "HMR_2260" - name: "" - metabolites: !!omap - m00790c: 1 @@ -112012,15 +112012,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149084 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.330 - - references: PMID:10479480 + - gene_reaction_rule: "ENSG00000149084" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.330" + - references: "PMID:10479480" - subsystem: - - Fatty acid elongation (odd-chain) + - "Fatty acid elongation (odd-chain)" - confidence_score: 0 - !!omap - - id: HMR_2261 + - id: "HMR_2261" - name: "" - metabolites: !!omap - m00054c: 1 @@ -112028,15 +112028,15 @@ - m02040c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.134 - - references: PMID:10479480 + - gene_reaction_rule: "ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.134" + - references: "PMID:10479480" - subsystem: - - Fatty acid elongation (odd-chain) + - "Fatty acid elongation (odd-chain)" - confidence_score: 0 - !!omap - - id: HMR_2262 + - id: "HMR_2262" - name: "" - metabolites: !!omap - m00054c: -1 @@ -112046,15 +112046,15 @@ - m02612c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099797 or ENSG00000205678 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.93 - - references: PMID:10479480 + - gene_reaction_rule: "ENSG00000099797 or ENSG00000205678" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.93" + - references: "PMID:10479480" - subsystem: - - Fatty acid elongation (odd-chain) + - "Fatty acid elongation (odd-chain)" - confidence_score: 0 - !!omap - - id: HMR_2263 + - id: "HMR_2263" - name: "" - metabolites: !!omap - m00873c: 1 @@ -112065,15 +112065,15 @@ - m02612c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.199 - - references: PMID:10479480 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.199" + - references: "PMID:10479480" - subsystem: - - Fatty acid elongation (odd-chain) + - "Fatty acid elongation (odd-chain)" - confidence_score: 0 - !!omap - - id: HMR_2264 + - id: "HMR_2264" - name: "" - metabolites: !!omap - m00778c: 1 @@ -112083,15 +112083,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149084 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.330 - - references: PMID:10479480 + - gene_reaction_rule: "ENSG00000149084" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.330" + - references: "PMID:10479480" - subsystem: - - Fatty acid elongation (odd-chain) + - "Fatty acid elongation (odd-chain)" - confidence_score: 0 - !!omap - - id: HMR_2265 + - id: "HMR_2265" - name: "" - metabolites: !!omap - m00044c: 1 @@ -112099,15 +112099,15 @@ - m02040c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.134 - - references: PMID:10479480 + - gene_reaction_rule: "ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.134" + - references: "PMID:10479480" - subsystem: - - Fatty acid elongation (odd-chain) + - "Fatty acid elongation (odd-chain)" - confidence_score: 0 - !!omap - - id: HMR_2266 + - id: "HMR_2266" - name: "" - metabolites: !!omap - m00044c: -1 @@ -112117,15 +112117,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099797 or ENSG00000205678 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.93 - - references: PMID:10479480 + - gene_reaction_rule: "ENSG00000099797 or ENSG00000205678" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.93" + - references: "PMID:10479480" - subsystem: - - Fatty acid elongation (odd-chain) + - "Fatty acid elongation (odd-chain)" - confidence_score: 0 - !!omap - - id: HMR_2267 + - id: "HMR_2267" - name: "" - metabolites: !!omap - m00907c: 1 @@ -112136,15 +112136,15 @@ - m02444c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.199 - - references: PMID:10479480 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.199" + - references: "PMID:10479480" - subsystem: - - Fatty acid elongation (odd-chain) + - "Fatty acid elongation (odd-chain)" - confidence_score: 0 - !!omap - - id: HMR_2268 + - id: "HMR_2268" - name: "" - metabolites: !!omap - m00802c: 1 @@ -112154,15 +112154,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149084 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.330 - - references: PMID:10479480 + - gene_reaction_rule: "ENSG00000149084" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.330" + - references: "PMID:10479480" - subsystem: - - Fatty acid elongation (odd-chain) + - "Fatty acid elongation (odd-chain)" - confidence_score: 0 - !!omap - - id: HMR_2269 + - id: "HMR_2269" - name: "" - metabolites: !!omap - m00067c: 1 @@ -112170,15 +112170,15 @@ - m02040c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.134 - - references: PMID:10479480 + - gene_reaction_rule: "ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.134" + - references: "PMID:10479480" - subsystem: - - Fatty acid elongation (odd-chain) + - "Fatty acid elongation (odd-chain)" - confidence_score: 0 - !!omap - - id: HMR_2270 + - id: "HMR_2270" - name: "" - metabolites: !!omap - m00067c: -1 @@ -112188,15 +112188,15 @@ - m03047c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099797 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.93 - - references: PMID:10479480 + - gene_reaction_rule: "ENSG00000099797" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.93" + - references: "PMID:10479480" - subsystem: - - Fatty acid elongation (odd-chain) + - "Fatty acid elongation (odd-chain)" - confidence_score: 0 - !!omap - - id: HMR_2281 + - id: "HMR_2281" - name: "" - metabolites: !!omap - m00129c: 1 @@ -112208,15 +112208,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099194 or ENSG00000145284 - - rxnFrom: HMRdatabase - - eccodes: 1.14.19.1 - - references: + - gene_reaction_rule: "ENSG00000099194 or ENSG00000145284" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.19.1" + - references: "" - subsystem: - - Fatty acid desaturation (even-chain) + - "Fatty acid desaturation (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2282 + - id: "HMR_2282" - name: "" - metabolites: !!omap - m00118c: 1 @@ -112228,15 +112228,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099194 or ENSG00000145284 - - rxnFrom: HMRdatabase - - eccodes: 1.14.19.1 - - references: + - gene_reaction_rule: "ENSG00000099194 or ENSG00000145284" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.19.1" + - references: "" - subsystem: - - Fatty acid desaturation (even-chain) + - "Fatty acid desaturation (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2284 + - id: "HMR_2284" - name: "" - metabolites: !!omap - m01141c: 1 @@ -112248,15 +112248,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099194 or ENSG00000145284 - - rxnFrom: HMRdatabase - - eccodes: 1.14.19.1 - - references: + - gene_reaction_rule: "ENSG00000099194 or ENSG00000145284" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.19.1" + - references: "" - subsystem: - - Fatty acid desaturation (even-chain) + - "Fatty acid desaturation (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2286 + - id: "HMR_2286" - name: "" - metabolites: !!omap - m02039c: -1 @@ -112268,15 +112268,15 @@ - m02678c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099194 or ENSG00000145284 - - rxnFrom: HMRdatabase - - eccodes: 1.14.19.1 - - references: + - gene_reaction_rule: "ENSG00000099194 or ENSG00000145284" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.19.1" + - references: "" - subsystem: - - Fatty acid desaturation (even-chain) + - "Fatty acid desaturation (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2287 + - id: "HMR_2287" - name: "" - metabolites: !!omap - m01191c: 1 @@ -112288,15 +112288,15 @@ - m02678c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099194 or ENSG00000145284 - - rxnFrom: HMRdatabase - - eccodes: 1.14.19.1 - - references: + - gene_reaction_rule: "ENSG00000099194 or ENSG00000145284" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.19.1" + - references: "" - subsystem: - - Fatty acid desaturation (even-chain) + - "Fatty acid desaturation (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2292 + - id: "HMR_2292" - name: "" - metabolites: !!omap - m00020c: 1 @@ -112308,15 +112308,15 @@ - m02941c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099194 or ENSG00000145284 - - rxnFrom: HMRdatabase - - eccodes: 1.14.19.1 - - references: + - gene_reaction_rule: "ENSG00000099194 or ENSG00000145284" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.19.1" + - references: "" - subsystem: - - Fatty acid desaturation (even-chain) + - "Fatty acid desaturation (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2293 + - id: "HMR_2293" - name: "" - metabolites: !!omap - m01586c: 1 @@ -112328,15 +112328,15 @@ - m02941c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099194 or ENSG00000145284 - - rxnFrom: HMRdatabase - - eccodes: 1.14.19.1 - - references: + - gene_reaction_rule: "ENSG00000099194 or ENSG00000145284" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.19.1" + - references: "" - subsystem: - - Fatty acid desaturation (even-chain) + - "Fatty acid desaturation (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2294 + - id: "HMR_2294" - name: "" - metabolites: !!omap - m02039c: -1 @@ -112348,15 +112348,15 @@ - m02941c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099194 or ENSG00000145284 or ENSG00000172782 - - rxnFrom: HMRdatabase - - eccodes: 1.14.19.1 - - references: + - gene_reaction_rule: "ENSG00000099194 or ENSG00000145284 or ENSG00000172782" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.19.1" + - references: "" - subsystem: - - Fatty acid desaturation (even-chain) + - "Fatty acid desaturation (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2295 + - id: "HMR_2295" - name: "" - metabolites: !!omap - m00127c: 1 @@ -112368,15 +112368,15 @@ - m02941c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099194 or ENSG00000145284 - - rxnFrom: HMRdatabase - - eccodes: 1.14.19.1 - - references: + - gene_reaction_rule: "ENSG00000099194 or ENSG00000145284" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.19.1" + - references: "" - subsystem: - - Fatty acid desaturation (even-chain) + - "Fatty acid desaturation (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2296 + - id: "HMR_2296" - name: "" - metabolites: !!omap - m00116c: 1 @@ -112388,15 +112388,15 @@ - m02941c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099194 or ENSG00000145284 - - rxnFrom: HMRdatabase - - eccodes: 1.14.19.1 - - references: + - gene_reaction_rule: "ENSG00000099194 or ENSG00000145284" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.19.1" + - references: "" - subsystem: - - Fatty acid desaturation (even-chain) + - "Fatty acid desaturation (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2359 + - id: "HMR_2359" - name: "" - metabolites: !!omap - m00106c: 1 @@ -112408,15 +112408,15 @@ - m02647c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134824 or ENSG00000149485 or ENSG00000221968 - - rxnFrom: HMRdatabase - - eccodes: 1.14.19.- - - references: + - gene_reaction_rule: "ENSG00000134824 or ENSG00000149485 or ENSG00000221968" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.19.-" + - references: "" - subsystem: - - Fatty acid desaturation (even-chain) + - "Fatty acid desaturation (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2365 + - id: "HMR_2365" - name: "" - metabolites: !!omap - m00101c: 1 @@ -112428,15 +112428,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134824 or ENSG00000149485 or ENSG00000221968 - - rxnFrom: HMRdatabase - - eccodes: 1.14.19.- - - references: + - gene_reaction_rule: "ENSG00000134824 or ENSG00000149485 or ENSG00000221968" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.19.-" + - references: "" - subsystem: - - Fatty acid desaturation (even-chain) + - "Fatty acid desaturation (even-chain)" - confidence_score: 0 - !!omap - - id: HMR_2288 + - id: "HMR_2288" - name: "" - metabolites: !!omap - m00004c: 1 @@ -112448,15 +112448,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099194 or ENSG00000145284 - - rxnFrom: HMRdatabase - - eccodes: 1.14.19.1 - - references: + - gene_reaction_rule: "ENSG00000099194 or ENSG00000145284" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.19.1" + - references: "" - subsystem: - - Fatty acid desaturation (odd-chain) + - "Fatty acid desaturation (odd-chain)" - confidence_score: 0 - !!omap - - id: HMR_2289 + - id: "HMR_2289" - name: "" - metabolites: !!omap - m01237c: 1 @@ -112468,15 +112468,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099194 or ENSG00000145284 - - rxnFrom: HMRdatabase - - eccodes: 1.14.19.1 - - references: + - gene_reaction_rule: "ENSG00000099194 or ENSG00000145284" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.19.1" + - references: "" - subsystem: - - Fatty acid desaturation (odd-chain) + - "Fatty acid desaturation (odd-chain)" - confidence_score: 0 - !!omap - - id: HMR_0709 + - id: "HMR_0709" - name: "" - metabolites: !!omap - m01597p: 1 @@ -112486,15 +112486,15 @@ - m02678p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000131238 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 or ENSG00000221988 or ENSG00000241404 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2;3.1.2.22 - - references: PMID:10092594;PMID:6151837 + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000131238 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 or ENSG00000221988 or ENSG00000241404" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2;3.1.2.22" + - references: "PMID:10092594;PMID:6151837" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_2150 + - id: "HMR_2150" - name: "" - metabolites: !!omap - m00184c: -1 @@ -112503,15 +112503,15 @@ - m01597c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85 - - references: PMID:11750882;PMID:4452359;PMID:6137188;PMID:7567999;PMID:7834997;PMID:8962082 + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85" + - references: "PMID:11750882;PMID:4452359;PMID:6137188;PMID:7567999;PMID:7834997;PMID:8962082" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_2151 + - id: "HMR_2151" - name: "" - metabolites: !!omap - m00184c: -1 @@ -112520,15 +112520,15 @@ - m02444c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100294 or ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85;2.3.1.39 - - references: PMID:11750882;PMID:12882974;PMID:4452359;PMID:6137188;PMID:7567999;PMID:7834997;PMID:8962082 + - gene_reaction_rule: "ENSG00000100294 or ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85;2.3.1.39" + - references: "PMID:11750882;PMID:12882974;PMID:4452359;PMID:6137188;PMID:7567999;PMID:7834997;PMID:8962082" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_2172 + - id: "HMR_2172" - name: "" - metabolites: !!omap - m00184c: 1 @@ -112538,15 +112538,15 @@ - m02344c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000152463 or ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.14;3.1.2.21 - - references: + - gene_reaction_rule: "ENSG00000152463 or ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.14;3.1.2.21" + - references: "" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_2177 + - id: "HMR_2177" - name: "" - metabolites: !!omap - m00184c: 1 @@ -112556,15 +112556,15 @@ - m02972c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000152463 or ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.14;2.3.1.85 - - references: + - gene_reaction_rule: "ENSG00000152463 or ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.14;2.3.1.85" + - references: "" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_2182 + - id: "HMR_2182" - name: "" - metabolites: !!omap - m00184c: 1 @@ -112574,15 +112574,15 @@ - m02674c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000152463 or ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.14;2.3.1.85 - - references: PMID:7567999 + - gene_reaction_rule: "ENSG00000152463 or ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.14;2.3.1.85" + - references: "PMID:7567999" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_2248 + - id: "HMR_2248" - name: "" - metabolites: !!omap - m00184c: 1 @@ -112592,15 +112592,15 @@ - m03051c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000152463 or ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.14;2.3.1.85 - - references: + - gene_reaction_rule: "ENSG00000152463 or ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.14;2.3.1.85" + - references: "" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_2253 + - id: "HMR_2253" - name: "" - metabolites: !!omap - m00184c: 1 @@ -112610,15 +112610,15 @@ - m02690c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000152463 or ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.14;2.3.1.85 - - references: + - gene_reaction_rule: "ENSG00000152463 or ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.14;2.3.1.85" + - references: "" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_2258 + - id: "HMR_2258" - name: "" - metabolites: !!omap - m00184c: 1 @@ -112628,15 +112628,15 @@ - m02456c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000152463 or ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.14;2.3.1.85 - - references: + - gene_reaction_rule: "ENSG00000152463 or ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.14;2.3.1.85" + - references: "" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_2437 + - id: "HMR_2437" - name: "" - metabolites: !!omap - m01217c: 1 @@ -112644,15 +112644,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Linoleate metabolism + - "Linoleate metabolism" - confidence_score: 0 - !!omap - - id: HMR_2438 + - id: "HMR_2438" - name: "" - metabolites: !!omap - m01217c: -1 @@ -112663,15 +112663,15 @@ - m02555c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073756 or ENSG00000095303 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.1 - - references: + - gene_reaction_rule: "ENSG00000073756 or ENSG00000095303" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.1" + - references: "" - subsystem: - - Linoleate metabolism + - "Linoleate metabolism" - confidence_score: 0 - !!omap - - id: HMR_2439 + - id: "HMR_2439" - name: "" - metabolites: !!omap - m00298c: 1 @@ -112679,15 +112679,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.45 - - references: PMID:11686005 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.45" + - references: "PMID:11686005" - subsystem: - - Linoleate metabolism + - "Linoleate metabolism" - confidence_score: 0 - !!omap - - id: HMR_2440 + - id: "HMR_2440" - name: "" - metabolites: !!omap - m00337c: 1 @@ -112695,15 +112695,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000161905 or ENSG00000179593 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.12;1.13.11.33 - - references: + - gene_reaction_rule: "ENSG00000161905 or ENSG00000179593" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.12;1.13.11.33" + - references: "" - subsystem: - - Linoleate metabolism + - "Linoleate metabolism" - confidence_score: 0 - !!omap - - id: HMR_2441 + - id: "HMR_2441" - name: "" - metabolites: !!omap - m00336c: 1 @@ -112714,15 +112714,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116157 or ENSG00000117592 or ENSG00000164294 or ENSG00000167468 or ENSG00000176153 or ENSG00000198704 or ENSG00000211445 or ENSG00000224586 or ENSG00000233276 - - rxnFrom: HMRdatabase - - eccodes: 1.11.1.9 - - references: + - gene_reaction_rule: "ENSG00000116157 or ENSG00000117592 or ENSG00000164294 or ENSG00000167468 or ENSG00000176153 or ENSG00000198704 or ENSG00000211445 or ENSG00000224586 or ENSG00000233276" + - rxnFrom: "HMRdatabase" + - eccodes: "1.11.1.9" + - references: "" - subsystem: - - Linoleate metabolism + - "Linoleate metabolism" - confidence_score: 0 - !!omap - - id: HMR_2442 + - id: "HMR_2442" - name: "" - metabolites: !!omap - m00337c: -1 @@ -112731,15 +112731,15 @@ - m02614c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11408659;PMID:11686005 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11408659;PMID:11686005" - subsystem: - - Linoleate metabolism + - "Linoleate metabolism" - confidence_score: 0 - !!omap - - id: HMR_2443 + - id: "HMR_2443" - name: "" - metabolites: !!omap - m00337c: -1 @@ -112750,15 +112750,15 @@ - m02040c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Linoleate metabolism + - "Linoleate metabolism" - confidence_score: 0 - !!omap - - id: HMR_2444 + - id: "HMR_2444" - name: "" - metabolites: !!omap - m00362c: -1 @@ -112766,30 +112766,30 @@ - m02695c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11742529 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11742529" - subsystem: - - Linoleate metabolism + - "Linoleate metabolism" - confidence_score: 0 - !!omap - - id: HMR_2445 + - id: "HMR_2445" - name: "" - metabolites: !!omap - m00313c: -1 - m00363c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11742529 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11742529" - subsystem: - - Linoleate metabolism + - "Linoleate metabolism" - confidence_score: 0 - !!omap - - id: HMR_2446 + - id: "HMR_2446" - name: "" - metabolites: !!omap - m00312c: -1 @@ -112799,15 +112799,15 @@ - m02630c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11742529 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11742529" - subsystem: - - Linoleate metabolism + - "Linoleate metabolism" - confidence_score: 0 - !!omap - - id: HMR_2447 + - id: "HMR_2447" - name: "" - metabolites: !!omap - m00311c: -1 @@ -112818,15 +112818,15 @@ - m02040c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Linoleate metabolism + - "Linoleate metabolism" - confidence_score: 0 - !!omap - - id: HMR_2448 + - id: "HMR_2448" - name: "" - metabolites: !!omap - m00311c: -1 @@ -112835,15 +112835,15 @@ - m03036c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11742529 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11742529" - subsystem: - - Linoleate metabolism + - "Linoleate metabolism" - confidence_score: 0 - !!omap - - id: HMR_2449 + - id: "HMR_2449" - name: "" - metabolites: !!omap - m00311c: -1 @@ -112852,15 +112852,15 @@ - m02147c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11686005;PMID:11408659 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11686005;PMID:11408659" - subsystem: - - Linoleate metabolism + - "Linoleate metabolism" - confidence_score: 0 - !!omap - - id: HMR_2450 + - id: "HMR_2450" - name: "" - metabolites: !!omap - m00533c: 1 @@ -112868,15 +112868,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11686005;PMID:11408659 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11686005;PMID:11408659" - subsystem: - - Linoleate metabolism + - "Linoleate metabolism" - confidence_score: 0 - !!omap - - id: HMR_2451 + - id: "HMR_2451" - name: "" - metabolites: !!omap - m00533c: -1 @@ -112885,15 +112885,15 @@ - m02039c: 3 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11686005;PMID:11408659 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11686005;PMID:11408659" - subsystem: - - Linoleate metabolism + - "Linoleate metabolism" - confidence_score: 0 - !!omap - - id: HMR_2452 + - id: "HMR_2452" - name: "" - metabolites: !!omap - m00533c: -1 @@ -112902,15 +112902,15 @@ - m02039c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11686005;PMID:11408659 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11686005;PMID:11408659" - subsystem: - - Linoleate metabolism + - "Linoleate metabolism" - confidence_score: 0 - !!omap - - id: HMR_2453 + - id: "HMR_2453" - name: "" - metabolites: !!omap - m00983c: -1 @@ -112918,30 +112918,30 @@ - m02040c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11408659;PMID:11686005 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11408659;PMID:11686005" - subsystem: - - Linoleate metabolism + - "Linoleate metabolism" - confidence_score: 0 - !!omap - - id: HMR_2454 + - id: "HMR_2454" - name: "" - metabolites: !!omap - m00731c: -1 - m00988c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11686005;PMID:11408659 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11686005;PMID:11408659" - subsystem: - - Linoleate metabolism + - "Linoleate metabolism" - confidence_score: 0 - !!omap - - id: HMR_2455 + - id: "HMR_2455" - name: "" - metabolites: !!omap - m01216c: 1 @@ -112953,15 +112953,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Linoleate metabolism + - "Linoleate metabolism" - confidence_score: 0 - !!omap - - id: HMR_2456 + - id: "HMR_2456" - name: "" - metabolites: !!omap - m01216r: 1 @@ -112973,15 +112973,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Linoleate metabolism + - "Linoleate metabolism" - confidence_score: 0 - !!omap - - id: HMR_2457 + - id: "HMR_2457" - name: "" - metabolites: !!omap - m00305c: 1 @@ -112993,15 +112993,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Linoleate metabolism + - "Linoleate metabolism" - confidence_score: 0 - !!omap - - id: HMR_2458 + - id: "HMR_2458" - name: "" - metabolites: !!omap - m00305r: 1 @@ -113013,15 +113013,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Linoleate metabolism + - "Linoleate metabolism" - confidence_score: 0 - !!omap - - id: HMR_2459 + - id: "HMR_2459" - name: "" - metabolites: !!omap - m01216c: -1 @@ -113029,15 +113029,15 @@ - m02040c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120915 or ENSG00000143819 - - rxnFrom: HMRdatabase - - eccodes: 3.3.2.9;3.3.2.10 - - references: PMID:10933884 + - gene_reaction_rule: "ENSG00000120915 or ENSG00000143819" + - rxnFrom: "HMRdatabase" + - eccodes: "3.3.2.9;3.3.2.10" + - references: "PMID:10933884" - subsystem: - - Linoleate metabolism + - "Linoleate metabolism" - confidence_score: 0 - !!omap - - id: HMR_2460 + - id: "HMR_2460" - name: "" - metabolites: !!omap - m01216r: -1 @@ -113045,15 +113045,15 @@ - m02040r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120915 or ENSG00000143819 - - rxnFrom: HMRdatabase - - eccodes: 3.3.2.9;3.3.2.10 - - references: PMID:10933884 + - gene_reaction_rule: "ENSG00000120915 or ENSG00000143819" + - rxnFrom: "HMRdatabase" + - eccodes: "3.3.2.9;3.3.2.10" + - references: "PMID:10933884" - subsystem: - - Linoleate metabolism + - "Linoleate metabolism" - confidence_score: 0 - !!omap - - id: HMR_2461 + - id: "HMR_2461" - name: "" - metabolites: !!omap - m01220c: -1 @@ -113063,15 +113063,15 @@ - m03109c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.17 - - references: PMID:10933884 + - gene_reaction_rule: "ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.17" + - references: "PMID:10933884" - subsystem: - - Linoleate metabolism + - "Linoleate metabolism" - confidence_score: 0 - !!omap - - id: HMR_2462 + - id: "HMR_2462" - name: "" - metabolites: !!omap - m01220r: -1 @@ -113081,15 +113081,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.17 - - references: PMID:10933884 + - gene_reaction_rule: "ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.17" + - references: "PMID:10933884" - subsystem: - - Linoleate metabolism + - "Linoleate metabolism" - confidence_score: 0 - !!omap - - id: HMR_2463 + - id: "HMR_2463" - name: "" - metabolites: !!omap - m00274c: -1 @@ -113099,15 +113099,15 @@ - m03109c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.17 - - references: PMID:10933884 + - gene_reaction_rule: "ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.17" + - references: "PMID:10933884" - subsystem: - - Linoleate metabolism + - "Linoleate metabolism" - confidence_score: 0 - !!omap - - id: HMR_2464 + - id: "HMR_2464" - name: "" - metabolites: !!omap - m00274r: 1 @@ -113117,15 +113117,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.17 - - references: PMID:10933884 + - gene_reaction_rule: "ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.17" + - references: "PMID:10933884" - subsystem: - - Linoleate metabolism + - "Linoleate metabolism" - confidence_score: 0 - !!omap - - id: HMR_2465 + - id: "HMR_2465" - name: "" - metabolites: !!omap - m00305c: -1 @@ -113133,15 +113133,15 @@ - m02040c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120915 or ENSG00000143819 - - rxnFrom: HMRdatabase - - eccodes: 3.3.2.9;3.3.2.10 - - references: PMID:10933884 + - gene_reaction_rule: "ENSG00000120915 or ENSG00000143819" + - rxnFrom: "HMRdatabase" + - eccodes: "3.3.2.9;3.3.2.10" + - references: "PMID:10933884" - subsystem: - - Linoleate metabolism + - "Linoleate metabolism" - confidence_score: 0 - !!omap - - id: HMR_2466 + - id: "HMR_2466" - name: "" - metabolites: !!omap - m00305r: -1 @@ -113149,15 +113149,15 @@ - m02040r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120915 or ENSG00000143819 - - rxnFrom: HMRdatabase - - eccodes: 3.3.2.9;3.3.2.10 - - references: PMID:10933884 + - gene_reaction_rule: "ENSG00000120915 or ENSG00000143819" + - rxnFrom: "HMRdatabase" + - eccodes: "3.3.2.9;3.3.2.10" + - references: "PMID:10933884" - subsystem: - - Linoleate metabolism + - "Linoleate metabolism" - confidence_score: 0 - !!omap - - id: HMR_2467 + - id: "HMR_2467" - name: "" - metabolites: !!omap - m00314c: -1 @@ -113167,15 +113167,15 @@ - m03109c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.17 - - references: PMID:10933884 + - gene_reaction_rule: "ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.17" + - references: "PMID:10933884" - subsystem: - - Linoleate metabolism + - "Linoleate metabolism" - confidence_score: 0 - !!omap - - id: HMR_2468 + - id: "HMR_2468" - name: "" - metabolites: !!omap - m00314r: -1 @@ -113185,15 +113185,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.17 - - references: PMID:10933884 + - gene_reaction_rule: "ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.17" + - references: "PMID:10933884" - subsystem: - - Linoleate metabolism + - "Linoleate metabolism" - confidence_score: 0 - !!omap - - id: HMR_2469 + - id: "HMR_2469" - name: "" - metabolites: !!omap - m00314c: -1 @@ -113203,15 +113203,15 @@ - m03109c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.17 - - references: PMID:10933884 + - gene_reaction_rule: "ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.17" + - references: "PMID:10933884" - subsystem: - - Linoleate metabolism + - "Linoleate metabolism" - confidence_score: 0 - !!omap - - id: HMR_2470 + - id: "HMR_2470" - name: "" - metabolites: !!omap - m00314r: -1 @@ -113221,15 +113221,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.17 - - references: PMID:10933884 + - gene_reaction_rule: "ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.17" + - references: "PMID:10933884" - subsystem: - - Linoleate metabolism + - "Linoleate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6397 + - id: "HMR_6397" - name: "" - metabolites: !!omap - m01702c: 1 @@ -113239,15 +113239,15 @@ - m02553c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000091140 - - rxnFrom: HMRdatabase - - eccodes: 1.8.1.4 - - references: + - gene_reaction_rule: "ENSG00000091140" + - rxnFrom: "HMRdatabase" + - eccodes: "1.8.1.4" + - references: "" - subsystem: - - Lipoic acid metabolism + - "Lipoic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_6398 + - id: "HMR_6398" - name: "" - metabolites: !!omap - m01371c: -1 @@ -113257,15 +113257,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000144182 - - rxnFrom: HMRdatabase - - eccodes: 2.7.7.63 - - references: PMID:10103005 + - gene_reaction_rule: "ENSG00000144182" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.7.63" + - references: "PMID:10103005" - subsystem: - - Lipoic acid metabolism + - "Lipoic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_6399 + - id: "HMR_6399" - name: "" - metabolites: !!omap - m00209c: 1 @@ -113275,15 +113275,15 @@ - m02398c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000144182 - - rxnFrom: HMRdatabase - - eccodes: 2.7.7.63 - - references: + - gene_reaction_rule: "ENSG00000144182" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.7.63" + - references: "" - subsystem: - - Lipoic acid metabolism + - "Lipoic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_6400 + - id: "HMR_6400" - name: "" - metabolites: !!omap - m01098c: 2 @@ -113299,15 +113299,15 @@ - m02877c: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000121897 or ENSG00000175536 - - rxnFrom: HMRdatabase - - eccodes: 2.8.1.8;2.3.1.181 - - references: + - gene_reaction_rule: "ENSG00000121897 or ENSG00000175536" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.1.8;2.3.1.181" + - references: "" - subsystem: - - Lipoic acid metabolism + - "Lipoic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_6401 + - id: "HMR_6401" - name: "" - metabolites: !!omap - m00184c: 1 @@ -113316,15 +113316,15 @@ - m02397c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000175536 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.181 - - references: + - gene_reaction_rule: "ENSG00000175536" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.181" + - references: "" - subsystem: - - Lipoic acid metabolism + - "Lipoic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_6402 + - id: "HMR_6402" - name: "" - metabolites: !!omap - m00184c: 1 @@ -113333,15 +113333,15 @@ - m02643c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000175536 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.181 - - references: + - gene_reaction_rule: "ENSG00000175536" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.181" + - references: "" - subsystem: - - Lipoic acid metabolism + - "Lipoic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_6403 + - id: "HMR_6403" - name: "" - metabolites: !!omap - m00209c: 1 @@ -113357,15 +113357,15 @@ - m02877c: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000121897 - - rxnFrom: HMRdatabase - - eccodes: 2.8.1.8 - - references: + - gene_reaction_rule: "ENSG00000121897" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.1.8" + - references: "" - subsystem: - - Lipoic acid metabolism + - "Lipoic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_6404 + - id: "HMR_6404" - name: "" - metabolites: !!omap - m00208c: 1 @@ -113375,15 +113375,15 @@ - m02553c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000091140 - - rxnFrom: HMRdatabase - - eccodes: 1.8.1.4 - - references: + - gene_reaction_rule: "ENSG00000091140" + - rxnFrom: "HMRdatabase" + - eccodes: "1.8.1.4" + - references: "" - subsystem: - - Lipoic acid metabolism + - "Lipoic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2472 + - id: "HMR_2472" - name: "" - metabolites: !!omap - m00108c: 1 @@ -113395,15 +113395,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134824 or ENSG00000149485 or ENSG00000221968 - - rxnFrom: HMRdatabase - - eccodes: 1.14.19.- - - references: + - gene_reaction_rule: "ENSG00000134824 or ENSG00000149485 or ENSG00000221968" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.19.-" + - references: "" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2475 + - id: "HMR_2475" - name: "" - metabolites: !!omap - m00108c: -1 @@ -113414,15 +113414,15 @@ - m02444c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.199 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.199" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2478 + - id: "HMR_2478" - name: "" - metabolites: !!omap - m00708c: 1 @@ -113432,15 +113432,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149084 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.330 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000149084" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.330" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2480 + - id: "HMR_2480" - name: "" - metabolites: !!omap - m00708c: -1 @@ -113448,15 +113448,15 @@ - m02040c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.134 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.134" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2482 + - id: "HMR_2482" - name: "" - metabolites: !!omap - m00125c: 1 @@ -113466,15 +113466,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099797 or ENSG00000205678 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.93 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000099797 or ENSG00000205678" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.93" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2484 + - id: "HMR_2484" - name: "" - metabolites: !!omap - m00103c: 1 @@ -113486,15 +113486,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134824 or ENSG00000149485 or ENSG00000221968 - - rxnFrom: HMRdatabase - - eccodes: 1.14.19.- - - references: + - gene_reaction_rule: "ENSG00000134824 or ENSG00000149485 or ENSG00000221968" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.19.-" + - references: "" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2486 + - id: "HMR_2486" - name: "" - metabolites: !!omap - m00103c: -1 @@ -113505,15 +113505,15 @@ - m02444c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.199 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.199" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2489 + - id: "HMR_2489" - name: "" - metabolites: !!omap - m00713c: 1 @@ -113523,15 +113523,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149084 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.330 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000149084" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.330" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2491 + - id: "HMR_2491" - name: "" - metabolites: !!omap - m00679c: 1 @@ -113539,15 +113539,15 @@ - m02040c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.134 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.134" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2493 + - id: "HMR_2493" - name: "" - metabolites: !!omap - m00121c: 1 @@ -113557,15 +113557,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099797 or ENSG00000205678 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.93 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000099797 or ENSG00000205678" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.93" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2495 + - id: "HMR_2495" - name: "" - metabolites: !!omap - m00095c: 1 @@ -113577,15 +113577,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2497 + - id: "HMR_2497" - name: "" - metabolites: !!omap - m00121c: -1 @@ -113596,15 +113596,15 @@ - m02444c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.199 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.199" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2499 + - id: "HMR_2499" - name: "" - metabolites: !!omap - m00718c: 1 @@ -113614,15 +113614,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149084 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.330 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000149084" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.330" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2501 + - id: "HMR_2501" - name: "" - metabolites: !!omap - m00680c: 1 @@ -113630,15 +113630,15 @@ - m02040c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.134 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.134" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2503 + - id: "HMR_2503" - name: "" - metabolites: !!omap - m00134c: 1 @@ -113648,15 +113648,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099797 or ENSG00000205678 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.93 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000099797 or ENSG00000205678" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.93" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2505 + - id: "HMR_2505" - name: "" - metabolites: !!omap - m00113c: 1 @@ -113668,15 +113668,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134824 or ENSG00000149485 or ENSG00000221968 - - rxnFrom: HMRdatabase - - eccodes: 1.14.19.3 - - references: + - gene_reaction_rule: "ENSG00000134824 or ENSG00000149485 or ENSG00000221968" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.19.3" + - references: "" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2510 + - id: "HMR_2510" - name: "" - metabolites: !!omap - m00113p: -1 @@ -113685,15 +113685,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: PMID:11734209;PMID:11734209 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "PMID:11734209;PMID:11734209" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2511 + - id: "HMR_2511" - name: "" - metabolites: !!omap - m00801p: 1 @@ -113701,15 +113701,15 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:11734209;PMID:11734209 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:11734209;PMID:11734209" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2512 + - id: "HMR_2512" - name: "" - metabolites: !!omap - m00801p: -1 @@ -113719,15 +113719,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:11734209;PMID:11734209 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:11734209;PMID:11734209" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2513 + - id: "HMR_2513" - name: "" - metabolites: !!omap - m00095p: 1 @@ -113736,30 +113736,30 @@ - m01597p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000167306 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16 - - references: PMID:11734209;PMID:11734209 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000167306" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16" + - references: "PMID:11734209;PMID:11734209" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2514 + - id: "HMR_2514" - name: "" - metabolites: !!omap - m00095c: -1 - m00095p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_2515 + - id: "HMR_2515" - name: "" - metabolites: !!omap - m00125c: -1 @@ -113770,15 +113770,15 @@ - m02444c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.199 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.199" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2516 + - id: "HMR_2516" - name: "" - metabolites: !!omap - m00711c: 1 @@ -113788,15 +113788,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149084 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.330 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000149084" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.330" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2518 + - id: "HMR_2518" - name: "" - metabolites: !!omap - m00711c: -1 @@ -113804,15 +113804,15 @@ - m03002c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.134 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.134" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2520 + - id: "HMR_2520" - name: "" - metabolites: !!omap - m00262c: 1 @@ -113822,15 +113822,15 @@ - m03002c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099797 or ENSG00000205678 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.93 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000099797 or ENSG00000205678" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.93" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2522 + - id: "HMR_2522" - name: "" - metabolites: !!omap - m00262c: -1 @@ -113841,15 +113841,15 @@ - m02444c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.199 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.199" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2524 + - id: "HMR_2524" - name: "" - metabolites: !!omap - m00716c: 1 @@ -113859,15 +113859,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149084 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.330 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000149084" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.330" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2526 + - id: "HMR_2526" - name: "" - metabolites: !!omap - m00716c: -1 @@ -113875,15 +113875,15 @@ - m03003c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.134 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.134" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2528 + - id: "HMR_2528" - name: "" - metabolites: !!omap - m00317c: 1 @@ -113893,15 +113893,15 @@ - m03003c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099797 or ENSG00000205678 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.93 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000099797 or ENSG00000205678" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.93" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2530 + - id: "HMR_2530" - name: "" - metabolites: !!omap - m00869c: 1 @@ -113912,15 +113912,15 @@ - m02444c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.199 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.199" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2533 + - id: "HMR_2533" - name: "" - metabolites: !!omap - m00086c: 1 @@ -113930,15 +113930,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149084 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.330 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000149084" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.330" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2535 + - id: "HMR_2535" - name: "" - metabolites: !!omap - m00086c: -1 @@ -113946,15 +113946,15 @@ - m03005c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.134 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.134" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2537 + - id: "HMR_2537" - name: "" - metabolites: !!omap - m00012c: 1 @@ -113964,15 +113964,15 @@ - m03005c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099797 or ENSG00000205678 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.93 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000099797 or ENSG00000205678" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.93" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2540 + - id: "HMR_2540" - name: "" - metabolites: !!omap - m00012c: -1 @@ -113983,15 +113983,15 @@ - m02444c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.199 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.199" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2541 + - id: "HMR_2541" - name: "" - metabolites: !!omap - m00712c: 1 @@ -114001,15 +114001,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149084 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.330 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000149084" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.330" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2542 + - id: "HMR_2542" - name: "" - metabolites: !!omap - m00712c: -1 @@ -114017,15 +114017,15 @@ - m03006c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.134 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.134" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2543 + - id: "HMR_2543" - name: "" - metabolites: !!omap - m00343c: 1 @@ -114035,15 +114035,15 @@ - m03006c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099797 or ENSG00000205678 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.93 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000099797 or ENSG00000205678" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.93" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2544 + - id: "HMR_2544" - name: "" - metabolites: !!omap - m01041c: 1 @@ -114051,15 +114051,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012779 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.34 - - references: PMID:10617998 + - gene_reaction_rule: "ENSG00000012779" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.34" + - references: "PMID:10617998" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2545 + - id: "HMR_2545" - name: "" - metabolites: !!omap - m01039c: -1 @@ -114068,15 +114068,15 @@ - m02040c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:6330066 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:6330066" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2546 + - id: "HMR_2546" - name: "" - metabolites: !!omap - m01039c: -1 @@ -114086,15 +114086,15 @@ - m02555c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157326 or ENSG00000159228 or ENSG00000159231 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.184 - - references: PMID:8847485 + - gene_reaction_rule: "ENSG00000157326 or ENSG00000159228 or ENSG00000159231" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.184" + - references: "PMID:8847485" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2548 + - id: "HMR_2548" - name: "" - metabolites: !!omap - m01039p: -1 @@ -114104,15 +114104,15 @@ - m02555p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157326 or ENSG00000159228 or ENSG00000159231 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.184 - - references: PMID:8847485 + - gene_reaction_rule: "ENSG00000157326 or ENSG00000159228 or ENSG00000159231" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.184" + - references: "PMID:8847485" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2549 + - id: "HMR_2549" - name: "" - metabolites: !!omap - m01041c: -1 @@ -114120,15 +114120,15 @@ - m02363c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:8847485 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:8847485" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2550 + - id: "HMR_2550" - name: "" - metabolites: !!omap - m01049c: 1 @@ -114136,15 +114136,15 @@ - m02363c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:8847485 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:8847485" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2551 + - id: "HMR_2551" - name: "" - metabolites: !!omap - m02040c: -1 @@ -114152,15 +114152,15 @@ - m02365c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111144 - - rxnFrom: HMRdatabase - - eccodes: 3.3.2.6 - - references: PMID:6330066;PMID:6096400 + - gene_reaction_rule: "ENSG00000111144" + - rxnFrom: "HMRdatabase" + - eccodes: "3.3.2.6" + - references: "PMID:6330066;PMID:6096400" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2552 + - id: "HMR_2552" - name: "" - metabolites: !!omap - m02026c: -1 @@ -114168,15 +114168,15 @@ - m02367c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000213316 - - rxnFrom: HMRdatabase - - eccodes: 4.4.1.20 - - references: PMID:6096400;PMID:6330066 + - gene_reaction_rule: "ENSG00000213316" + - rxnFrom: "HMRdatabase" + - eccodes: "4.4.1.20" + - references: "PMID:6096400;PMID:6330066" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2553 + - id: "HMR_2553" - name: "" - metabolites: !!omap - m00595c: 1 @@ -114188,15 +114188,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.30 - - references: PMID:8847485 + - gene_reaction_rule: "ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.30" + - references: "PMID:8847485" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2555 + - id: "HMR_2555" - name: "" - metabolites: !!omap - m00595r: 1 @@ -114208,15 +114208,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.30 - - references: PMID:8847485 + - gene_reaction_rule: "ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.30" + - references: "PMID:8847485" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2556 + - id: "HMR_2556" - name: "" - metabolites: !!omap - m01974c: 1 @@ -114225,15 +114225,15 @@ - m02368c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099998 or ENSG00000100031 or ENSG00000100121 or ENSG00000131067 or ENSG00000133475 or ENSG00000167741 or ENSG00000274252 - - rxnFrom: HMRdatabase - - eccodes: 2.3.2.2 - - references: PMID:6096400;PMID:6330066 + - gene_reaction_rule: "ENSG00000099998 or ENSG00000100031 or ENSG00000100121 or ENSG00000131067 or ENSG00000133475 or ENSG00000167741 or ENSG00000274252" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.2.2" + - references: "PMID:6096400;PMID:6330066" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2557 + - id: "HMR_2557" - name: "" - metabolites: !!omap - m00375c: 1 @@ -114241,30 +114241,30 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073756 or ENSG00000095303 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.1 - - references: PMID:11034610 + - gene_reaction_rule: "ENSG00000073756 or ENSG00000095303" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.1" + - references: "PMID:11034610" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2558 + - id: "HMR_2558" - name: "" - metabolites: !!omap - m00375c: -1 - m00379c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2559 + - id: "HMR_2559" - name: "" - metabolites: !!omap - m00376c: -1 @@ -114273,15 +114273,15 @@ - m02040c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11034610 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11034610" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2560 + - id: "HMR_2560" - name: "" - metabolites: !!omap - m00373c: -1 @@ -114290,15 +114290,15 @@ - m02040c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2561 + - id: "HMR_2561" - name: "" - metabolites: !!omap - m00373c: -1 @@ -114307,15 +114307,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012779 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.34 - - references: + - gene_reaction_rule: "ENSG00000012779" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.34" + - references: "" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2562 + - id: "HMR_2562" - name: "" - metabolites: !!omap - m00389c: 1 @@ -114323,15 +114323,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120915 or ENSG00000143819 - - rxnFrom: HMRdatabase - - eccodes: 3.3.2.9;3.3.2.10 - - references: PMID:11034610 + - gene_reaction_rule: "ENSG00000120915 or ENSG00000143819" + - rxnFrom: "HMRdatabase" + - eccodes: "3.3.2.9;3.3.2.10" + - references: "PMID:11034610" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2563 + - id: "HMR_2563" - name: "" - metabolites: !!omap - m00387c: 1 @@ -114339,15 +114339,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120915 or ENSG00000143819 - - rxnFrom: HMRdatabase - - eccodes: 3.3.2.9;3.3.2.10 - - references: PMID:11034610 + - gene_reaction_rule: "ENSG00000120915 or ENSG00000143819" + - rxnFrom: "HMRdatabase" + - eccodes: "3.3.2.9;3.3.2.10" + - references: "PMID:11034610" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2565 + - id: "HMR_2565" - name: "" - metabolites: !!omap - m01041n: 1 @@ -114355,15 +114355,15 @@ - m02630n: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012779 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.34 - - references: PMID:10617998 + - gene_reaction_rule: "ENSG00000012779" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.34" + - references: "PMID:10617998" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2566 + - id: "HMR_2566" - name: "" - metabolites: !!omap - m00375n: 1 @@ -114371,15 +114371,15 @@ - m02630n: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073756 or ENSG00000095303 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.1 - - references: PMID:11034610 + - gene_reaction_rule: "ENSG00000073756 or ENSG00000095303" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.1" + - references: "PMID:11034610" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2567 + - id: "HMR_2567" - name: "" - metabolites: !!omap - m00373n: -1 @@ -114388,15 +114388,15 @@ - m02040n: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2568 + - id: "HMR_2568" - name: "" - metabolites: !!omap - m00373n: -1 @@ -114405,15 +114405,15 @@ - m02630n: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012779 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.34 - - references: PMID:11034610 + - gene_reaction_rule: "ENSG00000012779" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.34" + - references: "PMID:11034610" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2570 + - id: "HMR_2570" - name: "" - metabolites: !!omap - m00375r: 1 @@ -114421,15 +114421,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073756 or ENSG00000095303 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.1 - - references: PMID:11034610 + - gene_reaction_rule: "ENSG00000073756 or ENSG00000095303" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.1" + - references: "PMID:11034610" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2571 + - id: "HMR_2571" - name: "" - metabolites: !!omap - m00373r: -1 @@ -114438,15 +114438,15 @@ - m02040r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2572 + - id: "HMR_2572" - name: "" - metabolites: !!omap - m00373r: -1 @@ -114455,15 +114455,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012779 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.34 - - references: PMID:11034610 + - gene_reaction_rule: "ENSG00000012779" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.34" + - references: "PMID:11034610" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2573 + - id: "HMR_2573" - name: "" - metabolites: !!omap - m00387r: 1 @@ -114471,15 +114471,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120915 or ENSG00000143819 - - rxnFrom: HMRdatabase - - eccodes: 3.3.2.9;3.3.2.10 - - references: PMID:11034610 + - gene_reaction_rule: "ENSG00000120915 or ENSG00000143819" + - rxnFrom: "HMRdatabase" + - eccodes: "3.3.2.9;3.3.2.10" + - references: "PMID:11034610" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2574 + - id: "HMR_2574" - name: "" - metabolites: !!omap - m00389r: 1 @@ -114487,15 +114487,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120915 or ENSG00000143819 - - rxnFrom: HMRdatabase - - eccodes: 3.3.2.9;3.3.2.10 - - references: PMID:11034610 + - gene_reaction_rule: "ENSG00000120915 or ENSG00000143819" + - rxnFrom: "HMRdatabase" + - eccodes: "3.3.2.9;3.3.2.10" + - references: "PMID:11034610" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2576 + - id: "HMR_2576" - name: "" - metabolites: !!omap - m00375p: 1 @@ -114503,15 +114503,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073756 or ENSG00000095303 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.1 - - references: PMID:11034610 + - gene_reaction_rule: "ENSG00000073756 or ENSG00000095303" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.1" + - references: "PMID:11034610" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2577 + - id: "HMR_2577" - name: "" - metabolites: !!omap - m00373p: -1 @@ -114520,15 +114520,15 @@ - m02040p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2578 + - id: "HMR_2578" - name: "" - metabolites: !!omap - m00373p: -1 @@ -114537,15 +114537,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012779 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.34 - - references: + - gene_reaction_rule: "ENSG00000012779" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.34" + - references: "" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2579 + - id: "HMR_2579" - name: "" - metabolites: !!omap - m00387p: 1 @@ -114553,15 +114553,15 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120915 or ENSG00000143819 - - rxnFrom: HMRdatabase - - eccodes: 3.3.2.9;3.3.2.10 - - references: PMID:11034610 + - gene_reaction_rule: "ENSG00000120915 or ENSG00000143819" + - rxnFrom: "HMRdatabase" + - eccodes: "3.3.2.9;3.3.2.10" + - references: "PMID:11034610" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2580 + - id: "HMR_2580" - name: "" - metabolites: !!omap - m00389p: 1 @@ -114569,15 +114569,15 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120915 or ENSG00000143819 - - rxnFrom: HMRdatabase - - eccodes: 3.3.2.9;3.3.2.10 - - references: PMID:11034610 + - gene_reaction_rule: "ENSG00000120915 or ENSG00000143819" + - rxnFrom: "HMRdatabase" + - eccodes: "3.3.2.9;3.3.2.10" + - references: "PMID:11034610" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2581 + - id: "HMR_2581" - name: "" - metabolites: !!omap - m01784c: -1 @@ -114589,15 +114589,15 @@ - m02716c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073756 or ENSG00000095303 or ENSG00000105254 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.1 - - references: + - gene_reaction_rule: "ENSG00000073756 or ENSG00000095303 or ENSG00000105254" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.1" + - references: "" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2582 + - id: "HMR_2582" - name: "" - metabolites: !!omap - m01784n: -1 @@ -114609,45 +114609,45 @@ - m02716n: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073756 or ENSG00000095303 or ENSG00000105254 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.1 - - references: + - gene_reaction_rule: "ENSG00000073756 or ENSG00000095303 or ENSG00000105254" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.1" + - references: "" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2583 + - id: "HMR_2583" - name: "" - metabolites: !!omap - m02716c: -1 - m02787c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110958 or ENSG00000148334 or ENSG00000148344 - - rxnFrom: HMRdatabase - - eccodes: 5.3.99.3 - - references: PMID:12234478 + - gene_reaction_rule: "ENSG00000110958 or ENSG00000148334 or ENSG00000148344" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.99.3" + - references: "PMID:12234478" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2584 + - id: "HMR_2584" - name: "" - metabolites: !!omap - m02716n: -1 - m02787n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110958 or ENSG00000148334 or ENSG00000148344 - - rxnFrom: HMRdatabase - - eccodes: 5.3.99.3 - - references: PMID:12234478 + - gene_reaction_rule: "ENSG00000110958 or ENSG00000148334 or ENSG00000148344" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.99.3" + - references: "PMID:12234478" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2586 + - id: "HMR_2586" - name: "" - metabolites: !!omap - m00028c: -1 @@ -114656,15 +114656,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012779 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.34 - - references: + - gene_reaction_rule: "ENSG00000012779" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.34" + - references: "" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2587 + - id: "HMR_2587" - name: "" - metabolites: !!omap - m01046c: -1 @@ -114672,15 +114672,15 @@ - m02040c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11034610 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11034610" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2588 + - id: "HMR_2588" - name: "" - metabolites: !!omap - m00029c: -1 @@ -114689,15 +114689,15 @@ - m02630c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012779 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.34 - - references: PMID:11034610 + - gene_reaction_rule: "ENSG00000012779" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.34" + - references: "PMID:11034610" - subsystem: - - Omega-3 fatty acid metabolism + - "Omega-3 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2368 + - id: "HMR_2368" - name: "" - metabolites: !!omap - m01934c: 1 @@ -114709,15 +114709,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134824 or ENSG00000149485 or ENSG00000221968 - - rxnFrom: HMRdatabase - - eccodes: 1.14.19.3 - - references: + - gene_reaction_rule: "ENSG00000134824 or ENSG00000149485 or ENSG00000221968" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.19.3" + - references: "" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2371 + - id: "HMR_2371" - name: "" - metabolites: !!omap - m00859c: 1 @@ -114728,15 +114728,15 @@ - m02444c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.199 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.199" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2374 + - id: "HMR_2374" - name: "" - metabolites: !!omap - m00710c: 1 @@ -114746,15 +114746,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2376 + - id: "HMR_2376" - name: "" - metabolites: !!omap - m00710c: -1 @@ -114762,15 +114762,15 @@ - m03029c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2378 + - id: "HMR_2378" - name: "" - metabolites: !!omap - m01697c: 1 @@ -114780,15 +114780,15 @@ - m03029c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099797 or ENSG00000205678 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.93 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000099797 or ENSG00000205678" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.93" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2380 + - id: "HMR_2380" - name: "" - metabolites: !!omap - m01364c: 1 @@ -114800,15 +114800,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134824 or ENSG00000149485 or ENSG00000221968 - - rxnFrom: HMRdatabase - - eccodes: 1.14.19.- - - references: + - gene_reaction_rule: "ENSG00000134824 or ENSG00000149485 or ENSG00000221968" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.19.-" + - references: "" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2383 + - id: "HMR_2383" - name: "" - metabolites: !!omap - m00864c: 1 @@ -114819,15 +114819,15 @@ - m02444c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.199 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.199" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2387 + - id: "HMR_2387" - name: "" - metabolites: !!omap - m00714c: 1 @@ -114837,15 +114837,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149084 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.330 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000149084" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.330" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2389 + - id: "HMR_2389" - name: "" - metabolites: !!omap - m00074c: 1 @@ -114853,15 +114853,15 @@ - m02040c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.134 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.134" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2391 + - id: "HMR_2391" - name: "" - metabolites: !!omap - m00074c: -1 @@ -114871,15 +114871,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2393 + - id: "HMR_2393" - name: "" - metabolites: !!omap - m00093c: 1 @@ -114891,15 +114891,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2395 + - id: "HMR_2395" - name: "" - metabolites: !!omap - m00119c: -1 @@ -114910,15 +114910,15 @@ - m02444c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.199 - - references: + - gene_reaction_rule: "ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.199" + - references: "" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2397 + - id: "HMR_2397" - name: "" - metabolites: !!omap - m00716c: 1 @@ -114928,15 +114928,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149084 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.330 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000149084" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.330" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2399 + - id: "HMR_2399" - name: "" - metabolites: !!omap - m00681c: 1 @@ -114944,15 +114944,15 @@ - m02040c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.134 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.134" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2401 + - id: "HMR_2401" - name: "" - metabolites: !!omap - m00131c: 1 @@ -114962,15 +114962,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099797 or ENSG00000205678 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.93 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000099797 or ENSG00000205678" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.93" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2403 + - id: "HMR_2403" - name: "" - metabolites: !!omap - m00110c: 1 @@ -114982,15 +114982,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2408 + - id: "HMR_2408" - name: "" - metabolites: !!omap - m00110p: -1 @@ -114999,15 +114999,15 @@ - m03028p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: PMID:11734209;PMID:11734209 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "PMID:11734209;PMID:11734209" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2409 + - id: "HMR_2409" - name: "" - metabolites: !!omap - m00717p: 1 @@ -115015,15 +115015,15 @@ - m03028p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:11734209;PMID:11734209 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:11734209;PMID:11734209" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2410 + - id: "HMR_2410" - name: "" - metabolites: !!omap - m00717p: -1 @@ -115033,15 +115033,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:11734209;PMID:11734209 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:11734209;PMID:11734209" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2411 + - id: "HMR_2411" - name: "" - metabolites: !!omap - m00093p: 1 @@ -115050,30 +115050,30 @@ - m01597p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000167306 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16 - - references: PMID:11734209;PMID:11734209 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000167306" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16" + - references: "PMID:11734209;PMID:11734209" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2412 + - id: "HMR_2412" - name: "" - metabolites: !!omap - m00093c: -1 - m00093p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_2415 + - id: "HMR_2415" - name: "" - metabolites: !!omap - m00865c: 1 @@ -115084,15 +115084,15 @@ - m02444c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.199 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.199" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2417 + - id: "HMR_2417" - name: "" - metabolites: !!omap - m00698c: 1 @@ -115102,15 +115102,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149084 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.330 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000149084" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.330" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2419 + - id: "HMR_2419" - name: "" - metabolites: !!omap - m00698c: -1 @@ -115118,15 +115118,15 @@ - m03004c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.134 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.134" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2421 + - id: "HMR_2421" - name: "" - metabolites: !!omap - m00264c: 1 @@ -115136,15 +115136,15 @@ - m03004c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099797 or ENSG00000205678 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.93 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000099797 or ENSG00000205678" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.93" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2423 + - id: "HMR_2423" - name: "" - metabolites: !!omap - m00870c: 1 @@ -115155,15 +115155,15 @@ - m02444c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.199 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.199" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2426 + - id: "HMR_2426" - name: "" - metabolites: !!omap - m00087c: 1 @@ -115173,15 +115173,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149084 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.330 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000149084" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.330" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2428 + - id: "HMR_2428" - name: "" - metabolites: !!omap - m00087c: -1 @@ -115189,15 +115189,15 @@ - m03007c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.134 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.134" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2430 + - id: "HMR_2430" - name: "" - metabolites: !!omap - m00009c: 1 @@ -115207,15 +115207,15 @@ - m03007c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099797 or ENSG00000205678 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.93 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000099797 or ENSG00000205678" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.93" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2433 + - id: "HMR_2433" - name: "" - metabolites: !!omap - m00009c: -1 @@ -115226,15 +115226,15 @@ - m02444c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.199 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000066322 or ENSG00000118402 or ENSG00000119915 or ENSG00000164181 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.199" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2434 + - id: "HMR_2434" - name: "" - metabolites: !!omap - m00085c: 1 @@ -115244,15 +115244,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149084 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.330 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000149084" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.330" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2435 + - id: "HMR_2435" - name: "" - metabolites: !!omap - m00085c: -1 @@ -115260,15 +115260,15 @@ - m03008c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.134 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000074696 or ENSG00000146066 or ENSG00000165996 or ENSG00000188921 or ENSG00000206527" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.134" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2436 + - id: "HMR_2436" - name: "" - metabolites: !!omap - m00023c: 1 @@ -115278,15 +115278,15 @@ - m03008c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099797 or ENSG00000205678 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.93 - - references: PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000099797 or ENSG00000205678" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.93" + - references: "PMID:10970790;PMID:10970790" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_3444 + - id: "HMR_3444" - name: "" - metabolites: !!omap - m00682m: 1 @@ -115295,30 +115295,30 @@ - m01803m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.- - - references: PMID:10407780;PMID:7775433 + - gene_reaction_rule: "ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.-" + - references: "PMID:10407780;PMID:7775433" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_3445 + - id: "HMR_3445" - name: "" - metabolites: !!omap - m00682m: -1 - m03033m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167969 or ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 5.3.3.8 - - references: PMID:7775433;PMID:10407780;PMID:7775433;PMID:10407780 + - gene_reaction_rule: "ENSG00000167969 or ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.3.8" + - references: "PMID:7775433;PMID:10407780;PMID:7775433;PMID:10407780" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_3446 + - id: "HMR_3446" - name: "" - metabolites: !!omap - m00682m: -1 @@ -115328,30 +115328,30 @@ - m03034m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104325 or ENSG00000242612 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.34 - - references: PMID:10407780;PMID:7775433 + - gene_reaction_rule: "ENSG00000104325 or ENSG00000242612" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.34" + - references: "PMID:10407780;PMID:7775433" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_3447 + - id: "HMR_3447" - name: "" - metabolites: !!omap - m03029m: 1 - m03034m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104823 or ENSG00000167969 or ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 5.3.3.8;5.3.3.- - - references: PMID:10407780;PMID:7775433 + - gene_reaction_rule: "ENSG00000104823 or ENSG00000167969 or ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.3.8;5.3.3.-" + - references: "PMID:10407780;PMID:7775433" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_3448 + - id: "HMR_3448" - name: "" - metabolites: !!omap - m01697m: -1 @@ -115360,15 +115360,15 @@ - m03029m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.- - - references: + - gene_reaction_rule: "ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.-" + - references: "" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_3449 + - id: "HMR_3449" - name: "" - metabolites: !!omap - m00710m: 1 @@ -115376,15 +115376,15 @@ - m03029m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:7775433;PMID:10407780;PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:7775433;PMID:10407780;PMID:10970790;PMID:10970790" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_3450 + - id: "HMR_3450" - name: "" - metabolites: !!omap - m00710m: -1 @@ -115394,15 +115394,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:7775433;PMID:10407780;PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:7775433;PMID:10407780;PMID:10970790;PMID:10970790" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_3451 + - id: "HMR_3451" - name: "" - metabolites: !!omap - m00859m: -1 @@ -115411,15 +115411,15 @@ - m01934m: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: PMID:10407780;PMID:7775433 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "PMID:10407780;PMID:7775433" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_3452 + - id: "HMR_3452" - name: "" - metabolites: !!omap - m00073m: 1 @@ -115428,15 +115428,15 @@ - m01934m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.- - - references: PMID:10407780;PMID:7775433 + - gene_reaction_rule: "ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.-" + - references: "PMID:10407780;PMID:7775433" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_3453 + - id: "HMR_3453" - name: "" - metabolites: !!omap - m00073m: -1 @@ -115444,15 +115444,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:10407780;PMID:7775433 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:10407780;PMID:7775433" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_3454 + - id: "HMR_3454" - name: "" - metabolites: !!omap - m00697m: -1 @@ -115462,15 +115462,15 @@ - m02553m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:10407780;PMID:7775433 + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:10407780;PMID:7775433" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_3455 + - id: "HMR_3455" - name: "" - metabolites: !!omap - m00091m: -1 @@ -115479,15 +115479,15 @@ - m01597m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: PMID:10407780;PMID:7775433 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "PMID:10407780;PMID:7775433" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_3456 + - id: "HMR_3456" - name: "" - metabolites: !!omap - m00072m: 1 @@ -115496,15 +115496,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.- - - references: PMID:10407780;PMID:7775433 + - gene_reaction_rule: "ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.-" + - references: "PMID:10407780;PMID:7775433" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_3457 + - id: "HMR_3457" - name: "" - metabolites: !!omap - m00072m: -1 @@ -115514,30 +115514,30 @@ - m02555m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104325 or ENSG00000242612 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.34 - - references: PMID:10407780;PMID:7775433 + - gene_reaction_rule: "ENSG00000104325 or ENSG00000242612" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.34" + - references: "PMID:10407780;PMID:7775433" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_3458 + - id: "HMR_3458" - name: "" - metabolites: !!omap - m00089m: -1 - m03009m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167969 or ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 5.3.3.8 - - references: PMID:10407780;PMID:7775433 + - gene_reaction_rule: "ENSG00000167969 or ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.3.8" + - references: "PMID:10407780;PMID:7775433" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_3459 + - id: "HMR_3459" - name: "" - metabolites: !!omap - m00682p: 1 @@ -115546,30 +115546,30 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: PMID:10407780;PMID:7775433 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "PMID:10407780;PMID:7775433" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_3460 + - id: "HMR_3460" - name: "" - metabolites: !!omap - m00682p: -1 - m03033p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 5.3.3.8 - - references: PMID:7775433;PMID:10407780;PMID:7775433;PMID:10407780 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.3.8" + - references: "PMID:7775433;PMID:10407780;PMID:7775433;PMID:10407780" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_3461 + - id: "HMR_3461" - name: "" - metabolites: !!omap - m00682p: -1 @@ -115579,30 +115579,30 @@ - m03034p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104325 or ENSG00000242612 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.34 - - references: PMID:10407780;PMID:7775433 + - gene_reaction_rule: "ENSG00000104325 or ENSG00000242612" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.34" + - references: "PMID:10407780;PMID:7775433" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_3462 + - id: "HMR_3462" - name: "" - metabolites: !!omap - m03029p: 1 - m03034p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 5.3.3.8 - - references: PMID:10407780;PMID:7775433 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.3.8" + - references: "PMID:10407780;PMID:7775433" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_3463 + - id: "HMR_3463" - name: "" - metabolites: !!omap - m00710p: 1 @@ -115610,15 +115610,15 @@ - m03029p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:7775433;PMID:10407780;PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:7775433;PMID:10407780;PMID:10970790;PMID:10970790" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_3464 + - id: "HMR_3464" - name: "" - metabolites: !!omap - m00710p: -1 @@ -115628,15 +115628,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:7775433;PMID:10407780;PMID:10970790;PMID:10970790 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:7775433;PMID:10407780;PMID:10970790;PMID:10970790" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_3465 + - id: "HMR_3465" - name: "" - metabolites: !!omap - m00859p: -1 @@ -115645,15 +115645,15 @@ - m01934p: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000060971 and ENSG00000167306 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16 - - references: PMID:10407780;PMID:7775433 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000167306" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16" + - references: "PMID:10407780;PMID:7775433" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_3466 + - id: "HMR_3466" - name: "" - metabolites: !!omap - m00073p: 1 @@ -115662,15 +115662,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: PMID:10407780;PMID:7775433 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "PMID:10407780;PMID:7775433" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_3467 + - id: "HMR_3467" - name: "" - metabolites: !!omap - m00073p: -1 @@ -115678,15 +115678,15 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:10407780;PMID:7775433 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:10407780;PMID:7775433" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_3468 + - id: "HMR_3468" - name: "" - metabolites: !!omap - m00697p: -1 @@ -115696,15 +115696,15 @@ - m02553p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:10407780;PMID:7775433 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:10407780;PMID:7775433" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_3469 + - id: "HMR_3469" - name: "" - metabolites: !!omap - m00091p: -1 @@ -115713,15 +115713,15 @@ - m01597p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000167306 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16 - - references: PMID:10407780;PMID:7775433 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000167306" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16" + - references: "PMID:10407780;PMID:7775433" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_3470 + - id: "HMR_3470" - name: "" - metabolites: !!omap - m00072p: 1 @@ -115730,15 +115730,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: PMID:10407780;PMID:7775433 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "PMID:10407780;PMID:7775433" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_3471 + - id: "HMR_3471" - name: "" - metabolites: !!omap - m00072p: -1 @@ -115748,30 +115748,30 @@ - m02555p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104325 or ENSG00000242612 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.34 - - references: PMID:10407780;PMID:7775433 + - gene_reaction_rule: "ENSG00000104325 or ENSG00000242612" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.34" + - references: "PMID:10407780;PMID:7775433" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_3472 + - id: "HMR_3472" - name: "" - metabolites: !!omap - m00089p: -1 - m03009p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 5.3.3.8 - - references: PMID:10407780;PMID:7775433 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.3.8" + - references: "PMID:10407780;PMID:7775433" - subsystem: - - Omega-6 fatty acid metabolism + - "Omega-6 fatty acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0931 + - id: "HMR_0931" - name: "" - metabolites: !!omap - m01190c: 1 @@ -115783,15 +115783,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0932 + - id: "HMR_0932" - name: "" - metabolites: !!omap - m01213c: 1 @@ -115803,15 +115803,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0933 + - id: "HMR_0933" - name: "" - metabolites: !!omap - m01239c: 1 @@ -115823,15 +115823,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0934 + - id: "HMR_0934" - name: "" - metabolites: !!omap - m00270c: 1 @@ -115843,15 +115843,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0935 + - id: "HMR_0935" - name: "" - metabolites: !!omap - m00297c: 1 @@ -115863,15 +115863,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0936 + - id: "HMR_0936" - name: "" - metabolites: !!omap - m00354c: 1 @@ -115883,15 +115883,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0937 + - id: "HMR_0937" - name: "" - metabolites: !!omap - m00396c: 1 @@ -115903,15 +115903,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0938 + - id: "HMR_0938" - name: "" - metabolites: !!omap - m00414c: 1 @@ -115923,15 +115923,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0939 + - id: "HMR_0939" - name: "" - metabolites: !!omap - m00426c: 1 @@ -115943,15 +115943,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0940 + - id: "HMR_0940" - name: "" - metabolites: !!omap - m00430c: 1 @@ -115963,15 +115963,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0941 + - id: "HMR_0941" - name: "" - metabolites: !!omap - m00591c: 1 @@ -115983,15 +115983,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162365 or ENSG00000187048 - - rxnFrom: HMRdatabase - - eccodes: 1.14.15.3 - - references: + - gene_reaction_rule: "ENSG00000162365 or ENSG00000187048" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.15.3" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0942 + - id: "HMR_0942" - name: "" - metabolites: !!omap - m01054c: 1 @@ -116003,15 +116003,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0943 + - id: "HMR_0943" - name: "" - metabolites: !!omap - m01054c: 1 @@ -116022,15 +116022,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: PMID:8651708 + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "PMID:8651708" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0944 + - id: "HMR_0944" - name: "" - metabolites: !!omap - m01054r: 1 @@ -116041,15 +116041,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: PMID:8651708 + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "PMID:8651708" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0945 + - id: "HMR_0945" - name: "" - metabolites: !!omap - m01051c: 1 @@ -116057,15 +116057,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120915 or ENSG00000143819 - - rxnFrom: HMRdatabase - - eccodes: 3.3.2.9;3.3.2.10 - - references: + - gene_reaction_rule: "ENSG00000120915 or ENSG00000143819" + - rxnFrom: "HMRdatabase" + - eccodes: "3.3.2.9;3.3.2.10" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0946 + - id: "HMR_0946" - name: "" - metabolites: !!omap - m01209c: 1 @@ -116077,15 +116077,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0947 + - id: "HMR_0947" - name: "" - metabolites: !!omap - m01209c: 1 @@ -116096,15 +116096,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: PMID:8651708 + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "PMID:8651708" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0948 + - id: "HMR_0948" - name: "" - metabolites: !!omap - m01209r: 1 @@ -116115,15 +116115,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: PMID:8651708 + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "PMID:8651708" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0949 + - id: "HMR_0949" - name: "" - metabolites: !!omap - m01208c: 1 @@ -116131,15 +116131,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120915 or ENSG00000143819 - - rxnFrom: HMRdatabase - - eccodes: 3.3.2.9;3.3.2.10 - - references: + - gene_reaction_rule: "ENSG00000120915 or ENSG00000143819" + - rxnFrom: "HMRdatabase" + - eccodes: "3.3.2.9;3.3.2.10" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0950 + - id: "HMR_0950" - name: "" - metabolites: !!omap - m00279c: 1 @@ -116151,15 +116151,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0951 + - id: "HMR_0951" - name: "" - metabolites: !!omap - m00279c: 1 @@ -116170,15 +116170,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: PMID:8651708 + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "PMID:8651708" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0953 + - id: "HMR_0953" - name: "" - metabolites: !!omap - m00277c: 1 @@ -116186,15 +116186,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120915 or ENSG00000143819 - - rxnFrom: HMRdatabase - - eccodes: 3.3.2.9;3.3.2.10 - - references: + - gene_reaction_rule: "ENSG00000120915 or ENSG00000143819" + - rxnFrom: "HMRdatabase" + - eccodes: "3.3.2.9;3.3.2.10" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0954 + - id: "HMR_0954" - name: "" - metabolites: !!omap - m00366c: 1 @@ -116206,15 +116206,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0955 + - id: "HMR_0955" - name: "" - metabolites: !!omap - m00366c: 1 @@ -116225,15 +116225,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: PMID:8651708 + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "PMID:8651708" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0956 + - id: "HMR_0956" - name: "" - metabolites: !!omap - m00366r: 1 @@ -116244,15 +116244,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: PMID:8651708 + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "PMID:8651708" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0957 + - id: "HMR_0957" - name: "" - metabolites: !!omap - m00364c: 1 @@ -116260,15 +116260,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120915 or ENSG00000143819 - - rxnFrom: HMRdatabase - - eccodes: 3.3.2.9;3.3.2.10 - - references: + - gene_reaction_rule: "ENSG00000120915 or ENSG00000143819" + - rxnFrom: "HMRdatabase" + - eccodes: "3.3.2.9;3.3.2.10" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0958 + - id: "HMR_0958" - name: "" - metabolites: !!omap - m01042c: 1 @@ -116276,15 +116276,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012779 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.34 - - references: PMID:3118366;PMID:3164719;PMID:3006030 + - gene_reaction_rule: "ENSG00000012779" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.34" + - references: "PMID:3118366;PMID:3164719;PMID:3006030" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0959 + - id: "HMR_0959" - name: "" - metabolites: !!omap - m01042c: -1 @@ -116292,15 +116292,15 @@ - m02362c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012779 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.34 - - references: PMID:3164719;PMID:3118366;PMID:3006030 + - gene_reaction_rule: "ENSG00000012779" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.34" + - references: "PMID:3164719;PMID:3118366;PMID:3006030" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0960 + - id: "HMR_0960" - name: "" - metabolites: !!omap - m01040c: 1 @@ -116310,15 +116310,15 @@ - m02040c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116157 or ENSG00000117592 or ENSG00000164294 or ENSG00000167468 or ENSG00000176153 or ENSG00000198704 or ENSG00000211445 or ENSG00000224586 or ENSG00000233276 - - rxnFrom: HMRdatabase - - eccodes: 1.11.1.9 - - references: + - gene_reaction_rule: "ENSG00000116157 or ENSG00000117592 or ENSG00000164294 or ENSG00000167468 or ENSG00000176153 or ENSG00000198704 or ENSG00000211445 or ENSG00000224586 or ENSG00000233276" + - rxnFrom: "HMRdatabase" + - eccodes: "1.11.1.9" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0961 + - id: "HMR_0961" - name: "" - metabolites: !!omap - m01040c: -1 @@ -116328,15 +116328,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108839 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.31 - - references: PMID:1326548;PMID:7929234 + - gene_reaction_rule: "ENSG00000108839" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.31" + - references: "PMID:1326548;PMID:7929234" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0963 + - id: "HMR_0963" - name: "" - metabolites: !!omap - m01040m: 1 @@ -116346,15 +116346,15 @@ - m02040m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116157 or ENSG00000117592 or ENSG00000164294 or ENSG00000167468 or ENSG00000176153 or ENSG00000198704 or ENSG00000211445 or ENSG00000224586 or ENSG00000233276 - - rxnFrom: HMRdatabase - - eccodes: 1.11.1.9 - - references: + - gene_reaction_rule: "ENSG00000116157 or ENSG00000117592 or ENSG00000164294 or ENSG00000167468 or ENSG00000176153 or ENSG00000198704 or ENSG00000211445 or ENSG00000224586 or ENSG00000233276" + - rxnFrom: "HMRdatabase" + - eccodes: "1.11.1.9" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0964 + - id: "HMR_0964" - name: "" - metabolites: !!omap - m01040m: -1 @@ -116364,15 +116364,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108839 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.31 - - references: PMID:1326548;PMID:7929234 + - gene_reaction_rule: "ENSG00000108839" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.31" + - references: "PMID:1326548;PMID:7929234" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0967 + - id: "HMR_0967" - name: "" - metabolites: !!omap - m01040r: -1 @@ -116382,15 +116382,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108839 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.31 - - references: PMID:1326548;PMID:7929234 + - gene_reaction_rule: "ENSG00000108839" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.31" + - references: "PMID:1326548;PMID:7929234" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0969 + - id: "HMR_0969" - name: "" - metabolites: !!omap - m00590c: 1 @@ -116402,15 +116402,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.30 - - references: PMID:7929234;PMID:1326548 + - gene_reaction_rule: "ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.30" + - references: "PMID:7929234;PMID:1326548" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0971 + - id: "HMR_0971" - name: "" - metabolites: !!omap - m01040c: -1 @@ -116420,15 +116420,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012779 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.34 - - references: PMID:1326548;PMID:7929234 + - gene_reaction_rule: "ENSG00000012779" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.34" + - references: "PMID:1326548;PMID:7929234" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0973 + - id: "HMR_0973" - name: "" - metabolites: !!omap - m01040c: -1 @@ -116438,15 +116438,15 @@ - m02555c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157326 or ENSG00000159228 or ENSG00000159231 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.184 - - references: PMID:1326548;PMID:7929234 + - gene_reaction_rule: "ENSG00000157326 or ENSG00000159228 or ENSG00000159231" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.184" + - references: "PMID:1326548;PMID:7929234" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0976 + - id: "HMR_0976" - name: "" - metabolites: !!omap - m01123c: 1 @@ -116456,30 +116456,30 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108839 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.31 - - references: PMID:7929234;PMID:1326548 + - gene_reaction_rule: "ENSG00000108839" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.31" + - references: "PMID:7929234;PMID:1326548" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0979 + - id: "HMR_0979" - name: "" - metabolites: !!omap - m01123c: -1 - m01124c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:1326548;PMID:7929234 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:1326548;PMID:7929234" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0980 + - id: "HMR_0980" - name: "" - metabolites: !!omap - m01048c: -1 @@ -116489,15 +116489,15 @@ - m02555c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157326 or ENSG00000159228 or ENSG00000159231 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.184 - - references: PMID:7929234;PMID:1326548 + - gene_reaction_rule: "ENSG00000157326 or ENSG00000159228 or ENSG00000159231" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.184" + - references: "PMID:7929234;PMID:1326548" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0981 + - id: "HMR_0981" - name: "" - metabolites: !!omap - m01047c: 1 @@ -116509,15 +116509,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.30 - - references: PMID:9837935;PMID:2377602;PMID:10224163 + - gene_reaction_rule: "ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.30" + - references: "PMID:9837935;PMID:2377602;PMID:10224163" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0983 + - id: "HMR_0983" - name: "" - metabolites: !!omap - m00380c: 1 @@ -116525,15 +116525,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000161905 or ENSG00000179593 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.33 - - references: + - gene_reaction_rule: "ENSG00000161905 or ENSG00000179593" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.33" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0985 + - id: "HMR_0985" - name: "" - metabolites: !!omap - m00380n: 1 @@ -116541,15 +116541,15 @@ - m02630n: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000161905 or ENSG00000179593 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.33 - - references: + - gene_reaction_rule: "ENSG00000161905 or ENSG00000179593" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.33" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0986 + - id: "HMR_0986" - name: "" - metabolites: !!omap - m00380r: 1 @@ -116557,15 +116557,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000161905 or ENSG00000179593 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.33 - - references: + - gene_reaction_rule: "ENSG00000161905 or ENSG00000179593" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.33" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0987 + - id: "HMR_0987" - name: "" - metabolites: !!omap - m00380p: 1 @@ -116573,15 +116573,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000161905 or ENSG00000179593 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.33 - - references: + - gene_reaction_rule: "ENSG00000161905 or ENSG00000179593" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.33" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0988 + - id: "HMR_0988" - name: "" - metabolites: !!omap - m00377c: -1 @@ -116591,15 +116591,15 @@ - m02040c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116157 or ENSG00000117592 or ENSG00000164294 or ENSG00000167468 or ENSG00000176153 or ENSG00000198704 or ENSG00000211445 or ENSG00000224586 or ENSG00000233276 - - rxnFrom: HMRdatabase - - eccodes: 1.11.1.9 - - references: + - gene_reaction_rule: "ENSG00000116157 or ENSG00000117592 or ENSG00000164294 or ENSG00000167468 or ENSG00000176153 or ENSG00000198704 or ENSG00000211445 or ENSG00000224586 or ENSG00000233276" + - rxnFrom: "HMRdatabase" + - eccodes: "1.11.1.9" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0989 + - id: "HMR_0989" - name: "" - metabolites: !!omap - m00377c: -1 @@ -116609,15 +116609,15 @@ - m02555c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.232 - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.232" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0990 + - id: "HMR_0990" - name: "" - metabolites: !!omap - m00377c: -1 @@ -116627,30 +116627,30 @@ - m02553c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.232 - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.232" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0991 + - id: "HMR_0991" - name: "" - metabolites: !!omap - m00380c: -1 - m00390c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0992 + - id: "HMR_0992" - name: "" - metabolites: !!omap - m00276c: -1 @@ -116658,30 +116658,30 @@ - m02040c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0993 + - id: "HMR_0993" - name: "" - metabolites: !!omap - m00296c: -1 - m00380c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0994 + - id: "HMR_0994" - name: "" - metabolites: !!omap - m00280c: -1 @@ -116689,15 +116689,15 @@ - m02040c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0995 + - id: "HMR_0995" - name: "" - metabolites: !!omap - m00374c: 1 @@ -116709,15 +116709,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073756 or ENSG00000095303 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.1 - - references: + - gene_reaction_rule: "ENSG00000073756 or ENSG00000095303" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.1" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0996 + - id: "HMR_0996" - name: "" - metabolites: !!omap - m00374p: 1 @@ -116729,15 +116729,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073756 or ENSG00000095303 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.1 - - references: + - gene_reaction_rule: "ENSG00000073756 or ENSG00000095303" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.1" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0997 + - id: "HMR_0997" - name: "" - metabolites: !!omap - m00374r: 1 @@ -116749,15 +116749,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073756 or ENSG00000095303 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.1 - - references: + - gene_reaction_rule: "ENSG00000073756 or ENSG00000095303" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.1" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0998 + - id: "HMR_0998" - name: "" - metabolites: !!omap - m00098c: 1 @@ -116766,15 +116766,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012779 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.34 - - references: PMID:11323741;PMID:11323741;PMID:9870464 + - gene_reaction_rule: "ENSG00000012779" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.34" + - references: "PMID:11323741;PMID:11323741;PMID:9870464" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0999 + - id: "HMR_0999" - name: "" - metabolites: !!omap - m00098p: 1 @@ -116783,15 +116783,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012779 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.34 - - references: PMID:11323741;PMID:11323741;PMID:9870464 + - gene_reaction_rule: "ENSG00000012779" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.34" + - references: "PMID:11323741;PMID:11323741;PMID:9870464" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1000 + - id: "HMR_1000" - name: "" - metabolites: !!omap - m00098r: 1 @@ -116800,15 +116800,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012779 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.34 - - references: PMID:11323741;PMID:11323741;PMID:9870464 + - gene_reaction_rule: "ENSG00000012779" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.34" + - references: "PMID:11323741;PMID:11323741;PMID:9870464" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1002 + - id: "HMR_1002" - name: "" - metabolites: !!omap - m00098c: -1 @@ -116816,15 +116816,15 @@ - m02040c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120915 or ENSG00000143819 - - rxnFrom: HMRdatabase - - eccodes: 3.3.2.9;3.3.2.10 - - references: PMID:11323741;PMID:9870464;PMID:11323741 + - gene_reaction_rule: "ENSG00000120915 or ENSG00000143819" + - rxnFrom: "HMRdatabase" + - eccodes: "3.3.2.9;3.3.2.10" + - references: "PMID:11323741;PMID:9870464;PMID:11323741" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1003 + - id: "HMR_1003" - name: "" - metabolites: !!omap - m00098p: -1 @@ -116832,15 +116832,15 @@ - m02040p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120915 or ENSG00000143819 - - rxnFrom: HMRdatabase - - eccodes: 3.3.2.9;3.3.2.10 - - references: PMID:11323741;PMID:9870464;PMID:11323741 + - gene_reaction_rule: "ENSG00000120915 or ENSG00000143819" + - rxnFrom: "HMRdatabase" + - eccodes: "3.3.2.9;3.3.2.10" + - references: "PMID:11323741;PMID:9870464;PMID:11323741" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1004 + - id: "HMR_1004" - name: "" - metabolites: !!omap - m00098r: -1 @@ -116848,15 +116848,15 @@ - m02040r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120915 or ENSG00000143819 - - rxnFrom: HMRdatabase - - eccodes: 3.3.2.9;3.3.2.10 - - references: PMID:11323741;PMID:9870464;PMID:11323741 + - gene_reaction_rule: "ENSG00000120915 or ENSG00000143819" + - rxnFrom: "HMRdatabase" + - eccodes: "3.3.2.9;3.3.2.10" + - references: "PMID:11323741;PMID:9870464;PMID:11323741" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1006 + - id: "HMR_1006" - name: "" - metabolites: !!omap - m00098c: -1 @@ -116864,15 +116864,15 @@ - m02040c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120915 or ENSG00000143819 - - rxnFrom: HMRdatabase - - eccodes: 3.3.2.9;3.3.2.10 - - references: PMID:11323741;PMID:11323741;PMID:9870464 + - gene_reaction_rule: "ENSG00000120915 or ENSG00000143819" + - rxnFrom: "HMRdatabase" + - eccodes: "3.3.2.9;3.3.2.10" + - references: "PMID:11323741;PMID:11323741;PMID:9870464" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1007 + - id: "HMR_1007" - name: "" - metabolites: !!omap - m00098p: -1 @@ -116880,15 +116880,15 @@ - m02040p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120915 or ENSG00000143819 - - rxnFrom: HMRdatabase - - eccodes: 3.3.2.9;3.3.2.10 - - references: PMID:11323741;PMID:11323741;PMID:9870464 + - gene_reaction_rule: "ENSG00000120915 or ENSG00000143819" + - rxnFrom: "HMRdatabase" + - eccodes: "3.3.2.9;3.3.2.10" + - references: "PMID:11323741;PMID:11323741;PMID:9870464" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1008 + - id: "HMR_1008" - name: "" - metabolites: !!omap - m00098r: -1 @@ -116896,45 +116896,45 @@ - m02040r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120915 or ENSG00000143819 - - rxnFrom: HMRdatabase - - eccodes: 3.3.2.9;3.3.2.10 - - references: PMID:11323741;PMID:11323741;PMID:9870464 + - gene_reaction_rule: "ENSG00000120915 or ENSG00000143819" + - rxnFrom: "HMRdatabase" + - eccodes: "3.3.2.9;3.3.2.10" + - references: "PMID:11323741;PMID:11323741;PMID:9870464" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1010 + - id: "HMR_1010" - name: "" - metabolites: !!omap - m00365c: -1 - m00380c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108839 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.31 - - references: PMID:10224163 + - gene_reaction_rule: "ENSG00000108839" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.31" + - references: "PMID:10224163" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1011 + - id: "HMR_1011" - name: "" - metabolites: !!omap - m00365n: -1 - m00380n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108839 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.31 - - references: PMID:10224163 + - gene_reaction_rule: "ENSG00000108839" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.31" + - references: "PMID:10224163" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1013 + - id: "HMR_1013" - name: "" - metabolites: !!omap - m00365c: -1 @@ -116944,15 +116944,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012779 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.34 - - references: PMID:9870464;PMID:11323741 + - gene_reaction_rule: "ENSG00000012779" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.34" + - references: "PMID:9870464;PMID:11323741" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1014 + - id: "HMR_1014" - name: "" - metabolites: !!omap - m00365n: -1 @@ -116962,15 +116962,15 @@ - m02630n: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012779 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.34 - - references: PMID:9870464;PMID:11323741 + - gene_reaction_rule: "ENSG00000012779" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.34" + - references: "PMID:9870464;PMID:11323741" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1015 + - id: "HMR_1015" - name: "" - metabolites: !!omap - m00380c: -1 @@ -116979,15 +116979,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012779 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.34 - - references: PMID:9870464;PMID:11323741 + - gene_reaction_rule: "ENSG00000012779" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.34" + - references: "PMID:9870464;PMID:11323741" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1016 + - id: "HMR_1016" - name: "" - metabolites: !!omap - m00380n: -1 @@ -116996,15 +116996,15 @@ - m02630n: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012779 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.34 - - references: PMID:9870464;PMID:11323741 + - gene_reaction_rule: "ENSG00000012779" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.34" + - references: "PMID:9870464;PMID:11323741" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1017 + - id: "HMR_1017" - name: "" - metabolites: !!omap - m00380r: -1 @@ -117013,15 +117013,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012779 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.34 - - references: PMID:9870464;PMID:11323741 + - gene_reaction_rule: "ENSG00000012779" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.34" + - references: "PMID:9870464;PMID:11323741" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1018 + - id: "HMR_1018" - name: "" - metabolites: !!omap - m00380p: -1 @@ -117030,15 +117030,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012779 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.34 - - references: PMID:9870464;PMID:11323741 + - gene_reaction_rule: "ENSG00000012779" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.34" + - references: "PMID:9870464;PMID:11323741" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1020 + - id: "HMR_1020" - name: "" - metabolites: !!omap - m01058c: -1 @@ -117046,15 +117046,15 @@ - m02396c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120915 or ENSG00000143819 - - rxnFrom: HMRdatabase - - eccodes: 3.3.2.9;3.3.2.10 - - references: PMID:11323741;PMID:9870464 + - gene_reaction_rule: "ENSG00000120915 or ENSG00000143819" + - rxnFrom: "HMRdatabase" + - eccodes: "3.3.2.9;3.3.2.10" + - references: "PMID:11323741;PMID:9870464" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1021 + - id: "HMR_1021" - name: "" - metabolites: !!omap - m01058n: -1 @@ -117062,15 +117062,15 @@ - m02396n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120915 or ENSG00000143819 - - rxnFrom: HMRdatabase - - eccodes: 3.3.2.9;3.3.2.10 - - references: PMID:11323741;PMID:9870464 + - gene_reaction_rule: "ENSG00000120915 or ENSG00000143819" + - rxnFrom: "HMRdatabase" + - eccodes: "3.3.2.9;3.3.2.10" + - references: "PMID:11323741;PMID:9870464" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1022 + - id: "HMR_1022" - name: "" - metabolites: !!omap - m01058r: -1 @@ -117078,15 +117078,15 @@ - m02396r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120915 or ENSG00000143819 - - rxnFrom: HMRdatabase - - eccodes: 3.3.2.9;3.3.2.10 - - references: PMID:11323741;PMID:9870464 + - gene_reaction_rule: "ENSG00000120915 or ENSG00000143819" + - rxnFrom: "HMRdatabase" + - eccodes: "3.3.2.9;3.3.2.10" + - references: "PMID:11323741;PMID:9870464" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1023 + - id: "HMR_1023" - name: "" - metabolites: !!omap - m01058p: -1 @@ -117094,15 +117094,15 @@ - m02396p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120915 or ENSG00000143819 - - rxnFrom: HMRdatabase - - eccodes: 3.3.2.9;3.3.2.10 - - references: PMID:11323741;PMID:9870464 + - gene_reaction_rule: "ENSG00000120915 or ENSG00000143819" + - rxnFrom: "HMRdatabase" + - eccodes: "3.3.2.9;3.3.2.10" + - references: "PMID:11323741;PMID:9870464" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1025 + - id: "HMR_1025" - name: "" - metabolites: !!omap - m01058c: -1 @@ -117110,15 +117110,15 @@ - m02395c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120915 or ENSG00000143819 - - rxnFrom: HMRdatabase - - eccodes: 3.3.2.9;3.3.2.10 - - references: PMID:9870464;PMID:11323741 + - gene_reaction_rule: "ENSG00000120915 or ENSG00000143819" + - rxnFrom: "HMRdatabase" + - eccodes: "3.3.2.9;3.3.2.10" + - references: "PMID:9870464;PMID:11323741" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1026 + - id: "HMR_1026" - name: "" - metabolites: !!omap - m01058n: -1 @@ -117126,15 +117126,15 @@ - m02395n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120915 or ENSG00000143819 - - rxnFrom: HMRdatabase - - eccodes: 3.3.2.9;3.3.2.10 - - references: PMID:9870464;PMID:11323741 + - gene_reaction_rule: "ENSG00000120915 or ENSG00000143819" + - rxnFrom: "HMRdatabase" + - eccodes: "3.3.2.9;3.3.2.10" + - references: "PMID:9870464;PMID:11323741" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1027 + - id: "HMR_1027" - name: "" - metabolites: !!omap - m01058r: -1 @@ -117142,15 +117142,15 @@ - m02395r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120915 or ENSG00000143819 - - rxnFrom: HMRdatabase - - eccodes: 3.3.2.9;3.3.2.10 - - references: PMID:9870464;PMID:11323741 + - gene_reaction_rule: "ENSG00000120915 or ENSG00000143819" + - rxnFrom: "HMRdatabase" + - eccodes: "3.3.2.9;3.3.2.10" + - references: "PMID:9870464;PMID:11323741" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1028 + - id: "HMR_1028" - name: "" - metabolites: !!omap - m01058p: -1 @@ -117158,15 +117158,15 @@ - m02395p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120915 or ENSG00000143819 - - rxnFrom: HMRdatabase - - eccodes: 3.3.2.9;3.3.2.10 - - references: PMID:9870464;PMID:11323741 + - gene_reaction_rule: "ENSG00000120915 or ENSG00000143819" + - rxnFrom: "HMRdatabase" + - eccodes: "3.3.2.9;3.3.2.10" + - references: "PMID:9870464;PMID:11323741" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1029 + - id: "HMR_1029" - name: "" - metabolites: !!omap - m00309c: 1 @@ -117174,15 +117174,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108839 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.31 - - references: + - gene_reaction_rule: "ENSG00000108839" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.31" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1030 + - id: "HMR_1030" - name: "" - metabolites: !!omap - m00309s: 1 @@ -117190,15 +117190,15 @@ - m02630s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108839 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.31 - - references: + - gene_reaction_rule: "ENSG00000108839" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.31" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1033 + - id: "HMR_1033" - name: "" - metabolites: !!omap - m00309r: 1 @@ -117206,15 +117206,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108839 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.31 - - references: + - gene_reaction_rule: "ENSG00000108839" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.31" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1034 + - id: "HMR_1034" - name: "" - metabolites: !!omap - m00309p: 1 @@ -117222,15 +117222,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108839 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.31 - - references: + - gene_reaction_rule: "ENSG00000108839" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.31" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1037 + - id: "HMR_1037" - name: "" - metabolites: !!omap - m00307c: 1 @@ -117240,15 +117240,15 @@ - m02040c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108839 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.31 - - references: + - gene_reaction_rule: "ENSG00000108839" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.31" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1039 + - id: "HMR_1039" - name: "" - metabolites: !!omap - m00307r: 1 @@ -117258,15 +117258,15 @@ - m02040r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108839 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.31 - - references: + - gene_reaction_rule: "ENSG00000108839" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.31" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1040 + - id: "HMR_1040" - name: "" - metabolites: !!omap - m00307c: -1 @@ -117276,30 +117276,30 @@ - m02555c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1041 + - id: "HMR_1041" - name: "" - metabolites: !!omap - m00309c: -1 - m02098c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 5.4.4.- - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "5.4.4.-" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1042 + - id: "HMR_1042" - name: "" - metabolites: !!omap - m02040c: -1 @@ -117307,75 +117307,75 @@ - m03056c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1043 + - id: "HMR_1043" - name: "" - metabolites: !!omap - m00309c: -1 - m02096c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116157 or ENSG00000117592 or ENSG00000164294 or ENSG00000167468 or ENSG00000176153 or ENSG00000198704 or ENSG00000211445 or ENSG00000224586 or ENSG00000233276 - - rxnFrom: HMRdatabase - - eccodes: 1.11.1.9 - - references: PMID:9837935;PMID:3942774;PMID:2377602;PMID:10224163 + - gene_reaction_rule: "ENSG00000116157 or ENSG00000117592 or ENSG00000164294 or ENSG00000167468 or ENSG00000176153 or ENSG00000198704 or ENSG00000211445 or ENSG00000224586 or ENSG00000233276" + - rxnFrom: "HMRdatabase" + - eccodes: "1.11.1.9" + - references: "PMID:9837935;PMID:3942774;PMID:2377602;PMID:10224163" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1045 + - id: "HMR_1045" - name: "" - metabolites: !!omap - m00309s: -1 - m02096s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116157 or ENSG00000117592 or ENSG00000164294 or ENSG00000167468 or ENSG00000176153 or ENSG00000198704 or ENSG00000211445 or ENSG00000224586 or ENSG00000233276 - - rxnFrom: HMRdatabase - - eccodes: 1.11.1.9 - - references: PMID:9837935;PMID:3942774;PMID:2377602;PMID:10224163 + - gene_reaction_rule: "ENSG00000116157 or ENSG00000117592 or ENSG00000164294 or ENSG00000167468 or ENSG00000176153 or ENSG00000198704 or ENSG00000211445 or ENSG00000224586 or ENSG00000233276" + - rxnFrom: "HMRdatabase" + - eccodes: "1.11.1.9" + - references: "PMID:9837935;PMID:3942774;PMID:2377602;PMID:10224163" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1048 + - id: "HMR_1048" - name: "" - metabolites: !!omap - m00309p: -1 - m02096p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116157 or ENSG00000117592 or ENSG00000164294 or ENSG00000167468 or ENSG00000176153 or ENSG00000198704 or ENSG00000211445 or ENSG00000224586 or ENSG00000233276 - - rxnFrom: HMRdatabase - - eccodes: 1.11.1.9 - - references: PMID:9837935;PMID:3942774;PMID:2377602;PMID:10224163 + - gene_reaction_rule: "ENSG00000116157 or ENSG00000117592 or ENSG00000164294 or ENSG00000167468 or ENSG00000176153 or ENSG00000198704 or ENSG00000211445 or ENSG00000224586 or ENSG00000233276" + - rxnFrom: "HMRdatabase" + - eccodes: "1.11.1.9" + - references: "PMID:9837935;PMID:3942774;PMID:2377602;PMID:10224163" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1049 + - id: "HMR_1049" - name: "" - metabolites: !!omap - m00309r: -1 - m02096r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116157 or ENSG00000117592 or ENSG00000164294 or ENSG00000167468 or ENSG00000176153 or ENSG00000198704 or ENSG00000211445 or ENSG00000224586 or ENSG00000233276 - - rxnFrom: HMRdatabase - - eccodes: 1.11.1.9 - - references: PMID:9837935;PMID:3942774;PMID:2377602;PMID:10224163 + - gene_reaction_rule: "ENSG00000116157 or ENSG00000117592 or ENSG00000164294 or ENSG00000167468 or ENSG00000176153 or ENSG00000198704 or ENSG00000211445 or ENSG00000224586 or ENSG00000233276" + - rxnFrom: "HMRdatabase" + - eccodes: "1.11.1.9" + - references: "PMID:9837935;PMID:3942774;PMID:2377602;PMID:10224163" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1050 + - id: "HMR_1050" - name: "" - metabolites: !!omap - m02026c: -1 @@ -117383,15 +117383,15 @@ - m02097c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148344 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: PMID:9755286 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148344 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "PMID:9755286" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1053 + - id: "HMR_1053" - name: "" - metabolites: !!omap - m02026r: -1 @@ -117399,15 +117399,15 @@ - m02097r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148344 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: PMID:9755286 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148344 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "PMID:9755286" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1054 + - id: "HMR_1054" - name: "" - metabolites: !!omap - m02026p: -1 @@ -117415,15 +117415,15 @@ - m02097p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148344 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: PMID:9755286 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148344 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "PMID:9755286" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1055 + - id: "HMR_1055" - name: "" - metabolites: !!omap - m02040c: -1 @@ -117431,15 +117431,15 @@ - m03055c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120915 or ENSG00000143819 - - rxnFrom: HMRdatabase - - eccodes: 3.3.2.9;3.3.2.10 - - references: PMID:3942774 + - gene_reaction_rule: "ENSG00000120915 or ENSG00000143819" + - rxnFrom: "HMRdatabase" + - eccodes: "3.3.2.9;3.3.2.10" + - references: "PMID:3942774" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1057 + - id: "HMR_1057" - name: "" - metabolites: !!omap - m02040r: -1 @@ -117447,15 +117447,15 @@ - m03055r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120915 or ENSG00000143819 - - rxnFrom: HMRdatabase - - eccodes: 3.3.2.9;3.3.2.10 - - references: PMID:3942774 + - gene_reaction_rule: "ENSG00000120915 or ENSG00000143819" + - rxnFrom: "HMRdatabase" + - eccodes: "3.3.2.9;3.3.2.10" + - references: "PMID:3942774" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1058 + - id: "HMR_1058" - name: "" - metabolites: !!omap - m02040p: -1 @@ -117463,15 +117463,15 @@ - m03055p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120915 or ENSG00000143819 - - rxnFrom: HMRdatabase - - eccodes: 3.3.2.9;3.3.2.10 - - references: PMID:3942774 + - gene_reaction_rule: "ENSG00000120915 or ENSG00000143819" + - rxnFrom: "HMRdatabase" + - eccodes: "3.3.2.9;3.3.2.10" + - references: "PMID:3942774" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1059 + - id: "HMR_1059" - name: "" - metabolites: !!omap - m00598c: 1 @@ -117483,15 +117483,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.30 - - references: PMID:9837935;PMID:2377602;PMID:10224163 + - gene_reaction_rule: "ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.30" + - references: "PMID:9837935;PMID:2377602;PMID:10224163" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1061 + - id: "HMR_1061" - name: "" - metabolites: !!omap - m00598r: 1 @@ -117503,15 +117503,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.30 - - references: PMID:9837935;PMID:2377602;PMID:10224163 + - gene_reaction_rule: "ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.30" + - references: "PMID:9837935;PMID:2377602;PMID:10224163" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1062 + - id: "HMR_1062" - name: "" - metabolites: !!omap - m01203c: 1 @@ -117519,15 +117519,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108839 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.31 - - references: + - gene_reaction_rule: "ENSG00000108839" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.31" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1063 + - id: "HMR_1063" - name: "" - metabolites: !!omap - m01202c: 1 @@ -117537,15 +117537,15 @@ - m02040c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108839 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.31 - - references: + - gene_reaction_rule: "ENSG00000108839" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.31" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1064 + - id: "HMR_1064" - name: "" - metabolites: !!omap - m00005c: 1 @@ -117553,15 +117553,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108839 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.31 - - references: + - gene_reaction_rule: "ENSG00000108839" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.31" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1065 + - id: "HMR_1065" - name: "" - metabolites: !!omap - m00279c: -1 @@ -117578,15 +117578,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000072506 or ENSG00000084754 or ENSG00000087008 or ENSG00000097021 or ENSG00000101473 or ENSG00000119673 or ENSG00000127884 or ENSG00000130304 or ENSG00000133835 or ENSG00000136881 or ENSG00000138029 or ENSG00000138796 or ENSG00000140284 or ENSG00000143554 or ENSG00000157426 or ENSG00000161533 or ENSG00000167107 or ENSG00000167114 or ENSG00000167315 or ENSG00000176715 or ENSG00000177465 or ENSG00000184227 or ENSG00000242110 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.3.3.6;2.3.1.154;2.3.1.16;3.1.2.2;4.2.1.17;5.1.99.4;6.2.1.- - - references: + - gene_reaction_rule: "ENSG00000060971 or ENSG00000072506 or ENSG00000084754 or ENSG00000087008 or ENSG00000097021 or ENSG00000101473 or ENSG00000119673 or ENSG00000127884 or ENSG00000130304 or ENSG00000133835 or ENSG00000136881 or ENSG00000138029 or ENSG00000138796 or ENSG00000140284 or ENSG00000143554 or ENSG00000157426 or ENSG00000161533 or ENSG00000167107 or ENSG00000167114 or ENSG00000167315 or ENSG00000176715 or ENSG00000177465 or ENSG00000184227 or ENSG00000242110" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.3.3.6;2.3.1.154;2.3.1.16;3.1.2.2;4.2.1.17;5.1.99.4;6.2.1.-" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1066 + - id: "HMR_1066" - name: "" - metabolites: !!omap - m01176c: 1 @@ -117604,15 +117604,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000072506 or ENSG00000084754 or ENSG00000087008 or ENSG00000097021 or ENSG00000101473 or ENSG00000119673 or ENSG00000127884 or ENSG00000130304 or ENSG00000133835 or ENSG00000136881 or ENSG00000138029 or ENSG00000138796 or ENSG00000140284 or ENSG00000143554 or ENSG00000157426 or ENSG00000161533 or ENSG00000167107 or ENSG00000167114 or ENSG00000167315 or ENSG00000176715 or ENSG00000177465 or ENSG00000184227 or ENSG00000242110 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.3.3.6;2.3.1.154;2.3.1.16;3.1.2.2;4.2.1.17;5.1.99.4;6.2.1.- - - references: + - gene_reaction_rule: "ENSG00000060971 or ENSG00000072506 or ENSG00000084754 or ENSG00000087008 or ENSG00000097021 or ENSG00000101473 or ENSG00000119673 or ENSG00000127884 or ENSG00000130304 or ENSG00000133835 or ENSG00000136881 or ENSG00000138029 or ENSG00000138796 or ENSG00000140284 or ENSG00000143554 or ENSG00000157426 or ENSG00000161533 or ENSG00000167107 or ENSG00000167114 or ENSG00000167315 or ENSG00000176715 or ENSG00000177465 or ENSG00000184227 or ENSG00000242110" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.3.3.6;2.3.1.154;2.3.1.16;3.1.2.2;4.2.1.17;5.1.99.4;6.2.1.-" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1067 + - id: "HMR_1067" - name: "" - metabolites: !!omap - m01055c: 1 @@ -117629,15 +117629,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000072506 or ENSG00000084754 or ENSG00000087008 or ENSG00000097021 or ENSG00000101473 or ENSG00000119673 or ENSG00000127884 or ENSG00000130304 or ENSG00000133835 or ENSG00000136881 or ENSG00000138029 or ENSG00000138796 or ENSG00000140284 or ENSG00000143554 or ENSG00000157426 or ENSG00000161533 or ENSG00000167107 or ENSG00000167114 or ENSG00000167315 or ENSG00000176715 or ENSG00000177465 or ENSG00000184227 or ENSG00000242110 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.3.3.6;2.3.1.154;2.3.1.16;3.1.2.2;4.2.1.17;5.1.99.4;6.2.1.- - - references: + - gene_reaction_rule: "ENSG00000060971 or ENSG00000072506 or ENSG00000084754 or ENSG00000087008 or ENSG00000097021 or ENSG00000101473 or ENSG00000119673 or ENSG00000127884 or ENSG00000130304 or ENSG00000133835 or ENSG00000136881 or ENSG00000138029 or ENSG00000138796 or ENSG00000140284 or ENSG00000143554 or ENSG00000157426 or ENSG00000161533 or ENSG00000167107 or ENSG00000167114 or ENSG00000167315 or ENSG00000176715 or ENSG00000177465 or ENSG00000184227 or ENSG00000242110" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.3.3.6;2.3.1.154;2.3.1.16;3.1.2.2;4.2.1.17;5.1.99.4;6.2.1.-" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1068 + - id: "HMR_1068" - name: "" - metabolites: !!omap - m00310c: 1 @@ -117654,15 +117654,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000072506 or ENSG00000084754 or ENSG00000087008 or ENSG00000097021 or ENSG00000101473 or ENSG00000119673 or ENSG00000127884 or ENSG00000130304 or ENSG00000133835 or ENSG00000136881 or ENSG00000138029 or ENSG00000138796 or ENSG00000140284 or ENSG00000143554 or ENSG00000157426 or ENSG00000161533 or ENSG00000167107 or ENSG00000167114 or ENSG00000167315 or ENSG00000176715 or ENSG00000177465 or ENSG00000184227 or ENSG00000242110 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.3.3.6;2.3.1.154;2.3.1.16;3.1.2.2;4.2.1.17;5.1.99.4;6.2.1.- - - references: + - gene_reaction_rule: "ENSG00000060971 or ENSG00000072506 or ENSG00000084754 or ENSG00000087008 or ENSG00000097021 or ENSG00000101473 or ENSG00000119673 or ENSG00000127884 or ENSG00000130304 or ENSG00000133835 or ENSG00000136881 or ENSG00000138029 or ENSG00000138796 or ENSG00000140284 or ENSG00000143554 or ENSG00000157426 or ENSG00000161533 or ENSG00000167107 or ENSG00000167114 or ENSG00000167315 or ENSG00000176715 or ENSG00000177465 or ENSG00000184227 or ENSG00000242110" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.3.3.6;2.3.1.154;2.3.1.16;3.1.2.2;4.2.1.17;5.1.99.4;6.2.1.-" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1069 + - id: "HMR_1069" - name: "" - metabolites: !!omap - m00259c: 1 @@ -117680,15 +117680,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000072506 or ENSG00000084754 or ENSG00000087008 or ENSG00000097021 or ENSG00000101473 or ENSG00000119673 or ENSG00000127884 or ENSG00000130304 or ENSG00000133835 or ENSG00000136881 or ENSG00000138029 or ENSG00000138796 or ENSG00000140284 or ENSG00000143554 or ENSG00000157426 or ENSG00000161533 or ENSG00000167107 or ENSG00000167114 or ENSG00000167315 or ENSG00000176715 or ENSG00000177465 or ENSG00000184227 or ENSG00000242110 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.3.3.6;2.3.1.154;2.3.1.16;3.1.2.2;4.2.1.17;5.1.99.4;6.2.1.- - - references: + - gene_reaction_rule: "ENSG00000060971 or ENSG00000072506 or ENSG00000084754 or ENSG00000087008 or ENSG00000097021 or ENSG00000101473 or ENSG00000119673 or ENSG00000127884 or ENSG00000130304 or ENSG00000133835 or ENSG00000136881 or ENSG00000138029 or ENSG00000138796 or ENSG00000140284 or ENSG00000143554 or ENSG00000157426 or ENSG00000161533 or ENSG00000167107 or ENSG00000167114 or ENSG00000167315 or ENSG00000176715 or ENSG00000177465 or ENSG00000184227 or ENSG00000242110" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.3.3.6;2.3.1.154;2.3.1.16;3.1.2.2;4.2.1.17;5.1.99.4;6.2.1.-" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1070 + - id: "HMR_1070" - name: "" - metabolites: !!omap - m00259c: -1 @@ -117706,15 +117706,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000072506 or ENSG00000084754 or ENSG00000087008 or ENSG00000097021 or ENSG00000101473 or ENSG00000119673 or ENSG00000127884 or ENSG00000130304 or ENSG00000133835 or ENSG00000136881 or ENSG00000138029 or ENSG00000138796 or ENSG00000140284 or ENSG00000143554 or ENSG00000157426 or ENSG00000161533 or ENSG00000167107 or ENSG00000167114 or ENSG00000167315 or ENSG00000176715 or ENSG00000177465 or ENSG00000184227 or ENSG00000242110 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.3.3.6;2.3.1.154;2.3.1.16;3.1.2.2;4.2.1.17;5.1.99.4;6.2.1.- - - references: + - gene_reaction_rule: "ENSG00000060971 or ENSG00000072506 or ENSG00000084754 or ENSG00000087008 or ENSG00000097021 or ENSG00000101473 or ENSG00000119673 or ENSG00000127884 or ENSG00000130304 or ENSG00000133835 or ENSG00000136881 or ENSG00000138029 or ENSG00000138796 or ENSG00000140284 or ENSG00000143554 or ENSG00000157426 or ENSG00000161533 or ENSG00000167107 or ENSG00000167114 or ENSG00000167315 or ENSG00000176715 or ENSG00000177465 or ENSG00000184227 or ENSG00000242110" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.3.3.6;2.3.1.154;2.3.1.16;3.1.2.2;4.2.1.17;5.1.99.4;6.2.1.-" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1071 + - id: "HMR_1071" - name: "" - metabolites: !!omap - m00307c: -1 @@ -117726,15 +117726,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.30 - - references: PMID:3040745 + - gene_reaction_rule: "ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.30" + - references: "PMID:3040745" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1072 + - id: "HMR_1072" - name: "" - metabolites: !!omap - m00307r: -1 @@ -117746,15 +117746,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.30 - - references: PMID:3040745 + - gene_reaction_rule: "ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.30" + - references: "PMID:3040745" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1073 + - id: "HMR_1073" - name: "" - metabolites: !!omap - m00278c: 1 @@ -117764,15 +117764,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108839 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.31 - - references: + - gene_reaction_rule: "ENSG00000108839" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.31" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1074 + - id: "HMR_1074" - name: "" - metabolites: !!omap - m00307c: -1 @@ -117782,15 +117782,15 @@ - m02553c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000106853 or ENSG00000149084 or ENSG00000205678 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.- - - references: + - gene_reaction_rule: "ENSG00000106853 or ENSG00000149084 or ENSG00000205678" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.-" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1075 + - id: "HMR_1075" - name: "" - metabolites: !!omap - m00307c: -1 @@ -117800,15 +117800,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012779 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.34 - - references: PMID:9837935;PMID:2377602;PMID:10224163 + - gene_reaction_rule: "ENSG00000012779" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.34" + - references: "PMID:9837935;PMID:2377602;PMID:10224163" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1077 + - id: "HMR_1077" - name: "" - metabolites: !!omap - m00307r: -1 @@ -117818,15 +117818,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012779 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.34 - - references: PMID:9837935;PMID:2377602;PMID:10224163 + - gene_reaction_rule: "ENSG00000012779" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.34" + - references: "PMID:9837935;PMID:2377602;PMID:10224163" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1079 + - id: "HMR_1079" - name: "" - metabolites: !!omap - m01362c: -1 @@ -117836,15 +117836,15 @@ - m02610c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117480 - - rxnFrom: HMRdatabase - - eccodes: 3.5.1.99 - - references: + - gene_reaction_rule: "ENSG00000117480" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.1.99" + - references: "" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_3015 + - id: "HMR_3015" - name: "" - metabolites: !!omap - m01362p: 1 @@ -117854,15 +117854,15 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000131238 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 or ENSG00000221988 or ENSG00000241404 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2;3.1.2.22 - - references: PMID:10092594;PMID:6151837 + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000131238 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 or ENSG00000221988 or ENSG00000241404" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2;3.1.2.22" + - references: "PMID:10092594;PMID:6151837" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1080 + - id: "HMR_1080" - name: "" - metabolites: !!omap - m02040c: -1 @@ -117870,15 +117870,15 @@ - m02364c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111144 or ENSG00000176393 - - rxnFrom: HMRdatabase - - eccodes: 3.3.2.6;3.4.11.6 - - references: PMID:6490615;PMID:2995393 + - gene_reaction_rule: "ENSG00000111144 or ENSG00000176393" + - rxnFrom: "HMRdatabase" + - eccodes: "3.3.2.6;3.4.11.6" + - references: "PMID:6490615;PMID:2995393" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1081 + - id: "HMR_1081" - name: "" - metabolites: !!omap - m02026c: -1 @@ -117886,15 +117886,15 @@ - m02366c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000213316 - - rxnFrom: HMRdatabase - - eccodes: 4.4.1.20 - - references: PMID:8052639;PMID:7937884 + - gene_reaction_rule: "ENSG00000213316" + - rxnFrom: "HMRdatabase" + - eccodes: "4.4.1.20" + - references: "PMID:8052639;PMID:7937884" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1084 + - id: "HMR_1084" - name: "" - metabolites: !!omap - m01111s: 1 @@ -117903,15 +117903,15 @@ - m02418s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099998 or ENSG00000100031 or ENSG00000100121 or ENSG00000131067 or ENSG00000133475 or ENSG00000149435 or ENSG00000167741 - - rxnFrom: HMRdatabase - - eccodes: 2.3.2.2 - - references: PMID:6122208 + - gene_reaction_rule: "ENSG00000099998 or ENSG00000100031 or ENSG00000100121 or ENSG00000131067 or ENSG00000133475 or ENSG00000149435 or ENSG00000167741" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.2.2" + - references: "PMID:6122208" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1085 + - id: "HMR_1085" - name: "" - metabolites: !!omap - m01986s: 1 @@ -117920,15 +117920,15 @@ - m02418s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000015413 or ENSG00000141096 or ENSG00000167261 - - rxnFrom: HMRdatabase - - eccodes: 3.4.13.19 - - references: PMID:3563417;PMID:6293969 + - gene_reaction_rule: "ENSG00000015413 or ENSG00000141096 or ENSG00000167261" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.13.19" + - references: "PMID:3563417;PMID:6293969" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1087 + - id: "HMR_1087" - name: "" - metabolites: !!omap - m00304c: 1 @@ -117936,15 +117936,15 @@ - m02369c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1088 + - id: "HMR_1088" - name: "" - metabolites: !!omap - m01261c: 1 @@ -117954,15 +117954,15 @@ - m02538c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023041 or ENSG00000054392 or ENSG00000087253 or ENSG00000090971 or ENSG00000097033 or ENSG00000099904 or ENSG00000100344 or ENSG00000102030 or ENSG00000102312 or ENSG00000102383 or ENSG00000103066 or ENSG00000104219 or ENSG00000106636 or ENSG00000109065 or ENSG00000110583 or ENSG00000111684 or ENSG00000121579 or ENSG00000122390 or ENSG00000123684 or ENSG00000125505 or ENSG00000133328 or ENSG00000135372 or ENSG00000136247 or ENSG00000141446 or ENSG00000143797 or ENSG00000144035 or ENSG00000144182 or ENSG00000153395 or ENSG00000153786 or ENSG00000156599 or ENSG00000159714 or ENSG00000160446 or ENSG00000163812 or ENSG00000163958 or ENSG00000167011 or ENSG00000171307 or ENSG00000171320 or ENSG00000172197 or ENSG00000172954 or ENSG00000173418 or ENSG00000174165 or ENSG00000175048 or ENSG00000175893 or ENSG00000176454 or ENSG00000177054 or ENSG00000177108 or ENSG00000177669 or ENSG00000180776 or ENSG00000184210 or ENSG00000184307 or ENSG00000184788 or ENSG00000186908 or ENSG00000188706 or ENSG00000188818 or ENSG00000203972 or ENSG00000204160 or ENSG00000206077 or ENSG00000243477 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.- - - references: PMID:9870464;PMID:9755286;PMID:10833489;PMID:9526099 + - gene_reaction_rule: "ENSG00000023041 or ENSG00000054392 or ENSG00000087253 or ENSG00000090971 or ENSG00000097033 or ENSG00000099904 or ENSG00000100344 or ENSG00000102030 or ENSG00000102312 or ENSG00000102383 or ENSG00000103066 or ENSG00000104219 or ENSG00000106636 or ENSG00000109065 or ENSG00000110583 or ENSG00000111684 or ENSG00000121579 or ENSG00000122390 or ENSG00000123684 or ENSG00000125505 or ENSG00000133328 or ENSG00000135372 or ENSG00000136247 or ENSG00000141446 or ENSG00000143797 or ENSG00000144035 or ENSG00000144182 or ENSG00000153395 or ENSG00000153786 or ENSG00000156599 or ENSG00000159714 or ENSG00000160446 or ENSG00000163812 or ENSG00000163958 or ENSG00000167011 or ENSG00000171307 or ENSG00000171320 or ENSG00000172197 or ENSG00000172954 or ENSG00000173418 or ENSG00000174165 or ENSG00000175048 or ENSG00000175893 or ENSG00000176454 or ENSG00000177054 or ENSG00000177108 or ENSG00000177669 or ENSG00000180776 or ENSG00000184210 or ENSG00000184307 or ENSG00000184788 or ENSG00000186908 or ENSG00000188706 or ENSG00000188818 or ENSG00000203972 or ENSG00000204160 or ENSG00000206077 or ENSG00000243477" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.-" + - references: "PMID:9870464;PMID:9755286;PMID:10833489;PMID:9526099" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1091 + - id: "HMR_1091" - name: "" - metabolites: !!omap - m01261n: 1 @@ -117972,15 +117972,15 @@ - m02538n: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023041 or ENSG00000054392 or ENSG00000087253 or ENSG00000090971 or ENSG00000097033 or ENSG00000099904 or ENSG00000100344 or ENSG00000102030 or ENSG00000102312 or ENSG00000102383 or ENSG00000103066 or ENSG00000104219 or ENSG00000106636 or ENSG00000109065 or ENSG00000110583 or ENSG00000111684 or ENSG00000121579 or ENSG00000122390 or ENSG00000123684 or ENSG00000125505 or ENSG00000133328 or ENSG00000135372 or ENSG00000136247 or ENSG00000141446 or ENSG00000143797 or ENSG00000144035 or ENSG00000144182 or ENSG00000153395 or ENSG00000153786 or ENSG00000156599 or ENSG00000159714 or ENSG00000160446 or ENSG00000163812 or ENSG00000163958 or ENSG00000167011 or ENSG00000171307 or ENSG00000171320 or ENSG00000172197 or ENSG00000172954 or ENSG00000173418 or ENSG00000174165 or ENSG00000175048 or ENSG00000175893 or ENSG00000176454 or ENSG00000177054 or ENSG00000177108 or ENSG00000177669 or ENSG00000180776 or ENSG00000184210 or ENSG00000184307 or ENSG00000184788 or ENSG00000186908 or ENSG00000188706 or ENSG00000188818 or ENSG00000203972 or ENSG00000204160 or ENSG00000206077 or ENSG00000243477 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.- - - references: PMID:9870464;PMID:9755286;PMID:10833489;PMID:9526099 + - gene_reaction_rule: "ENSG00000023041 or ENSG00000054392 or ENSG00000087253 or ENSG00000090971 or ENSG00000097033 or ENSG00000099904 or ENSG00000100344 or ENSG00000102030 or ENSG00000102312 or ENSG00000102383 or ENSG00000103066 or ENSG00000104219 or ENSG00000106636 or ENSG00000109065 or ENSG00000110583 or ENSG00000111684 or ENSG00000121579 or ENSG00000122390 or ENSG00000123684 or ENSG00000125505 or ENSG00000133328 or ENSG00000135372 or ENSG00000136247 or ENSG00000141446 or ENSG00000143797 or ENSG00000144035 or ENSG00000144182 or ENSG00000153395 or ENSG00000153786 or ENSG00000156599 or ENSG00000159714 or ENSG00000160446 or ENSG00000163812 or ENSG00000163958 or ENSG00000167011 or ENSG00000171307 or ENSG00000171320 or ENSG00000172197 or ENSG00000172954 or ENSG00000173418 or ENSG00000174165 or ENSG00000175048 or ENSG00000175893 or ENSG00000176454 or ENSG00000177054 or ENSG00000177108 or ENSG00000177669 or ENSG00000180776 or ENSG00000184210 or ENSG00000184307 or ENSG00000184788 or ENSG00000186908 or ENSG00000188706 or ENSG00000188818 or ENSG00000203972 or ENSG00000204160 or ENSG00000206077 or ENSG00000243477" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.-" + - references: "PMID:9870464;PMID:9755286;PMID:10833489;PMID:9526099" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1092 + - id: "HMR_1092" - name: "" - metabolites: !!omap - m00320c: 1 @@ -117988,15 +117988,15 @@ - m02362c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1093 + - id: "HMR_1093" - name: "" - metabolites: !!omap - m01058c: -1 @@ -118008,15 +118008,15 @@ - m02630c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012779 or ENSG00000108839 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.31;1.13.11.34 - - references: PMID:10224163;PMID:9870464;PMID:11323741 + - gene_reaction_rule: "ENSG00000012779 or ENSG00000108839" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.31;1.13.11.34" + - references: "PMID:10224163;PMID:9870464;PMID:11323741" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1096 + - id: "HMR_1096" - name: "" - metabolites: !!omap - m01058n: 1 @@ -118028,15 +118028,15 @@ - m02630n: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012779 or ENSG00000108839 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.31;1.13.11.34 - - references: PMID:10224163;PMID:9870464;PMID:11323741 + - gene_reaction_rule: "ENSG00000012779 or ENSG00000108839" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.31;1.13.11.34" + - references: "PMID:10224163;PMID:9870464;PMID:11323741" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1097 + - id: "HMR_1097" - name: "" - metabolites: !!omap - m00394c: -1 @@ -118046,15 +118046,15 @@ - m02553c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000164120 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.141 - - references: + - gene_reaction_rule: "ENSG00000164120" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.141" + - references: "" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1098 + - id: "HMR_1098" - name: "" - metabolites: !!omap - m00339c: -1 @@ -118064,15 +118064,15 @@ - m02555c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087076 or ENSG00000099377 or ENSG00000100867 or ENSG00000109854 or ENSG00000121039 or ENSG00000138400 or ENSG00000139988 or ENSG00000145439 or ENSG00000159692 or ENSG00000160439 or ENSG00000164039 or ENSG00000167733 or ENSG00000170426 or ENSG00000170786 or ENSG00000176387 or ENSG00000183921 or ENSG00000184860 or ENSG00000186153 or ENSG00000187134 or ENSG00000197894 or ENSG00000198074 or ENSG00000198189 or ENSG00000198610 or ENSG00000204228 or ENSG00000227471 or ENSG00000240857 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.- - - references: PMID:10837478 + - gene_reaction_rule: "ENSG00000087076 or ENSG00000099377 or ENSG00000100867 or ENSG00000109854 or ENSG00000121039 or ENSG00000138400 or ENSG00000139988 or ENSG00000145439 or ENSG00000159692 or ENSG00000160439 or ENSG00000164039 or ENSG00000167733 or ENSG00000170426 or ENSG00000170786 or ENSG00000176387 or ENSG00000183921 or ENSG00000184860 or ENSG00000186153 or ENSG00000187134 or ENSG00000197894 or ENSG00000198074 or ENSG00000198189 or ENSG00000198610 or ENSG00000204228 or ENSG00000227471 or ENSG00000240857" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.-" + - references: "PMID:10837478" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1099 + - id: "HMR_1099" - name: "" - metabolites: !!omap - m00339c: -1 @@ -118082,15 +118082,15 @@ - m02555c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000164120 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.141 - - references: + - gene_reaction_rule: "ENSG00000164120" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.141" + - references: "" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1100 + - id: "HMR_1100" - name: "" - metabolites: !!omap - m00326c: 1 @@ -118100,15 +118100,15 @@ - m02553c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157326 or ENSG00000159228 or ENSG00000159231 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.184 - - references: PMID:9862787;PMID:11368003;PMID:9799565 + - gene_reaction_rule: "ENSG00000157326 or ENSG00000159228 or ENSG00000159231" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.184" + - references: "PMID:9862787;PMID:11368003;PMID:9799565" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1101 + - id: "HMR_1101" - name: "" - metabolites: !!omap - m00326m: 1 @@ -118118,15 +118118,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157326 or ENSG00000159228 or ENSG00000159231 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.184 - - references: PMID:9862787;PMID:11368003;PMID:9799565 + - gene_reaction_rule: "ENSG00000157326 or ENSG00000159228 or ENSG00000159231" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.184" + - references: "PMID:9862787;PMID:11368003;PMID:9799565" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1102 + - id: "HMR_1102" - name: "" - metabolites: !!omap - m00326m: 1 @@ -118136,15 +118136,15 @@ - m02555m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157326 or ENSG00000159228 or ENSG00000159231 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.184 - - references: PMID:7929234;PMID:1326548 + - gene_reaction_rule: "ENSG00000157326 or ENSG00000159228 or ENSG00000159231" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.184" + - references: "PMID:7929234;PMID:1326548" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1103 + - id: "HMR_1103" - name: "" - metabolites: !!omap - m00326r: 1 @@ -118154,15 +118154,15 @@ - m02553r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157326 or ENSG00000159228 or ENSG00000159231 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.184 - - references: PMID:9862787;PMID:11368003;PMID:9799565 + - gene_reaction_rule: "ENSG00000157326 or ENSG00000159228 or ENSG00000159231" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.184" + - references: "PMID:9862787;PMID:11368003;PMID:9799565" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1105 + - id: "HMR_1105" - name: "" - metabolites: !!omap - m00326p: 1 @@ -118172,15 +118172,15 @@ - m02555p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157326 or ENSG00000159228 or ENSG00000159231 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.184 - - references: PMID:7929234;PMID:1326548 + - gene_reaction_rule: "ENSG00000157326 or ENSG00000159228 or ENSG00000159231" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.184" + - references: "PMID:7929234;PMID:1326548" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1106 + - id: "HMR_1106" - name: "" - metabolites: !!omap - m00326p: 1 @@ -118190,15 +118190,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157326 or ENSG00000159228 or ENSG00000159231 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.184 - - references: PMID:9862787;PMID:11368003;PMID:9799565 + - gene_reaction_rule: "ENSG00000157326 or ENSG00000159228 or ENSG00000159231" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.184" + - references: "PMID:9862787;PMID:11368003;PMID:9799565" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1107 + - id: "HMR_1107" - name: "" - metabolites: !!omap - m00326c: -1 @@ -118210,15 +118210,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.30 - - references: PMID:9799565;PMID:9862787;PMID:11368003 + - gene_reaction_rule: "ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.30" + - references: "PMID:9799565;PMID:9862787;PMID:11368003" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1108 + - id: "HMR_1108" - name: "" - metabolites: !!omap - m00326r: -1 @@ -118230,15 +118230,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.30 - - references: PMID:9799565;PMID:9862787;PMID:11368003 + - gene_reaction_rule: "ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.30" + - references: "PMID:9799565;PMID:9862787;PMID:11368003" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1109 + - id: "HMR_1109" - name: "" - metabolites: !!omap - m00330c: 1 @@ -118250,15 +118250,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.30 - - references: PMID:9799565;PMID:9862787;PMID:11368003 + - gene_reaction_rule: "ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.30" + - references: "PMID:9799565;PMID:9862787;PMID:11368003" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1110 + - id: "HMR_1110" - name: "" - metabolites: !!omap - m00330r: 1 @@ -118270,15 +118270,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.30 - - references: PMID:9799565;PMID:9862787;PMID:11368003 + - gene_reaction_rule: "ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.30" + - references: "PMID:9799565;PMID:9862787;PMID:11368003" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1111 + - id: "HMR_1111" - name: "" - metabolites: !!omap - m00330c: -1 @@ -118290,15 +118290,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.30 - - references: PMID:9799565;PMID:9862787;PMID:11368003 + - gene_reaction_rule: "ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.30" + - references: "PMID:9799565;PMID:9862787;PMID:11368003" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1112 + - id: "HMR_1112" - name: "" - metabolites: !!omap - m00330r: -1 @@ -118310,15 +118310,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.30 - - references: PMID:9799565;PMID:9862787;PMID:11368003 + - gene_reaction_rule: "ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.30" + - references: "PMID:9799565;PMID:9862787;PMID:11368003" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1113 + - id: "HMR_1113" - name: "" - metabolites: !!omap - m00319c: -1 @@ -118326,15 +118326,15 @@ - m02040c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:9799565;PMID:9862787;PMID:11368003 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:9799565;PMID:9862787;PMID:11368003" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1114 + - id: "HMR_1114" - name: "" - metabolites: !!omap - m00329c: -1 @@ -118343,15 +118343,15 @@ - m02040c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:9799565;PMID:9862787;PMID:11368003 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:9799565;PMID:9862787;PMID:11368003" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1115 + - id: "HMR_1115" - name: "" - metabolites: !!omap - m00329r: -1 @@ -118360,15 +118360,15 @@ - m02040r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:9799565;PMID:9862787;PMID:11368003 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:9799565;PMID:9862787;PMID:11368003" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1116 + - id: "HMR_1116" - name: "" - metabolites: !!omap - m00328c: -1 @@ -118378,15 +118378,15 @@ - m02555c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157326 or ENSG00000159228 or ENSG00000159231 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.184 - - references: PMID:8244977;PMID:9862787 + - gene_reaction_rule: "ENSG00000157326 or ENSG00000159228 or ENSG00000159231" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.184" + - references: "PMID:8244977;PMID:9862787" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1117 + - id: "HMR_1117" - name: "" - metabolites: !!omap - m00328r: -1 @@ -118396,15 +118396,15 @@ - m02555r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157326 or ENSG00000159228 or ENSG00000159231 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.184 - - references: PMID:8244977;PMID:9862787 + - gene_reaction_rule: "ENSG00000157326 or ENSG00000159228 or ENSG00000159231" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.184" + - references: "PMID:8244977;PMID:9862787" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1119 + - id: "HMR_1119" - name: "" - metabolites: !!omap - m00326c: -1 @@ -118412,15 +118412,15 @@ - m02026c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148344 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: PMID:8244977 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148344 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "PMID:8244977" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1120 + - id: "HMR_1120" - name: "" - metabolites: !!omap - m00326m: -1 @@ -118428,15 +118428,15 @@ - m02026m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148344 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: PMID:8244977 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148344 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "PMID:8244977" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1121 + - id: "HMR_1121" - name: "" - metabolites: !!omap - m00326r: -1 @@ -118444,15 +118444,15 @@ - m02026r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148344 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: PMID:8244977 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148344 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "PMID:8244977" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1122 + - id: "HMR_1122" - name: "" - metabolites: !!omap - m00326p: -1 @@ -118460,15 +118460,15 @@ - m02026p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148344 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: PMID:8244977 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148344 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "PMID:8244977" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1123 + - id: "HMR_1123" - name: "" - metabolites: !!omap - m00254c: -1 @@ -118478,15 +118478,15 @@ - m02555c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157326 or ENSG00000159228 or ENSG00000159231 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.184 - - references: PMID:8244977 + - gene_reaction_rule: "ENSG00000157326 or ENSG00000159228 or ENSG00000159231" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.184" + - references: "PMID:8244977" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1124 + - id: "HMR_1124" - name: "" - metabolites: !!omap - m00254m: -1 @@ -118496,15 +118496,15 @@ - m02555m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157326 or ENSG00000159228 or ENSG00000159231 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.184 - - references: PMID:8244977 + - gene_reaction_rule: "ENSG00000157326 or ENSG00000159228 or ENSG00000159231" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.184" + - references: "PMID:8244977" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1125 + - id: "HMR_1125" - name: "" - metabolites: !!omap - m00254p: -1 @@ -118514,15 +118514,15 @@ - m02555p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157326 or ENSG00000159228 or ENSG00000159231 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.184 - - references: PMID:8244977 + - gene_reaction_rule: "ENSG00000157326 or ENSG00000159228 or ENSG00000159231" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.184" + - references: "PMID:8244977" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1126 + - id: "HMR_1126" - name: "" - metabolites: !!omap - m00599c: 1 @@ -118534,15 +118534,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.30 - - references: + - gene_reaction_rule: "ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.30" + - references: "" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1127 + - id: "HMR_1127" - name: "" - metabolites: !!omap - m00599m: 1 @@ -118554,15 +118554,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.30 - - references: + - gene_reaction_rule: "ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.30" + - references: "" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1128 + - id: "HMR_1128" - name: "" - metabolites: !!omap - m00599r: 1 @@ -118574,15 +118574,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.30 - - references: + - gene_reaction_rule: "ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.30" + - references: "" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1129 + - id: "HMR_1129" - name: "" - metabolites: !!omap - m00599c: -1 @@ -118592,15 +118592,15 @@ - m02553c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147576 or ENSG00000172955 or ENSG00000187758 or ENSG00000196344 or ENSG00000196616 or ENSG00000197894 or ENSG00000198099 or ENSG00000248144 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.1 - - references: PMID:9862787;PMID:11368003;PMID:9799565 + - gene_reaction_rule: "ENSG00000147576 or ENSG00000172955 or ENSG00000187758 or ENSG00000196344 or ENSG00000196616 or ENSG00000197894 or ENSG00000198099 or ENSG00000248144" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.1" + - references: "PMID:9862787;PMID:11368003;PMID:9799565" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1130 + - id: "HMR_1130" - name: "" - metabolites: !!omap - m00599m: -1 @@ -118610,15 +118610,15 @@ - m02553m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147576 or ENSG00000172955 or ENSG00000187758 or ENSG00000196344 or ENSG00000196616 or ENSG00000197894 or ENSG00000198099 or ENSG00000248144 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.1 - - references: PMID:9862787;PMID:11368003;PMID:9799565 + - gene_reaction_rule: "ENSG00000147576 or ENSG00000172955 or ENSG00000187758 or ENSG00000196344 or ENSG00000196616 or ENSG00000197894 or ENSG00000198099 or ENSG00000248144" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.1" + - references: "PMID:9862787;PMID:11368003;PMID:9799565" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1131 + - id: "HMR_1131" - name: "" - metabolites: !!omap - m00599r: -1 @@ -118628,15 +118628,15 @@ - m02553r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147576 or ENSG00000172955 or ENSG00000187758 or ENSG00000196344 or ENSG00000196616 or ENSG00000197894 or ENSG00000198099 or ENSG00000248144 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.1 - - references: PMID:9862787;PMID:11368003;PMID:9799565 + - gene_reaction_rule: "ENSG00000147576 or ENSG00000172955 or ENSG00000187758 or ENSG00000196344 or ENSG00000196616 or ENSG00000197894 or ENSG00000198099 or ENSG00000248144" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.1" + - references: "PMID:9862787;PMID:11368003;PMID:9799565" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1132 + - id: "HMR_1132" - name: "" - metabolites: !!omap - m00585c: -1 @@ -118647,15 +118647,15 @@ - m02553c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000143149 or ENSG00000164904 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.3 - - references: PMID:9799565;PMID:9862787;PMID:11368003 + - gene_reaction_rule: "ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000143149 or ENSG00000164904" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.3" + - references: "PMID:9799565;PMID:9862787;PMID:11368003" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1133 + - id: "HMR_1133" - name: "" - metabolites: !!omap - m00585m: -1 @@ -118666,15 +118666,15 @@ - m02553m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000143149 or ENSG00000164904 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.3 - - references: PMID:9799565;PMID:9862787;PMID:11368003 + - gene_reaction_rule: "ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000143149 or ENSG00000164904" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.3" + - references: "PMID:9799565;PMID:9862787;PMID:11368003" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1134 + - id: "HMR_1134" - name: "" - metabolites: !!omap - m00585r: -1 @@ -118685,15 +118685,15 @@ - m02553r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000143149 or ENSG00000164904 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.3 - - references: PMID:9799565;PMID:9862787;PMID:11368003 + - gene_reaction_rule: "ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000143149 or ENSG00000164904" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.3" + - references: "PMID:9799565;PMID:9862787;PMID:11368003" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1136 + - id: "HMR_1136" - name: "" - metabolites: !!omap - m00588r: -1 @@ -118701,15 +118701,15 @@ - m02040r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:9799565;PMID:9862787;PMID:11368003 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:9799565;PMID:9862787;PMID:11368003" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1137 + - id: "HMR_1137" - name: "" - metabolites: !!omap - m00588c: 1 @@ -118721,15 +118721,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.30 - - references: PMID:9799565;PMID:9862787;PMID:11368003 + - gene_reaction_rule: "ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.30" + - references: "PMID:9799565;PMID:9862787;PMID:11368003" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1138 + - id: "HMR_1138" - name: "" - metabolites: !!omap - m00588r: 1 @@ -118741,15 +118741,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.30 - - references: PMID:9799565;PMID:9862787;PMID:11368003 + - gene_reaction_rule: "ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.30" + - references: "PMID:9799565;PMID:9862787;PMID:11368003" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1139 + - id: "HMR_1139" - name: "" - metabolites: !!omap - m00588c: -1 @@ -118761,15 +118761,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.30 - - references: PMID:9799565;PMID:9862787;PMID:11368003 + - gene_reaction_rule: "ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.30" + - references: "PMID:9799565;PMID:9862787;PMID:11368003" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1140 + - id: "HMR_1140" - name: "" - metabolites: !!omap - m00588r: -1 @@ -118781,15 +118781,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.30 - - references: PMID:9799565;PMID:9862787;PMID:11368003 + - gene_reaction_rule: "ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.30" + - references: "PMID:9799565;PMID:9862787;PMID:11368003" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1142 + - id: "HMR_1142" - name: "" - metabolites: !!omap - m00585r: -1 @@ -118798,15 +118798,15 @@ - m02040r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:9799565;PMID:9862787;PMID:11368003 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:9799565;PMID:9862787;PMID:11368003" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1146 + - id: "HMR_1146" - name: "" - metabolites: !!omap - m01124c: -1 @@ -118816,15 +118816,15 @@ - m02555c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157326 or ENSG00000159228 or ENSG00000159231 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.184 - - references: PMID:9694844 + - gene_reaction_rule: "ENSG00000157326 or ENSG00000159228 or ENSG00000159231" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.184" + - references: "PMID:9694844" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1147 + - id: "HMR_1147" - name: "" - metabolites: !!omap - m01124m: -1 @@ -118834,15 +118834,15 @@ - m02555m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157326 or ENSG00000159228 or ENSG00000159231 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.184 - - references: PMID:9694844 + - gene_reaction_rule: "ENSG00000157326 or ENSG00000159228 or ENSG00000159231" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.184" + - references: "PMID:9694844" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1148 + - id: "HMR_1148" - name: "" - metabolites: !!omap - m01124p: -1 @@ -118852,15 +118852,15 @@ - m02555p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157326 or ENSG00000159228 or ENSG00000159231 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.184 - - references: PMID:9694844 + - gene_reaction_rule: "ENSG00000157326 or ENSG00000159228 or ENSG00000159231" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.184" + - references: "PMID:9694844" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1149 + - id: "HMR_1149" - name: "" - metabolites: !!omap - m01124c: -1 @@ -118870,15 +118870,15 @@ - m02555c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1150 + - id: "HMR_1150" - name: "" - metabolites: !!omap - m01124m: -1 @@ -118888,15 +118888,15 @@ - m02555m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1151 + - id: "HMR_1151" - name: "" - metabolites: !!omap - m01124r: -1 @@ -118906,15 +118906,15 @@ - m02555r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1152 + - id: "HMR_1152" - name: "" - metabolites: !!omap - m01124p: -1 @@ -118924,15 +118924,15 @@ - m02555p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1153 + - id: "HMR_1153" - name: "" - metabolites: !!omap - m01152c: -1 @@ -118942,15 +118942,15 @@ - m02555c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: PMID:9694844 + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "PMID:9694844" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1154 + - id: "HMR_1154" - name: "" - metabolites: !!omap - m01152m: -1 @@ -118960,15 +118960,15 @@ - m02555m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: PMID:9694844 + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "PMID:9694844" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1155 + - id: "HMR_1155" - name: "" - metabolites: !!omap - m01152r: -1 @@ -118978,15 +118978,15 @@ - m02555r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: PMID:9694844 + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "PMID:9694844" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1156 + - id: "HMR_1156" - name: "" - metabolites: !!omap - m01152p: -1 @@ -118996,15 +118996,15 @@ - m02555p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: PMID:9694844 + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "PMID:9694844" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1157 + - id: "HMR_1157" - name: "" - metabolites: !!omap - m01120c: -1 @@ -119015,15 +119015,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: PMID:9784915 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "PMID:9784915" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1158 + - id: "HMR_1158" - name: "" - metabolites: !!omap - m01120m: -1 @@ -119034,15 +119034,15 @@ - m02759m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: PMID:9784915 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "PMID:9784915" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1159 + - id: "HMR_1159" - name: "" - metabolites: !!omap - m01120r: -1 @@ -119053,15 +119053,15 @@ - m02759r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: PMID:9784915 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "PMID:9784915" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1160 + - id: "HMR_1160" - name: "" - metabolites: !!omap - m01120p: -1 @@ -119072,15 +119072,15 @@ - m02759p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: PMID:9784915 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "PMID:9784915" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1161 + - id: "HMR_1161" - name: "" - metabolites: !!omap - m01119m: 1 @@ -119089,15 +119089,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: PMID:7649996 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "PMID:7649996" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1162 + - id: "HMR_1162" - name: "" - metabolites: !!omap - m01119p: 1 @@ -119106,15 +119106,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: PMID:7649996 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "PMID:7649996" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1163 + - id: "HMR_1163" - name: "" - metabolites: !!omap - m00689m: 1 @@ -119122,15 +119122,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:7649996 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:7649996" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1164 + - id: "HMR_1164" - name: "" - metabolites: !!omap - m00689p: 1 @@ -119138,15 +119138,15 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:7649996 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:7649996" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1165 + - id: "HMR_1165" - name: "" - metabolites: !!omap - m00689m: -1 @@ -119156,15 +119156,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:7649996 + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:7649996" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1166 + - id: "HMR_1166" - name: "" - metabolites: !!omap - m00689p: -1 @@ -119174,15 +119174,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:7649996 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:7649996" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1167 + - id: "HMR_1167" - name: "" - metabolites: !!omap - m00740m: -1 @@ -119191,15 +119191,15 @@ - m01597m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: PMID:7649996 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "PMID:7649996" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1168 + - id: "HMR_1168" - name: "" - metabolites: !!omap - m00740p: -1 @@ -119208,15 +119208,15 @@ - m01597p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000167306 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16 - - references: PMID:7649996 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000167306" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16" + - references: "PMID:7649996" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1170 + - id: "HMR_1170" - name: "" - metabolites: !!omap - m00835m: 1 @@ -119226,15 +119226,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: PMID:11673457 + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "PMID:11673457" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1171 + - id: "HMR_1171" - name: "" - metabolites: !!omap - m00835p: 1 @@ -119244,30 +119244,30 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: PMID:11673457 + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "PMID:11673457" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1186 + - id: "HMR_1186" - name: "" - metabolites: !!omap - m01118c: -1 - m01123c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:1326548;PMID:7929234 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:1326548;PMID:7929234" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1190 + - id: "HMR_1190" - name: "" - metabolites: !!omap - m01118c: -1 @@ -119277,15 +119277,15 @@ - m02555c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157326 or ENSG00000159228 or ENSG00000159231 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.184 - - references: PMID:9694844 + - gene_reaction_rule: "ENSG00000157326 or ENSG00000159228 or ENSG00000159231" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.184" + - references: "PMID:9694844" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1191 + - id: "HMR_1191" - name: "" - metabolites: !!omap - m01118m: -1 @@ -119295,15 +119295,15 @@ - m02555m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157326 or ENSG00000159228 or ENSG00000159231 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.184 - - references: PMID:9694844 + - gene_reaction_rule: "ENSG00000157326 or ENSG00000159228 or ENSG00000159231" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.184" + - references: "PMID:9694844" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1192 + - id: "HMR_1192" - name: "" - metabolites: !!omap - m01118p: -1 @@ -119313,15 +119313,15 @@ - m02555p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157326 or ENSG00000159228 or ENSG00000159231 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.184 - - references: PMID:9694844 + - gene_reaction_rule: "ENSG00000157326 or ENSG00000159228 or ENSG00000159231" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.184" + - references: "PMID:9694844" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1193 + - id: "HMR_1193" - name: "" - metabolites: !!omap - m01118c: -1 @@ -119331,15 +119331,15 @@ - m02555c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: PMID:9694844 + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "PMID:9694844" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1194 + - id: "HMR_1194" - name: "" - metabolites: !!omap - m01118m: -1 @@ -119349,15 +119349,15 @@ - m02555m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: PMID:9694844 + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "PMID:9694844" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1195 + - id: "HMR_1195" - name: "" - metabolites: !!omap - m01118r: -1 @@ -119367,15 +119367,15 @@ - m02555r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: PMID:9694844 + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "PMID:9694844" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1196 + - id: "HMR_1196" - name: "" - metabolites: !!omap - m01118p: -1 @@ -119385,15 +119385,15 @@ - m02555p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: PMID:9694844 + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "PMID:9694844" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1197 + - id: "HMR_1197" - name: "" - metabolites: !!omap - m01150c: -1 @@ -119403,15 +119403,15 @@ - m02555c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1198 + - id: "HMR_1198" - name: "" - metabolites: !!omap - m01150m: -1 @@ -119421,15 +119421,15 @@ - m02555m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1199 + - id: "HMR_1199" - name: "" - metabolites: !!omap - m01150p: -1 @@ -119439,15 +119439,15 @@ - m02555p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1200 + - id: "HMR_1200" - name: "" - metabolites: !!omap - m01122c: -1 @@ -119458,15 +119458,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: PMID:9784915 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "PMID:9784915" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1201 + - id: "HMR_1201" - name: "" - metabolites: !!omap - m01122m: -1 @@ -119477,15 +119477,15 @@ - m02759m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: PMID:9784915 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "PMID:9784915" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1202 + - id: "HMR_1202" - name: "" - metabolites: !!omap - m01122r: -1 @@ -119496,15 +119496,15 @@ - m02759r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: PMID:9784915 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "PMID:9784915" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1203 + - id: "HMR_1203" - name: "" - metabolites: !!omap - m01122p: -1 @@ -119515,15 +119515,15 @@ - m02759p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: PMID:9784915 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "PMID:9784915" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1204 + - id: "HMR_1204" - name: "" - metabolites: !!omap - m01121m: 1 @@ -119532,15 +119532,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: PMID:7649996 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "PMID:7649996" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1205 + - id: "HMR_1205" - name: "" - metabolites: !!omap - m01121p: 1 @@ -119549,15 +119549,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: PMID:7649996 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "PMID:7649996" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1206 + - id: "HMR_1206" - name: "" - metabolites: !!omap - m00690m: 1 @@ -119565,15 +119565,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:7649996 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:7649996" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1207 + - id: "HMR_1207" - name: "" - metabolites: !!omap - m00690p: 1 @@ -119581,15 +119581,15 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:7649996 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:7649996" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1208 + - id: "HMR_1208" - name: "" - metabolites: !!omap - m00690m: -1 @@ -119599,15 +119599,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:7649996 + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:7649996" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1209 + - id: "HMR_1209" - name: "" - metabolites: !!omap - m00690p: -1 @@ -119617,15 +119617,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:7649996 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:7649996" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1210 + - id: "HMR_1210" - name: "" - metabolites: !!omap - m00741m: -1 @@ -119634,15 +119634,15 @@ - m01597m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: PMID:7649996 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "PMID:7649996" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1211 + - id: "HMR_1211" - name: "" - metabolites: !!omap - m00741p: -1 @@ -119651,15 +119651,15 @@ - m01597p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000167306 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16 - - references: PMID:7649996 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000167306" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16" + - references: "PMID:7649996" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1212 + - id: "HMR_1212" - name: "" - metabolites: !!omap - m00837m: 1 @@ -119669,15 +119669,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: PMID:11673457 + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "PMID:11673457" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1213 + - id: "HMR_1213" - name: "" - metabolites: !!omap - m00837p: 1 @@ -119687,15 +119687,15 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: PMID:11673457 + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "PMID:11673457" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1228 + - id: "HMR_1228" - name: "" - metabolites: !!omap - m00253c: 1 @@ -119705,15 +119705,15 @@ - m02553c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000106853 or ENSG00000149084 or ENSG00000205678 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.- - - references: PMID:9862787;PMID:8244977 + - gene_reaction_rule: "ENSG00000106853 or ENSG00000149084 or ENSG00000205678" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.-" + - references: "PMID:9862787;PMID:8244977" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1229 + - id: "HMR_1229" - name: "" - metabolites: !!omap - m00253m: 1 @@ -119723,15 +119723,15 @@ - m02553m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000106853 or ENSG00000149084 or ENSG00000205678 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.- - - references: PMID:9862787;PMID:8244977 + - gene_reaction_rule: "ENSG00000106853 or ENSG00000149084 or ENSG00000205678" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.-" + - references: "PMID:9862787;PMID:8244977" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1230 + - id: "HMR_1230" - name: "" - metabolites: !!omap - m00253p: 1 @@ -119741,15 +119741,15 @@ - m02553p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000106853 or ENSG00000149084 or ENSG00000205678 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.- - - references: PMID:9862787;PMID:8244977 + - gene_reaction_rule: "ENSG00000106853 or ENSG00000149084 or ENSG00000205678" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.-" + - references: "PMID:9862787;PMID:8244977" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1231 + - id: "HMR_1231" - name: "" - metabolites: !!omap - m00253c: -1 @@ -119759,15 +119759,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157326 or ENSG00000159228 or ENSG00000159231 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.184 - - references: PMID:9862787;PMID:8244977 + - gene_reaction_rule: "ENSG00000157326 or ENSG00000159228 or ENSG00000159231" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.184" + - references: "PMID:9862787;PMID:8244977" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1232 + - id: "HMR_1232" - name: "" - metabolites: !!omap - m00253m: -1 @@ -119777,15 +119777,15 @@ - m02555m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157326 or ENSG00000159228 or ENSG00000159231 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.184 - - references: PMID:9862787;PMID:8244977 + - gene_reaction_rule: "ENSG00000157326 or ENSG00000159228 or ENSG00000159231" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.184" + - references: "PMID:9862787;PMID:8244977" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1233 + - id: "HMR_1233" - name: "" - metabolites: !!omap - m00253p: -1 @@ -119795,15 +119795,15 @@ - m02555p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157326 or ENSG00000159228 or ENSG00000159231 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.184 - - references: PMID:9862787;PMID:8244977 + - gene_reaction_rule: "ENSG00000157326 or ENSG00000159228 or ENSG00000159231" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.184" + - references: "PMID:9862787;PMID:8244977" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1234 + - id: "HMR_1234" - name: "" - metabolites: !!omap - m00257c: -1 @@ -119815,15 +119815,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.30 - - references: PMID:9862787;PMID:8244977 + - gene_reaction_rule: "ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.30" + - references: "PMID:9862787;PMID:8244977" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1235 + - id: "HMR_1235" - name: "" - metabolites: !!omap - m00257r: -1 @@ -119835,15 +119835,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.30 - - references: PMID:9862787;PMID:8244977 + - gene_reaction_rule: "ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.30" + - references: "PMID:9862787;PMID:8244977" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1236 + - id: "HMR_1236" - name: "" - metabolites: !!omap - m00255c: 1 @@ -119855,15 +119855,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.30 - - references: PMID:9862787;PMID:8244977 + - gene_reaction_rule: "ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.30" + - references: "PMID:9862787;PMID:8244977" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1237 + - id: "HMR_1237" - name: "" - metabolites: !!omap - m00255r: 1 @@ -119875,15 +119875,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.30 - - references: PMID:9862787;PMID:8244977 + - gene_reaction_rule: "ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.30" + - references: "PMID:9862787;PMID:8244977" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1238 + - id: "HMR_1238" - name: "" - metabolites: !!omap - m00255c: -1 @@ -119895,15 +119895,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.30 - - references: PMID:9862787;PMID:8244977 + - gene_reaction_rule: "ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.30" + - references: "PMID:9862787;PMID:8244977" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1239 + - id: "HMR_1239" - name: "" - metabolites: !!omap - m00255r: -1 @@ -119915,15 +119915,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.30 - - references: PMID:9862787;PMID:8244977 + - gene_reaction_rule: "ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.30" + - references: "PMID:9862787;PMID:8244977" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1241 + - id: "HMR_1241" - name: "" - metabolites: !!omap - m00256c: -1 @@ -119932,15 +119932,15 @@ - m02040c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1244 + - id: "HMR_1244" - name: "" - metabolites: !!omap - m00583c: -1 @@ -119950,15 +119950,15 @@ - m02555c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157326 or ENSG00000159228 or ENSG00000159231 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.184 - - references: PMID:9862787;PMID:8847485 + - gene_reaction_rule: "ENSG00000157326 or ENSG00000159228 or ENSG00000159231" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.184" + - references: "PMID:9862787;PMID:8847485" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1245 + - id: "HMR_1245" - name: "" - metabolites: !!omap - m00583m: -1 @@ -119968,15 +119968,15 @@ - m02555m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157326 or ENSG00000159228 or ENSG00000159231 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.184 - - references: PMID:9862787;PMID:8847485 + - gene_reaction_rule: "ENSG00000157326 or ENSG00000159228 or ENSG00000159231" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.184" + - references: "PMID:9862787;PMID:8847485" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1246 + - id: "HMR_1246" - name: "" - metabolites: !!omap - m00583p: -1 @@ -119986,15 +119986,15 @@ - m02555p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157326 or ENSG00000159228 or ENSG00000159231 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.184 - - references: PMID:9862787;PMID:8847485 + - gene_reaction_rule: "ENSG00000157326 or ENSG00000159228 or ENSG00000159231" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.184" + - references: "PMID:9862787;PMID:8847485" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1247 + - id: "HMR_1247" - name: "" - metabolites: !!omap - m00424m: 1 @@ -120009,15 +120009,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1248 + - id: "HMR_1248" - name: "" - metabolites: !!omap - m00582c: 1 @@ -120028,15 +120028,15 @@ - m02759c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: PMID:9784915 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "PMID:9784915" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1249 + - id: "HMR_1249" - name: "" - metabolites: !!omap - m00582m: 1 @@ -120047,15 +120047,15 @@ - m02759m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: PMID:9784915 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "PMID:9784915" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1250 + - id: "HMR_1250" - name: "" - metabolites: !!omap - m00582r: 1 @@ -120066,15 +120066,15 @@ - m02759r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: PMID:9784915 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "PMID:9784915" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1251 + - id: "HMR_1251" - name: "" - metabolites: !!omap - m00582p: 1 @@ -120085,15 +120085,15 @@ - m02759p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: PMID:9784915 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "PMID:9784915" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1253 + - id: "HMR_1253" - name: "" - metabolites: !!omap - m00026m: 1 @@ -120102,15 +120102,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: PMID:12054595 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "PMID:12054595" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1254 + - id: "HMR_1254" - name: "" - metabolites: !!omap - m00026p: 1 @@ -120119,15 +120119,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: PMID:12054595 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "PMID:12054595" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1255 + - id: "HMR_1255" - name: "" - metabolites: !!omap - m00026m: -1 @@ -120135,15 +120135,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:12054595 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:12054595" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1256 + - id: "HMR_1256" - name: "" - metabolites: !!omap - m00026p: -1 @@ -120151,15 +120151,15 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:12054595 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:12054595" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1257 + - id: "HMR_1257" - name: "" - metabolites: !!omap - m00420m: 1 @@ -120169,15 +120169,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:12054595 + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:12054595" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1258 + - id: "HMR_1258" - name: "" - metabolites: !!omap - m00420p: 1 @@ -120187,15 +120187,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:12054595 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:12054595" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1259 + - id: "HMR_1259" - name: "" - metabolites: !!omap - m00420m: -1 @@ -120204,15 +120204,15 @@ - m01597m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: PMID:12054595 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "PMID:12054595" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1260 + - id: "HMR_1260" - name: "" - metabolites: !!omap - m00420p: -1 @@ -120221,15 +120221,15 @@ - m01597p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000167306 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16 - - references: PMID:12054595 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000167306" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16" + - references: "PMID:12054595" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1261 + - id: "HMR_1261" - name: "" - metabolites: !!omap - m00421m: -1 @@ -120239,15 +120239,15 @@ - m02649m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: PMID:11673457 + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "PMID:11673457" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1262 + - id: "HMR_1262" - name: "" - metabolites: !!omap - m00421p: -1 @@ -120257,15 +120257,15 @@ - m02649p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: PMID:11673457 + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "PMID:11673457" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1263 + - id: "HMR_1263" - name: "" - metabolites: !!omap - m00257c: 1 @@ -120276,15 +120276,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: PMID:9784915 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "PMID:9784915" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1264 + - id: "HMR_1264" - name: "" - metabolites: !!omap - m00257m: 1 @@ -120295,15 +120295,15 @@ - m02759m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: PMID:9784915 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "PMID:9784915" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1265 + - id: "HMR_1265" - name: "" - metabolites: !!omap - m00257r: 1 @@ -120314,15 +120314,15 @@ - m02759r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: PMID:9784915 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "PMID:9784915" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1266 + - id: "HMR_1266" - name: "" - metabolites: !!omap - m00257p: 1 @@ -120333,15 +120333,15 @@ - m02759p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: PMID:9784915 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "PMID:9784915" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1270 + - id: "HMR_1270" - name: "" - metabolites: !!omap - m00258m: -1 @@ -120350,15 +120350,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: PMID:11368003;PMID:9862787 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "PMID:11368003;PMID:9862787" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1271 + - id: "HMR_1271" - name: "" - metabolites: !!omap - m00258p: -1 @@ -120367,15 +120367,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: PMID:11368003;PMID:9862787 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "PMID:11368003;PMID:9862787" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1272 + - id: "HMR_1272" - name: "" - metabolites: !!omap - m00691m: 1 @@ -120383,15 +120383,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:11368003;PMID:9862787 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:11368003;PMID:9862787" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1273 + - id: "HMR_1273" - name: "" - metabolites: !!omap - m00691p: 1 @@ -120399,15 +120399,15 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:11368003;PMID:9862787 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:11368003;PMID:9862787" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1274 + - id: "HMR_1274" - name: "" - metabolites: !!omap - m00691m: -1 @@ -120417,15 +120417,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:11368003;PMID:9862787 + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:11368003;PMID:9862787" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1275 + - id: "HMR_1275" - name: "" - metabolites: !!omap - m00691p: -1 @@ -120435,15 +120435,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:11368003;PMID:9862787 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:11368003;PMID:9862787" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1276 + - id: "HMR_1276" - name: "" - metabolites: !!omap - m00688m: 1 @@ -120452,15 +120452,15 @@ - m01597m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: PMID:9862787;PMID:11368003 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "PMID:9862787;PMID:11368003" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1277 + - id: "HMR_1277" - name: "" - metabolites: !!omap - m00688p: 1 @@ -120469,15 +120469,15 @@ - m01597p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000167306 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16 - - references: PMID:9862787;PMID:11368003 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000167306" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16" + - references: "PMID:9862787;PMID:11368003" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1278 + - id: "HMR_1278" - name: "" - metabolites: !!omap - m00687m: 1 @@ -120487,15 +120487,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: PMID:11673457 + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "PMID:11673457" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1279 + - id: "HMR_1279" - name: "" - metabolites: !!omap - m00687p: 1 @@ -120505,15 +120505,15 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: PMID:11673457 + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "PMID:11673457" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1280 + - id: "HMR_1280" - name: "" - metabolites: !!omap - m00252c: -1 @@ -120523,15 +120523,15 @@ - m02555c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157326 or ENSG00000159228 or ENSG00000159231 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.184 - - references: + - gene_reaction_rule: "ENSG00000157326 or ENSG00000159228 or ENSG00000159231" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.184" + - references: "" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1281 + - id: "HMR_1281" - name: "" - metabolites: !!omap - m00252m: -1 @@ -120541,15 +120541,15 @@ - m02555m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157326 or ENSG00000159228 or ENSG00000159231 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.184 - - references: + - gene_reaction_rule: "ENSG00000157326 or ENSG00000159228 or ENSG00000159231" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.184" + - references: "" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1282 + - id: "HMR_1282" - name: "" - metabolites: !!omap - m00252p: -1 @@ -120559,30 +120559,30 @@ - m02555p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157326 or ENSG00000159228 or ENSG00000159231 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.184 - - references: + - gene_reaction_rule: "ENSG00000157326 or ENSG00000159228 or ENSG00000159231" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.184" + - references: "" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1285 + - id: "HMR_1285" - name: "" - metabolites: !!omap - m00252c: -1 - m00257c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:9862787;PMID:8244977 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:9862787;PMID:8244977" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1287 + - id: "HMR_1287" - name: "" - metabolites: !!omap - m00596p: 1 @@ -120594,15 +120594,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.34 - - references: PMID:12054595 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.34" + - references: "PMID:12054595" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1288 + - id: "HMR_1288" - name: "" - metabolites: !!omap - m00596p: -1 @@ -120612,15 +120612,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147576 or ENSG00000172955 or ENSG00000187758 or ENSG00000196344 or ENSG00000196616 or ENSG00000197894 or ENSG00000198099 or ENSG00000248144 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.1 - - references: PMID:12054595 + - gene_reaction_rule: "ENSG00000147576 or ENSG00000172955 or ENSG00000187758 or ENSG00000196344 or ENSG00000196616 or ENSG00000197894 or ENSG00000198099 or ENSG00000248144" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.1" + - references: "PMID:12054595" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1289 + - id: "HMR_1289" - name: "" - metabolites: !!omap - m00586p: 1 @@ -120631,15 +120631,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000143149 or ENSG00000164904 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.3 - - references: PMID:12054595 + - gene_reaction_rule: "ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000143149 or ENSG00000164904" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.3" + - references: "PMID:12054595" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1290 + - id: "HMR_1290" - name: "" - metabolites: !!omap - m00586p: 1 @@ -120650,15 +120650,15 @@ - m02759p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: PMID:9784915 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "PMID:9784915" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1291 + - id: "HMR_1291" - name: "" - metabolites: !!omap - m00027p: 1 @@ -120667,15 +120667,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: PMID:12054595 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "PMID:12054595" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1292 + - id: "HMR_1292" - name: "" - metabolites: !!omap - m00027p: -1 @@ -120683,15 +120683,15 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:12054595 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:12054595" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1293 + - id: "HMR_1293" - name: "" - metabolites: !!omap - m00419p: -1 @@ -120701,15 +120701,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:12054595;PMID:12054595 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:12054595;PMID:12054595" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1294 + - id: "HMR_1294" - name: "" - metabolites: !!omap - m00584p: -1 @@ -120718,15 +120718,15 @@ - m02650p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000167306 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16 - - references: PMID:12054595 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000167306" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16" + - references: "PMID:12054595" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1295 + - id: "HMR_1295" - name: "" - metabolites: !!omap - m00425p: -1 @@ -120736,15 +120736,15 @@ - m02650p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: PMID:11673457 + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "PMID:11673457" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1296 + - id: "HMR_1296" - name: "" - metabolites: !!omap - m00423p: 1 @@ -120753,15 +120753,15 @@ - m02650p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000087008 or ENSG00000161533 or ENSG00000168306 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: PMID:12054595 + - gene_reaction_rule: "ENSG00000060971 or ENSG00000087008 or ENSG00000161533 or ENSG00000168306" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "PMID:12054595" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 2 - !!omap - - id: HMR_1297 + - id: "HMR_1297" - name: "" - metabolites: !!omap - m00422p: -1 @@ -120771,30 +120771,30 @@ - m02555p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104325 or ENSG00000242612 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.34 - - references: PMID:12054595 + - gene_reaction_rule: "ENSG00000104325 or ENSG00000242612" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.34" + - references: "PMID:12054595" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1298 + - id: "HMR_1298" - name: "" - metabolites: !!omap - m00401p: -1 - m00422p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 5.3.3.8 - - references: PMID:12054595 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.3.8" + - references: "PMID:12054595" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1299 + - id: "HMR_1299" - name: "" - metabolites: !!omap - m00397p: 1 @@ -120802,15 +120802,15 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:12054595 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:12054595" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1300 + - id: "HMR_1300" - name: "" - metabolites: !!omap - m00397p: -1 @@ -120820,15 +120820,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:12054595;PMID:12054595 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:12054595;PMID:12054595" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1301 + - id: "HMR_1301" - name: "" - metabolites: !!omap - m00401p: -1 @@ -120839,15 +120839,15 @@ - m02652p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000167306 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16 - - references: + - gene_reaction_rule: "ENSG00000060971 and ENSG00000167306" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16" + - references: "" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1302 + - id: "HMR_1302" - name: "" - metabolites: !!omap - m01597p: 1 @@ -120857,15 +120857,15 @@ - m02652p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101473 or ENSG00000136881 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.27;2.3.1.65 - - references: + - gene_reaction_rule: "ENSG00000101473 or ENSG00000136881" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.27;2.3.1.65" + - references: "" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1303 + - id: "HMR_1303" - name: "" - metabolites: !!omap - m00015p: 1 @@ -120875,15 +120875,15 @@ - m02652p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_1304 + - id: "HMR_1304" - name: "" - metabolites: !!omap - m00014p: 1 @@ -120893,15 +120893,15 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: PMID:11673457 + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "PMID:11673457" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_4796 + - id: "HMR_4796" - name: "" - metabolites: !!omap - m01974c: 1 @@ -120910,15 +120910,15 @@ - m02418c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099998 or ENSG00000100031 or ENSG00000100121 or ENSG00000131067 or ENSG00000133475 or ENSG00000167741 or ENSG00000274252 - - rxnFrom: HMRdatabase - - eccodes: 2.3.2.2 - - references: PMID:1968061 + - gene_reaction_rule: "ENSG00000099998 or ENSG00000100031 or ENSG00000100121 or ENSG00000131067 or ENSG00000133475 or ENSG00000167741 or ENSG00000274252" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.2.2" + - references: "PMID:1968061" - subsystem: - - Leukotriene metabolism + - "Leukotriene metabolism" - confidence_score: 0 - !!omap - - id: HMR_8545 + - id: "HMR_8545" - name: "" - metabolites: !!omap - m00306c: 1 @@ -120926,15 +120926,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000179477 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.- - - references: + - gene_reaction_rule: "ENSG00000179477" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.-" + - references: "" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8546 + - id: "HMR_8546" - name: "" - metabolites: !!omap - m00013c: -1 @@ -120944,15 +120944,15 @@ - m02785c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157326 or ENSG00000159228 or ENSG00000159231 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000157326 or ENSG00000159228 or ENSG00000159231" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8547 + - id: "HMR_8547" - name: "" - metabolites: !!omap - m01986c: 1 @@ -120961,15 +120961,15 @@ - m02370c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8548 + - id: "HMR_8548" - name: "" - metabolites: !!omap - m01974r: 1 @@ -120978,15 +120978,15 @@ - m02418r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099998 or ENSG00000100031 or ENSG00000100121 or ENSG00000131067 or ENSG00000133475 or ENSG00000149435 or ENSG00000167741 - - rxnFrom: HMRdatabase - - eccodes: 2.3.2.2 - - references: + - gene_reaction_rule: "ENSG00000099998 or ENSG00000100031 or ENSG00000100121 or ENSG00000131067 or ENSG00000133475 or ENSG00000149435 or ENSG00000167741" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.2.2" + - references: "" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8549 + - id: "HMR_8549" - name: "" - metabolites: !!omap - m01974c: 1 @@ -120995,15 +120995,15 @@ - m02370c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8550 + - id: "HMR_8550" - name: "" - metabolites: !!omap - m02026r: -1 @@ -121011,15 +121011,15 @@ - m02366r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000213316 - - rxnFrom: HMRdatabase - - eccodes: 4.4.1.20 - - references: + - gene_reaction_rule: "ENSG00000213316" + - rxnFrom: "HMRdatabase" + - eccodes: "4.4.1.20" + - references: "" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8552 + - id: "HMR_8552" - name: "" - metabolites: !!omap - m01986c: 1 @@ -121028,15 +121028,15 @@ - m02418c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8554 + - id: "HMR_8554" - name: "" - metabolites: !!omap - m00324r: 1 @@ -121048,15 +121048,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197446 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000197446" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8555 + - id: "HMR_8555" - name: "" - metabolites: !!omap - m00428r: 1 @@ -121068,15 +121068,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000186526 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000186526" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8556 + - id: "HMR_8556" - name: "" - metabolites: !!omap - m00270r: 1 @@ -121088,15 +121088,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000186204 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000186204" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8557 + - id: "HMR_8557" - name: "" - metabolites: !!omap - m01362c: -1 @@ -121108,15 +121108,15 @@ - m02794c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073756 or ENSG00000095303 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.1 - - references: + - gene_reaction_rule: "ENSG00000073756 or ENSG00000095303" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.1" + - references: "" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8558 + - id: "HMR_8558" - name: "" - metabolites: !!omap - m01362r: -1 @@ -121128,45 +121128,45 @@ - m02794r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073756 or ENSG00000095303 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.1 - - references: + - gene_reaction_rule: "ENSG00000073756 or ENSG00000095303" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.1" + - references: "" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8559 + - id: "HMR_8559" - name: "" - metabolites: !!omap - m02783r: -1 - m02794r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107317 or ENSG00000163106 - - rxnFrom: HMRdatabase - - eccodes: 5.3.99.2 - - references: + - gene_reaction_rule: "ENSG00000107317 or ENSG00000163106" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.99.2" + - references: "" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8560 + - id: "HMR_8560" - name: "" - metabolites: !!omap - m02786r: -1 - m02794r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110958 or ENSG00000148334 or ENSG00000148344 - - rxnFrom: HMRdatabase - - eccodes: 5.3.99.3 - - references: + - gene_reaction_rule: "ENSG00000110958 or ENSG00000148334 or ENSG00000148344" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.99.3" + - references: "" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8561 + - id: "HMR_8561" - name: "" - metabolites: !!omap - m00585r: 1 @@ -121176,15 +121176,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0154 + - id: "HMR_0154" - name: "" - metabolites: !!omap - m01597c: 1 @@ -121194,15 +121194,15 @@ - m02774c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000123130 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: PMID:11013297;PMID:11013297 + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000123130 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "PMID:11013297;PMID:11013297" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0189 + - id: "HMR_0189" - name: "" - metabolites: !!omap - m01597c: 1 @@ -121212,15 +121212,15 @@ - m02345c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0193 + - id: "HMR_0193" - name: "" - metabolites: !!omap - m01597c: 1 @@ -121230,15 +121230,15 @@ - m03051c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0197 + - id: "HMR_0197" - name: "" - metabolites: !!omap - m01597c: 1 @@ -121248,15 +121248,15 @@ - m02495c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0201 + - id: "HMR_0201" - name: "" - metabolites: !!omap - m00128c: 1 @@ -121266,15 +121266,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0206 + - id: "HMR_0206" - name: "" - metabolites: !!omap - m00117c: 1 @@ -121284,15 +121284,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0210 + - id: "HMR_0210" - name: "" - metabolites: !!omap - m01141c: -1 @@ -121302,15 +121302,15 @@ - m02745c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0214 + - id: "HMR_0214" - name: "" - metabolites: !!omap - m01597c: 1 @@ -121320,15 +121320,15 @@ - m02690c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0223 + - id: "HMR_0223" - name: "" - metabolites: !!omap - m01597c: 1 @@ -121338,15 +121338,15 @@ - m02678c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0230 + - id: "HMR_0230" - name: "" - metabolites: !!omap - m01597c: 1 @@ -121356,15 +121356,15 @@ - m02677c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0234 + - id: "HMR_0234" - name: "" - metabolites: !!omap - m01191c: -1 @@ -121374,15 +121374,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0238 + - id: "HMR_0238" - name: "" - metabolites: !!omap - m01597c: 1 @@ -121392,15 +121392,15 @@ - m02456c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0242 + - id: "HMR_0242" - name: "" - metabolites: !!omap - m00003c: 1 @@ -121410,15 +121410,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0246 + - id: "HMR_0246" - name: "" - metabolites: !!omap - m01237c: -1 @@ -121428,15 +121428,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0250 + - id: "HMR_0250" - name: "" - metabolites: !!omap - m01597c: 1 @@ -121446,15 +121446,15 @@ - m02941c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: PMID:10092594;PMID:9153233;PMID:16103133;PMID:16940157;PMID:16103133;PMID:16940157;PMID:10578051;PMID:16103133;PMID:16940157;PMID:16103133;PMID:16940157;PMID:16103133;PMID:16940157;PMID:16940157 + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "PMID:10092594;PMID:9153233;PMID:16103133;PMID:16940157;PMID:16103133;PMID:16940157;PMID:10578051;PMID:16103133;PMID:16940157;PMID:16103133;PMID:16940157;PMID:16103133;PMID:16940157;PMID:16940157" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0256 + - id: "HMR_0256" - name: "" - metabolites: !!omap - m00019c: 1 @@ -121464,15 +121464,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0260 + - id: "HMR_0260" - name: "" - metabolites: !!omap - m01585c: 1 @@ -121482,15 +121482,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0264 + - id: "HMR_0264" - name: "" - metabolites: !!omap - m01597c: 1 @@ -121500,15 +121500,15 @@ - m02647c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0268 + - id: "HMR_0268" - name: "" - metabolites: !!omap - m00127c: -1 @@ -121518,15 +121518,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0272 + - id: "HMR_0272" - name: "" - metabolites: !!omap - m00115c: 1 @@ -121536,15 +121536,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0276 + - id: "HMR_0276" - name: "" - metabolites: !!omap - m00104c: 1 @@ -121554,15 +121554,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0280 + - id: "HMR_0280" - name: "" - metabolites: !!omap - m01597c: 1 @@ -121572,15 +121572,15 @@ - m02613c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0284 + - id: "HMR_0284" - name: "" - metabolites: !!omap - m01597c: 1 @@ -121590,15 +121590,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: PMID:10092594;PMID:9153233;PMID:16103133;PMID:16940157;PMID:16103133;PMID:16940157;PMID:10578051;PMID:16103133;PMID:16940157;PMID:16103133;PMID:16940157;PMID:16103133;PMID:16940157;PMID:16940157 + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "PMID:10092594;PMID:9153233;PMID:16103133;PMID:16940157;PMID:16103133;PMID:16940157;PMID:10578051;PMID:16103133;PMID:16940157;PMID:16103133;PMID:16940157;PMID:16103133;PMID:16940157;PMID:16940157" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0290 + - id: "HMR_0290" - name: "" - metabolites: !!omap - m00017c: 1 @@ -121608,15 +121608,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0294 + - id: "HMR_0294" - name: "" - metabolites: !!omap - m00007c: -1 @@ -121626,15 +121626,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0298 + - id: "HMR_0298" - name: "" - metabolites: !!omap - m01235c: 1 @@ -121644,15 +121644,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0302 + - id: "HMR_0302" - name: "" - metabolites: !!omap - m00123c: -1 @@ -121662,15 +121662,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0306 + - id: "HMR_0306" - name: "" - metabolites: !!omap - m00101c: -1 @@ -121680,15 +121680,15 @@ - m02457c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0310 + - id: "HMR_0310" - name: "" - metabolites: !!omap - m01597c: 1 @@ -121698,15 +121698,15 @@ - m02053c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0314 + - id: "HMR_0314" - name: "" - metabolites: !!omap - m01373c: 1 @@ -121716,15 +121716,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: PMID:10092594;PMID:9153233;PMID:16103133;PMID:16940157;PMID:16103133;PMID:16940157;PMID:10578051;PMID:16103133;PMID:16940157;PMID:16103133;PMID:16940157;PMID:16103133;PMID:16940157;PMID:16940157 + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "PMID:10092594;PMID:9153233;PMID:16103133;PMID:16940157;PMID:16103133;PMID:16940157;PMID:10578051;PMID:16103133;PMID:16940157;PMID:16103133;PMID:16940157;PMID:16103133;PMID:16940157;PMID:16940157" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0320 + - id: "HMR_0320" - name: "" - metabolites: !!omap - m00016c: -1 @@ -121734,15 +121734,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0324 + - id: "HMR_0324" - name: "" - metabolites: !!omap - m00006c: -1 @@ -121752,15 +121752,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0328 + - id: "HMR_0328" - name: "" - metabolites: !!omap - m01597c: 1 @@ -121770,15 +121770,15 @@ - m03047c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0332 + - id: "HMR_0332" - name: "" - metabolites: !!omap - m01597c: 1 @@ -121788,15 +121788,15 @@ - m02971c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: PMID:10092594;PMID:9153233;PMID:16103133;PMID:16940157;PMID:16103133;PMID:16940157;PMID:10578051;PMID:16103133;PMID:16940157;PMID:16103133;PMID:16940157;PMID:16103133;PMID:16940157;PMID:16940157 + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "PMID:10092594;PMID:9153233;PMID:16103133;PMID:16940157;PMID:16103133;PMID:16940157;PMID:10578051;PMID:16103133;PMID:16940157;PMID:16103133;PMID:16940157;PMID:16103133;PMID:16940157;PMID:16940157" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0338 + - id: "HMR_0338" - name: "" - metabolites: !!omap - m00025c: -1 @@ -121806,15 +121806,15 @@ - m02564c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0342 + - id: "HMR_0342" - name: "" - metabolites: !!omap - m01432c: 1 @@ -121824,15 +121824,15 @@ - m02110c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0346 + - id: "HMR_0346" - name: "" - metabolites: !!omap - m01597c: 1 @@ -121842,15 +121842,15 @@ - m03153c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0350 + - id: "HMR_0350" - name: "" - metabolites: !!omap - m01597c: 1 @@ -121860,15 +121860,15 @@ - m02390c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0354 + - id: "HMR_0354" - name: "" - metabolites: !!omap - m00108c: -1 @@ -121878,15 +121878,15 @@ - m02939c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0358 + - id: "HMR_0358" - name: "" - metabolites: !!omap - m00125c: -1 @@ -121896,15 +121896,15 @@ - m02648c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0362 + - id: "HMR_0362" - name: "" - metabolites: !!omap - m00103c: -1 @@ -121914,15 +121914,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0366 + - id: "HMR_0366" - name: "" - metabolites: !!omap - m00121c: -1 @@ -121932,15 +121932,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0370 + - id: "HMR_0370" - name: "" - metabolites: !!omap - m00134c: -1 @@ -121950,15 +121950,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0374 + - id: "HMR_0374" - name: "" - metabolites: !!omap - m00113c: -1 @@ -121968,15 +121968,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0378 + - id: "HMR_0378" - name: "" - metabolites: !!omap - m00095c: -1 @@ -121986,15 +121986,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0382 + - id: "HMR_0382" - name: "" - metabolites: !!omap - m00010c: 1 @@ -122004,15 +122004,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0386 + - id: "HMR_0386" - name: "" - metabolites: !!omap - m00341c: 1 @@ -122022,15 +122022,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0390 + - id: "HMR_0390" - name: "" - metabolites: !!omap - m00260c: 1 @@ -122040,15 +122040,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0394 + - id: "HMR_0394" - name: "" - metabolites: !!omap - m00315c: 1 @@ -122058,15 +122058,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0398 + - id: "HMR_0398" - name: "" - metabolites: !!omap - m01597c: 1 @@ -122076,15 +122076,15 @@ - m02391c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0402 + - id: "HMR_0402" - name: "" - metabolites: !!omap - m01597c: 1 @@ -122094,15 +122094,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0406 + - id: "HMR_0406" - name: "" - metabolites: !!omap - m01597c: 1 @@ -122112,15 +122112,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0410 + - id: "HMR_0410" - name: "" - metabolites: !!omap - m01362c: 1 @@ -122130,15 +122130,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0414 + - id: "HMR_0414" - name: "" - metabolites: !!omap - m00119c: -1 @@ -122148,15 +122148,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0418 + - id: "HMR_0418" - name: "" - metabolites: !!omap - m00131c: -1 @@ -122166,15 +122166,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0422 + - id: "HMR_0422" - name: "" - metabolites: !!omap - m00110c: -1 @@ -122184,15 +122184,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0426 + - id: "HMR_0426" - name: "" - metabolites: !!omap - m00093c: -1 @@ -122202,15 +122202,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0430 + - id: "HMR_0430" - name: "" - metabolites: !!omap - m00008c: 1 @@ -122220,15 +122220,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0434 + - id: "HMR_0434" - name: "" - metabolites: !!omap - m00021c: 1 @@ -122238,15 +122238,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0438 + - id: "HMR_0438" - name: "" - metabolites: !!omap - m00264c: -1 @@ -122256,15 +122256,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_3009 + - id: "HMR_3009" - name: "" - metabolites: !!omap - m01597p: 1 @@ -122274,15 +122274,15 @@ - m02774p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: PMID:11013297;PMID:11013297 + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "PMID:11013297;PMID:11013297" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_3475 + - id: "HMR_3475" - name: "" - metabolites: !!omap - m01252p: 1 @@ -122292,15 +122292,15 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101473 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.27 - - references: PMID:10092594;PMID:16756494 + - gene_reaction_rule: "ENSG00000101473" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.27" + - references: "PMID:10092594;PMID:16756494" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_3476 + - id: "HMR_3476" - name: "" - metabolites: !!omap - m01597p: 1 @@ -122310,15 +122310,15 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:9166898 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:9166898" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_3477 + - id: "HMR_3477" - name: "" - metabolites: !!omap - m01597c: 1 @@ -122328,15 +122328,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:9166898 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:9166898" - subsystem: - - Acyl-CoA hydrolysis + - "Acyl-CoA hydrolysis" - confidence_score: 0 - !!omap - - id: HMR_0159 + - id: "HMR_0159" - name: "" - metabolites: !!omap - m01412c: -1 @@ -122345,15 +122345,15 @@ - m02635c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: PMID:12133002;PMID:4475632;PMID:5810070;UNIPROT:Q15125 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "PMID:12133002;PMID:4475632;PMID:5810070;UNIPROT:Q15125" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2591 + - id: "HMR_2591" - name: "" - metabolites: !!omap - m01261c: 1 @@ -122362,15 +122362,15 @@ - m02634c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: PMID:14598172;PMID:2351134;PMID:6361812;PMID:8132483 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "PMID:14598172;PMID:2351134;PMID:6361812;PMID:8132483" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2594 + - id: "HMR_2594" - name: "" - metabolites: !!omap - m01597c: -1 @@ -122379,15 +122379,15 @@ - m02774c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: PMID:12133002;PMID:4475632;PMID:5810070;UNIPROT:Q15125 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "PMID:12133002;PMID:4475632;PMID:5810070;UNIPROT:Q15125" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2599 + - id: "HMR_2599" - name: "" - metabolites: !!omap - m01597c: -1 @@ -122396,15 +122396,15 @@ - m02444c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: PMID:1735445;PMID:1988962;PMID:2355017;PMID:6361812;PMID:7892212 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "PMID:1735445;PMID:1988962;PMID:2355017;PMID:6361812;PMID:7892212" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2602 + - id: "HMR_2602" - name: "" - metabolites: !!omap - m01597c: -1 @@ -122413,15 +122413,15 @@ - m02348c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2605 + - id: "HMR_2605" - name: "" - metabolites: !!omap - m01597c: -1 @@ -122430,15 +122430,15 @@ - m03050c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2608 + - id: "HMR_2608" - name: "" - metabolites: !!omap - m01597c: -1 @@ -122447,15 +122447,15 @@ - m02973c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2611 + - id: "HMR_2611" - name: "" - metabolites: !!omap - m00129c: -1 @@ -122464,15 +122464,15 @@ - m02974c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2614 + - id: "HMR_2614" - name: "" - metabolites: !!omap - m00118c: -1 @@ -122481,15 +122481,15 @@ - m02975c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2620 + - id: "HMR_2620" - name: "" - metabolites: !!omap - m01141c: -1 @@ -122498,15 +122498,15 @@ - m02976c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2623 + - id: "HMR_2623" - name: "" - metabolites: !!omap - m01597c: -1 @@ -122515,15 +122515,15 @@ - m02689c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2626 + - id: "HMR_2626" - name: "" - metabolites: !!omap - m01597c: -1 @@ -122532,15 +122532,15 @@ - m02678c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: PMID:1735445;PMID:1988962;PMID:2355017;PMID:6361812;PMID:7892212;PMID:14517221;PMID:9691089;PMID:11790793;PMID:14711372;PMID:11356169;PMID:9344464 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "PMID:1735445;PMID:1988962;PMID:2355017;PMID:6361812;PMID:7892212;PMID:14517221;PMID:9691089;PMID:11790793;PMID:14711372;PMID:11356169;PMID:9344464" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2633 + - id: "HMR_2633" - name: "" - metabolites: !!omap - m01191c: -1 @@ -122549,15 +122549,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2636 + - id: "HMR_2636" - name: "" - metabolites: !!omap - m01597c: -1 @@ -122566,15 +122566,15 @@ - m02677c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: PMID:1735445;PMID:1988962;PMID:2355017;PMID:6361812;PMID:7892212 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "PMID:1735445;PMID:1988962;PMID:2355017;PMID:6361812;PMID:7892212" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2642 + - id: "HMR_2642" - name: "" - metabolites: !!omap - m01597c: -1 @@ -122583,15 +122583,15 @@ - m02348c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2648 + - id: "HMR_2648" - name: "" - metabolites: !!omap - m00004c: -1 @@ -122600,15 +122600,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2651 + - id: "HMR_2651" - name: "" - metabolites: !!omap - m01237c: -1 @@ -122617,15 +122617,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2654 + - id: "HMR_2654" - name: "" - metabolites: !!omap - m01597c: -1 @@ -122634,15 +122634,15 @@ - m02941c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2657 + - id: "HMR_2657" - name: "" - metabolites: !!omap - m00020c: -1 @@ -122651,15 +122651,15 @@ - m02639c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2660 + - id: "HMR_2660" - name: "" - metabolites: !!omap - m01586c: 1 @@ -122668,15 +122668,15 @@ - m02640c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2663 + - id: "HMR_2663" - name: "" - metabolites: !!omap - m01597c: -1 @@ -122685,15 +122685,15 @@ - m02647c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: PMID:1735445;PMID:1988962;PMID:2355017;PMID:6361812;PMID:7892212 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "PMID:1735445;PMID:1988962;PMID:2355017;PMID:6361812;PMID:7892212" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2666 + - id: "HMR_2666" - name: "" - metabolites: !!omap - m00126c: 1 @@ -122702,15 +122702,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2669 + - id: "HMR_2669" - name: "" - metabolites: !!omap - m00116c: -1 @@ -122719,15 +122719,15 @@ - m02638c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2672 + - id: "HMR_2672" - name: "" - metabolites: !!omap - m00105c: 1 @@ -122736,15 +122736,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2675 + - id: "HMR_2675" - name: "" - metabolites: !!omap - m01597c: -1 @@ -122753,15 +122753,15 @@ - m02612c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2678 + - id: "HMR_2678" - name: "" - metabolites: !!omap - m01597c: -1 @@ -122770,15 +122770,15 @@ - m02348c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2681 + - id: "HMR_2681" - name: "" - metabolites: !!omap - m00018c: -1 @@ -122787,15 +122787,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2684 + - id: "HMR_2684" - name: "" - metabolites: !!omap - m00007c: -1 @@ -122804,15 +122804,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2687 + - id: "HMR_2687" - name: "" - metabolites: !!omap - m01236c: -1 @@ -122821,15 +122821,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2690 + - id: "HMR_2690" - name: "" - metabolites: !!omap - m00122c: 1 @@ -122838,15 +122838,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2693 + - id: "HMR_2693" - name: "" - metabolites: !!omap - m00100c: 1 @@ -122855,15 +122855,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2699 + - id: "HMR_2699" - name: "" - metabolites: !!omap - m01597c: -1 @@ -122872,15 +122872,15 @@ - m02348c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2702 + - id: "HMR_2702" - name: "" - metabolites: !!omap - m01597c: -1 @@ -122889,15 +122889,15 @@ - m02348c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2705 + - id: "HMR_2705" - name: "" - metabolites: !!omap - m00016c: -1 @@ -122906,15 +122906,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2708 + - id: "HMR_2708" - name: "" - metabolites: !!omap - m00006c: -1 @@ -122923,15 +122923,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2711 + - id: "HMR_2711" - name: "" - metabolites: !!omap - m01597c: -1 @@ -122940,15 +122940,15 @@ - m02637c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2714 + - id: "HMR_2714" - name: "" - metabolites: !!omap - m00107c: 1 @@ -122957,15 +122957,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2717 + - id: "HMR_2717" - name: "" - metabolites: !!omap - m00124c: 1 @@ -122974,15 +122974,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2720 + - id: "HMR_2720" - name: "" - metabolites: !!omap - m00102c: 1 @@ -122991,15 +122991,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2726 + - id: "HMR_2726" - name: "" - metabolites: !!omap - m00120c: 1 @@ -123008,15 +123008,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2730 + - id: "HMR_2730" - name: "" - metabolites: !!omap - m00095c: -1 @@ -123025,15 +123025,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2733 + - id: "HMR_2733" - name: "" - metabolites: !!omap - m00011c: 1 @@ -123042,15 +123042,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2736 + - id: "HMR_2736" - name: "" - metabolites: !!omap - m00342c: 1 @@ -123059,15 +123059,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2739 + - id: "HMR_2739" - name: "" - metabolites: !!omap - m00261c: 1 @@ -123076,15 +123076,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2742 + - id: "HMR_2742" - name: "" - metabolites: !!omap - m01597c: -1 @@ -123093,15 +123093,15 @@ - m02391c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: PMID:1735445;PMID:1988962;PMID:2355017;PMID:6361812;PMID:7892212 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "PMID:1735445;PMID:1988962;PMID:2355017;PMID:6361812;PMID:7892212" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2746 + - id: "HMR_2746" - name: "" - metabolites: !!omap - m01597c: -1 @@ -123110,15 +123110,15 @@ - m02348c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2752 + - id: "HMR_2752" - name: "" - metabolites: !!omap - m01597c: -1 @@ -123127,15 +123127,15 @@ - m02348c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2755 + - id: "HMR_2755" - name: "" - metabolites: !!omap - m01363c: -1 @@ -123144,15 +123144,15 @@ - m02348c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: PMID:1735445;PMID:1988962;PMID:2355017;PMID:6361812;PMID:7892212 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "PMID:1735445;PMID:1988962;PMID:2355017;PMID:6361812;PMID:7892212" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2759 + - id: "HMR_2759" - name: "" - metabolites: !!omap - m00119c: -1 @@ -123161,15 +123161,15 @@ - m02636c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2762 + - id: "HMR_2762" - name: "" - metabolites: !!omap - m00092c: 1 @@ -123178,15 +123178,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2768 + - id: "HMR_2768" - name: "" - metabolites: !!omap - m00009c: -1 @@ -123195,15 +123195,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2771 + - id: "HMR_2771" - name: "" - metabolites: !!omap - m00022c: 1 @@ -123213,15 +123213,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2774 + - id: "HMR_2774" - name: "" - metabolites: !!omap - m00263c: 1 @@ -123230,15 +123230,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_2877 + - id: "HMR_2877" - name: "" - metabolites: !!omap - m00316c: 1 @@ -123247,15 +123247,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_3032 + - id: "HMR_3032" - name: "" - metabolites: !!omap - m01597c: -1 @@ -123264,15 +123264,15 @@ - m02644c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: PMID:1735445;PMID:1988962;PMID:2355017;PMID:6361812;PMID:7892212 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "PMID:1735445;PMID:1988962;PMID:2355017;PMID:6361812;PMID:7892212" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_3521 + - id: "HMR_3521" - name: "" - metabolites: !!omap - m00933c: -1 @@ -123281,15 +123281,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_8419 + - id: "HMR_8419" - name: "" - metabolites: !!omap - m00563c: -1 @@ -123298,15 +123298,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (cytosolic) + - "Carnitine shuttle (cytosolic)" - confidence_score: 0 - !!omap - - id: HMR_0160 + - id: "HMR_0160" - name: "" - metabolites: !!omap - m02348c: -1 @@ -123315,15 +123315,15 @@ - m02635m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172;PMID:18406340;PMID:6361812;PMID:8132483;PMID:1735445;PMID:1988962;PMID:2351134;PMID:2355017;PMID:7892212 + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172;PMID:18406340;PMID:6361812;PMID:8132483;PMID:1735445;PMID:1988962;PMID:2351134;PMID:2355017;PMID:7892212" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_0161 + - id: "HMR_0161" - name: "" - metabolites: !!omap - m01412m: 1 @@ -123332,15 +123332,15 @@ - m02635m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: PMID:12133002;PMID:4475632;PMID:5810070;UNIPROT:Q15125 + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "PMID:12133002;PMID:4475632;PMID:5810070;UNIPROT:Q15125" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_0162 + - id: "HMR_0162" - name: "" - metabolites: !!omap - m02348c: 1 @@ -123349,15 +123349,15 @@ - m02409m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172;PMID:18406340;PMID:6361812;PMID:8132483;PMID:1735445;PMID:1988962;PMID:2351134;PMID:2355017;PMID:7892212 + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172;PMID:18406340;PMID:6361812;PMID:8132483;PMID:1735445;PMID:1988962;PMID:2351134;PMID:2355017;PMID:7892212" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_0163 + - id: "HMR_0163" - name: "" - metabolites: !!omap - m01597m: -1 @@ -123366,15 +123366,15 @@ - m02644m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005469 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.137 - - references: PMID:1735445;PMID:1988962;PMID:2355017;PMID:6361812;PMID:7892212 + - gene_reaction_rule: "ENSG00000005469" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.137" + - references: "PMID:1735445;PMID:1988962;PMID:2355017;PMID:6361812;PMID:7892212" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2592 + - id: "HMR_2592" - name: "" - metabolites: !!omap - m02348c: 1 @@ -123383,15 +123383,15 @@ - m02634m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 or ENSG00000197119 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172;PMID:18406340;PMID:6361812;PMID:8132483;PMID:1735445;PMID:1988962;PMID:2351134;PMID:2355017;PMID:7892212 + - gene_reaction_rule: "ENSG00000178537 or ENSG00000197119" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172;PMID:18406340;PMID:6361812;PMID:8132483;PMID:1735445;PMID:1988962;PMID:2351134;PMID:2355017;PMID:7892212" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2593 + - id: "HMR_2593" - name: "" - metabolites: !!omap - m01261m: 1 @@ -123400,15 +123400,15 @@ - m02634m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: PMID:14598172;PMID:2351134;PMID:6361812;PMID:8132483 + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "PMID:14598172;PMID:2351134;PMID:6361812;PMID:8132483" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2596 + - id: "HMR_2596" - name: "" - metabolites: !!omap - m02348c: -1 @@ -123417,15 +123417,15 @@ - m02657m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 or ENSG00000197119 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172;PMID:18406340;PMID:6361812;PMID:8132483;PMID:1735445;PMID:1988962;PMID:2351134;PMID:2355017;PMID:7892212 + - gene_reaction_rule: "ENSG00000178537 or ENSG00000197119" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172;PMID:18406340;PMID:6361812;PMID:8132483;PMID:1735445;PMID:1988962;PMID:2351134;PMID:2355017;PMID:7892212" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2598 + - id: "HMR_2598" - name: "" - metabolites: !!omap - m01597m: -1 @@ -123434,15 +123434,15 @@ - m02774m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: PMID:12133002;PMID:4475632;PMID:5810070;UNIPROT:Q15125 + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "PMID:12133002;PMID:4475632;PMID:5810070;UNIPROT:Q15125" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2600 + - id: "HMR_2600" - name: "" - metabolites: !!omap - m02348c: 1 @@ -123451,15 +123451,15 @@ - m02443m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172;PMID:18406340;PMID:6361812;PMID:8132483;PMID:1735445;PMID:1988962;PMID:2351134;PMID:2355017;PMID:7892212 + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172;PMID:18406340;PMID:6361812;PMID:8132483;PMID:1735445;PMID:1988962;PMID:2351134;PMID:2355017;PMID:7892212" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2601 + - id: "HMR_2601" - name: "" - metabolites: !!omap - m01597m: -1 @@ -123468,15 +123468,15 @@ - m02444m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: PMID:1735445;PMID:1988962;PMID:2355017;PMID:6361812;PMID:7892212 + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "PMID:1735445;PMID:1988962;PMID:2355017;PMID:6361812;PMID:7892212" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2603 + - id: "HMR_2603" - name: "" - metabolites: !!omap - m01729c: 1 @@ -123485,15 +123485,15 @@ - m02348m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2604 + - id: "HMR_2604" - name: "" - metabolites: !!omap - m01597m: -1 @@ -123502,15 +123502,15 @@ - m02348m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2606 + - id: "HMR_2606" - name: "" - metabolites: !!omap - m02348c: -1 @@ -123519,15 +123519,15 @@ - m03049m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2607 + - id: "HMR_2607" - name: "" - metabolites: !!omap - m01597m: -1 @@ -123536,15 +123536,15 @@ - m03050m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2609 + - id: "HMR_2609" - name: "" - metabolites: !!omap - m02348c: -1 @@ -123553,15 +123553,15 @@ - m02973m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2610 + - id: "HMR_2610" - name: "" - metabolites: !!omap - m01597m: -1 @@ -123570,15 +123570,15 @@ - m02973m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2612 + - id: "HMR_2612" - name: "" - metabolites: !!omap - m02348c: -1 @@ -123587,15 +123587,15 @@ - m02974m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2613 + - id: "HMR_2613" - name: "" - metabolites: !!omap - m00129m: -1 @@ -123604,15 +123604,15 @@ - m02974m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2616 + - id: "HMR_2616" - name: "" - metabolites: !!omap - m02348c: -1 @@ -123621,15 +123621,15 @@ - m02975m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2618 + - id: "HMR_2618" - name: "" - metabolites: !!omap - m00118m: -1 @@ -123638,15 +123638,15 @@ - m02975m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2621 + - id: "HMR_2621" - name: "" - metabolites: !!omap - m02348c: -1 @@ -123655,15 +123655,15 @@ - m02976m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2622 + - id: "HMR_2622" - name: "" - metabolites: !!omap - m01141m: -1 @@ -123672,15 +123672,15 @@ - m02976m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2624 + - id: "HMR_2624" - name: "" - metabolites: !!omap - m02348c: -1 @@ -123689,15 +123689,15 @@ - m02688m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2625 + - id: "HMR_2625" - name: "" - metabolites: !!omap - m01597m: -1 @@ -123706,15 +123706,15 @@ - m02689m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2629 + - id: "HMR_2629" - name: "" - metabolites: !!omap - m02348c: -1 @@ -123723,15 +123723,15 @@ - m02411m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172;PMID:18406340;PMID:6361812;PMID:8132483;PMID:1735445;PMID:1988962;PMID:2351134;PMID:2355017;PMID:7892212PMID:9399886 + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172;PMID:18406340;PMID:6361812;PMID:8132483;PMID:1735445;PMID:1988962;PMID:2351134;PMID:2355017;PMID:7892212PMID:9399886" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2630 + - id: "HMR_2630" - name: "" - metabolites: !!omap - m01597m: -1 @@ -123740,15 +123740,15 @@ - m02678m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: PMID:1735445;PMID:1988962;PMID:2355017;PMID:6361812;PMID:7892212PMID:7711730 + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "PMID:1735445;PMID:1988962;PMID:2355017;PMID:6361812;PMID:7892212PMID:7711730" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2634 + - id: "HMR_2634" - name: "" - metabolites: !!omap - m02117c: 1 @@ -123757,15 +123757,15 @@ - m02348m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2635 + - id: "HMR_2635" - name: "" - metabolites: !!omap - m01191m: -1 @@ -123774,15 +123774,15 @@ - m02348m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2638 + - id: "HMR_2638" - name: "" - metabolites: !!omap - m02348c: -1 @@ -123791,15 +123791,15 @@ - m02676m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172;PMID:18406340;PMID:6361812;PMID:8132483;PMID:1735445;PMID:1988962;PMID:2351134;PMID:2355017;PMID:7892212 + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172;PMID:18406340;PMID:6361812;PMID:8132483;PMID:1735445;PMID:1988962;PMID:2351134;PMID:2355017;PMID:7892212" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2640 + - id: "HMR_2640" - name: "" - metabolites: !!omap - m01597m: -1 @@ -123808,15 +123808,15 @@ - m02677m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: PMID:1735445;PMID:1988962;PMID:2355017;PMID:6361812;PMID:7892212 + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "PMID:1735445;PMID:1988962;PMID:2355017;PMID:6361812;PMID:7892212" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2644 + - id: "HMR_2644" - name: "" - metabolites: !!omap - m02100c: 1 @@ -123825,15 +123825,15 @@ - m02348m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2646 + - id: "HMR_2646" - name: "" - metabolites: !!omap - m01597m: -1 @@ -123842,15 +123842,15 @@ - m02348m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2649 + - id: "HMR_2649" - name: "" - metabolites: !!omap - m02102c: 1 @@ -123859,15 +123859,15 @@ - m02348m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2650 + - id: "HMR_2650" - name: "" - metabolites: !!omap - m00004m: -1 @@ -123876,15 +123876,15 @@ - m02348m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2652 + - id: "HMR_2652" - name: "" - metabolites: !!omap - m02103c: 1 @@ -123893,15 +123893,15 @@ - m02348m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2653 + - id: "HMR_2653" - name: "" - metabolites: !!omap - m01237m: -1 @@ -123910,15 +123910,15 @@ - m02348m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2655 + - id: "HMR_2655" - name: "" - metabolites: !!omap - m02348c: -1 @@ -123927,15 +123927,15 @@ - m02940m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2656 + - id: "HMR_2656" - name: "" - metabolites: !!omap - m01597m: -1 @@ -123944,15 +123944,15 @@ - m02941m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2658 + - id: "HMR_2658" - name: "" - metabolites: !!omap - m02348c: -1 @@ -123961,15 +123961,15 @@ - m02639m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2659 + - id: "HMR_2659" - name: "" - metabolites: !!omap - m00020m: -1 @@ -123978,15 +123978,15 @@ - m02639m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2661 + - id: "HMR_2661" - name: "" - metabolites: !!omap - m02348c: -1 @@ -123995,15 +123995,15 @@ - m02640m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2662 + - id: "HMR_2662" - name: "" - metabolites: !!omap - m01586m: 1 @@ -124012,15 +124012,15 @@ - m02640m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2664 + - id: "HMR_2664" - name: "" - metabolites: !!omap - m02348c: -1 @@ -124029,15 +124029,15 @@ - m02410m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172;PMID:18406340;PMID:6361812;PMID:8132483;PMID:1735445;PMID:1988962;PMID:2351134;PMID:2355017;PMID:7892212 + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172;PMID:18406340;PMID:6361812;PMID:8132483;PMID:1735445;PMID:1988962;PMID:2351134;PMID:2355017;PMID:7892212" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2665 + - id: "HMR_2665" - name: "" - metabolites: !!omap - m01597m: -1 @@ -124046,15 +124046,15 @@ - m02647m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: PMID:1735445;PMID:1988962;PMID:2355017;PMID:6361812;PMID:7892212 + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "PMID:1735445;PMID:1988962;PMID:2355017;PMID:6361812;PMID:7892212" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2667 + - id: "HMR_2667" - name: "" - metabolites: !!omap - m00126c: -1 @@ -124063,15 +124063,15 @@ - m02348m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2668 + - id: "HMR_2668" - name: "" - metabolites: !!omap - m00126m: 1 @@ -124080,15 +124080,15 @@ - m02348m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2670 + - id: "HMR_2670" - name: "" - metabolites: !!omap - m02348c: -1 @@ -124097,15 +124097,15 @@ - m02638m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2671 + - id: "HMR_2671" - name: "" - metabolites: !!omap - m00116m: -1 @@ -124114,15 +124114,15 @@ - m02638m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2673 + - id: "HMR_2673" - name: "" - metabolites: !!omap - m00105c: -1 @@ -124131,15 +124131,15 @@ - m02348m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2674 + - id: "HMR_2674" - name: "" - metabolites: !!omap - m00105m: 1 @@ -124148,15 +124148,15 @@ - m02348m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2676 + - id: "HMR_2676" - name: "" - metabolites: !!omap - m02348c: -1 @@ -124165,15 +124165,15 @@ - m02611m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2677 + - id: "HMR_2677" - name: "" - metabolites: !!omap - m01597m: -1 @@ -124182,15 +124182,15 @@ - m02612m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2679 + - id: "HMR_2679" - name: "" - metabolites: !!omap - m01772c: 1 @@ -124199,15 +124199,15 @@ - m02348m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2680 + - id: "HMR_2680" - name: "" - metabolites: !!omap - m01597m: -1 @@ -124216,15 +124216,15 @@ - m02348m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2682 + - id: "HMR_2682" - name: "" - metabolites: !!omap - m01776c: 1 @@ -124233,15 +124233,15 @@ - m02348m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2683 + - id: "HMR_2683" - name: "" - metabolites: !!omap - m00018m: -1 @@ -124250,15 +124250,15 @@ - m02348m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2685 + - id: "HMR_2685" - name: "" - metabolites: !!omap - m01777c: 1 @@ -124267,15 +124267,15 @@ - m02348m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2686 + - id: "HMR_2686" - name: "" - metabolites: !!omap - m00007m: -1 @@ -124284,15 +124284,15 @@ - m02348m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2688 + - id: "HMR_2688" - name: "" - metabolites: !!omap - m01775c: 1 @@ -124301,15 +124301,15 @@ - m02348m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2689 + - id: "HMR_2689" - name: "" - metabolites: !!omap - m01236m: -1 @@ -124318,15 +124318,15 @@ - m02348m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2691 + - id: "HMR_2691" - name: "" - metabolites: !!omap - m00122c: -1 @@ -124335,15 +124335,15 @@ - m02348m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2692 + - id: "HMR_2692" - name: "" - metabolites: !!omap - m00122m: 1 @@ -124352,15 +124352,15 @@ - m02348m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2695 + - id: "HMR_2695" - name: "" - metabolites: !!omap - m00100c: -1 @@ -124369,15 +124369,15 @@ - m02348m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2697 + - id: "HMR_2697" - name: "" - metabolites: !!omap - m00100m: 1 @@ -124386,15 +124386,15 @@ - m02348m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2700 + - id: "HMR_2700" - name: "" - metabolites: !!omap - m02051c: 1 @@ -124403,15 +124403,15 @@ - m02348m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2701 + - id: "HMR_2701" - name: "" - metabolites: !!omap - m01597m: -1 @@ -124420,15 +124420,15 @@ - m02348m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2703 + - id: "HMR_2703" - name: "" - metabolites: !!omap - m01724c: 1 @@ -124437,15 +124437,15 @@ - m02348m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2704 + - id: "HMR_2704" - name: "" - metabolites: !!omap - m01597m: -1 @@ -124454,15 +124454,15 @@ - m02348m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2706 + - id: "HMR_2706" - name: "" - metabolites: !!omap - m01727c: 1 @@ -124471,15 +124471,15 @@ - m02348m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2707 + - id: "HMR_2707" - name: "" - metabolites: !!omap - m00016m: -1 @@ -124488,15 +124488,15 @@ - m02348m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2709 + - id: "HMR_2709" - name: "" - metabolites: !!omap - m01726c: 1 @@ -124505,15 +124505,15 @@ - m02348m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2710 + - id: "HMR_2710" - name: "" - metabolites: !!omap - m00006m: -1 @@ -124522,15 +124522,15 @@ - m02348m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2712 + - id: "HMR_2712" - name: "" - metabolites: !!omap - m02348c: -1 @@ -124539,15 +124539,15 @@ - m02637m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2713 + - id: "HMR_2713" - name: "" - metabolites: !!omap - m01597m: -1 @@ -124556,15 +124556,15 @@ - m02637m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2715 + - id: "HMR_2715" - name: "" - metabolites: !!omap - m00107c: -1 @@ -124573,15 +124573,15 @@ - m02348m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2716 + - id: "HMR_2716" - name: "" - metabolites: !!omap - m00107m: 1 @@ -124590,15 +124590,15 @@ - m02348m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2718 + - id: "HMR_2718" - name: "" - metabolites: !!omap - m00124c: -1 @@ -124607,15 +124607,15 @@ - m02348m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2719 + - id: "HMR_2719" - name: "" - metabolites: !!omap - m00124m: 1 @@ -124624,15 +124624,15 @@ - m02348m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2722 + - id: "HMR_2722" - name: "" - metabolites: !!omap - m00102c: -1 @@ -124641,15 +124641,15 @@ - m02348m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2724 + - id: "HMR_2724" - name: "" - metabolites: !!omap - m00102m: 1 @@ -124658,15 +124658,15 @@ - m02348m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2727 + - id: "HMR_2727" - name: "" - metabolites: !!omap - m00120c: -1 @@ -124675,15 +124675,15 @@ - m02348m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2729 + - id: "HMR_2729" - name: "" - metabolites: !!omap - m00120m: 1 @@ -124692,15 +124692,15 @@ - m02348m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2731 + - id: "HMR_2731" - name: "" - metabolites: !!omap - m01723c: 1 @@ -124709,15 +124709,15 @@ - m02348m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2732 + - id: "HMR_2732" - name: "" - metabolites: !!omap - m00095m: -1 @@ -124726,15 +124726,15 @@ - m02348m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2734 + - id: "HMR_2734" - name: "" - metabolites: !!omap - m00011c: -1 @@ -124743,15 +124743,15 @@ - m02348m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2735 + - id: "HMR_2735" - name: "" - metabolites: !!omap - m00011m: 1 @@ -124760,15 +124760,15 @@ - m02348m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2737 + - id: "HMR_2737" - name: "" - metabolites: !!omap - m00342c: -1 @@ -124777,15 +124777,15 @@ - m02348m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2738 + - id: "HMR_2738" - name: "" - metabolites: !!omap - m00342m: 1 @@ -124794,15 +124794,15 @@ - m02348m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2740 + - id: "HMR_2740" - name: "" - metabolites: !!omap - m00261c: -1 @@ -124811,15 +124811,15 @@ - m02348m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2741 + - id: "HMR_2741" - name: "" - metabolites: !!omap - m00261m: 1 @@ -124828,15 +124828,15 @@ - m02348m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2744 + - id: "HMR_2744" - name: "" - metabolites: !!omap - m02348c: -1 @@ -124845,15 +124845,15 @@ - m02388m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2745 + - id: "HMR_2745" - name: "" - metabolites: !!omap - m01597m: -1 @@ -124862,15 +124862,15 @@ - m02391m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2748 + - id: "HMR_2748" - name: "" - metabolites: !!omap - m01933c: 1 @@ -124879,15 +124879,15 @@ - m02348m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2750 + - id: "HMR_2750" - name: "" - metabolites: !!omap - m01597m: -1 @@ -124896,15 +124896,15 @@ - m02348m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2753 + - id: "HMR_2753" - name: "" - metabolites: !!omap - m01774c: 1 @@ -124913,15 +124913,15 @@ - m02348m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2754 + - id: "HMR_2754" - name: "" - metabolites: !!omap - m01597m: -1 @@ -124930,15 +124930,15 @@ - m02348m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2757 + - id: "HMR_2757" - name: "" - metabolites: !!omap - m01363c: 1 @@ -124947,15 +124947,15 @@ - m02348m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2758 + - id: "HMR_2758" - name: "" - metabolites: !!omap - m01363m: -1 @@ -124964,15 +124964,15 @@ - m02348m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2760 + - id: "HMR_2760" - name: "" - metabolites: !!omap - m02348c: -1 @@ -124981,15 +124981,15 @@ - m02636m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2761 + - id: "HMR_2761" - name: "" - metabolites: !!omap - m00119m: -1 @@ -124998,15 +124998,15 @@ - m02636m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2764 + - id: "HMR_2764" - name: "" - metabolites: !!omap - m00092c: -1 @@ -125015,15 +125015,15 @@ - m02348m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2766 + - id: "HMR_2766" - name: "" - metabolites: !!omap - m00092m: 1 @@ -125032,15 +125032,15 @@ - m02348m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2769 + - id: "HMR_2769" - name: "" - metabolites: !!omap - m01770c: 1 @@ -125049,15 +125049,15 @@ - m02348m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2770 + - id: "HMR_2770" - name: "" - metabolites: !!omap - m00009m: -1 @@ -125066,15 +125066,15 @@ - m02348m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2772 + - id: "HMR_2772" - name: "" - metabolites: !!omap - m00022c: -1 @@ -125083,15 +125083,15 @@ - m02348m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2773 + - id: "HMR_2773" - name: "" - metabolites: !!omap - m00022m: 1 @@ -125101,15 +125101,15 @@ - m02348m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2775 + - id: "HMR_2775" - name: "" - metabolites: !!omap - m00263c: -1 @@ -125118,15 +125118,15 @@ - m02348m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149742 or ENSG00000175003 or ENSG00000178537 or ENSG00000197119 or ENSG00000197208" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_2776 + - id: "HMR_2776" - name: "" - metabolites: !!omap - m00263m: 1 @@ -125135,15 +125135,15 @@ - m02348m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3519 + - id: "HMR_3519" - name: "" - metabolites: !!omap - m00933m: -1 @@ -125152,15 +125152,15 @@ - m02348m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3520 + - id: "HMR_3520" - name: "" - metabolites: !!omap - m00950c: -1 @@ -125169,15 +125169,15 @@ - m02348m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_8417 + - id: "HMR_8417" - name: "" - metabolites: !!omap - m00563m: -1 @@ -125186,15 +125186,15 @@ - m02348m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_8418 + - id: "HMR_8418" - name: "" - metabolites: !!omap - m00577c: -1 @@ -125203,15 +125203,15 @@ - m02348m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (mitochondrial) + - "Carnitine shuttle (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3027 + - id: "HMR_3027" - name: "" - metabolites: !!omap - m02348c: -1 @@ -125220,15 +125220,15 @@ - m02443p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172;PMID:18406340;PMID:6361812;PMID:8132483;PMID:1735445;PMID:1988962;PMID:2351134;PMID:2355017;PMID:7892212 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172;PMID:18406340;PMID:6361812;PMID:8132483;PMID:1735445;PMID:1988962;PMID:2351134;PMID:2355017;PMID:7892212" - subsystem: - - Carnitine shuttle (peroxisomal) + - "Carnitine shuttle (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3028 + - id: "HMR_3028" - name: "" - metabolites: !!omap - m01597p: -1 @@ -125237,15 +125237,15 @@ - m02444p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: PMID:1735445;PMID:1988962;PMID:2355017;PMID:6361812;PMID:7892212 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "PMID:1735445;PMID:1988962;PMID:2355017;PMID:6361812;PMID:7892212" - subsystem: - - Carnitine shuttle (peroxisomal) + - "Carnitine shuttle (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3029 + - id: "HMR_3029" - name: "" - metabolites: !!omap - m02348c: -1 @@ -125254,15 +125254,15 @@ - m02634p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172;PMID:1735445;PMID:18406340;PMID:1988962;PMID:2351134;PMID:2355017;PMID:6361812;PMID:7892212;PMID:8132483 + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172;PMID:1735445;PMID:18406340;PMID:1988962;PMID:2351134;PMID:2355017;PMID:6361812;PMID:7892212;PMID:8132483" - subsystem: - - Carnitine shuttle (peroxisomal) + - "Carnitine shuttle (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3030 + - id: "HMR_3030" - name: "" - metabolites: !!omap - m01261p: 1 @@ -125271,15 +125271,15 @@ - m02634p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: PMID:2351134;PMID:12562770;PMID:14598172;PMID:2351134;PMID:6361812;PMID:8132483 + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "PMID:2351134;PMID:12562770;PMID:14598172;PMID:2351134;PMID:6361812;PMID:8132483" - subsystem: - - Carnitine shuttle (peroxisomal) + - "Carnitine shuttle (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3033 + - id: "HMR_3033" - name: "" - metabolites: !!omap - m02348c: -1 @@ -125288,15 +125288,15 @@ - m02409p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 or ENSG00000197119 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172;PMID:18406340;PMID:6361812;PMID:8132483;PMID:1735445;PMID:1988962;PMID:2351134;PMID:2355017;PMID:7892212 + - gene_reaction_rule: "ENSG00000178537 or ENSG00000197119" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172;PMID:18406340;PMID:6361812;PMID:8132483;PMID:1735445;PMID:1988962;PMID:2351134;PMID:2355017;PMID:7892212" - subsystem: - - Carnitine shuttle (peroxisomal) + - "Carnitine shuttle (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3034 + - id: "HMR_3034" - name: "" - metabolites: !!omap - m01597p: -1 @@ -125305,15 +125305,15 @@ - m02644p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005469 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.137 - - references: PMID:1735445;PMID:1988962;PMID:2355017;PMID:6361812;PMID:7892212 + - gene_reaction_rule: "ENSG00000005469" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.137" + - references: "PMID:1735445;PMID:1988962;PMID:2355017;PMID:6361812;PMID:7892212" - subsystem: - - Carnitine shuttle (peroxisomal) + - "Carnitine shuttle (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3035 + - id: "HMR_3035" - name: "" - metabolites: !!omap - m02348c: -1 @@ -125322,15 +125322,15 @@ - m02657p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 or ENSG00000197119 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000178537 or ENSG00000197119" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (peroxisomal) + - "Carnitine shuttle (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3037 + - id: "HMR_3037" - name: "" - metabolites: !!omap - m01597p: -1 @@ -125339,15 +125339,15 @@ - m02774p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.137 - - references: PMID:2351134;PMID:12562770 + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.137" + - references: "PMID:2351134;PMID:12562770" - subsystem: - - Carnitine shuttle (peroxisomal) + - "Carnitine shuttle (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_2778 + - id: "HMR_2778" - name: "" - metabolites: !!omap - m02348c: -1 @@ -125356,15 +125356,15 @@ - m02634r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172;PMID:18406340;PMID:6361812;PMID:8132483;PMID:1735445;PMID:1988962;PMID:2351134;PMID:2355017;PMID:7892212 + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172;PMID:18406340;PMID:6361812;PMID:8132483;PMID:1735445;PMID:1988962;PMID:2351134;PMID:2355017;PMID:7892212" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2780 + - id: "HMR_2780" - name: "" - metabolites: !!omap - m01261r: 1 @@ -125373,15 +125373,15 @@ - m02634r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: PMID:14598172;PMID:2351134;PMID:6361812;PMID:8132483 + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "PMID:14598172;PMID:2351134;PMID:6361812;PMID:8132483" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2783 + - id: "HMR_2783" - name: "" - metabolites: !!omap - m02348c: -1 @@ -125390,15 +125390,15 @@ - m02443r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 or ENSG00000197119 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172;PMID:18406340;PMID:6361812;PMID:8132483;PMID:1735445;PMID:1988962;PMID:2351134;PMID:2355017;PMID:7892212 + - gene_reaction_rule: "ENSG00000178537 or ENSG00000197119" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172;PMID:18406340;PMID:6361812;PMID:8132483;PMID:1735445;PMID:1988962;PMID:2351134;PMID:2355017;PMID:7892212" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2785 + - id: "HMR_2785" - name: "" - metabolites: !!omap - m01597r: -1 @@ -125407,15 +125407,15 @@ - m02444r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: PMID:1735445;PMID:1988962;PMID:2355017;PMID:6361812;PMID:7892212 + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "PMID:1735445;PMID:1988962;PMID:2355017;PMID:6361812;PMID:7892212" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2787 + - id: "HMR_2787" - name: "" - metabolites: !!omap - m01729c: 1 @@ -125424,15 +125424,15 @@ - m02348r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2788 + - id: "HMR_2788" - name: "" - metabolites: !!omap - m01597r: -1 @@ -125441,15 +125441,15 @@ - m02348r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2789 + - id: "HMR_2789" - name: "" - metabolites: !!omap - m02348c: -1 @@ -125458,15 +125458,15 @@ - m03049r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2790 + - id: "HMR_2790" - name: "" - metabolites: !!omap - m01597r: -1 @@ -125475,15 +125475,15 @@ - m03050r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2791 + - id: "HMR_2791" - name: "" - metabolites: !!omap - m02348c: -1 @@ -125492,15 +125492,15 @@ - m02973r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2792 + - id: "HMR_2792" - name: "" - metabolites: !!omap - m01597r: -1 @@ -125509,15 +125509,15 @@ - m02973r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2793 + - id: "HMR_2793" - name: "" - metabolites: !!omap - m02348c: -1 @@ -125526,15 +125526,15 @@ - m02974r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2794 + - id: "HMR_2794" - name: "" - metabolites: !!omap - m00129r: -1 @@ -125543,15 +125543,15 @@ - m02974r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2795 + - id: "HMR_2795" - name: "" - metabolites: !!omap - m02348c: -1 @@ -125560,15 +125560,15 @@ - m02975r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2796 + - id: "HMR_2796" - name: "" - metabolites: !!omap - m00118r: -1 @@ -125577,15 +125577,15 @@ - m02975r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2797 + - id: "HMR_2797" - name: "" - metabolites: !!omap - m02348c: -1 @@ -125594,15 +125594,15 @@ - m02976r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2798 + - id: "HMR_2798" - name: "" - metabolites: !!omap - m01141r: -1 @@ -125611,15 +125611,15 @@ - m02976r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2799 + - id: "HMR_2799" - name: "" - metabolites: !!omap - m02348c: -1 @@ -125628,15 +125628,15 @@ - m02688r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2800 + - id: "HMR_2800" - name: "" - metabolites: !!omap - m01597r: -1 @@ -125645,15 +125645,15 @@ - m02689r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2801 + - id: "HMR_2801" - name: "" - metabolites: !!omap - m02348c: -1 @@ -125662,15 +125662,15 @@ - m02411r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172;PMID:18406340;PMID:6361812;PMID:8132483;PMID:1735445;PMID:1988962;PMID:2351134;PMID:2355017;PMID:7892212PMID:9399886 + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172;PMID:18406340;PMID:6361812;PMID:8132483;PMID:1735445;PMID:1988962;PMID:2351134;PMID:2355017;PMID:7892212PMID:9399886" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2803 + - id: "HMR_2803" - name: "" - metabolites: !!omap - m01597r: -1 @@ -125679,15 +125679,15 @@ - m02678r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: PMID:1735445;PMID:1988962;PMID:2355017;PMID:6361812;PMID:7892212PMID:7711730 + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "PMID:1735445;PMID:1988962;PMID:2355017;PMID:6361812;PMID:7892212PMID:7711730" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2805 + - id: "HMR_2805" - name: "" - metabolites: !!omap - m02117c: 1 @@ -125696,15 +125696,15 @@ - m02348r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2806 + - id: "HMR_2806" - name: "" - metabolites: !!omap - m01191r: -1 @@ -125713,15 +125713,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2807 + - id: "HMR_2807" - name: "" - metabolites: !!omap - m02348c: -1 @@ -125730,15 +125730,15 @@ - m02676r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172;PMID:18406340;PMID:6361812;PMID:8132483;PMID:1735445;PMID:1988962;PMID:2351134;PMID:2355017;PMID:7892212 + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172;PMID:18406340;PMID:6361812;PMID:8132483;PMID:1735445;PMID:1988962;PMID:2351134;PMID:2355017;PMID:7892212" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2809 + - id: "HMR_2809" - name: "" - metabolites: !!omap - m01597r: -1 @@ -125747,15 +125747,15 @@ - m02677r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: PMID:1735445;PMID:1988962;PMID:2355017;PMID:6361812;PMID:7892212 + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "PMID:1735445;PMID:1988962;PMID:2355017;PMID:6361812;PMID:7892212" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2811 + - id: "HMR_2811" - name: "" - metabolites: !!omap - m02100c: 1 @@ -125764,15 +125764,15 @@ - m02348r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2812 + - id: "HMR_2812" - name: "" - metabolites: !!omap - m01597r: -1 @@ -125781,15 +125781,15 @@ - m02348r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2813 + - id: "HMR_2813" - name: "" - metabolites: !!omap - m02102c: 1 @@ -125798,15 +125798,15 @@ - m02348r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2814 + - id: "HMR_2814" - name: "" - metabolites: !!omap - m00004r: -1 @@ -125815,15 +125815,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2815 + - id: "HMR_2815" - name: "" - metabolites: !!omap - m02103c: 1 @@ -125832,15 +125832,15 @@ - m02348r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2816 + - id: "HMR_2816" - name: "" - metabolites: !!omap - m01237r: -1 @@ -125849,15 +125849,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2817 + - id: "HMR_2817" - name: "" - metabolites: !!omap - m02348c: -1 @@ -125866,15 +125866,15 @@ - m02940r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2819 + - id: "HMR_2819" - name: "" - metabolites: !!omap - m01597r: -1 @@ -125883,15 +125883,15 @@ - m02941r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2821 + - id: "HMR_2821" - name: "" - metabolites: !!omap - m02348c: -1 @@ -125900,15 +125900,15 @@ - m02639r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2822 + - id: "HMR_2822" - name: "" - metabolites: !!omap - m00020r: -1 @@ -125917,15 +125917,15 @@ - m02639r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2823 + - id: "HMR_2823" - name: "" - metabolites: !!omap - m02348c: -1 @@ -125934,15 +125934,15 @@ - m02640r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2824 + - id: "HMR_2824" - name: "" - metabolites: !!omap - m01586r: 1 @@ -125951,15 +125951,15 @@ - m02640r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2825 + - id: "HMR_2825" - name: "" - metabolites: !!omap - m02348c: 1 @@ -125968,15 +125968,15 @@ - m02410r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172;PMID:18406340;PMID:6361812;PMID:8132483;PMID:1735445;PMID:1988962;PMID:2351134;PMID:2355017;PMID:7892212 + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172;PMID:18406340;PMID:6361812;PMID:8132483;PMID:1735445;PMID:1988962;PMID:2351134;PMID:2355017;PMID:7892212" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2827 + - id: "HMR_2827" - name: "" - metabolites: !!omap - m01597r: -1 @@ -125985,15 +125985,15 @@ - m02647r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: PMID:1735445;PMID:1988962;PMID:2355017;PMID:6361812;PMID:7892212 + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "PMID:1735445;PMID:1988962;PMID:2355017;PMID:6361812;PMID:7892212" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2829 + - id: "HMR_2829" - name: "" - metabolites: !!omap - m00126c: -1 @@ -126002,15 +126002,15 @@ - m02348r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2830 + - id: "HMR_2830" - name: "" - metabolites: !!omap - m00126r: -1 @@ -126019,15 +126019,15 @@ - m02348r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2831 + - id: "HMR_2831" - name: "" - metabolites: !!omap - m02348c: -1 @@ -126036,15 +126036,15 @@ - m02638r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2832 + - id: "HMR_2832" - name: "" - metabolites: !!omap - m00116r: -1 @@ -126053,15 +126053,15 @@ - m02638r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2833 + - id: "HMR_2833" - name: "" - metabolites: !!omap - m00105c: -1 @@ -126070,15 +126070,15 @@ - m02348r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2834 + - id: "HMR_2834" - name: "" - metabolites: !!omap - m00105r: -1 @@ -126087,15 +126087,15 @@ - m02348r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2835 + - id: "HMR_2835" - name: "" - metabolites: !!omap - m02348c: -1 @@ -126104,15 +126104,15 @@ - m02611r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2836 + - id: "HMR_2836" - name: "" - metabolites: !!omap - m01597r: -1 @@ -126121,15 +126121,15 @@ - m02612r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2837 + - id: "HMR_2837" - name: "" - metabolites: !!omap - m01772c: 1 @@ -126138,15 +126138,15 @@ - m02348r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2838 + - id: "HMR_2838" - name: "" - metabolites: !!omap - m01597r: -1 @@ -126155,15 +126155,15 @@ - m02348r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2839 + - id: "HMR_2839" - name: "" - metabolites: !!omap - m01777c: 1 @@ -126172,15 +126172,15 @@ - m02348r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2840 + - id: "HMR_2840" - name: "" - metabolites: !!omap - m00007r: -1 @@ -126189,15 +126189,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2841 + - id: "HMR_2841" - name: "" - metabolites: !!omap - m01775c: 1 @@ -126206,15 +126206,15 @@ - m02348r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2842 + - id: "HMR_2842" - name: "" - metabolites: !!omap - m01236r: -1 @@ -126223,15 +126223,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2843 + - id: "HMR_2843" - name: "" - metabolites: !!omap - m01776c: 1 @@ -126240,15 +126240,15 @@ - m02348r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2844 + - id: "HMR_2844" - name: "" - metabolites: !!omap - m00018r: -1 @@ -126257,15 +126257,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2845 + - id: "HMR_2845" - name: "" - metabolites: !!omap - m00122c: -1 @@ -126274,15 +126274,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2846 + - id: "HMR_2846" - name: "" - metabolites: !!omap - m00122r: 1 @@ -126291,15 +126291,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2847 + - id: "HMR_2847" - name: "" - metabolites: !!omap - m00100c: -1 @@ -126308,15 +126308,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2848 + - id: "HMR_2848" - name: "" - metabolites: !!omap - m00100r: 1 @@ -126325,15 +126325,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2849 + - id: "HMR_2849" - name: "" - metabolites: !!omap - m02051c: 1 @@ -126342,15 +126342,15 @@ - m02348r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2850 + - id: "HMR_2850" - name: "" - metabolites: !!omap - m01597r: -1 @@ -126359,15 +126359,15 @@ - m02348r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2851 + - id: "HMR_2851" - name: "" - metabolites: !!omap - m01724c: 1 @@ -126376,15 +126376,15 @@ - m02348r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2852 + - id: "HMR_2852" - name: "" - metabolites: !!omap - m01597r: -1 @@ -126393,15 +126393,15 @@ - m02348r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2853 + - id: "HMR_2853" - name: "" - metabolites: !!omap - m01727c: 1 @@ -126410,15 +126410,15 @@ - m02348r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2854 + - id: "HMR_2854" - name: "" - metabolites: !!omap - m00016r: -1 @@ -126427,15 +126427,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2855 + - id: "HMR_2855" - name: "" - metabolites: !!omap - m01726c: 1 @@ -126444,15 +126444,15 @@ - m02348r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2856 + - id: "HMR_2856" - name: "" - metabolites: !!omap - m00006r: -1 @@ -126461,15 +126461,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2857 + - id: "HMR_2857" - name: "" - metabolites: !!omap - m02348c: -1 @@ -126478,15 +126478,15 @@ - m02637r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2859 + - id: "HMR_2859" - name: "" - metabolites: !!omap - m01597r: -1 @@ -126495,15 +126495,15 @@ - m02637r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2861 + - id: "HMR_2861" - name: "" - metabolites: !!omap - m00107c: -1 @@ -126512,15 +126512,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2862 + - id: "HMR_2862" - name: "" - metabolites: !!omap - m00107r: 1 @@ -126529,15 +126529,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2863 + - id: "HMR_2863" - name: "" - metabolites: !!omap - m00124c: -1 @@ -126546,15 +126546,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2864 + - id: "HMR_2864" - name: "" - metabolites: !!omap - m00124r: 1 @@ -126563,15 +126563,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2865 + - id: "HMR_2865" - name: "" - metabolites: !!omap - m00102c: -1 @@ -126580,15 +126580,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2866 + - id: "HMR_2866" - name: "" - metabolites: !!omap - m00102r: 1 @@ -126597,15 +126597,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2867 + - id: "HMR_2867" - name: "" - metabolites: !!omap - m00120c: -1 @@ -126614,15 +126614,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2868 + - id: "HMR_2868" - name: "" - metabolites: !!omap - m00120r: 1 @@ -126631,15 +126631,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2869 + - id: "HMR_2869" - name: "" - metabolites: !!omap - m01723c: 1 @@ -126648,15 +126648,15 @@ - m02348r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2870 + - id: "HMR_2870" - name: "" - metabolites: !!omap - m00095r: -1 @@ -126665,15 +126665,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2871 + - id: "HMR_2871" - name: "" - metabolites: !!omap - m00011c: -1 @@ -126682,15 +126682,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2872 + - id: "HMR_2872" - name: "" - metabolites: !!omap - m00011r: 1 @@ -126699,15 +126699,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2873 + - id: "HMR_2873" - name: "" - metabolites: !!omap - m00342c: -1 @@ -126716,15 +126716,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2874 + - id: "HMR_2874" - name: "" - metabolites: !!omap - m00342r: 1 @@ -126733,15 +126733,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2875 + - id: "HMR_2875" - name: "" - metabolites: !!omap - m00261c: -1 @@ -126750,15 +126750,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2876 + - id: "HMR_2876" - name: "" - metabolites: !!omap - m00261r: 1 @@ -126767,15 +126767,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2878 + - id: "HMR_2878" - name: "" - metabolites: !!omap - m00316c: -1 @@ -126784,15 +126784,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2879 + - id: "HMR_2879" - name: "" - metabolites: !!omap - m00316r: 1 @@ -126801,15 +126801,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2880 + - id: "HMR_2880" - name: "" - metabolites: !!omap - m02348c: -1 @@ -126818,15 +126818,15 @@ - m02388r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2882 + - id: "HMR_2882" - name: "" - metabolites: !!omap - m01597r: -1 @@ -126835,15 +126835,15 @@ - m02391r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2884 + - id: "HMR_2884" - name: "" - metabolites: !!omap - m01933c: 1 @@ -126852,15 +126852,15 @@ - m02348r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2886 + - id: "HMR_2886" - name: "" - metabolites: !!omap - m01597r: -1 @@ -126869,15 +126869,15 @@ - m02348r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2888 + - id: "HMR_2888" - name: "" - metabolites: !!omap - m01774c: 1 @@ -126886,15 +126886,15 @@ - m02348r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2890 + - id: "HMR_2890" - name: "" - metabolites: !!omap - m01597r: -1 @@ -126903,15 +126903,15 @@ - m02348r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2892 + - id: "HMR_2892" - name: "" - metabolites: !!omap - m01363c: 1 @@ -126920,15 +126920,15 @@ - m02348r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2894 + - id: "HMR_2894" - name: "" - metabolites: !!omap - m01363r: -1 @@ -126937,15 +126937,15 @@ - m02348r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2896 + - id: "HMR_2896" - name: "" - metabolites: !!omap - m02348c: -1 @@ -126954,15 +126954,15 @@ - m02636r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2897 + - id: "HMR_2897" - name: "" - metabolites: !!omap - m00119r: -1 @@ -126971,15 +126971,15 @@ - m02636r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2898 + - id: "HMR_2898" - name: "" - metabolites: !!omap - m00092c: -1 @@ -126988,15 +126988,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2899 + - id: "HMR_2899" - name: "" - metabolites: !!omap - m00092r: 1 @@ -127005,15 +127005,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2900 + - id: "HMR_2900" - name: "" - metabolites: !!omap - m01770c: 1 @@ -127022,15 +127022,15 @@ - m02348r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2901 + - id: "HMR_2901" - name: "" - metabolites: !!omap - m00009r: -1 @@ -127039,15 +127039,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2902 + - id: "HMR_2902" - name: "" - metabolites: !!omap - m00022c: -1 @@ -127056,15 +127056,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2903 + - id: "HMR_2903" - name: "" - metabolites: !!omap - m00022r: 1 @@ -127074,15 +127074,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2904 + - id: "HMR_2904" - name: "" - metabolites: !!omap - m00263c: -1 @@ -127091,15 +127091,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2905 + - id: "HMR_2905" - name: "" - metabolites: !!omap - m00263r: 1 @@ -127108,15 +127108,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2906 + - id: "HMR_2906" - name: "" - metabolites: !!omap - m01597c: -1 @@ -127125,15 +127125,15 @@ - m03047c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2907 + - id: "HMR_2907" - name: "" - metabolites: !!omap - m02348c: -1 @@ -127142,15 +127142,15 @@ - m03046r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2908 + - id: "HMR_2908" - name: "" - metabolites: !!omap - m01597r: -1 @@ -127159,15 +127159,15 @@ - m03047r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2909 + - id: "HMR_2909" - name: "" - metabolites: !!omap - m01597c: -1 @@ -127176,15 +127176,15 @@ - m02971c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2910 + - id: "HMR_2910" - name: "" - metabolites: !!omap - m02348c: -1 @@ -127193,15 +127193,15 @@ - m02970r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2911 + - id: "HMR_2911" - name: "" - metabolites: !!omap - m01597r: -1 @@ -127210,15 +127210,15 @@ - m02971r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2912 + - id: "HMR_2912" - name: "" - metabolites: !!omap - m00024c: 1 @@ -127227,15 +127227,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2913 + - id: "HMR_2913" - name: "" - metabolites: !!omap - m00024c: -1 @@ -127244,15 +127244,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2914 + - id: "HMR_2914" - name: "" - metabolites: !!omap - m00024r: 1 @@ -127261,15 +127261,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2915 + - id: "HMR_2915" - name: "" - metabolites: !!omap - m01597c: -1 @@ -127278,15 +127278,15 @@ - m02348c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2916 + - id: "HMR_2916" - name: "" - metabolites: !!omap - m02109c: 1 @@ -127295,15 +127295,15 @@ - m02348r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2917 + - id: "HMR_2917" - name: "" - metabolites: !!omap - m01597r: -1 @@ -127312,15 +127312,15 @@ - m02348r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2918 + - id: "HMR_2918" - name: "" - metabolites: !!omap - m01597c: -1 @@ -127329,15 +127329,15 @@ - m02348c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2919 + - id: "HMR_2919" - name: "" - metabolites: !!omap - m02111c: 1 @@ -127346,15 +127346,15 @@ - m02348r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2920 + - id: "HMR_2920" - name: "" - metabolites: !!omap - m01597r: -1 @@ -127363,15 +127363,15 @@ - m02348r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2921 + - id: "HMR_2921" - name: "" - metabolites: !!omap - m00133c: 1 @@ -127380,15 +127380,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2922 + - id: "HMR_2922" - name: "" - metabolites: !!omap - m00133c: -1 @@ -127397,15 +127397,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2923 + - id: "HMR_2923" - name: "" - metabolites: !!omap - m00133r: 1 @@ -127414,15 +127414,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2924 + - id: "HMR_2924" - name: "" - metabolites: !!omap - m00130c: 1 @@ -127431,15 +127431,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2925 + - id: "HMR_2925" - name: "" - metabolites: !!omap - m00130c: -1 @@ -127448,15 +127448,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2926 + - id: "HMR_2926" - name: "" - metabolites: !!omap - m00130r: 1 @@ -127465,15 +127465,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2927 + - id: "HMR_2927" - name: "" - metabolites: !!omap - m00109c: 1 @@ -127482,15 +127482,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2928 + - id: "HMR_2928" - name: "" - metabolites: !!omap - m00109c: -1 @@ -127499,15 +127499,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2929 + - id: "HMR_2929" - name: "" - metabolites: !!omap - m00109r: 1 @@ -127516,15 +127516,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2930 + - id: "HMR_2930" - name: "" - metabolites: !!omap - m00112c: 1 @@ -127533,15 +127533,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2931 + - id: "HMR_2931" - name: "" - metabolites: !!omap - m00112c: -1 @@ -127550,15 +127550,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_2932 + - id: "HMR_2932" - name: "" - metabolites: !!omap - m00112r: 1 @@ -127567,15 +127567,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095321 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.7 - - references: + - gene_reaction_rule: "ENSG00000095321" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.7" + - references: "" - subsystem: - - Carnitine shuttle (endoplasmic reticular) + - "Carnitine shuttle (endoplasmic reticular)" - confidence_score: 0 - !!omap - - id: HMR_0001 + - id: "HMR_0001" - name: "" - metabolites: !!omap - m01569s: 1 @@ -127583,15 +127583,15 @@ - m02956s: 77243 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074416 or ENSG00000100997 or ENSG00000115884 or ENSG00000142798 or ENSG00000163686 or ENSG00000175445 or ENSG00000277494 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.34;3.1.1.23 - - references: PMID:3942763;PMID:1279089;PMID:5057882;PMID:8728311;PMID:16200213 + - gene_reaction_rule: "ENSG00000074416 or ENSG00000100997 or ENSG00000115884 or ENSG00000142798 or ENSG00000163686 or ENSG00000175445 or ENSG00000277494" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.34;3.1.1.23" + - references: "PMID:3942763;PMID:1279089;PMID:5057882;PMID:8728311;PMID:16200213" - subsystem: - - Acylglycerides metabolism + - "Acylglycerides metabolism" - confidence_score: 0 - !!omap - - id: HMR_0002 + - id: "HMR_0002" - name: "" - metabolites: !!omap - m00234s: 1 @@ -127600,15 +127600,15 @@ - m02956s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000175445 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.34 - - references: + - gene_reaction_rule: "ENSG00000175445" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.34" + - references: "" - subsystem: - - Acylglycerides metabolism + - "Acylglycerides metabolism" - confidence_score: 0 - !!omap - - id: HMR_0003 + - id: "HMR_0003" - name: "" - metabolites: !!omap - m00234s: -1 @@ -127617,15 +127617,15 @@ - m02040s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006757 or ENSG00000079435 or ENSG00000100344 or ENSG00000101670 or ENSG00000114771 or ENSG00000134780 or ENSG00000164535 or ENSG00000166035 or ENSG00000170835 or ENSG00000175535 or ENSG00000177666 or ENSG00000182333 or ENSG00000187021 or ENSG00000203837 or ENSG00000266200 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.3 - - references: PMID-11040182;PMID-1379598;PMID-11812220;PMID-15224187 + - gene_reaction_rule: "ENSG00000006757 or ENSG00000079435 or ENSG00000100344 or ENSG00000101670 or ENSG00000114771 or ENSG00000134780 or ENSG00000164535 or ENSG00000166035 or ENSG00000170835 or ENSG00000175535 or ENSG00000177666 or ENSG00000182333 or ENSG00000187021 or ENSG00000203837 or ENSG00000266200" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.3" + - references: "PMID-11040182;PMID-1379598;PMID-11812220;PMID-15224187" - subsystem: - - Acylglycerides metabolism + - "Acylglycerides metabolism" - confidence_score: 0 - !!omap - - id: HMR_0005 + - id: "HMR_0005" - name: "" - metabolites: !!omap - m00503c: -1 @@ -127634,15 +127634,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074416 or ENSG00000100997 or ENSG00000163686 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.23 - - references: PMID-2318975;PMID-15272052;PMID-8526865;PMID-889853;PMID-9341166; + - gene_reaction_rule: "ENSG00000074416 or ENSG00000100997 or ENSG00000163686" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.23" + - references: "PMID-2318975;PMID-15272052;PMID-8526865;PMID-889853;PMID-9341166;" - subsystem: - - Acylglycerides metabolism + - "Acylglycerides metabolism" - confidence_score: 0 - !!omap - - id: HMR_0449 + - id: "HMR_0449" - name: "" - metabolites: !!omap - m01690m: 1 @@ -127651,15 +127651,15 @@ - m02914m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115159 - - rxnFrom: HMRdatabase - - eccodes: 1.1.5.3 - - references: PMID:7821823;PMID:8687421;PMID:8163052 + - gene_reaction_rule: "ENSG00000115159" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.5.3" + - references: "PMID:7821823;PMID:8687421;PMID:8163052" - subsystem: - - Acylglycerides metabolism + - "Acylglycerides metabolism" - confidence_score: 0 - !!omap - - id: HMR_0604 + - id: "HMR_0604" - name: "" - metabolites: !!omap - m00240c: -1 @@ -127669,15 +127669,15 @@ - m02733c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000058866 or ENSG00000065357 or ENSG00000077044 or ENSG00000102780 or ENSG00000136267 or ENSG00000145214 or ENSG00000149091 or ENSG00000153933 or ENSG00000157680 or ENSG00000274588 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.107 - - references: + - gene_reaction_rule: "ENSG00000058866 or ENSG00000065357 or ENSG00000077044 or ENSG00000102780 or ENSG00000136267 or ENSG00000145214 or ENSG00000149091 or ENSG00000153933 or ENSG00000157680 or ENSG00000274588" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.107" + - references: "" - subsystem: - - Acylglycerides metabolism + - "Acylglycerides metabolism" - confidence_score: 0 - !!omap - - id: HMR_0605 + - id: "HMR_0605" - name: "" - metabolites: !!omap - m00240c: -1 @@ -127686,15 +127686,15 @@ - m10007c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000062282 or ENSG00000106384 or ENSG00000124003 or ENSG00000166391 or ENSG00000185000 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.20;2.3.1.22 - - references: PMID:9789033 + - gene_reaction_rule: "ENSG00000062282 or ENSG00000106384 or ENSG00000124003 or ENSG00000166391 or ENSG00000185000" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.20;2.3.1.22" + - references: "PMID:9789033" - subsystem: - - Acylglycerides metabolism + - "Acylglycerides metabolism" - confidence_score: 0 - !!omap - - id: HMR_0665 + - id: "HMR_0665" - name: "" - metabolites: !!omap - m00240c: 1 @@ -127704,15 +127704,15 @@ - m10005c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006757 or ENSG00000079435 or ENSG00000100344 or ENSG00000101670 or ENSG00000114771 or ENSG00000134780 or ENSG00000164535 or ENSG00000166035 or ENSG00000170835 or ENSG00000175535 or ENSG00000177666 or ENSG00000182333 or ENSG00000187021 or ENSG00000203837 or ENSG00000266200 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.3 - - references: PMID:11812220;PMID:15224187 + - gene_reaction_rule: "ENSG00000006757 or ENSG00000079435 or ENSG00000100344 or ENSG00000101670 or ENSG00000114771 or ENSG00000134780 or ENSG00000164535 or ENSG00000166035 or ENSG00000170835 or ENSG00000175535 or ENSG00000177666 or ENSG00000182333 or ENSG00000187021 or ENSG00000203837 or ENSG00000266200" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.3" + - references: "PMID:11812220;PMID:15224187" - subsystem: - - Acylglycerides metabolism + - "Acylglycerides metabolism" - confidence_score: 0 - !!omap - - id: HMR_0667 + - id: "HMR_0667" - name: "" - metabolites: !!omap - m00240c: -1 @@ -127722,15 +127722,15 @@ - m10005c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006757 or ENSG00000079435 or ENSG00000100344 or ENSG00000101670 or ENSG00000114771 or ENSG00000134780 or ENSG00000164535 or ENSG00000166035 or ENSG00000170835 or ENSG00000175535 or ENSG00000177666 or ENSG00000182333 or ENSG00000187021 or ENSG00000203837 or ENSG00000266200 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.3 - - references: PMID:11812220;PMID:15224187 + - gene_reaction_rule: "ENSG00000006757 or ENSG00000079435 or ENSG00000100344 or ENSG00000101670 or ENSG00000114771 or ENSG00000134780 or ENSG00000164535 or ENSG00000166035 or ENSG00000170835 or ENSG00000175535 or ENSG00000177666 or ENSG00000182333 or ENSG00000187021 or ENSG00000203837 or ENSG00000266200" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.3" + - references: "PMID:11812220;PMID:15224187" - subsystem: - - Acylglycerides metabolism + - "Acylglycerides metabolism" - confidence_score: 0 - !!omap - - id: HMR_0668 + - id: "HMR_0668" - name: "" - metabolites: !!omap - m00237c: -1 @@ -127740,15 +127740,15 @@ - m10005c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006757 or ENSG00000079435 or ENSG00000100344 or ENSG00000101670 or ENSG00000114771 or ENSG00000134780 or ENSG00000164535 or ENSG00000166035 or ENSG00000170835 or ENSG00000175535 or ENSG00000177666 or ENSG00000182333 or ENSG00000187021 or ENSG00000203837 or ENSG00000266200 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.3 - - references: PMID:11812220;PMID:15224187 + - gene_reaction_rule: "ENSG00000006757 or ENSG00000079435 or ENSG00000100344 or ENSG00000101670 or ENSG00000114771 or ENSG00000134780 or ENSG00000164535 or ENSG00000166035 or ENSG00000170835 or ENSG00000175535 or ENSG00000177666 or ENSG00000182333 or ENSG00000187021 or ENSG00000203837 or ENSG00000266200" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.3" + - references: "PMID:11812220;PMID:15224187" - subsystem: - - Acylglycerides metabolism + - "Acylglycerides metabolism" - confidence_score: 0 - !!omap - - id: HMR_0669 + - id: "HMR_0669" - name: "" - metabolites: !!omap - m00235c: -1 @@ -127758,15 +127758,15 @@ - m10005c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006757 or ENSG00000079435 or ENSG00000100344 or ENSG00000101670 or ENSG00000114771 or ENSG00000134780 or ENSG00000164535 or ENSG00000166035 or ENSG00000170835 or ENSG00000175535 or ENSG00000177666 or ENSG00000182333 or ENSG00000187021 or ENSG00000203837 or ENSG00000266200 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.3 - - references: PMID:11812220;PMID:15224187 + - gene_reaction_rule: "ENSG00000006757 or ENSG00000079435 or ENSG00000100344 or ENSG00000101670 or ENSG00000114771 or ENSG00000134780 or ENSG00000164535 or ENSG00000166035 or ENSG00000170835 or ENSG00000175535 or ENSG00000177666 or ENSG00000182333 or ENSG00000187021 or ENSG00000203837 or ENSG00000266200" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.3" + - references: "PMID:11812220;PMID:15224187" - subsystem: - - Acylglycerides metabolism + - "Acylglycerides metabolism" - confidence_score: 0 - !!omap - - id: HMR_0670 + - id: "HMR_0670" - name: "" - metabolites: !!omap - m00236c: -1 @@ -127776,15 +127776,15 @@ - m10005c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006757 or ENSG00000079435 or ENSG00000100344 or ENSG00000101670 or ENSG00000114771 or ENSG00000134780 or ENSG00000164535 or ENSG00000166035 or ENSG00000170835 or ENSG00000175535 or ENSG00000177666 or ENSG00000182333 or ENSG00000187021 or ENSG00000203837 or ENSG00000266200 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.3 - - references: PMID:11812220;PMID:15224187 + - gene_reaction_rule: "ENSG00000006757 or ENSG00000079435 or ENSG00000100344 or ENSG00000101670 or ENSG00000114771 or ENSG00000134780 or ENSG00000164535 or ENSG00000166035 or ENSG00000170835 or ENSG00000175535 or ENSG00000177666 or ENSG00000182333 or ENSG00000187021 or ENSG00000203837 or ENSG00000266200" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.3" + - references: "PMID:11812220;PMID:15224187" - subsystem: - - Acylglycerides metabolism + - "Acylglycerides metabolism" - confidence_score: 0 - !!omap - - id: HMR_0671 + - id: "HMR_0671" - name: "" - metabolites: !!omap - m00238c: -1 @@ -127794,15 +127794,15 @@ - m10005c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006757 or ENSG00000079435 or ENSG00000100344 or ENSG00000101670 or ENSG00000114771 or ENSG00000134780 or ENSG00000164535 or ENSG00000166035 or ENSG00000170835 or ENSG00000175535 or ENSG00000177666 or ENSG00000182333 or ENSG00000187021 or ENSG00000203837 or ENSG00000266200 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.3 - - references: PMID:11812220;PMID:15224187 + - gene_reaction_rule: "ENSG00000006757 or ENSG00000079435 or ENSG00000100344 or ENSG00000101670 or ENSG00000114771 or ENSG00000134780 or ENSG00000164535 or ENSG00000166035 or ENSG00000170835 or ENSG00000175535 or ENSG00000177666 or ENSG00000182333 or ENSG00000187021 or ENSG00000203837 or ENSG00000266200" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.3" + - references: "PMID:11812220;PMID:15224187" - subsystem: - - Acylglycerides metabolism + - "Acylglycerides metabolism" - confidence_score: 0 - !!omap - - id: HMR_0672 + - id: "HMR_0672" - name: "" - metabolites: !!omap - m00239c: -1 @@ -127812,15 +127812,15 @@ - m10005c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006757 or ENSG00000079435 or ENSG00000100344 or ENSG00000101670 or ENSG00000114771 or ENSG00000134780 or ENSG00000164535 or ENSG00000166035 or ENSG00000170835 or ENSG00000175535 or ENSG00000177666 or ENSG00000182333 or ENSG00000187021 or ENSG00000203837 or ENSG00000266200 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.3 - - references: PMID:11812220;PMID:15224187 + - gene_reaction_rule: "ENSG00000006757 or ENSG00000079435 or ENSG00000100344 or ENSG00000101670 or ENSG00000114771 or ENSG00000134780 or ENSG00000164535 or ENSG00000166035 or ENSG00000170835 or ENSG00000175535 or ENSG00000177666 or ENSG00000182333 or ENSG00000187021 or ENSG00000203837 or ENSG00000266200" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.3" + - references: "PMID:11812220;PMID:15224187" - subsystem: - - Acylglycerides metabolism + - "Acylglycerides metabolism" - confidence_score: 0 - !!omap - - id: HMR_0679 + - id: "HMR_0679" - name: "" - metabolites: !!omap - m00509c: -1 @@ -127830,15 +127830,15 @@ - m10005c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074416 or ENSG00000100997 or ENSG00000163686 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.23 - - references: PMID:15272052;PMID:8526865;PMID:889853;PMID:9341166;UNIPROT:Q99685 + - gene_reaction_rule: "ENSG00000074416 or ENSG00000100997 or ENSG00000163686" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.23" + - references: "PMID:15272052;PMID:8526865;PMID:889853;PMID:9341166;UNIPROT:Q99685" - subsystem: - - Acylglycerides metabolism + - "Acylglycerides metabolism" - confidence_score: 0 - !!omap - - id: HMR_0680 + - id: "HMR_0680" - name: "" - metabolites: !!omap - m00504c: -1 @@ -127848,15 +127848,15 @@ - m10005c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074416 or ENSG00000100997 or ENSG00000163686 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.23 - - references: PMID:15272052;PMID:8526865;PMID:889853;PMID:9341166;UNIPROT:Q99685 + - gene_reaction_rule: "ENSG00000074416 or ENSG00000100997 or ENSG00000163686" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.23" + - references: "PMID:15272052;PMID:8526865;PMID:889853;PMID:9341166;UNIPROT:Q99685" - subsystem: - - Acylglycerides metabolism + - "Acylglycerides metabolism" - confidence_score: 0 - !!omap - - id: HMR_0681 + - id: "HMR_0681" - name: "" - metabolites: !!omap - m00505c: -1 @@ -127866,15 +127866,15 @@ - m10005c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074416 or ENSG00000100997 or ENSG00000163686 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.23 - - references: PMID:15272052;PMID:8526865;PMID:889853;PMID:9341166;UNIPROT:Q99685 + - gene_reaction_rule: "ENSG00000074416 or ENSG00000100997 or ENSG00000163686" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.23" + - references: "PMID:15272052;PMID:8526865;PMID:889853;PMID:9341166;UNIPROT:Q99685" - subsystem: - - Acylglycerides metabolism + - "Acylglycerides metabolism" - confidence_score: 0 - !!omap - - id: HMR_0682 + - id: "HMR_0682" - name: "" - metabolites: !!omap - m00507c: -1 @@ -127884,15 +127884,15 @@ - m10005c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074416 or ENSG00000100997 or ENSG00000163686 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.23 - - references: PMID:15272052;PMID:8526865;PMID:889853;PMID:9341166;UNIPROT:Q99685 + - gene_reaction_rule: "ENSG00000074416 or ENSG00000100997 or ENSG00000163686" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.23" + - references: "PMID:15272052;PMID:8526865;PMID:889853;PMID:9341166;UNIPROT:Q99685" - subsystem: - - Acylglycerides metabolism + - "Acylglycerides metabolism" - confidence_score: 0 - !!omap - - id: HMR_0683 + - id: "HMR_0683" - name: "" - metabolites: !!omap - m00506c: -1 @@ -127902,15 +127902,15 @@ - m10005c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074416 or ENSG00000100997 or ENSG00000163686 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.23 - - references: PMID:15272052;PMID:8526865;PMID:889853;PMID:9341166;UNIPROT:Q99685 + - gene_reaction_rule: "ENSG00000074416 or ENSG00000100997 or ENSG00000163686" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.23" + - references: "PMID:15272052;PMID:8526865;PMID:889853;PMID:9341166;UNIPROT:Q99685" - subsystem: - - Acylglycerides metabolism + - "Acylglycerides metabolism" - confidence_score: 0 - !!omap - - id: HMR_0684 + - id: "HMR_0684" - name: "" - metabolites: !!omap - m00508c: -1 @@ -127920,15 +127920,15 @@ - m10005c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074416 or ENSG00000100997 or ENSG00000163686 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.23 - - references: PMID:15272052;PMID:8526865;PMID:889853;PMID:9341166;UNIPROT:Q99685 + - gene_reaction_rule: "ENSG00000074416 or ENSG00000100997 or ENSG00000163686" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.23" + - references: "PMID:15272052;PMID:8526865;PMID:889853;PMID:9341166;UNIPROT:Q99685" - subsystem: - - Acylglycerides metabolism + - "Acylglycerides metabolism" - confidence_score: 0 - !!omap - - id: HMR_7588 + - id: "HMR_7588" - name: "" - metabolites: !!omap - m01278c: 1 @@ -127937,15 +127937,15 @@ - m10007c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116906 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.42 - - references: + - gene_reaction_rule: "ENSG00000116906" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.42" + - references: "" - subsystem: - - Acylglycerides metabolism + - "Acylglycerides metabolism" - confidence_score: 0 - !!omap - - id: HMR_3053 + - id: "HMR_3053" - name: "" - metabolites: !!omap - m00317p: -1 @@ -127959,15 +127959,15 @@ - m02630p: -7 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3054 + - id: "HMR_3054" - name: "" - metabolites: !!omap - m00134p: -1 @@ -127981,15 +127981,15 @@ - m02630p: -6 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3055 + - id: "HMR_3055" - name: "" - metabolites: !!omap - m00131p: -1 @@ -128003,15 +128003,15 @@ - m02630p: -11 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3057 + - id: "HMR_3057" - name: "" - metabolites: !!omap - m00049p: 1 @@ -128020,15 +128020,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: PMID:7876265;PMID:17458872 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "PMID:7876265;PMID:17458872" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3058 + - id: "HMR_3058" - name: "" - metabolites: !!omap - m00049p: -1 @@ -128036,15 +128036,15 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:16385454;PMID:8902629;PMID:9089413 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:16385454;PMID:8902629;PMID:9089413" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3059 + - id: "HMR_3059" - name: "" - metabolites: !!omap - m00783p: -1 @@ -128054,15 +128054,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:16385454;PMID:8902629;PMID:9089413 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:16385454;PMID:8902629;PMID:9089413" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3060 + - id: "HMR_3060" - name: "" - metabolites: !!omap - m00878p: -1 @@ -128071,15 +128071,15 @@ - m02971p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000167306 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16 - - references: PMID:1679347 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000167306" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16" + - references: "PMID:1679347" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3062 + - id: "HMR_3062" - name: "" - metabolites: !!omap - m00064p: 1 @@ -128088,15 +128088,15 @@ - m02971p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3063 + - id: "HMR_3063" - name: "" - metabolites: !!omap - m00064p: -1 @@ -128104,15 +128104,15 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3064 + - id: "HMR_3064" - name: "" - metabolites: !!omap - m00800p: -1 @@ -128122,15 +128122,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3065 + - id: "HMR_3065" - name: "" - metabolites: !!omap - m00904p: -1 @@ -128139,15 +128139,15 @@ - m01725p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000167306 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16 - - references: + - gene_reaction_rule: "ENSG00000060971 and ENSG00000167306" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3066 + - id: "HMR_3066" - name: "" - metabolites: !!omap - m00040p: 1 @@ -128156,15 +128156,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3067 + - id: "HMR_3067" - name: "" - metabolites: !!omap - m00040p: -1 @@ -128172,15 +128172,15 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3068 + - id: "HMR_3068" - name: "" - metabolites: !!omap - m00776p: -1 @@ -128190,15 +128190,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3069 + - id: "HMR_3069" - name: "" - metabolites: !!omap - m00866p: -1 @@ -128207,15 +128207,15 @@ - m01773p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000167306 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16 - - references: + - gene_reaction_rule: "ENSG00000060971 and ENSG00000167306" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3070 + - id: "HMR_3070" - name: "" - metabolites: !!omap - m00043p: 1 @@ -128224,15 +128224,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3071 + - id: "HMR_3071" - name: "" - metabolites: !!omap - m00043p: -1 @@ -128240,15 +128240,15 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3072 + - id: "HMR_3072" - name: "" - metabolites: !!omap - m00777p: -1 @@ -128258,15 +128258,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3073 + - id: "HMR_3073" - name: "" - metabolites: !!omap - m00872p: -1 @@ -128275,15 +128275,15 @@ - m02941p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000167306 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16 - - references: + - gene_reaction_rule: "ENSG00000060971 and ENSG00000167306" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3074 + - id: "HMR_3074" - name: "" - metabolites: !!omap - m00057p: 1 @@ -128292,15 +128292,15 @@ - m02941p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3075 + - id: "HMR_3075" - name: "" - metabolites: !!omap - m00057p: -1 @@ -128308,15 +128308,15 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3076 + - id: "HMR_3076" - name: "" - metabolites: !!omap - m00793p: -1 @@ -128326,15 +128326,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3077 + - id: "HMR_3077" - name: "" - metabolites: !!omap - m00890p: -1 @@ -128343,15 +128343,15 @@ - m02678p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000167306 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16 - - references: + - gene_reaction_rule: "ENSG00000060971 and ENSG00000167306" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3078 + - id: "HMR_3078" - name: "" - metabolites: !!omap - m00051p: 1 @@ -128360,15 +128360,15 @@ - m02678p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: PMID:17603022;PMID:6240978;PMID:7876265 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "PMID:17603022;PMID:6240978;PMID:7876265" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3079 + - id: "HMR_3079" - name: "" - metabolites: !!omap - m00051p: -1 @@ -128376,15 +128376,15 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:8012501;PMID:8188243 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:8012501;PMID:8188243" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3080 + - id: "HMR_3080" - name: "" - metabolites: !!omap - m00175p: -1 @@ -128394,15 +128394,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:10231530;PMID:10329704;PMID:1550553;PMID:1651711;PMID:7150615;PMID:8188243;PMID:8687463;PMID:9553139 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:10231530;PMID:10329704;PMID:1550553;PMID:1651711;PMID:7150615;PMID:8188243;PMID:8687463;PMID:9553139" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3081 + - id: "HMR_3081" - name: "" - metabolites: !!omap - m00895p: -1 @@ -128411,15 +128411,15 @@ - m02495p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000167306 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16 - - references: PMID:10706581;PMID:1121274;PMID:1679347;PMID:3194209;PMID:6378901;PMID:8241273 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000167306" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16" + - references: "PMID:10706581;PMID:1121274;PMID:1679347;PMID:3194209;PMID:6378901;PMID:8241273" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3082 + - id: "HMR_3082" - name: "" - metabolites: !!omap - m00066p: 1 @@ -128428,15 +128428,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: PMID:17603022;PMID:6240978;PMID:7876265 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "PMID:17603022;PMID:6240978;PMID:7876265" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3083 + - id: "HMR_3083" - name: "" - metabolites: !!omap - m00066p: -1 @@ -128444,15 +128444,15 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:8012501;PMID:8188243 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:8012501;PMID:8188243" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3084 + - id: "HMR_3084" - name: "" - metabolites: !!omap - m00178p: -1 @@ -128462,15 +128462,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:10231530;PMID:10329704;PMID:1550553;PMID:1651711;PMID:7150615;PMID:8188243;PMID:8687463;PMID:9553139 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:10231530;PMID:10329704;PMID:1550553;PMID:1651711;PMID:7150615;PMID:8188243;PMID:8687463;PMID:9553139" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3085 + - id: "HMR_3085" - name: "" - metabolites: !!omap - m00906p: -1 @@ -128479,15 +128479,15 @@ - m02345p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000167306 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16 - - references: PMID:1121274;PMID:1679347;PMID:3194209;PMID:6378901;PMID:8241273 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000167306" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16" + - references: "PMID:1121274;PMID:1679347;PMID:3194209;PMID:6378901;PMID:8241273" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3086 + - id: "HMR_3086" - name: "" - metabolites: !!omap - m00042p: 1 @@ -128496,15 +128496,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: PMID:17603022;PMID:6240978;PMID:7876265 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "PMID:17603022;PMID:6240978;PMID:7876265" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3087 + - id: "HMR_3087" - name: "" - metabolites: !!omap - m00042p: -1 @@ -128512,15 +128512,15 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:8012501;PMID:8188243 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:8012501;PMID:8188243" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3088 + - id: "HMR_3088" - name: "" - metabolites: !!omap - m00174p: -1 @@ -128530,15 +128530,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:10231530;PMID:10329704;PMID:1550553;PMID:1651711;PMID:7150615;PMID:8188243;PMID:8687463;PMID:9553139 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:10231530;PMID:10329704;PMID:1550553;PMID:1651711;PMID:7150615;PMID:8188243;PMID:8687463;PMID:9553139" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3089 + - id: "HMR_3089" - name: "" - metabolites: !!omap - m00868p: -1 @@ -128547,15 +128547,15 @@ - m01650p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000167306 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16 - - references: PMID:1121274;PMID:1679347;PMID:3194209;PMID:6378901;PMID:8241273 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000167306" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16" + - references: "PMID:1121274;PMID:1679347;PMID:3194209;PMID:6378901;PMID:8241273" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3090 + - id: "HMR_3090" - name: "" - metabolites: !!omap - m00039p: 1 @@ -128564,15 +128564,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: PMID:17603022;PMID:6240978;PMID:7876265 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "PMID:17603022;PMID:6240978;PMID:7876265" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3091 + - id: "HMR_3091" - name: "" - metabolites: !!omap - m00039p: -1 @@ -128580,15 +128580,15 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:8012501;PMID:8188243 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:8012501;PMID:8188243" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3092 + - id: "HMR_3092" - name: "" - metabolites: !!omap - m00181p: -1 @@ -128598,15 +128598,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:10231530;PMID:10329704;PMID:1550553;PMID:1651711;PMID:7150615;PMID:8188243;PMID:8687463;PMID:9553139 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:10231530;PMID:10329704;PMID:1550553;PMID:1651711;PMID:7150615;PMID:8188243;PMID:8687463;PMID:9553139" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3093 + - id: "HMR_3093" - name: "" - metabolites: !!omap - m00858p: -1 @@ -128615,15 +128615,15 @@ - m02644p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000167306 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16 - - references: PMID:1121274;PMID:1679347;PMID:3194209;PMID:6378901;PMID:8241273 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000167306" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16" + - references: "PMID:1121274;PMID:1679347;PMID:3194209;PMID:6378901;PMID:8241273" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3094 + - id: "HMR_3094" - name: "" - metabolites: !!omap - m00059p: 1 @@ -128632,15 +128632,15 @@ - m02644p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: PMID:13295225;PMID:3597357 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "PMID:13295225;PMID:3597357" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3095 + - id: "HMR_3095" - name: "" - metabolites: !!omap - m00059p: -1 @@ -128648,15 +128648,15 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:8012501;PMID:8188243;PMID:13295248 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:8012501;PMID:8188243;PMID:13295248" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3096 + - id: "HMR_3096" - name: "" - metabolites: !!omap - m00183p: -1 @@ -128666,15 +128666,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:10231530;PMID:10329704;PMID:1550553;PMID:1651711;PMID:7150615;PMID:8188243;PMID:8687463;PMID:9553139;PMID:8687463 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:10231530;PMID:10329704;PMID:1550553;PMID:1651711;PMID:7150615;PMID:8188243;PMID:8687463;PMID:9553139;PMID:8687463" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3097 + - id: "HMR_3097" - name: "" - metabolites: !!omap - m00892p: -1 @@ -128683,15 +128683,15 @@ - m02122p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000167306 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16 - - references: PMID:1121274;PMID:1679347;PMID:3194209;PMID:6378901;PMID:8241273;PMID:1550553 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000167306" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16" + - references: "PMID:1121274;PMID:1679347;PMID:3194209;PMID:6378901;PMID:8241273;PMID:1550553" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3098 + - id: "HMR_3098" - name: "" - metabolites: !!omap - m00053p: 1 @@ -128700,15 +128700,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: PMID:13295225;PMID:3597357 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "PMID:13295225;PMID:3597357" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3099 + - id: "HMR_3099" - name: "" - metabolites: !!omap - m00053p: -1 @@ -128716,15 +128716,15 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:8012501;PMID:8188243;13295248 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:8012501;PMID:8188243;13295248" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3100 + - id: "HMR_3100" - name: "" - metabolites: !!omap - m00182p: -1 @@ -128734,15 +128734,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:10231530;PMID:10329704;PMID:1550553;PMID:1651711;PMID:7150615;PMID:8188243;PMID:8687463;PMID:9553139;PMID:8687463 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:10231530;PMID:10329704;PMID:1550553;PMID:1651711;PMID:7150615;PMID:8188243;PMID:8687463;PMID:9553139;PMID:8687463" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3101 + - id: "HMR_3101" - name: "" - metabolites: !!omap - m00882p: -1 @@ -128751,15 +128751,15 @@ - m01597p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000167306 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16 - - references: PMID:10806397;PMID:1121274;PMID:1679347;PMID:1735445;PMID:1979337;PMID:2048733;PMID:3194209;PMID:6378901;PMID:8241273;PMID:1550553 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000167306" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16" + - references: "PMID:10806397;PMID:1121274;PMID:1679347;PMID:1735445;PMID:1979337;PMID:2048733;PMID:3194209;PMID:6378901;PMID:8241273;PMID:1550553" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3102 + - id: "HMR_3102" - name: "" - metabolites: !!omap - m01412p: -1 @@ -128768,15 +128768,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: PMID:13295225;PMID:3597357 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "PMID:13295225;PMID:3597357" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3103 + - id: "HMR_3103" - name: "" - metabolites: !!omap - m00173p: 1 @@ -128784,15 +128784,15 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:1735445;PMID:8012501;PMID:8188243;PMID:13295248 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:1735445;PMID:8012501;PMID:8188243;PMID:13295248" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3104 + - id: "HMR_3104" - name: "" - metabolites: !!omap - m00173p: -1 @@ -128802,30 +128802,30 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:10231530;PMID:10329704;PMID:1651711;PMID:1735445;PMID:6773478;PMID:7150615;PMID:8188243;PMID:8687463;PMID:9553139;PMID:8687463;PMID:10231530 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:10231530;PMID:10329704;PMID:1651711;PMID:1735445;PMID:6773478;PMID:7150615;PMID:8188243;PMID:8687463;PMID:9553139;PMID:8687463;PMID:10231530" - subsystem: - - Beta oxidation of even-chain fatty acids (peroxisomal) + - "Beta oxidation of even-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3106 + - id: "HMR_3106" - name: "" - metabolites: !!omap - m01261c: -1 - m01261p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3056 + - id: "HMR_3056" - name: "" - metabolites: !!omap - m01261p: 10 @@ -128840,15 +128840,15 @@ - m03047p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16756494 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16756494" - subsystem: - - Beta oxidation of odd-chain fatty acids (peroxisomal) + - "Beta oxidation of odd-chain fatty acids (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3326 + - id: "HMR_3326" - name: "" - metabolites: !!omap - m02041p: 1 @@ -128857,15 +128857,15 @@ - m03016p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3327 + - id: "HMR_3327" - name: "" - metabolites: !!omap - m00715p: 1 @@ -128873,15 +128873,15 @@ - m03016p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3328 + - id: "HMR_3328" - name: "" - metabolites: !!omap - m00715p: -1 @@ -128891,15 +128891,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3329 + - id: "HMR_3329" - name: "" - metabolites: !!omap - m00025p: 1 @@ -128908,15 +128908,15 @@ - m01597p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000167306 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16 - - references: + - gene_reaction_rule: "ENSG00000060971 and ENSG00000167306" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3330 + - id: "HMR_3330" - name: "" - metabolites: !!omap - m00025p: -1 @@ -128925,15 +128925,15 @@ - m03015p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3331 + - id: "HMR_3331" - name: "" - metabolites: !!omap - m00709p: 1 @@ -128941,15 +128941,15 @@ - m03015p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3332 + - id: "HMR_3332" - name: "" - metabolites: !!omap - m00709p: -1 @@ -128959,15 +128959,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3333 + - id: "HMR_3333" - name: "" - metabolites: !!omap - m00016p: 1 @@ -128976,15 +128976,15 @@ - m01597p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000167306 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16 - - references: + - gene_reaction_rule: "ENSG00000060971 and ENSG00000167306" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3334 + - id: "HMR_3334" - name: "" - metabolites: !!omap - m00016p: -1 @@ -128993,15 +128993,15 @@ - m03013p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3335 + - id: "HMR_3335" - name: "" - metabolites: !!omap - m00701p: 1 @@ -129009,15 +129009,15 @@ - m03013p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3336 + - id: "HMR_3336" - name: "" - metabolites: !!omap - m00701p: -1 @@ -129027,15 +129027,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3337 + - id: "HMR_3337" - name: "" - metabolites: !!omap - m00007p: 1 @@ -129044,15 +129044,15 @@ - m01597p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000167306 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16 - - references: + - gene_reaction_rule: "ENSG00000060971 and ENSG00000167306" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3338 + - id: "HMR_3338" - name: "" - metabolites: !!omap - m00007p: -1 @@ -129061,15 +129061,15 @@ - m03012p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3339 + - id: "HMR_3339" - name: "" - metabolites: !!omap - m00700p: 1 @@ -129077,15 +129077,15 @@ - m03012p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3340 + - id: "HMR_3340" - name: "" - metabolites: !!omap - m00700p: -1 @@ -129095,15 +129095,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3341 + - id: "HMR_3341" - name: "" - metabolites: !!omap - m00840p: -1 @@ -129112,15 +129112,15 @@ - m02647p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000167306 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16 - - references: + - gene_reaction_rule: "ENSG00000060971 and ENSG00000167306" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3342 + - id: "HMR_3342" - name: "" - metabolites: !!omap - m02041p: 1 @@ -129129,15 +129129,15 @@ - m03025p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3343 + - id: "HMR_3343" - name: "" - metabolites: !!omap - m00176p: 1 @@ -129145,15 +129145,15 @@ - m03025p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3344 + - id: "HMR_3344" - name: "" - metabolites: !!omap - m00176p: -1 @@ -129163,15 +129163,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3345 + - id: "HMR_3345" - name: "" - metabolites: !!omap - m00893p: -1 @@ -129180,15 +129180,15 @@ - m01597p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000167306 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16 - - references: + - gene_reaction_rule: "ENSG00000060971 and ENSG00000167306" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3346 + - id: "HMR_3346" - name: "" - metabolites: !!omap - m01191p: -1 @@ -129197,15 +129197,15 @@ - m03019p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: PMID:1047780;PMID:8973539;PMID:11135616 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "PMID:1047780;PMID:8973539;PMID:11135616" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3347 + - id: "HMR_3347" - name: "" - metabolites: !!omap - m00172p: 1 @@ -129213,15 +129213,15 @@ - m03019p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:9920399;PMID:10407780;PMID:9568246;PMID:7923814 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:9920399;PMID:10407780;PMID:9568246;PMID:7923814" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3348 + - id: "HMR_3348" - name: "" - metabolites: !!omap - m00172p: -1 @@ -129231,15 +129231,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:7923814;PMID:8319713;PMID:11427448;PMID:9920399 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:7923814;PMID:8319713;PMID:11427448;PMID:9920399" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3349 + - id: "HMR_3349" - name: "" - metabolites: !!omap - m00849p: -1 @@ -129248,15 +129248,15 @@ - m01597p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000167306 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16 - - references: PMID:7923814;PMID:9920399;PMID:9568246 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000167306" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16" + - references: "PMID:7923814;PMID:9920399;PMID:9568246" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3350 + - id: "HMR_3350" - name: "" - metabolites: !!omap - m01141p: -1 @@ -129265,15 +129265,15 @@ - m03022p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: PMID:1047780;PMID:8973539;PMID:11135616 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "PMID:1047780;PMID:8973539;PMID:11135616" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3351 + - id: "HMR_3351" - name: "" - metabolites: !!omap - m01573p: 1 @@ -129281,15 +129281,15 @@ - m03022p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:9568246;PMID:7923814;PMID:9920399;PMID:10407780 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:9568246;PMID:7923814;PMID:9920399;PMID:10407780" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3352 + - id: "HMR_3352" - name: "" - metabolites: !!omap - m00885p: 1 @@ -129299,15 +129299,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:8319713;PMID:11427448;PMID:9920399;PMID:7923814 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:8319713;PMID:11427448;PMID:9920399;PMID:7923814" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3353 + - id: "HMR_3353" - name: "" - metabolites: !!omap - m00088p: 1 @@ -129316,30 +129316,30 @@ - m01597p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000167306 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16 - - references: PMID:9920399;PMID:9568246;PMID:7923814 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000167306" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16" + - references: "PMID:9920399;PMID:9568246;PMID:7923814" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3355 + - id: "HMR_3355" - name: "" - metabolites: !!omap - m00042p: -1 - m00088p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 5.3.3.8 - - references: PMID:8486162 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.3.8" + - references: "PMID:8486162" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3364 + - id: "HMR_3364" - name: "" - metabolites: !!omap - m02041p: 1 @@ -129348,15 +129348,15 @@ - m03020p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: PMID:1047780;PMID:8973539;PMID:11135616 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "PMID:1047780;PMID:8973539;PMID:11135616" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3365 + - id: "HMR_3365" - name: "" - metabolites: !!omap - m00177p: 1 @@ -129364,15 +129364,15 @@ - m03020p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:9920399;PMID:10407780;PMID:9568246;PMID:7923814 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:9920399;PMID:10407780;PMID:9568246;PMID:7923814" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3367 + - id: "HMR_3367" - name: "" - metabolites: !!omap - m00177p: -1 @@ -129382,15 +129382,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:7923814;PMID:8319713;PMID:11427448;PMID:9920399 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:7923814;PMID:8319713;PMID:11427448;PMID:9920399" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3368 + - id: "HMR_3368" - name: "" - metabolites: !!omap - m00118p: 1 @@ -129399,15 +129399,15 @@ - m01597p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000167306 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16 - - references: PMID:7923814;PMID:9920399;PMID:9568246 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000167306" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16" + - references: "PMID:7923814;PMID:9920399;PMID:9568246" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3369 + - id: "HMR_3369" - name: "" - metabolites: !!omap - m00118p: -1 @@ -129416,15 +129416,15 @@ - m03023p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: PMID:1047780;PMID:8973539;PMID:11135616 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "PMID:1047780;PMID:8973539;PMID:11135616" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3370 + - id: "HMR_3370" - name: "" - metabolites: !!omap - m01574p: 1 @@ -129432,15 +129432,15 @@ - m03023p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:9568246;PMID:7923814;PMID:9920399;PMID:10407780 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:9568246;PMID:7923814;PMID:9920399;PMID:10407780" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3372 + - id: "HMR_3372" - name: "" - metabolites: !!omap - m00886p: 1 @@ -129450,15 +129450,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:8319713;PMID:11427448;PMID:9920399;PMID:7923814 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:8319713;PMID:11427448;PMID:9920399;PMID:7923814" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3373 + - id: "HMR_3373" - name: "" - metabolites: !!omap - m00099p: 1 @@ -129467,45 +129467,45 @@ - m01597p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000167306 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16 - - references: PMID:9920399;PMID:9568246;PMID:7923814 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000167306" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16" + - references: "PMID:9920399;PMID:9568246;PMID:7923814" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3375 + - id: "HMR_3375" - name: "" - metabolites: !!omap - m00042p: -1 - m00099p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 5.3.3.8 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.3.8" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-9) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3478 + - id: "HMR_3478" - name: "" - metabolites: !!omap - m02746c: -1 - m02746p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3480 + - id: "HMR_3480" - name: "" - metabolites: !!omap - m01334c: -1 @@ -129516,30 +129516,30 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000140284 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.24 - - references: PMID:11356164;PMID:11356164 + - gene_reaction_rule: "ENSG00000140284" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.24" + - references: "PMID:11356164;PMID:11356164" - subsystem: - - Beta oxidation of phytanic acid (peroxisomal) + - "Beta oxidation of phytanic acid (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3481 + - id: "HMR_3481" - name: "" - metabolites: !!omap - m02747c: -1 - m02747p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116171 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000116171" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3482 + - id: "HMR_3482" - name: "" - metabolites: !!omap - m01334p: -1 @@ -129550,15 +129550,15 @@ - m02759p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000140284 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.24 - - references: PMID:11356164;PMID:11356164;PMID:10198260 + - gene_reaction_rule: "ENSG00000140284" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.24" + - references: "PMID:11356164;PMID:11356164;PMID:10198260" - subsystem: - - Beta oxidation of phytanic acid (peroxisomal) + - "Beta oxidation of phytanic acid (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3484 + - id: "HMR_3484" - name: "" - metabolites: !!omap - m00655p: 1 @@ -129569,15 +129569,15 @@ - m02943p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107537 - - rxnFrom: HMRdatabase - - eccodes: 1.14.11.18 - - references: PMID:8954107;PMID:8954107;PMID:16186124;PMID:11555634 + - gene_reaction_rule: "ENSG00000107537" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.11.18" + - references: "PMID:8954107;PMID:8954107;PMID:16186124;PMID:11555634" - subsystem: - - Beta oxidation of phytanic acid (peroxisomal) + - "Beta oxidation of phytanic acid (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3486 + - id: "HMR_3486" - name: "" - metabolites: !!omap - m00564p: 1 @@ -129585,15 +129585,15 @@ - m01836p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000131373 or ENSG00000182591 - - rxnFrom: HMRdatabase - - eccodes: 4.1.-.- - - references: PMID:10468558;PMID:10468558;PMID:9166898 + - gene_reaction_rule: "ENSG00000131373 or ENSG00000182591" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.-.-" + - references: "PMID:10468558;PMID:10468558;PMID:9166898" - subsystem: - - Beta oxidation of phytanic acid (peroxisomal) + - "Beta oxidation of phytanic acid (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3488 + - id: "HMR_3488" - name: "" - metabolites: !!omap - m00077p: 1 @@ -129604,15 +129604,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107537 - - rxnFrom: HMRdatabase - - eccodes: 1.14.11.18 - - references: PMID:9662422;PMID:9662422;PMID:11356164;PMID:11356164 + - gene_reaction_rule: "ENSG00000107537" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.11.18" + - references: "PMID:9662422;PMID:9662422;PMID:11356164;PMID:11356164" - subsystem: - - Beta oxidation of phytanic acid (peroxisomal) + - "Beta oxidation of phytanic acid (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3489 + - id: "HMR_3489" - name: "" - metabolites: !!omap - m00077p: -1 @@ -129623,30 +129623,30 @@ - m02759p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000103740 or ENSG00000119673 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000177465 or ENSG00000197142 or ENSG00000239642 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.3 - - references: PMID:11356164;PMID:11356164 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000103740 or ENSG00000119673 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000177465 or ENSG00000197142 or ENSG00000239642" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.3" + - references: "PMID:11356164;PMID:11356164" - subsystem: - - Beta oxidation of phytanic acid (peroxisomal) + - "Beta oxidation of phytanic acid (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3491 + - id: "HMR_3491" - name: "" - metabolites: !!omap - m00075p: -1 - m00078p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000242110 - - rxnFrom: HMRdatabase - - eccodes: 5.1.99.4 - - references: PMID:11060344;PMID:11060359;PMID:7649182 + - gene_reaction_rule: "ENSG00000242110" + - rxnFrom: "HMRdatabase" + - eccodes: "5.1.99.4" + - references: "PMID:11060344;PMID:11060359;PMID:7649182" - subsystem: - - Beta oxidation of phytanic acid (peroxisomal) + - "Beta oxidation of phytanic acid (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3493 + - id: "HMR_3493" - name: "" - metabolites: !!omap - m00075p: -1 @@ -129657,15 +129657,15 @@ - m02766p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000140284 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.- - - references: PMID:11356164;PMID:11356164;PMID:10198260 + - gene_reaction_rule: "ENSG00000140284" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.-" + - references: "PMID:11356164;PMID:11356164;PMID:10198260" - subsystem: - - Beta oxidation of phytanic acid (peroxisomal) + - "Beta oxidation of phytanic acid (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3498 + - id: "HMR_3498" - name: "" - metabolites: !!omap - m00078p: -1 @@ -129674,15 +129674,15 @@ - m03027p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: PMID:11356164;PMID:9271077;PMID:11356164;PMID:8387517;PMID:8943006;PMID:15599942; + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "PMID:11356164;PMID:9271077;PMID:11356164;PMID:8387517;PMID:8943006;PMID:15599942;" - subsystem: - - Beta oxidation of phytanic acid (peroxisomal) + - "Beta oxidation of phytanic acid (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3501 + - id: "HMR_3501" - name: "" - metabolites: !!omap - m00798p: 1 @@ -129690,15 +129690,15 @@ - m03027p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:11060359;PMID:16385454;PMID:8902629;PMID:9089413 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:11060359;PMID:16385454;PMID:8902629;PMID:9089413" - subsystem: - - Beta oxidation of phytanic acid (peroxisomal) + - "Beta oxidation of phytanic acid (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3503 + - id: "HMR_3503" - name: "" - metabolites: !!omap - m00798p: -1 @@ -129708,15 +129708,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:11060359;PMID:16385454;PMID:8902629;PMID:9089413 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:11060359;PMID:16385454;PMID:8902629;PMID:9089413" - subsystem: - - Beta oxidation of phytanic acid (peroxisomal) + - "Beta oxidation of phytanic acid (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3505 + - id: "HMR_3505" - name: "" - metabolites: !!omap - m00813p: -1 @@ -129725,15 +129725,15 @@ - m02774p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000167306 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.154 - - references: PMID:10706581;PMID:16685654 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000167306" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.154" + - references: "PMID:10706581;PMID:16685654" - subsystem: - - Beta oxidation of phytanic acid (peroxisomal) + - "Beta oxidation of phytanic acid (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3506 + - id: "HMR_3506" - name: "" - metabolites: !!omap - m00090p: 1 @@ -129742,15 +129742,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: PMID:11356164;PMID:9271077;PMID:11356164;PMID:9271077;PMID:9469587 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "PMID:11356164;PMID:9271077;PMID:11356164;PMID:9271077;PMID:9469587" - subsystem: - - Beta oxidation of phytanic acid (peroxisomal) + - "Beta oxidation of phytanic acid (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3508 + - id: "HMR_3508" - name: "" - metabolites: !!omap - m00090p: -1 @@ -129758,15 +129758,15 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:11060359;PMID:11060359 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:11060359;PMID:11060359" - subsystem: - - Beta oxidation of phytanic acid (peroxisomal) + - "Beta oxidation of phytanic acid (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3509 + - id: "HMR_3509" - name: "" - metabolites: !!omap - m00686p: -1 @@ -129776,15 +129776,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:11060359;PMID:11060359 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:11060359;PMID:11060359" - subsystem: - - Beta oxidation of phytanic acid (peroxisomal) + - "Beta oxidation of phytanic acid (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3510 + - id: "HMR_3510" - name: "" - metabolites: !!omap - m00076p: 1 @@ -129793,30 +129793,30 @@ - m01597p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000167306 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16 - - references: PMID:11060359;PMID:11060359 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000167306" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16" + - references: "PMID:11060359;PMID:11060359" - subsystem: - - Beta oxidation of phytanic acid (peroxisomal) + - "Beta oxidation of phytanic acid (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3511 + - id: "HMR_3511" - name: "" - metabolites: !!omap - m00076p: -1 - m00080p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000242110 - - rxnFrom: HMRdatabase - - eccodes: 5.1.99.4 - - references: PMID:11060359;PMID:11060359 + - gene_reaction_rule: "ENSG00000242110" + - rxnFrom: "HMRdatabase" + - eccodes: "5.1.99.4" + - references: "PMID:11060359;PMID:11060359" - subsystem: - - Beta oxidation of phytanic acid (peroxisomal) + - "Beta oxidation of phytanic acid (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3512 + - id: "HMR_3512" - name: "" - metabolites: !!omap - m00079p: 1 @@ -129825,15 +129825,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: PMID:11356164;PMID:9271077;PMID:11356164;PMID:9271077 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "PMID:11356164;PMID:9271077;PMID:11356164;PMID:9271077" - subsystem: - - Beta oxidation of phytanic acid (peroxisomal) + - "Beta oxidation of phytanic acid (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3513 + - id: "HMR_3513" - name: "" - metabolites: !!omap - m00079p: -1 @@ -129841,15 +129841,15 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:11060359;PMID:11060359 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:11060359;PMID:11060359" - subsystem: - - Beta oxidation of phytanic acid (peroxisomal) + - "Beta oxidation of phytanic acid (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3514 + - id: "HMR_3514" - name: "" - metabolites: !!omap - m00685p: -1 @@ -129859,15 +129859,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:11060359;PMID:11060359 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:11060359;PMID:11060359" - subsystem: - - Beta oxidation of phytanic acid (peroxisomal) + - "Beta oxidation of phytanic acid (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3515 + - id: "HMR_3515" - name: "" - metabolites: !!omap - m00832p: -1 @@ -129876,30 +129876,30 @@ - m02774p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000167306 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.154 - - references: PMID:11060359;PMID:11060359 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000167306" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.154" + - references: "PMID:11060359;PMID:11060359" - subsystem: - - Beta oxidation of phytanic acid (peroxisomal) + - "Beta oxidation of phytanic acid (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3517 + - id: "HMR_3517" - name: "" - metabolites: !!omap - m00933c: -1 - m00933p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3301 + - id: "HMR_3301" - name: "" - metabolites: !!omap - m02041p: 1 @@ -129908,15 +129908,15 @@ - m03010p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: PMID:8973539;PMID:10407780;PMID:11356167 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "PMID:8973539;PMID:10407780;PMID:11356167" - subsystem: - - Beta oxidation of di-unsaturated fatty acids (n-6) (peroxisomal) + - "Beta oxidation of di-unsaturated fatty acids (n-6) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3302 + - id: "HMR_3302" - name: "" - metabolites: !!omap - m00083p: 1 @@ -129924,15 +129924,15 @@ - m03010p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:9920399;PMID:10407780;PMID:7923814;PMID:9568246 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:9920399;PMID:10407780;PMID:7923814;PMID:9568246" - subsystem: - - Beta oxidation of di-unsaturated fatty acids (n-6) (peroxisomal) + - "Beta oxidation of di-unsaturated fatty acids (n-6) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3304 + - id: "HMR_3304" - name: "" - metabolites: !!omap - m00083p: -1 @@ -129942,15 +129942,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:7846063 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:7846063" - subsystem: - - Beta oxidation of di-unsaturated fatty acids (n-6) (peroxisomal) + - "Beta oxidation of di-unsaturated fatty acids (n-6) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3305 + - id: "HMR_3305" - name: "" - metabolites: !!omap - m00884p: -1 @@ -129959,15 +129959,15 @@ - m01597p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000167306 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16 - - references: PMID:10407780;PMID:9920399;PMID:7923814;PMID:9568246 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000167306" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16" + - references: "PMID:10407780;PMID:9920399;PMID:7923814;PMID:9568246" - subsystem: - - Beta oxidation of di-unsaturated fatty acids (n-6) (peroxisomal) + - "Beta oxidation of di-unsaturated fatty acids (n-6) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3306 + - id: "HMR_3306" - name: "" - metabolites: !!omap - m01577p: -1 @@ -129976,15 +129976,15 @@ - m03009p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: PMID:8973539;PMID:10407780;PMID:11356167 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "PMID:8973539;PMID:10407780;PMID:11356167" - subsystem: - - Beta oxidation of di-unsaturated fatty acids (n-6) (peroxisomal) + - "Beta oxidation of di-unsaturated fatty acids (n-6) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3307 + - id: "HMR_3307" - name: "" - metabolites: !!omap - m00081p: 1 @@ -129992,15 +129992,15 @@ - m03009p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:9920399;PMID:9568246;PMID:7923814;PMID:10407780;PMID:7775433;PMID:10407780 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:9920399;PMID:9568246;PMID:7923814;PMID:10407780;PMID:7775433;PMID:10407780" - subsystem: - - Beta oxidation of di-unsaturated fatty acids (n-6) (peroxisomal) + - "Beta oxidation of di-unsaturated fatty acids (n-6) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3309 + - id: "HMR_3309" - name: "" - metabolites: !!omap - m00081p: -1 @@ -130010,15 +130010,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:10407780;PMID:7775433 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:10407780;PMID:7775433" - subsystem: - - Beta oxidation of di-unsaturated fatty acids (n-6) (peroxisomal) + - "Beta oxidation of di-unsaturated fatty acids (n-6) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3310 + - id: "HMR_3310" - name: "" - metabolites: !!omap - m00855p: -1 @@ -130027,15 +130027,15 @@ - m01597p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000167306 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16 - - references: PMID:10407780;PMID:9568246;PMID:7923814;PMID:9920399;PMID:7775433;PMID:10407780 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000167306" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16" + - references: "PMID:10407780;PMID:9568246;PMID:7923814;PMID:9920399;PMID:7775433;PMID:10407780" - subsystem: - - Beta oxidation of di-unsaturated fatty acids (n-6) (peroxisomal) + - "Beta oxidation of di-unsaturated fatty acids (n-6) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3311 + - id: "HMR_3311" - name: "" - metabolites: !!omap - m01576p: -1 @@ -130044,15 +130044,15 @@ - m03030p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: PMID:8973539;PMID:10407780;PMID:11356167 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "PMID:8973539;PMID:10407780;PMID:11356167" - subsystem: - - Beta oxidation of di-unsaturated fatty acids (n-6) (peroxisomal) + - "Beta oxidation of di-unsaturated fatty acids (n-6) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3312 + - id: "HMR_3312" - name: "" - metabolites: !!omap - m00696p: 1 @@ -130060,15 +130060,15 @@ - m03030p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:9920399;PMID:10407780;PMID:7923814;PMID:9568246 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:9920399;PMID:10407780;PMID:7923814;PMID:9568246" - subsystem: - - Beta oxidation of di-unsaturated fatty acids (n-6) (peroxisomal) + - "Beta oxidation of di-unsaturated fatty acids (n-6) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3314 + - id: "HMR_3314" - name: "" - metabolites: !!omap - m00696p: -1 @@ -130078,15 +130078,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:11451959 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:11451959" - subsystem: - - Beta oxidation of di-unsaturated fatty acids (n-6) (peroxisomal) + - "Beta oxidation of di-unsaturated fatty acids (n-6) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3315 + - id: "HMR_3315" - name: "" - metabolites: !!omap - m00854p: -1 @@ -130095,30 +130095,30 @@ - m01597p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000167306 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16 - - references: PMID:10407780;PMID:9920399;PMID:7923814;PMID:9568246 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000167306" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16" + - references: "PMID:10407780;PMID:9920399;PMID:7923814;PMID:9568246" - subsystem: - - Beta oxidation of di-unsaturated fatty acids (n-6) (peroxisomal) + - "Beta oxidation of di-unsaturated fatty acids (n-6) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3316 + - id: "HMR_3316" - name: "" - metabolites: !!omap - m01575p: -1 - m03021p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 5.3.3.8 - - references: PMID:10407780 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.3.8" + - references: "PMID:10407780" - subsystem: - - Beta oxidation of di-unsaturated fatty acids (n-6) (peroxisomal) + - "Beta oxidation of di-unsaturated fatty acids (n-6) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3317 + - id: "HMR_3317" - name: "" - metabolites: !!omap - m00082p: 1 @@ -130126,15 +130126,15 @@ - m03021p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:9920399;PMID:10407780;PMID:7923814;PMID:9568246 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:9920399;PMID:10407780;PMID:7923814;PMID:9568246" - subsystem: - - Beta oxidation of di-unsaturated fatty acids (n-6) (peroxisomal) + - "Beta oxidation of di-unsaturated fatty acids (n-6) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3319 + - id: "HMR_3319" - name: "" - metabolites: !!omap - m00082p: -1 @@ -130144,15 +130144,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of di-unsaturated fatty acids (n-6) (peroxisomal) + - "Beta oxidation of di-unsaturated fatty acids (n-6) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3320 + - id: "HMR_3320" - name: "" - metabolites: !!omap - m00883p: -1 @@ -130161,15 +130161,15 @@ - m01597p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000167306 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16 - - references: PMID:7923814;PMID:9920399;PMID:10407780;PMID:9568246 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000167306" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16" + - references: "PMID:7923814;PMID:9920399;PMID:10407780;PMID:9568246" - subsystem: - - Beta oxidation of di-unsaturated fatty acids (n-6) (peroxisomal) + - "Beta oxidation of di-unsaturated fatty acids (n-6) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3321 + - id: "HMR_3321" - name: "" - metabolites: !!omap - m00678p: 1 @@ -130177,15 +130177,15 @@ - m02039p: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: PMID:8973539;PMID:10407780;PMID:11356167 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "PMID:8973539;PMID:10407780;PMID:11356167" - subsystem: - - Beta oxidation of di-unsaturated fatty acids (n-6) (peroxisomal) + - "Beta oxidation of di-unsaturated fatty acids (n-6) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3322 + - id: "HMR_3322" - name: "" - metabolites: !!omap - m00678p: -1 @@ -130195,30 +130195,30 @@ - m03035p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104325 or ENSG00000242612 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.34 - - references: PMID:7775433;PMID:11356164 + - gene_reaction_rule: "ENSG00000104325 or ENSG00000242612" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.34" + - references: "PMID:7775433;PMID:11356164" - subsystem: - - Beta oxidation of di-unsaturated fatty acids (n-6) (peroxisomal) + - "Beta oxidation of di-unsaturated fatty acids (n-6) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3323 + - id: "HMR_3323" - name: "" - metabolites: !!omap - m00039p: -1 - m03035p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 5.3.3.8 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.3.8" + - references: "" - subsystem: - - Beta oxidation of di-unsaturated fatty acids (n-6) (peroxisomal) + - "Beta oxidation of di-unsaturated fatty acids (n-6) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3107 + - id: "HMR_3107" - name: "" - metabolites: !!omap - m00040m: 1 @@ -130227,15 +130227,15 @@ - m01803m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.- - - references: + - gene_reaction_rule: "ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.-" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3108 + - id: "HMR_3108" - name: "" - metabolites: !!omap - m00040m: -1 @@ -130243,15 +130243,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3109 + - id: "HMR_3109" - name: "" - metabolites: !!omap - m00776m: -1 @@ -130261,15 +130261,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3110 + - id: "HMR_3110" - name: "" - metabolites: !!omap - m00866m: -1 @@ -130278,15 +130278,15 @@ - m01773m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3111 + - id: "HMR_3111" - name: "" - metabolites: !!omap - m00043m: 1 @@ -130295,15 +130295,15 @@ - m01803m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.- - - references: + - gene_reaction_rule: "ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.-" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3112 + - id: "HMR_3112" - name: "" - metabolites: !!omap - m00043m: -1 @@ -130311,15 +130311,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3113 + - id: "HMR_3113" - name: "" - metabolites: !!omap - m00777m: -1 @@ -130329,15 +130329,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3114 + - id: "HMR_3114" - name: "" - metabolites: !!omap - m00872m: -1 @@ -130346,15 +130346,15 @@ - m02941m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3115 + - id: "HMR_3115" - name: "" - metabolites: !!omap - m00057m: 1 @@ -130363,15 +130363,15 @@ - m02941m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.- - - references: + - gene_reaction_rule: "ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.-" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3116 + - id: "HMR_3116" - name: "" - metabolites: !!omap - m00057m: -1 @@ -130379,15 +130379,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3117 + - id: "HMR_3117" - name: "" - metabolites: !!omap - m00793m: -1 @@ -130397,15 +130397,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3118 + - id: "HMR_3118" - name: "" - metabolites: !!omap - m00890m: -1 @@ -130414,15 +130414,15 @@ - m02678m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3121 + - id: "HMR_3121" - name: "" - metabolites: !!omap - m00051m: 1 @@ -130431,15 +130431,15 @@ - m02678m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.- - - references: PMID:13295225;PMID:1540149 + - gene_reaction_rule: "ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.-" + - references: "PMID:13295225;PMID:1540149" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3122 + - id: "HMR_3122" - name: "" - metabolites: !!omap - m00051m: -1 @@ -130447,15 +130447,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:8012501;PMID:8188243;PMID:1550553 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:8012501;PMID:8188243;PMID:1550553" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3123 + - id: "HMR_3123" - name: "" - metabolites: !!omap - m00175m: -1 @@ -130465,15 +130465,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:10231530;PMID:10329704;PMID:1550553;PMID:1651711;PMID:7150615;PMID:8188243;PMID:8687463;PMID:9553139;PMID: + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:10231530;PMID:10329704;PMID:1550553;PMID:1651711;PMID:7150615;PMID:8188243;PMID:8687463;PMID:9553139;PMID:" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3125 + - id: "HMR_3125" - name: "" - metabolites: !!omap - m00895m: -1 @@ -130482,15 +130482,15 @@ - m02495m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: PMID:10706581;PMID:1121274;PMID:1679347;PMID:3194209;PMID:6378901;PMID:8241273;PMID: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "PMID:10706581;PMID:1121274;PMID:1679347;PMID:3194209;PMID:6378901;PMID:8241273;PMID:" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3128 + - id: "HMR_3128" - name: "" - metabolites: !!omap - m00066m: 1 @@ -130499,15 +130499,15 @@ - m02495m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.- - - references: PMID:13295225;PMID:1540149 + - gene_reaction_rule: "ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.-" + - references: "PMID:13295225;PMID:1540149" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3129 + - id: "HMR_3129" - name: "" - metabolites: !!omap - m00066m: -1 @@ -130515,15 +130515,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:8012501;PMID:8188243;PMID:1550553 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:8012501;PMID:8188243;PMID:1550553" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3130 + - id: "HMR_3130" - name: "" - metabolites: !!omap - m00178m: -1 @@ -130533,15 +130533,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:10231530;PMID:10329704;PMID:1550553;PMID:1651711;PMID:7150615;PMID:8188243;PMID:8687463;PMID:9553139;PMID:1550553 + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:10231530;PMID:10329704;PMID:1550553;PMID:1651711;PMID:7150615;PMID:8188243;PMID:8687463;PMID:9553139;PMID:1550553" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3132 + - id: "HMR_3132" - name: "" - metabolites: !!omap - m00906m: -1 @@ -130550,15 +130550,15 @@ - m02345m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: PMID:1121274;PMID:1679347;PMID:3194209;PMID:6378901;PMID:8241273;PMID:1550553 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "PMID:1121274;PMID:1679347;PMID:3194209;PMID:6378901;PMID:8241273;PMID:1550553" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3135 + - id: "HMR_3135" - name: "" - metabolites: !!omap - m00042m: 1 @@ -130567,15 +130567,15 @@ - m02345m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.- - - references: PMID:13295225;PMID:1540149 + - gene_reaction_rule: "ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.-" + - references: "PMID:13295225;PMID:1540149" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3136 + - id: "HMR_3136" - name: "" - metabolites: !!omap - m00042m: -1 @@ -130583,15 +130583,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:8012501;PMID:8188243;PMID:13295248 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:8012501;PMID:8188243;PMID:13295248" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3137 + - id: "HMR_3137" - name: "" - metabolites: !!omap - m00174m: -1 @@ -130601,15 +130601,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:10231530;PMID:10329704;PMID:1550553;PMID:1651711;PMID:7150615;PMID:8188243;PMID:8687463;PMID:9553139;PMID:8687463 + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:10231530;PMID:10329704;PMID:1550553;PMID:1651711;PMID:7150615;PMID:8188243;PMID:8687463;PMID:9553139;PMID:8687463" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3139 + - id: "HMR_3139" - name: "" - metabolites: !!omap - m00868m: -1 @@ -130618,15 +130618,15 @@ - m01650m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: PMID:1121274;PMID:1679347;PMID:3194209;PMID:6378901;PMID:8241273;PMID:1550553 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "PMID:1121274;PMID:1679347;PMID:3194209;PMID:6378901;PMID:8241273;PMID:1550553" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3142 + - id: "HMR_3142" - name: "" - metabolites: !!omap - m00039m: 1 @@ -130635,15 +130635,15 @@ - m01803m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117054 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.7;1.3.99.- - - references: PMID:13295225;PMID:3597357 + - gene_reaction_rule: "ENSG00000117054 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.7;1.3.99.-" + - references: "PMID:13295225;PMID:3597357" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3143 + - id: "HMR_3143" - name: "" - metabolites: !!omap - m00039m: -1 @@ -130651,15 +130651,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:8012501;PMID:8188243;PMID:13295248 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:8012501;PMID:8188243;PMID:13295248" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3144 + - id: "HMR_3144" - name: "" - metabolites: !!omap - m00181m: -1 @@ -130669,15 +130669,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:10231530;PMID:10329704;PMID:1550553;PMID:1651711;PMID:7150615;PMID:8188243;PMID:8687463;PMID:9553139;PMID:8687463 + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:10231530;PMID:10329704;PMID:1550553;PMID:1651711;PMID:7150615;PMID:8188243;PMID:8687463;PMID:9553139;PMID:8687463" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3146 + - id: "HMR_3146" - name: "" - metabolites: !!omap - m00858m: -1 @@ -130686,15 +130686,15 @@ - m02644m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: PMID:1121274;PMID:1679347;PMID:3194209;PMID:6378901;PMID:8241273;PMID:1550553 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "PMID:1121274;PMID:1679347;PMID:3194209;PMID:6378901;PMID:8241273;PMID:1550553" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3149 + - id: "HMR_3149" - name: "" - metabolites: !!omap - m00059m: 1 @@ -130703,15 +130703,15 @@ - m02644m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117054 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.7;1.3.99.- - - references: PMID:13295225;PMID:3597357 + - gene_reaction_rule: "ENSG00000117054 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.7;1.3.99.-" + - references: "PMID:13295225;PMID:3597357" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3150 + - id: "HMR_3150" - name: "" - metabolites: !!omap - m00059m: -1 @@ -130719,15 +130719,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:8012501;PMID:8188243;PMID:13295248 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:8012501;PMID:8188243;PMID:13295248" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3151 + - id: "HMR_3151" - name: "" - metabolites: !!omap - m00183m: -1 @@ -130737,15 +130737,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:10231530;PMID:10329704;PMID:1550553;PMID:1651711;PMID:7150615;PMID:8188243;PMID:8687463;PMID:9553139;PMID:8687463 + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:10231530;PMID:10329704;PMID:1550553;PMID:1651711;PMID:7150615;PMID:8188243;PMID:8687463;PMID:9553139;PMID:8687463" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3153 + - id: "HMR_3153" - name: "" - metabolites: !!omap - m00892m: -1 @@ -130754,15 +130754,15 @@ - m02122m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: PMID:1121274;PMID:1679347;PMID:3194209;PMID:6378901;PMID:8241273;PMID:1550553 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "PMID:1121274;PMID:1679347;PMID:3194209;PMID:6378901;PMID:8241273;PMID:1550553" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3156 + - id: "HMR_3156" - name: "" - metabolites: !!omap - m00053m: 1 @@ -130771,15 +130771,15 @@ - m02122m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000196177 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.5 - - references: PMID:13295225;PMID:3597357 + - gene_reaction_rule: "ENSG00000196177" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.5" + - references: "PMID:13295225;PMID:3597357" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3157 + - id: "HMR_3157" - name: "" - metabolites: !!omap - m00053m: -1 @@ -130787,15 +130787,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:8012501;PMID:8188243;13295248 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:8012501;PMID:8188243;13295248" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3158 + - id: "HMR_3158" - name: "" - metabolites: !!omap - m00182m: -1 @@ -130805,15 +130805,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:10231530;PMID:10329704;PMID:1550553;PMID:1651711;PMID:7150615;PMID:8188243;PMID:8687463;PMID:9553139;PMID:8687463 + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:10231530;PMID:10329704;PMID:1550553;PMID:1651711;PMID:7150615;PMID:8188243;PMID:8687463;PMID:9553139;PMID:8687463" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3160 + - id: "HMR_3160" - name: "" - metabolites: !!omap - m00882m: -1 @@ -130822,15 +130822,15 @@ - m01597m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: PMID:10806397;PMID:1121274;PMID:1679347;PMID:1735445;PMID:1979337;PMID:2048733;PMID:3194209;PMID:6378901;PMID:8241273;PMID:1550553 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "PMID:10806397;PMID:1121274;PMID:1679347;PMID:1735445;PMID:1979337;PMID:2048733;PMID:3194209;PMID:6378901;PMID:8241273;PMID:1550553" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3398 + - id: "HMR_3398" - name: "" - metabolites: !!omap - m00129m: -1 @@ -130844,15 +130844,15 @@ - m02553m: 6 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16 - - references: + - gene_reaction_rule: "ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3406 + - id: "HMR_3406" - name: "" - metabolites: !!omap - m00020m: -1 @@ -130866,15 +130866,15 @@ - m02553m: 8 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16 - - references: + - gene_reaction_rule: "ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3407 + - id: "HMR_3407" - name: "" - metabolites: !!omap - m00127m: -1 @@ -130888,15 +130888,15 @@ - m02553m: 8 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16 - - references: + - gene_reaction_rule: "ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3408 + - id: "HMR_3408" - name: "" - metabolites: !!omap - m00116m: -1 @@ -130910,15 +130910,15 @@ - m02553m: 8 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16 - - references: + - gene_reaction_rule: "ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3409 + - id: "HMR_3409" - name: "" - metabolites: !!omap - m00106m: -1 @@ -130932,15 +130932,15 @@ - m02553m: 8 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16 - - references: + - gene_reaction_rule: "ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3411 + - id: "HMR_3411" - name: "" - metabolites: !!omap - m01236m: -1 @@ -130954,15 +130954,15 @@ - m02553m: 9 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16 - - references: + - gene_reaction_rule: "ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3413 + - id: "HMR_3413" - name: "" - metabolites: !!omap - m00123m: -1 @@ -130976,15 +130976,15 @@ - m02553m: 9 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16 - - references: + - gene_reaction_rule: "ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3414 + - id: "HMR_3414" - name: "" - metabolites: !!omap - m00101m: -1 @@ -130998,15 +130998,15 @@ - m02553m: 9 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16 - - references: + - gene_reaction_rule: "ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3416 + - id: "HMR_3416" - name: "" - metabolites: !!omap - m00006m: -1 @@ -131020,15 +131020,15 @@ - m02553m: 10 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16 - - references: + - gene_reaction_rule: "ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3421 + - id: "HMR_3421" - name: "" - metabolites: !!omap - m00119m: -1 @@ -131042,15 +131042,15 @@ - m02553m: 10 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16 - - references: + - gene_reaction_rule: "ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3422 + - id: "HMR_3422" - name: "" - metabolites: !!omap - m00093m: -1 @@ -131064,15 +131064,15 @@ - m02553m: 10 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16 - - references: + - gene_reaction_rule: "ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3423 + - id: "HMR_3423" - name: "" - metabolites: !!omap - m00009m: -1 @@ -131086,15 +131086,15 @@ - m02553m: 9 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16 - - references: + - gene_reaction_rule: "ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3424 + - id: "HMR_3424" - name: "" - metabolites: !!omap - m00023m: -1 @@ -131108,15 +131108,15 @@ - m02553m: 10 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16 - - references: + - gene_reaction_rule: "ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3425 + - id: "HMR_3425" - name: "" - metabolites: !!omap - m00264m: -1 @@ -131130,15 +131130,15 @@ - m02553m: 10 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16 - - references: + - gene_reaction_rule: "ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3426 + - id: "HMR_3426" - name: "" - metabolites: !!omap - m01261m: 9 @@ -131152,15 +131152,15 @@ - m02553m: 8 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16 - - references: + - gene_reaction_rule: "ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_9719 + - id: "HMR_9719" - name: "" - metabolites: !!omap - m00108m: -1 @@ -131174,15 +131174,15 @@ - m02553m: 8 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16 - - references: + - gene_reaction_rule: "ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3427 + - id: "HMR_3427" - name: "" - metabolites: !!omap - m00125m: -1 @@ -131196,15 +131196,15 @@ - m02553m: 9 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16 - - references: + - gene_reaction_rule: "ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3428 + - id: "HMR_3428" - name: "" - metabolites: !!omap - m00103m: -1 @@ -131218,15 +131218,15 @@ - m02553m: 9 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16 - - references: + - gene_reaction_rule: "ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3429 + - id: "HMR_3429" - name: "" - metabolites: !!omap - m00121m: -1 @@ -131240,15 +131240,15 @@ - m02553m: 10 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16 - - references: + - gene_reaction_rule: "ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3430 + - id: "HMR_3430" - name: "" - metabolites: !!omap - m00095m: -1 @@ -131262,15 +131262,15 @@ - m02553m: 10 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16 - - references: + - gene_reaction_rule: "ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3431 + - id: "HMR_3431" - name: "" - metabolites: !!omap - m00012m: -1 @@ -131284,15 +131284,15 @@ - m02553m: 9 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16 - - references: + - gene_reaction_rule: "ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3432 + - id: "HMR_3432" - name: "" - metabolites: !!omap - m00343m: -1 @@ -131306,15 +131306,15 @@ - m02553m: 10 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16 - - references: + - gene_reaction_rule: "ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3433 + - id: "HMR_3433" - name: "" - metabolites: !!omap - m00262m: -1 @@ -131328,15 +131328,15 @@ - m02553m: 10 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16 - - references: + - gene_reaction_rule: "ENSG00000060971 or ENSG00000072506 or ENSG00000072778 or ENSG00000084754 or ENSG00000115361 or ENSG00000117054 or ENSG00000127884 or ENSG00000138029 or ENSG00000138796 or ENSG00000167315 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17;1.1.1.35;1.1.1.211;1.3.8.7;1.3.8.8;1.3.8.9;2.3.1.16" + - references: "" - subsystem: - - Beta oxidation of even-chain fatty acids (mitochondrial) + - "Beta oxidation of even-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3170 + - id: "HMR_3170" - name: "" - metabolites: !!omap - m00044m: 1 @@ -131345,15 +131345,15 @@ - m02052m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.- - - references: + - gene_reaction_rule: "ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.-" + - references: "" - subsystem: - - Beta oxidation of odd-chain fatty acids (mitochondrial) + - "Beta oxidation of odd-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3171 + - id: "HMR_3171" - name: "" - metabolites: !!omap - m00044m: -1 @@ -131361,15 +131361,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "" - subsystem: - - Beta oxidation of odd-chain fatty acids (mitochondrial) + - "Beta oxidation of odd-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3172 + - id: "HMR_3172" - name: "" - metabolites: !!omap - m00778m: -1 @@ -131379,15 +131379,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of odd-chain fatty acids (mitochondrial) + - "Beta oxidation of odd-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3173 + - id: "HMR_3173" - name: "" - metabolites: !!omap - m00873m: -1 @@ -131396,15 +131396,15 @@ - m02612m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of odd-chain fatty acids (mitochondrial) + - "Beta oxidation of odd-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3174 + - id: "HMR_3174" - name: "" - metabolites: !!omap - m00054m: 1 @@ -131413,15 +131413,15 @@ - m02612m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.- - - references: + - gene_reaction_rule: "ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.-" + - references: "" - subsystem: - - Beta oxidation of odd-chain fatty acids (mitochondrial) + - "Beta oxidation of odd-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3175 + - id: "HMR_3175" - name: "" - metabolites: !!omap - m00054m: -1 @@ -131429,15 +131429,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "" - subsystem: - - Beta oxidation of odd-chain fatty acids (mitochondrial) + - "Beta oxidation of odd-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3176 + - id: "HMR_3176" - name: "" - metabolites: !!omap - m00790m: -1 @@ -131447,15 +131447,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of odd-chain fatty acids (mitochondrial) + - "Beta oxidation of odd-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3177 + - id: "HMR_3177" - name: "" - metabolites: !!omap - m00887m: -1 @@ -131464,15 +131464,15 @@ - m02101m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of odd-chain fatty acids (mitochondrial) + - "Beta oxidation of odd-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3178 + - id: "HMR_3178" - name: "" - metabolites: !!omap - m00046m: 1 @@ -131481,15 +131481,15 @@ - m02101m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.- - - references: + - gene_reaction_rule: "ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.-" + - references: "" - subsystem: - - Beta oxidation of odd-chain fatty acids (mitochondrial) + - "Beta oxidation of odd-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3179 + - id: "HMR_3179" - name: "" - metabolites: !!omap - m00046m: -1 @@ -131497,15 +131497,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "" - subsystem: - - Beta oxidation of odd-chain fatty acids (mitochondrial) + - "Beta oxidation of odd-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3180 + - id: "HMR_3180" - name: "" - metabolites: !!omap - m00780m: -1 @@ -131515,15 +131515,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of odd-chain fatty acids (mitochondrial) + - "Beta oxidation of odd-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3181 + - id: "HMR_3181" - name: "" - metabolites: !!omap - m00875m: -1 @@ -131532,15 +131532,15 @@ - m02689m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of odd-chain fatty acids (mitochondrial) + - "Beta oxidation of odd-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3182 + - id: "HMR_3182" - name: "" - metabolites: !!omap - m00061m: 1 @@ -131549,15 +131549,15 @@ - m02689m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.- - - references: + - gene_reaction_rule: "ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.-" + - references: "" - subsystem: - - Beta oxidation of odd-chain fatty acids (mitochondrial) + - "Beta oxidation of odd-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3183 + - id: "HMR_3183" - name: "" - metabolites: !!omap - m00061m: -1 @@ -131565,15 +131565,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "" - subsystem: - - Beta oxidation of odd-chain fatty acids (mitochondrial) + - "Beta oxidation of odd-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3184 + - id: "HMR_3184" - name: "" - metabolites: !!omap - m00795m: -1 @@ -131583,15 +131583,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of odd-chain fatty acids (mitochondrial) + - "Beta oxidation of odd-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3185 + - id: "HMR_3185" - name: "" - metabolites: !!omap - m00897m: -1 @@ -131600,15 +131600,15 @@ - m03050m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of odd-chain fatty acids (mitochondrial) + - "Beta oxidation of odd-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3186 + - id: "HMR_3186" - name: "" - metabolites: !!omap - m00069m: 1 @@ -131617,15 +131617,15 @@ - m03050m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.- - - references: + - gene_reaction_rule: "ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.-" + - references: "" - subsystem: - - Beta oxidation of odd-chain fatty acids (mitochondrial) + - "Beta oxidation of odd-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3187 + - id: "HMR_3187" - name: "" - metabolites: !!omap - m00069m: -1 @@ -131633,15 +131633,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "" - subsystem: - - Beta oxidation of odd-chain fatty acids (mitochondrial) + - "Beta oxidation of odd-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3188 + - id: "HMR_3188" - name: "" - metabolites: !!omap - m00804m: -1 @@ -131651,15 +131651,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of odd-chain fatty acids (mitochondrial) + - "Beta oxidation of odd-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3189 + - id: "HMR_3189" - name: "" - metabolites: !!omap - m00909m: -1 @@ -131668,15 +131668,15 @@ - m03116m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of odd-chain fatty acids (mitochondrial) + - "Beta oxidation of odd-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3190 + - id: "HMR_3190" - name: "" - metabolites: !!omap - m00071m: 1 @@ -131685,15 +131685,15 @@ - m03116m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117054 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.7;1.3.99.- - - references: + - gene_reaction_rule: "ENSG00000117054 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.7;1.3.99.-" + - references: "" - subsystem: - - Beta oxidation of odd-chain fatty acids (mitochondrial) + - "Beta oxidation of odd-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3191 + - id: "HMR_3191" - name: "" - metabolites: !!omap - m00071m: -1 @@ -131701,15 +131701,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "" - subsystem: - - Beta oxidation of odd-chain fatty acids (mitochondrial) + - "Beta oxidation of odd-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3192 + - id: "HMR_3192" - name: "" - metabolites: !!omap - m00806m: -1 @@ -131719,15 +131719,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of odd-chain fatty acids (mitochondrial) + - "Beta oxidation of odd-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3193 + - id: "HMR_3193" - name: "" - metabolites: !!omap - m00911m: -1 @@ -131736,15 +131736,15 @@ - m02616m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of odd-chain fatty acids (mitochondrial) + - "Beta oxidation of odd-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3194 + - id: "HMR_3194" - name: "" - metabolites: !!omap - m00056m: 1 @@ -131753,15 +131753,15 @@ - m02616m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117054 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.7;1.3.99.- - - references: + - gene_reaction_rule: "ENSG00000117054 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.7;1.3.99.-" + - references: "" - subsystem: - - Beta oxidation of odd-chain fatty acids (mitochondrial) + - "Beta oxidation of odd-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3195 + - id: "HMR_3195" - name: "" - metabolites: !!omap - m00056m: -1 @@ -131769,15 +131769,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "" - subsystem: - - Beta oxidation of odd-chain fatty acids (mitochondrial) + - "Beta oxidation of odd-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3196 + - id: "HMR_3196" - name: "" - metabolites: !!omap - m00792m: -1 @@ -131787,15 +131787,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of odd-chain fatty acids (mitochondrial) + - "Beta oxidation of odd-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3197 + - id: "HMR_3197" - name: "" - metabolites: !!omap - m00889m: -1 @@ -131804,15 +131804,15 @@ - m02107m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of odd-chain fatty acids (mitochondrial) + - "Beta oxidation of odd-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3198 + - id: "HMR_3198" - name: "" - metabolites: !!omap - m00048m: 1 @@ -131821,15 +131821,15 @@ - m02107m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117054 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.7;1.3.99.- - - references: + - gene_reaction_rule: "ENSG00000117054 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.7;1.3.99.-" + - references: "" - subsystem: - - Beta oxidation of odd-chain fatty acids (mitochondrial) + - "Beta oxidation of odd-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3199 + - id: "HMR_3199" - name: "" - metabolites: !!omap - m00048m: -1 @@ -131837,15 +131837,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "" - subsystem: - - Beta oxidation of odd-chain fatty acids (mitochondrial) + - "Beta oxidation of odd-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3200 + - id: "HMR_3200" - name: "" - metabolites: !!omap - m00782m: -1 @@ -131855,15 +131855,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of odd-chain fatty acids (mitochondrial) + - "Beta oxidation of odd-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3201 + - id: "HMR_3201" - name: "" - metabolites: !!omap - m00877m: -1 @@ -131872,15 +131872,15 @@ - m02694m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of odd-chain fatty acids (mitochondrial) + - "Beta oxidation of odd-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3202 + - id: "HMR_3202" - name: "" - metabolites: !!omap - m00063m: 1 @@ -131889,15 +131889,15 @@ - m02694m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000196177 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.5 - - references: + - gene_reaction_rule: "ENSG00000196177" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.5" + - references: "" - subsystem: - - Beta oxidation of odd-chain fatty acids (mitochondrial) + - "Beta oxidation of odd-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3203 + - id: "HMR_3203" - name: "" - metabolites: !!omap - m00063m: -1 @@ -131905,15 +131905,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "" - subsystem: - - Beta oxidation of odd-chain fatty acids (mitochondrial) + - "Beta oxidation of odd-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3204 + - id: "HMR_3204" - name: "" - metabolites: !!omap - m00797m: -1 @@ -131923,15 +131923,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of odd-chain fatty acids (mitochondrial) + - "Beta oxidation of odd-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3205 + - id: "HMR_3205" - name: "" - metabolites: !!omap - m00899m: -1 @@ -131940,15 +131940,15 @@ - m02774m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of odd-chain fatty acids (mitochondrial) + - "Beta oxidation of odd-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3396 + - id: "HMR_3396" - name: "" - metabolites: !!omap - m00004m: -1 @@ -131963,15 +131963,15 @@ - m02774m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Beta oxidation of odd-chain fatty acids (mitochondrial) + - "Beta oxidation of odd-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3397 + - id: "HMR_3397" - name: "" - metabolites: !!omap - m01237m: -1 @@ -131986,15 +131986,15 @@ - m02774m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Beta oxidation of odd-chain fatty acids (mitochondrial) + - "Beta oxidation of odd-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3240 + - id: "HMR_3240" - name: "" - metabolites: !!omap - m00018m: -1 @@ -132003,15 +132003,15 @@ - m03014m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.- - - references: + - gene_reaction_rule: "ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.-" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-7) (mitochondrial) + - "Beta oxidation of unsaturated fatty acids (n-7) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3241 + - id: "HMR_3241" - name: "" - metabolites: !!omap - m00702m: 1 @@ -132019,15 +132019,15 @@ - m03014m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-7) (mitochondrial) + - "Beta oxidation of unsaturated fatty acids (n-7) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3242 + - id: "HMR_3242" - name: "" - metabolites: !!omap - m00702m: -1 @@ -132037,15 +132037,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-7) (mitochondrial) + - "Beta oxidation of unsaturated fatty acids (n-7) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3243 + - id: "HMR_3243" - name: "" - metabolites: !!omap - m00843m: -1 @@ -132054,15 +132054,15 @@ - m01597m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-7) (mitochondrial) + - "Beta oxidation of unsaturated fatty acids (n-7) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3244 + - id: "HMR_3244" - name: "" - metabolites: !!omap - m01586m: -1 @@ -132071,15 +132071,15 @@ - m03024m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.- - - references: + - gene_reaction_rule: "ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.-" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-7) (mitochondrial) + - "Beta oxidation of unsaturated fatty acids (n-7) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3245 + - id: "HMR_3245" - name: "" - metabolites: !!omap - m00170m: 1 @@ -132087,15 +132087,15 @@ - m03024m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-7) (mitochondrial) + - "Beta oxidation of unsaturated fatty acids (n-7) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3246 + - id: "HMR_3246" - name: "" - metabolites: !!omap - m00170m: -1 @@ -132105,15 +132105,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-7) (mitochondrial) + - "Beta oxidation of unsaturated fatty acids (n-7) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3247 + - id: "HMR_3247" - name: "" - metabolites: !!omap - m00841m: -1 @@ -132122,15 +132122,15 @@ - m02677m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-7) (mitochondrial) + - "Beta oxidation of unsaturated fatty acids (n-7) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3250 + - id: "HMR_3250" - name: "" - metabolites: !!omap - m01802m: -1 @@ -132139,15 +132139,15 @@ - m03020m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.- - - references: PMID:1047780;PMID:8973539;PMID:11135616 + - gene_reaction_rule: "ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.-" + - references: "PMID:1047780;PMID:8973539;PMID:11135616" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-7) (mitochondrial) + - "Beta oxidation of unsaturated fatty acids (n-7) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3252 + - id: "HMR_3252" - name: "" - metabolites: !!omap - m00177m: 1 @@ -132155,15 +132155,15 @@ - m03020m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:9920399;PMID:10407780;PMID:9568246;PMID:7923814 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:9920399;PMID:10407780;PMID:9568246;PMID:7923814" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-7) (mitochondrial) + - "Beta oxidation of unsaturated fatty acids (n-7) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3254 + - id: "HMR_3254" - name: "" - metabolites: !!omap - m00177m: -1 @@ -132173,15 +132173,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:7923814;PMID:8319713;PMID:11427448;PMID:9920399 + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:7923814;PMID:8319713;PMID:11427448;PMID:9920399" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-7) (mitochondrial) + - "Beta oxidation of unsaturated fatty acids (n-7) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3256 + - id: "HMR_3256" - name: "" - metabolites: !!omap - m00118m: 1 @@ -132190,15 +132190,15 @@ - m01597m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: PMID:7923814;PMID:9920399;PMID:9568246 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "PMID:7923814;PMID:9920399;PMID:9568246" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-7) (mitochondrial) + - "Beta oxidation of unsaturated fatty acids (n-7) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3258 + - id: "HMR_3258" - name: "" - metabolites: !!omap - m00118m: -1 @@ -132207,15 +132207,15 @@ - m03023m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.- - - references: PMID:1047780;PMID:8973539;PMID:11135616 + - gene_reaction_rule: "ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.-" + - references: "PMID:1047780;PMID:8973539;PMID:11135616" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-7) (mitochondrial) + - "Beta oxidation of unsaturated fatty acids (n-7) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3260 + - id: "HMR_3260" - name: "" - metabolites: !!omap - m01574m: 1 @@ -132223,15 +132223,15 @@ - m03023m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:9568246;PMID:7923814;PMID:9920399;PMID:10407780 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:9568246;PMID:7923814;PMID:9920399;PMID:10407780" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-7) (mitochondrial) + - "Beta oxidation of unsaturated fatty acids (n-7) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3262 + - id: "HMR_3262" - name: "" - metabolites: !!omap - m00886m: 1 @@ -132241,15 +132241,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:8319713;PMID:11427448;PMID:9920399;PMID:7923814 + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:8319713;PMID:11427448;PMID:9920399;PMID:7923814" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-7) (mitochondrial) + - "Beta oxidation of unsaturated fatty acids (n-7) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3264 + - id: "HMR_3264" - name: "" - metabolites: !!omap - m00099m: 1 @@ -132258,30 +132258,30 @@ - m01597m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: PMID:9920399;PMID:9568246;PMID:7923814 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "PMID:9920399;PMID:9568246;PMID:7923814" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-7) (mitochondrial) + - "Beta oxidation of unsaturated fatty acids (n-7) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3272 + - id: "HMR_3272" - name: "" - metabolites: !!omap - m00042m: -1 - m00099m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104823 or ENSG00000167969 or ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 5.3.3.8;5.3.3.- - - references: PMID:8486162 + - gene_reaction_rule: "ENSG00000104823 or ENSG00000167969 or ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.3.8;5.3.3.-" + - references: "PMID:8486162" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-7) (mitochondrial) + - "Beta oxidation of unsaturated fatty acids (n-7) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3356 + - id: "HMR_3356" - name: "" - metabolites: !!omap - m00018p: -1 @@ -132290,15 +132290,15 @@ - m03014p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-7) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-7) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3357 + - id: "HMR_3357" - name: "" - metabolites: !!omap - m00702p: 1 @@ -132306,15 +132306,15 @@ - m03014p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-7) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-7) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3358 + - id: "HMR_3358" - name: "" - metabolites: !!omap - m00702p: -1 @@ -132324,15 +132324,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-7) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-7) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3359 + - id: "HMR_3359" - name: "" - metabolites: !!omap - m00843p: -1 @@ -132341,15 +132341,15 @@ - m01597p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000167306 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16 - - references: + - gene_reaction_rule: "ENSG00000060971 and ENSG00000167306" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-7) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-7) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3360 + - id: "HMR_3360" - name: "" - metabolites: !!omap - m01586p: -1 @@ -132358,15 +132358,15 @@ - m03024p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-7) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-7) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3361 + - id: "HMR_3361" - name: "" - metabolites: !!omap - m00170p: 1 @@ -132374,15 +132374,15 @@ - m03024p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000167969 and ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-7) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-7) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3362 + - id: "HMR_3362" - name: "" - metabolites: !!omap - m00170p: -1 @@ -132392,15 +132392,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-7) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-7) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3363 + - id: "HMR_3363" - name: "" - metabolites: !!omap - m00841p: -1 @@ -132409,15 +132409,15 @@ - m02677p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000167306 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16 - - references: + - gene_reaction_rule: "ENSG00000060971 and ENSG00000167306" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-7) (peroxisomal) + - "Beta oxidation of unsaturated fatty acids (n-7) (peroxisomal)" - confidence_score: 0 - !!omap - - id: HMR_3218 + - id: "HMR_3218" - name: "" - metabolites: !!omap - m00016m: -1 @@ -132426,15 +132426,15 @@ - m03013m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.- - - references: + - gene_reaction_rule: "ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.-" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (mitochondrial) + - "Beta oxidation of unsaturated fatty acids (n-9) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3219 + - id: "HMR_3219" - name: "" - metabolites: !!omap - m00701m: 1 @@ -132442,15 +132442,15 @@ - m03013m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (mitochondrial) + - "Beta oxidation of unsaturated fatty acids (n-9) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3220 + - id: "HMR_3220" - name: "" - metabolites: !!omap - m00701m: -1 @@ -132460,15 +132460,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (mitochondrial) + - "Beta oxidation of unsaturated fatty acids (n-9) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3221 + - id: "HMR_3221" - name: "" - metabolites: !!omap - m00007m: 1 @@ -132477,15 +132477,15 @@ - m01597m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (mitochondrial) + - "Beta oxidation of unsaturated fatty acids (n-9) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3222 + - id: "HMR_3222" - name: "" - metabolites: !!omap - m00007m: -1 @@ -132494,15 +132494,15 @@ - m03012m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.- - - references: + - gene_reaction_rule: "ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.-" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (mitochondrial) + - "Beta oxidation of unsaturated fatty acids (n-9) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3223 + - id: "HMR_3223" - name: "" - metabolites: !!omap - m00700m: 1 @@ -132510,15 +132510,15 @@ - m03012m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (mitochondrial) + - "Beta oxidation of unsaturated fatty acids (n-9) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3224 + - id: "HMR_3224" - name: "" - metabolites: !!omap - m00700m: -1 @@ -132528,15 +132528,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (mitochondrial) + - "Beta oxidation of unsaturated fatty acids (n-9) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3225 + - id: "HMR_3225" - name: "" - metabolites: !!omap - m00840m: -1 @@ -132545,15 +132545,15 @@ - m02647m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (mitochondrial) + - "Beta oxidation of unsaturated fatty acids (n-9) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3226 + - id: "HMR_3226" - name: "" - metabolites: !!omap - m01802m: -1 @@ -132562,15 +132562,15 @@ - m03025m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.- - - references: + - gene_reaction_rule: "ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.-" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (mitochondrial) + - "Beta oxidation of unsaturated fatty acids (n-9) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3227 + - id: "HMR_3227" - name: "" - metabolites: !!omap - m00176m: 1 @@ -132578,15 +132578,15 @@ - m03025m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (mitochondrial) + - "Beta oxidation of unsaturated fatty acids (n-9) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3228 + - id: "HMR_3228" - name: "" - metabolites: !!omap - m00176m: -1 @@ -132596,15 +132596,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (mitochondrial) + - "Beta oxidation of unsaturated fatty acids (n-9) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3229 + - id: "HMR_3229" - name: "" - metabolites: !!omap - m00893m: -1 @@ -132613,15 +132613,15 @@ - m01597m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (mitochondrial) + - "Beta oxidation of unsaturated fatty acids (n-9) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3230 + - id: "HMR_3230" - name: "" - metabolites: !!omap - m01191m: -1 @@ -132630,15 +132630,15 @@ - m03019m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.- - - references: PMID:1047780;PMID:8973539;PMID:11135616 + - gene_reaction_rule: "ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.-" + - references: "PMID:1047780;PMID:8973539;PMID:11135616" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (mitochondrial) + - "Beta oxidation of unsaturated fatty acids (n-9) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3231 + - id: "HMR_3231" - name: "" - metabolites: !!omap - m00172m: 1 @@ -132646,15 +132646,15 @@ - m03019m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:9920399;PMID:10407780;PMID:9568246;PMID:7923814 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:9920399;PMID:10407780;PMID:9568246;PMID:7923814" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (mitochondrial) + - "Beta oxidation of unsaturated fatty acids (n-9) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3232 + - id: "HMR_3232" - name: "" - metabolites: !!omap - m00172m: -1 @@ -132664,15 +132664,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:7923814;PMID:8319713;PMID:11427448;PMID:9920399 + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:7923814;PMID:8319713;PMID:11427448;PMID:9920399" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (mitochondrial) + - "Beta oxidation of unsaturated fatty acids (n-9) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3233 + - id: "HMR_3233" - name: "" - metabolites: !!omap - m00849m: -1 @@ -132681,15 +132681,15 @@ - m01597m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: PMID:7923814;PMID:9920399;PMID:9568246 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "PMID:7923814;PMID:9920399;PMID:9568246" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (mitochondrial) + - "Beta oxidation of unsaturated fatty acids (n-9) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3234 + - id: "HMR_3234" - name: "" - metabolites: !!omap - m01141m: -1 @@ -132698,15 +132698,15 @@ - m03022m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.- - - references: PMID:1047780;PMID:8973539;PMID:11135616 + - gene_reaction_rule: "ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.-" + - references: "PMID:1047780;PMID:8973539;PMID:11135616" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (mitochondrial) + - "Beta oxidation of unsaturated fatty acids (n-9) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3235 + - id: "HMR_3235" - name: "" - metabolites: !!omap - m01573m: 1 @@ -132714,15 +132714,15 @@ - m03022m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:9568246;PMID:7923814;PMID:9920399;PMID:10407780 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:9568246;PMID:7923814;PMID:9920399;PMID:10407780" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (mitochondrial) + - "Beta oxidation of unsaturated fatty acids (n-9) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3236 + - id: "HMR_3236" - name: "" - metabolites: !!omap - m00885m: 1 @@ -132732,15 +132732,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:8319713;PMID:11427448;PMID:9920399;PMID:7923814 + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:8319713;PMID:11427448;PMID:9920399;PMID:7923814" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (mitochondrial) + - "Beta oxidation of unsaturated fatty acids (n-9) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3237 + - id: "HMR_3237" - name: "" - metabolites: !!omap - m00088m: 1 @@ -132749,30 +132749,30 @@ - m01597m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: PMID:9920399;PMID:9568246;PMID:7923814 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "PMID:9920399;PMID:9568246;PMID:7923814" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (mitochondrial) + - "Beta oxidation of unsaturated fatty acids (n-9) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3239 + - id: "HMR_3239" - name: "" - metabolites: !!omap - m00042m: -1 - m00088m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104823 or ENSG00000167969 or ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 5.3.3.8;5.3.3.- - - references: PMID:8486162 + - gene_reaction_rule: "ENSG00000104823 or ENSG00000167969 or ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.3.8;5.3.3.-" + - references: "PMID:8486162" - subsystem: - - Beta oxidation of unsaturated fatty acids (n-9) (mitochondrial) + - "Beta oxidation of unsaturated fatty acids (n-9) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3275 + - id: "HMR_3275" - name: "" - metabolites: !!omap - m01802m: -1 @@ -132781,15 +132781,15 @@ - m03010m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.- - - references: PMID:8973539;PMID:10407780;PMID:11356167 + - gene_reaction_rule: "ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.-" + - references: "PMID:8973539;PMID:10407780;PMID:11356167" - subsystem: - - Beta oxidation of di-unsaturated fatty acids (n-6) (mitochondrial) + - "Beta oxidation of di-unsaturated fatty acids (n-6) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3277 + - id: "HMR_3277" - name: "" - metabolites: !!omap - m00083m: 1 @@ -132797,15 +132797,15 @@ - m03010m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:9920399;PMID:10407780;PMID:7923814;PMID:9568246 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:9920399;PMID:10407780;PMID:7923814;PMID:9568246" - subsystem: - - Beta oxidation of di-unsaturated fatty acids (n-6) (mitochondrial) + - "Beta oxidation of di-unsaturated fatty acids (n-6) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3278 + - id: "HMR_3278" - name: "" - metabolites: !!omap - m00083m: -1 @@ -132815,15 +132815,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:7846063 + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:7846063" - subsystem: - - Beta oxidation of di-unsaturated fatty acids (n-6) (mitochondrial) + - "Beta oxidation of di-unsaturated fatty acids (n-6) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3279 + - id: "HMR_3279" - name: "" - metabolites: !!omap - m00884m: -1 @@ -132832,15 +132832,15 @@ - m01597m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: PMID:10407780;PMID:9920399;PMID:7923814;PMID:9568246 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "PMID:10407780;PMID:9920399;PMID:7923814;PMID:9568246" - subsystem: - - Beta oxidation of di-unsaturated fatty acids (n-6) (mitochondrial) + - "Beta oxidation of di-unsaturated fatty acids (n-6) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3280 + - id: "HMR_3280" - name: "" - metabolites: !!omap - m01577m: -1 @@ -132849,15 +132849,15 @@ - m03009m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.- - - references: PMID:8973539;PMID:10407780;PMID:11356167 + - gene_reaction_rule: "ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.-" + - references: "PMID:8973539;PMID:10407780;PMID:11356167" - subsystem: - - Beta oxidation of di-unsaturated fatty acids (n-6) (mitochondrial) + - "Beta oxidation of di-unsaturated fatty acids (n-6) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3281 + - id: "HMR_3281" - name: "" - metabolites: !!omap - m00081m: 1 @@ -132865,15 +132865,15 @@ - m03009m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:9920399;PMID:9568246;PMID:7923814;PMID:10407780;PMID:7775433;PMID:10407780 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:9920399;PMID:9568246;PMID:7923814;PMID:10407780;PMID:7775433;PMID:10407780" - subsystem: - - Beta oxidation of di-unsaturated fatty acids (n-6) (mitochondrial) + - "Beta oxidation of di-unsaturated fatty acids (n-6) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3282 + - id: "HMR_3282" - name: "" - metabolites: !!omap - m00081m: -1 @@ -132883,15 +132883,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:10407780;PMID:7775433 + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:10407780;PMID:7775433" - subsystem: - - Beta oxidation of di-unsaturated fatty acids (n-6) (mitochondrial) + - "Beta oxidation of di-unsaturated fatty acids (n-6) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3283 + - id: "HMR_3283" - name: "" - metabolites: !!omap - m00855m: -1 @@ -132900,15 +132900,15 @@ - m01597m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: PMID:10407780;PMID:9568246;PMID:7923814;PMID:9920399;PMID:7775433;PMID:10407780 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "PMID:10407780;PMID:9568246;PMID:7923814;PMID:9920399;PMID:7775433;PMID:10407780" - subsystem: - - Beta oxidation of di-unsaturated fatty acids (n-6) (mitochondrial) + - "Beta oxidation of di-unsaturated fatty acids (n-6) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3284 + - id: "HMR_3284" - name: "" - metabolites: !!omap - m01576m: -1 @@ -132917,15 +132917,15 @@ - m03030m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.- - - references: PMID:8973539;PMID:10407780;PMID:11356167 + - gene_reaction_rule: "ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.-" + - references: "PMID:8973539;PMID:10407780;PMID:11356167" - subsystem: - - Beta oxidation of di-unsaturated fatty acids (n-6) (mitochondrial) + - "Beta oxidation of di-unsaturated fatty acids (n-6) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3285 + - id: "HMR_3285" - name: "" - metabolites: !!omap - m00696m: 1 @@ -132933,15 +132933,15 @@ - m03030m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "" - subsystem: - - Beta oxidation of di-unsaturated fatty acids (n-6) (mitochondrial) + - "Beta oxidation of di-unsaturated fatty acids (n-6) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3286 + - id: "HMR_3286" - name: "" - metabolites: !!omap - m00696m: -1 @@ -132951,15 +132951,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of di-unsaturated fatty acids (n-6) (mitochondrial) + - "Beta oxidation of di-unsaturated fatty acids (n-6) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3287 + - id: "HMR_3287" - name: "" - metabolites: !!omap - m00854m: -1 @@ -132968,30 +132968,30 @@ - m01597m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of di-unsaturated fatty acids (n-6) (mitochondrial) + - "Beta oxidation of di-unsaturated fatty acids (n-6) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3288 + - id: "HMR_3288" - name: "" - metabolites: !!omap - m01575m: -1 - m03021m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104823 or ENSG00000167969 or ENSG00000198721 or ENSG00000113790 - - rxnFrom: HMRdatabase - - eccodes: 5.3.3.8;5.3.3.- - - references: PMID:10407780 + - gene_reaction_rule: "ENSG00000104823 or ENSG00000167969 or ENSG00000198721 or ENSG00000113790" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.3.8;5.3.3.-" + - references: "PMID:10407780" - subsystem: - - Beta oxidation of di-unsaturated fatty acids (n-6) (mitochondrial) + - "Beta oxidation of di-unsaturated fatty acids (n-6) (mitochondrial)" - confidence_score: 2 - !!omap - - id: HMR_3290 + - id: "HMR_3290" - name: "" - metabolites: !!omap - m00082m: 1 @@ -132999,15 +132999,15 @@ - m03021m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:9920399;PMID:10407780;PMID:7923814;PMID:9568246 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:9920399;PMID:10407780;PMID:7923814;PMID:9568246" - subsystem: - - Beta oxidation of di-unsaturated fatty acids (n-6) (mitochondrial) + - "Beta oxidation of di-unsaturated fatty acids (n-6) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3292 + - id: "HMR_3292" - name: "" - metabolites: !!omap - m00082m: -1 @@ -133017,15 +133017,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "" - subsystem: - - Beta oxidation of di-unsaturated fatty acids (n-6) (mitochondrial) + - "Beta oxidation of di-unsaturated fatty acids (n-6) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3293 + - id: "HMR_3293" - name: "" - metabolites: !!omap - m00883m: -1 @@ -133034,15 +133034,15 @@ - m01597m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: PMID:7923814;PMID:9920399;PMID:10407780;PMID:9568246 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "PMID:7923814;PMID:9920399;PMID:10407780;PMID:9568246" - subsystem: - - Beta oxidation of di-unsaturated fatty acids (n-6) (mitochondrial) + - "Beta oxidation of di-unsaturated fatty acids (n-6) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3294 + - id: "HMR_3294" - name: "" - metabolites: !!omap - m00678m: 1 @@ -133051,15 +133051,15 @@ - m01803m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.- - - references: PMID:8973539;PMID:10407780;PMID:11356167 + - gene_reaction_rule: "ENSG00000072778 or ENSG00000115361 or ENSG00000117054 or ENSG00000177646" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.7;1.3.8.8;1.3.8.9;1.3.99.-" + - references: "PMID:8973539;PMID:10407780;PMID:11356167" - subsystem: - - Beta oxidation of di-unsaturated fatty acids (n-6) (mitochondrial) + - "Beta oxidation of di-unsaturated fatty acids (n-6) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3296 + - id: "HMR_3296" - name: "" - metabolites: !!omap - m00678m: -1 @@ -133069,30 +133069,30 @@ - m03035m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104325 or ENSG00000242612 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.34 - - references: PMID:7775433;PMID:11356164 + - gene_reaction_rule: "ENSG00000104325 or ENSG00000242612" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.34" + - references: "PMID:7775433;PMID:11356164" - subsystem: - - Beta oxidation of di-unsaturated fatty acids (n-6) (mitochondrial) + - "Beta oxidation of di-unsaturated fatty acids (n-6) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3298 + - id: "HMR_3298" - name: "" - metabolites: !!omap - m00039m: -1 - m03035m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167969 or ENSG00000198721 - - rxnFrom: HMRdatabase - - eccodes: 5.3.3.8 - - references: PMID:11356164;PMID:7775433 + - gene_reaction_rule: "ENSG00000167969 or ENSG00000198721" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.3.8" + - references: "PMID:11356164;PMID:7775433" - subsystem: - - Beta oxidation of di-unsaturated fatty acids (n-6) (mitochondrial) + - "Beta oxidation of di-unsaturated fatty acids (n-6) (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_1174 + - id: "HMR_1174" - name: "" - metabolites: !!omap - m00835m: -1 @@ -133101,15 +133101,15 @@ - m01597m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: PMID:11356170 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "PMID:11356170" - subsystem: - - Beta oxidation of poly-unsaturated fatty acids (mitochondrial) + - "Beta oxidation of poly-unsaturated fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_1175 + - id: "HMR_1175" - name: "" - metabolites: !!omap - m01199m: 1 @@ -133118,15 +133118,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: PMID:11356170 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "PMID:11356170" - subsystem: - - Beta oxidation of poly-unsaturated fatty acids (mitochondrial) + - "Beta oxidation of poly-unsaturated fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_1176 + - id: "HMR_1176" - name: "" - metabolites: !!omap - m01199m: -1 @@ -133136,15 +133136,15 @@ - m02555m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104325 or ENSG00000242612 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.34 - - references: PMID:11356170 + - gene_reaction_rule: "ENSG00000104325 or ENSG00000242612" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.34" + - references: "PMID:11356170" - subsystem: - - Beta oxidation of poly-unsaturated fatty acids (mitochondrial) + - "Beta oxidation of poly-unsaturated fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_1177 + - id: "HMR_1177" - name: "" - metabolites: !!omap - m00694m: 1 @@ -133152,15 +133152,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:11356170 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:11356170" - subsystem: - - Beta oxidation of poly-unsaturated fatty acids (mitochondrial) + - "Beta oxidation of poly-unsaturated fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_1178 + - id: "HMR_1178" - name: "" - metabolites: !!omap - m00694m: -1 @@ -133170,15 +133170,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:11356170 + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:11356170" - subsystem: - - Beta oxidation of poly-unsaturated fatty acids (mitochondrial) + - "Beta oxidation of poly-unsaturated fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_1179 + - id: "HMR_1179" - name: "" - metabolites: !!omap - m00850m: -1 @@ -133187,15 +133187,15 @@ - m01597m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: PMID:11356170 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "PMID:11356170" - subsystem: - - Beta oxidation of poly-unsaturated fatty acids (mitochondrial) + - "Beta oxidation of poly-unsaturated fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_1180 + - id: "HMR_1180" - name: "" - metabolites: !!omap - m01144m: 1 @@ -133204,15 +133204,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: PMID:11356170 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "PMID:11356170" - subsystem: - - Beta oxidation of poly-unsaturated fatty acids (mitochondrial) + - "Beta oxidation of poly-unsaturated fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_1181 + - id: "HMR_1181" - name: "" - metabolites: !!omap - m01144m: -1 @@ -133222,15 +133222,15 @@ - m02555m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104325 or ENSG00000242612 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.34 - - references: PMID:11356170 + - gene_reaction_rule: "ENSG00000104325 or ENSG00000242612" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.34" + - references: "PMID:11356170" - subsystem: - - Beta oxidation of poly-unsaturated fatty acids (mitochondrial) + - "Beta oxidation of poly-unsaturated fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_1182 + - id: "HMR_1182" - name: "" - metabolites: !!omap - m00692m: 1 @@ -133238,15 +133238,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:11356170 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:11356170" - subsystem: - - Beta oxidation of poly-unsaturated fatty acids (mitochondrial) + - "Beta oxidation of poly-unsaturated fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_1183 + - id: "HMR_1183" - name: "" - metabolites: !!omap - m00692m: -1 @@ -133256,15 +133256,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:11356170 + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:11356170" - subsystem: - - Beta oxidation of poly-unsaturated fatty acids (mitochondrial) + - "Beta oxidation of poly-unsaturated fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_1184 + - id: "HMR_1184" - name: "" - metabolites: !!omap - m00847m: -1 @@ -133273,15 +133273,15 @@ - m01597m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: PMID:11356170 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "PMID:11356170" - subsystem: - - Beta oxidation of poly-unsaturated fatty acids (mitochondrial) + - "Beta oxidation of poly-unsaturated fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_1216 + - id: "HMR_1216" - name: "" - metabolites: !!omap - m00837m: -1 @@ -133290,15 +133290,15 @@ - m01597m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: PMID:11356170 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "PMID:11356170" - subsystem: - - Beta oxidation of poly-unsaturated fatty acids (mitochondrial) + - "Beta oxidation of poly-unsaturated fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_1217 + - id: "HMR_1217" - name: "" - metabolites: !!omap - m01204m: 1 @@ -133307,15 +133307,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: PMID:11356170 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "PMID:11356170" - subsystem: - - Beta oxidation of poly-unsaturated fatty acids (mitochondrial) + - "Beta oxidation of poly-unsaturated fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_1218 + - id: "HMR_1218" - name: "" - metabolites: !!omap - m01204m: -1 @@ -133325,15 +133325,15 @@ - m02555m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104325 or ENSG00000242612 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.34 - - references: PMID:11356170 + - gene_reaction_rule: "ENSG00000104325 or ENSG00000242612" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.34" + - references: "PMID:11356170" - subsystem: - - Beta oxidation of poly-unsaturated fatty acids (mitochondrial) + - "Beta oxidation of poly-unsaturated fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_1219 + - id: "HMR_1219" - name: "" - metabolites: !!omap - m00695m: -1 @@ -133341,15 +133341,15 @@ - m02040m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:11356170 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:11356170" - subsystem: - - Beta oxidation of poly-unsaturated fatty acids (mitochondrial) + - "Beta oxidation of poly-unsaturated fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_1220 + - id: "HMR_1220" - name: "" - metabolites: !!omap - m00695m: -1 @@ -133359,15 +133359,15 @@ - m02553m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:11356170 + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:11356170" - subsystem: - - Beta oxidation of poly-unsaturated fatty acids (mitochondrial) + - "Beta oxidation of poly-unsaturated fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_1221 + - id: "HMR_1221" - name: "" - metabolites: !!omap - m00851m: -1 @@ -133376,15 +133376,15 @@ - m01597m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: PMID:11356170 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "PMID:11356170" - subsystem: - - Beta oxidation of poly-unsaturated fatty acids (mitochondrial) + - "Beta oxidation of poly-unsaturated fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_1222 + - id: "HMR_1222" - name: "" - metabolites: !!omap - m01147m: -1 @@ -133394,15 +133394,15 @@ - m02555m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104325 or ENSG00000242612 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.34 - - references: PMID:11356170 + - gene_reaction_rule: "ENSG00000104325 or ENSG00000242612" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.34" + - references: "PMID:11356170" - subsystem: - - Beta oxidation of poly-unsaturated fatty acids (mitochondrial) + - "Beta oxidation of poly-unsaturated fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_1223 + - id: "HMR_1223" - name: "" - metabolites: !!omap - m01147m: 1 @@ -133411,15 +133411,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6 - - references: PMID:11356170 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6" + - references: "PMID:11356170" - subsystem: - - Beta oxidation of poly-unsaturated fatty acids (mitochondrial) + - "Beta oxidation of poly-unsaturated fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_1224 + - id: "HMR_1224" - name: "" - metabolites: !!omap - m00693m: 1 @@ -133427,15 +133427,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:11356170 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:11356170" - subsystem: - - Beta oxidation of poly-unsaturated fatty acids (mitochondrial) + - "Beta oxidation of poly-unsaturated fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_1225 + - id: "HMR_1225" - name: "" - metabolites: !!omap - m00693m: -1 @@ -133445,15 +133445,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:11356170 + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:11356170" - subsystem: - - Beta oxidation of poly-unsaturated fatty acids (mitochondrial) + - "Beta oxidation of poly-unsaturated fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_1226 + - id: "HMR_1226" - name: "" - metabolites: !!omap - m00848m: -1 @@ -133462,15 +133462,15 @@ - m01597m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: PMID:11356170 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "PMID:11356170" - subsystem: - - Beta oxidation of poly-unsaturated fatty acids (mitochondrial) + - "Beta oxidation of poly-unsaturated fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3522 + - id: "HMR_3522" - name: "" - metabolites: !!omap - m00933m: -1 @@ -133479,15 +133479,15 @@ - m01803m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115361 or ENSG00000117054 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.7;1.3.8.8 - - references: PMID:10407780;PMID:9819701;PMID:9469587;PMID:10407780;PMID:9819701;PMID:9469587 + - gene_reaction_rule: "ENSG00000115361 or ENSG00000117054" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.7;1.3.8.8" + - references: "PMID:10407780;PMID:9819701;PMID:9469587;PMID:10407780;PMID:9819701;PMID:9469587" - subsystem: - - Beta oxidation of branched-chain fatty acids (mitochondrial) + - "Beta oxidation of branched-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3523 + - id: "HMR_3523" - name: "" - metabolites: !!omap - m00705m: 1 @@ -133495,15 +133495,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:10407780;PMID:9819701;PMID:9469587;PMID:10407780;PMID:9819701;PMID:9469587 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:10407780;PMID:9819701;PMID:9469587;PMID:10407780;PMID:9819701;PMID:9469587" - subsystem: - - Beta oxidation of branched-chain fatty acids (mitochondrial) + - "Beta oxidation of branched-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3524 + - id: "HMR_3524" - name: "" - metabolites: !!omap - m00705m: -1 @@ -133513,15 +133513,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:10407780;PMID:9819701;PMID:9469587;PMID:10407780;PMID:9819701;PMID:9469587 + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:10407780;PMID:9819701;PMID:9469587;PMID:10407780;PMID:9819701;PMID:9469587" - subsystem: - - Beta oxidation of branched-chain fatty acids (mitochondrial) + - "Beta oxidation of branched-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3525 + - id: "HMR_3525" - name: "" - metabolites: !!omap - m00562m: 1 @@ -133530,30 +133530,30 @@ - m01597m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: PMID:10407780;PMID:9819701;PMID:9469587;PMID:10407780;PMID:9819701;PMID:9469587 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "PMID:10407780;PMID:9819701;PMID:9469587;PMID:10407780;PMID:9819701;PMID:9469587" - subsystem: - - Beta oxidation of branched-chain fatty acids (mitochondrial) + - "Beta oxidation of branched-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3526 + - id: "HMR_3526" - name: "" - metabolites: !!omap - m00562m: -1 - m00563m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000242110 - - rxnFrom: HMRdatabase - - eccodes: 5.1.99.4 - - references: PMID:10407780;PMID:9819701;PMID:9469587;PMID:10407780;PMID:9819701;PMID:9469587 + - gene_reaction_rule: "ENSG00000242110" + - rxnFrom: "HMRdatabase" + - eccodes: "5.1.99.4" + - references: "PMID:10407780;PMID:9819701;PMID:9469587;PMID:10407780;PMID:9819701;PMID:9469587" - subsystem: - - Beta oxidation of branched-chain fatty acids (mitochondrial) + - "Beta oxidation of branched-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3527 + - id: "HMR_3527" - name: "" - metabolites: !!omap - m00563m: -1 @@ -133562,15 +133562,15 @@ - m01803m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115361 or ENSG00000117054 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.7;1.3.8.8 - - references: PMID:10407780;PMID:9819701;PMID:9469587;PMID:9819701;PMID:9469587;PMID:10407780 + - gene_reaction_rule: "ENSG00000115361 or ENSG00000117054" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.7;1.3.8.8" + - references: "PMID:10407780;PMID:9819701;PMID:9469587;PMID:9819701;PMID:9469587;PMID:10407780" - subsystem: - - Beta oxidation of branched-chain fatty acids (mitochondrial) + - "Beta oxidation of branched-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3528 + - id: "HMR_3528" - name: "" - metabolites: !!omap - m00578m: -1 @@ -133578,15 +133578,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:9469587;PMID:10407780;PMID:9819701;PMID:9469587;PMID:10407780;PMID:9819701 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:9469587;PMID:10407780;PMID:9819701;PMID:9469587;PMID:10407780;PMID:9819701" - subsystem: - - Beta oxidation of branched-chain fatty acids (mitochondrial) + - "Beta oxidation of branched-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3529 + - id: "HMR_3529" - name: "" - metabolites: !!omap - m00703m: -1 @@ -133596,15 +133596,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:10407780;PMID:9819701;PMID:9469587;PMID:10407780;PMID:9819701;PMID:9469587 + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:10407780;PMID:9819701;PMID:9469587;PMID:10407780;PMID:9819701;PMID:9469587" - subsystem: - - Beta oxidation of branched-chain fatty acids (mitochondrial) + - "Beta oxidation of branched-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3530 + - id: "HMR_3530" - name: "" - metabolites: !!omap - m00831m: -1 @@ -133613,15 +133613,15 @@ - m02774m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: PMID:10407780;PMID:9819701;PMID:9469587;PMID:10407780;PMID:9819701;PMID:9469587 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "PMID:10407780;PMID:9819701;PMID:9469587;PMID:10407780;PMID:9819701;PMID:9469587" - subsystem: - - Beta oxidation of branched-chain fatty acids (mitochondrial) + - "Beta oxidation of branched-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3531 + - id: "HMR_3531" - name: "" - metabolites: !!omap - m01015m: -1 @@ -133630,15 +133630,15 @@ - m01803m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115361 or ENSG00000117054 - - rxnFrom: HMRdatabase - - eccodes: 1.3.8.7;1.3.8.8 - - references: PMID:9469587;PMID:9819701;PMID:9819701;PMID:10407780;PMID:10407780;PMID:9469587 + - gene_reaction_rule: "ENSG00000115361 or ENSG00000117054" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.8.7;1.3.8.8" + - references: "PMID:9469587;PMID:9819701;PMID:9819701;PMID:10407780;PMID:10407780;PMID:9469587" - subsystem: - - Beta oxidation of branched-chain fatty acids (mitochondrial) + - "Beta oxidation of branched-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3532 + - id: "HMR_3532" - name: "" - metabolites: !!omap - m00706m: 1 @@ -133646,15 +133646,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000113790 and ENSG00000127884 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.17 - - references: PMID:10407780;PMID:9819701;PMID:9469587;PMID:10407780;PMID:9819701;PMID:9469587 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000113790 and ENSG00000127884" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.17" + - references: "PMID:10407780;PMID:9819701;PMID:9469587;PMID:10407780;PMID:9819701;PMID:9469587" - subsystem: - - Beta oxidation of branched-chain fatty acids (mitochondrial) + - "Beta oxidation of branched-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3533 + - id: "HMR_3533" - name: "" - metabolites: !!omap - m00706m: -1 @@ -133664,15 +133664,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:10407780;PMID:9819701;PMID:9469587;PMID:10407780;PMID:9819701;PMID:9469587 + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:10407780;PMID:9819701;PMID:9469587;PMID:10407780;PMID:9819701;PMID:9469587" - subsystem: - - Beta oxidation of branched-chain fatty acids (mitochondrial) + - "Beta oxidation of branched-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_3534 + - id: "HMR_3534" - name: "" - metabolites: !!omap - m00845m: -1 @@ -133681,15 +133681,15 @@ - m02180m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 and ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.16;1.1.1.211 - - references: PMID:10407780;PMID:9819701;PMID:9469587;PMID:10407780;PMID:9819701;PMID:9469587 + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029 and ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.16;1.1.1.211" + - references: "PMID:10407780;PMID:9819701;PMID:9469587;PMID:10407780;PMID:9819701;PMID:9469587" - subsystem: - - Beta oxidation of branched-chain fatty acids (mitochondrial) + - "Beta oxidation of branched-chain fatty acids (mitochondrial)" - confidence_score: 0 - !!omap - - id: HMR_1573 + - id: "HMR_1573" - name: "" - metabolites: !!omap - m01255m: -1 @@ -133700,15 +133700,15 @@ - m02131m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134240 - - rxnFrom: HMRdatabase - - eccodes: 2.3.3.10 - - references: PMID:11479731;PMID:11087424;PMID:11108725;PMID:1358203;PMID:7893153 + - gene_reaction_rule: "ENSG00000134240" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.3.10" + - references: "PMID:11479731;PMID:11087424;PMID:11108725;PMID:1358203;PMID:7893153" - subsystem: - - Terpenoid backbone biosynthesis + - "Terpenoid backbone biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6901 + - id: "HMR_6901" - name: "" - metabolites: !!omap - m01316c: 1 @@ -133717,15 +133717,15 @@ - m02759c: 7 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000148459 or ENSG00000164494 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.91 - - references: + - gene_reaction_rule: "ENSG00000148459 or ENSG00000164494" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.91" + - references: "" - subsystem: - - Terpenoid backbone biosynthesis + - "Terpenoid backbone biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6903 + - id: "HMR_6903" - name: "" - metabolites: !!omap - m00767m: 1 @@ -133734,15 +133734,15 @@ - m02759m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000173085 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.39 - - references: + - gene_reaction_rule: "ENSG00000173085" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.39" + - references: "" - subsystem: - - Terpenoid backbone biosynthesis + - "Terpenoid backbone biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6904 + - id: "HMR_6904" - name: "" - metabolites: !!omap - m00725m: 1 @@ -133754,15 +133754,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119723 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.- - - references: + - gene_reaction_rule: "ENSG00000119723" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.-" + - references: "" - subsystem: - - Terpenoid backbone biosynthesis + - "Terpenoid backbone biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6905 + - id: "HMR_6905" - name: "" - metabolites: !!omap - m00725m: -1 @@ -133772,15 +133772,15 @@ - m02877m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000132423 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.114 - - references: + - gene_reaction_rule: "ENSG00000132423" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.114" + - references: "" - subsystem: - - Terpenoid backbone biosynthesis + - "Terpenoid backbone biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6906 + - id: "HMR_6906" - name: "" - metabolites: !!omap - m00657m: 1 @@ -133789,15 +133789,15 @@ - m02039m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 4.1.1.- - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.1.-" + - references: "" - subsystem: - - Terpenoid backbone biosynthesis + - "Terpenoid backbone biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6907 + - id: "HMR_6907" - name: "" - metabolites: !!omap - m00657m: -1 @@ -133809,15 +133809,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119723 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.- - - references: + - gene_reaction_rule: "ENSG00000119723" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.-" + - references: "" - subsystem: - - Terpenoid backbone biosynthesis + - "Terpenoid backbone biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6908 + - id: "HMR_6908" - name: "" - metabolites: !!omap - m00658m: -1 @@ -133827,15 +133827,15 @@ - m02877m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110871 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.201 - - references: + - gene_reaction_rule: "ENSG00000110871" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.201" + - references: "" - subsystem: - - Terpenoid backbone biosynthesis + - "Terpenoid backbone biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6909 + - id: "HMR_6909" - name: "" - metabolites: !!omap - m00770m: 1 @@ -133847,15 +133847,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167186 - - rxnFrom: HMRdatabase - - eccodes: 1.14.-.- - - references: + - gene_reaction_rule: "ENSG00000167186" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.-.-" + - references: "" - subsystem: - - Terpenoid backbone biosynthesis + - "Terpenoid backbone biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_6910 + - id: "HMR_6910" - name: "" - metabolites: !!omap - m00770m: -1 @@ -133865,15 +133865,15 @@ - m03102m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000132423 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.64 - - references: + - gene_reaction_rule: "ENSG00000132423" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.64" + - references: "" - subsystem: - - Terpenoid backbone biosynthesis + - "Terpenoid backbone biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7165 + - id: "HMR_7165" - name: "" - metabolites: !!omap - m00196c: -1 @@ -133882,15 +133882,15 @@ - m02040c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Terpenoid backbone biosynthesis + - "Terpenoid backbone biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7166 + - id: "HMR_7166" - name: "" - metabolites: !!omap - m00200c: -1 @@ -133899,15 +133899,15 @@ - m02898c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000168522 and ENSG00000257365) or ENSG00000125954 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.58 - - references: + - gene_reaction_rule: "(ENSG00000168522 and ENSG00000257365) or ENSG00000125954" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.58" + - references: "" - subsystem: - - Terpenoid backbone biosynthesis + - "Terpenoid backbone biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7167 + - id: "HMR_7167" - name: "" - metabolites: !!omap - m00194c: 1 @@ -133916,15 +133916,15 @@ - m10009c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084073 - - rxnFrom: HMRdatabase - - eccodes: 3.4.22.- - - references: + - gene_reaction_rule: "ENSG00000084073" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.22.-" + - references: "" - subsystem: - - Terpenoid backbone biosynthesis + - "Terpenoid backbone biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7168 + - id: "HMR_7168" - name: "" - metabolites: !!omap - m00194c: -1 @@ -133933,15 +133933,15 @@ - m02877c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116237 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.100 - - references: + - gene_reaction_rule: "ENSG00000116237" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.100" + - references: "" - subsystem: - - Terpenoid backbone biosynthesis + - "Terpenoid backbone biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7169 + - id: "HMR_7169" - name: "" - metabolites: !!omap - m00195c: -1 @@ -133950,15 +133950,15 @@ - m10010c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Terpenoid backbone biosynthesis + - "Terpenoid backbone biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7170 + - id: "HMR_7170" - name: "" - metabolites: !!omap - m00677c: 1 @@ -133969,15 +133969,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116005 - - rxnFrom: HMRdatabase - - eccodes: 1.8.3.5;1.8.3.6 - - references: + - gene_reaction_rule: "ENSG00000116005" + - rxnFrom: "HMRdatabase" + - eccodes: "1.8.3.5;1.8.3.6" + - references: "" - subsystem: - - Terpenoid backbone biosynthesis + - "Terpenoid backbone biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_9722 + - id: "HMR_9722" - name: "" - metabolites: !!omap - m02039c: -1 @@ -133987,15 +133987,15 @@ - m03159c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000181019 - - rxnFrom: HMRdatabase - - eccodes: 1.6.5.2 - - references: + - gene_reaction_rule: "ENSG00000181019" + - rxnFrom: "HMRdatabase" + - eccodes: "1.6.5.2" + - references: "" - subsystem: - - Terpenoid backbone biosynthesis + - "Terpenoid backbone biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1644 + - id: "HMR_1644" - name: "" - metabolites: !!omap - m00036m: 1 @@ -134003,15 +134003,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.107 - - references: PMID:10709654 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.107" + - references: "PMID:10709654" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1651 + - id: "HMR_1651" - name: "" - metabolites: !!omap - m00036m: -1 @@ -134021,15 +134021,15 @@ - m02553m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 and ENSG00000084754 and ENSG00000138796 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:10709654 + - gene_reaction_rule: "ENSG00000072506 and ENSG00000084754 and ENSG00000138796" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:10709654" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1920 + - id: "HMR_1920" - name: "" - metabolites: !!omap - m01450c: 1 @@ -134039,15 +134039,15 @@ - m02946c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101846 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.2 - - references: PMID:1606923;PMID:10049998 + - gene_reaction_rule: "ENSG00000101846" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.2" + - references: "PMID:1606923;PMID:10049998" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1924 + - id: "HMR_1924" - name: "" - metabolites: !!omap - m01450c: -1 @@ -134055,15 +134055,15 @@ - m02935c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084090 or ENSG00000130052 or ENSG00000133121 or ENSG00000147465 or ENSG00000159433 or ENSG00000164211 or ENSG00000172345 or ENSG00000174448 or ENSG00000214530 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:15897605 + - gene_reaction_rule: "ENSG00000084090 or ENSG00000130052 or ENSG00000133121 or ENSG00000147465 or ENSG00000159433 or ENSG00000164211 or ENSG00000172345 or ENSG00000174448 or ENSG00000214530" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:15897605" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1926 + - id: "HMR_1926" - name: "" - metabolites: !!omap - m01450m: 1 @@ -134071,15 +134071,15 @@ - m02935m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16973755 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16973755" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1927 + - id: "HMR_1927" - name: "" - metabolites: !!omap - m00606m: 1 @@ -134091,15 +134091,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119723 or ENSG00000130649 or ENSG00000145476 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.- - - references: PMID:9578606;PMID:3024157 + - gene_reaction_rule: "ENSG00000119723 or ENSG00000130649 or ENSG00000145476" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.-" + - references: "PMID:9578606;PMID:3024157" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1928 + - id: "HMR_1928" - name: "" - metabolites: !!omap - m00579m: 1 @@ -134111,15 +134111,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000140459 - - rxnFrom: HMRdatabase - - eccodes: 1.14.15.16 - - references: PMID:3024157;PMID:9578606 + - gene_reaction_rule: "ENSG00000140459" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.15.16" + - references: "PMID:3024157;PMID:9578606" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1929 + - id: "HMR_1929" - name: "" - metabolites: !!omap - m00579m: -1 @@ -134132,15 +134132,15 @@ - m02763m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000140459 - - rxnFrom: HMRdatabase - - eccodes: 1.14.15.16 - - references: PMID:9578606;PMID:3024157 + - gene_reaction_rule: "ENSG00000140459" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.15.16" + - references: "PMID:9578606;PMID:3024157" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1931 + - id: "HMR_1931" - name: "" - metabolites: !!omap - m01014c: 1 @@ -134150,15 +134150,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085662 or ENSG00000198074 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.21 - - references: PMID:8645003 + - gene_reaction_rule: "ENSG00000085662 or ENSG00000198074" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.21" + - references: "PMID:8645003" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1932 + - id: "HMR_1932" - name: "" - metabolites: !!omap - m00592c: 1 @@ -134170,15 +134170,15 @@ - m02827c: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000140459 - - rxnFrom: HMRdatabase - - eccodes: 1.14.15.6 - - references: + - gene_reaction_rule: "ENSG00000140459" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.15.6" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1933 + - id: "HMR_1933" - name: "" - metabolites: !!omap - m00405c: 1 @@ -134190,15 +134190,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000148795 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.9 - - references: + - gene_reaction_rule: "ENSG00000148795" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.9" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1934 + - id: "HMR_1934" - name: "" - metabolites: !!omap - m00405c: -1 @@ -134211,15 +134211,15 @@ - m02827c: -4 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000140459 - - rxnFrom: HMRdatabase - - eccodes: 1.14.15.6 - - references: + - gene_reaction_rule: "ENSG00000140459" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.15.6" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1935 + - id: "HMR_1935" - name: "" - metabolites: !!omap - m00579c: 1 @@ -134231,15 +134231,15 @@ - m02827c: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000140459 - - rxnFrom: HMRdatabase - - eccodes: 1.14.15.6 - - references: + - gene_reaction_rule: "ENSG00000140459" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.15.6" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1940 + - id: "HMR_1940" - name: "" - metabolites: !!omap - m00605c: 1 @@ -134251,15 +134251,15 @@ - m02763c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000231852 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.10 - - references: + - gene_reaction_rule: "ENSG00000231852" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.10" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1941 + - id: "HMR_1941" - name: "" - metabolites: !!omap - m00294c: 1 @@ -134269,15 +134269,15 @@ - m02553c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000203857 or ENSG00000203859 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.145;5.3.3.1 - - references: + - gene_reaction_rule: "ENSG00000203857 or ENSG00000203859" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.145;5.3.3.1" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1942 + - id: "HMR_1942" - name: "" - metabolites: !!omap - m00294c: -1 @@ -134289,15 +134289,15 @@ - m02828c: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160882 or ENSG00000179142 - - rxnFrom: HMRdatabase - - eccodes: 1.14.15.4 - - references: + - gene_reaction_rule: "ENSG00000160882 or ENSG00000179142" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.15.4" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1943 + - id: "HMR_1943" - name: "" - metabolites: !!omap - m01184c: 1 @@ -134309,15 +134309,15 @@ - m02763c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000172817 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.100 - - references: + - gene_reaction_rule: "ENSG00000172817" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.100" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1948 + - id: "HMR_1948" - name: "" - metabolites: !!omap - m00406c: 1 @@ -134329,15 +134329,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000231852 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.10 - - references: + - gene_reaction_rule: "ENSG00000231852" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.10" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1949 + - id: "HMR_1949" - name: "" - metabolites: !!omap - m00295c: 1 @@ -134347,15 +134347,15 @@ - m02553c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000203857 or ENSG00000203859 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.145;5.3.3.1 - - references: + - gene_reaction_rule: "ENSG00000203857 or ENSG00000203859" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.145;5.3.3.1" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1950 + - id: "HMR_1950" - name: "" - metabolites: !!omap - m00283c: 1 @@ -134367,15 +134367,15 @@ - m02828c: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160882 or ENSG00000179142 - - rxnFrom: HMRdatabase - - eccodes: 1.14.15.4 - - references: + - gene_reaction_rule: "ENSG00000160882 or ENSG00000179142" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.15.4" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1951 + - id: "HMR_1951" - name: "" - metabolites: !!omap - m00283c: -1 @@ -134385,15 +134385,15 @@ - m02553c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000203857 or ENSG00000203859 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.145;5.3.3.1 - - references: + - gene_reaction_rule: "ENSG00000203857 or ENSG00000203859" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.145;5.3.3.1" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1989 + - id: "HMR_1989" - name: "" - metabolites: !!omap - m00409c: -1 @@ -134405,15 +134405,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160882 or ENSG00000179142 - - rxnFrom: HMRdatabase - - eccodes: 1.14.15.4 - - references: + - gene_reaction_rule: "ENSG00000160882 or ENSG00000179142" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.15.4" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1990 + - id: "HMR_1990" - name: "" - metabolites: !!omap - m00603c: 1 @@ -134425,15 +134425,15 @@ - m02630c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000231852 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.10 - - references: + - gene_reaction_rule: "ENSG00000231852" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.10" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1991 + - id: "HMR_1991" - name: "" - metabolites: !!omap - m00285c: 1 @@ -134445,15 +134445,15 @@ - m02630c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000148795 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.9 - - references: + - gene_reaction_rule: "ENSG00000148795" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.9" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1992 + - id: "HMR_1992" - name: "" - metabolites: !!omap - m00285c: -1 @@ -134465,15 +134465,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000231852 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.10 - - references: + - gene_reaction_rule: "ENSG00000231852" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.10" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1993 + - id: "HMR_1993" - name: "" - metabolites: !!omap - m00285c: 1 @@ -134485,15 +134485,15 @@ - m02769c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160882 or ENSG00000179142 - - rxnFrom: HMRdatabase - - eccodes: 1.14.15.4 - - references: + - gene_reaction_rule: "ENSG00000160882 or ENSG00000179142" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.15.4" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2002 + - id: "HMR_2002" - name: "" - metabolites: !!omap - m01072c: -1 @@ -134503,15 +134503,15 @@ - m02769c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000128039 or ENSG00000145545 or ENSG00000277893 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.30 - - references: + - gene_reaction_rule: "ENSG00000128039 or ENSG00000145545 or ENSG00000277893" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.30" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2003 + - id: "HMR_2003" - name: "" - metabolites: !!omap - m00759c: -1 @@ -134521,15 +134521,15 @@ - m02555c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151632 or ENSG00000187134 or ENSG00000196139 or ENSG00000198610 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.213 - - references: + - gene_reaction_rule: "ENSG00000151632 or ENSG00000187134 or ENSG00000196139 or ENSG00000198610" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.213" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2004 + - id: "HMR_2004" - name: "" - metabolites: !!omap - m01072c: -1 @@ -134539,15 +134539,15 @@ - m02553c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000198610 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.50 - - references: PMID:12416991 + - gene_reaction_rule: "ENSG00000198610" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.50" + - references: "PMID:12416991" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2005 + - id: "HMR_2005" - name: "" - metabolites: !!omap - m00604c: 1 @@ -134559,15 +134559,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000231852 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.10 - - references: PMID:12376740 + - gene_reaction_rule: "ENSG00000231852" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.10" + - references: "PMID:12376740" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2007 + - id: "HMR_2007" - name: "" - metabolites: !!omap - m00294c: 1 @@ -134579,15 +134579,15 @@ - m02769c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000231852 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.10 - - references: PMID:3487786;PMID:3038528 + - gene_reaction_rule: "ENSG00000231852" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.10" + - references: "PMID:3487786;PMID:3038528" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2009 + - id: "HMR_2009" - name: "" - metabolites: !!omap - m00294m: -1 @@ -134599,15 +134599,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160882 or ENSG00000179142 - - rxnFrom: HMRdatabase - - eccodes: 1.14.15.4 - - references: PMID:2592361;PMID:1741400 + - gene_reaction_rule: "ENSG00000160882 or ENSG00000179142" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.15.4" + - references: "PMID:2592361;PMID:1741400" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2010 + - id: "HMR_2010" - name: "" - metabolites: !!omap - m00429m: 1 @@ -134619,15 +134619,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000179142 - - rxnFrom: HMRdatabase - - eccodes: 1.14.15.5 - - references: PMID:2592361;PMID:2256920 + - gene_reaction_rule: "ENSG00000179142" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.15.5" + - references: "PMID:2592361;PMID:2256920" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2011 + - id: "HMR_2011" - name: "" - metabolites: !!omap - m00429m: -1 @@ -134639,15 +134639,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000179142 - - rxnFrom: HMRdatabase - - eccodes: 1.14.15.5 - - references: PMID:2592361;PMID:2256920 + - gene_reaction_rule: "ENSG00000179142" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.15.5" + - references: "PMID:2592361;PMID:2256920" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_4766 + - id: "HMR_4766" - name: "" - metabolites: !!omap - m01396r: -1 @@ -134656,15 +134656,15 @@ - m03109r: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.17 - - references: PMID:10575553;PMID:12920162;PMID:16399341 + - gene_reaction_rule: "ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.17" + - references: "PMID:10575553;PMID:12920162;PMID:16399341" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_6793 + - id: "HMR_6793" - name: "" - metabolites: !!omap - m00807c: 1 @@ -134674,15 +134674,15 @@ - m03101c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115705 - - rxnFrom: HMRdatabase - - eccodes: 1.11.1.8 - - references: + - gene_reaction_rule: "ENSG00000115705" + - rxnFrom: "HMRdatabase" + - eccodes: "1.11.1.8" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_6794 + - id: "HMR_6794" - name: "" - metabolites: !!omap - m00739c: 1 @@ -134692,15 +134692,15 @@ - m02175c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115705 - - rxnFrom: HMRdatabase - - eccodes: 1.11.1.8 - - references: + - gene_reaction_rule: "ENSG00000115705" + - rxnFrom: "HMRdatabase" + - eccodes: "1.11.1.8" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_6795 + - id: "HMR_6795" - name: "" - metabolites: !!omap - m00739c: -2 @@ -134710,15 +134710,15 @@ - m02998c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115705 - - rxnFrom: HMRdatabase - - eccodes: 1.11.1.8 - - references: + - gene_reaction_rule: "ENSG00000115705" + - rxnFrom: "HMRdatabase" + - eccodes: "1.11.1.8" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_6796 + - id: "HMR_6796" - name: "" - metabolites: !!omap - m00739c: -1 @@ -134729,15 +134729,15 @@ - m03052c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115705 - - rxnFrom: HMRdatabase - - eccodes: 1.11.1.8 - - references: + - gene_reaction_rule: "ENSG00000115705" + - rxnFrom: "HMRdatabase" + - eccodes: "1.11.1.8" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7648 + - id: "HMR_7648" - name: "" - metabolites: !!omap - m01786r: 1 @@ -134746,15 +134746,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.17 - - references: + - gene_reaction_rule: "ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.17" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7928 + - id: "HMR_7928" - name: "" - metabolites: !!omap - m00295r: 1 @@ -134766,15 +134766,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000231852 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.10 - - references: + - gene_reaction_rule: "ENSG00000231852" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.10" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7930 + - id: "HMR_7930" - name: "" - metabolites: !!omap - m02039c: 1 @@ -134784,15 +134784,15 @@ - m02769c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000203857 or ENSG00000203859 - - rxnFrom: HMRdatabase - - eccodes: 5.3.3.1 - - references: + - gene_reaction_rule: "ENSG00000203857 or ENSG00000203859" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.3.1" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7931 + - id: "HMR_7931" - name: "" - metabolites: !!omap - m02039r: 1 @@ -134802,15 +134802,15 @@ - m02769r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000203857 or ENSG00000203859 - - rxnFrom: HMRdatabase - - eccodes: 5.3.3.1 - - references: + - gene_reaction_rule: "ENSG00000203857 or ENSG00000203859" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.3.1" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7932 + - id: "HMR_7932" - name: "" - metabolites: !!omap - m00294r: 1 @@ -134822,15 +134822,15 @@ - m02769r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000231852 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.10 - - references: + - gene_reaction_rule: "ENSG00000231852" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.10" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7934 + - id: "HMR_7934" - name: "" - metabolites: !!omap - m00294m: -1 @@ -134842,15 +134842,15 @@ - m02630m: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000179142 - - rxnFrom: HMRdatabase - - eccodes: 1.14.15.5 - - references: + - gene_reaction_rule: "ENSG00000179142" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.15.5" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7935 + - id: "HMR_7935" - name: "" - metabolites: !!omap - m01450m: -1 @@ -134863,15 +134863,15 @@ - m02763m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000140459 - - rxnFrom: HMRdatabase - - eccodes: 1.14.15.6 - - references: + - gene_reaction_rule: "ENSG00000140459" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.15.6" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7936 + - id: "HMR_7936" - name: "" - metabolites: !!omap - m00408r: -1 @@ -134884,15 +134884,15 @@ - m02630r: -0.5 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000148795 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.9 - - references: + - gene_reaction_rule: "ENSG00000148795" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.9" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7937 + - id: "HMR_7937" - name: "" - metabolites: !!omap - m00409r: 1 @@ -134904,15 +134904,15 @@ - m02769r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000148795 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.9 - - references: + - gene_reaction_rule: "ENSG00000148795" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.9" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7938 + - id: "HMR_7938" - name: "" - metabolites: !!omap - m00409r: -1 @@ -134925,15 +134925,15 @@ - m02630r: -0.5 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000148795 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.9 - - references: + - gene_reaction_rule: "ENSG00000148795" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.9" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7939 + - id: "HMR_7939" - name: "" - metabolites: !!omap - m00408r: -1 @@ -134943,15 +134943,15 @@ - m02553r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000203857 or ENSG00000203859 - - rxnFrom: HMRdatabase - - eccodes: 5.3.3.1 - - references: + - gene_reaction_rule: "ENSG00000203857 or ENSG00000203859" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.3.1" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7940 + - id: "HMR_7940" - name: "" - metabolites: !!omap - m00971r: -1 @@ -134963,15 +134963,15 @@ - m02630r: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7941 + - id: "HMR_7941" - name: "" - metabolites: !!omap - m01787r: 1 @@ -134983,15 +134983,15 @@ - m02969r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7942 + - id: "HMR_7942" - name: "" - metabolites: !!omap - m01615r: 1 @@ -135001,15 +135001,15 @@ - m02555r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117594 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.146 - - references: + - gene_reaction_rule: "ENSG00000117594" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.146" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7943 + - id: "HMR_7943" - name: "" - metabolites: !!omap - m01615r: 1 @@ -135019,15 +135019,15 @@ - m02553r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000176387 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.- - - references: + - gene_reaction_rule: "ENSG00000176387" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.-" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7945 + - id: "HMR_7945" - name: "" - metabolites: !!omap - m01789r: -1 @@ -135037,15 +135037,15 @@ - m02946r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101846 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.2 - - references: + - gene_reaction_rule: "ENSG00000101846" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.2" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7948 + - id: "HMR_7948" - name: "" - metabolites: !!omap - m02039r: 1 @@ -135055,15 +135055,15 @@ - m02946r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101846 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.2 - - references: + - gene_reaction_rule: "ENSG00000101846" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.2" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7950 + - id: "HMR_7950" - name: "" - metabolites: !!omap - m01450r: 1 @@ -135073,15 +135073,15 @@ - m02946r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101846 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.2 - - references: + - gene_reaction_rule: "ENSG00000101846" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.2" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7952 + - id: "HMR_7952" - name: "" - metabolites: !!omap - m01659r: -1 @@ -135091,15 +135091,15 @@ - m02946r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101846 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.2 - - references: + - gene_reaction_rule: "ENSG00000101846" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.2" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7954 + - id: "HMR_7954" - name: "" - metabolites: !!omap - m00971r: 1 @@ -135109,15 +135109,15 @@ - m02553r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000203857 or ENSG00000203859 - - rxnFrom: HMRdatabase - - eccodes: 5.3.3.1 - - references: + - gene_reaction_rule: "ENSG00000203857 or ENSG00000203859" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.3.1" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7955 + - id: "HMR_7955" - name: "" - metabolites: !!omap - m00971r: -1 @@ -135127,15 +135127,15 @@ - m02969r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000025423 or ENSG00000086696 or ENSG00000204228 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.239 - - references: + - gene_reaction_rule: "ENSG00000025423 or ENSG00000086696 or ENSG00000204228" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.239" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7957 + - id: "HMR_7957" - name: "" - metabolites: !!omap - m00432r: 1 @@ -135147,15 +135147,15 @@ - m02969r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7958 + - id: "HMR_7958" - name: "" - metabolites: !!omap - m01158r: 1 @@ -135167,15 +135167,15 @@ - m02969r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160870 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000160870 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7959 + - id: "HMR_7959" - name: "" - metabolites: !!omap - m02967r: 1 @@ -135184,15 +135184,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135226 or ENSG00000171234 or ENSG00000197888 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.17 - - references: + - gene_reaction_rule: "ENSG00000135226 or ENSG00000171234 or ENSG00000197888 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.17" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7962 + - id: "HMR_7962" - name: "" - metabolites: !!omap - m01790r: -1 @@ -135201,15 +135201,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000241635 or ENSG00000242366 or ENSG00000242515 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.17 - - references: + - gene_reaction_rule: "ENSG00000241635 or ENSG00000242366 or ENSG00000242515" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.17" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7965 + - id: "HMR_7965" - name: "" - metabolites: !!omap - m01338r: -1 @@ -135218,15 +135218,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135226 or ENSG00000171234 or ENSG00000197888 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.17 - - references: + - gene_reaction_rule: "ENSG00000135226 or ENSG00000171234 or ENSG00000197888 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.17" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7968 + - id: "HMR_7968" - name: "" - metabolites: !!omap - m01787r: 1 @@ -135236,15 +135236,15 @@ - m02553r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000025423 or ENSG00000086696 or ENSG00000108786 or ENSG00000132196 or ENSG00000149084 or ENSG00000198189 or ENSG00000204228 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.62;1.1.1.64 - - references: + - gene_reaction_rule: "ENSG00000025423 or ENSG00000086696 or ENSG00000108786 or ENSG00000132196 or ENSG00000149084 or ENSG00000198189 or ENSG00000204228" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.62;1.1.1.64" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_2041 + - id: "HMR_2041" - name: "" - metabolites: !!omap - m01787r: 1 @@ -135254,15 +135254,15 @@ - m02555r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000025423 or ENSG00000086696 or ENSG00000108786 or ENSG00000132196 or ENSG00000149084 or ENSG00000198189 or ENSG00000204228 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.62;1.1.1.64 - - references: PMID:19027824 + - gene_reaction_rule: "ENSG00000025423 or ENSG00000086696 or ENSG00000108786 or ENSG00000132196 or ENSG00000149084 or ENSG00000198189 or ENSG00000204228" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.62;1.1.1.64" + - references: "PMID:19027824" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7970 + - id: "HMR_7970" - name: "" - metabolites: !!omap - m00399r: 1 @@ -135274,15 +135274,15 @@ - m02630r: -1.5 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000132196 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.270 - - references: + - gene_reaction_rule: "ENSG00000132196" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.270" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7971 + - id: "HMR_7971" - name: "" - metabolites: !!omap - m00399r: -1 @@ -135293,15 +135293,15 @@ - m02553r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000203857 or ENSG00000203859 - - rxnFrom: HMRdatabase - - eccodes: 5.3.3.1 - - references: + - gene_reaction_rule: "ENSG00000203857 or ENSG00000203859" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.3.1" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7972 + - id: "HMR_7972" - name: "" - metabolites: !!omap - m00399r: -1 @@ -135312,15 +135312,15 @@ - m02555r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000203857 or ENSG00000203859 - - rxnFrom: HMRdatabase - - eccodes: 5.3.3.1 - - references: + - gene_reaction_rule: "ENSG00000203857 or ENSG00000203859" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.3.1" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7973 + - id: "HMR_7973" - name: "" - metabolites: !!omap - m00408c: -1 @@ -135330,15 +135330,15 @@ - m02553c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000203857 or ENSG00000203859 - - rxnFrom: HMRdatabase - - eccodes: 5.3.3.1 - - references: + - gene_reaction_rule: "ENSG00000203857 or ENSG00000203859" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.3.1" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7974 + - id: "HMR_7974" - name: "" - metabolites: !!omap - m01069c: -1 @@ -135348,15 +135348,15 @@ - m02682c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105398 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.14 - - references: + - gene_reaction_rule: "ENSG00000105398" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.14" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7976 + - id: "HMR_7976" - name: "" - metabolites: !!omap - m00580c: 1 @@ -135366,15 +135366,15 @@ - m02769c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000187134 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000187134" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7978 + - id: "HMR_7978" - name: "" - metabolites: !!omap - m02039c: 1 @@ -135384,15 +135384,15 @@ - m02969c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105398 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.14 - - references: + - gene_reaction_rule: "ENSG00000105398" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.14" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7980 + - id: "HMR_7980" - name: "" - metabolites: !!omap - m01799r: 1 @@ -135401,15 +135401,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000241635 or ENSG00000242366 or ENSG00000242515 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.17 - - references: + - gene_reaction_rule: "ENSG00000241635 or ENSG00000242366 or ENSG00000242515" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.17" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7984 + - id: "HMR_7984" - name: "" - metabolites: !!omap - m00402r: 1 @@ -135418,15 +135418,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135226 or ENSG00000156096 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.17 - - references: + - gene_reaction_rule: "ENSG00000135226 or ENSG00000156096 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.17" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7987 + - id: "HMR_7987" - name: "" - metabolites: !!omap - m01069r: -1 @@ -135435,15 +135435,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135226 or ENSG00000156096 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.17 - - references: + - gene_reaction_rule: "ENSG00000135226 or ENSG00000156096 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.17" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_1944 + - id: "HMR_1944" - name: "" - metabolites: !!omap - m00408c: 1 @@ -135455,15 +135455,15 @@ - m02763c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000148795 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.9 - - references: PMID:10406467 + - gene_reaction_rule: "ENSG00000148795" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.9" + - references: "PMID:10406467" - subsystem: - - Androgen metabolism + - "Androgen metabolism" - confidence_score: 0 - !!omap - - id: HMR_1945 + - id: "HMR_1945" - name: "" - metabolites: !!omap - m00408r: 1 @@ -135475,15 +135475,15 @@ - m02763r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000148795 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.9 - - references: + - gene_reaction_rule: "ENSG00000148795" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.9" + - references: "" - subsystem: - - Androgen metabolism + - "Androgen metabolism" - confidence_score: 0 - !!omap - - id: HMR_1952 + - id: "HMR_1952" - name: "" - metabolites: !!omap - m02039c: 1 @@ -135493,15 +135493,15 @@ - m02763c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088002 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.2 - - references: + - gene_reaction_rule: "ENSG00000088002" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.2" + - references: "" - subsystem: - - Androgen metabolism + - "Androgen metabolism" - confidence_score: 0 - !!omap - - id: HMR_1953 + - id: "HMR_1953" - name: "" - metabolites: !!omap - m02039c: 1 @@ -135511,15 +135511,15 @@ - m02946c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101846 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.2 - - references: PMID:10049998;PMID:1606923 + - gene_reaction_rule: "ENSG00000101846" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.2" + - references: "PMID:10049998;PMID:1606923" - subsystem: - - Androgen metabolism + - "Androgen metabolism" - confidence_score: 0 - !!omap - - id: HMR_1958 + - id: "HMR_1958" - name: "" - metabolites: !!omap - m00408c: -1 @@ -135532,15 +135532,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000148795 - - rxnFrom: HMRdatabase - - eccodes: 4.1.2.30 - - references: PMID:10406467;PMID:9536209 + - gene_reaction_rule: "ENSG00000148795" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.2.30" + - references: "PMID:10406467;PMID:9536209" - subsystem: - - Androgen metabolism + - "Androgen metabolism" - confidence_score: 0 - !!omap - - id: HMR_1959 + - id: "HMR_1959" - name: "" - metabolites: !!omap - m00408c: -1 @@ -135552,15 +135552,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000148795 or ENSG00000197580 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.- - - references: PMID:7578007;PMID:10049998;PMID:7578007;PMID:10049998 + - gene_reaction_rule: "ENSG00000148795 or ENSG00000197580" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.-" + - references: "PMID:7578007;PMID:10049998;PMID:7578007;PMID:10049998" - subsystem: - - Androgen metabolism + - "Androgen metabolism" - confidence_score: 0 - !!omap - - id: HMR_1960 + - id: "HMR_1960" - name: "" - metabolites: !!omap - m00408r: -1 @@ -135572,15 +135572,15 @@ - m02630r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000148795 or ENSG00000197580 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.- - - references: PMID:7578007;PMID:10049998;PMID:7578007;PMID:10049998 + - gene_reaction_rule: "ENSG00000148795 or ENSG00000197580" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.-" + - references: "PMID:7578007;PMID:10049998;PMID:7578007;PMID:10049998" - subsystem: - - Androgen metabolism + - "Androgen metabolism" - confidence_score: 0 - !!omap - - id: HMR_1962 + - id: "HMR_1962" - name: "" - metabolites: !!omap - m00407c: 1 @@ -135590,15 +135590,15 @@ - m02682c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088002 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.2 - - references: PMID:1606923;PMID:10049998 + - gene_reaction_rule: "ENSG00000088002" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.2" + - references: "PMID:1606923;PMID:10049998" - subsystem: - - Androgen metabolism + - "Androgen metabolism" - confidence_score: 0 - !!omap - - id: HMR_1963 + - id: "HMR_1963" - name: "" - metabolites: !!omap - m00407c: -1 @@ -135608,15 +135608,15 @@ - m02946c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101846 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.2 - - references: PMID:1606923;PMID:10049998 + - gene_reaction_rule: "ENSG00000101846" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.2" + - references: "PMID:1606923;PMID:10049998" - subsystem: - - Androgen metabolism + - "Androgen metabolism" - confidence_score: 0 - !!omap - - id: HMR_1967 + - id: "HMR_1967" - name: "" - metabolites: !!omap - m01075c: 1 @@ -135626,15 +135626,15 @@ - m02553c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000203857 or ENSG00000203859 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.145 - - references: + - gene_reaction_rule: "ENSG00000203857 or ENSG00000203859" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.145" + - references: "" - subsystem: - - Androgen metabolism + - "Androgen metabolism" - confidence_score: 0 - !!omap - - id: HMR_1968 + - id: "HMR_1968" - name: "" - metabolites: !!omap - m01075r: 1 @@ -135644,15 +135644,15 @@ - m02553r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000203857 or ENSG00000203859 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.145 - - references: + - gene_reaction_rule: "ENSG00000203857 or ENSG00000203859" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.145" + - references: "" - subsystem: - - Androgen metabolism + - "Androgen metabolism" - confidence_score: 0 - !!omap - - id: HMR_1969 + - id: "HMR_1969" - name: "" - metabolites: !!omap - m01659c: 1 @@ -135662,15 +135662,15 @@ - m02682c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109193 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.4 - - references: PMID:7589785;PMID:10049998 + - gene_reaction_rule: "ENSG00000109193" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.4" + - references: "PMID:7589785;PMID:10049998" - subsystem: - - Androgen metabolism + - "Androgen metabolism" - confidence_score: 0 - !!omap - - id: HMR_1970 + - id: "HMR_1970" - name: "" - metabolites: !!omap - m00971c: 1 @@ -135680,15 +135680,15 @@ - m02553c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000203857 or ENSG00000203859 - - rxnFrom: HMRdatabase - - eccodes: 5.3.3.1 - - references: PMID:2243100;PMID:9536209 + - gene_reaction_rule: "ENSG00000203857 or ENSG00000203859" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.3.1" + - references: "PMID:2243100;PMID:9536209" - subsystem: - - Androgen metabolism + - "Androgen metabolism" - confidence_score: 0 - !!omap - - id: HMR_1971 + - id: "HMR_1971" - name: "" - metabolites: !!omap - m00971r: 1 @@ -135698,15 +135698,15 @@ - m02553r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000203857 or ENSG00000203859 - - rxnFrom: HMRdatabase - - eccodes: 5.3.3.1 - - references: PMID:2243100;PMID:9536209 + - gene_reaction_rule: "ENSG00000203857 or ENSG00000203859" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.3.1" + - references: "PMID:2243100;PMID:9536209" - subsystem: - - Androgen metabolism + - "Androgen metabolism" - confidence_score: 0 - !!omap - - id: HMR_1973 + - id: "HMR_1973" - name: "" - metabolites: !!omap - m00971c: -1 @@ -135716,15 +135716,15 @@ - m02969c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000025423 or ENSG00000086696 or ENSG00000108786 or ENSG00000130948 or ENSG00000132196 or ENSG00000149084 or ENSG00000196139 or ENSG00000198189 or ENSG00000204228 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.62;1.1.1.64 - - references: PMID:2197970;PMID:8547185;PMID:8075637;PMID:9536209;PMID:10049998 + - gene_reaction_rule: "ENSG00000025423 or ENSG00000086696 or ENSG00000108786 or ENSG00000130948 or ENSG00000132196 or ENSG00000149084 or ENSG00000196139 or ENSG00000198189 or ENSG00000204228" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.62;1.1.1.64" + - references: "PMID:2197970;PMID:8547185;PMID:8075637;PMID:9536209;PMID:10049998" - subsystem: - - Androgen metabolism + - "Androgen metabolism" - confidence_score: 0 - !!omap - - id: HMR_1974 + - id: "HMR_1974" - name: "" - metabolites: !!omap - m00971r: -1 @@ -135734,15 +135734,15 @@ - m02969r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000025423 or ENSG00000086696 or ENSG00000108786 or ENSG00000130948 or ENSG00000132196 or ENSG00000149084 or ENSG00000196139 or ENSG00000198189 or ENSG00000204228 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.62;1.1.1.64 - - references: PMID:10049998 + - gene_reaction_rule: "ENSG00000025423 or ENSG00000086696 or ENSG00000108786 or ENSG00000130948 or ENSG00000132196 or ENSG00000149084 or ENSG00000196139 or ENSG00000198189 or ENSG00000204228" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.62;1.1.1.64" + - references: "PMID:10049998" - subsystem: - - Androgen metabolism + - "Androgen metabolism" - confidence_score: 0 - !!omap - - id: HMR_1976 + - id: "HMR_1976" - name: "" - metabolites: !!omap - m01069c: 1 @@ -135752,15 +135752,15 @@ - m02969c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000128039 or ENSG00000145545 or ENSG00000277893 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.22 - - references: PMID:2339109;PMID:1944596;PMID:9208814;PMID:17986282;PMID:9536209 + - gene_reaction_rule: "ENSG00000128039 or ENSG00000145545 or ENSG00000277893" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.22" + - references: "PMID:2339109;PMID:1944596;PMID:9208814;PMID:17986282;PMID:9536209" - subsystem: - - Androgen metabolism + - "Androgen metabolism" - confidence_score: 0 - !!omap - - id: HMR_1977 + - id: "HMR_1977" - name: "" - metabolites: !!omap - m01069r: 1 @@ -135770,15 +135770,15 @@ - m02969r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000128039 or ENSG00000145545 or ENSG00000277893 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.22 - - references: PMID:2339109;PMID:1944596;PMID:9208814;PMID:17986282;PMID:9536209 + - gene_reaction_rule: "ENSG00000128039 or ENSG00000145545 or ENSG00000277893" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.22" + - references: "PMID:2339109;PMID:1944596;PMID:9208814;PMID:17986282;PMID:9536209" - subsystem: - - Androgen metabolism + - "Androgen metabolism" - confidence_score: 0 - !!omap - - id: HMR_1978 + - id: "HMR_1978" - name: "" - metabolites: !!omap - m01065c: 1 @@ -135788,15 +135788,15 @@ - m02555c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000198610 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.50 - - references: PMID:11134149;PMID:10487690 + - gene_reaction_rule: "ENSG00000198610" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.50" + - references: "PMID:11134149;PMID:10487690" - subsystem: - - Androgen metabolism + - "Androgen metabolism" - confidence_score: 0 - !!omap - - id: HMR_1982 + - id: "HMR_1982" - name: "" - metabolites: !!omap - m00408c: -1 @@ -135806,30 +135806,30 @@ - m02761c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000203857 or ENSG00000203859 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.145 - - references: PMID:2243100;PMID:2770297;PMID:1944309;PMID:12832414 + - gene_reaction_rule: "ENSG00000203857 or ENSG00000203859" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.145" + - references: "PMID:2243100;PMID:2770297;PMID:1944309;PMID:12832414" - subsystem: - - Androgen metabolism + - "Androgen metabolism" - confidence_score: 0 - !!omap - - id: HMR_1983 + - id: "HMR_1983" - name: "" - metabolites: !!omap - m00409c: 1 - m02761c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000203857 or ENSG00000203859 - - rxnFrom: HMRdatabase - - eccodes: 5.3.3.1 - - references: PMID:2243100 + - gene_reaction_rule: "ENSG00000203857 or ENSG00000203859" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.3.1" + - references: "PMID:2243100" - subsystem: - - Androgen metabolism + - "Androgen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2014 + - id: "HMR_2014" - name: "" - metabolites: !!omap - m00971c: -1 @@ -135839,15 +135839,15 @@ - m02555c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000122787 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.3;1.3.99.6 - - references: + - gene_reaction_rule: "ENSG00000122787" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.3;1.3.99.6" + - references: "" - subsystem: - - Androgen metabolism + - "Androgen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2015 + - id: "HMR_2015" - name: "" - metabolites: !!omap - m00971r: -1 @@ -135857,15 +135857,15 @@ - m02555r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000128039 or ENSG00000145545 or ENSG00000277893 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.22 - - references: + - gene_reaction_rule: "ENSG00000128039 or ENSG00000145545 or ENSG00000277893" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.22" + - references: "" - subsystem: - - Androgen metabolism + - "Androgen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2016 + - id: "HMR_2016" - name: "" - metabolites: !!omap - m01064c: -1 @@ -135875,15 +135875,15 @@ - m02553c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151632 or ENSG00000187134 or ENSG00000196139 or ENSG00000198610 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.209;1.1.1.213;1.1.1.50 - - references: + - gene_reaction_rule: "ENSG00000151632 or ENSG00000187134 or ENSG00000196139 or ENSG00000198610" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.209;1.1.1.213;1.1.1.50" + - references: "" - subsystem: - - Androgen metabolism + - "Androgen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2017 + - id: "HMR_2017" - name: "" - metabolites: !!omap - m01064r: -1 @@ -135893,15 +135893,15 @@ - m02553r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151632 or ENSG00000187134 or ENSG00000196139 or ENSG00000198610 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.209;1.1.1.213;1.1.1.50 - - references: + - gene_reaction_rule: "ENSG00000151632 or ENSG00000187134 or ENSG00000196139 or ENSG00000198610" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.209;1.1.1.213;1.1.1.50" + - references: "" - subsystem: - - Androgen metabolism + - "Androgen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2018 + - id: "HMR_2018" - name: "" - metabolites: !!omap - m01064c: -1 @@ -135911,15 +135911,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151632 or ENSG00000187134 or ENSG00000196139 or ENSG00000198610 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.209;1.1.1.213;1.1.1.50 - - references: + - gene_reaction_rule: "ENSG00000151632 or ENSG00000187134 or ENSG00000196139 or ENSG00000198610" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.209;1.1.1.213;1.1.1.50" + - references: "" - subsystem: - - Androgen metabolism + - "Androgen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2019 + - id: "HMR_2019" - name: "" - metabolites: !!omap - m01064r: -1 @@ -135929,15 +135929,15 @@ - m02555r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151632 or ENSG00000187134 or ENSG00000196139 or ENSG00000198610 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.209;1.1.1.213;1.1.1.50 - - references: + - gene_reaction_rule: "ENSG00000151632 or ENSG00000187134 or ENSG00000196139 or ENSG00000198610" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.209;1.1.1.213;1.1.1.50" + - references: "" - subsystem: - - Androgen metabolism + - "Androgen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2020 + - id: "HMR_2020" - name: "" - metabolites: !!omap - m01337c: -1 @@ -135947,15 +135947,15 @@ - m02946c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101846 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.2 - - references: PMID:2969800 + - gene_reaction_rule: "ENSG00000101846" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.2" + - references: "PMID:2969800" - subsystem: - - Androgen metabolism + - "Androgen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2022 + - id: "HMR_2022" - name: "" - metabolites: !!omap - m01069c: -1 @@ -135965,15 +135965,15 @@ - m02553c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000203857 or ENSG00000203859 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.145 - - references: PMID:11134149;PMID:10487690 + - gene_reaction_rule: "ENSG00000203857 or ENSG00000203859" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.145" + - references: "PMID:11134149;PMID:10487690" - subsystem: - - Androgen metabolism + - "Androgen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2024 + - id: "HMR_2024" - name: "" - metabolites: !!omap - m01069r: -1 @@ -135983,15 +135983,15 @@ - m02553r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000203857 or ENSG00000203859 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.145 - - references: PMID:11134149;PMID:10487690 + - gene_reaction_rule: "ENSG00000203857 or ENSG00000203859" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.145" + - references: "PMID:11134149;PMID:10487690" - subsystem: - - Androgen metabolism + - "Androgen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2025 + - id: "HMR_2025" - name: "" - metabolites: !!omap - m01069c: -1 @@ -136001,15 +136001,15 @@ - m02946c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101846 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.2 - - references: PMID:11886493 + - gene_reaction_rule: "ENSG00000101846" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.2" + - references: "PMID:11886493" - subsystem: - - Androgen metabolism + - "Androgen metabolism" - confidence_score: 0 - !!omap - - id: HMR_1440 + - id: "HMR_1440" - name: "" - metabolites: !!omap - m00167c: 1 @@ -136020,15 +136020,15 @@ - m02555c: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113161 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.34 - - references: PMID:10698924;PMID:11108725;PMID:12454262;PMID:3745272;PMID:3883347 + - gene_reaction_rule: "ENSG00000113161" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.34" + - references: "PMID:10698924;PMID:11108725;PMID:12454262;PMID:3745272;PMID:3883347" - subsystem: - - Cholesterol biosynthesis 1 (Bloch pathway) + - "Cholesterol biosynthesis 1 (Bloch pathway) " - confidence_score: 0 - !!omap - - id: HMR_1445 + - id: "HMR_1445" - name: "" - metabolites: !!omap - m00165c: 1 @@ -136038,15 +136038,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110921 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.36 - - references: PMID:1377680;PMID:14730012;PMID:11108725;PMID:11111075;PMID:12121718;PMID:14730012;PMID:17180682;PMID:7904598 + - gene_reaction_rule: "ENSG00000110921" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.36" + - references: "PMID:1377680;PMID:14730012;PMID:11108725;PMID:11111075;PMID:12121718;PMID:14730012;PMID:17180682;PMID:7904598" - subsystem: - - Cholesterol biosynthesis 1 (Bloch pathway) + - "Cholesterol biosynthesis 1 (Bloch pathway) " - confidence_score: 0 - !!omap - - id: HMR_1448 + - id: "HMR_1448" - name: "" - metabolites: !!omap - m00164c: -1 @@ -136055,30 +136055,30 @@ - m01371c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000163344 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.2 - - references: PMID:16519518;PMID:14729858;PMID:10191291;PMID:11108725;PMID:12121718;PMID:14729858;PMID:17180682;PMID:8663599 + - gene_reaction_rule: "ENSG00000163344" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.2" + - references: "PMID:16519518;PMID:14729858;PMID:10191291;PMID:11108725;PMID:12121718;PMID:14729858;PMID:17180682;PMID:8663599" - subsystem: - - Cholesterol biosynthesis 1 (Bloch pathway) + - "Cholesterol biosynthesis 1 (Bloch pathway) " - confidence_score: 0 - !!omap - - id: HMR_1454 + - id: "HMR_1454" - name: "" - metabolites: !!omap - m01706c: 1 - m02187c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000067064 or ENSG00000148377 - - rxnFrom: HMRdatabase - - eccodes: 5.3.3.2 - - references: PMID:8806705;PMID:11108725;PMID:12121718;PMID:17180682;PMID:8806705 + - gene_reaction_rule: "ENSG00000067064 or ENSG00000148377" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.3.2" + - references: "PMID:8806705;PMID:11108725;PMID:12121718;PMID:17180682;PMID:8806705" - subsystem: - - Cholesterol biosynthesis 1 (Bloch pathway) + - "Cholesterol biosynthesis 1 (Bloch pathway) " - confidence_score: 0 - !!omap - - id: HMR_1465 + - id: "HMR_1465" - name: "" - metabolites: !!omap - m01806c: 2 @@ -136086,15 +136086,15 @@ - m02764c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000079459 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.21 - - references: PMID:10896663;PMID:11108725;PMID:1527001;PMID:17180682;PMID:7864626;PMID:8509416 + - gene_reaction_rule: "ENSG00000079459" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.21" + - references: "PMID:10896663;PMID:11108725;PMID:1527001;PMID:17180682;PMID:7864626;PMID:8509416" - subsystem: - - Cholesterol biosynthesis 1 (Bloch pathway) + - "Cholesterol biosynthesis 1 (Bloch pathway) " - confidence_score: 0 - !!omap - - id: HMR_1467 + - id: "HMR_1467" - name: "" - metabolites: !!omap - m02039c: -1 @@ -136105,15 +136105,15 @@ - m02933c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000079459 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.21 - - references: PMID:10896663;PMID:10449533;PMID:1527001;PMID:7864626;PMID:8509416 + - gene_reaction_rule: "ENSG00000079459" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.21" + - references: "PMID:10896663;PMID:10449533;PMID:1527001;PMID:7864626;PMID:8509416" - subsystem: - - Cholesterol biosynthesis 1 (Bloch pathway) + - "Cholesterol biosynthesis 1 (Bloch pathway) " - confidence_score: 0 - !!omap - - id: HMR_1470 + - id: "HMR_1470" - name: "" - metabolites: !!omap - m02039c: -1 @@ -136125,30 +136125,30 @@ - m02933c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104549 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.132 - - references: PMID:10666321;PMID:10484604;PMID:10666321;PMID:11108725;PMID:7946524;PMID:8993542 + - gene_reaction_rule: "ENSG00000104549" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.132" + - references: "PMID:10666321;PMID:10484604;PMID:10666321;PMID:11108725;PMID:7946524;PMID:8993542" - subsystem: - - Cholesterol biosynthesis 1 (Bloch pathway) + - "Cholesterol biosynthesis 1 (Bloch pathway) " - confidence_score: 0 - !!omap - - id: HMR_1473 + - id: "HMR_1473" - name: "" - metabolites: !!omap - m02336c: 1 - m02932c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160285 - - rxnFrom: HMRdatabase - - eccodes: 5.4.99.7 - - references: PMID:8593458;PMID:5918048;PMID:10484604;PMID:11108725;PMID:7639730;PMID:7946524;PMID:8993542 + - gene_reaction_rule: "ENSG00000160285" + - rxnFrom: "HMRdatabase" + - eccodes: "5.4.99.7" + - references: "PMID:8593458;PMID:5918048;PMID:10484604;PMID:11108725;PMID:7639730;PMID:7946524;PMID:8993542" - subsystem: - - Cholesterol biosynthesis 1 (Bloch pathway) + - "Cholesterol biosynthesis 1 (Bloch pathway) " - confidence_score: 0 - !!omap - - id: HMR_1477 + - id: "HMR_1477" - name: "" - metabolites: !!omap - m00939c: 1 @@ -136160,15 +136160,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000001630 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.70 - - references: + - gene_reaction_rule: "ENSG00000001630" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.70" + - references: "" - subsystem: - - Cholesterol biosynthesis 1 (Bloch pathway) + - "Cholesterol biosynthesis 1 (Bloch pathway) " - confidence_score: 0 - !!omap - - id: HMR_1478 + - id: "HMR_1478" - name: "" - metabolites: !!omap - m00937c: 1 @@ -136180,15 +136180,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000001630 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.70 - - references: + - gene_reaction_rule: "ENSG00000001630" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.70" + - references: "" - subsystem: - - Cholesterol biosynthesis 1 (Bloch pathway) + - "Cholesterol biosynthesis 1 (Bloch pathway) " - confidence_score: 0 - !!omap - - id: HMR_1479 + - id: "HMR_1479" - name: "" - metabolites: !!omap - m00937c: -1 @@ -136200,15 +136200,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000001630 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.70 - - references: PMID:11111101 + - gene_reaction_rule: "ENSG00000001630" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.70" + - references: "PMID:11111101" - subsystem: - - Cholesterol biosynthesis 1 (Bloch pathway) + - "Cholesterol biosynthesis 1 (Bloch pathway) " - confidence_score: 0 - !!omap - - id: HMR_1484 + - id: "HMR_1484" - name: "" - metabolites: !!omap - m00367c: 1 @@ -136218,15 +136218,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000143815 or ENSG00000149809 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.70 - - references: PMID:16784888;PMID:11969204;PMID:7946524 + - gene_reaction_rule: "ENSG00000143815 or ENSG00000149809" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.70" + - references: "PMID:16784888;PMID:11969204;PMID:7946524" - subsystem: - - Cholesterol biosynthesis 1 (Bloch pathway) + - "Cholesterol biosynthesis 1 (Bloch pathway) " - confidence_score: 0 - !!omap - - id: HMR_1490 + - id: "HMR_1490" - name: "" - metabolites: !!omap - m00367c: -1 @@ -136238,15 +136238,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000052802 or ENSG00000170271 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.72 - - references: + - gene_reaction_rule: "ENSG00000052802 or ENSG00000170271" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.72" + - references: "" - subsystem: - - Cholesterol biosynthesis 1 (Bloch pathway) + - "Cholesterol biosynthesis 1 (Bloch pathway) " - confidence_score: 0 - !!omap - - id: HMR_1493 + - id: "HMR_1493" - name: "" - metabolites: !!omap - m00957c: 1 @@ -136258,15 +136258,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000052802 or ENSG00000170271 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.72 - - references: + - gene_reaction_rule: "ENSG00000052802 or ENSG00000170271" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.72" + - references: "" - subsystem: - - Cholesterol biosynthesis 1 (Bloch pathway) + - "Cholesterol biosynthesis 1 (Bloch pathway) " - confidence_score: 0 - !!omap - - id: HMR_1494 + - id: "HMR_1494" - name: "" - metabolites: !!omap - m00953c: 1 @@ -136278,15 +136278,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000052802 or ENSG00000170271 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.72 - - references: + - gene_reaction_rule: "ENSG00000052802 or ENSG00000170271" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.72" + - references: "" - subsystem: - - Cholesterol biosynthesis 1 (Bloch pathway) + - "Cholesterol biosynthesis 1 (Bloch pathway) " - confidence_score: 0 - !!omap - - id: HMR_1495 + - id: "HMR_1495" - name: "" - metabolites: !!omap - m00809c: 1 @@ -136297,15 +136297,15 @@ - m02555c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147383 or ENSG00000183305 or ENSG00000268606 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.170 - - references: PMID:10369263;PMID:11969204;PMID:12837764;PMID:14506130;PMID:7946524 + - gene_reaction_rule: "ENSG00000147383 or ENSG00000183305 or ENSG00000268606" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.170" + - references: "PMID:10369263;PMID:11969204;PMID:12837764;PMID:14506130;PMID:7946524" - subsystem: - - Cholesterol biosynthesis 1 (Bloch pathway) + - "Cholesterol biosynthesis 1 (Bloch pathway) " - confidence_score: 0 - !!omap - - id: HMR_1496 + - id: "HMR_1496" - name: "" - metabolites: !!omap - m00809c: 1 @@ -136316,15 +136316,15 @@ - m02553c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147383 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.170 - - references: PMID:14506130;PMID:10369263;PMID:11969204;PMID:12837764;PMID:14506130;PMID:7946524 + - gene_reaction_rule: "ENSG00000147383" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.170" + - references: "PMID:14506130;PMID:10369263;PMID:11969204;PMID:12837764;PMID:14506130;PMID:7946524" - subsystem: - - Cholesterol biosynthesis 1 (Bloch pathway) + - "Cholesterol biosynthesis 1 (Bloch pathway) " - confidence_score: 0 - !!omap - - id: HMR_1500 + - id: "HMR_1500" - name: "" - metabolites: !!omap - m00809c: -1 @@ -136334,15 +136334,15 @@ - m02555c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000132196 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.270 - - references: PMID:11969204;PMID:;PMID:10544267;PMID:12732193;PMID:12829805 + - gene_reaction_rule: "ENSG00000132196" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.270" + - references: "PMID:11969204;PMID:;PMID:10544267;PMID:12732193;PMID:12829805" - subsystem: - - Cholesterol biosynthesis 1 (Bloch pathway) + - "Cholesterol biosynthesis 1 (Bloch pathway) " - confidence_score: 0 - !!omap - - id: HMR_1502 + - id: "HMR_1502" - name: "" - metabolites: !!omap - m00963c: 1 @@ -136354,15 +136354,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000052802 or ENSG00000170271 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.72 - - references: + - gene_reaction_rule: "ENSG00000052802 or ENSG00000170271" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.72" + - references: "" - subsystem: - - Cholesterol biosynthesis 1 (Bloch pathway) + - "Cholesterol biosynthesis 1 (Bloch pathway) " - confidence_score: 0 - !!omap - - id: HMR_1503 + - id: "HMR_1503" - name: "" - metabolites: !!omap - m00959c: 1 @@ -136374,15 +136374,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000052802 or ENSG00000170271 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.72 - - references: + - gene_reaction_rule: "ENSG00000052802 or ENSG00000170271" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.72" + - references: "" - subsystem: - - Cholesterol biosynthesis 1 (Bloch pathway) + - "Cholesterol biosynthesis 1 (Bloch pathway) " - confidence_score: 0 - !!omap - - id: HMR_1504 + - id: "HMR_1504" - name: "" - metabolites: !!omap - m00955c: 1 @@ -136394,15 +136394,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000052802 or ENSG00000170271 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.72 - - references: + - gene_reaction_rule: "ENSG00000052802 or ENSG00000170271" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.72" + - references: "" - subsystem: - - Cholesterol biosynthesis 1 (Bloch pathway) + - "Cholesterol biosynthesis 1 (Bloch pathway) " - confidence_score: 0 - !!omap - - id: HMR_1505 + - id: "HMR_1505" - name: "" - metabolites: !!omap - m00955c: -1 @@ -136413,15 +136413,15 @@ - m02555c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147383 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.170 - - references: PMID:14506130 + - gene_reaction_rule: "ENSG00000147383" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.170" + - references: "PMID:14506130" - subsystem: - - Cholesterol biosynthesis 1 (Bloch pathway) + - "Cholesterol biosynthesis 1 (Bloch pathway) " - confidence_score: 0 - !!omap - - id: HMR_1509 + - id: "HMR_1509" - name: "" - metabolites: !!omap - m01067c: -1 @@ -136431,30 +136431,30 @@ - m03158c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000132196 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.270 - - references: PMID:11969204 + - gene_reaction_rule: "ENSG00000132196" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.270" + - references: "PMID:11969204" - subsystem: - - Cholesterol biosynthesis 1 (Bloch pathway) + - "Cholesterol biosynthesis 1 (Bloch pathway) " - confidence_score: 0 - !!omap - - id: HMR_1512 + - id: "HMR_1512" - name: "" - metabolites: !!omap - m01066c: 1 - m03158c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147155 - - rxnFrom: HMRdatabase - - eccodes: 5.3.3.5 - - references: PMID:10391218;PMID:10391219;PMID:12133002;PMID:2422166;PMID:7946524 + - gene_reaction_rule: "ENSG00000147155" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.3.5" + - references: "PMID:10391218;PMID:10391219;PMID:12133002;PMID:2422166;PMID:7946524" - subsystem: - - Cholesterol biosynthesis 1 (Bloch pathway) + - "Cholesterol biosynthesis 1 (Bloch pathway) " - confidence_score: 0 - !!omap - - id: HMR_1516 + - id: "HMR_1516" - name: "" - metabolites: !!omap - m01066c: -1 @@ -136466,15 +136466,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109929 - - rxnFrom: HMRdatabase - - eccodes: 1.14.21.6 - - references: PMID:12189593;PMID:12812989;PMID:11969204 + - gene_reaction_rule: "ENSG00000109929" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.21.6" + - references: "PMID:12189593;PMID:12812989;PMID:11969204" - subsystem: - - Cholesterol biosynthesis 1 (Bloch pathway) + - "Cholesterol biosynthesis 1 (Bloch pathway) " - confidence_score: 0 - !!omap - - id: HMR_1519 + - id: "HMR_1519" - name: "" - metabolites: !!omap - m01189c: -1 @@ -136484,15 +136484,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000172893 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.21 - - references: PMID:9465114;PMID:15670717;PMID:9465114;PMID:11111101 + - gene_reaction_rule: "ENSG00000172893" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.21" + - references: "PMID:9465114;PMID:15670717;PMID:9465114;PMID:11111101" - subsystem: - - Cholesterol biosynthesis 1 (Bloch pathway) + - "Cholesterol biosynthesis 1 (Bloch pathway) " - confidence_score: 0 - !!omap - - id: HMR_1526 + - id: "HMR_1526" - name: "" - metabolites: !!omap - m01450c: 1 @@ -136502,15 +136502,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116133 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.72 - - references: PMID:11519011;PMID:15670717;PMID:7946524;PMID:9465114 + - gene_reaction_rule: "ENSG00000116133" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.72" + - references: "PMID:11519011;PMID:15670717;PMID:7946524;PMID:9465114" - subsystem: - - Cholesterol biosynthesis 1 (Bloch pathway) + - "Cholesterol biosynthesis 1 (Bloch pathway) " - confidence_score: 0 - !!omap - - id: HMR_1533 + - id: "HMR_1533" - name: "" - metabolites: !!omap - m01066c: -1 @@ -136520,15 +136520,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116133 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.72 - - references: PMID:7946524 + - gene_reaction_rule: "ENSG00000116133" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.72" + - references: "PMID:7946524" - subsystem: - - Cholesterol biosynthesis 2 + - "Cholesterol biosynthesis 2" - confidence_score: 0 - !!omap - - id: HMR_1557 + - id: "HMR_1557" - name: "" - metabolites: !!omap - m02039c: -1 @@ -136540,15 +136540,15 @@ - m02805c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109929 - - rxnFrom: HMRdatabase - - eccodes: 1.14.21.6 - - references: PMID:11731337;PMID:7946524 + - gene_reaction_rule: "ENSG00000109929" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.21.6" + - references: "PMID:11731337;PMID:7946524" - subsystem: - - Cholesterol biosynthesis 2 + - "Cholesterol biosynthesis 2" - confidence_score: 0 - !!omap - - id: HMR_1558 + - id: "HMR_1558" - name: "" - metabolites: !!omap - m02039c: -1 @@ -136560,15 +136560,15 @@ - m02805c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109929 - - rxnFrom: HMRdatabase - - eccodes: 1.14.21.6 - - references: PMID:11731337;PMID:7946524 + - gene_reaction_rule: "ENSG00000109929" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.21.6" + - references: "PMID:11731337;PMID:7946524" - subsystem: - - Cholesterol biosynthesis 2 + - "Cholesterol biosynthesis 2" - confidence_score: 0 - !!omap - - id: HMR_1565 + - id: "HMR_1565" - name: "" - metabolites: !!omap - m01450c: 1 @@ -136578,15 +136578,15 @@ - m02805c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000172893 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.21 - - references: PMID:15670717;PMID:7946524;PMID:9465114 + - gene_reaction_rule: "ENSG00000172893" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.21" + - references: "PMID:15670717;PMID:7946524;PMID:9465114" - subsystem: - - Cholesterol biosynthesis 2 + - "Cholesterol biosynthesis 2" - confidence_score: 0 - !!omap - - id: HMR_1535 + - id: "HMR_1535" - name: "" - metabolites: !!omap - m00609c: 1 @@ -136596,15 +136596,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116133 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.72 - - references: + - gene_reaction_rule: "ENSG00000116133" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.72" + - references: "" - subsystem: - - Cholesterol biosynthesis 3 (Kandustch-Russell pathway) + - "Cholesterol biosynthesis 3 (Kandustch-Russell pathway)" - confidence_score: 0 - !!omap - - id: HMR_1536 + - id: "HMR_1536" - name: "" - metabolites: !!omap - m00609c: -1 @@ -136616,15 +136616,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000001630 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.70 - - references: + - gene_reaction_rule: "ENSG00000001630" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.70" + - references: "" - subsystem: - - Cholesterol biosynthesis 3 (Kandustch-Russell pathway) + - "Cholesterol biosynthesis 3 (Kandustch-Russell pathway)" - confidence_score: 0 - !!omap - - id: HMR_1538 + - id: "HMR_1538" - name: "" - metabolites: !!omap - m00938c: 1 @@ -136636,15 +136636,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000001630 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.70 - - references: + - gene_reaction_rule: "ENSG00000001630" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.70" + - references: "" - subsystem: - - Cholesterol biosynthesis 3 (Kandustch-Russell pathway) + - "Cholesterol biosynthesis 3 (Kandustch-Russell pathway)" - confidence_score: 0 - !!omap - - id: HMR_1539 + - id: "HMR_1539" - name: "" - metabolites: !!omap - m00938c: -1 @@ -136656,15 +136656,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000001630 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.70 - - references: + - gene_reaction_rule: "ENSG00000001630" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.70" + - references: "" - subsystem: - - Cholesterol biosynthesis 3 (Kandustch-Russell pathway) + - "Cholesterol biosynthesis 3 (Kandustch-Russell pathway)" - confidence_score: 0 - !!omap - - id: HMR_1540 + - id: "HMR_1540" - name: "" - metabolites: !!omap - m00942c: -1 @@ -136674,15 +136674,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000143815 or ENSG00000149809 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.70 - - references: PMID:11111101 + - gene_reaction_rule: "ENSG00000143815 or ENSG00000149809" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.70" + - references: "PMID:11111101" - subsystem: - - Cholesterol biosynthesis 3 (Kandustch-Russell pathway) + - "Cholesterol biosynthesis 3 (Kandustch-Russell pathway)" - confidence_score: 0 - !!omap - - id: HMR_1543 + - id: "HMR_1543" - name: "" - metabolites: !!omap - m00943c: -1 @@ -136694,15 +136694,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000052802 or ENSG00000170271 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.72 - - references: + - gene_reaction_rule: "ENSG00000052802 or ENSG00000170271" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.72" + - references: "" - subsystem: - - Cholesterol biosynthesis 3 (Kandustch-Russell pathway) + - "Cholesterol biosynthesis 3 (Kandustch-Russell pathway)" - confidence_score: 0 - !!omap - - id: HMR_1544 + - id: "HMR_1544" - name: "" - metabolites: !!omap - m00958c: 1 @@ -136714,15 +136714,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000052802 or ENSG00000170271 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.72 - - references: + - gene_reaction_rule: "ENSG00000052802 or ENSG00000170271" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.72" + - references: "" - subsystem: - - Cholesterol biosynthesis 3 (Kandustch-Russell pathway) + - "Cholesterol biosynthesis 3 (Kandustch-Russell pathway)" - confidence_score: 0 - !!omap - - id: HMR_1545 + - id: "HMR_1545" - name: "" - metabolites: !!omap - m00954c: 1 @@ -136734,15 +136734,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000052802 or ENSG00000170271 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.72 - - references: + - gene_reaction_rule: "ENSG00000052802 or ENSG00000170271" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.72" + - references: "" - subsystem: - - Cholesterol biosynthesis 3 (Kandustch-Russell pathway) + - "Cholesterol biosynthesis 3 (Kandustch-Russell pathway)" - confidence_score: 0 - !!omap - - id: HMR_1546 + - id: "HMR_1546" - name: "" - metabolites: !!omap - m00954c: -1 @@ -136753,15 +136753,15 @@ - m02555c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147383 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.170 - - references: + - gene_reaction_rule: "ENSG00000147383" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.170" + - references: "" - subsystem: - - Cholesterol biosynthesis 3 (Kandustch-Russell pathway) + - "Cholesterol biosynthesis 3 (Kandustch-Russell pathway)" - confidence_score: 0 - !!omap - - id: HMR_1547 + - id: "HMR_1547" - name: "" - metabolites: !!omap - m00966c: -1 @@ -136771,15 +136771,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000132196 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.270 - - references: + - gene_reaction_rule: "ENSG00000132196" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.270" + - references: "" - subsystem: - - Cholesterol biosynthesis 3 (Kandustch-Russell pathway) + - "Cholesterol biosynthesis 3 (Kandustch-Russell pathway)" - confidence_score: 0 - !!omap - - id: HMR_1548 + - id: "HMR_1548" - name: "" - metabolites: !!omap - m00964c: 1 @@ -136791,15 +136791,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000052802 or ENSG00000170271 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.72 - - references: + - gene_reaction_rule: "ENSG00000052802 or ENSG00000170271" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.72" + - references: "" - subsystem: - - Cholesterol biosynthesis 3 (Kandustch-Russell pathway) + - "Cholesterol biosynthesis 3 (Kandustch-Russell pathway)" - confidence_score: 0 - !!omap - - id: HMR_1549 + - id: "HMR_1549" - name: "" - metabolites: !!omap - m00960c: 1 @@ -136811,15 +136811,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000052802 or ENSG00000170271 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.72 - - references: + - gene_reaction_rule: "ENSG00000052802 or ENSG00000170271" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.72" + - references: "" - subsystem: - - Cholesterol biosynthesis 3 (Kandustch-Russell pathway) + - "Cholesterol biosynthesis 3 (Kandustch-Russell pathway)" - confidence_score: 0 - !!omap - - id: HMR_1550 + - id: "HMR_1550" - name: "" - metabolites: !!omap - m00956c: 1 @@ -136831,15 +136831,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000052802 or ENSG00000170271 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.72 - - references: + - gene_reaction_rule: "ENSG00000052802 or ENSG00000170271" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.72" + - references: "" - subsystem: - - Cholesterol biosynthesis 3 (Kandustch-Russell pathway) + - "Cholesterol biosynthesis 3 (Kandustch-Russell pathway)" - confidence_score: 0 - !!omap - - id: HMR_1551 + - id: "HMR_1551" - name: "" - metabolites: !!omap - m00956c: -1 @@ -136850,15 +136850,15 @@ - m02555c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147383 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.170 - - references: + - gene_reaction_rule: "ENSG00000147383" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.170" + - references: "" - subsystem: - - Cholesterol biosynthesis 3 (Kandustch-Russell pathway) + - "Cholesterol biosynthesis 3 (Kandustch-Russell pathway)" - confidence_score: 0 - !!omap - - id: HMR_1552 + - id: "HMR_1552" - name: "" - metabolites: !!omap - m01068c: -1 @@ -136868,30 +136868,30 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000132196 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.270 - - references: + - gene_reaction_rule: "ENSG00000132196" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.270" + - references: "" - subsystem: - - Cholesterol biosynthesis 3 (Kandustch-Russell pathway) + - "Cholesterol biosynthesis 3 (Kandustch-Russell pathway)" - confidence_score: 0 - !!omap - - id: HMR_1553 + - id: "HMR_1553" - name: "" - metabolites: !!omap - m01449c: -1 - m02343c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147155 - - rxnFrom: HMRdatabase - - eccodes: 5.3.3.5 - - references: PMID:11111101;PMID:12133002;PMID:4475632;PMID:5810070;UNIPROT:Q15125 + - gene_reaction_rule: "ENSG00000147155" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.3.5" + - references: "PMID:11111101;PMID:12133002;PMID:4475632;PMID:5810070;UNIPROT:Q15125" - subsystem: - - Cholesterol biosynthesis 3 (Kandustch-Russell pathway) + - "Cholesterol biosynthesis 3 (Kandustch-Russell pathway)" - confidence_score: 0 - !!omap - - id: HMR_1437 + - id: "HMR_1437" - name: "" - metabolites: !!omap - m01255c: -1 @@ -136902,15 +136902,15 @@ - m02131c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112972 - - rxnFrom: HMRdatabase - - eccodes: 2.3.3.10 - - references: PMID:7913309;PMID:11087424;PMID:11108725;PMID:1358203;PMID:7893153 + - gene_reaction_rule: "ENSG00000112972" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.3.10" + - references: "PMID:7913309;PMID:11087424;PMID:11108725;PMID:1358203;PMID:7893153" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: HMR_1451 + - id: "HMR_1451" - name: "" - metabolites: !!omap - m00164c: -1 @@ -136921,15 +136921,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167508 - - rxnFrom: HMRdatabase - - eccodes: 4.1.1.33 - - references: PMID:8626466;PMID:11108725;PMID:12121718;PMID:12520181;PMID:12736493;PMID:12913254;PMID:14972328;PMID:15467276;PMID:17180682;PMID:8626466;PMID:9375384 + - gene_reaction_rule: "ENSG00000167508" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.1.33" + - references: "PMID:8626466;PMID:11108725;PMID:12121718;PMID:12520181;PMID:12736493;PMID:12913254;PMID:14972328;PMID:15467276;PMID:17180682;PMID:8626466;PMID:9375384" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: HMR_1457 + - id: "HMR_1457" - name: "" - metabolites: !!omap - m01706c: -1 @@ -136938,15 +136938,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000152904 or ENSG00000160752 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.1;2.5.1.10;2.5.1.29 - - references: PMID:10026212;PMID:9741684;PMID:16684881;PMID:11108725;PMID:12121718;PMID:17180682;PMID:7295734;PMID:8119922;PMID:8188698 + - gene_reaction_rule: "ENSG00000152904 or ENSG00000160752" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.1;2.5.1.10;2.5.1.29" + - references: "PMID:10026212;PMID:9741684;PMID:16684881;PMID:11108725;PMID:12121718;PMID:17180682;PMID:7295734;PMID:8119922;PMID:8188698" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: HMR_1460 + - id: "HMR_1460" - name: "" - metabolites: !!omap - m01806c: 1 @@ -136955,15 +136955,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000152904 or ENSG00000160752 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.1;2.5.1.10;2.5.1.29 - - references: PMID:10026212;PMID:9741684;PMID:16684881;PMID:11108725;PMID:12121718;PMID:17180682;PMID:7295734;PMID:8119922;PMID:8188698 + - gene_reaction_rule: "ENSG00000152904 or ENSG00000160752" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.1;2.5.1.10;2.5.1.29" + - references: "PMID:10026212;PMID:9741684;PMID:16684881;PMID:11108725;PMID:12121718;PMID:17180682;PMID:7295734;PMID:8119922;PMID:8188698" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: HMR_1531 + - id: "HMR_1531" - name: "" - metabolites: !!omap - m00624c: 1 @@ -136975,15 +136975,15 @@ - m02805c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135929 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.15 - - references: PMID:11254748;PMID:12581873 + - gene_reaction_rule: "ENSG00000135929" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.15" + - references: "PMID:11254748;PMID:12581873" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: HMR_1570 + - id: "HMR_1570" - name: "" - metabolites: !!omap - m01449c: 1 @@ -136993,15 +136993,15 @@ - m03158c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116133 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.72 - - references: PMID:12162789;PMID:9291139;PMID:9638657 + - gene_reaction_rule: "ENSG00000116133" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.72" + - references: "PMID:12162789;PMID:9291139;PMID:9638657" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: HMR_1576 + - id: "HMR_1576" - name: "" - metabolites: !!omap - m01253m: -1 @@ -137012,15 +137012,15 @@ - m02759m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000081760 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.16 - - references: PMID:4073493 + - gene_reaction_rule: "ENSG00000081760" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.16" + - references: "PMID:4073493" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: HMR_1577 + - id: "HMR_1577" - name: "" - metabolites: !!omap - m01253m: 1 @@ -137028,15 +137028,15 @@ - m02131m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117305 or ENSG00000146151 - - rxnFrom: HMRdatabase - - eccodes: 4.1.3.4 - - references: PMID:8440722;PMID:164460;PMID:8440722 + - gene_reaction_rule: "ENSG00000117305 or ENSG00000146151" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.3.4" + - references: "PMID:8440722;PMID:164460;PMID:8440722" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: HMR_3105 + - id: "HMR_3105" - name: "" - metabolites: !!omap - m01255p: -1 @@ -137044,15 +137044,15 @@ - m01597p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120437 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.9 - - references: PMID:10064897;PMID:10806397;PMID:1121274;PMID:11330060;PMID:15733928;PMID:1679347;PMID:16927236;PMID:17236799;PMID:1735445;PMID:1979337;PMID:3194209;PMID:6131897;PMID:6378901;PMID:7911016;PMID:8241273 + - gene_reaction_rule: "ENSG00000120437" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.9" + - references: "PMID:10064897;PMID:10806397;PMID:1121274;PMID:11330060;PMID:15733928;PMID:1679347;PMID:16927236;PMID:17236799;PMID:1735445;PMID:1979337;PMID:3194209;PMID:6131897;PMID:6378901;PMID:7911016;PMID:8241273" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: HMR_4630 + - id: "HMR_4630" - name: "" - metabolites: !!omap - m00167p: 1 @@ -137063,15 +137063,15 @@ - m02555p: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113161 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.34 - - references: PMID:10698924;PMID:11108725;PMID:12454262;PMID:3745272;PMID:3883347 + - gene_reaction_rule: "ENSG00000113161" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.34" + - references: "PMID:10698924;PMID:11108725;PMID:12454262;PMID:3745272;PMID:3883347" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: HMR_2029 + - id: "HMR_2029" - name: "" - metabolites: !!omap - m00432c: 1 @@ -137081,15 +137081,15 @@ - m02969c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2030 + - id: "HMR_2030" - name: "" - metabolites: !!omap - m00432c: -1 @@ -137099,15 +137099,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2031 + - id: "HMR_2031" - name: "" - metabolites: !!omap - m00434c: -1 @@ -137119,15 +137119,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2032 + - id: "HMR_2032" - name: "" - metabolites: !!omap - m00431c: 1 @@ -137137,15 +137137,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2033 + - id: "HMR_2033" - name: "" - metabolites: !!omap - m00431c: -1 @@ -137155,15 +137155,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2034 + - id: "HMR_2034" - name: "" - metabolites: !!omap - m00433c: -1 @@ -137175,15 +137175,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2036 + - id: "HMR_2036" - name: "" - metabolites: !!omap - m01787c: 1 @@ -137193,15 +137193,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000025423 or ENSG00000086696 or ENSG00000108786 or ENSG00000132196 or ENSG00000149084 or ENSG00000198189 or ENSG00000204228 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.62 - - references: PMID:19027824 + - gene_reaction_rule: "ENSG00000025423 or ENSG00000086696 or ENSG00000108786 or ENSG00000132196 or ENSG00000149084 or ENSG00000198189 or ENSG00000204228" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.62" + - references: "PMID:19027824" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2037 + - id: "HMR_2037" - name: "" - metabolites: !!omap - m01789c: 1 @@ -137211,15 +137211,15 @@ - m02682c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109193 or ENSG00000196502 or ENSG00000261052 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.4 - - references: + - gene_reaction_rule: "ENSG00000109193 or ENSG00000196502 or ENSG00000261052" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.4" + - references: "" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 2 - !!omap - - id: HMR_2038 + - id: "HMR_2038" - name: "" - metabolites: !!omap - m01789c: -1 @@ -137229,15 +137229,15 @@ - m02946c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006756 or ENSG00000101846 or ENSG00000157399 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.1;3.1.6.2 - - references: + - gene_reaction_rule: "ENSG00000006756 or ENSG00000101846 or ENSG00000157399" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.1;3.1.6.2" + - references: "" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2042 + - id: "HMR_2042" - name: "" - metabolites: !!omap - m00649c: 1 @@ -137249,15 +137249,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: PMID:9380738 + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "PMID:9380738" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2043 + - id: "HMR_2043" - name: "" - metabolites: !!omap - m00649r: 1 @@ -137269,15 +137269,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: PMID:9380738 + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "PMID:9380738" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2044 + - id: "HMR_2044" - name: "" - metabolites: !!omap - m00644c: -1 @@ -137287,15 +137287,15 @@ - m02877c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000093010 or ENSG00000184154 or ENSG00000284844 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.6 - - references: PMID:9380738;PMID:11559542;PMID:9380738;PMID:11559542;PMID:11559542;PMID:9380738;PMID:9380738;PMID:11559542 + - gene_reaction_rule: "ENSG00000093010 or ENSG00000184154 or ENSG00000284844" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.6" + - references: "PMID:9380738;PMID:11559542;PMID:9380738;PMID:11559542;PMID:11559542;PMID:9380738;PMID:9380738;PMID:11559542" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2045 + - id: "HMR_2045" - name: "" - metabolites: !!omap - m00649c: -1 @@ -137305,15 +137305,15 @@ - m02877c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000093010 or ENSG00000184154 or ENSG00000284844 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.6 - - references: PMID:11559542 + - gene_reaction_rule: "ENSG00000093010 or ENSG00000184154 or ENSG00000284844" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.6" + - references: "PMID:11559542" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2046 + - id: "HMR_2046" - name: "" - metabolites: !!omap - m00986c: 1 @@ -137325,15 +137325,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160868 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.67 - - references: PMID:1449532;PMID:9380738;PMID:9380738;PMID:1449532;PMID:1449532;PMID:9380738;PMID:9380738;PMID:1449532 + - gene_reaction_rule: "ENSG00000160868" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.67" + - references: "PMID:1449532;PMID:9380738;PMID:9380738;PMID:1449532;PMID:1449532;PMID:9380738;PMID:9380738;PMID:1449532" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2047 + - id: "HMR_2047" - name: "" - metabolites: !!omap - m00986r: 1 @@ -137345,15 +137345,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160868 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.67 - - references: PMID:1449532;PMID:9380738;PMID:9380738;PMID:1449532;PMID:1449532;PMID:9380738;PMID:9380738;PMID:1449532 + - gene_reaction_rule: "ENSG00000160868" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.67" + - references: "PMID:1449532;PMID:9380738;PMID:9380738;PMID:1449532;PMID:1449532;PMID:9380738;PMID:9380738;PMID:1449532" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2048 + - id: "HMR_2048" - name: "" - metabolites: !!omap - m00986c: -1 @@ -137363,15 +137363,15 @@ - m02877c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000093010 or ENSG00000184154 or ENSG00000284844 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.6 - - references: PMID:9380738;PMID:11559542;PMID:11559542;PMID:11559542;PMID:11559542;PMID:9380738;PMID:9380738;PMID:9380738 + - gene_reaction_rule: "ENSG00000093010 or ENSG00000184154 or ENSG00000284844" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.6" + - references: "PMID:9380738;PMID:11559542;PMID:11559542;PMID:11559542;PMID:11559542;PMID:9380738;PMID:9380738;PMID:9380738" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2049 + - id: "HMR_2049" - name: "" - metabolites: !!omap - m01000c: 1 @@ -137383,15 +137383,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160868 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.67 - - references: PMID:9380738;PMID:1449532;PMID:9380738;PMID:9380738;PMID:9380738;PMID:1449532;PMID:1449532;PMID:1449532 + - gene_reaction_rule: "ENSG00000160868" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.67" + - references: "PMID:9380738;PMID:1449532;PMID:9380738;PMID:9380738;PMID:9380738;PMID:1449532;PMID:1449532;PMID:1449532" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2050 + - id: "HMR_2050" - name: "" - metabolites: !!omap - m01000l: 1 @@ -137403,15 +137403,15 @@ - m02630l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160868 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.67 - - references: PMID:9380738;PMID:1449532;PMID:9380738;PMID:9380738;PMID:9380738;PMID:1449532;PMID:1449532;PMID:1449532 + - gene_reaction_rule: "ENSG00000160868" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.67" + - references: "PMID:9380738;PMID:1449532;PMID:9380738;PMID:9380738;PMID:9380738;PMID:1449532;PMID:1449532;PMID:1449532" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2051 + - id: "HMR_2051" - name: "" - metabolites: !!omap - m01000r: 1 @@ -137423,15 +137423,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160868 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.67 - - references: PMID:9380738;PMID:1449532;PMID:9380738;PMID:9380738;PMID:9380738;PMID:1449532;PMID:1449532;PMID:1449532 + - gene_reaction_rule: "ENSG00000160868" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.67" + - references: "PMID:9380738;PMID:1449532;PMID:9380738;PMID:9380738;PMID:9380738;PMID:1449532;PMID:1449532;PMID:1449532" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2052 + - id: "HMR_2052" - name: "" - metabolites: !!omap - m01000c: -1 @@ -137441,15 +137441,15 @@ - m02877c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000093010 or ENSG00000184154 or ENSG00000284844 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.6 - - references: PMID:9380738;PMID:11559542;PMID:11559542;PMID:11559542;PMID:9380738;PMID:11559542;PMID:9380738;PMID:9380738 + - gene_reaction_rule: "ENSG00000093010 or ENSG00000184154 or ENSG00000284844" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.6" + - references: "PMID:9380738;PMID:11559542;PMID:11559542;PMID:11559542;PMID:9380738;PMID:11559542;PMID:9380738;PMID:9380738" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2053 + - id: "HMR_2053" - name: "" - metabolites: !!omap - m00400c: 1 @@ -137461,15 +137461,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: PMID:12038704;PMID:10337002 + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "PMID:12038704;PMID:10337002" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2054 + - id: "HMR_2054" - name: "" - metabolites: !!omap - m00400r: 1 @@ -137481,15 +137481,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: PMID:12038704;PMID:10337002 + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "PMID:12038704;PMID:10337002" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2055 + - id: "HMR_2055" - name: "" - metabolites: !!omap - m00650c: 1 @@ -137501,15 +137501,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160868 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.67 - - references: PMID:9380738;PMID:1449532;PMID:9380738;PMID:1449532;PMID:9380738;PMID:1449532;PMID:9380738;PMID:1449532 + - gene_reaction_rule: "ENSG00000160868" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.67" + - references: "PMID:9380738;PMID:1449532;PMID:9380738;PMID:1449532;PMID:9380738;PMID:1449532;PMID:9380738;PMID:1449532" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2056 + - id: "HMR_2056" - name: "" - metabolites: !!omap - m00650l: 1 @@ -137521,15 +137521,15 @@ - m02630l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160868 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.67 - - references: PMID:9380738;PMID:1449532;PMID:9380738;PMID:1449532;PMID:9380738;PMID:1449532;PMID:9380738;PMID:1449532 + - gene_reaction_rule: "ENSG00000160868" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.67" + - references: "PMID:9380738;PMID:1449532;PMID:9380738;PMID:1449532;PMID:9380738;PMID:1449532;PMID:9380738;PMID:1449532" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2057 + - id: "HMR_2057" - name: "" - metabolites: !!omap - m00650r: 1 @@ -137541,15 +137541,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160868 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.67 - - references: PMID:9380738;PMID:1449532;PMID:9380738;PMID:1449532;PMID:9380738;PMID:1449532;PMID:9380738;PMID:1449532 + - gene_reaction_rule: "ENSG00000160868" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.67" + - references: "PMID:9380738;PMID:1449532;PMID:9380738;PMID:1449532;PMID:9380738;PMID:1449532;PMID:9380738;PMID:1449532" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2058 + - id: "HMR_2058" - name: "" - metabolites: !!omap - m00650c: -1 @@ -137559,15 +137559,15 @@ - m02877c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000093010 or ENSG00000184154 or ENSG00000284844 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.6 - - references: PMID:11559542;PMID:9380738;PMID:11559542;PMID:9380738;PMID:9380738;PMID:11559542;PMID:11559542;PMID:9380738 + - gene_reaction_rule: "ENSG00000093010 or ENSG00000184154 or ENSG00000284844" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.6" + - references: "PMID:11559542;PMID:9380738;PMID:11559542;PMID:9380738;PMID:9380738;PMID:11559542;PMID:11559542;PMID:9380738" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2059 + - id: "HMR_2059" - name: "" - metabolites: !!omap - m00650r: -1 @@ -137577,15 +137577,15 @@ - m02877r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000093010 or ENSG00000184154 or ENSG00000284844 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.6 - - references: PMID:11559542;PMID:9380738;PMID:11559542;PMID:9380738;PMID:9380738;PMID:11559542;PMID:11559542;PMID:9380738 + - gene_reaction_rule: "ENSG00000093010 or ENSG00000184154 or ENSG00000284844" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.6" + - references: "PMID:11559542;PMID:9380738;PMID:11559542;PMID:9380738;PMID:9380738;PMID:11559542;PMID:11559542;PMID:9380738" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2060 + - id: "HMR_2060" - name: "" - metabolites: !!omap - m00645c: -1 @@ -137595,15 +137595,15 @@ - m02877c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000093010 or ENSG00000184154 or ENSG00000284844 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.6 - - references: PMID:9380738;PMID:9380738;PMID:11559542;PMID:11559542;PMID:9380738;PMID:9380738;PMID:11559542;PMID:11559542 + - gene_reaction_rule: "ENSG00000093010 or ENSG00000184154 or ENSG00000284844" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.6" + - references: "PMID:9380738;PMID:9380738;PMID:11559542;PMID:11559542;PMID:9380738;PMID:9380738;PMID:11559542;PMID:11559542" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2061 + - id: "HMR_2061" - name: "" - metabolites: !!omap - m00650c: -1 @@ -137613,15 +137613,15 @@ - m02041c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005381 or ENSG00000115705 or ENSG00000117592 or ENSG00000121053 or ENSG00000167419 - - rxnFrom: HMRdatabase - - eccodes: 1.11.1.7;1.11.1.8;1.11.2.2 - - references: + - gene_reaction_rule: "ENSG00000005381 or ENSG00000115705 or ENSG00000117592 or ENSG00000121053 or ENSG00000167419" + - rxnFrom: "HMRdatabase" + - eccodes: "1.11.1.7;1.11.1.8;1.11.2.2" + - references: "" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2062 + - id: "HMR_2062" - name: "" - metabolites: !!omap - m00650l: -1 @@ -137631,15 +137631,15 @@ - m02041l: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005381 or ENSG00000115705 or ENSG00000117592 or ENSG00000121053 or ENSG00000167419 - - rxnFrom: HMRdatabase - - eccodes: 1.11.1.7;1.11.1.8;1.11.2.2 - - references: + - gene_reaction_rule: "ENSG00000005381 or ENSG00000115705 or ENSG00000117592 or ENSG00000121053 or ENSG00000167419" + - rxnFrom: "HMRdatabase" + - eccodes: "1.11.1.7;1.11.1.8;1.11.2.2" + - references: "" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2063 + - id: "HMR_2063" - name: "" - metabolites: !!omap - m00650r: -1 @@ -137649,15 +137649,15 @@ - m02041r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005381 or ENSG00000115705 or ENSG00000117592 or ENSG00000121053 or ENSG00000167419 - - rxnFrom: HMRdatabase - - eccodes: 1.11.1.7;1.11.1.8;1.11.2.2 - - references: + - gene_reaction_rule: "ENSG00000005381 or ENSG00000115705 or ENSG00000117592 or ENSG00000121053 or ENSG00000167419" + - rxnFrom: "HMRdatabase" + - eccodes: "1.11.1.7;1.11.1.8;1.11.2.2" + - references: "" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2064 + - id: "HMR_2064" - name: "" - metabolites: !!omap - m01791c: 1 @@ -137667,15 +137667,15 @@ - m02631c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:9380738;PMID:9380738;PMID:9380738 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:9380738;PMID:9380738;PMID:9380738" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2068 + - id: "HMR_2068" - name: "" - metabolites: !!omap - m00651c: -1 @@ -137683,15 +137683,15 @@ - m02026c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: PMID:9380738;PMID:12119004;PMID:12119004;PMID:12119004;PMID:12119004;PMID:9380738;PMID:9380738;PMID:9380738 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "PMID:9380738;PMID:12119004;PMID:12119004;PMID:12119004;PMID:12119004;PMID:9380738;PMID:9380738;PMID:9380738" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2069 + - id: "HMR_2069" - name: "" - metabolites: !!omap - m00651m: -1 @@ -137699,15 +137699,15 @@ - m02026m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: PMID:9380738;PMID:12119004;PMID:12119004;PMID:12119004;PMID:12119004;PMID:9380738;PMID:9380738;PMID:9380738 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "PMID:9380738;PMID:12119004;PMID:12119004;PMID:12119004;PMID:12119004;PMID:9380738;PMID:9380738;PMID:9380738" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2070 + - id: "HMR_2070" - name: "" - metabolites: !!omap - m00651r: -1 @@ -137715,15 +137715,15 @@ - m02026r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: PMID:9380738;PMID:12119004;PMID:12119004;PMID:12119004;PMID:12119004;PMID:9380738;PMID:9380738;PMID:9380738 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "PMID:9380738;PMID:12119004;PMID:12119004;PMID:12119004;PMID:12119004;PMID:9380738;PMID:9380738;PMID:9380738" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2071 + - id: "HMR_2071" - name: "" - metabolites: !!omap - m00651p: -1 @@ -137731,15 +137731,15 @@ - m02026p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: PMID:9380738;PMID:12119004;PMID:12119004;PMID:12119004;PMID:12119004;PMID:9380738;PMID:9380738;PMID:9380738 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "PMID:9380738;PMID:12119004;PMID:12119004;PMID:12119004;PMID:12119004;PMID:9380738;PMID:9380738;PMID:9380738" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2072 + - id: "HMR_2072" - name: "" - metabolites: !!omap - m00652c: -1 @@ -137747,15 +137747,15 @@ - m02026c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: PMID:9380738 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "PMID:9380738" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2073 + - id: "HMR_2073" - name: "" - metabolites: !!omap - m00652m: -1 @@ -137763,15 +137763,15 @@ - m02026m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: PMID:9380738 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "PMID:9380738" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2074 + - id: "HMR_2074" - name: "" - metabolites: !!omap - m00652r: -1 @@ -137779,15 +137779,15 @@ - m02026r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: PMID:9380738 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "PMID:9380738" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2075 + - id: "HMR_2075" - name: "" - metabolites: !!omap - m00652p: -1 @@ -137795,15 +137795,15 @@ - m02026p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: PMID:9380738 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "PMID:9380738" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2076 + - id: "HMR_2076" - name: "" - metabolites: !!omap - m01000c: -1 @@ -137813,15 +137813,15 @@ - m02041c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005381 or ENSG00000115705 or ENSG00000117592 or ENSG00000121053 or ENSG00000167419 - - rxnFrom: HMRdatabase - - eccodes: 1.11.1.7;1.11.1.8;1.11.2.2 - - references: + - gene_reaction_rule: "ENSG00000005381 or ENSG00000115705 or ENSG00000117592 or ENSG00000121053 or ENSG00000167419" + - rxnFrom: "HMRdatabase" + - eccodes: "1.11.1.7;1.11.1.8;1.11.2.2" + - references: "" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2077 + - id: "HMR_2077" - name: "" - metabolites: !!omap - m01000l: -1 @@ -137831,15 +137831,15 @@ - m02041l: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005381 or ENSG00000115705 or ENSG00000117592 or ENSG00000121053 or ENSG00000167419 - - rxnFrom: HMRdatabase - - eccodes: 1.11.1.7;1.11.1.8;1.11.2.2 - - references: + - gene_reaction_rule: "ENSG00000005381 or ENSG00000115705 or ENSG00000117592 or ENSG00000121053 or ENSG00000167419" + - rxnFrom: "HMRdatabase" + - eccodes: "1.11.1.7;1.11.1.8;1.11.2.2" + - references: "" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2078 + - id: "HMR_2078" - name: "" - metabolites: !!omap - m01000r: -1 @@ -137849,15 +137849,15 @@ - m02041r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005381 or ENSG00000115705 or ENSG00000117592 or ENSG00000121053 or ENSG00000167419 - - rxnFrom: HMRdatabase - - eccodes: 1.11.1.7;1.11.1.8;1.11.2.2 - - references: + - gene_reaction_rule: "ENSG00000005381 or ENSG00000115705 or ENSG00000117592 or ENSG00000121053 or ENSG00000167419" + - rxnFrom: "HMRdatabase" + - eccodes: "1.11.1.7;1.11.1.8;1.11.2.2" + - references: "" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2079 + - id: "HMR_2079" - name: "" - metabolites: !!omap - m01793c: 1 @@ -137867,15 +137867,15 @@ - m02631c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:9380738;PMID:9380738;PMID:9380738 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:9380738;PMID:9380738;PMID:9380738" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2083 + - id: "HMR_2083" - name: "" - metabolites: !!omap - m01001c: -1 @@ -137883,15 +137883,15 @@ - m02026c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: PMID:9380738;PMID:12119004;PMID:12119004;PMID:12119004;PMID:9380738;PMID:12119004;PMID:9380738;PMID:9380738 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "PMID:9380738;PMID:12119004;PMID:12119004;PMID:12119004;PMID:9380738;PMID:12119004;PMID:9380738;PMID:9380738" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2084 + - id: "HMR_2084" - name: "" - metabolites: !!omap - m01001m: -1 @@ -137899,15 +137899,15 @@ - m02026m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: PMID:9380738;PMID:12119004;PMID:12119004;PMID:12119004;PMID:9380738;PMID:12119004;PMID:9380738;PMID:9380738 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "PMID:9380738;PMID:12119004;PMID:12119004;PMID:12119004;PMID:9380738;PMID:12119004;PMID:9380738;PMID:9380738" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2085 + - id: "HMR_2085" - name: "" - metabolites: !!omap - m01001r: -1 @@ -137915,15 +137915,15 @@ - m02026r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: PMID:9380738;PMID:12119004;PMID:12119004;PMID:12119004;PMID:9380738;PMID:12119004;PMID:9380738;PMID:9380738 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "PMID:9380738;PMID:12119004;PMID:12119004;PMID:12119004;PMID:9380738;PMID:12119004;PMID:9380738;PMID:9380738" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2086 + - id: "HMR_2086" - name: "" - metabolites: !!omap - m01001p: -1 @@ -137931,15 +137931,15 @@ - m02026p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: PMID:9380738;PMID:12119004;PMID:12119004;PMID:12119004;PMID:9380738;PMID:12119004;PMID:9380738;PMID:9380738 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "PMID:9380738;PMID:12119004;PMID:12119004;PMID:12119004;PMID:9380738;PMID:12119004;PMID:9380738;PMID:9380738" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2088 + - id: "HMR_2088" - name: "" - metabolites: !!omap - m00413c: -1 @@ -137948,15 +137948,15 @@ - m02041c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005381 or ENSG00000115705 or ENSG00000117592 or ENSG00000121053 or ENSG00000167419 - - rxnFrom: HMRdatabase - - eccodes: 1.11.1.7;1.11.1.8;1.11.2.2 - - references: + - gene_reaction_rule: "ENSG00000005381 or ENSG00000115705 or ENSG00000117592 or ENSG00000121053 or ENSG00000167419" + - rxnFrom: "HMRdatabase" + - eccodes: "1.11.1.7;1.11.1.8;1.11.2.2" + - references: "" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2089 + - id: "HMR_2089" - name: "" - metabolites: !!omap - m00413l: -1 @@ -137965,15 +137965,15 @@ - m02041l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005381 or ENSG00000115705 or ENSG00000117592 or ENSG00000121053 or ENSG00000167419 - - rxnFrom: HMRdatabase - - eccodes: 1.11.1.7;1.11.1.8;1.11.2.2 - - references: + - gene_reaction_rule: "ENSG00000005381 or ENSG00000115705 or ENSG00000117592 or ENSG00000121053 or ENSG00000167419" + - rxnFrom: "HMRdatabase" + - eccodes: "1.11.1.7;1.11.1.8;1.11.2.2" + - references: "" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2091 + - id: "HMR_2091" - name: "" - metabolites: !!omap - m00412c: 1 @@ -137982,15 +137982,15 @@ - m02631c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:9380738;PMID:9380738;PMID:9380738 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:9380738;PMID:9380738;PMID:9380738" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2095 + - id: "HMR_2095" - name: "" - metabolites: !!omap - m00412c: -1 @@ -137998,15 +137998,15 @@ - m02026c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: PMID:12119004;PMID:9380738;PMID:9380738;PMID:12119004;PMID:9380738;PMID:12119004;PMID:9380738;PMID:12119004 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "PMID:12119004;PMID:9380738;PMID:9380738;PMID:12119004;PMID:9380738;PMID:12119004;PMID:9380738;PMID:12119004" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2096 + - id: "HMR_2096" - name: "" - metabolites: !!omap - m00412m: -1 @@ -138014,15 +138014,15 @@ - m02026m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: PMID:12119004;PMID:9380738;PMID:9380738;PMID:12119004;PMID:9380738;PMID:12119004;PMID:9380738;PMID:12119004 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "PMID:12119004;PMID:9380738;PMID:9380738;PMID:12119004;PMID:9380738;PMID:12119004;PMID:9380738;PMID:12119004" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2097 + - id: "HMR_2097" - name: "" - metabolites: !!omap - m00412r: -1 @@ -138030,15 +138030,15 @@ - m02026r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: PMID:12119004;PMID:9380738;PMID:9380738;PMID:12119004;PMID:9380738;PMID:12119004;PMID:9380738;PMID:12119004 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "PMID:12119004;PMID:9380738;PMID:9380738;PMID:12119004;PMID:9380738;PMID:12119004;PMID:9380738;PMID:12119004" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2098 + - id: "HMR_2098" - name: "" - metabolites: !!omap - m00412p: -1 @@ -138046,15 +138046,15 @@ - m02026p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: PMID:12119004;PMID:9380738;PMID:9380738;PMID:12119004;PMID:9380738;PMID:12119004;PMID:9380738;PMID:12119004 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "PMID:12119004;PMID:9380738;PMID:9380738;PMID:12119004;PMID:9380738;PMID:12119004;PMID:9380738;PMID:12119004" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2099 + - id: "HMR_2099" - name: "" - metabolites: !!omap - m00411c: -1 @@ -138064,15 +138064,15 @@ - m02041c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005381 or ENSG00000115705 or ENSG00000117592 or ENSG00000121053 or ENSG00000167419 - - rxnFrom: HMRdatabase - - eccodes: 1.11.1.7;1.11.1.8;1.11.2.2 - - references: + - gene_reaction_rule: "ENSG00000005381 or ENSG00000115705 or ENSG00000117592 or ENSG00000121053 or ENSG00000167419" + - rxnFrom: "HMRdatabase" + - eccodes: "1.11.1.7;1.11.1.8;1.11.2.2" + - references: "" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2100 + - id: "HMR_2100" - name: "" - metabolites: !!omap - m00411l: -1 @@ -138082,15 +138082,15 @@ - m02041l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005381 or ENSG00000115705 or ENSG00000117592 or ENSG00000121053 or ENSG00000167419 - - rxnFrom: HMRdatabase - - eccodes: 1.11.1.7;1.11.1.8;1.11.2.2 - - references: + - gene_reaction_rule: "ENSG00000005381 or ENSG00000115705 or ENSG00000117592 or ENSG00000121053 or ENSG00000167419" + - rxnFrom: "HMRdatabase" + - eccodes: "1.11.1.7;1.11.1.8;1.11.2.2" + - references: "" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2102 + - id: "HMR_2102" - name: "" - metabolites: !!omap - m00410c: 1 @@ -138100,15 +138100,15 @@ - m02631c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:9380738;PMID:9380738;PMID:9380738 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:9380738;PMID:9380738;PMID:9380738" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2106 + - id: "HMR_2106" - name: "" - metabolites: !!omap - m00410c: -1 @@ -138116,15 +138116,15 @@ - m02026c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: PMID:9705753 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "PMID:9705753" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2107 + - id: "HMR_2107" - name: "" - metabolites: !!omap - m00410m: -1 @@ -138132,15 +138132,15 @@ - m02026m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: PMID:9705753 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "PMID:9705753" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2108 + - id: "HMR_2108" - name: "" - metabolites: !!omap - m00410r: -1 @@ -138148,15 +138148,15 @@ - m02026r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: PMID:9705753 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "PMID:9705753" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2109 + - id: "HMR_2109" - name: "" - metabolites: !!omap - m00410p: -1 @@ -138164,15 +138164,15 @@ - m02026p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: PMID:9705753 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "PMID:9705753" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2110 + - id: "HMR_2110" - name: "" - metabolites: !!omap - m00410c: -1 @@ -138180,15 +138180,15 @@ - m02026c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: PMID:9380738 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "PMID:9380738" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2111 + - id: "HMR_2111" - name: "" - metabolites: !!omap - m00410m: -1 @@ -138196,15 +138196,15 @@ - m02026m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: PMID:9380738 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "PMID:9380738" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2112 + - id: "HMR_2112" - name: "" - metabolites: !!omap - m00410r: -1 @@ -138212,15 +138212,15 @@ - m02026r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: PMID:9380738 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "PMID:9380738" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_2113 + - id: "HMR_2113" - name: "" - metabolites: !!omap - m00410p: -1 @@ -138228,15 +138228,15 @@ - m02026p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: PMID:9380738 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "PMID:9380738" - subsystem: - - Estrogen metabolism + - "Estrogen metabolism" - confidence_score: 0 - !!omap - - id: HMR_3537 + - id: "HMR_3537" - name: "" - metabolites: !!omap - m01452l: 0.0001 @@ -138301,15 +138301,15 @@ - m10004l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3538 + - id: "HMR_3538" - name: "" - metabolites: !!omap - m01450l: 1 @@ -138319,15 +138319,15 @@ - m02344l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3539 + - id: "HMR_3539" - name: "" - metabolites: !!omap - m01450l: 1 @@ -138337,15 +138337,15 @@ - m03051l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3540 + - id: "HMR_3540" - name: "" - metabolites: !!omap - m01450l: 1 @@ -138355,15 +138355,15 @@ - m02494l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3541 + - id: "HMR_3541" - name: "" - metabolites: !!omap - m00128l: 1 @@ -138373,15 +138373,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3542 + - id: "HMR_3542" - name: "" - metabolites: !!omap - m00117l: 1 @@ -138391,15 +138391,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3543 + - id: "HMR_3543" - name: "" - metabolites: !!omap - m01450l: 1 @@ -138409,15 +138409,15 @@ - m02745l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3544 + - id: "HMR_3544" - name: "" - metabolites: !!omap - m01450l: 1 @@ -138427,15 +138427,15 @@ - m02690l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3545 + - id: "HMR_3545" - name: "" - metabolites: !!omap - m01450l: 1 @@ -138445,15 +138445,15 @@ - m02674l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: PMID:11230747;PMID:8112342 + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "PMID:11230747;PMID:8112342" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3546 + - id: "HMR_3546" - name: "" - metabolites: !!omap - m01197l: 1 @@ -138463,15 +138463,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3547 + - id: "HMR_3547" - name: "" - metabolites: !!omap - m01450l: 1 @@ -138481,15 +138481,15 @@ - m02675l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3548 + - id: "HMR_3548" - name: "" - metabolites: !!omap - m01450l: 1 @@ -138499,15 +138499,15 @@ - m02456l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3549 + - id: "HMR_3549" - name: "" - metabolites: !!omap - m00003l: 1 @@ -138517,15 +138517,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3550 + - id: "HMR_3550" - name: "" - metabolites: !!omap - m01238l: 1 @@ -138535,15 +138535,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3551 + - id: "HMR_3551" - name: "" - metabolites: !!omap - m01450l: 1 @@ -138553,15 +138553,15 @@ - m02938l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: PMID:11230747;PMID:8112342 + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "PMID:11230747;PMID:8112342" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3552 + - id: "HMR_3552" - name: "" - metabolites: !!omap - m01450l: 1 @@ -138571,15 +138571,15 @@ - m02646l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: PMID:11230747;PMID:8112342 + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "PMID:11230747;PMID:8112342" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3553 + - id: "HMR_3553" - name: "" - metabolites: !!omap - m00019l: 1 @@ -138589,15 +138589,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3554 + - id: "HMR_3554" - name: "" - metabolites: !!omap - m01450l: 1 @@ -138607,15 +138607,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3555 + - id: "HMR_3555" - name: "" - metabolites: !!omap - m01450l: 1 @@ -138625,15 +138625,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3556 + - id: "HMR_3556" - name: "" - metabolites: !!omap - m00115l: 1 @@ -138643,15 +138643,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3557 + - id: "HMR_3557" - name: "" - metabolites: !!omap - m00104l: 1 @@ -138661,15 +138661,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3558 + - id: "HMR_3558" - name: "" - metabolites: !!omap - m01450l: 1 @@ -138679,15 +138679,15 @@ - m02613l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3559 + - id: "HMR_3559" - name: "" - metabolites: !!omap - m01450l: 1 @@ -138697,15 +138697,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3560 + - id: "HMR_3560" - name: "" - metabolites: !!omap - m00017l: 1 @@ -138715,15 +138715,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3561 + - id: "HMR_3561" - name: "" - metabolites: !!omap - m01450l: 1 @@ -138733,15 +138733,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3562 + - id: "HMR_3562" - name: "" - metabolites: !!omap - m01235l: 1 @@ -138751,15 +138751,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3563 + - id: "HMR_3563" - name: "" - metabolites: !!omap - m01207l: 1 @@ -138769,15 +138769,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3564 + - id: "HMR_3564" - name: "" - metabolites: !!omap - m01450l: 1 @@ -138787,15 +138787,15 @@ - m02457l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3565 + - id: "HMR_3565" - name: "" - metabolites: !!omap - m01450l: 1 @@ -138805,15 +138805,15 @@ - m02053l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3566 + - id: "HMR_3566" - name: "" - metabolites: !!omap - m01373l: 1 @@ -138823,15 +138823,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3567 + - id: "HMR_3567" - name: "" - metabolites: !!omap - m01450l: 1 @@ -138841,15 +138841,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3568 + - id: "HMR_3568" - name: "" - metabolites: !!omap - m01450l: 1 @@ -138859,15 +138859,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3569 + - id: "HMR_3569" - name: "" - metabolites: !!omap - m01450l: 1 @@ -138877,15 +138877,15 @@ - m03045l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3570 + - id: "HMR_3570" - name: "" - metabolites: !!omap - m01450l: 1 @@ -138895,15 +138895,15 @@ - m02385l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3571 + - id: "HMR_3571" - name: "" - metabolites: !!omap - m01450l: 1 @@ -138913,15 +138913,15 @@ - m02564l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3572 + - id: "HMR_3572" - name: "" - metabolites: !!omap - m01432l: 1 @@ -138931,15 +138931,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3573 + - id: "HMR_3573" - name: "" - metabolites: !!omap - m01450l: 1 @@ -138949,15 +138949,15 @@ - m03153l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3574 + - id: "HMR_3574" - name: "" - metabolites: !!omap - m01450l: 1 @@ -138967,15 +138967,15 @@ - m02389l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3575 + - id: "HMR_3575" - name: "" - metabolites: !!omap - m01450l: 1 @@ -138985,15 +138985,15 @@ - m02939l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3576 + - id: "HMR_3576" - name: "" - metabolites: !!omap - m01450l: 1 @@ -139003,15 +139003,15 @@ - m02648l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3577 + - id: "HMR_3577" - name: "" - metabolites: !!omap - m01450l: 1 @@ -139021,15 +139021,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3578 + - id: "HMR_3578" - name: "" - metabolites: !!omap - m01450l: 1 @@ -139039,15 +139039,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3579 + - id: "HMR_3579" - name: "" - metabolites: !!omap - m00135l: 1 @@ -139057,15 +139057,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3580 + - id: "HMR_3580" - name: "" - metabolites: !!omap - m00114l: 1 @@ -139075,15 +139075,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3581 + - id: "HMR_3581" - name: "" - metabolites: !!omap - m01450l: 1 @@ -139093,15 +139093,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3582 + - id: "HMR_3582" - name: "" - metabolites: !!omap - m00010l: 1 @@ -139111,15 +139111,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3583 + - id: "HMR_3583" - name: "" - metabolites: !!omap - m00341l: 1 @@ -139129,15 +139129,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3584 + - id: "HMR_3584" - name: "" - metabolites: !!omap - m00260l: 1 @@ -139147,15 +139147,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3585 + - id: "HMR_3585" - name: "" - metabolites: !!omap - m00315l: 1 @@ -139165,15 +139165,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3586 + - id: "HMR_3586" - name: "" - metabolites: !!omap - m01450l: 1 @@ -139183,15 +139183,15 @@ - m02387l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: PMID:11230747;PMID:8112342 + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "PMID:11230747;PMID:8112342" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3587 + - id: "HMR_3587" - name: "" - metabolites: !!omap - m01450l: 1 @@ -139201,15 +139201,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3588 + - id: "HMR_3588" - name: "" - metabolites: !!omap - m01450l: 1 @@ -139219,15 +139219,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3589 + - id: "HMR_3589" - name: "" - metabolites: !!omap - m01362l: 1 @@ -139237,15 +139237,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: PMID:11230747;PMID:8112342 + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "PMID:11230747;PMID:8112342" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3590 + - id: "HMR_3590" - name: "" - metabolites: !!omap - m01291l: 1 @@ -139255,15 +139255,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3591 + - id: "HMR_3591" - name: "" - metabolites: !!omap - m00132l: 1 @@ -139273,15 +139273,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3592 + - id: "HMR_3592" - name: "" - metabolites: !!omap - m00111l: 1 @@ -139291,15 +139291,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3593 + - id: "HMR_3593" - name: "" - metabolites: !!omap - m00094l: 1 @@ -139309,15 +139309,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3594 + - id: "HMR_3594" - name: "" - metabolites: !!omap - m00008l: 1 @@ -139327,15 +139327,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3595 + - id: "HMR_3595" - name: "" - metabolites: !!omap - m00021l: 1 @@ -139345,15 +139345,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3596 + - id: "HMR_3596" - name: "" - metabolites: !!omap - m00265l: 1 @@ -139363,15 +139363,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3622 + - id: "HMR_3622" - name: "" - metabolites: !!omap - m01452r: 0.0001 @@ -139436,15 +139436,15 @@ - m10004r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3625 + - id: "HMR_3625" - name: "" - metabolites: !!omap - m01450r: -1 @@ -139453,15 +139453,15 @@ - m02345r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3626 + - id: "HMR_3626" - name: "" - metabolites: !!omap - m01450r: -1 @@ -139470,15 +139470,15 @@ - m03050r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3627 + - id: "HMR_3627" - name: "" - metabolites: !!omap - m01450r: -1 @@ -139487,15 +139487,15 @@ - m02495r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3628 + - id: "HMR_3628" - name: "" - metabolites: !!omap - m00129r: -1 @@ -139504,15 +139504,15 @@ - m01597r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3629 + - id: "HMR_3629" - name: "" - metabolites: !!omap - m00118r: -1 @@ -139521,15 +139521,15 @@ - m01597r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3630 + - id: "HMR_3630" - name: "" - metabolites: !!omap - m01141r: -1 @@ -139538,15 +139538,15 @@ - m01597r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3631 + - id: "HMR_3631" - name: "" - metabolites: !!omap - m01450r: -1 @@ -139555,15 +139555,15 @@ - m02689r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3632 + - id: "HMR_3632" - name: "" - metabolites: !!omap - m01450r: -1 @@ -139572,15 +139572,15 @@ - m02678r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: PMID:2760547;PMID:7822296;PMID:9242919 + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "PMID:2760547;PMID:7822296;PMID:9242919" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3633 + - id: "HMR_3633" - name: "" - metabolites: !!omap - m01191r: -1 @@ -139589,15 +139589,15 @@ - m01597r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3634 + - id: "HMR_3634" - name: "" - metabolites: !!omap - m01450r: -1 @@ -139606,15 +139606,15 @@ - m02677r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: PMID:2760547;PMID:7822296;PMID:9242919 + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "PMID:2760547;PMID:7822296;PMID:9242919" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3635 + - id: "HMR_3635" - name: "" - metabolites: !!omap - m01450r: -1 @@ -139623,15 +139623,15 @@ - m02101r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3636 + - id: "HMR_3636" - name: "" - metabolites: !!omap - m00004r: -1 @@ -139640,15 +139640,15 @@ - m01597r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3637 + - id: "HMR_3637" - name: "" - metabolites: !!omap - m01237r: -1 @@ -139657,15 +139657,15 @@ - m01597r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3638 + - id: "HMR_3638" - name: "" - metabolites: !!omap - m01450r: -1 @@ -139674,15 +139674,15 @@ - m02941r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: PMID:2760547;PMID:7822296;PMID:9242919 + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "PMID:2760547;PMID:7822296;PMID:9242919" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3639 + - id: "HMR_3639" - name: "" - metabolites: !!omap - m00020r: -1 @@ -139691,15 +139691,15 @@ - m01597r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3640 + - id: "HMR_3640" - name: "" - metabolites: !!omap - m01450r: -1 @@ -139708,15 +139708,15 @@ - m01597r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3641 + - id: "HMR_3641" - name: "" - metabolites: !!omap - m01450r: -1 @@ -139725,15 +139725,15 @@ - m02647r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: PMID:2760547;PMID:7822296;PMID:9242919 + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "PMID:2760547;PMID:7822296;PMID:9242919" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3642 + - id: "HMR_3642" - name: "" - metabolites: !!omap - m00127r: -1 @@ -139742,15 +139742,15 @@ - m01597r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3643 + - id: "HMR_3643" - name: "" - metabolites: !!omap - m00116r: -1 @@ -139759,15 +139759,15 @@ - m01597r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3644 + - id: "HMR_3644" - name: "" - metabolites: !!omap - m00106r: -1 @@ -139776,15 +139776,15 @@ - m01597r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3645 + - id: "HMR_3645" - name: "" - metabolites: !!omap - m01450r: -1 @@ -139793,15 +139793,15 @@ - m02612r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3646 + - id: "HMR_3646" - name: "" - metabolites: !!omap - m01450r: -1 @@ -139810,15 +139810,15 @@ - m01773r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3647 + - id: "HMR_3647" - name: "" - metabolites: !!omap - m00018r: -1 @@ -139827,15 +139827,15 @@ - m01597r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3648 + - id: "HMR_3648" - name: "" - metabolites: !!omap - m00007r: -1 @@ -139844,15 +139844,15 @@ - m01597r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3649 + - id: "HMR_3649" - name: "" - metabolites: !!omap - m01236r: -1 @@ -139861,15 +139861,15 @@ - m01597r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3650 + - id: "HMR_3650" - name: "" - metabolites: !!omap - m00123r: -1 @@ -139878,15 +139878,15 @@ - m01597r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3651 + - id: "HMR_3651" - name: "" - metabolites: !!omap - m00101r: -1 @@ -139895,15 +139895,15 @@ - m01597r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3652 + - id: "HMR_3652" - name: "" - metabolites: !!omap - m01450r: -1 @@ -139912,15 +139912,15 @@ - m02052r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3653 + - id: "HMR_3653" - name: "" - metabolites: !!omap - m01450r: -1 @@ -139929,15 +139929,15 @@ - m01725r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3654 + - id: "HMR_3654" - name: "" - metabolites: !!omap - m00016r: -1 @@ -139946,15 +139946,15 @@ - m01597r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3655 + - id: "HMR_3655" - name: "" - metabolites: !!omap - m00006r: -1 @@ -139963,15 +139963,15 @@ - m01597r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3656 + - id: "HMR_3656" - name: "" - metabolites: !!omap - m01450r: -1 @@ -139980,15 +139980,15 @@ - m03047r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3657 + - id: "HMR_3657" - name: "" - metabolites: !!omap - m01450r: -1 @@ -139997,15 +139997,15 @@ - m02971r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3658 + - id: "HMR_3658" - name: "" - metabolites: !!omap - m00025r: -1 @@ -140014,15 +140014,15 @@ - m01597r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3659 + - id: "HMR_3659" - name: "" - metabolites: !!omap - m01450r: -1 @@ -140031,15 +140031,15 @@ - m02110r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3660 + - id: "HMR_3660" - name: "" - metabolites: !!omap - m01450r: -1 @@ -140048,15 +140048,15 @@ - m02112r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3661 + - id: "HMR_3661" - name: "" - metabolites: !!omap - m01450r: -1 @@ -140065,15 +140065,15 @@ - m02390r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: PMID:2760547;PMID:7822296;PMID:9242919 + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "PMID:2760547;PMID:7822296;PMID:9242919" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3662 + - id: "HMR_3662" - name: "" - metabolites: !!omap - m00108r: -1 @@ -140082,15 +140082,15 @@ - m01597r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3663 + - id: "HMR_3663" - name: "" - metabolites: !!omap - m00125r: -1 @@ -140099,15 +140099,15 @@ - m01597r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3664 + - id: "HMR_3664" - name: "" - metabolites: !!omap - m00103r: -1 @@ -140116,15 +140116,15 @@ - m01597r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3665 + - id: "HMR_3665" - name: "" - metabolites: !!omap - m00121r: -1 @@ -140133,15 +140133,15 @@ - m01597r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3666 + - id: "HMR_3666" - name: "" - metabolites: !!omap - m00134r: -1 @@ -140150,15 +140150,15 @@ - m01597r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3667 + - id: "HMR_3667" - name: "" - metabolites: !!omap - m00113r: -1 @@ -140167,15 +140167,15 @@ - m01597r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3668 + - id: "HMR_3668" - name: "" - metabolites: !!omap - m00095r: -1 @@ -140184,15 +140184,15 @@ - m01597r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3669 + - id: "HMR_3669" - name: "" - metabolites: !!omap - m00012r: -1 @@ -140201,15 +140201,15 @@ - m01597r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3670 + - id: "HMR_3670" - name: "" - metabolites: !!omap - m00343r: -1 @@ -140218,15 +140218,15 @@ - m01597r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3671 + - id: "HMR_3671" - name: "" - metabolites: !!omap - m00262r: -1 @@ -140235,15 +140235,15 @@ - m01597r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3672 + - id: "HMR_3672" - name: "" - metabolites: !!omap - m00317r: -1 @@ -140252,15 +140252,15 @@ - m01597r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3673 + - id: "HMR_3673" - name: "" - metabolites: !!omap - m01450r: -1 @@ -140269,15 +140269,15 @@ - m02391r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: PMID:2760547;PMID:7822296;PMID:9242919 + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "PMID:2760547;PMID:7822296;PMID:9242919" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3674 + - id: "HMR_3674" - name: "" - metabolites: !!omap - m01450r: -1 @@ -140286,15 +140286,15 @@ - m01934r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: PMID:2760547;PMID:7822296;PMID:9242919 + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "PMID:2760547;PMID:7822296;PMID:9242919" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3675 + - id: "HMR_3675" - name: "" - metabolites: !!omap - m01450r: -1 @@ -140303,15 +140303,15 @@ - m01697r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3676 + - id: "HMR_3676" - name: "" - metabolites: !!omap - m01364r: -1 @@ -140320,15 +140320,15 @@ - m01597r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: PMID:2760547;PMID:7822296;PMID:9242919 + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "PMID:2760547;PMID:7822296;PMID:9242919" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3677 + - id: "HMR_3677" - name: "" - metabolites: !!omap - m00119r: -1 @@ -140337,15 +140337,15 @@ - m01597r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3678 + - id: "HMR_3678" - name: "" - metabolites: !!omap - m00131r: -1 @@ -140354,15 +140354,15 @@ - m01597r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3679 + - id: "HMR_3679" - name: "" - metabolites: !!omap - m00110r: -1 @@ -140371,15 +140371,15 @@ - m01597r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3680 + - id: "HMR_3680" - name: "" - metabolites: !!omap - m00093r: -1 @@ -140388,15 +140388,15 @@ - m01597r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3681 + - id: "HMR_3681" - name: "" - metabolites: !!omap - m00009r: -1 @@ -140405,15 +140405,15 @@ - m01597r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3682 + - id: "HMR_3682" - name: "" - metabolites: !!omap - m00023r: -1 @@ -140422,15 +140422,15 @@ - m01597r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3683 + - id: "HMR_3683" - name: "" - metabolites: !!omap - m00264r: -1 @@ -140439,15 +140439,15 @@ - m01597r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.26 - - references: + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.26" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3684 + - id: "HMR_3684" - name: "" - metabolites: !!omap - m01450r: 1 @@ -140457,15 +140457,15 @@ - m02344r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3685 + - id: "HMR_3685" - name: "" - metabolites: !!omap - m01450r: 1 @@ -140475,15 +140475,15 @@ - m03051r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3686 + - id: "HMR_3686" - name: "" - metabolites: !!omap - m01450r: 1 @@ -140493,15 +140493,15 @@ - m02494r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3687 + - id: "HMR_3687" - name: "" - metabolites: !!omap - m00128r: 1 @@ -140511,15 +140511,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3688 + - id: "HMR_3688" - name: "" - metabolites: !!omap - m00117r: 1 @@ -140529,15 +140529,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3689 + - id: "HMR_3689" - name: "" - metabolites: !!omap - m01450r: 1 @@ -140547,15 +140547,15 @@ - m02745r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3690 + - id: "HMR_3690" - name: "" - metabolites: !!omap - m01450r: 1 @@ -140565,15 +140565,15 @@ - m02690r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3691 + - id: "HMR_3691" - name: "" - metabolites: !!omap - m01450r: 1 @@ -140583,15 +140583,15 @@ - m02674r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: PMID:11230747;PMID:8112342 + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "PMID:11230747;PMID:8112342" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3692 + - id: "HMR_3692" - name: "" - metabolites: !!omap - m01197r: 1 @@ -140601,15 +140601,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3693 + - id: "HMR_3693" - name: "" - metabolites: !!omap - m01450r: 1 @@ -140619,15 +140619,15 @@ - m02675r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: PMID:11230747;PMID:8112342 + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "PMID:11230747;PMID:8112342" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3694 + - id: "HMR_3694" - name: "" - metabolites: !!omap - m01450r: 1 @@ -140637,15 +140637,15 @@ - m02456r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3695 + - id: "HMR_3695" - name: "" - metabolites: !!omap - m00003r: 1 @@ -140655,15 +140655,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3696 + - id: "HMR_3696" - name: "" - metabolites: !!omap - m01238r: 1 @@ -140673,15 +140673,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3697 + - id: "HMR_3697" - name: "" - metabolites: !!omap - m01450r: 1 @@ -140691,15 +140691,15 @@ - m02938r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: PMID:11230747;PMID:8112342 + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "PMID:11230747;PMID:8112342" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3698 + - id: "HMR_3698" - name: "" - metabolites: !!omap - m00019r: 1 @@ -140709,15 +140709,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3699 + - id: "HMR_3699" - name: "" - metabolites: !!omap - m01450r: 1 @@ -140727,15 +140727,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3700 + - id: "HMR_3700" - name: "" - metabolites: !!omap - m01450r: 1 @@ -140745,15 +140745,15 @@ - m02646r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: PMID:11230747;PMID:8112342 + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "PMID:11230747;PMID:8112342" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3701 + - id: "HMR_3701" - name: "" - metabolites: !!omap - m01450r: 1 @@ -140763,15 +140763,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3702 + - id: "HMR_3702" - name: "" - metabolites: !!omap - m00115r: 1 @@ -140781,15 +140781,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3703 + - id: "HMR_3703" - name: "" - metabolites: !!omap - m00104r: 1 @@ -140799,15 +140799,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3704 + - id: "HMR_3704" - name: "" - metabolites: !!omap - m01450r: 1 @@ -140817,15 +140817,15 @@ - m02613r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3705 + - id: "HMR_3705" - name: "" - metabolites: !!omap - m01450r: 1 @@ -140835,15 +140835,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3706 + - id: "HMR_3706" - name: "" - metabolites: !!omap - m00017r: 1 @@ -140853,15 +140853,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3707 + - id: "HMR_3707" - name: "" - metabolites: !!omap - m01450r: 1 @@ -140871,15 +140871,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3708 + - id: "HMR_3708" - name: "" - metabolites: !!omap - m01235r: 1 @@ -140889,15 +140889,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3709 + - id: "HMR_3709" - name: "" - metabolites: !!omap - m01207r: 1 @@ -140907,15 +140907,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3710 + - id: "HMR_3710" - name: "" - metabolites: !!omap - m01450r: 1 @@ -140925,15 +140925,15 @@ - m02457r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3711 + - id: "HMR_3711" - name: "" - metabolites: !!omap - m01450r: 1 @@ -140943,15 +140943,15 @@ - m02053r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3712 + - id: "HMR_3712" - name: "" - metabolites: !!omap - m01373r: 1 @@ -140961,15 +140961,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3713 + - id: "HMR_3713" - name: "" - metabolites: !!omap - m01450r: 1 @@ -140979,15 +140979,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3714 + - id: "HMR_3714" - name: "" - metabolites: !!omap - m01450r: 1 @@ -140997,15 +140997,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3715 + - id: "HMR_3715" - name: "" - metabolites: !!omap - m01450r: 1 @@ -141015,15 +141015,15 @@ - m03045r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3716 + - id: "HMR_3716" - name: "" - metabolites: !!omap - m01450r: 1 @@ -141033,15 +141033,15 @@ - m02385r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3717 + - id: "HMR_3717" - name: "" - metabolites: !!omap - m01450r: 1 @@ -141051,15 +141051,15 @@ - m02564r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3718 + - id: "HMR_3718" - name: "" - metabolites: !!omap - m01432r: 1 @@ -141069,15 +141069,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3719 + - id: "HMR_3719" - name: "" - metabolites: !!omap - m01450r: 1 @@ -141087,15 +141087,15 @@ - m03153r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3720 + - id: "HMR_3720" - name: "" - metabolites: !!omap - m01450r: 1 @@ -141105,15 +141105,15 @@ - m02389r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: PMID:11230747;PMID:8112342 + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "PMID:11230747;PMID:8112342" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3721 + - id: "HMR_3721" - name: "" - metabolites: !!omap - m01450r: 1 @@ -141123,15 +141123,15 @@ - m02939r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3722 + - id: "HMR_3722" - name: "" - metabolites: !!omap - m01450r: 1 @@ -141141,15 +141141,15 @@ - m02648r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3723 + - id: "HMR_3723" - name: "" - metabolites: !!omap - m01450r: 1 @@ -141159,15 +141159,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3724 + - id: "HMR_3724" - name: "" - metabolites: !!omap - m01450r: 1 @@ -141177,15 +141177,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3725 + - id: "HMR_3725" - name: "" - metabolites: !!omap - m00135r: 1 @@ -141195,15 +141195,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3726 + - id: "HMR_3726" - name: "" - metabolites: !!omap - m00114r: 1 @@ -141213,15 +141213,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3727 + - id: "HMR_3727" - name: "" - metabolites: !!omap - m01450r: 1 @@ -141231,15 +141231,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3728 + - id: "HMR_3728" - name: "" - metabolites: !!omap - m00010r: 1 @@ -141249,15 +141249,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3729 + - id: "HMR_3729" - name: "" - metabolites: !!omap - m00341r: 1 @@ -141267,15 +141267,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3730 + - id: "HMR_3730" - name: "" - metabolites: !!omap - m00260r: 1 @@ -141285,15 +141285,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3731 + - id: "HMR_3731" - name: "" - metabolites: !!omap - m00315r: 1 @@ -141303,15 +141303,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3732 + - id: "HMR_3732" - name: "" - metabolites: !!omap - m01450r: 1 @@ -141321,15 +141321,15 @@ - m02387r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: PMID:11230747;PMID:8112342 + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "PMID:11230747;PMID:8112342" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3733 + - id: "HMR_3733" - name: "" - metabolites: !!omap - m01450r: 1 @@ -141339,15 +141339,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: PMID:11230747;PMID:8112342 + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "PMID:11230747;PMID:8112342" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3734 + - id: "HMR_3734" - name: "" - metabolites: !!omap - m01450r: 1 @@ -141357,15 +141357,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3735 + - id: "HMR_3735" - name: "" - metabolites: !!omap - m01362r: 1 @@ -141375,15 +141375,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: PMID:11230747;PMID:8112342 + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "PMID:11230747;PMID:8112342" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3736 + - id: "HMR_3736" - name: "" - metabolites: !!omap - m01291r: 1 @@ -141393,15 +141393,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3737 + - id: "HMR_3737" - name: "" - metabolites: !!omap - m00132r: 1 @@ -141411,15 +141411,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3738 + - id: "HMR_3738" - name: "" - metabolites: !!omap - m00111r: 1 @@ -141429,15 +141429,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3739 + - id: "HMR_3739" - name: "" - metabolites: !!omap - m00094r: 1 @@ -141447,15 +141447,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3740 + - id: "HMR_3740" - name: "" - metabolites: !!omap - m00008r: 1 @@ -141465,15 +141465,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3741 + - id: "HMR_3741" - name: "" - metabolites: !!omap - m00021r: 1 @@ -141483,15 +141483,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_3742 + - id: "HMR_3742" - name: "" - metabolites: !!omap - m00265r: 1 @@ -141501,15 +141501,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "" - subsystem: - - Formation and hydrolysis of cholesterol esters + - "Formation and hydrolysis of cholesterol esters" - confidence_score: 0 - !!omap - - id: HMR_0715 + - id: "HMR_0715" - name: "" - metabolites: !!omap - m01699c: -1 @@ -141521,15 +141521,15 @@ - m02748c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000143753 or ENSG00000168350 - - rxnFrom: HMRdatabase - - eccodes: 1.14.-.- - - references: PMID:15063729 + - gene_reaction_rule: "ENSG00000143753 or ENSG00000168350" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.-.-" + - references: "PMID:15063729" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0716 + - id: "HMR_0716" - name: "" - metabolites: !!omap - m02040c: -1 @@ -141538,15 +141538,15 @@ - m10005c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000078124 or ENSG00000104763 or ENSG00000167769 or ENSG00000177076 or ENSG00000188611 - - rxnFrom: HMRdatabase - - eccodes: 3.5.1.23 - - references: PMID:11356846 + - gene_reaction_rule: "ENSG00000078124 or ENSG00000104763 or ENSG00000167769 or ENSG00000177076 or ENSG00000188611" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.1.23" + - references: "PMID:11356846" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0733 + - id: "HMR_0733" - name: "" - metabolites: !!omap - m01430g: -1 @@ -141556,15 +141556,15 @@ - m10007g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104763 or ENSG00000167769 or ENSG00000177076 or ENSG00000188611 - - rxnFrom: HMRdatabase - - eccodes: 3.5.1.23 - - references: PMID:16940153 + - gene_reaction_rule: "ENSG00000104763 or ENSG00000167769 or ENSG00000177076 or ENSG00000188611" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.1.23" + - references: "PMID:16940153" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0735 + - id: "HMR_0735" - name: "" - metabolites: !!omap - m00235g: 1 @@ -141573,15 +141573,15 @@ - m02908g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000164023 or ENSG00000198964 - - rxnFrom: HMRdatabase - - eccodes: 2.7.8.27 - - references: PMID:17449912;PMID:14976195;PMID:14685263;PMID:4339164;PMID:4817756 + - gene_reaction_rule: "ENSG00000164023 or ENSG00000198964" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.8.27" + - references: "PMID:17449912;PMID:14976195;PMID:14685263;PMID:4339164;PMID:4817756" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0736 + - id: "HMR_0736" - name: "" - metabolites: !!omap - m00235c: 1 @@ -141590,15 +141590,15 @@ - m02908c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000164023 or ENSG00000198964 - - rxnFrom: HMRdatabase - - eccodes: 2.7.8.27 - - references: PMID:17449912;PMID:14685263;PMID:19233134;PMID:4339164;PMID:4817756;PMID:17982138 + - gene_reaction_rule: "ENSG00000164023 or ENSG00000198964" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.8.27" + - references: "PMID:17449912;PMID:14685263;PMID:19233134;PMID:4339164;PMID:4817756;PMID:17982138" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0738 + - id: "HMR_0738" - name: "" - metabolites: !!omap - m00769c: 1 @@ -141609,15 +141609,15 @@ - m02896c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000090054 and ENSG00000100596 and ENSG00000172296 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.50 - - references: PMID:17023427;PMID:9363775;PMID:17331073;PMID:11242114;PMID:10722674;PMID:12704216;PMID:1317856 + - gene_reaction_rule: "ENSG00000090054 and ENSG00000100596 and ENSG00000172296" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.50" + - references: "PMID:17023427;PMID:9363775;PMID:17331073;PMID:11242114;PMID:10722674;PMID:12704216;PMID:1317856" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0741 + - id: "HMR_0741" - name: "" - metabolites: !!omap - m00769c: -1 @@ -141627,15 +141627,15 @@ - m02927c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119537 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.102 - - references: PMID:15328338;PMID:1317856 + - gene_reaction_rule: "ENSG00000119537" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.102" + - references: "PMID:15328338;PMID:1317856" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0744 + - id: "HMR_0744" - name: "" - metabolites: !!omap - m01285c: 1 @@ -141645,15 +141645,15 @@ - m02928c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000063176 or ENSG00000105516 or ENSG00000176170 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.91 - - references: PMID:10947957;PMID:10751414;PMID:10802064;PMID:11410609;PMID:2061324 + - gene_reaction_rule: "ENSG00000063176 or ENSG00000105516 or ENSG00000176170" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.91" + - references: "PMID:10947957;PMID:10751414;PMID:10802064;PMID:11410609;PMID:2061324" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0746 + - id: "HMR_0746" - name: "" - metabolites: !!omap - m02040c: -1 @@ -141662,15 +141662,15 @@ - m02928c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000067113 or ENSG00000101577 or ENSG00000132793 or ENSG00000134324 or ENSG00000141934 or ENSG00000162407 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.4 - - references: PMID:12411432;PMID:12815058;PMID:7575445 + - gene_reaction_rule: "ENSG00000067113 or ENSG00000101577 or ENSG00000132793 or ENSG00000134324 or ENSG00000141934 or ENSG00000162407" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.4" + - references: "PMID:12411432;PMID:12815058;PMID:7575445" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0748 + - id: "HMR_0748" - name: "" - metabolites: !!omap - m01798c: -1 @@ -141678,15 +141678,15 @@ - m02928c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000166224 - - rxnFrom: HMRdatabase - - eccodes: 4.1.2.27 - - references: PMID:8558101;PMID:11018465;PMID:2061324;PMID:5432798 + - gene_reaction_rule: "ENSG00000166224" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.2.27" + - references: "PMID:8558101;PMID:11018465;PMID:2061324;PMID:5432798" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0750 + - id: "HMR_0750" - name: "" - metabolites: !!omap - m01597c: 1 @@ -141696,15 +141696,15 @@ - m10007c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000090661 or ENSG00000139624 or ENSG00000143418 or ENSG00000154227 or ENSG00000172292 or ENSG00000223802 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.24 - - references: PMID:16793762;PMID:16100120;PMID:18165233;PMID:1317856;PMID:9655376 + - gene_reaction_rule: "ENSG00000090661 or ENSG00000139624 or ENSG00000143418 or ENSG00000154227 or ENSG00000172292 or ENSG00000223802" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.24" + - references: "PMID:16793762;PMID:16100120;PMID:18165233;PMID:1317856;PMID:9655376" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0753 + - id: "HMR_0753" - name: "" - metabolites: !!omap - m01699c: -1 @@ -141713,15 +141713,15 @@ - m10005c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000078124 or ENSG00000104763 or ENSG00000167769 or ENSG00000177076 or ENSG00000188611 - - rxnFrom: HMRdatabase - - eccodes: 3.5.1.23 - - references: PMID:12133002;PMID:4475632;PMID:5810070;UNIPROT:Q15125 + - gene_reaction_rule: "ENSG00000078124 or ENSG00000104763 or ENSG00000167769 or ENSG00000177076 or ENSG00000188611" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.1.23" + - references: "PMID:12133002;PMID:4475632;PMID:5810070;UNIPROT:Q15125" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0754 + - id: "HMR_0754" - name: "" - metabolites: !!omap - m01430c: 1 @@ -141733,15 +141733,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000143753 or ENSG00000168350 - - rxnFrom: HMRdatabase - - eccodes: 1.14.-.- - - references: PMID:11937514;PMID:9188692;PMID:16137923;PMID:9312549;PMID:9677340;PMID:8449895;PMID:10880336;PMID:10722759;PMID:11937514;PMID:8449895;PMID:11937514;PMID:10722759;PMID:11937514;PMID:8449895;PMID:10880336;PMID:10722759;PMID:10880336 + - gene_reaction_rule: "ENSG00000143753 or ENSG00000168350" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.-.-" + - references: "PMID:11937514;PMID:9188692;PMID:16137923;PMID:9312549;PMID:9677340;PMID:8449895;PMID:10880336;PMID:10722759;PMID:11937514;PMID:8449895;PMID:11937514;PMID:10722759;PMID:11937514;PMID:8449895;PMID:10880336;PMID:10722759;PMID:10880336" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0758 + - id: "HMR_0758" - name: "" - metabolites: !!omap - m01430c: -1 @@ -141751,15 +141751,15 @@ - m10007c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000090661 or ENSG00000139624 or ENSG00000143418 or ENSG00000154227 or ENSG00000172292 or ENSG00000223802 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.24 - - references: PMID:17713573;PMID:1317856;PMID:9655376 + - gene_reaction_rule: "ENSG00000090661 or ENSG00000139624 or ENSG00000143418 or ENSG00000154227 or ENSG00000172292 or ENSG00000223802" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.24" + - references: "PMID:17713573;PMID:1317856;PMID:9655376" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0760 + - id: "HMR_0760" - name: "" - metabolites: !!omap - m01285c: 1 @@ -141769,15 +141769,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100422 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.138 - - references: PMID:11956206 + - gene_reaction_rule: "ENSG00000100422" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.138" + - references: "PMID:11956206" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0761 + - id: "HMR_0761" - name: "" - metabolites: !!omap - m01430c: -1 @@ -141787,15 +141787,15 @@ - m03108c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000148154 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.80 - - references: PMID:10856719 + - gene_reaction_rule: "ENSG00000148154" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.80" + - references: "PMID:10856719" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0762 + - id: "HMR_0762" - name: "" - metabolites: !!omap - m01430c: 1 @@ -141804,15 +141804,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000070610 or ENSG00000177628 or ENSG00000249948 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.45 - - references: PMID:12133002;PMID:4475632;PMID:5810070;UNIPROT:Q15125 + - gene_reaction_rule: "ENSG00000070610 or ENSG00000177628 or ENSG00000249948" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.45" + - references: "PMID:12133002;PMID:4475632;PMID:5810070;UNIPROT:Q15125" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0763 + - id: "HMR_0763" - name: "" - metabolites: !!omap - m01425r: -1 @@ -141822,15 +141822,15 @@ - m02908r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 2.7.8.3 - - references: PMID:10856719;PMID:13610834 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.8.3" + - references: "PMID:10856719;PMID:13610834" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0765 + - id: "HMR_0765" - name: "" - metabolites: !!omap - m01972r: -1 @@ -141840,15 +141840,15 @@ - m03107r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000016864 or ENSG00000027847 or ENSG00000060642 or ENSG00000069943 or ENSG00000085998 or ENSG00000086062 or ENSG00000102595 or ENSG00000106648 or ENSG00000109586 or ENSG00000117411 or ENSG00000118017 or ENSG00000118276 or ENSG00000119227 or ENSG00000120820 or ENSG00000121578 or ENSG00000124091 or ENSG00000134910 or ENSG00000136731 or ENSG00000139044 or ENSG00000143315 or ENSG00000147162 or ENSG00000148288 or ENSG00000156966 or ENSG00000158470 or ENSG00000158850 or ENSG00000162630 or ENSG00000162885 or ENSG00000163389 or ENSG00000163527 or ENSG00000167080 or ENSG00000167889 or ENSG00000170340 or ENSG00000172318 or ENSG00000172461 or ENSG00000172728 or ENSG00000175711 or ENSG00000176383 or ENSG00000176597 or ENSG00000177191 or ENSG00000179913 or ENSG00000180549 or ENSG00000182272 or ENSG00000183778 or ENSG00000187676 or ENSG00000189366 or ENSG00000196371 or ENSG00000196968 or ENSG00000198488 or ENSG00000204007 or ENSG00000205301 or ENSG00000237172 or ENSG00000251287 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: PMID:10856719 + - gene_reaction_rule: "ENSG00000016864 or ENSG00000027847 or ENSG00000060642 or ENSG00000069943 or ENSG00000085998 or ENSG00000086062 or ENSG00000102595 or ENSG00000106648 or ENSG00000109586 or ENSG00000117411 or ENSG00000118017 or ENSG00000118276 or ENSG00000119227 or ENSG00000120820 or ENSG00000121578 or ENSG00000124091 or ENSG00000134910 or ENSG00000136731 or ENSG00000139044 or ENSG00000143315 or ENSG00000147162 or ENSG00000148288 or ENSG00000156966 or ENSG00000158470 or ENSG00000158850 or ENSG00000162630 or ENSG00000162885 or ENSG00000163389 or ENSG00000163527 or ENSG00000167080 or ENSG00000167889 or ENSG00000170340 or ENSG00000172318 or ENSG00000172461 or ENSG00000172728 or ENSG00000175711 or ENSG00000176383 or ENSG00000176597 or ENSG00000177191 or ENSG00000179913 or ENSG00000180549 or ENSG00000182272 or ENSG00000183778 or ENSG00000187676 or ENSG00000189366 or ENSG00000196371 or ENSG00000196968 or ENSG00000198488 or ENSG00000204007 or ENSG00000205301 or ENSG00000237172 or ENSG00000251287" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "PMID:10856719" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0766 + - id: "HMR_0766" - name: "" - metabolites: !!omap - m01910s: -1 @@ -141857,15 +141857,15 @@ - m02328s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115850 or ENSG00000163521 or ENSG00000170266 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.23 - - references: PMID:12133002;PMID:4475632;PMID:5810070;UNIPROT:Q15125 + - gene_reaction_rule: "ENSG00000115850 or ENSG00000163521 or ENSG00000170266" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.23" + - references: "PMID:12133002;PMID:4475632;PMID:5810070;UNIPROT:Q15125" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0767 + - id: "HMR_0767" - name: "" - metabolites: !!omap - m01430c: 1 @@ -141874,15 +141874,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000067113 or ENSG00000101577 or ENSG00000105520 or ENSG00000117600 or ENSG00000129951 or ENSG00000132793 or ENSG00000134324 or ENSG00000141934 or ENSG00000147535 or ENSG00000162407 or ENSG00000203805 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.4 - - references: PMID:8403799 + - gene_reaction_rule: "ENSG00000067113 or ENSG00000101577 or ENSG00000105520 or ENSG00000117600 or ENSG00000129951 or ENSG00000132793 or ENSG00000134324 or ENSG00000141934 or ENSG00000147535 or ENSG00000162407 or ENSG00000203805" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.4" + - references: "PMID:8403799" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0773 + - id: "HMR_0773" - name: "" - metabolites: !!omap - m01285c: 1 @@ -141892,15 +141892,15 @@ - m02930c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000063176 or ENSG00000105516 or ENSG00000176170 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.91 - - references: PMID:10947957;PMID:10751414;PMID:10802064;PMID:11410609;PMID:2061324 + - gene_reaction_rule: "ENSG00000063176 or ENSG00000105516 or ENSG00000176170" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.91" + - references: "PMID:10947957;PMID:10751414;PMID:10802064;PMID:11410609;PMID:2061324" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0775 + - id: "HMR_0775" - name: "" - metabolites: !!omap - m02040c: -1 @@ -141909,15 +141909,15 @@ - m02930c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000067113 or ENSG00000101577 or ENSG00000132793 or ENSG00000134324 or ENSG00000141934 or ENSG00000162407 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.4 - - references: PMID:9705349 + - gene_reaction_rule: "ENSG00000067113 or ENSG00000101577 or ENSG00000132793 or ENSG00000134324 or ENSG00000141934 or ENSG00000162407" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.4" + - references: "PMID:9705349" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0779 + - id: "HMR_0779" - name: "" - metabolites: !!omap - m01798c: 1 @@ -141925,15 +141925,15 @@ - m02930c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000166224 - - rxnFrom: HMRdatabase - - eccodes: 4.1.2.27 - - references: PMID:18558101;PMID:11018465;PMID:2061324;PMID:5432798 + - gene_reaction_rule: "ENSG00000166224" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.2.27" + - references: "PMID:18558101;PMID:11018465;PMID:2061324;PMID:5432798" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0781 + - id: "HMR_0781" - name: "" - metabolites: !!omap - m02039c: -1 @@ -141943,15 +141943,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.27 - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.27" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0783 + - id: "HMR_0783" - name: "" - metabolites: !!omap - m02040s: -1 @@ -141960,15 +141960,15 @@ - m02930s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000067113 or ENSG00000141934 or ENSG00000162407 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.4 - - references: PMID:9705349 + - gene_reaction_rule: "ENSG00000067113 or ENSG00000141934 or ENSG00000162407" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.4" + - references: "PMID:9705349" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0795 + - id: "HMR_0795" - name: "" - metabolites: !!omap - m01430c: 1 @@ -141978,15 +141978,15 @@ - m02908c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103056 or ENSG00000135587 or ENSG00000136699 or ENSG00000166311 or ENSG00000182156 - - rxnFrom: HMRdatabase - - eccodes: 3.1.4.12 - - references: PMID:10823942;PMID:12885774;PMID:37279 + - gene_reaction_rule: "ENSG00000103056 or ENSG00000135587 or ENSG00000136699 or ENSG00000166311 or ENSG00000182156" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.4.12" + - references: "PMID:10823942;PMID:12885774;PMID:37279" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8147 + - id: "HMR_8147" - name: "" - metabolites: !!omap - m01972g: -1 @@ -141996,15 +141996,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000179913 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000179913" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8148 + - id: "HMR_8148" - name: "" - metabolites: !!omap - m01960g: 1 @@ -142014,15 +142014,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000128274 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.228 - - references: + - gene_reaction_rule: "ENSG00000128274" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.228" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8149 + - id: "HMR_8149" - name: "" - metabolites: !!omap - m01959g: 1 @@ -142032,15 +142032,15 @@ - m03110g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169255 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.79 - - references: + - gene_reaction_rule: "ENSG00000169255" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.79" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8150 + - id: "HMR_8150" - name: "" - metabolites: !!omap - m01912g: 1 @@ -142050,15 +142050,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000183778 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000183778" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8151 + - id: "HMR_8151" - name: "" - metabolites: !!omap - m01912g: -1 @@ -142068,15 +142068,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000179913 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000179913" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8152 + - id: "HMR_8152" - name: "" - metabolites: !!omap - m01919g: 1 @@ -142086,15 +142086,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000179913 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000179913" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8155 + - id: "HMR_8155" - name: "" - metabolites: !!omap - m01590g: 1 @@ -142104,15 +142104,15 @@ - m02905g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008513 or ENSG00000110080 or ENSG00000157350 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.4 - - references: + - gene_reaction_rule: "ENSG00000008513 or ENSG00000110080 or ENSG00000157350" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.4" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8156 + - id: "HMR_8156" - name: "" - metabolites: !!omap - m01590g: 1 @@ -142122,15 +142122,15 @@ - m02905g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000070731 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.- - - references: + - gene_reaction_rule: "ENSG00000070731" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.-" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8159 + - id: "HMR_8159" - name: "" - metabolites: !!omap - m01590g: 1 @@ -142140,15 +142140,15 @@ - m02905g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000070731 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.- - - references: + - gene_reaction_rule: "ENSG00000070731" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.-" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8162 + - id: "HMR_8162" - name: "" - metabolites: !!omap - m01590g: 1 @@ -142158,15 +142158,15 @@ - m02905g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111728 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.8 - - references: + - gene_reaction_rule: "ENSG00000111728" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.8" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8165 + - id: "HMR_8165" - name: "" - metabolites: !!omap - m01905g: 1 @@ -142176,15 +142176,15 @@ - m03110g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135454 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.92 - - references: + - gene_reaction_rule: "ENSG00000135454" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.92" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8166 + - id: "HMR_8166" - name: "" - metabolites: !!omap - m01904g: 1 @@ -142194,15 +142194,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000235863 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.62 - - references: + - gene_reaction_rule: "ENSG00000235863" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.62" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8167 + - id: "HMR_8167" - name: "" - metabolites: !!omap - m01590g: 1 @@ -142212,15 +142212,15 @@ - m02039g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008513 or ENSG00000110080 or ENSG00000157350 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.4 - - references: + - gene_reaction_rule: "ENSG00000008513 or ENSG00000110080 or ENSG00000157350" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.4" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8168 + - id: "HMR_8168" - name: "" - metabolites: !!omap - m01590g: 1 @@ -142230,15 +142230,15 @@ - m02039g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117069 or ENSG00000136840 or ENSG00000160408 or ENSG00000184005 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.-;2.4.99.7 - - references: + - gene_reaction_rule: "ENSG00000117069 or ENSG00000136840 or ENSG00000160408 or ENSG00000184005" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.-;2.4.99.7" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8169 + - id: "HMR_8169" - name: "" - metabolites: !!omap - m01590g: 1 @@ -142248,15 +142248,15 @@ - m02039g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000070731 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.- - - references: + - gene_reaction_rule: "ENSG00000070731" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.-" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8170 + - id: "HMR_8170" - name: "" - metabolites: !!omap - m01590g: 1 @@ -142266,15 +142266,15 @@ - m02039g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000070731 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.- - - references: + - gene_reaction_rule: "ENSG00000070731" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.-" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8171 + - id: "HMR_8171" - name: "" - metabolites: !!omap - m01590g: 1 @@ -142284,15 +142284,15 @@ - m02039g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101638 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.- - - references: + - gene_reaction_rule: "ENSG00000101638" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.-" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8172 + - id: "HMR_8172" - name: "" - metabolites: !!omap - m01590g: 1 @@ -142302,15 +142302,15 @@ - m02039g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000070731 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.- - - references: + - gene_reaction_rule: "ENSG00000070731" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.-" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8173 + - id: "HMR_8173" - name: "" - metabolites: !!omap - m02009g: 1 @@ -142320,15 +142320,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000179913 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000179913" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8174 + - id: "HMR_8174" - name: "" - metabolites: !!omap - m01590g: 1 @@ -142338,15 +142338,15 @@ - m02039g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000070731 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.- - - references: + - gene_reaction_rule: "ENSG00000070731" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.-" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8175 + - id: "HMR_8175" - name: "" - metabolites: !!omap - m01590g: 1 @@ -142356,15 +142356,15 @@ - m02039g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160408 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.- - - references: + - gene_reaction_rule: "ENSG00000160408" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.-" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8176 + - id: "HMR_8176" - name: "" - metabolites: !!omap - m01590g: 1 @@ -142374,15 +142374,15 @@ - m02039g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000070731 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.- - - references: + - gene_reaction_rule: "ENSG00000070731" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.-" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8177 + - id: "HMR_8177" - name: "" - metabolites: !!omap - m01590g: 1 @@ -142392,15 +142392,15 @@ - m02039g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000070731 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.- - - references: + - gene_reaction_rule: "ENSG00000070731" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.-" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8178 + - id: "HMR_8178" - name: "" - metabolites: !!omap - m01590g: 1 @@ -142410,15 +142410,15 @@ - m02039g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160408 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.- - - references: + - gene_reaction_rule: "ENSG00000160408" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.-" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8179 + - id: "HMR_8179" - name: "" - metabolites: !!omap - m01590g: 1 @@ -142428,15 +142428,15 @@ - m02039g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111728 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000111728" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8180 + - id: "HMR_8180" - name: "" - metabolites: !!omap - m01590g: 1 @@ -142446,15 +142446,15 @@ - m02039g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101638 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.- - - references: + - gene_reaction_rule: "ENSG00000101638" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.-" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8181 + - id: "HMR_8181" - name: "" - metabolites: !!omap - m01590g: 1 @@ -142464,15 +142464,15 @@ - m02039g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101638 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.- - - references: + - gene_reaction_rule: "ENSG00000101638" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.-" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8182 + - id: "HMR_8182" - name: "" - metabolites: !!omap - m01590g: 1 @@ -142482,15 +142482,15 @@ - m02039g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101638 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.- - - references: + - gene_reaction_rule: "ENSG00000101638" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.-" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8183 + - id: "HMR_8183" - name: "" - metabolites: !!omap - m01590g: 1 @@ -142500,15 +142500,15 @@ - m02039g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101638 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.- - - references: + - gene_reaction_rule: "ENSG00000101638" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.-" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8184 + - id: "HMR_8184" - name: "" - metabolites: !!omap - m01590g: 1 @@ -142518,15 +142518,15 @@ - m02328g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115525 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.9 - - references: + - gene_reaction_rule: "ENSG00000115525" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.9" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8185 + - id: "HMR_8185" - name: "" - metabolites: !!omap - m02008g: 1 @@ -142536,15 +142536,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000235863 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.62 - - references: + - gene_reaction_rule: "ENSG00000235863" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.62" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8186 + - id: "HMR_8186" - name: "" - metabolites: !!omap - m01943g: 1 @@ -142554,15 +142554,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000235863 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.62 - - references: + - gene_reaction_rule: "ENSG00000235863" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.62" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8187 + - id: "HMR_8187" - name: "" - metabolites: !!omap - m02031g: 1 @@ -142572,15 +142572,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000235863 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.62 - - references: + - gene_reaction_rule: "ENSG00000235863" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.62" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8188 + - id: "HMR_8188" - name: "" - metabolites: !!omap - m01590g: 1 @@ -142590,15 +142590,15 @@ - m02039g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008513 or ENSG00000110080 or ENSG00000157350 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.4 - - references: + - gene_reaction_rule: "ENSG00000008513 or ENSG00000110080 or ENSG00000157350" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.4" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8189 + - id: "HMR_8189" - name: "" - metabolites: !!omap - m01590g: 1 @@ -142608,15 +142608,15 @@ - m02039g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008513 or ENSG00000110080 or ENSG00000157350 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.4 - - references: + - gene_reaction_rule: "ENSG00000008513 or ENSG00000110080 or ENSG00000157350" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.4" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8190 + - id: "HMR_8190" - name: "" - metabolites: !!omap - m02011g: 1 @@ -142626,15 +142626,15 @@ - m03110g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135454 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.92 - - references: + - gene_reaction_rule: "ENSG00000135454" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.92" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8191 + - id: "HMR_8191" - name: "" - metabolites: !!omap - m01946g: 1 @@ -142644,15 +142644,15 @@ - m03110g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135454 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.92 - - references: + - gene_reaction_rule: "ENSG00000135454" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.92" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8192 + - id: "HMR_8192" - name: "" - metabolites: !!omap - m02032g: 1 @@ -142662,15 +142662,15 @@ - m03110g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135454 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.92 - - references: + - gene_reaction_rule: "ENSG00000135454" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.92" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8194 + - id: "HMR_8194" - name: "" - metabolites: !!omap - m01391g: 1 @@ -142679,15 +142679,15 @@ - m02525g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000179913 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000179913" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8197 + - id: "HMR_8197" - name: "" - metabolites: !!omap - m01391l: -1 @@ -142697,15 +142697,15 @@ - m03110l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8198 + - id: "HMR_8198" - name: "" - metabolites: !!omap - m01324g: 1 @@ -142715,15 +142715,15 @@ - m03110g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000148288 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.88 - - references: + - gene_reaction_rule: "ENSG00000148288" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.88" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8201 + - id: "HMR_8201" - name: "" - metabolites: !!omap - m01324l: -1 @@ -142733,15 +142733,15 @@ - m03110l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000198951 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.49 - - references: + - gene_reaction_rule: "ENSG00000198951" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.49" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0786 + - id: "HMR_0786" - name: "" - metabolites: !!omap - m01910l: 1 @@ -142750,15 +142750,15 @@ - m02328l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115850 and ENSG00000163521 and ENSG00000170266 and ENSG00000188167 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.23 - - references: + - gene_reaction_rule: "ENSG00000115850 and ENSG00000163521 and ENSG00000170266 and ENSG00000188167" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.23" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8206 + - id: "HMR_8206" - name: "" - metabolites: !!omap - m01679g: -1 @@ -142768,15 +142768,15 @@ - m02947g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000128242 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.11 - - references: + - gene_reaction_rule: "ENSG00000128242" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.11" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8209 + - id: "HMR_8209" - name: "" - metabolites: !!omap - m01679l: 1 @@ -142786,15 +142786,15 @@ - m02947l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100299 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000100299" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8210 + - id: "HMR_8210" - name: "" - metabolites: !!omap - m01430l: 1 @@ -142803,15 +142803,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000054983 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.46 - - references: + - gene_reaction_rule: "ENSG00000054983" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.46" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8211 + - id: "HMR_8211" - name: "" - metabolites: !!omap - m01430l: -1 @@ -142820,15 +142820,15 @@ - m10005l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104763 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000104763" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8212 + - id: "HMR_8212" - name: "" - metabolites: !!omap - m01694g: -1 @@ -142838,15 +142838,15 @@ - m02682g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000128242 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.11 - - references: + - gene_reaction_rule: "ENSG00000128242" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.11" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8217 + - id: "HMR_8217" - name: "" - metabolites: !!omap - m01679l: 1 @@ -142855,15 +142855,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000102393 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.22 - - references: + - gene_reaction_rule: "ENSG00000102393" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.22" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8219 + - id: "HMR_8219" - name: "" - metabolites: !!omap - m01430c: 1 @@ -142873,15 +142873,15 @@ - m02555c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000143753 or ENSG00000168350 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000143753 or ENSG00000168350" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8220 + - id: "HMR_8220" - name: "" - metabolites: !!omap - m01430c: 1 @@ -142890,15 +142890,15 @@ - m01803c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000143753 or ENSG00000168350 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000143753 or ENSG00000168350" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8221 + - id: "HMR_8221" - name: "" - metabolites: !!omap - m01861g: 1 @@ -142908,15 +142908,15 @@ - m02039g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174951 or ENSG00000176920 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.69 - - references: + - gene_reaction_rule: "ENSG00000174951 or ENSG00000176920" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.69" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8224 + - id: "HMR_8224" - name: "" - metabolites: !!omap - m01244c: 1 @@ -142925,15 +142925,15 @@ - m01947c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169359 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000169359" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8226 + - id: "HMR_8226" - name: "" - metabolites: !!omap - m01244g: 1 @@ -142942,15 +142942,15 @@ - m01947g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169359 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000169359" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8227 + - id: "HMR_8227" - name: "" - metabolites: !!omap - m01245c: 1 @@ -142959,15 +142959,15 @@ - m02033c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169359 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000169359" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8228 + - id: "HMR_8228" - name: "" - metabolites: !!omap - m01245g: 1 @@ -142976,15 +142976,15 @@ - m02033g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169359 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000169359" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8233 + - id: "HMR_8233" - name: "" - metabolites: !!omap - m02040r: -1 @@ -142993,15 +142993,15 @@ - m02928r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000126821 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.- - - references: + - gene_reaction_rule: "ENSG00000126821" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.-" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8235 + - id: "HMR_8235" - name: "" - metabolites: !!omap - m02040r: -1 @@ -143010,15 +143010,15 @@ - m02930r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000126821 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.- - - references: + - gene_reaction_rule: "ENSG00000126821" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.-" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8237 + - id: "HMR_8237" - name: "" - metabolites: !!omap - m01798r: 1 @@ -143026,15 +143026,15 @@ - m02928r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000166224 - - rxnFrom: HMRdatabase - - eccodes: 4.1.2.27 - - references: + - gene_reaction_rule: "ENSG00000166224" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.2.27" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8238 + - id: "HMR_8238" - name: "" - metabolites: !!omap - m01798r: 1 @@ -143044,15 +143044,15 @@ - m02930r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000166224 - - rxnFrom: HMRdatabase - - eccodes: 4.1.2.27 - - references: + - gene_reaction_rule: "ENSG00000166224" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.2.27" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8242 + - id: "HMR_8242" - name: "" - metabolites: !!omap - m01430g: 1 @@ -143062,15 +143062,15 @@ - m02908g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103056 - - rxnFrom: HMRdatabase - - eccodes: 3.1.4.12 - - references: + - gene_reaction_rule: "ENSG00000103056" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.4.12" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8245 + - id: "HMR_8245" - name: "" - metabolites: !!omap - m02040c: -1 @@ -143079,15 +143079,15 @@ - m10005c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8246 + - id: "HMR_8246" - name: "" - metabolites: !!omap - m02039c: 1 @@ -143097,15 +143097,15 @@ - m02931c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103056 or ENSG00000135587 or ENSG00000136699 or ENSG00000166311 or ENSG00000182156 - - rxnFrom: HMRdatabase - - eccodes: 3.1.4.12 - - references: + - gene_reaction_rule: "ENSG00000103056 or ENSG00000135587 or ENSG00000136699 or ENSG00000166311 or ENSG00000182156" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.4.12" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8248 + - id: "HMR_8248" - name: "" - metabolites: !!omap - m01430r: -1 @@ -143115,15 +143115,15 @@ - m03108r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000148154 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.80 - - references: + - gene_reaction_rule: "ENSG00000148154" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.80" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8249 + - id: "HMR_8249" - name: "" - metabolites: !!omap - m01920g: 1 @@ -143133,15 +143133,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000179913 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000179913" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8250 + - id: "HMR_8250" - name: "" - metabolites: !!omap - m01918g: 1 @@ -143151,15 +143151,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000179913 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000179913" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8251 + - id: "HMR_8251" - name: "" - metabolites: !!omap - m01917g: 1 @@ -143169,15 +143169,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000179913 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000179913" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0453 + - id: "HMR_0453" - name: "" - metabolites: !!omap - m01981c: -1 @@ -143187,15 +143187,15 @@ - m02555c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085662 or ENSG00000117448 or ENSG00000172955 or ENSG00000187758 or ENSG00000196344 or ENSG00000196616 or ENSG00000197894 or ENSG00000198074 or ENSG00000198099 or ENSG00000248144 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.1;1.1.1.2;1.1.1.21;1.1.1.72 - - references: PMID:11716357;PMID:6753936;PMID:6815419;PMID:8916913;PMID:9693960 + - gene_reaction_rule: "ENSG00000085662 or ENSG00000117448 or ENSG00000172955 or ENSG00000187758 or ENSG00000196344 or ENSG00000196616 or ENSG00000197894 or ENSG00000198074 or ENSG00000198099 or ENSG00000248144" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.1;1.1.1.2;1.1.1.21;1.1.1.72" + - references: "PMID:11716357;PMID:6753936;PMID:6815419;PMID:8916913;PMID:9693960" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0456 + - id: "HMR_0456" - name: "" - metabolites: !!omap - m01981c: -1 @@ -143206,15 +143206,15 @@ - m02553c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000143149 or ENSG00000164904 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.3 - - references: PMID:12705826;PMID:170276;PMID:6189823;PMID:6285247;PMID:8155713 + - gene_reaction_rule: "ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000143149 or ENSG00000164904" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.3" + - references: "PMID:12705826;PMID:170276;PMID:6189823;PMID:6285247;PMID:8155713" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0458 + - id: "HMR_0458" - name: "" - metabolites: !!omap - m01981m: 1 @@ -143224,15 +143224,15 @@ - m02555m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085662 or ENSG00000117448 or ENSG00000172955 or ENSG00000187758 or ENSG00000196344 or ENSG00000196616 or ENSG00000197894 or ENSG00000198074 or ENSG00000198099 or ENSG00000248144 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.1;1.1.1.2;1.1.1.21;1.1.1.72 - - references: PMID:11716357;PMID:6753936;PMID:6815419;PMID:8916913;PMID:9693960 + - gene_reaction_rule: "ENSG00000085662 or ENSG00000117448 or ENSG00000172955 or ENSG00000187758 or ENSG00000196344 or ENSG00000196616 or ENSG00000197894 or ENSG00000198074 or ENSG00000198099 or ENSG00000248144" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.1;1.1.1.2;1.1.1.21;1.1.1.72" + - references: "PMID:11716357;PMID:6753936;PMID:6815419;PMID:8916913;PMID:9693960" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0459 + - id: "HMR_0459" - name: "" - metabolites: !!omap - m01981m: -1 @@ -143243,15 +143243,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000143149 or ENSG00000164904 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.3 - - references: PMID:12705826;PMID:170276;PMID:6189823;PMID:6285247;PMID:8155713 + - gene_reaction_rule: "ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000143149 or ENSG00000164904" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.3" + - references: "PMID:12705826;PMID:170276;PMID:6189823;PMID:6285247;PMID:8155713" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0463 + - id: "HMR_0463" - name: "" - metabolites: !!omap - m00656r: 1 @@ -143261,15 +143261,15 @@ - m10005r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000069764 or ENSG00000100078 or ENSG00000105499 or ENSG00000116711 or ENSG00000117215 or ENSG00000123739 or ENSG00000127472 or ENSG00000138308 or ENSG00000158786 or ENSG00000159337 or ENSG00000163803 or ENSG00000168907 or ENSG00000168970 or ENSG00000170890 or ENSG00000176485 or ENSG00000184381 or ENSG00000187980 or ENSG00000188089 or ENSG00000188257 or ENSG00000188784 or ENSG00000243708 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.4 - - references: PMID:11275266;PMID:14744027;PMID:7356635 + - gene_reaction_rule: "ENSG00000069764 or ENSG00000100078 or ENSG00000105499 or ENSG00000116711 or ENSG00000117215 or ENSG00000123739 or ENSG00000127472 or ENSG00000138308 or ENSG00000158786 or ENSG00000159337 or ENSG00000163803 or ENSG00000168907 or ENSG00000168970 or ENSG00000170890 or ENSG00000176485 or ENSG00000184381 or ENSG00000187980 or ENSG00000188089 or ENSG00000188257 or ENSG00000188784 or ENSG00000243708" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.4" + - references: "PMID:11275266;PMID:14744027;PMID:7356635" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0486 + - id: "HMR_0486" - name: "" - metabolites: !!omap - m00484c: 1 @@ -143278,15 +143278,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0487 + - id: "HMR_0487" - name: "" - metabolites: !!omap - m00502c: 1 @@ -143295,15 +143295,15 @@ - m03050c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0488 + - id: "HMR_0488" - name: "" - metabolites: !!omap - m00493c: 1 @@ -143312,15 +143312,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0489 + - id: "HMR_0489" - name: "" - metabolites: !!omap - m00129c: -1 @@ -143329,15 +143329,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0490 + - id: "HMR_0490" - name: "" - metabolites: !!omap - m00118c: -1 @@ -143346,15 +143346,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0491 + - id: "HMR_0491" - name: "" - metabolites: !!omap - m00454c: 1 @@ -143363,15 +143363,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0492 + - id: "HMR_0492" - name: "" - metabolites: !!omap - m00498c: 1 @@ -143380,15 +143380,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0493 + - id: "HMR_0493" - name: "" - metabolites: !!omap - m00496c: 1 @@ -143397,15 +143397,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0494 + - id: "HMR_0494" - name: "" - metabolites: !!omap - m00497c: 1 @@ -143414,15 +143414,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0495 + - id: "HMR_0495" - name: "" - metabolites: !!omap - m00461c: 1 @@ -143431,15 +143431,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0496 + - id: "HMR_0496" - name: "" - metabolites: !!omap - m00481c: 1 @@ -143448,15 +143448,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0497 + - id: "HMR_0497" - name: "" - metabolites: !!omap - m00004c: -1 @@ -143465,15 +143465,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0498 + - id: "HMR_0498" - name: "" - metabolites: !!omap - m00469c: 1 @@ -143482,15 +143482,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0499 + - id: "HMR_0499" - name: "" - metabolites: !!omap - m00499c: 1 @@ -143499,15 +143499,15 @@ - m02941c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0500 + - id: "HMR_0500" - name: "" - metabolites: !!omap - m00020c: -1 @@ -143516,15 +143516,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0501 + - id: "HMR_0501" - name: "" - metabolites: !!omap - m00474c: 1 @@ -143533,15 +143533,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0502 + - id: "HMR_0502" - name: "" - metabolites: !!omap - m00495c: 1 @@ -143550,15 +143550,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0503 + - id: "HMR_0503" - name: "" - metabolites: !!omap - m00127c: -1 @@ -143567,15 +143567,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0504 + - id: "HMR_0504" - name: "" - metabolites: !!omap - m00116c: -1 @@ -143584,15 +143584,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0505 + - id: "HMR_0505" - name: "" - metabolites: !!omap - m00106c: -1 @@ -143601,15 +143601,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0506 + - id: "HMR_0506" - name: "" - metabolites: !!omap - m00494c: 1 @@ -143618,15 +143618,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0507 + - id: "HMR_0507" - name: "" - metabolites: !!omap - m00478c: 1 @@ -143635,15 +143635,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0508 + - id: "HMR_0508" - name: "" - metabolites: !!omap - m00018c: -1 @@ -143652,15 +143652,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0509 + - id: "HMR_0509" - name: "" - metabolites: !!omap - m00007c: -1 @@ -143669,15 +143669,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0510 + - id: "HMR_0510" - name: "" - metabolites: !!omap - m00468c: 1 @@ -143686,15 +143686,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0511 + - id: "HMR_0511" - name: "" - metabolites: !!omap - m00123c: -1 @@ -143703,15 +143703,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0512 + - id: "HMR_0512" - name: "" - metabolites: !!omap - m00101c: -1 @@ -143720,15 +143720,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0513 + - id: "HMR_0513" - name: "" - metabolites: !!omap - m00480c: 1 @@ -143737,15 +143737,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0514 + - id: "HMR_0514" - name: "" - metabolites: !!omap - m00477c: 1 @@ -143754,15 +143754,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0515 + - id: "HMR_0515" - name: "" - metabolites: !!omap - m00016c: -1 @@ -143771,15 +143771,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0516 + - id: "HMR_0516" - name: "" - metabolites: !!omap - m00006c: -1 @@ -143788,15 +143788,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0517 + - id: "HMR_0517" - name: "" - metabolites: !!omap - m00501c: 1 @@ -143805,15 +143805,15 @@ - m03047c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0518 + - id: "HMR_0518" - name: "" - metabolites: !!omap - m00500c: 1 @@ -143822,15 +143822,15 @@ - m02971c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0519 + - id: "HMR_0519" - name: "" - metabolites: !!omap - m00025c: -1 @@ -143839,15 +143839,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0520 + - id: "HMR_0520" - name: "" - metabolites: !!omap - m00482c: 1 @@ -143856,15 +143856,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0521 + - id: "HMR_0521" - name: "" - metabolites: !!omap - m00483c: 1 @@ -143873,15 +143873,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0522 + - id: "HMR_0522" - name: "" - metabolites: !!omap - m00492c: 1 @@ -143890,15 +143890,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0523 + - id: "HMR_0523" - name: "" - metabolites: !!omap - m00108c: -1 @@ -143907,15 +143907,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0524 + - id: "HMR_0524" - name: "" - metabolites: !!omap - m00125c: -1 @@ -143924,15 +143924,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0525 + - id: "HMR_0525" - name: "" - metabolites: !!omap - m00103c: -1 @@ -143941,15 +143941,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0526 + - id: "HMR_0526" - name: "" - metabolites: !!omap - m00121c: -1 @@ -143958,15 +143958,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0527 + - id: "HMR_0527" - name: "" - metabolites: !!omap - m00134c: -1 @@ -143975,15 +143975,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0528 + - id: "HMR_0528" - name: "" - metabolites: !!omap - m00113c: -1 @@ -143992,15 +143992,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0529 + - id: "HMR_0529" - name: "" - metabolites: !!omap - m00095c: -1 @@ -144009,15 +144009,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0530 + - id: "HMR_0530" - name: "" - metabolites: !!omap - m00012c: -1 @@ -144026,15 +144026,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0531 + - id: "HMR_0531" - name: "" - metabolites: !!omap - m00343c: -1 @@ -144043,15 +144043,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0532 + - id: "HMR_0532" - name: "" - metabolites: !!omap - m00262c: -1 @@ -144060,15 +144060,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0533 + - id: "HMR_0533" - name: "" - metabolites: !!omap - m00317c: -1 @@ -144077,15 +144077,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0534 + - id: "HMR_0534" - name: "" - metabolites: !!omap - m00491c: 1 @@ -144094,15 +144094,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0535 + - id: "HMR_0535" - name: "" - metabolites: !!omap - m00479c: 1 @@ -144111,15 +144111,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0536 + - id: "HMR_0536" - name: "" - metabolites: !!omap - m00476c: 1 @@ -144128,15 +144128,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0537 + - id: "HMR_0537" - name: "" - metabolites: !!omap - m00472c: 1 @@ -144145,15 +144145,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0538 + - id: "HMR_0538" - name: "" - metabolites: !!omap - m00119c: -1 @@ -144162,15 +144162,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0539 + - id: "HMR_0539" - name: "" - metabolites: !!omap - m00131c: -1 @@ -144179,15 +144179,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0540 + - id: "HMR_0540" - name: "" - metabolites: !!omap - m00110c: -1 @@ -144196,15 +144196,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0541 + - id: "HMR_0541" - name: "" - metabolites: !!omap - m00093c: -1 @@ -144213,15 +144213,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0542 + - id: "HMR_0542" - name: "" - metabolites: !!omap - m00009c: -1 @@ -144230,15 +144230,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0543 + - id: "HMR_0543" - name: "" - metabolites: !!omap - m00023c: -1 @@ -144247,15 +144247,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0544 + - id: "HMR_0544" - name: "" - metabolites: !!omap - m00264c: -1 @@ -144264,15 +144264,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0588 + - id: "HMR_0588" - name: "" - metabolites: !!omap - m01597c: 1 @@ -144281,15 +144281,15 @@ - m10007c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011198 or ENSG00000026652 or ENSG00000143797 or ENSG00000155189 or ENSG00000160216 or ENSG00000169692 or ENSG00000172197 or ENSG00000172954 or ENSG00000204310 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.51 - - references: PMID:16620771;UNIPROT:Q8WTS1;UNIPROT:Q99943 + - gene_reaction_rule: "ENSG00000011198 or ENSG00000026652 or ENSG00000143797 or ENSG00000155189 or ENSG00000160216 or ENSG00000169692 or ENSG00000172197 or ENSG00000172954 or ENSG00000204310" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.51" + - references: "PMID:16620771;UNIPROT:Q8WTS1;UNIPROT:Q99943" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0596 + - id: "HMR_0596" - name: "" - metabolites: !!omap - m00240c: 1 @@ -144298,15 +144298,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000067113 or ENSG00000101577 or ENSG00000105520 or ENSG00000117600 or ENSG00000129951 or ENSG00000132793 or ENSG00000134324 or ENSG00000141934 or ENSG00000147535 or ENSG00000162407 or ENSG00000203805 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.4 - - references: PMID:15258914;PMID:8403799 + - gene_reaction_rule: "ENSG00000067113 or ENSG00000101577 or ENSG00000105520 or ENSG00000117600 or ENSG00000129951 or ENSG00000132793 or ENSG00000134324 or ENSG00000141934 or ENSG00000147535 or ENSG00000162407 or ENSG00000203805" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.4" + - references: "PMID:15258914;PMID:8403799" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0673 + - id: "HMR_0673" - name: "" - metabolites: !!omap - m00509c: -1 @@ -144316,15 +144316,15 @@ - m10006c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006530 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.94 - - references: + - gene_reaction_rule: "ENSG00000006530" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.94" + - references: "" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0674 + - id: "HMR_0674" - name: "" - metabolites: !!omap - m00504c: -1 @@ -144334,15 +144334,15 @@ - m10006c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006530 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.94 - - references: + - gene_reaction_rule: "ENSG00000006530" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.94" + - references: "" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0675 + - id: "HMR_0675" - name: "" - metabolites: !!omap - m00505c: -1 @@ -144352,15 +144352,15 @@ - m10006c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006530 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.94 - - references: + - gene_reaction_rule: "ENSG00000006530" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.94" + - references: "" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0676 + - id: "HMR_0676" - name: "" - metabolites: !!omap - m00507c: -1 @@ -144370,15 +144370,15 @@ - m10006c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006530 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.94 - - references: + - gene_reaction_rule: "ENSG00000006530" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.94" + - references: "" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0677 + - id: "HMR_0677" - name: "" - metabolites: !!omap - m00506c: -1 @@ -144388,15 +144388,15 @@ - m10006c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006530 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.94 - - references: + - gene_reaction_rule: "ENSG00000006530" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.94" + - references: "" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0678 + - id: "HMR_0678" - name: "" - metabolites: !!omap - m00508c: -1 @@ -144406,15 +144406,15 @@ - m10006c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006530 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.94 - - references: + - gene_reaction_rule: "ENSG00000006530" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.94" + - references: "" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_4296 + - id: "HMR_4296" - name: "" - metabolites: !!omap - m01249c: 1 @@ -144425,15 +144425,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000164089 - - rxnFrom: HMRdatabase - - eccodes: 4.2.3.2 - - references: PMID:5498429 + - gene_reaction_rule: "ENSG00000164089" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.3.2" + - references: "PMID:5498429" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_4390 + - id: "HMR_4390" - name: "" - metabolites: !!omap - m01690s: -1 @@ -144442,15 +144442,15 @@ - m02751s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162551 or ENSG00000163283 or ENSG00000163286 or ENSG00000163295 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.1 - - references: PMID:1730777;PMID:3042787 + - gene_reaction_rule: "ENSG00000162551 or ENSG00000163283 or ENSG00000163286 or ENSG00000163295" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.1" + - references: "PMID:1730777;PMID:3042787" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_5254 + - id: "HMR_5254" - name: "" - metabolites: !!omap - m00656l: 1 @@ -144460,15 +144460,15 @@ - m10005l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000069764 or ENSG00000100078 or ENSG00000105499 or ENSG00000116711 or ENSG00000117215 or ENSG00000123739 or ENSG00000127472 or ENSG00000138308 or ENSG00000158786 or ENSG00000159337 or ENSG00000163803 or ENSG00000168907 or ENSG00000168970 or ENSG00000170890 or ENSG00000176485 or ENSG00000184381 or ENSG00000187980 or ENSG00000188089 or ENSG00000188257 or ENSG00000188784 or ENSG00000243708 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.4 - - references: PMID:11275266;PMID:14744027;PMID:7356635 + - gene_reaction_rule: "ENSG00000069764 or ENSG00000100078 or ENSG00000105499 or ENSG00000116711 or ENSG00000117215 or ENSG00000123739 or ENSG00000127472 or ENSG00000138308 or ENSG00000158786 or ENSG00000159337 or ENSG00000163803 or ENSG00000168907 or ENSG00000168970 or ENSG00000170890 or ENSG00000176485 or ENSG00000184381 or ENSG00000187980 or ENSG00000188089 or ENSG00000188257 or ENSG00000188784 or ENSG00000243708" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.4" + - references: "PMID:11275266;PMID:14744027;PMID:7356635" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7599 + - id: "HMR_7599" - name: "" - metabolites: !!omap - m00514c: -1 @@ -144478,15 +144478,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134255 or ENSG00000138018 - - rxnFrom: HMRdatabase - - eccodes: 2.7.8.1 - - references: + - gene_reaction_rule: "ENSG00000134255 or ENSG00000138018" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.8.1" + - references: "" - subsystem: - - Glycerolipid metabolism + - "Glycerolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0448 + - id: "HMR_0448" - name: "" - metabolites: !!omap - m01285m: 1 @@ -144496,15 +144496,15 @@ - m02914m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000175066 or ENSG00000196475 or ENSG00000198814 or ENSG00000229894 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.30 - - references: PMID:6316940 + - gene_reaction_rule: "ENSG00000175066 or ENSG00000196475 or ENSG00000198814 or ENSG00000229894" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.30" + - references: "PMID:6316940" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0450 + - id: "HMR_0450" - name: "" - metabolites: !!omap - m01285c: 1 @@ -144514,15 +144514,15 @@ - m02914c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000175066 or ENSG00000196475 or ENSG00000198814 or ENSG00000229894 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.30 - - references: PMID:15845384;PMID:6316940 + - gene_reaction_rule: "ENSG00000175066 or ENSG00000196475 or ENSG00000198814 or ENSG00000229894" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.30" + - references: "PMID:15845384;PMID:6316940" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0468 + - id: "HMR_0468" - name: "" - metabolites: !!omap - m00233c: -1 @@ -144532,15 +144532,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111666 or ENSG00000134255 - - rxnFrom: HMRdatabase - - eccodes: 2.7.8.2 - - references: PMID:3029085;PMID:6295501;UNIPROT:Q9Y6K0 + - gene_reaction_rule: "ENSG00000111666 or ENSG00000134255" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.8.2" + - references: "PMID:3029085;PMID:6295501;UNIPROT:Q9Y6K0" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0478 + - id: "HMR_0478" - name: "" - metabolites: !!omap - m01690c: -1 @@ -144550,15 +144550,15 @@ - m02914c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167588 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.94 - - references: PMID:16460752 + - gene_reaction_rule: "ENSG00000167588" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.94" + - references: "PMID:16460752" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0479 + - id: "HMR_0479" - name: "" - metabolites: !!omap - m01690c: -1 @@ -144568,15 +144568,15 @@ - m02914c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000152642 or ENSG00000167588 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.8 - - references: PMID:17045662;PMID:7772607 + - gene_reaction_rule: "ENSG00000152642 or ENSG00000167588" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.8" + - references: "PMID:17045662;PMID:7772607" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0481 + - id: "HMR_0481" - name: "" - metabolites: !!omap - m01690p: -1 @@ -144586,15 +144586,15 @@ - m02914p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000152642 or ENSG00000167588 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.8 - - references: PMID:17045662;PMID:7772607 + - gene_reaction_rule: "ENSG00000152642 or ENSG00000167588" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.8" + - references: "PMID:17045662;PMID:7772607" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0483 + - id: "HMR_0483" - name: "" - metabolites: !!omap - m01690c: 1 @@ -144603,15 +144603,15 @@ - m03103m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115159 - - rxnFrom: HMRdatabase - - eccodes: 1.1.5.3 - - references: PMID:11955283;PMID:2115809;PMID:2923620;PMID:3338458;PMID:340460;PMID:8401296;PMID:8549872;PMID:8579375;PMID:9171333;PMID:9244403;PMID:9559543 + - gene_reaction_rule: "ENSG00000115159" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.5.3" + - references: "PMID:11955283;PMID:2115809;PMID:2923620;PMID:3338458;PMID:340460;PMID:8401296;PMID:8549872;PMID:8579375;PMID:9171333;PMID:9244403;PMID:9559543" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0482 + - id: "HMR_0482" - name: "" - metabolites: !!omap - m01690c: 1 @@ -144620,15 +144620,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115159 - - rxnFrom: HMRdatabase - - eccodes: 1.1.5.3 - - references: + - gene_reaction_rule: "ENSG00000115159" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.5.3" + - references: "" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0484 + - id: "HMR_0484" - name: "" - metabolites: !!omap - m01429c: -1 @@ -144638,15 +144638,15 @@ - m02914c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000170222 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000170222" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0579 + - id: "HMR_0579" - name: "" - metabolites: !!omap - m01597m: 1 @@ -144655,15 +144655,15 @@ - m10007m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.15 - - references: PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2 + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.15" + - references: "PMID:12573444;PMID:17170135;PMID:17389595;UNIPROT:AGPAT6;UNIPROT:AGPAT9;UNIPROT:Q6NUI2;UNIPROT:Q9HCL2" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0580 + - id: "HMR_0580" - name: "" - metabolites: !!omap - m01597m: 1 @@ -144672,15 +144672,15 @@ - m10007m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011198 or ENSG00000026652 or ENSG00000143797 or ENSG00000155189 or ENSG00000160216 or ENSG00000169692 or ENSG00000172197 or ENSG00000172954 or ENSG00000204310 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.51 - - references: PMID:16620771;UNIPROT:Q9NUQ2 + - gene_reaction_rule: "ENSG00000011198 or ENSG00000026652 or ENSG00000143797 or ENSG00000155189 or ENSG00000160216 or ENSG00000169692 or ENSG00000172197 or ENSG00000172954 or ENSG00000204310" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.51" + - references: "PMID:16620771;UNIPROT:Q9NUQ2" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0581 + - id: "HMR_0581" - name: "" - metabolites: !!omap - m01426m: 1 @@ -144690,15 +144690,15 @@ - m02759m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101290 or ENSG00000163624 - - rxnFrom: HMRdatabase - - eccodes: 2.7.7.41 - - references: PMID:1330695;PMID:9115637;UNIPROT:O95674 + - gene_reaction_rule: "ENSG00000101290 or ENSG00000163624" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.7.41" + - references: "PMID:1330695;PMID:9115637;UNIPROT:O95674" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0582 + - id: "HMR_0582" - name: "" - metabolites: !!omap - m01426m: -1 @@ -144708,15 +144708,15 @@ - m02914m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087157 - - rxnFrom: HMRdatabase - - eccodes: 2.7.8.5 - - references: PMID:10799718;PMID:12531542;PMID:566612 + - gene_reaction_rule: "ENSG00000087157" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.8.5" + - references: "PMID:10799718;PMID:12531542;PMID:566612" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0584 + - id: "HMR_0584" - name: "" - metabolites: !!omap - m02040m: -1 @@ -144725,15 +144725,15 @@ - m02751m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.27 - - references: PMID:10799718;PMID:12531542;PMID:566612 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.27" + - references: "PMID:10799718;PMID:12531542;PMID:566612" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0586 + - id: "HMR_0586" - name: "" - metabolites: !!omap - m01426m: -1 @@ -144743,15 +144743,15 @@ - m02715m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088766 - - rxnFrom: HMRdatabase - - eccodes: 2.7.8.- - - references: PMID:10799718;PMID:12531542;PMID:1550861;PMID:566612;PMID:7833797 + - gene_reaction_rule: "ENSG00000088766" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.8.-" + - references: "PMID:10799718;PMID:12531542;PMID:1550861;PMID:566612;PMID:7833797" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0589 + - id: "HMR_0589" - name: "" - metabolites: !!omap - m01597c: 1 @@ -144760,15 +144760,15 @@ - m10007c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011198 or ENSG00000026652 or ENSG00000143797 or ENSG00000155189 or ENSG00000160216 or ENSG00000169692 or ENSG00000172197 or ENSG00000172954 or ENSG00000204310 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.51 - - references: PMID:16620771;UNIPROT:Q8WTS1;UNIPROT:Q99943 + - gene_reaction_rule: "ENSG00000011198 or ENSG00000026652 or ENSG00000143797 or ENSG00000155189 or ENSG00000160216 or ENSG00000169692 or ENSG00000172197 or ENSG00000172954 or ENSG00000204310" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.51" + - references: "PMID:16620771;UNIPROT:Q8WTS1;UNIPROT:Q99943" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0590 + - id: "HMR_0590" - name: "" - metabolites: !!omap - m01597c: 1 @@ -144777,15 +144777,15 @@ - m10007c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011198 or ENSG00000026652 or ENSG00000143797 or ENSG00000155189 or ENSG00000160216 or ENSG00000169692 or ENSG00000172197 or ENSG00000172954 or ENSG00000204310 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.51 - - references: PMID:16620771;UNIPROT:Q8WTS1;UNIPROT:Q99943 + - gene_reaction_rule: "ENSG00000011198 or ENSG00000026652 or ENSG00000143797 or ENSG00000155189 or ENSG00000160216 or ENSG00000169692 or ENSG00000172197 or ENSG00000172954 or ENSG00000204310" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.51" + - references: "PMID:16620771;UNIPROT:Q8WTS1;UNIPROT:Q99943" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0591 + - id: "HMR_0591" - name: "" - metabolites: !!omap - m01597c: 1 @@ -144794,15 +144794,15 @@ - m10007c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011198 or ENSG00000026652 or ENSG00000143797 or ENSG00000155189 or ENSG00000160216 or ENSG00000169692 or ENSG00000172197 or ENSG00000172954 or ENSG00000204310 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.51 - - references: PMID:16620771;UNIPROT:Q8WTS1;UNIPROT:Q99943 + - gene_reaction_rule: "ENSG00000011198 or ENSG00000026652 or ENSG00000143797 or ENSG00000155189 or ENSG00000160216 or ENSG00000169692 or ENSG00000172197 or ENSG00000172954 or ENSG00000204310" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.51" + - references: "PMID:16620771;UNIPROT:Q8WTS1;UNIPROT:Q99943" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0592 + - id: "HMR_0592" - name: "" - metabolites: !!omap - m01597c: 1 @@ -144811,15 +144811,15 @@ - m10007c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011198 or ENSG00000026652 or ENSG00000143797 or ENSG00000155189 or ENSG00000160216 or ENSG00000169692 or ENSG00000172197 or ENSG00000172954 or ENSG00000204310 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.51 - - references: PMID:16620771;UNIPROT:Q8WTS1;UNIPROT:Q99943 + - gene_reaction_rule: "ENSG00000011198 or ENSG00000026652 or ENSG00000143797 or ENSG00000155189 or ENSG00000160216 or ENSG00000169692 or ENSG00000172197 or ENSG00000172954 or ENSG00000204310" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.51" + - references: "PMID:16620771;UNIPROT:Q8WTS1;UNIPROT:Q99943" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0593 + - id: "HMR_0593" - name: "" - metabolites: !!omap - m01597c: 1 @@ -144828,15 +144828,15 @@ - m10007c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011198 or ENSG00000026652 or ENSG00000143797 or ENSG00000155189 or ENSG00000160216 or ENSG00000169692 or ENSG00000172197 or ENSG00000172954 or ENSG00000204310 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.51 - - references: PMID:16620771;UNIPROT:Q8WTS1;UNIPROT:Q99943 + - gene_reaction_rule: "ENSG00000011198 or ENSG00000026652 or ENSG00000143797 or ENSG00000155189 or ENSG00000160216 or ENSG00000169692 or ENSG00000172197 or ENSG00000172954 or ENSG00000204310" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.51" + - references: "PMID:16620771;UNIPROT:Q8WTS1;UNIPROT:Q99943" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0594 + - id: "HMR_0594" - name: "" - metabolites: !!omap - m00473c: -1 @@ -144845,15 +144845,15 @@ - m02726c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011198 or ENSG00000026652 or ENSG00000143797 or ENSG00000155189 or ENSG00000160216 or ENSG00000169692 or ENSG00000172197 or ENSG00000172954 or ENSG00000204310 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.51 - - references: PMID:16620771;UNIPROT:Q8WTS1;UNIPROT:Q99943 + - gene_reaction_rule: "ENSG00000011198 or ENSG00000026652 or ENSG00000143797 or ENSG00000155189 or ENSG00000160216 or ENSG00000169692 or ENSG00000172197 or ENSG00000172954 or ENSG00000204310" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.51" + - references: "PMID:16620771;UNIPROT:Q8WTS1;UNIPROT:Q99943" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0597 + - id: "HMR_0597" - name: "" - metabolites: !!omap - m00235c: 1 @@ -144862,15 +144862,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000067113 or ENSG00000101577 or ENSG00000105520 or ENSG00000117600 or ENSG00000129951 or ENSG00000132793 or ENSG00000134324 or ENSG00000141934 or ENSG00000147535 or ENSG00000162407 or ENSG00000203805 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.4 - - references: PMID:8403799;PMID:9370313 + - gene_reaction_rule: "ENSG00000067113 or ENSG00000101577 or ENSG00000105520 or ENSG00000117600 or ENSG00000129951 or ENSG00000132793 or ENSG00000134324 or ENSG00000141934 or ENSG00000147535 or ENSG00000162407 or ENSG00000203805" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.4" + - references: "PMID:8403799;PMID:9370313" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0598 + - id: "HMR_0598" - name: "" - metabolites: !!omap - m00236c: 1 @@ -144879,15 +144879,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000067113 or ENSG00000101577 or ENSG00000105520 or ENSG00000117600 or ENSG00000129951 or ENSG00000132793 or ENSG00000134324 or ENSG00000141934 or ENSG00000147535 or ENSG00000162407 or ENSG00000203805 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.4 - - references: PMID:8403799;PMID:9370313 + - gene_reaction_rule: "ENSG00000067113 or ENSG00000101577 or ENSG00000105520 or ENSG00000117600 or ENSG00000129951 or ENSG00000132793 or ENSG00000134324 or ENSG00000141934 or ENSG00000147535 or ENSG00000162407 or ENSG00000203805" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.4" + - references: "PMID:8403799;PMID:9370313" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0599 + - id: "HMR_0599" - name: "" - metabolites: !!omap - m00238c: 1 @@ -144896,15 +144896,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000067113 or ENSG00000101577 or ENSG00000105520 or ENSG00000117600 or ENSG00000129951 or ENSG00000132793 or ENSG00000134324 or ENSG00000141934 or ENSG00000147535 or ENSG00000162407 or ENSG00000203805 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.4 - - references: PMID:8403799;PMID:9370313 + - gene_reaction_rule: "ENSG00000067113 or ENSG00000101577 or ENSG00000105520 or ENSG00000117600 or ENSG00000129951 or ENSG00000132793 or ENSG00000134324 or ENSG00000141934 or ENSG00000147535 or ENSG00000162407 or ENSG00000203805" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.4" + - references: "PMID:8403799;PMID:9370313" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0600 + - id: "HMR_0600" - name: "" - metabolites: !!omap - m00237c: 1 @@ -144913,15 +144913,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000067113 or ENSG00000101577 or ENSG00000105520 or ENSG00000117600 or ENSG00000129951 or ENSG00000132793 or ENSG00000134324 or ENSG00000141934 or ENSG00000147535 or ENSG00000162407 or ENSG00000203805 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.4 - - references: PMID:8403799;PMID:9370313 + - gene_reaction_rule: "ENSG00000067113 or ENSG00000101577 or ENSG00000105520 or ENSG00000117600 or ENSG00000129951 or ENSG00000132793 or ENSG00000134324 or ENSG00000141934 or ENSG00000147535 or ENSG00000162407 or ENSG00000203805" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.4" + - references: "PMID:8403799;PMID:9370313" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0601 + - id: "HMR_0601" - name: "" - metabolites: !!omap - m00239c: 1 @@ -144930,15 +144930,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000067113 or ENSG00000101577 or ENSG00000105520 or ENSG00000117600 or ENSG00000129951 or ENSG00000132793 or ENSG00000134324 or ENSG00000141934 or ENSG00000147535 or ENSG00000162407 or ENSG00000203805 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.4 - - references: PMID:8403799;PMID:9370313 + - gene_reaction_rule: "ENSG00000067113 or ENSG00000101577 or ENSG00000105520 or ENSG00000117600 or ENSG00000129951 or ENSG00000132793 or ENSG00000134324 or ENSG00000141934 or ENSG00000147535 or ENSG00000162407 or ENSG00000203805" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.4" + - references: "PMID:8403799;PMID:9370313" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0602 + - id: "HMR_0602" - name: "" - metabolites: !!omap - m00233c: 1 @@ -144947,15 +144947,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000067113 or ENSG00000101577 or ENSG00000105520 or ENSG00000117600 or ENSG00000129951 or ENSG00000132793 or ENSG00000134324 or ENSG00000141934 or ENSG00000147535 or ENSG00000162407 or ENSG00000203805 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.4 - - references: PMID:15258914;PMID:17463059 + - gene_reaction_rule: "ENSG00000067113 or ENSG00000101577 or ENSG00000105520 or ENSG00000117600 or ENSG00000129951 or ENSG00000132793 or ENSG00000134324 or ENSG00000141934 or ENSG00000147535 or ENSG00000162407 or ENSG00000203805" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.4" + - references: "PMID:15258914;PMID:17463059" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0607 + - id: "HMR_0607" - name: "" - metabolites: !!omap - m01427c: -1 @@ -144965,15 +144965,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101290 or ENSG00000163624 - - rxnFrom: HMRdatabase - - eccodes: 2.7.7.41 - - references: PMID:1330695;PMID:9370329 + - gene_reaction_rule: "ENSG00000101290 or ENSG00000163624" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.7.41" + - references: "PMID:1330695;PMID:9370329" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0610 + - id: "HMR_0610" - name: "" - metabolites: !!omap - m01427c: -1 @@ -144983,15 +144983,15 @@ - m02750c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103502 - - rxnFrom: HMRdatabase - - eccodes: 2.7.8.11 - - references: PMID:9370331 + - gene_reaction_rule: "ENSG00000103502" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.8.11" + - references: "PMID:9370331" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0613 + - id: "HMR_0613" - name: "" - metabolites: !!omap - m01427r: -1 @@ -145001,15 +145001,15 @@ - m02750r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103502 - - rxnFrom: HMRdatabase - - eccodes: 2.7.8.11 - - references: PMID:9370331 + - gene_reaction_rule: "ENSG00000103502" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.8.11" + - references: "PMID:9370331" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0614 + - id: "HMR_0614" - name: "" - metabolites: !!omap - m00236c: -1 @@ -145019,15 +145019,15 @@ - m02685c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134255 or ENSG00000138018 - - rxnFrom: HMRdatabase - - eccodes: 2.7.8.1 - - references: PMID:17132865 + - gene_reaction_rule: "ENSG00000134255 or ENSG00000138018" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.8.1" + - references: "PMID:17132865" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0615 + - id: "HMR_0615" - name: "" - metabolites: !!omap - m00238c: -1 @@ -145037,15 +145037,15 @@ - m02697c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134255 or ENSG00000138018 - - rxnFrom: HMRdatabase - - eccodes: 2.7.8.1 - - references: PMID:17132865 + - gene_reaction_rule: "ENSG00000134255 or ENSG00000138018" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.8.1" + - references: "PMID:17132865" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0616 + - id: "HMR_0616" - name: "" - metabolites: !!omap - m01596c: -1 @@ -145054,15 +145054,15 @@ - m02808c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000241878 - - rxnFrom: HMRdatabase - - eccodes: 4.1.1.65 - - references: PMID:15052332;PMID:6859873;PMID:9211308 + - gene_reaction_rule: "ENSG00000241878" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.1.65" + - references: "PMID:15052332;PMID:6859873;PMID:9211308" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0622 + - id: "HMR_0622" - name: "" - metabolites: !!omap - m01797c: 1 @@ -145071,15 +145071,15 @@ - m02896c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174915 - - rxnFrom: HMRdatabase - - eccodes: 2.7.8.29 - - references: PMID:15052332 + - gene_reaction_rule: "ENSG00000174915" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.8.29" + - references: "PMID:15052332" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0623 + - id: "HMR_0623" - name: "" - metabolites: !!omap - m01513c: 1 @@ -145088,15 +145088,15 @@ - m02896c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000156471 - - rxnFrom: HMRdatabase - - eccodes: 2.7.8.29 - - references: PMID:10718344;PMID:10600531 + - gene_reaction_rule: "ENSG00000156471" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.8.29" + - references: "PMID:10718344;PMID:10600531" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0625 + - id: "HMR_0625" - name: "" - metabolites: !!omap - m00235c: -1 @@ -145106,15 +145106,15 @@ - m02684c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111666 or ENSG00000134255 - - rxnFrom: HMRdatabase - - eccodes: 2.7.8.2 - - references: PMID:3029085;PMID:6295501;UNIPROT:Q9Y6K0 + - gene_reaction_rule: "ENSG00000111666 or ENSG00000134255" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.8.2" + - references: "PMID:3029085;PMID:6295501;UNIPROT:Q9Y6K0" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0627 + - id: "HMR_0627" - name: "" - metabolites: !!omap - m01596c: 1 @@ -145123,15 +145123,15 @@ - m02808c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000241878 - - rxnFrom: HMRdatabase - - eccodes: 4.1.1.65 - - references: + - gene_reaction_rule: "ENSG00000241878" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.1.65" + - references: "" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0629 + - id: "HMR_0629" - name: "" - metabolites: !!omap - m01513c: 1 @@ -145141,15 +145141,15 @@ - m02728c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000075651 or ENSG00000105223 or ENSG00000129219 or ENSG00000166428 or ENSG00000179598 - - rxnFrom: HMRdatabase - - eccodes: 3.1.4.4 - - references: PMID:10425394;PMID:10818442;PMID:1869526 + - gene_reaction_rule: "ENSG00000075651 or ENSG00000105223 or ENSG00000129219 or ENSG00000166428 or ENSG00000179598" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.4.4" + - references: "PMID:10425394;PMID:10818442;PMID:1869526" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0630 + - id: "HMR_0630" - name: "" - metabolites: !!omap - m00656c: 1 @@ -145159,15 +145159,15 @@ - m10005c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000069764 or ENSG00000100078 or ENSG00000105499 or ENSG00000116711 or ENSG00000117215 or ENSG00000123739 or ENSG00000127472 or ENSG00000138308 or ENSG00000158786 or ENSG00000159337 or ENSG00000163803 or ENSG00000168907 or ENSG00000168970 or ENSG00000170890 or ENSG00000176485 or ENSG00000184381 or ENSG00000187980 or ENSG00000188089 or ENSG00000188257 or ENSG00000188784 or ENSG00000243708 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.4 - - references: PMID:11275266;PMID:14744027;PMID:7356635 + - gene_reaction_rule: "ENSG00000069764 or ENSG00000100078 or ENSG00000105499 or ENSG00000116711 or ENSG00000117215 or ENSG00000123739 or ENSG00000127472 or ENSG00000138308 or ENSG00000158786 or ENSG00000159337 or ENSG00000163803 or ENSG00000168907 or ENSG00000168970 or ENSG00000170890 or ENSG00000176485 or ENSG00000184381 or ENSG00000187980 or ENSG00000188089 or ENSG00000188257 or ENSG00000188784 or ENSG00000243708" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.4" + - references: "PMID:11275266;PMID:14744027;PMID:7356635" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0632 + - id: "HMR_0632" - name: "" - metabolites: !!omap - m00656c: -1 @@ -145176,15 +145176,15 @@ - m10007c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087253 or ENSG00000111684 or ENSG00000153395 or ENSG00000176454 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.23 - - references: + - gene_reaction_rule: "ENSG00000087253 or ENSG00000111684 or ENSG00000153395 or ENSG00000176454" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.23" + - references: "" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0633 + - id: "HMR_0633" - name: "" - metabolites: !!omap - m00656c: -1 @@ -145194,15 +145194,15 @@ - m10005c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011009 or ENSG00000032444 or ENSG00000103066 or ENSG00000105198 or ENSG00000105205 or ENSG00000116711 or ENSG00000120992 or ENSG00000130653 or ENSG00000135241 or ENSG00000163803 or ENSG00000166183 or ENSG00000175505 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.5 - - references: + - gene_reaction_rule: "ENSG00000011009 or ENSG00000032444 or ENSG00000103066 or ENSG00000105198 or ENSG00000105205 or ENSG00000116711 or ENSG00000120992 or ENSG00000130653 or ENSG00000135241 or ENSG00000163803 or ENSG00000166183 or ENSG00000175505" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.5" + - references: "" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0634 + - id: "HMR_0634" - name: "" - metabolites: !!omap - m00656c: 1 @@ -145211,15 +145211,15 @@ - m02684c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.43 - - references: PMID:4335615;PMID:4340992;PMID:9829992 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.43" + - references: "PMID:4335615;PMID:4340992;PMID:9829992" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0635 + - id: "HMR_0635" - name: "" - metabolites: !!omap - m01513c: 1 @@ -145229,15 +145229,15 @@ - m02914c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125772 - - rxnFrom: HMRdatabase - - eccodes: 3.1.4.2 - - references: + - gene_reaction_rule: "ENSG00000125772" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.4.2" + - references: "" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0636 + - id: "HMR_0636" - name: "" - metabolites: !!omap - m01285c: 1 @@ -145247,15 +145247,15 @@ - m02738c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100288 or ENSG00000110721 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.32 - - references: PMID:11964179;PMID:1618328;PMID:199433;PMID:9370318 + - gene_reaction_rule: "ENSG00000100288 or ENSG00000110721" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.32" + - references: "PMID:11964179;PMID:1618328;PMID:199433;PMID:9370318" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0638 + - id: "HMR_0638" - name: "" - metabolites: !!omap - m01425c: 1 @@ -145265,15 +145265,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000102230 or ENSG00000161217 - - rxnFrom: HMRdatabase - - eccodes: 2.7.7.15 - - references: PMID:10480912;PMID:2557076;PMID:8385107;PMID:9593753 + - gene_reaction_rule: "ENSG00000102230 or ENSG00000161217" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.7.15" + - references: "PMID:10480912;PMID:2557076;PMID:8385107;PMID:9593753" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0640 + - id: "HMR_0640" - name: "" - metabolites: !!omap - m01260c: 1 @@ -145282,15 +145282,15 @@ - m01597c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000070748 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.6 - - references: + - gene_reaction_rule: "ENSG00000070748" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.6" + - references: "" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0641 + - id: "HMR_0641" - name: "" - metabolites: !!omap - m01252c: 1 @@ -145300,15 +145300,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087085 or ENSG00000114200 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.7;3.1.1.8 - - references: + - gene_reaction_rule: "ENSG00000087085 or ENSG00000114200" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.7;3.1.1.8" + - references: "" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0642 + - id: "HMR_0642" - name: "" - metabolites: !!omap - m01797c: 1 @@ -145318,15 +145318,15 @@ - m02729c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000075651 or ENSG00000105223 or ENSG00000129219 or ENSG00000166428 - - rxnFrom: HMRdatabase - - eccodes: 3.1.4.4 - - references: PMID:1869526 + - gene_reaction_rule: "ENSG00000075651 or ENSG00000105223 or ENSG00000129219 or ENSG00000166428" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.4.4" + - references: "PMID:1869526" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0643 + - id: "HMR_0643" - name: "" - metabolites: !!omap - m00511c: 1 @@ -145336,15 +145336,15 @@ - m10005c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000069764 or ENSG00000100078 or ENSG00000105499 or ENSG00000116711 or ENSG00000117215 or ENSG00000123739 or ENSG00000127472 or ENSG00000138308 or ENSG00000158786 or ENSG00000159337 or ENSG00000163803 or ENSG00000168907 or ENSG00000168970 or ENSG00000170890 or ENSG00000176485 or ENSG00000184381 or ENSG00000187980 or ENSG00000188089 or ENSG00000188257 or ENSG00000188784 or ENSG00000243708 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.4 - - references: + - gene_reaction_rule: "ENSG00000069764 or ENSG00000100078 or ENSG00000105499 or ENSG00000116711 or ENSG00000117215 or ENSG00000123739 or ENSG00000127472 or ENSG00000138308 or ENSG00000158786 or ENSG00000159337 or ENSG00000163803 or ENSG00000168907 or ENSG00000168970 or ENSG00000170890 or ENSG00000176485 or ENSG00000184381 or ENSG00000187980 or ENSG00000188089 or ENSG00000188257 or ENSG00000188784 or ENSG00000243708" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.4" + - references: "" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0644 + - id: "HMR_0644" - name: "" - metabolites: !!omap - m00511c: -1 @@ -145353,15 +145353,15 @@ - m10007c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087253 or ENSG00000111684 or ENSG00000153395 or ENSG00000176454 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.23 - - references: + - gene_reaction_rule: "ENSG00000087253 or ENSG00000111684 or ENSG00000153395 or ENSG00000176454" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.23" + - references: "" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0645 + - id: "HMR_0645" - name: "" - metabolites: !!omap - m00511c: -1 @@ -145371,15 +145371,15 @@ - m10005c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011009 or ENSG00000032444 or ENSG00000103066 or ENSG00000105198 or ENSG00000105205 or ENSG00000116711 or ENSG00000120992 or ENSG00000130653 or ENSG00000135241 or ENSG00000163803 or ENSG00000166183 or ENSG00000175505 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.5 - - references: + - gene_reaction_rule: "ENSG00000011009 or ENSG00000032444 or ENSG00000103066 or ENSG00000105198 or ENSG00000105205 or ENSG00000116711 or ENSG00000120992 or ENSG00000130653 or ENSG00000135241 or ENSG00000163803 or ENSG00000166183 or ENSG00000175505" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.5" + - references: "" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0646 + - id: "HMR_0646" - name: "" - metabolites: !!omap - m01797c: 1 @@ -145389,15 +145389,15 @@ - m02914c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125772 - - rxnFrom: HMRdatabase - - eccodes: 3.1.4.2 - - references: + - gene_reaction_rule: "ENSG00000125772" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.4.2" + - references: "" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0647 + - id: "HMR_0647" - name: "" - metabolites: !!omap - m01249c: 1 @@ -145406,15 +145406,15 @@ - m02578c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 4.3.1.7 - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "4.3.1.7" + - references: "" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0648 + - id: "HMR_0648" - name: "" - metabolites: !!omap - m01285c: 1 @@ -145424,15 +145424,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100288 or ENSG00000110721 or ENSG00000139163 or ENSG00000143845 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.82 - - references: PMID:216713;PMID:9370318 + - gene_reaction_rule: "ENSG00000100288 or ENSG00000110721 or ENSG00000139163 or ENSG00000143845" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.82" + - references: "PMID:216713;PMID:9370318" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0649 + - id: "HMR_0649" - name: "" - metabolites: !!omap - m01797c: 1 @@ -145441,15 +145441,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000173868 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.75 - - references: PMID:14983068 + - gene_reaction_rule: "ENSG00000173868" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.75" + - references: "PMID:14983068" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0651 + - id: "HMR_0651" - name: "" - metabolites: !!omap - m01428c: 1 @@ -145459,15 +145459,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000185813 - - rxnFrom: HMRdatabase - - eccodes: 2.7.7.14 - - references: PMID:8385107 + - gene_reaction_rule: "ENSG00000185813" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.7.14" + - references: "PMID:8385107" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0653 + - id: "HMR_0653" - name: "" - metabolites: !!omap - m02039c: 1 @@ -145477,15 +145477,15 @@ - m02877c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000133027 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.17 - - references: + - gene_reaction_rule: "ENSG00000133027" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.17" + - references: "" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0654 + - id: "HMR_0654" - name: "" - metabolites: !!omap - m02039c: 1 @@ -145495,15 +145495,15 @@ - m02877c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000133027 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.17 - - references: PMID:12431977 + - gene_reaction_rule: "ENSG00000133027" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.17" + - references: "PMID:12431977" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0657 + - id: "HMR_0657" - name: "" - metabolites: !!omap - m02039c: 1 @@ -145513,15 +145513,15 @@ - m02877c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000133027 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.17 - - references: PMID:12431977 + - gene_reaction_rule: "ENSG00000133027" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.17" + - references: "PMID:12431977" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0660 + - id: "HMR_0660" - name: "" - metabolites: !!omap - m02039c: 1 @@ -145531,15 +145531,15 @@ - m02896c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000075651 or ENSG00000105223 or ENSG00000129219 or ENSG00000166428 - - rxnFrom: HMRdatabase - - eccodes: 3.1.4.4 - - references: PMID:11182251 + - gene_reaction_rule: "ENSG00000075651 or ENSG00000105223 or ENSG00000129219 or ENSG00000166428" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.4.4" + - references: "PMID:11182251" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_4627 + - id: "HMR_4627" - name: "" - metabolites: !!omap - m01798c: -1 @@ -145549,15 +145549,15 @@ - m02877c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135929 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.103 - - references: PMID:2403362 + - gene_reaction_rule: "ENSG00000135929" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.103" + - references: "PMID:2403362" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_4838 + - id: "HMR_4838" - name: "" - metabolites: !!omap - m02039c: 2 @@ -145567,15 +145567,15 @@ - m02877c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135929 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.103 - - references: PMID:2403362 + - gene_reaction_rule: "ENSG00000135929" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.103" + - references: "PMID:2403362" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_4839 + - id: "HMR_4839" - name: "" - metabolites: !!omap - m02738c: 1 @@ -145584,15 +145584,15 @@ - m02877c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135929 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.103 - - references: PMID:2403362 + - gene_reaction_rule: "ENSG00000135929" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.103" + - references: "PMID:2403362" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7591 + - id: "HMR_7591" - name: "" - metabolites: !!omap - m01278c: 1 @@ -145602,15 +145602,15 @@ - m10006c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117448 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.2 - - references: PMID:7669785 + - gene_reaction_rule: "ENSG00000117448" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.2" + - references: "PMID:7669785" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7594 + - id: "HMR_7594" - name: "" - metabolites: !!omap - alkylR1oh_p: -1 @@ -145620,15 +145620,15 @@ - m10005p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000018510 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.26 - - references: + - gene_reaction_rule: "ENSG00000018510" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.26" + - references: "" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7597 + - id: "HMR_7597" - name: "" - metabolites: !!omap - m00628c: 1 @@ -145640,15 +145640,15 @@ - m10005c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7601 + - id: "HMR_7601" - name: "" - metabolites: !!omap - m00515c: -1 @@ -145660,15 +145660,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.19 - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.19" + - references: "" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7611 + - id: "HMR_7611" - name: "" - metabolites: !!omap - m00549c: 1 @@ -145678,15 +145678,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000007168 or ENSG00000079462 or ENSG00000158006 or ENSG00000166183 or ENSG00000168092 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.47 - - references: + - gene_reaction_rule: "ENSG00000007168 or ENSG00000079462 or ENSG00000158006 or ENSG00000166183 or ENSG00000168092" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.47" + - references: "" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7612 + - id: "HMR_7612" - name: "" - metabolites: !!omap - m00549s: 1 @@ -145696,15 +145696,15 @@ - m02040s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000146070 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.47 - - references: + - gene_reaction_rule: "ENSG00000146070" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.47" + - references: "" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7613 + - id: "HMR_7613" - name: "" - metabolites: !!omap - m00549c: -1 @@ -145713,15 +145713,15 @@ - m01597c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087253 or ENSG00000153395 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.67 - - references: + - gene_reaction_rule: "ENSG00000087253 or ENSG00000153395" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.67" + - references: "" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7755 + - id: "HMR_7755" - name: "" - metabolites: !!omap - m01285s: 1 @@ -145731,15 +145731,15 @@ - m02039s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149476 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.29 - - references: + - gene_reaction_rule: "ENSG00000149476" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.29" + - references: "" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8362 + - id: "HMR_8362" - name: "" - metabolites: !!omap - m01260n: -1 @@ -145748,15 +145748,15 @@ - m01597n: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000070748 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.6 - - references: + - gene_reaction_rule: "ENSG00000070748" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.6" + - references: "" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8421 + - id: "HMR_8421" - name: "" - metabolites: !!omap - m01252s: 1 @@ -145766,15 +145766,15 @@ - m02040s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087085 or ENSG00000114200 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.7;3.1.1.8 - - references: + - gene_reaction_rule: "ENSG00000087085 or ENSG00000114200" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.7;3.1.1.8" + - references: "" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8423 + - id: "HMR_8423" - name: "" - metabolites: !!omap - m02039c: -1 @@ -145782,15 +145782,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8424 + - id: "HMR_8424" - name: "" - metabolites: !!omap - m01513c: 1 @@ -145799,15 +145799,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000173868 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.75 - - references: + - gene_reaction_rule: "ENSG00000173868" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.75" + - references: "" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8518 + - id: "HMR_8518" - name: "" - metabolites: !!omap - m00516c: 1 @@ -145817,15 +145817,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000007168 or ENSG00000079462 or ENSG00000158006 or ENSG00000166183 or ENSG00000168092 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.47 - - references: + - gene_reaction_rule: "ENSG00000007168 or ENSG00000079462 or ENSG00000158006 or ENSG00000166183 or ENSG00000168092" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.47" + - references: "" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8519 + - id: "HMR_8519" - name: "" - metabolites: !!omap - m00516s: 1 @@ -145835,15 +145835,15 @@ - m02040s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000146070 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.47 - - references: + - gene_reaction_rule: "ENSG00000146070" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.47" + - references: "" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8521 + - id: "HMR_8521" - name: "" - metabolites: !!omap - m00516c: -1 @@ -145852,15 +145852,15 @@ - m01597c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087253 or ENSG00000153395 or ENSG00000176454 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000087253 or ENSG00000153395 or ENSG00000176454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8522 + - id: "HMR_8522" - name: "" - metabolites: !!omap - m00516c: 1 @@ -145870,15 +145870,15 @@ - m10005c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8523 + - id: "HMR_8523" - name: "" - metabolites: !!omap - m01513g: 1 @@ -145888,15 +145888,15 @@ - m02728g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000075651 or ENSG00000105223 or ENSG00000129219 or ENSG00000166428 - - rxnFrom: HMRdatabase - - eccodes: 3.1.4.4 - - references: + - gene_reaction_rule: "ENSG00000075651 or ENSG00000105223 or ENSG00000129219 or ENSG00000166428" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.4.4" + - references: "" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_8525 + - id: "HMR_8525" - name: "" - metabolites: !!omap - m01513r: 1 @@ -145906,15 +145906,15 @@ - m02728r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000075651 or ENSG00000105223 or ENSG00000129219 or ENSG00000166428 - - rxnFrom: HMRdatabase - - eccodes: 3.1.4.4 - - references: + - gene_reaction_rule: "ENSG00000075651 or ENSG00000105223 or ENSG00000129219 or ENSG00000166428" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.4.4" + - references: "" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_9805 + - id: "HMR_9805" - name: "" - metabolites: !!omap - m01983c: 1 @@ -145924,15 +145924,15 @@ - m02912c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000164303 - - rxnFrom: HMRdatabase - - eccodes: 3.1.4.38 - - references: + - gene_reaction_rule: "ENSG00000164303" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.4.38" + - references: "" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0815 + - id: "HMR_0815" - name: "" - metabolites: !!omap - m01905c: 1 @@ -145942,15 +145942,15 @@ - m03110c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135454 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.92 - - references: + - gene_reaction_rule: "ENSG00000135454" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.92" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-ganglio series + - "Glycosphingolipid biosynthesis-ganglio series" - confidence_score: 0 - !!omap - - id: HMR_0816 + - id: "HMR_0816" - name: "" - metabolites: !!omap - m01904c: 1 @@ -145960,15 +145960,15 @@ - m03107c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000235863 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.62 - - references: + - gene_reaction_rule: "ENSG00000235863" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.62" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-ganglio series + - "Glycosphingolipid biosynthesis-ganglio series" - confidence_score: 0 - !!omap - - id: HMR_0817 + - id: "HMR_0817" - name: "" - metabolites: !!omap - m01590c: 1 @@ -145978,15 +145978,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008513 or ENSG00000110080 or ENSG00000157350 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.4 - - references: + - gene_reaction_rule: "ENSG00000008513 or ENSG00000110080 or ENSG00000157350" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.4" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-ganglio series + - "Glycosphingolipid biosynthesis-ganglio series" - confidence_score: 0 - !!omap - - id: HMR_0819 + - id: "HMR_0819" - name: "" - metabolites: !!omap - m01904c: -1 @@ -145995,15 +145995,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115850 and ENSG00000163521 and ENSG00000170266 and ENSG00000188167 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.23 - - references: + - gene_reaction_rule: "ENSG00000115850 and ENSG00000163521 and ENSG00000170266 and ENSG00000188167" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.23" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-ganglio series + - "Glycosphingolipid biosynthesis-ganglio series" - confidence_score: 0 - !!omap - - id: HMR_0820 + - id: "HMR_0820" - name: "" - metabolites: !!omap - m01590c: 1 @@ -146013,15 +146013,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115525 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.9 - - references: + - gene_reaction_rule: "ENSG00000115525" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.9" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-ganglio series + - "Glycosphingolipid biosynthesis-ganglio series" - confidence_score: 0 - !!omap - - id: HMR_0821 + - id: "HMR_0821" - name: "" - metabolites: !!omap - m01905c: -1 @@ -146030,15 +146030,15 @@ - m02525c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-ganglio series + - "Glycosphingolipid biosynthesis-ganglio series" - confidence_score: 0 - !!omap - - id: HMR_0822 + - id: "HMR_0822" - name: "" - metabolites: !!omap - m01590c: 1 @@ -146048,15 +146048,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101638 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.- - - references: + - gene_reaction_rule: "ENSG00000101638" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.-" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-ganglio series + - "Glycosphingolipid biosynthesis-ganglio series" - confidence_score: 0 - !!omap - - id: HMR_0823 + - id: "HMR_0823" - name: "" - metabolites: !!omap - m01590c: 1 @@ -146066,15 +146066,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117069 or ENSG00000136840 or ENSG00000160408 or ENSG00000184005 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.-;2.4.99.7 - - references: + - gene_reaction_rule: "ENSG00000117069 or ENSG00000136840 or ENSG00000160408 or ENSG00000184005" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.-;2.4.99.7" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-ganglio series + - "Glycosphingolipid biosynthesis-ganglio series" - confidence_score: 0 - !!omap - - id: HMR_0824 + - id: "HMR_0824" - name: "" - metabolites: !!omap - m01590c: 1 @@ -146084,15 +146084,15 @@ - m02328c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115525 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.9 - - references: + - gene_reaction_rule: "ENSG00000115525" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.9" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-ganglio series + - "Glycosphingolipid biosynthesis-ganglio series" - confidence_score: 0 - !!omap - - id: HMR_0825 + - id: "HMR_0825" - name: "" - metabolites: !!omap - m02015c: -1 @@ -146101,15 +146101,15 @@ - m02543c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115488 or ENSG00000162139 or ENSG00000204099 or ENSG00000204386 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.18 - - references: + - gene_reaction_rule: "ENSG00000115488 or ENSG00000162139 or ENSG00000204099 or ENSG00000204386" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.18" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-ganglio series + - "Glycosphingolipid biosynthesis-ganglio series" - confidence_score: 0 - !!omap - - id: HMR_0827 + - id: "HMR_0827" - name: "" - metabolites: !!omap - m02011c: 1 @@ -146119,15 +146119,15 @@ - m03110c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135454 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.92 - - references: + - gene_reaction_rule: "ENSG00000135454" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.92" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-ganglio series + - "Glycosphingolipid biosynthesis-ganglio series" - confidence_score: 0 - !!omap - - id: HMR_0828 + - id: "HMR_0828" - name: "" - metabolites: !!omap - m02011c: -1 @@ -146136,15 +146136,15 @@ - m02525c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-ganglio series + - "Glycosphingolipid biosynthesis-ganglio series" - confidence_score: 0 - !!omap - - id: HMR_0829 + - id: "HMR_0829" - name: "" - metabolites: !!omap - m02008c: 1 @@ -146154,15 +146154,15 @@ - m03107c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000235863 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.62 - - references: + - gene_reaction_rule: "ENSG00000235863" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.62" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-ganglio series + - "Glycosphingolipid biosynthesis-ganglio series" - confidence_score: 0 - !!omap - - id: HMR_0830 + - id: "HMR_0830" - name: "" - metabolites: !!omap - m01910c: 1 @@ -146171,15 +146171,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115850 and ENSG00000163521 and ENSG00000170266 and ENSG00000188167 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.23 - - references: + - gene_reaction_rule: "ENSG00000115850 and ENSG00000163521 and ENSG00000170266 and ENSG00000188167" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.23" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-ganglio series + - "Glycosphingolipid biosynthesis-ganglio series" - confidence_score: 0 - !!omap - - id: HMR_0837 + - id: "HMR_0837" - name: "" - metabolites: !!omap - m01590c: 1 @@ -146189,15 +146189,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008513 or ENSG00000110080 or ENSG00000157350 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.4 - - references: + - gene_reaction_rule: "ENSG00000008513 or ENSG00000110080 or ENSG00000157350" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.4" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-ganglio series + - "Glycosphingolipid biosynthesis-ganglio series" - confidence_score: 0 - !!omap - - id: HMR_0838 + - id: "HMR_0838" - name: "" - metabolites: !!omap - m01941c: -1 @@ -146206,15 +146206,15 @@ - m02543c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115488 or ENSG00000162139 or ENSG00000204099 or ENSG00000204386 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.18 - - references: + - gene_reaction_rule: "ENSG00000115488 or ENSG00000162139 or ENSG00000204099 or ENSG00000204386" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.18" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-ganglio series + - "Glycosphingolipid biosynthesis-ganglio series" - confidence_score: 0 - !!omap - - id: HMR_0839 + - id: "HMR_0839" - name: "" - metabolites: !!omap - m01590c: 1 @@ -146224,15 +146224,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101638 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.- - - references: + - gene_reaction_rule: "ENSG00000101638" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.-" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-ganglio series + - "Glycosphingolipid biosynthesis-ganglio series" - confidence_score: 0 - !!omap - - id: HMR_0840 + - id: "HMR_0840" - name: "" - metabolites: !!omap - m01590c: 1 @@ -146242,15 +146242,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160408 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.- - - references: + - gene_reaction_rule: "ENSG00000160408" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.-" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-ganglio series + - "Glycosphingolipid biosynthesis-ganglio series" - confidence_score: 0 - !!omap - - id: HMR_0841 + - id: "HMR_0841" - name: "" - metabolites: !!omap - m01590c: 1 @@ -146260,15 +146260,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111728 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.8 - - references: + - gene_reaction_rule: "ENSG00000111728" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.8" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-ganglio series + - "Glycosphingolipid biosynthesis-ganglio series" - confidence_score: 0 - !!omap - - id: HMR_0842 + - id: "HMR_0842" - name: "" - metabolites: !!omap - m01946c: 1 @@ -146278,15 +146278,15 @@ - m03110c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135454 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.92 - - references: + - gene_reaction_rule: "ENSG00000135454" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.92" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-ganglio series + - "Glycosphingolipid biosynthesis-ganglio series" - confidence_score: 0 - !!omap - - id: HMR_0843 + - id: "HMR_0843" - name: "" - metabolites: !!omap - m01943c: 1 @@ -146296,15 +146296,15 @@ - m03107c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000235863 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.62 - - references: + - gene_reaction_rule: "ENSG00000235863" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.62" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-ganglio series + - "Glycosphingolipid biosynthesis-ganglio series" - confidence_score: 0 - !!omap - - id: HMR_0844 + - id: "HMR_0844" - name: "" - metabolites: !!omap - m01590c: 1 @@ -146314,15 +146314,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008513 or ENSG00000110080 or ENSG00000157350 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.4 - - references: + - gene_reaction_rule: "ENSG00000008513 or ENSG00000110080 or ENSG00000157350" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.4" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-ganglio series + - "Glycosphingolipid biosynthesis-ganglio series" - confidence_score: 0 - !!omap - - id: HMR_0845 + - id: "HMR_0845" - name: "" - metabolites: !!omap - m01943c: 1 @@ -146331,15 +146331,15 @@ - m02543c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115488 or ENSG00000162139 or ENSG00000204099 or ENSG00000204386 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.18 - - references: + - gene_reaction_rule: "ENSG00000115488 or ENSG00000162139 or ENSG00000204099 or ENSG00000204386" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.18" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-ganglio series + - "Glycosphingolipid biosynthesis-ganglio series" - confidence_score: 0 - !!omap - - id: HMR_0846 + - id: "HMR_0846" - name: "" - metabolites: !!omap - m01590c: 1 @@ -146349,15 +146349,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101638 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.- - - references: + - gene_reaction_rule: "ENSG00000101638" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.-" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-ganglio series + - "Glycosphingolipid biosynthesis-ganglio series" - confidence_score: 0 - !!omap - - id: HMR_0847 + - id: "HMR_0847" - name: "" - metabolites: !!omap - m02023c: -1 @@ -146366,15 +146366,15 @@ - m02543c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115488 or ENSG00000162139 or ENSG00000204099 or ENSG00000204386 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.18 - - references: + - gene_reaction_rule: "ENSG00000115488 or ENSG00000162139 or ENSG00000204099 or ENSG00000204386" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.18" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-ganglio series + - "Glycosphingolipid biosynthesis-ganglio series" - confidence_score: 0 - !!omap - - id: HMR_0848 + - id: "HMR_0848" - name: "" - metabolites: !!omap - m01590c: 1 @@ -146384,15 +146384,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160408 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.- - - references: + - gene_reaction_rule: "ENSG00000160408" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.-" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-ganglio series + - "Glycosphingolipid biosynthesis-ganglio series" - confidence_score: 0 - !!omap - - id: HMR_0849 + - id: "HMR_0849" - name: "" - metabolites: !!omap - m01590c: 1 @@ -146402,15 +146402,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000070731 or ENSG00000115525 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.9 - - references: + - gene_reaction_rule: "ENSG00000070731 or ENSG00000115525" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.9" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-ganglio series + - "Glycosphingolipid biosynthesis-ganglio series" - confidence_score: 0 - !!omap - - id: HMR_0850 + - id: "HMR_0850" - name: "" - metabolites: !!omap - m01905c: 1 @@ -146419,15 +146419,15 @@ - m02543c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115488 or ENSG00000162139 or ENSG00000204099 or ENSG00000204386 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.18 - - references: + - gene_reaction_rule: "ENSG00000115488 or ENSG00000162139 or ENSG00000204099 or ENSG00000204386" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.18" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-ganglio series + - "Glycosphingolipid biosynthesis-ganglio series" - confidence_score: 0 - !!omap - - id: HMR_0851 + - id: "HMR_0851" - name: "" - metabolites: !!omap - m01590c: 1 @@ -146437,15 +146437,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111728 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.8 - - references: + - gene_reaction_rule: "ENSG00000111728" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.8" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-ganglio series + - "Glycosphingolipid biosynthesis-ganglio series" - confidence_score: 0 - !!omap - - id: HMR_0852 + - id: "HMR_0852" - name: "" - metabolites: !!omap - m01590c: 1 @@ -146455,15 +146455,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111728 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.8 - - references: + - gene_reaction_rule: "ENSG00000111728" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.8" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-ganglio series + - "Glycosphingolipid biosynthesis-ganglio series" - confidence_score: 0 - !!omap - - id: HMR_0853 + - id: "HMR_0853" - name: "" - metabolites: !!omap - m01590c: 1 @@ -146473,15 +146473,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111728 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.8 - - references: + - gene_reaction_rule: "ENSG00000111728" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.8" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-ganglio series + - "Glycosphingolipid biosynthesis-ganglio series" - confidence_score: 0 - !!omap - - id: HMR_0854 + - id: "HMR_0854" - name: "" - metabolites: !!omap - m01590c: 1 @@ -146491,15 +146491,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111728 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.8 - - references: + - gene_reaction_rule: "ENSG00000111728" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.8" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-ganglio series + - "Glycosphingolipid biosynthesis-ganglio series" - confidence_score: 0 - !!omap - - id: HMR_0855 + - id: "HMR_0855" - name: "" - metabolites: !!omap - m01590c: 1 @@ -146509,15 +146509,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101638 or ENSG00000111728 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.8;2.4.99.- - - references: + - gene_reaction_rule: "ENSG00000101638 or ENSG00000111728" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.8;2.4.99.-" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-ganglio series + - "Glycosphingolipid biosynthesis-ganglio series" - confidence_score: 0 - !!omap - - id: HMR_0856 + - id: "HMR_0856" - name: "" - metabolites: !!omap - m02032c: 1 @@ -146527,15 +146527,15 @@ - m03110c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135454 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.92 - - references: + - gene_reaction_rule: "ENSG00000135454" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.92" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-ganglio series + - "Glycosphingolipid biosynthesis-ganglio series" - confidence_score: 0 - !!omap - - id: HMR_0857 + - id: "HMR_0857" - name: "" - metabolites: !!omap - m02031c: 1 @@ -146545,15 +146545,15 @@ - m03107c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000235863 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.62 - - references: + - gene_reaction_rule: "ENSG00000235863" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.62" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-ganglio series + - "Glycosphingolipid biosynthesis-ganglio series" - confidence_score: 0 - !!omap - - id: HMR_0858 + - id: "HMR_0858" - name: "" - metabolites: !!omap - m01590c: 1 @@ -146563,15 +146563,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000070731 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000070731" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-ganglio series + - "Glycosphingolipid biosynthesis-ganglio series" - confidence_score: 0 - !!omap - - id: HMR_0928 + - id: "HMR_0928" - name: "" - metabolites: !!omap - m02328c: -1 @@ -146580,15 +146580,15 @@ - m02682c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000128242 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.11 - - references: PMID:1330860;PMID:1330860;PMID:1330860;PMID:1330860 + - gene_reaction_rule: "ENSG00000128242" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.11" + - references: "PMID:1330860;PMID:1330860;PMID:1330860;PMID:1330860" - subsystem: - - Glycosphingolipid biosynthesis-ganglio series + - "Glycosphingolipid biosynthesis-ganglio series" - confidence_score: 0 - !!omap - - id: HMR_0801 + - id: "HMR_0801" - name: "" - metabolites: !!omap - m01960c: 1 @@ -146598,15 +146598,15 @@ - m03107c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000128274 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.228 - - references: + - gene_reaction_rule: "ENSG00000128274" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.228" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-globo series + - "Glycosphingolipid biosynthesis-globo series" - confidence_score: 0 - !!omap - - id: HMR_0803 + - id: "HMR_0803" - name: "" - metabolites: !!omap - m01910c: 1 @@ -146615,15 +146615,15 @@ - m02328c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000102393 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.22 - - references: + - gene_reaction_rule: "ENSG00000102393" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.22" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-globo series + - "Glycosphingolipid biosynthesis-globo series" - confidence_score: 0 - !!omap - - id: HMR_0805 + - id: "HMR_0805" - name: "" - metabolites: !!omap - m01959c: 1 @@ -146633,15 +146633,15 @@ - m03110c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169255 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.79 - - references: + - gene_reaction_rule: "ENSG00000169255" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.79" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-globo series + - "Glycosphingolipid biosynthesis-globo series" - confidence_score: 0 - !!omap - - id: HMR_0806 + - id: "HMR_0806" - name: "" - metabolites: !!omap - m01959l: 1 @@ -146651,15 +146651,15 @@ - m03110l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169255 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.79 - - references: + - gene_reaction_rule: "ENSG00000169255" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.79" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-globo series + - "Glycosphingolipid biosynthesis-globo series" - confidence_score: 0 - !!omap - - id: HMR_0807 + - id: "HMR_0807" - name: "" - metabolites: !!omap - m01959c: -1 @@ -146668,15 +146668,15 @@ - m02525c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-globo series + - "Glycosphingolipid biosynthesis-globo series" - confidence_score: 0 - !!omap - - id: HMR_0809 + - id: "HMR_0809" - name: "" - metabolites: !!omap - m01912c: 1 @@ -146686,15 +146686,15 @@ - m03107c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000183778 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000183778" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-globo series + - "Glycosphingolipid biosynthesis-globo series" - confidence_score: 0 - !!omap - - id: HMR_0810 + - id: "HMR_0810" - name: "" - metabolites: !!omap - m01959c: -1 @@ -146704,15 +146704,15 @@ - m03110c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000148288 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.88 - - references: + - gene_reaction_rule: "ENSG00000148288" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.88" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-globo series + - "Glycosphingolipid biosynthesis-globo series" - confidence_score: 0 - !!omap - - id: HMR_0811 + - id: "HMR_0811" - name: "" - metabolites: !!omap - m01959c: 1 @@ -146721,15 +146721,15 @@ - m02525c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000198951 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.49 - - references: + - gene_reaction_rule: "ENSG00000198951" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.49" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-globo series + - "Glycosphingolipid biosynthesis-globo series" - confidence_score: 0 - !!omap - - id: HMR_0812 + - id: "HMR_0812" - name: "" - metabolites: !!omap - m01590c: 1 @@ -146738,15 +146738,15 @@ - m02491c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008513 or ENSG00000110080 or ENSG00000157350 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.4 - - references: + - gene_reaction_rule: "ENSG00000008513 or ENSG00000110080 or ENSG00000157350" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.4" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-globo series + - "Glycosphingolipid biosynthesis-globo series" - confidence_score: 0 - !!omap - - id: HMR_0813 + - id: "HMR_0813" - name: "" - metabolites: !!omap - m01912c: -1 @@ -146756,15 +146756,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174951 or ENSG00000176920 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.69 - - references: + - gene_reaction_rule: "ENSG00000174951 or ENSG00000176920" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.69" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-globo series + - "Glycosphingolipid biosynthesis-globo series" - confidence_score: 0 - !!omap - - id: HMR_0814 + - id: "HMR_0814" - name: "" - metabolites: !!omap - m02039c: 1 @@ -146774,15 +146774,15 @@ - m03131c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111728 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.8 - - references: + - gene_reaction_rule: "ENSG00000111728" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.8" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-globo series + - "Glycosphingolipid biosynthesis-globo series" - confidence_score: 0 - !!omap - - id: HMR_0859 + - id: "HMR_0859" - name: "" - metabolites: !!omap - m02039c: 1 @@ -146792,15 +146792,15 @@ - m03111c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000176597 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.206 - - references: + - gene_reaction_rule: "ENSG00000176597" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.206" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0860 + - id: "HMR_0860" - name: "" - metabolites: !!omap - m02039c: 1 @@ -146810,15 +146810,15 @@ - m03107c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162630 or ENSG00000172318 or ENSG00000183778 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.86 - - references: + - gene_reaction_rule: "ENSG00000162630 or ENSG00000172318 or ENSG00000183778" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.86" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0861 + - id: "HMR_0861" - name: "" - metabolites: !!omap - m00808c: 1 @@ -146827,15 +146827,15 @@ - m02347c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110080 or ENSG00000126091 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.6 - - references: + - gene_reaction_rule: "ENSG00000110080 or ENSG00000126091" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.6" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0862 + - id: "HMR_0862" - name: "" - metabolites: !!omap - m00808c: -1 @@ -146845,15 +146845,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130383 or ENSG00000156413 or ENSG00000171124 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.65 - - references: + - gene_reaction_rule: "ENSG00000130383 or ENSG00000156413 or ENSG00000171124" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.65" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0863 + - id: "HMR_0863" - name: "" - metabolites: !!omap - m01860c: 1 @@ -146863,15 +146863,15 @@ - m02347c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130383 or ENSG00000156413 or ENSG00000171124 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.65 - - references: + - gene_reaction_rule: "ENSG00000130383 or ENSG00000156413 or ENSG00000171124" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.65" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0864 + - id: "HMR_0864" - name: "" - metabolites: !!omap - m01948c: 1 @@ -146881,15 +146881,15 @@ - m02347c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174951 or ENSG00000176920 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.69 - - references: + - gene_reaction_rule: "ENSG00000174951 or ENSG00000176920" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.69" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0865 + - id: "HMR_0865" - name: "" - metabolites: !!omap - m01873c: 1 @@ -146899,15 +146899,15 @@ - m03107c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000148288 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.87 - - references: + - gene_reaction_rule: "ENSG00000148288" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.87" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0866 + - id: "HMR_0866" - name: "" - metabolites: !!omap - m01873c: -1 @@ -146917,15 +146917,15 @@ - m03091c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174951 or ENSG00000176920 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.69 - - references: + - gene_reaction_rule: "ENSG00000174951 or ENSG00000176920" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.69" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0867 + - id: "HMR_0867" - name: "" - metabolites: !!omap - m02039c: 1 @@ -146935,15 +146935,15 @@ - m03110c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000175164 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.40 - - references: + - gene_reaction_rule: "ENSG00000175164" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.40" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0868 + - id: "HMR_0868" - name: "" - metabolites: !!omap - m02039c: 1 @@ -146953,15 +146953,15 @@ - m03107c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000175164 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.37 - - references: + - gene_reaction_rule: "ENSG00000175164" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.37" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0870 + - id: "HMR_0870" - name: "" - metabolites: !!omap - m01850c: 1 @@ -146971,15 +146971,15 @@ - m03090c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130383 or ENSG00000156413 or ENSG00000171124 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.65 - - references: + - gene_reaction_rule: "ENSG00000130383 or ENSG00000156413 or ENSG00000171124" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.65" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0871 + - id: "HMR_0871" - name: "" - metabolites: !!omap - m01948c: 1 @@ -146989,15 +146989,15 @@ - m02195c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130383 or ENSG00000156413 or ENSG00000171124 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.65 - - references: + - gene_reaction_rule: "ENSG00000130383 or ENSG00000156413 or ENSG00000171124" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.65" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0873 + - id: "HMR_0873" - name: "" - metabolites: !!omap - m01874c: -1 @@ -147007,15 +147007,15 @@ - m03091c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130383 or ENSG00000156413 or ENSG00000171124 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.65 - - references: + - gene_reaction_rule: "ENSG00000130383 or ENSG00000156413 or ENSG00000171124" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.65" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0875 + - id: "HMR_0875" - name: "" - metabolites: !!omap - m02039c: 1 @@ -147025,15 +147025,15 @@ - m03107c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000086062 or ENSG00000117411 or ENSG00000121578 or ENSG00000158850 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000086062 or ENSG00000117411 or ENSG00000121578 or ENSG00000158850" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0876 + - id: "HMR_0876" - name: "" - metabolites: !!omap - m01590c: 1 @@ -147043,15 +147043,15 @@ - m02904c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064225 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.10 - - references: + - gene_reaction_rule: "ENSG00000064225" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.10" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0877 + - id: "HMR_0877" - name: "" - metabolites: !!omap - m00744c: 1 @@ -147061,15 +147061,15 @@ - m02904c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111728 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.8 - - references: + - gene_reaction_rule: "ENSG00000111728" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.8" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0878 + - id: "HMR_0878" - name: "" - metabolites: !!omap - m01948c: 1 @@ -147079,15 +147079,15 @@ - m02904c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000172461 or ENSG00000180549 or ENSG00000196371 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.152;2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000172461 or ENSG00000180549 or ENSG00000196371" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.152;2.4.1.-" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0879 + - id: "HMR_0879" - name: "" - metabolites: !!omap - m02039c: 1 @@ -147097,15 +147097,15 @@ - m03107c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000148288 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.87 - - references: + - gene_reaction_rule: "ENSG00000148288" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.87" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0880 + - id: "HMR_0880" - name: "" - metabolites: !!omap - m01948c: 1 @@ -147115,15 +147115,15 @@ - m03094c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174951 or ENSG00000176920 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.69 - - references: + - gene_reaction_rule: "ENSG00000174951 or ENSG00000176920" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.69" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0881 + - id: "HMR_0881" - name: "" - metabolites: !!omap - m02039c: 1 @@ -147133,15 +147133,15 @@ - m03107c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000175164 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.37 - - references: + - gene_reaction_rule: "ENSG00000175164" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.37" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0882 + - id: "HMR_0882" - name: "" - metabolites: !!omap - m01948c: 1 @@ -147151,15 +147151,15 @@ - m02196c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000172461 or ENSG00000180549 or ENSG00000196371 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.152;2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000172461 or ENSG00000180549 or ENSG00000196371" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.152;2.4.1.-" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0883 + - id: "HMR_0883" - name: "" - metabolites: !!omap - m01948c: 1 @@ -147169,15 +147169,15 @@ - m02683c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174951 or ENSG00000176920 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.69 - - references: + - gene_reaction_rule: "ENSG00000174951 or ENSG00000176920" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.69" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0884 + - id: "HMR_0884" - name: "" - metabolites: !!omap - m02039c: 1 @@ -147187,15 +147187,15 @@ - m03110c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000175164 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.40 - - references: + - gene_reaction_rule: "ENSG00000175164" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.40" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0885 + - id: "HMR_0885" - name: "" - metabolites: !!omap - m01876c: 1 @@ -147205,15 +147205,15 @@ - m03107c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0886 + - id: "HMR_0886" - name: "" - metabolites: !!omap - m01876c: -1 @@ -147223,15 +147223,15 @@ - m03097c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174951 or ENSG00000176920 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.69 - - references: + - gene_reaction_rule: "ENSG00000174951 or ENSG00000176920" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.69" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0887 + - id: "HMR_0887" - name: "" - metabolites: !!omap - m02039c: 1 @@ -147241,15 +147241,15 @@ - m03110c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000175164 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.40 - - references: + - gene_reaction_rule: "ENSG00000175164" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.40" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0888 + - id: "HMR_0888" - name: "" - metabolites: !!omap - m01948c: 1 @@ -147259,15 +147259,15 @@ - m02683c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130383 or ENSG00000156413 or ENSG00000171124 or ENSG00000172461 or ENSG00000196371 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.152;2.4.1.65;2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000130383 or ENSG00000156413 or ENSG00000171124 or ENSG00000172461 or ENSG00000196371" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.152;2.4.1.65;2.4.1.-" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0889 + - id: "HMR_0889" - name: "" - metabolites: !!omap - m02039c: 1 @@ -147277,15 +147277,15 @@ - m03111c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000170340 or ENSG00000174684 or ENSG00000176383 or ENSG00000179913 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.149;2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000170340 or ENSG00000174684 or ENSG00000176383 or ENSG00000179913" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.149;2.4.1.-" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0890 + - id: "HMR_0890" - name: "" - metabolites: !!omap - m02039c: 1 @@ -147295,15 +147295,15 @@ - m03107c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000086062 or ENSG00000117411 or ENSG00000121578 or ENSG00000158850 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000086062 or ENSG00000117411 or ENSG00000121578 or ENSG00000158850" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0891 + - id: "HMR_0891" - name: "" - metabolites: !!omap - m02039c: 1 @@ -147313,15 +147313,15 @@ - m03111c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000170340 or ENSG00000174684 or ENSG00000176383 or ENSG00000179913 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.149;2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000170340 or ENSG00000174684 or ENSG00000176383 or ENSG00000179913" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.149;2.4.1.-" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0892 + - id: "HMR_0892" - name: "" - metabolites: !!omap - m02039c: 1 @@ -147331,15 +147331,15 @@ - m03107c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000179913 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000179913" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0893 + - id: "HMR_0893" - name: "" - metabolites: !!omap - m01885c: 1 @@ -147349,15 +147349,15 @@ - m02596c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130383 or ENSG00000156413 or ENSG00000171124 or ENSG00000172461 or ENSG00000196371 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.152;2.4.1.65;2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000130383 or ENSG00000156413 or ENSG00000171124 or ENSG00000172461 or ENSG00000196371" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.152;2.4.1.65;2.4.1.-" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0894 + - id: "HMR_0894" - name: "" - metabolites: !!omap - m01885c: -1 @@ -147367,15 +147367,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130383 or ENSG00000156413 or ENSG00000171124 or ENSG00000172461 or ENSG00000196371 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.152;2.4.1.65;2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000130383 or ENSG00000156413 or ENSG00000171124 or ENSG00000172461 or ENSG00000196371" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.152;2.4.1.65;2.4.1.-" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0895 + - id: "HMR_0895" - name: "" - metabolites: !!omap - m01886c: -1 @@ -147385,15 +147385,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130383 or ENSG00000156413 or ENSG00000171124 or ENSG00000172461 or ENSG00000196371 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.152;2.4.1.65;2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000130383 or ENSG00000156413 or ENSG00000171124 or ENSG00000172461 or ENSG00000196371" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.152;2.4.1.65;2.4.1.-" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0896 + - id: "HMR_0896" - name: "" - metabolites: !!omap - m01948c: 1 @@ -147403,15 +147403,15 @@ - m03133c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130383 or ENSG00000156413 or ENSG00000171124 or ENSG00000172461 or ENSG00000196371 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.152;2.4.1.65;2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000130383 or ENSG00000156413 or ENSG00000171124 or ENSG00000172461 or ENSG00000196371" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.152;2.4.1.65;2.4.1.-" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0897 + - id: "HMR_0897" - name: "" - metabolites: !!omap - m01948c: 1 @@ -147421,15 +147421,15 @@ - m03133c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130383 or ENSG00000156413 or ENSG00000171124 or ENSG00000172461 or ENSG00000196371 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.152;2.4.1.65;2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000130383 or ENSG00000156413 or ENSG00000171124 or ENSG00000172461 or ENSG00000196371" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.152;2.4.1.65;2.4.1.-" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0898 + - id: "HMR_0898" - name: "" - metabolites: !!omap - m01948c: 1 @@ -147439,15 +147439,15 @@ - m03137c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174951 or ENSG00000176920 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.69 - - references: + - gene_reaction_rule: "ENSG00000174951 or ENSG00000176920" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.69" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0899 + - id: "HMR_0899" - name: "" - metabolites: !!omap - m01882c: 1 @@ -147457,15 +147457,15 @@ - m03137c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130383 or ENSG00000156413 or ENSG00000171124 or ENSG00000172461 or ENSG00000196371 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.152;2.4.1.65;2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000130383 or ENSG00000156413 or ENSG00000171124 or ENSG00000172461 or ENSG00000196371" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.152;2.4.1.65;2.4.1.-" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0900 + - id: "HMR_0900" - name: "" - metabolites: !!omap - m01882c: -1 @@ -147475,15 +147475,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130383 or ENSG00000156413 or ENSG00000171124 or ENSG00000172461 or ENSG00000196371 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.152;2.4.1.65;2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000130383 or ENSG00000156413 or ENSG00000171124 or ENSG00000172461 or ENSG00000196371" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.152;2.4.1.65;2.4.1.-" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0901 + - id: "HMR_0901" - name: "" - metabolites: !!omap - m01884c: 1 @@ -147493,15 +147493,15 @@ - m03137c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000175164 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.37 - - references: + - gene_reaction_rule: "ENSG00000175164" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.37" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0902 + - id: "HMR_0902" - name: "" - metabolites: !!omap - m01877c: 1 @@ -147511,15 +147511,15 @@ - m03137c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000175164 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.40 - - references: + - gene_reaction_rule: "ENSG00000175164" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.40" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0903 + - id: "HMR_0903" - name: "" - metabolites: !!omap - m01877c: -1 @@ -147529,15 +147529,15 @@ - m03107c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0904 + - id: "HMR_0904" - name: "" - metabolites: !!omap - m01878c: -1 @@ -147547,15 +147547,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174951 or ENSG00000176920 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.69 - - references: + - gene_reaction_rule: "ENSG00000174951 or ENSG00000176920" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.69" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0905 + - id: "HMR_0905" - name: "" - metabolites: !!omap - m01879c: -1 @@ -147565,15 +147565,15 @@ - m03110c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000175164 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.40 - - references: + - gene_reaction_rule: "ENSG00000175164" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.40" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0906 + - id: "HMR_0906" - name: "" - metabolites: !!omap - m01880c: 1 @@ -147583,15 +147583,15 @@ - m03111c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111846 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.150 - - references: + - gene_reaction_rule: "ENSG00000111846" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.150" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0907 + - id: "HMR_0907" - name: "" - metabolites: !!omap - m01880c: -1 @@ -147601,15 +147601,15 @@ - m03107c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0908 + - id: "HMR_0908" - name: "" - metabolites: !!omap - m01948c: 1 @@ -147619,15 +147619,15 @@ - m02490c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174951 or ENSG00000176920 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.69 - - references: + - gene_reaction_rule: "ENSG00000174951 or ENSG00000176920" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.69" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0909 + - id: "HMR_0909" - name: "" - metabolites: !!omap - m01881c: 1 @@ -147637,15 +147637,15 @@ - m02490c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174951 or ENSG00000176920 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.69 - - references: + - gene_reaction_rule: "ENSG00000174951 or ENSG00000176920" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.69" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0910 + - id: "HMR_0910" - name: "" - metabolites: !!omap - m01590c: 1 @@ -147655,15 +147655,15 @@ - m03138c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064225 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.10 - - references: + - gene_reaction_rule: "ENSG00000064225" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.10" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0911 + - id: "HMR_0911" - name: "" - metabolites: !!omap - m01948c: 1 @@ -147673,15 +147673,15 @@ - m02594c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130383 or ENSG00000156413 or ENSG00000171124 or ENSG00000172461 or ENSG00000196371 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.152;2.4.1.65;2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000130383 or ENSG00000156413 or ENSG00000171124 or ENSG00000172461 or ENSG00000196371" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.152;2.4.1.65;2.4.1.-" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0912 + - id: "HMR_0912" - name: "" - metabolites: !!omap - m02039c: 1 @@ -147691,15 +147691,15 @@ - m03107c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.23 - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.23" + - references: "" - subsystem: - - Glycosphingolipid biosynthesis-lacto and neolacto series + - "Glycosphingolipid biosynthesis-lacto and neolacto series" - confidence_score: 0 - !!omap - - id: HMR_0787 + - id: "HMR_0787" - name: "" - metabolites: !!omap - m01430l: 1 @@ -147708,15 +147708,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000177628 or ENSG00000228727 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.45 - - references: + - gene_reaction_rule: "ENSG00000177628 or ENSG00000228727" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.45" + - references: "" - subsystem: - - Glycosphingolipid metabolism + - "Glycosphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0790 + - id: "HMR_0790" - name: "" - metabolites: !!omap - m01679l: 1 @@ -147726,15 +147726,15 @@ - m02948l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006756 or ENSG00000100299 or ENSG00000157399 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.8 - - references: + - gene_reaction_rule: "ENSG00000006756 or ENSG00000100299 or ENSG00000157399" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.8" + - references: "" - subsystem: - - Glycosphingolipid metabolism + - "Glycosphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0792 + - id: "HMR_0792" - name: "" - metabolites: !!omap - m01679l: -1 @@ -147744,15 +147744,15 @@ - m02948l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000128242 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.11 - - references: + - gene_reaction_rule: "ENSG00000128242" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.11" + - references: "" - subsystem: - - Glycosphingolipid metabolism + - "Glycosphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0793 + - id: "HMR_0793" - name: "" - metabolites: !!omap - m01430l: 1 @@ -147761,15 +147761,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000054983 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.46 - - references: + - gene_reaction_rule: "ENSG00000054983" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.46" + - references: "" - subsystem: - - Glycosphingolipid metabolism + - "Glycosphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0794 + - id: "HMR_0794" - name: "" - metabolites: !!omap - m01659c: -1 @@ -147779,15 +147779,15 @@ - m02946c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101846 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.2 - - references: + - gene_reaction_rule: "ENSG00000101846" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.2" + - references: "" - subsystem: - - Glycosphingolipid metabolism + - "Glycosphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0797 + - id: "HMR_0797" - name: "" - metabolites: !!omap - m01430l: 1 @@ -147797,15 +147797,15 @@ - m02908l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103056 or ENSG00000135587 or ENSG00000136699 or ENSG00000166311 or ENSG00000182156 - - rxnFrom: HMRdatabase - - eccodes: 3.1.4.12 - - references: + - gene_reaction_rule: "ENSG00000103056 or ENSG00000135587 or ENSG00000136699 or ENSG00000166311 or ENSG00000182156" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.4.12" + - references: "" - subsystem: - - Glycosphingolipid metabolism + - "Glycosphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0804 + - id: "HMR_0804" - name: "" - metabolites: !!omap - m01910l: 1 @@ -147814,15 +147814,15 @@ - m02328l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Glycosphingolipid metabolism + - "Glycosphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0808 + - id: "HMR_0808" - name: "" - metabolites: !!omap - m01959l: -1 @@ -147831,15 +147831,15 @@ - m02525l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Glycosphingolipid metabolism + - "Glycosphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0826 + - id: "HMR_0826" - name: "" - metabolites: !!omap - m02015l: -1 @@ -147848,15 +147848,15 @@ - m02543l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115488 or ENSG00000162139 or ENSG00000204099 or ENSG00000204386 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.18 - - references: + - gene_reaction_rule: "ENSG00000115488 or ENSG00000162139 or ENSG00000204099 or ENSG00000204386" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.18" + - references: "" - subsystem: - - Glycosphingolipid metabolism + - "Glycosphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0832 + - id: "HMR_0832" - name: "" - metabolites: !!omap - m01910l: 1 @@ -147865,15 +147865,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115850 and ENSG00000163521 and ENSG00000170266 and ENSG00000188167 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.23 - - references: + - gene_reaction_rule: "ENSG00000115850 and ENSG00000163521 and ENSG00000170266 and ENSG00000188167" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.23" + - references: "" - subsystem: - - Glycosphingolipid metabolism + - "Glycosphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0834 + - id: "HMR_0834" - name: "" - metabolites: !!omap - m01679l: 1 @@ -147883,15 +147883,15 @@ - m03160l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115488 or ENSG00000140534 or ENSG00000162139 or ENSG00000204099 or ENSG00000204386 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.18 - - references: + - gene_reaction_rule: "ENSG00000115488 or ENSG00000140534 or ENSG00000162139 or ENSG00000204099 or ENSG00000204386" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.18" + - references: "" - subsystem: - - Glycosphingolipid metabolism + - "Glycosphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0835 + - id: "HMR_0835" - name: "" - metabolites: !!omap - m02011l: -1 @@ -147899,15 +147899,15 @@ - m02013l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000196743 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000196743" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Glycosphingolipid metabolism + - "Glycosphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0836 + - id: "HMR_0836" - name: "" - metabolites: !!omap - m02012l: 1 @@ -147917,15 +147917,15 @@ - m02525l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Glycosphingolipid metabolism + - "Glycosphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0914 + - id: "HMR_0914" - name: "" - metabolites: !!omap - m01910l: 1 @@ -147934,15 +147934,15 @@ - m02929l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000054983 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.46 - - references: PMID:8281145 + - gene_reaction_rule: "ENSG00000054983" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.46" + - references: "PMID:8281145" - subsystem: - - Glycosphingolipid metabolism + - "Glycosphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0915 + - id: "HMR_0915" - name: "" - metabolites: !!omap - m02039c: 1 @@ -147952,15 +147952,15 @@ - m02810c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000128242 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.11 - - references: PMID:1330860;PMID:1330860;PMID:1330860;PMID:1330860 + - gene_reaction_rule: "ENSG00000128242" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.11" + - references: "PMID:1330860;PMID:1330860;PMID:1330860;PMID:1330860" - subsystem: - - Glycosphingolipid metabolism + - "Glycosphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0919 + - id: "HMR_0919" - name: "" - metabolites: !!omap - m01430c: -1 @@ -147970,15 +147970,15 @@ - m03107c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174607 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.45 - - references: PMID:9125199;PMID:423891;PMID:423891;PMID:423891;PMID:9125199;PMID:9125199 + - gene_reaction_rule: "ENSG00000174607" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.45" + - references: "PMID:9125199;PMID:423891;PMID:423891;PMID:423891;PMID:9125199;PMID:9125199" - subsystem: - - Glycosphingolipid metabolism + - "Glycosphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0920 + - id: "HMR_0920" - name: "" - metabolites: !!omap - m01430g: -1 @@ -147988,15 +147988,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174607 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.45 - - references: PMID:9125199;PMID:423891;PMID:423891;PMID:423891;PMID:9125199;PMID:9125199 + - gene_reaction_rule: "ENSG00000174607" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.45" + - references: "PMID:9125199;PMID:423891;PMID:423891;PMID:423891;PMID:9125199;PMID:9125199" - subsystem: - - Glycosphingolipid metabolism + - "Glycosphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0921 + - id: "HMR_0921" - name: "" - metabolites: !!omap - m01430r: -1 @@ -148006,15 +148006,15 @@ - m03107r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174607 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.45 - - references: PMID:9125199;PMID:423891;PMID:423891;PMID:423891;PMID:9125199;PMID:9125199 + - gene_reaction_rule: "ENSG00000174607" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.45" + - references: "PMID:9125199;PMID:423891;PMID:423891;PMID:423891;PMID:9125199;PMID:9125199" - subsystem: - - Glycosphingolipid metabolism + - "Glycosphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0924 + - id: "HMR_0924" - name: "" - metabolites: !!omap - m01679c: -1 @@ -148024,15 +148024,15 @@ - m03107c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000016864 or ENSG00000027847 or ENSG00000060642 or ENSG00000069943 or ENSG00000085998 or ENSG00000086062 or ENSG00000102595 or ENSG00000106648 or ENSG00000109586 or ENSG00000117411 or ENSG00000118017 or ENSG00000118276 or ENSG00000119227 or ENSG00000120820 or ENSG00000121578 or ENSG00000124091 or ENSG00000134910 or ENSG00000136731 or ENSG00000139044 or ENSG00000143315 or ENSG00000147162 or ENSG00000148288 or ENSG00000156966 or ENSG00000158470 or ENSG00000158850 or ENSG00000162630 or ENSG00000162885 or ENSG00000163389 or ENSG00000163527 or ENSG00000167080 or ENSG00000167889 or ENSG00000170340 or ENSG00000172318 or ENSG00000172461 or ENSG00000172728 or ENSG00000175711 or ENSG00000176383 or ENSG00000176597 or ENSG00000177191 or ENSG00000179913 or ENSG00000180549 or ENSG00000182272 or ENSG00000183778 or ENSG00000187676 or ENSG00000189366 or ENSG00000196371 or ENSG00000196968 or ENSG00000198488 or ENSG00000204007 or ENSG00000205301 or ENSG00000237172 or ENSG00000251287 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: PMID:7930586;PMID:7930586;PMID:7930586 + - gene_reaction_rule: "ENSG00000016864 or ENSG00000027847 or ENSG00000060642 or ENSG00000069943 or ENSG00000085998 or ENSG00000086062 or ENSG00000102595 or ENSG00000106648 or ENSG00000109586 or ENSG00000117411 or ENSG00000118017 or ENSG00000118276 or ENSG00000119227 or ENSG00000120820 or ENSG00000121578 or ENSG00000124091 or ENSG00000134910 or ENSG00000136731 or ENSG00000139044 or ENSG00000143315 or ENSG00000147162 or ENSG00000148288 or ENSG00000156966 or ENSG00000158470 or ENSG00000158850 or ENSG00000162630 or ENSG00000162885 or ENSG00000163389 or ENSG00000163527 or ENSG00000167080 or ENSG00000167889 or ENSG00000170340 or ENSG00000172318 or ENSG00000172461 or ENSG00000172728 or ENSG00000175711 or ENSG00000176383 or ENSG00000176597 or ENSG00000177191 or ENSG00000179913 or ENSG00000180549 or ENSG00000182272 or ENSG00000183778 or ENSG00000187676 or ENSG00000189366 or ENSG00000196371 or ENSG00000196968 or ENSG00000198488 or ENSG00000204007 or ENSG00000205301 or ENSG00000237172 or ENSG00000251287" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "PMID:7930586;PMID:7930586;PMID:7930586" - subsystem: - - Glycosphingolipid metabolism + - "Glycosphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0925 + - id: "HMR_0925" - name: "" - metabolites: !!omap - m01679g: -1 @@ -148042,15 +148042,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000016864 or ENSG00000027847 or ENSG00000060642 or ENSG00000069943 or ENSG00000085998 or ENSG00000086062 or ENSG00000102595 or ENSG00000106648 or ENSG00000109586 or ENSG00000117411 or ENSG00000118017 or ENSG00000118276 or ENSG00000119227 or ENSG00000120820 or ENSG00000121578 or ENSG00000124091 or ENSG00000134910 or ENSG00000136731 or ENSG00000139044 or ENSG00000143315 or ENSG00000147162 or ENSG00000148288 or ENSG00000156966 or ENSG00000158470 or ENSG00000158850 or ENSG00000162630 or ENSG00000162885 or ENSG00000163389 or ENSG00000163527 or ENSG00000167080 or ENSG00000167889 or ENSG00000170340 or ENSG00000172318 or ENSG00000172461 or ENSG00000172728 or ENSG00000175711 or ENSG00000176383 or ENSG00000176597 or ENSG00000177191 or ENSG00000179913 or ENSG00000180549 or ENSG00000182272 or ENSG00000183778 or ENSG00000187676 or ENSG00000189366 or ENSG00000196371 or ENSG00000196968 or ENSG00000198488 or ENSG00000204007 or ENSG00000205301 or ENSG00000237172 or ENSG00000251287 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: PMID:7930586;PMID:7930586;PMID:7930586 + - gene_reaction_rule: "ENSG00000016864 or ENSG00000027847 or ENSG00000060642 or ENSG00000069943 or ENSG00000085998 or ENSG00000086062 or ENSG00000102595 or ENSG00000106648 or ENSG00000109586 or ENSG00000117411 or ENSG00000118017 or ENSG00000118276 or ENSG00000119227 or ENSG00000120820 or ENSG00000121578 or ENSG00000124091 or ENSG00000134910 or ENSG00000136731 or ENSG00000139044 or ENSG00000143315 or ENSG00000147162 or ENSG00000148288 or ENSG00000156966 or ENSG00000158470 or ENSG00000158850 or ENSG00000162630 or ENSG00000162885 or ENSG00000163389 or ENSG00000163527 or ENSG00000167080 or ENSG00000167889 or ENSG00000170340 or ENSG00000172318 or ENSG00000172461 or ENSG00000172728 or ENSG00000175711 or ENSG00000176383 or ENSG00000176597 or ENSG00000177191 or ENSG00000179913 or ENSG00000180549 or ENSG00000182272 or ENSG00000183778 or ENSG00000187676 or ENSG00000189366 or ENSG00000196371 or ENSG00000196968 or ENSG00000198488 or ENSG00000204007 or ENSG00000205301 or ENSG00000237172 or ENSG00000251287" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "PMID:7930586;PMID:7930586;PMID:7930586" - subsystem: - - Glycosphingolipid metabolism + - "Glycosphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0926 + - id: "HMR_0926" - name: "" - metabolites: !!omap - m01972c: -1 @@ -148060,15 +148060,15 @@ - m03107c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000016864 or ENSG00000027847 or ENSG00000060642 or ENSG00000069943 or ENSG00000085998 or ENSG00000086062 or ENSG00000102595 or ENSG00000106648 or ENSG00000109586 or ENSG00000117411 or ENSG00000118017 or ENSG00000118276 or ENSG00000119227 or ENSG00000120820 or ENSG00000121578 or ENSG00000124091 or ENSG00000134910 or ENSG00000136731 or ENSG00000139044 or ENSG00000143315 or ENSG00000147162 or ENSG00000148288 or ENSG00000156966 or ENSG00000158470 or ENSG00000158850 or ENSG00000162630 or ENSG00000162885 or ENSG00000163389 or ENSG00000163527 or ENSG00000167080 or ENSG00000167889 or ENSG00000170340 or ENSG00000172318 or ENSG00000172461 or ENSG00000172728 or ENSG00000175711 or ENSG00000176383 or ENSG00000176597 or ENSG00000177191 or ENSG00000179913 or ENSG00000180549 or ENSG00000182272 or ENSG00000183778 or ENSG00000187676 or ENSG00000189366 or ENSG00000196371 or ENSG00000196968 or ENSG00000198488 or ENSG00000204007 or ENSG00000205301 or ENSG00000237172 or ENSG00000251287 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: PMID:11172001;PMID:11172001;PMID:11172001 + - gene_reaction_rule: "ENSG00000016864 or ENSG00000027847 or ENSG00000060642 or ENSG00000069943 or ENSG00000085998 or ENSG00000086062 or ENSG00000102595 or ENSG00000106648 or ENSG00000109586 or ENSG00000117411 or ENSG00000118017 or ENSG00000118276 or ENSG00000119227 or ENSG00000120820 or ENSG00000121578 or ENSG00000124091 or ENSG00000134910 or ENSG00000136731 or ENSG00000139044 or ENSG00000143315 or ENSG00000147162 or ENSG00000148288 or ENSG00000156966 or ENSG00000158470 or ENSG00000158850 or ENSG00000162630 or ENSG00000162885 or ENSG00000163389 or ENSG00000163527 or ENSG00000167080 or ENSG00000167889 or ENSG00000170340 or ENSG00000172318 or ENSG00000172461 or ENSG00000172728 or ENSG00000175711 or ENSG00000176383 or ENSG00000176597 or ENSG00000177191 or ENSG00000179913 or ENSG00000180549 or ENSG00000182272 or ENSG00000183778 or ENSG00000187676 or ENSG00000189366 or ENSG00000196371 or ENSG00000196968 or ENSG00000198488 or ENSG00000204007 or ENSG00000205301 or ENSG00000237172 or ENSG00000251287" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "PMID:11172001;PMID:11172001;PMID:11172001" - subsystem: - - Glycosphingolipid metabolism + - "Glycosphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7188 + - id: "HMR_7188" - name: "" - metabolites: !!omap - m01142r: 1 @@ -148078,15 +148078,15 @@ - m02730r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112293 - - rxnFrom: HMRdatabase - - eccodes: 3.1.4.50 - - references: + - gene_reaction_rule: "ENSG00000112293" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.4.50" + - references: "" - subsystem: - - Glycosylphosphatidylinositol (GPI)-anchor biosynthesis + - "Glycosylphosphatidylinositol (GPI)-anchor biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8378 + - id: "HMR_8378" - name: "" - metabolites: !!omap - m00205c: 1 @@ -148096,15 +148096,15 @@ - m02645c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000009830 or ENSG00000130714 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.109 - - references: + - gene_reaction_rule: "ENSG00000009830 or ENSG00000130714" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.109" + - references: "" - subsystem: - - Glycosylphosphatidylinositol (GPI)-anchor biosynthesis + - "Glycosylphosphatidylinositol (GPI)-anchor biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8379 + - id: "HMR_8379" - name: "" - metabolites: !!omap - m02039c: 1 @@ -148114,15 +148114,15 @@ - m03111c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000007541 and ENSG00000100564 and ENSG00000135845 and ENSG00000165195) or ENSG00000138641 or ENSG00000145337 or ENSG00000185808 or ENSG00000255072 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.198 - - references: + - gene_reaction_rule: "(ENSG00000007541 and ENSG00000100564 and ENSG00000135845 and ENSG00000165195) or ENSG00000138641 or ENSG00000145337 or ENSG00000185808 or ENSG00000255072" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.198" + - references: "" - subsystem: - - Glycosylphosphatidylinositol (GPI)-anchor biosynthesis + - "Glycosylphosphatidylinositol (GPI)-anchor biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7185 + - id: "HMR_7185" - name: "" - metabolites: !!omap - m02039r: 1 @@ -148132,15 +148132,15 @@ - m03111r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000007541 and ENSG00000100564 and ENSG00000135845 and ENSG00000165195) or ENSG00000138641 or ENSG00000145337 or ENSG00000185808 or ENSG00000255072 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.198 - - references: + - gene_reaction_rule: "(ENSG00000007541 and ENSG00000100564 and ENSG00000135845 and ENSG00000165195) or ENSG00000138641 or ENSG00000145337 or ENSG00000185808 or ENSG00000255072" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.198" + - references: "" - subsystem: - - Glycosylphosphatidylinositol (GPI)-anchor biosynthesis + - "Glycosylphosphatidylinositol (GPI)-anchor biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8380 + - id: "HMR_8380" - name: "" - metabolites: !!omap - m01143c: 1 @@ -148149,15 +148149,15 @@ - m02523c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108474 - - rxnFrom: HMRdatabase - - eccodes: 3.5.1.89 - - references: + - gene_reaction_rule: "ENSG00000108474" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.1.89" + - references: "" - subsystem: - - Glycosylphosphatidylinositol (GPI)-anchor biosynthesis + - "Glycosylphosphatidylinositol (GPI)-anchor biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7186 + - id: "HMR_7186" - name: "" - metabolites: !!omap - m01143r: 1 @@ -148166,15 +148166,15 @@ - m02523r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108474 - - rxnFrom: HMRdatabase - - eccodes: 3.5.1.89 - - references: + - gene_reaction_rule: "ENSG00000108474" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.1.89" + - references: "" - subsystem: - - Glycosylphosphatidylinositol (GPI)-anchor biosynthesis + - "Glycosylphosphatidylinositol (GPI)-anchor biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8381 + - id: "HMR_8381" - name: "" - metabolites: !!omap - m01143c: -1 @@ -148183,15 +148183,15 @@ - m02678c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000277161 - - rxnFrom: HMRdatabase - - eccodes: 2.3.-.- - - references: + - gene_reaction_rule: "ENSG00000277161" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.-.-" + - references: "" - subsystem: - - Glycosylphosphatidylinositol (GPI)-anchor biosynthesis + - "Glycosylphosphatidylinositol (GPI)-anchor biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7187 + - id: "HMR_7187" - name: "" - metabolites: !!omap - m01143r: -1 @@ -148200,15 +148200,15 @@ - m02678r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000277161 - - rxnFrom: HMRdatabase - - eccodes: 2.3.-.- - - references: + - gene_reaction_rule: "ENSG00000277161" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.-.-" + - references: "" - subsystem: - - Glycosylphosphatidylinositol (GPI)-anchor biosynthesis + - "Glycosylphosphatidylinositol (GPI)-anchor biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8383 + - id: "HMR_8383" - name: "" - metabolites: !!omap - m01733r: 1 @@ -148218,15 +148218,15 @@ - m02483r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000143315 and ENSG00000163964 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000143315 and ENSG00000163964" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "" - subsystem: - - Glycosylphosphatidylinositol (GPI)-anchor biosynthesis + - "Glycosylphosphatidylinositol (GPI)-anchor biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8384 + - id: "HMR_8384" - name: "" - metabolites: !!omap - m01733r: 1 @@ -148236,15 +148236,15 @@ - m02483r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060642 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000060642" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "" - subsystem: - - Glycosylphosphatidylinositol (GPI)-anchor biosynthesis + - "Glycosylphosphatidylinositol (GPI)-anchor biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8385 + - id: "HMR_8385" - name: "" - metabolites: !!omap - m01733r: 1 @@ -148254,15 +148254,15 @@ - m02433r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000069943 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000069943" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "" - subsystem: - - Glycosylphosphatidylinositol (GPI)-anchor biosynthesis + - "Glycosylphosphatidylinositol (GPI)-anchor biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8387 + - id: "HMR_8387" - name: "" - metabolites: !!omap - m01733r: 1 @@ -148272,15 +148272,15 @@ - m02463r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060642 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000060642" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "" - subsystem: - - Glycosylphosphatidylinositol (GPI)-anchor biosynthesis + - "Glycosylphosphatidylinositol (GPI)-anchor biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8388 + - id: "HMR_8388" - name: "" - metabolites: !!omap - m01733r: 1 @@ -148290,15 +148290,15 @@ - m02463r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000069943 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000069943" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "" - subsystem: - - Glycosylphosphatidylinositol (GPI)-anchor biosynthesis + - "Glycosylphosphatidylinositol (GPI)-anchor biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8389 + - id: "HMR_8389" - name: "" - metabolites: !!omap - m01733r: 1 @@ -148308,15 +148308,15 @@ - m02432r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119227 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000119227" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "" - subsystem: - - Glycosylphosphatidylinositol (GPI)-anchor biosynthesis + - "Glycosylphosphatidylinositol (GPI)-anchor biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8390 + - id: "HMR_8390" - name: "" - metabolites: !!omap - m01733r: 1 @@ -148326,15 +148326,15 @@ - m02461r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119227 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000119227" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "" - subsystem: - - Glycosylphosphatidylinositol (GPI)-anchor biosynthesis + - "Glycosylphosphatidylinositol (GPI)-anchor biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8391 + - id: "HMR_8391" - name: "" - metabolites: !!omap - m00236r: 1 @@ -148343,15 +148343,15 @@ - m02685r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197563 - - rxnFrom: HMRdatabase - - eccodes: 2.7.-.- - - references: + - gene_reaction_rule: "ENSG00000197563" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.-.-" + - references: "" - subsystem: - - Glycosylphosphatidylinositol (GPI)-anchor biosynthesis + - "Glycosylphosphatidylinositol (GPI)-anchor biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8392 + - id: "HMR_8392" - name: "" - metabolites: !!omap - m00236r: 1 @@ -148360,15 +148360,15 @@ - m02685r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197563 - - rxnFrom: HMRdatabase - - eccodes: 2.7.-.- - - references: + - gene_reaction_rule: "ENSG00000197563" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.-.-" + - references: "" - subsystem: - - Glycosylphosphatidylinositol (GPI)-anchor biosynthesis + - "Glycosylphosphatidylinositol (GPI)-anchor biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8393 + - id: "HMR_8393" - name: "" - metabolites: !!omap - m00236r: 1 @@ -148377,15 +148377,15 @@ - m02685r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151665 or ENSG00000165282 or ENSG00000174227 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000151665 or ENSG00000165282 or ENSG00000174227" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Glycosylphosphatidylinositol (GPI)-anchor biosynthesis + - "Glycosylphosphatidylinositol (GPI)-anchor biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8394 + - id: "HMR_8394" - name: "" - metabolites: !!omap - m00236r: 1 @@ -148394,15 +148394,15 @@ - m02685r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197563 - - rxnFrom: HMRdatabase - - eccodes: 2.7.-.- - - references: + - gene_reaction_rule: "ENSG00000197563" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.-.-" + - references: "" - subsystem: - - Glycosylphosphatidylinositol (GPI)-anchor biosynthesis + - "Glycosylphosphatidylinositol (GPI)-anchor biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8395 + - id: "HMR_8395" - name: "" - metabolites: !!omap - m00236r: 1 @@ -148411,15 +148411,15 @@ - m02685r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151665 or ENSG00000174227 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000151665 or ENSG00000174227" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Glycosylphosphatidylinositol (GPI)-anchor biosynthesis + - "Glycosylphosphatidylinositol (GPI)-anchor biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8396 + - id: "HMR_8396" - name: "" - metabolites: !!omap - m00236r: 1 @@ -148428,15 +148428,15 @@ - m02685r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151665 or ENSG00000165282 or ENSG00000174227 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000151665 or ENSG00000165282 or ENSG00000174227" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Glycosylphosphatidylinositol (GPI)-anchor biosynthesis + - "Glycosylphosphatidylinositol (GPI)-anchor biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8397 + - id: "HMR_8397" - name: "" - metabolites: !!omap - m00236r: 1 @@ -148445,15 +148445,15 @@ - m02685r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197563 - - rxnFrom: HMRdatabase - - eccodes: 2.7.-.- - - references: + - gene_reaction_rule: "ENSG00000197563" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.-.-" + - references: "" - subsystem: - - Glycosylphosphatidylinositol (GPI)-anchor biosynthesis + - "Glycosylphosphatidylinositol (GPI)-anchor biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8398 + - id: "HMR_8398" - name: "" - metabolites: !!omap - m00236r: 1 @@ -148462,15 +148462,15 @@ - m02685r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151665 or ENSG00000174227 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000151665 or ENSG00000174227" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Glycosylphosphatidylinositol (GPI)-anchor biosynthesis + - "Glycosylphosphatidylinositol (GPI)-anchor biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8399 + - id: "HMR_8399" - name: "" - metabolites: !!omap - m00236r: 1 @@ -148479,15 +148479,15 @@ - m02685r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197563 - - rxnFrom: HMRdatabase - - eccodes: 2.7.-.- - - references: + - gene_reaction_rule: "ENSG00000197563" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.-.-" + - references: "" - subsystem: - - Glycosylphosphatidylinositol (GPI)-anchor biosynthesis + - "Glycosylphosphatidylinositol (GPI)-anchor biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8401 + - id: "HMR_8401" - name: "" - metabolites: !!omap - m00236r: 1 @@ -148496,15 +148496,15 @@ - m02685r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151665 or ENSG00000165282 or ENSG00000174227 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000151665 or ENSG00000165282 or ENSG00000174227" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Glycosylphosphatidylinositol (GPI)-anchor biosynthesis + - "Glycosylphosphatidylinositol (GPI)-anchor biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8402 + - id: "HMR_8402" - name: "" - metabolites: !!omap - m01779r: -1 @@ -148513,15 +148513,15 @@ - m02022r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087111 and ENSG00000101464 and ENSG00000124155 and ENSG00000142892 and ENSG00000197858 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000087111 and ENSG00000101464 and ENSG00000124155 and ENSG00000142892 and ENSG00000197858" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Glycosylphosphatidylinositol (GPI)-anchor biosynthesis + - "Glycosylphosphatidylinositol (GPI)-anchor biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8403 + - id: "HMR_8403" - name: "" - metabolites: !!omap - m01665r: 1 @@ -148531,15 +148531,15 @@ - m02674r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197121 - - rxnFrom: HMRdatabase - - eccodes: 3.1.-.- - - references: + - gene_reaction_rule: "ENSG00000197121" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.-.-" + - references: "" - subsystem: - - Glycosylphosphatidylinositol (GPI)-anchor biosynthesis + - "Glycosylphosphatidylinositol (GPI)-anchor biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8404 + - id: "HMR_8404" - name: "" - metabolites: !!omap - m02001r: -1 @@ -148548,15 +148548,15 @@ - m02022r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087111 and ENSG00000101464 and ENSG00000124155 and ENSG00000142892 and ENSG00000197858 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000087111 and ENSG00000101464 and ENSG00000124155 and ENSG00000142892 and ENSG00000197858" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Glycosylphosphatidylinositol (GPI)-anchor biosynthesis + - "Glycosylphosphatidylinositol (GPI)-anchor biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8405 + - id: "HMR_8405" - name: "" - metabolites: !!omap - m01687r: 1 @@ -148566,15 +148566,15 @@ - m02674r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197121 - - rxnFrom: HMRdatabase - - eccodes: 3.1.-.- - - references: + - gene_reaction_rule: "ENSG00000197121" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.-.-" + - references: "" - subsystem: - - Glycosylphosphatidylinositol (GPI)-anchor biosynthesis + - "Glycosylphosphatidylinositol (GPI)-anchor biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8406 + - id: "HMR_8406" - name: "" - metabolites: !!omap - m02001r: -1 @@ -148583,15 +148583,15 @@ - m02434r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087111 and ENSG00000101464 and ENSG00000124155 and ENSG00000142892 and ENSG00000197858 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000087111 and ENSG00000101464 and ENSG00000124155 and ENSG00000142892 and ENSG00000197858" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Glycosylphosphatidylinositol (GPI)-anchor biosynthesis + - "Glycosylphosphatidylinositol (GPI)-anchor biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8407 + - id: "HMR_8407" - name: "" - metabolites: !!omap - m02001r: -1 @@ -148600,15 +148600,15 @@ - m02462r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087111 and ENSG00000101464 and ENSG00000124155 and ENSG00000142892 and ENSG00000197858 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000087111 and ENSG00000101464 and ENSG00000124155 and ENSG00000142892 and ENSG00000197858" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Glycosylphosphatidylinositol (GPI)-anchor biosynthesis + - "Glycosylphosphatidylinositol (GPI)-anchor biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1979 + - id: "HMR_1979" - name: "" - metabolites: !!omap - m02039c: 1 @@ -148618,30 +148618,30 @@ - m02763c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000203857 or ENSG00000203859 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.145 - - references: PMID:2243100;PMID:2770297;PMID:1944309;PMID:12832414 + - gene_reaction_rule: "ENSG00000203857 or ENSG00000203859" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.145" + - references: "PMID:2243100;PMID:2770297;PMID:1944309;PMID:12832414" - subsystem: - - Glucocorticoid biosynthesis + - "Glucocorticoid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1980 + - id: "HMR_1980" - name: "" - metabolites: !!omap - m02760c: -1 - m02769c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000203857 or ENSG00000203859 - - rxnFrom: HMRdatabase - - eccodes: 5.3.3.1 - - references: PMID:2243100;PMID:2770297;PMID:1944309;PMID:12832414 + - gene_reaction_rule: "ENSG00000203857 or ENSG00000203859" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.3.1" + - references: "PMID:2243100;PMID:2770297;PMID:1944309;PMID:12832414" - subsystem: - - Glucocorticoid biosynthesis + - "Glucocorticoid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1981 + - id: "HMR_1981" - name: "" - metabolites: !!omap - m00409c: 1 @@ -148653,15 +148653,15 @@ - m02769c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000148795 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.9 - - references: PMID:10406467 + - gene_reaction_rule: "ENSG00000148795" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.9" + - references: "PMID:10406467" - subsystem: - - Glucocorticoid biosynthesis + - "Glucocorticoid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1985 + - id: "HMR_1985" - name: "" - metabolites: !!omap - m00409c: -1 @@ -148673,15 +148673,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000148795 or ENSG00000197580 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.- - - references: PMID:7578007;PMID:10049998;PMID:10049998;PMID:7578007 + - gene_reaction_rule: "ENSG00000148795 or ENSG00000197580" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.-" + - references: "PMID:7578007;PMID:10049998;PMID:10049998;PMID:7578007" - subsystem: - - Glucocorticoid biosynthesis + - "Glucocorticoid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1987 + - id: "HMR_1987" - name: "" - metabolites: !!omap - m00409r: -1 @@ -148693,15 +148693,15 @@ - m02630r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000148795 or ENSG00000197580 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.- - - references: PMID:7578007;PMID:10049998;PMID:10049998;PMID:7578007 + - gene_reaction_rule: "ENSG00000148795 or ENSG00000197580" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.-" + - references: "PMID:7578007;PMID:10049998;PMID:10049998;PMID:7578007" - subsystem: - - Glucocorticoid biosynthesis + - "Glucocorticoid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1988 + - id: "HMR_1988" - name: "" - metabolites: !!omap - m00295c: 1 @@ -148713,15 +148713,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000231852 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.10 - - references: PMID:3487786;PMID:3038528 + - gene_reaction_rule: "ENSG00000231852" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.10" + - references: "PMID:3487786;PMID:3038528" - subsystem: - - Glucocorticoid biosynthesis + - "Glucocorticoid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1995 + - id: "HMR_1995" - name: "" - metabolites: !!omap - m00295m: -1 @@ -148733,15 +148733,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160882 or ENSG00000179142 - - rxnFrom: HMRdatabase - - eccodes: 1.14.15.4 - - references: PMID:2592361;PMID:1741400;PMID:9536209 + - gene_reaction_rule: "ENSG00000160882 or ENSG00000179142" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.15.4" + - references: "PMID:2592361;PMID:1741400;PMID:9536209" - subsystem: - - Glucocorticoid biosynthesis + - "Glucocorticoid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1996 + - id: "HMR_1996" - name: "" - metabolites: !!omap - m01615c: -1 @@ -148751,15 +148751,15 @@ - m02555c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117594 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.146 - - references: PMID:1885595 + - gene_reaction_rule: "ENSG00000117594" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.146" + - references: "PMID:1885595" - subsystem: - - Glucocorticoid biosynthesis + - "Glucocorticoid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1999 + - id: "HMR_1999" - name: "" - metabolites: !!omap - m00284c: 1 @@ -148772,15 +148772,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000148795 or ENSG00000160882 or ENSG00000179142 or ENSG00000197580 - - rxnFrom: HMRdatabase - - eccodes: 1.14.15.4;1.14.99.9 - - references: PMID:10049998 + - gene_reaction_rule: "ENSG00000148795 or ENSG00000160882 or ENSG00000179142 or ENSG00000197580" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.15.4;1.14.99.9" + - references: "PMID:10049998" - subsystem: - - Glucocorticoid biosynthesis + - "Glucocorticoid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_2000 + - id: "HMR_2000" - name: "" - metabolites: !!omap - m00284m: 1 @@ -148793,15 +148793,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000148795 or ENSG00000160882 or ENSG00000179142 or ENSG00000197580 - - rxnFrom: HMRdatabase - - eccodes: 1.14.15.4;1.14.99.- - - references: PMID:10049998 + - gene_reaction_rule: "ENSG00000148795 or ENSG00000160882 or ENSG00000179142 or ENSG00000197580" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.15.4;1.14.99.-" + - references: "PMID:10049998" - subsystem: - - Glucocorticoid biosynthesis + - "Glucocorticoid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_2001 + - id: "HMR_2001" - name: "" - metabolites: !!omap - m00284r: 1 @@ -148814,15 +148814,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000148795 or ENSG00000160882 or ENSG00000179142 or ENSG00000197580 - - rxnFrom: HMRdatabase - - eccodes: 1.14.15.4;1.14.99.- - - references: PMID:10049998 + - gene_reaction_rule: "ENSG00000148795 or ENSG00000160882 or ENSG00000179142 or ENSG00000197580" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.15.4;1.14.99.-" + - references: "PMID:10049998" - subsystem: - - Glucocorticoid biosynthesis + - "Glucocorticoid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1305 + - id: "HMR_1305" - name: "" - metabolites: !!omap - m01362r: -1 @@ -148830,15 +148830,15 @@ - m02792r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073756 or ENSG00000095303 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.1 - - references: PMID:4521806;PMID:4776443 + - gene_reaction_rule: "ENSG00000073756 or ENSG00000095303" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.1" + - references: "PMID:4521806;PMID:4776443" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1307 + - id: "HMR_1307" - name: "" - metabolites: !!omap - m02039r: -2 @@ -148847,30 +148847,30 @@ - m02794r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073756 or ENSG00000095303 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.1 - - references: PMID:4514999 + - gene_reaction_rule: "ENSG00000073756 or ENSG00000095303" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.1" + - references: "PMID:4514999" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1308 + - id: "HMR_1308" - name: "" - metabolites: !!omap - m02794r: -1 - m02795r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000124212 - - rxnFrom: HMRdatabase - - eccodes: 5.3.99.4 - - references: PMID:15115769 + - gene_reaction_rule: "ENSG00000124212" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.99.4" + - references: "PMID:15115769" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1310 + - id: "HMR_1310" - name: "" - metabolites: !!omap - m01168r: -1 @@ -148878,45 +148878,45 @@ - m02795r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10534257 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10534257" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1312 + - id: "HMR_1312" - name: "" - metabolites: !!omap - m02786c: 1 - m02794c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110958 or ENSG00000148334 or ENSG00000148344 - - rxnFrom: HMRdatabase - - eccodes: 5.3.99.3 - - references: PMID:10922363 + - gene_reaction_rule: "ENSG00000110958 or ENSG00000148334 or ENSG00000148344" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.99.3" + - references: "PMID:10922363" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1313 + - id: "HMR_1313" - name: "" - metabolites: !!omap - m02794r: -1 - m02994r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000059377 - - rxnFrom: HMRdatabase - - eccodes: 5.3.99.5 - - references: PMID:7925341;PMID:11465543 + - gene_reaction_rule: "ENSG00000059377" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.99.5" + - references: "PMID:7925341;PMID:11465543" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1315 + - id: "HMR_1315" - name: "" - metabolites: !!omap - m02040r: -1 @@ -148924,15 +148924,15 @@ - m02995r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1317 + - id: "HMR_1317" - name: "" - metabolites: !!omap - m00293c: -1 @@ -148942,15 +148942,15 @@ - m02995c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1318 + - id: "HMR_1318" - name: "" - metabolites: !!omap - m01168c: -1 @@ -148958,15 +148958,15 @@ - m02795c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1319 + - id: "HMR_1319" - name: "" - metabolites: !!omap - m01167c: -1 @@ -148976,15 +148976,15 @@ - m02553c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1320 + - id: "HMR_1320" - name: "" - metabolites: !!omap - m01168c: -1 @@ -148995,15 +148995,15 @@ - m02788c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1321 + - id: "HMR_1321" - name: "" - metabolites: !!omap - m02040c: -1 @@ -149011,45 +149011,45 @@ - m02786c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000163684 or ENSG00000244486 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.- - - references: PMID:10200320;PMID:234423 + - gene_reaction_rule: "ENSG00000163684 or ENSG00000244486" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.-" + - references: "PMID:10200320;PMID:234423" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1322 + - id: "HMR_1322" - name: "" - metabolites: !!omap - m02777c: -1 - m02781c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 5.3.-.- - - references: PMID:234423 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.-.-" + - references: "PMID:234423" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1323 + - id: "HMR_1323" - name: "" - metabolites: !!omap - m02779c: -1 - m02781c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 5.3.3.9 - - references: PMID:234423 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.3.9" + - references: "PMID:234423" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1324 + - id: "HMR_1324" - name: "" - metabolites: !!omap - m02040c: -1 @@ -149057,15 +149057,15 @@ - m02786c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11447235 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11447235" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1325 + - id: "HMR_1325" - name: "" - metabolites: !!omap - m02039c: 1 @@ -149075,15 +149075,15 @@ - m02794c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000196139 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.188 - - references: + - gene_reaction_rule: "ENSG00000196139" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.188" + - references: "" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1326 + - id: "HMR_1326" - name: "" - metabolites: !!omap - m02039c: 1 @@ -149093,15 +149093,15 @@ - m02794c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000196139 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.188 - - references: PMID:12543809;PMID:7948008 + - gene_reaction_rule: "ENSG00000196139" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.188" + - references: "PMID:12543809;PMID:7948008" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1327 + - id: "HMR_1327" - name: "" - metabolites: !!omap - m02039c: 1 @@ -149111,15 +149111,15 @@ - m02789c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157326 or ENSG00000159228 or ENSG00000159231 or ENSG00000196139 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.184;1.1.1.189 - - references: + - gene_reaction_rule: "ENSG00000157326 or ENSG00000159228 or ENSG00000159231 or ENSG00000196139" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.184;1.1.1.189" + - references: "" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1328 + - id: "HMR_1328" - name: "" - metabolites: !!omap - m00392c: -1 @@ -149129,15 +149129,15 @@ - m02789c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1329 + - id: "HMR_1329" - name: "" - metabolites: !!omap - m02039c: -1 @@ -149147,30 +149147,30 @@ - m02789c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000196139 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.188 - - references: + - gene_reaction_rule: "ENSG00000196139" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.188" + - references: "" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1330 + - id: "HMR_1330" - name: "" - metabolites: !!omap - m02783c: 1 - m02794c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107317 or ENSG00000163106 - - rxnFrom: HMRdatabase - - eccodes: 5.3.99.2 - - references: + - gene_reaction_rule: "ENSG00000107317 or ENSG00000163106" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.99.2" + - references: "" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1332 + - id: "HMR_1332" - name: "" - metabolites: !!omap - m02040c: -1 @@ -149178,15 +149178,15 @@ - m02796c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:9755286;PMID:10200320;PMID:10200320;PMID:11786541;PMID:8521498;PMID:8521498;PMID:11786541 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:9755286;PMID:10200320;PMID:10200320;PMID:11786541;PMID:8521498;PMID:8521498;PMID:11786541" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1333 + - id: "HMR_1333" - name: "" - metabolites: !!omap - m02040r: -1 @@ -149194,15 +149194,15 @@ - m02796r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:9755286;PMID:10200320;PMID:10200320;PMID:11786541;PMID:8521498;PMID:8521498;PMID:11786541 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:9755286;PMID:10200320;PMID:10200320;PMID:11786541;PMID:8521498;PMID:8521498;PMID:11786541" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1334 + - id: "HMR_1334" - name: "" - metabolites: !!omap - m00384c: -1 @@ -149210,15 +149210,15 @@ - m02783c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:8521498;PMID:11786541 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:8521498;PMID:11786541" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1335 + - id: "HMR_1335" - name: "" - metabolites: !!omap - m01662r: -1 @@ -149226,15 +149226,15 @@ - m02783r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:9755286 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:9755286" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1336 + - id: "HMR_1336" - name: "" - metabolites: !!omap - m00381c: -1 @@ -149244,15 +149244,15 @@ - m02783c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1337 + - id: "HMR_1337" - name: "" - metabolites: !!omap - m00338c: -1 @@ -149260,15 +149260,15 @@ - m02039c: 2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1338 + - id: "HMR_1338" - name: "" - metabolites: !!omap - m00382c: -1 @@ -149276,15 +149276,15 @@ - m02783c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1339 + - id: "HMR_1339" - name: "" - metabolites: !!omap - m00308c: -1 @@ -149293,15 +149293,15 @@ - m02794c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000059377 - - rxnFrom: HMRdatabase - - eccodes: 5.3.99.5 - - references: PMID:6812567;PMID:6440597;PMID:11097184;PMID:6440597 + - gene_reaction_rule: "ENSG00000059377" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.99.5" + - references: "PMID:6812567;PMID:6440597;PMID:11097184;PMID:6440597" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1341 + - id: "HMR_1341" - name: "" - metabolites: !!omap - m01983c: 1 @@ -149311,15 +149311,15 @@ - m02800c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 3.1.-.- - - references: PMID:11447235 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.-.-" + - references: "PMID:11447235" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1342 + - id: "HMR_1342" - name: "" - metabolites: !!omap - m01983c: 1 @@ -149329,15 +149329,15 @@ - m02798c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 3.1.-.- - - references: PMID:11447235 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.-.-" + - references: "PMID:11447235" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1343 + - id: "HMR_1343" - name: "" - metabolites: !!omap - m01983c: 1 @@ -149347,15 +149347,15 @@ - m02799c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 3.1.-.- - - references: PMID:11447235 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.-.-" + - references: "PMID:11447235" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1344 + - id: "HMR_1344" - name: "" - metabolites: !!omap - m00395c: -1 @@ -149365,15 +149365,15 @@ - m02800c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000164120 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.141 - - references: + - gene_reaction_rule: "ENSG00000164120" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.141" + - references: "" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1345 + - id: "HMR_1345" - name: "" - metabolites: !!omap - m02040c: -1 @@ -149381,15 +149381,15 @@ - m02800c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11447235 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11447235" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1346 + - id: "HMR_1346" - name: "" - metabolites: !!omap - m01335c: 1 @@ -149398,15 +149398,15 @@ - m02040c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117480 - - rxnFrom: HMRdatabase - - eccodes: 3.5.1.99 - - references: PMID:11585048;PMID:12023533;PMID:12060782;PMID:11585048 + - gene_reaction_rule: "ENSG00000117480" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.1.99" + - references: "PMID:11585048;PMID:12023533;PMID:12060782;PMID:11585048" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1347 + - id: "HMR_1347" - name: "" - metabolites: !!omap - m00635c: -1 @@ -149416,15 +149416,15 @@ - m02040c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117480 - - rxnFrom: HMRdatabase - - eccodes: 3.5.1.99 - - references: PMID:12023533;PMID:11585048 + - gene_reaction_rule: "ENSG00000117480" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.1.99" + - references: "PMID:12023533;PMID:11585048" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1350 + - id: "HMR_1350" - name: "" - metabolites: !!omap - m00322c: 1 @@ -149432,15 +149432,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073756 or ENSG00000095303 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.1 - - references: PMID:12244105 + - gene_reaction_rule: "ENSG00000073756 or ENSG00000095303" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.1" + - references: "PMID:12244105" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1352 + - id: "HMR_1352" - name: "" - metabolites: !!omap - m00534c: -1 @@ -149449,15 +149449,15 @@ - m02751c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000067113 or ENSG00000101577 or ENSG00000105520 or ENSG00000117600 or ENSG00000129951 or ENSG00000132793 or ENSG00000134324 or ENSG00000141934 or ENSG00000147535 or ENSG00000162407 or ENSG00000203805 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.4 - - references: PMID:11641243 + - gene_reaction_rule: "ENSG00000067113 or ENSG00000101577 or ENSG00000105520 or ENSG00000117600 or ENSG00000129951 or ENSG00000132793 or ENSG00000134324 or ENSG00000141934 or ENSG00000147535 or ENSG00000162407 or ENSG00000203805" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.4" + - references: "PMID:11641243" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1355 + - id: "HMR_1355" - name: "" - metabolites: !!omap - m01214c: 1 @@ -149466,15 +149466,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:2123555 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:2123555" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1356 + - id: "HMR_1356" - name: "" - metabolites: !!omap - m01063c: 1 @@ -149484,15 +149484,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:2123555 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:2123555" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1357 + - id: "HMR_1357" - name: "" - metabolites: !!omap - m01062c: 1 @@ -149502,15 +149502,15 @@ - m02040c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:2123555 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:2123555" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1358 + - id: "HMR_1358" - name: "" - metabolites: !!omap - m01246c: 1 @@ -149519,15 +149519,15 @@ - m02631c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:2123555 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:2123555" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1359 + - id: "HMR_1359" - name: "" - metabolites: !!omap - m01223c: 1 @@ -149537,15 +149537,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:2123555 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:2123555" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1360 + - id: "HMR_1360" - name: "" - metabolites: !!omap - m01061c: 1 @@ -149555,15 +149555,15 @@ - m02040c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:2123555 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:2123555" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1361 + - id: "HMR_1361" - name: "" - metabolites: !!omap - m00302c: 1 @@ -149572,15 +149572,15 @@ - m02631c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:2123555 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:2123555" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1362 + - id: "HMR_1362" - name: "" - metabolites: !!omap - m00302c: -1 @@ -149590,15 +149590,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:2123555 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:2123555" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1363 + - id: "HMR_1363" - name: "" - metabolites: !!omap - m01221c: -1 @@ -149607,15 +149607,15 @@ - m02040c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:2123555 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:2123555" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1364 + - id: "HMR_1364" - name: "" - metabolites: !!omap - m00335c: 1 @@ -149624,15 +149624,15 @@ - m02631c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:2123555 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:2123555" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1365 + - id: "HMR_1365" - name: "" - metabolites: !!omap - m00281c: 1 @@ -149642,15 +149642,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:2123555 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:2123555" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1366 + - id: "HMR_1366" - name: "" - metabolites: !!omap - m00281c: -1 @@ -149659,15 +149659,15 @@ - m02040c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:2123555 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:2123555" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1367 + - id: "HMR_1367" - name: "" - metabolites: !!omap - m02026c: -1 @@ -149675,15 +149675,15 @@ - m02864c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148344 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000196139 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.188;2.5.1.18 - - references: PMID:9755286;PMID:9755286 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148344 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000196139 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.188;2.5.1.18" + - references: "PMID:9755286;PMID:9755286" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1370 + - id: "HMR_1370" - name: "" - metabolites: !!omap - m02026c: -1 @@ -149691,30 +149691,30 @@ - m02863c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148344 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: PMID:9755286 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148344 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "PMID:9755286" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1373 + - id: "HMR_1373" - name: "" - metabolites: !!omap - m01662c: -1 - m02796c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1374 + - id: "HMR_1374" - name: "" - metabolites: !!omap - m00383c: -1 @@ -149722,15 +149722,15 @@ - m02040c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1375 + - id: "HMR_1375" - name: "" - metabolites: !!omap - m00385c: -1 @@ -149738,15 +149738,15 @@ - m02796c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10200320;PMID:8521498;PMID:11786541 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10200320;PMID:8521498;PMID:11786541" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1376 + - id: "HMR_1376" - name: "" - metabolites: !!omap - m00385c: -1 @@ -149754,15 +149754,15 @@ - m02040c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11786541;PMID:8521498;PMID:11786541;PMID:8521498 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11786541;PMID:8521498;PMID:11786541;PMID:8521498" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1379 + - id: "HMR_1379" - name: "" - metabolites: !!omap - m01662c: -1 @@ -149770,15 +149770,15 @@ - m02860c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148344 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: PMID:9755286 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148344 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "PMID:9755286" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1382 + - id: "HMR_1382" - name: "" - metabolites: !!omap - m02039c: -1 @@ -149788,15 +149788,15 @@ - m02860c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000196139 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.188 - - references: PMID:9755286 + - gene_reaction_rule: "ENSG00000196139" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.188" + - references: "PMID:9755286" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1383 + - id: "HMR_1383" - name: "" - metabolites: !!omap - m01234c: -1 @@ -149805,15 +149805,15 @@ - m02783c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:9755286 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:9755286" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1384 + - id: "HMR_1384" - name: "" - metabolites: !!omap - m01234c: -1 @@ -149821,15 +149821,15 @@ - m02859c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148344 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: PMID:9755286 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148344 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "PMID:9755286" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1387 + - id: "HMR_1387" - name: "" - metabolites: !!omap - m02039c: -1 @@ -149839,15 +149839,15 @@ - m02859c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000196139 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.188 - - references: PMID:9755286 + - gene_reaction_rule: "ENSG00000196139" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.188" + - references: "PMID:9755286" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1388 + - id: "HMR_1388" - name: "" - metabolites: !!omap - m00391c: 1 @@ -149855,15 +149855,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000161905 or ENSG00000179593 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.33 - - references: + - gene_reaction_rule: "ENSG00000161905 or ENSG00000179593" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.33" + - references: "" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1389 + - id: "HMR_1389" - name: "" - metabolites: !!omap - m00378c: -1 @@ -149872,15 +149872,15 @@ - m02040c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10617998;PMID:1329675 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10617998;PMID:1329675" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1390 + - id: "HMR_1390" - name: "" - metabolites: !!omap - m01696c: -1 @@ -149888,15 +149888,15 @@ - m02791c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073756 or ENSG00000095303 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.1 - - references: PMID:9115911;PMID:9732298 + - gene_reaction_rule: "ENSG00000073756 or ENSG00000095303" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.1" + - references: "PMID:9115911;PMID:9732298" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1391 + - id: "HMR_1391" - name: "" - metabolites: !!omap - m01696r: -1 @@ -149904,15 +149904,15 @@ - m02791r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073756 or ENSG00000095303 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.1 - - references: PMID:9115911;PMID:9732298 + - gene_reaction_rule: "ENSG00000073756 or ENSG00000095303" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.1" + - references: "PMID:9115911;PMID:9732298" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1393 + - id: "HMR_1393" - name: "" - metabolites: !!omap - m02039r: -2 @@ -149921,30 +149921,30 @@ - m02793r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073756 or ENSG00000095303 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.1 - - references: + - gene_reaction_rule: "ENSG00000073756 or ENSG00000095303" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.1" + - references: "" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1394 + - id: "HMR_1394" - name: "" - metabolites: !!omap - m02785c: -1 - m02793c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110958 or ENSG00000148334 or ENSG00000148344 - - rxnFrom: HMRdatabase - - eccodes: 5.3.99.3 - - references: PMID:9732298;PMID:9115911 + - gene_reaction_rule: "ENSG00000110958 or ENSG00000148334 or ENSG00000148344" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.99.3" + - references: "PMID:9732298;PMID:9115911" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1395 + - id: "HMR_1395" - name: "" - metabolites: !!omap - m02040c: -1 @@ -149952,15 +149952,15 @@ - m02785c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000163684 or ENSG00000244486 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.- - - references: PMID:234423 + - gene_reaction_rule: "ENSG00000163684 or ENSG00000244486" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.-" + - references: "PMID:234423" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1398 + - id: "HMR_1398" - name: "" - metabolites: !!omap - m02026c: -1 @@ -149968,45 +149968,45 @@ - m02862c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148344 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: PMID:9755286 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000100577 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148344 or ENSG00000148834 or ENSG00000163106 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "PMID:9755286" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1401 + - id: "HMR_1401" - name: "" - metabolites: !!omap - m02776c: -1 - m02780c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 5.3.3.9 - - references: PMID:234423 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.3.9" + - references: "PMID:234423" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1402 + - id: "HMR_1402" - name: "" - metabolites: !!omap - m02778c: -1 - m02780c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 5.3.3.9 - - references: PMID:234423 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.3.9" + - references: "PMID:234423" - subsystem: - - Prostaglandin biosynthesis + - "Prostaglandin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_0703 + - id: "HMR_0703" - name: "" - metabolites: !!omap - m01597p: 1 @@ -150017,15 +150017,15 @@ - m02678p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064763 or ENSG00000197601 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.2 - - references: PMID:15220348 + - gene_reaction_rule: "ENSG00000064763 or ENSG00000197601" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.2" + - references: "PMID:15220348" - subsystem: - - Ether lipid metabolism + - "Ether lipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0705 + - id: "HMR_0705" - name: "" - metabolites: !!omap - m00550p: 1 @@ -150034,15 +150034,15 @@ - m02678p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116906 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.42 - - references: PMID:10215861;PMID:9536089;PMID:11237722;PMID:8186247 + - gene_reaction_rule: "ENSG00000116906" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.42" + - references: "PMID:10215861;PMID:9536089;PMID:11237722;PMID:8186247" - subsystem: - - Ether lipid metabolism + - "Ether lipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0706 + - id: "HMR_0706" - name: "" - metabolites: !!omap - m00550p: -1 @@ -150052,15 +150052,15 @@ - m02674p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116906 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.42 - - references: PMID:10215861;PMID:10692424;PMID:10415121 + - gene_reaction_rule: "ENSG00000116906" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.42" + - references: "PMID:10215861;PMID:10692424;PMID:10415121" - subsystem: - - Ether lipid metabolism + - "Ether lipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0708 + - id: "HMR_0708" - name: "" - metabolites: !!omap - m00532c: 1 @@ -150070,15 +150070,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116906 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.42 - - references: PMID:2335525 + - gene_reaction_rule: "ENSG00000116906" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.42" + - references: "PMID:2335525" - subsystem: - - Ether lipid metabolism + - "Ether lipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7598 + - id: "HMR_7598" - name: "" - metabolites: !!omap - m00514c: 1 @@ -150087,15 +150087,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000067113 or ENSG00000101577 or ENSG00000105520 or ENSG00000117600 or ENSG00000129951 or ENSG00000132793 or ENSG00000134324 or ENSG00000141934 or ENSG00000147535 or ENSG00000162407 or ENSG00000203805 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.4 - - references: + - gene_reaction_rule: "ENSG00000067113 or ENSG00000101577 or ENSG00000105520 or ENSG00000117600 or ENSG00000129951 or ENSG00000132793 or ENSG00000134324 or ENSG00000141934 or ENSG00000147535 or ENSG00000162407 or ENSG00000203805" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.4" + - references: "" - subsystem: - - Ether lipid metabolism + - "Ether lipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7600 + - id: "HMR_7600" - name: "" - metabolites: !!omap - m00514c: -1 @@ -150105,15 +150105,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111666 or ENSG00000134255 - - rxnFrom: HMRdatabase - - eccodes: 2.7.8.2 - - references: + - gene_reaction_rule: "ENSG00000111666 or ENSG00000134255" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.8.2" + - references: "" - subsystem: - - Ether lipid metabolism + - "Ether lipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7602 + - id: "HMR_7602" - name: "" - metabolites: !!omap - m00223c: -1 @@ -150122,15 +150122,15 @@ - m10007c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087253 or ENSG00000111684 or ENSG00000153395 or ENSG00000176454 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.23 - - references: + - gene_reaction_rule: "ENSG00000087253 or ENSG00000111684 or ENSG00000153395 or ENSG00000176454" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.23" + - references: "" - subsystem: - - Ether lipid metabolism + - "Ether lipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7603 + - id: "HMR_7603" - name: "" - metabolites: !!omap - m00223c: 1 @@ -150140,15 +150140,15 @@ - m10005c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000069764 or ENSG00000100078 or ENSG00000105499 or ENSG00000116711 or ENSG00000117215 or ENSG00000123739 or ENSG00000127472 or ENSG00000138308 or ENSG00000158786 or ENSG00000159337 or ENSG00000163803 or ENSG00000168907 or ENSG00000168970 or ENSG00000170890 or ENSG00000176485 or ENSG00000184381 or ENSG00000187980 or ENSG00000188089 or ENSG00000188257 or ENSG00000188784 or ENSG00000243708 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.4 - - references: + - gene_reaction_rule: "ENSG00000069764 or ENSG00000100078 or ENSG00000105499 or ENSG00000116711 or ENSG00000117215 or ENSG00000123739 or ENSG00000127472 or ENSG00000138308 or ENSG00000158786 or ENSG00000159337 or ENSG00000163803 or ENSG00000168907 or ENSG00000168970 or ENSG00000170890 or ENSG00000176485 or ENSG00000184381 or ENSG00000187980 or ENSG00000188089 or ENSG00000188257 or ENSG00000188784 or ENSG00000243708" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.4" + - references: "" - subsystem: - - Ether lipid metabolism + - "Ether lipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7604 + - id: "HMR_7604" - name: "" - metabolites: !!omap - m00512c: -1 @@ -150158,15 +150158,15 @@ - m02629c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134255 or ENSG00000138018 - - rxnFrom: HMRdatabase - - eccodes: 2.7.8.1 - - references: + - gene_reaction_rule: "ENSG00000134255 or ENSG00000138018" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.8.1" + - references: "" - subsystem: - - Ether lipid metabolism + - "Ether lipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7605 + - id: "HMR_7605" - name: "" - metabolites: !!omap - m00627c: 1 @@ -150176,15 +150176,15 @@ - m02629c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000075651 or ENSG00000105223 or ENSG00000129219 or ENSG00000166428 - - rxnFrom: HMRdatabase - - eccodes: 3.1.4.4 - - references: + - gene_reaction_rule: "ENSG00000075651 or ENSG00000105223 or ENSG00000129219 or ENSG00000166428" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.4.4" + - references: "" - subsystem: - - Ether lipid metabolism + - "Ether lipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7606 + - id: "HMR_7606" - name: "" - metabolites: !!omap - m00223c: -1 @@ -150194,15 +150194,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000164303 - - rxnFrom: HMRdatabase - - eccodes: 3.1.4.38 - - references: + - gene_reaction_rule: "ENSG00000164303" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.4.38" + - references: "" - subsystem: - - Ether lipid metabolism + - "Ether lipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7607 + - id: "HMR_7607" - name: "" - metabolites: !!omap - m00222c: 1 @@ -150212,15 +150212,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136960 - - rxnFrom: HMRdatabase - - eccodes: 3.1.4.39 - - references: + - gene_reaction_rule: "ENSG00000136960" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.4.39" + - references: "" - subsystem: - - Ether lipid metabolism + - "Ether lipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7610 + - id: "HMR_7610" - name: "" - metabolites: !!omap - m00513c: -1 @@ -150230,15 +150230,15 @@ - m02039c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111666 or ENSG00000134255 - - rxnFrom: HMRdatabase - - eccodes: 2.7.8.2 - - references: + - gene_reaction_rule: "ENSG00000111666 or ENSG00000134255" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.8.2" + - references: "" - subsystem: - - Ether lipid metabolism + - "Ether lipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7614 + - id: "HMR_7614" - name: "" - metabolites: !!omap - m00549c: -1 @@ -150247,15 +150247,15 @@ - m10007c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087253 or ENSG00000111684 or ENSG00000153395 or ENSG00000176454 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.23 - - references: + - gene_reaction_rule: "ENSG00000087253 or ENSG00000111684 or ENSG00000153395 or ENSG00000176454" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.23" + - references: "" - subsystem: - - Ether lipid metabolism + - "Ether lipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_7615 + - id: "HMR_7615" - name: "" - metabolites: !!omap - m00549c: 1 @@ -150265,15 +150265,15 @@ - m10005c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000069764 or ENSG00000100078 or ENSG00000105499 or ENSG00000116711 or ENSG00000117215 or ENSG00000123739 or ENSG00000127472 or ENSG00000138308 or ENSG00000158786 or ENSG00000159337 or ENSG00000163803 or ENSG00000168907 or ENSG00000168970 or ENSG00000170890 or ENSG00000176485 or ENSG00000184381 or ENSG00000187980 or ENSG00000188089 or ENSG00000188257 or ENSG00000188784 or ENSG00000243708 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.4 - - references: + - gene_reaction_rule: "ENSG00000069764 or ENSG00000100078 or ENSG00000105499 or ENSG00000116711 or ENSG00000117215 or ENSG00000123739 or ENSG00000127472 or ENSG00000138308 or ENSG00000158786 or ENSG00000159337 or ENSG00000163803 or ENSG00000168907 or ENSG00000168970 or ENSG00000170890 or ENSG00000176485 or ENSG00000184381 or ENSG00000187980 or ENSG00000188089 or ENSG00000188257 or ENSG00000188784 or ENSG00000243708" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.4" + - references: "" - subsystem: - - Ether lipid metabolism + - "Ether lipid metabolism" - confidence_score: 0 - !!omap - - id: HMR_0024 + - id: "HMR_0024" - name: "" - metabolites: !!omap - m01268n: 1 @@ -150281,105 +150281,105 @@ - m02757n: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000101849 and ENSG00000141027 and ENSG00000171720 and ENSG00000177565 and ENSG00000196498) or (ENSG00000005339 and ENSG00000124151 and ENSG00000140396) or (ENSG00000169375 and ENSG00000196498) or (ENSG00000141027 and ENSG00000169375) or (ENSG00000141027 and ENSG00000169375 and ENSG00000171720 and ENSG00000196498) or ENSG00000069667 or ENSG00000082014 or ENSG00000084676 or ENSG00000115641 or ENSG00000125686 or ENSG00000126368 or ENSG00000127511 or ENSG00000130589 or ENSG00000134317 or ENSG00000137574 or ENSG00000142453 or ENSG00000148677 or ENSG00000163586 or ENSG00000177200 or ENSG00000186350 or ENSG00000186951 or ENSG00000198646 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "(ENSG00000101849 and ENSG00000141027 and ENSG00000171720 and ENSG00000177565 and ENSG00000196498) or (ENSG00000005339 and ENSG00000124151 and ENSG00000140396) or (ENSG00000169375 and ENSG00000196498) or (ENSG00000141027 and ENSG00000169375) or (ENSG00000141027 and ENSG00000169375 and ENSG00000171720 and ENSG00000196498) or ENSG00000069667 or ENSG00000082014 or ENSG00000084676 or ENSG00000115641 or ENSG00000125686 or ENSG00000126368 or ENSG00000127511 or ENSG00000130589 or ENSG00000134317 or ENSG00000137574 or ENSG00000142453 or ENSG00000148677 or ENSG00000163586 or ENSG00000177200 or ENSG00000186350 or ENSG00000186951 or ENSG00000198646" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_0025 + - id: "HMR_0025" - name: "" - metabolites: !!omap - m01268c: 1 - m01268n: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000065833 or ENSG00000101255 or ENSG00000105398 or ENSG00000112972 or ENSG00000123689 or ENSG00000130304 or ENSG00000139278 or ENSG00000143344 or ENSG00000146072 or ENSG00000146426 or ENSG00000147872 or ENSG00000170485 or ENSG00000198431 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12505311;PMID:14999402;PMID:19710929;PMID:17604218;PMID:16476485;PMID:18288277;PMID:16503871;PMID:10529898;PMID:11330046 + - gene_reaction_rule: "ENSG00000065833 or ENSG00000101255 or ENSG00000105398 or ENSG00000112972 or ENSG00000123689 or ENSG00000130304 or ENSG00000139278 or ENSG00000143344 or ENSG00000146072 or ENSG00000146426 or ENSG00000147872 or ENSG00000170485 or ENSG00000198431" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12505311;PMID:14999402;PMID:19710929;PMID:17604218;PMID:16476485;PMID:18288277;PMID:16503871;PMID:10529898;PMID:11330046" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0026 + - id: "HMR_0026" - name: "" - metabolites: !!omap - m01268c: -1 - m01268r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000079459 or ENSG00000113161 or ENSG00000140465 or ENSG00000149485 or ENSG00000167910 or ENSG00000187048 or ENSG00000241119 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12505311;PMID:14999402;PMID:19710929;PMID:17604218;PMID:16476485;PMID:18288277;PMID:16503871;PMID:10529898;PMID:11330046 + - gene_reaction_rule: "ENSG00000079459 or ENSG00000113161 or ENSG00000140465 or ENSG00000149485 or ENSG00000167910 or ENSG00000187048 or ENSG00000241119" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12505311;PMID:14999402;PMID:19710929;PMID:17604218;PMID:16476485;PMID:18288277;PMID:16503871;PMID:10529898;PMID:11330046" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0027 + - id: "HMR_0027" - name: "" - metabolites: !!omap - m01268c: -1 - m01268m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023330 or ENSG00000110090 or ENSG00000117054 or ENSG00000134240 or ENSG00000151726 or ENSG00000157184 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12505311;PMID:14999402;PMID:19710929;PMID:17604218;PMID:16476485;PMID:18288277;PMID:16503871;PMID:10529898;PMID:11330046 + - gene_reaction_rule: "ENSG00000023330 or ENSG00000110090 or ENSG00000117054 or ENSG00000134240 or ENSG00000151726 or ENSG00000157184" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12505311;PMID:14999402;PMID:19710929;PMID:17604218;PMID:16476485;PMID:18288277;PMID:16503871;PMID:10529898;PMID:11330046" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0028 + - id: "HMR_0028" - name: "" - metabolites: !!omap - m01268c: -1 - m01268p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000161533 or ENSG00000166821 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12505311;PMID:14999402;PMID:19710929;PMID:17604218;PMID:16476485;PMID:18288277;PMID:16503871;PMID:10529898;PMID:11330046 + - gene_reaction_rule: "ENSG00000161533 or ENSG00000166821" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12505311;PMID:14999402;PMID:19710929;PMID:17604218;PMID:16476485;PMID:18288277;PMID:16503871;PMID:10529898;PMID:11330046" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0029 + - id: "HMR_0029" - name: "" - metabolites: !!omap - m01268c: -1 - m01268s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005471 or ENSG00000110243 or ENSG00000118137 or ENSG00000118523 or ENSG00000135218 or ENSG00000135744 or ENSG00000158874 or ENSG00000165029 or ENSG00000167772 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12505311;PMID:14999402;PMID:19710929;PMID:17604218;PMID:16476485;PMID:18288277;PMID:16503871;PMID:10529898;PMID:11330046 + - gene_reaction_rule: "ENSG00000005471 or ENSG00000110243 or ENSG00000118137 or ENSG00000118523 or ENSG00000135218 or ENSG00000135744 or ENSG00000158874 or ENSG00000165029 or ENSG00000167772" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12505311;PMID:14999402;PMID:19710929;PMID:17604218;PMID:16476485;PMID:18288277;PMID:16503871;PMID:10529898;PMID:11330046" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0030 + - id: "HMR_0030" - name: "" - metabolites: !!omap - m01268c: -1 - m01268n: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000004799 or ENSG00000005471 or ENSG00000026103 or ENSG00000072310 or ENSG00000099194 or ENSG00000100979 or ENSG00000105398 or ENSG00000108468 or ENSG00000110090 or ENSG00000110243 or ENSG00000113790 or ENSG00000117054 or ENSG00000118137 or ENSG00000130304 or ENSG00000134240 or ENSG00000134824 or ENSG00000135218 or ENSG00000138823 or ENSG00000147872 or ENSG00000149485 or ENSG00000151726 or ENSG00000156096 or ENSG00000157184 or ENSG00000158874 or ENSG00000161533 or ENSG00000163586 or ENSG00000165029 or ENSG00000166819 or ENSG00000166821 or ENSG00000167114 or ENSG00000167588 or ENSG00000167772 or ENSG00000169710 or ENSG00000175445 or ENSG00000176194 or ENSG00000177666 or ENSG00000185000 or ENSG00000185615 or ENSG00000187048 or ENSG00000278540 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12505311;PMID:14999402;PMID:19710929;PMID:17604218;PMID:16476485;PMID:18288277;PMID:16503871;PMID:10529898;PMID:11330046 + - gene_reaction_rule: "ENSG00000004799 or ENSG00000005471 or ENSG00000026103 or ENSG00000072310 or ENSG00000099194 or ENSG00000100979 or ENSG00000105398 or ENSG00000108468 or ENSG00000110090 or ENSG00000110243 or ENSG00000113790 or ENSG00000117054 or ENSG00000118137 or ENSG00000130304 or ENSG00000134240 or ENSG00000134824 or ENSG00000135218 or ENSG00000138823 or ENSG00000147872 or ENSG00000149485 or ENSG00000151726 or ENSG00000156096 or ENSG00000157184 or ENSG00000158874 or ENSG00000161533 or ENSG00000163586 or ENSG00000165029 or ENSG00000166819 or ENSG00000166821 or ENSG00000167114 or ENSG00000167588 or ENSG00000167772 or ENSG00000169710 or ENSG00000175445 or ENSG00000176194 or ENSG00000177666 or ENSG00000185000 or ENSG00000185615 or ENSG00000187048 or ENSG00000278540" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12505311;PMID:14999402;PMID:19710929;PMID:17604218;PMID:16476485;PMID:18288277;PMID:16503871;PMID:10529898;PMID:11330046" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7200 + - id: "HMR_7200" - name: "" - metabolites: !!omap - m00205r: -1 @@ -150389,15 +150389,15 @@ - m03156r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000015532 or ENSG00000103489 - - rxnFrom: HMRdatabase - - eccodes: 2.4.2.26 - - references: + - gene_reaction_rule: "ENSG00000015532 or ENSG00000103489" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.2.26" + - references: "" - subsystem: - - Chondroitin / heparan sulfate biosynthesis + - "Chondroitin / heparan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7202 + - id: "HMR_7202" - name: "" - metabolites: !!omap - m01921g: 1 @@ -150407,15 +150407,15 @@ - m03156g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000027847 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.133 - - references: + - gene_reaction_rule: "ENSG00000027847" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.133" + - references: "" - subsystem: - - Chondroitin / heparan sulfate biosynthesis + - "Chondroitin / heparan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7203 + - id: "HMR_7203" - name: "" - metabolites: !!omap - m01906g: 1 @@ -150425,15 +150425,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000176022 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.134 - - references: + - gene_reaction_rule: "ENSG00000176022" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.134" + - references: "" - subsystem: - - Chondroitin / heparan sulfate biosynthesis + - "Chondroitin / heparan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7205 + - id: "HMR_7205" - name: "" - metabolites: !!omap - m00762g: 1 @@ -150443,15 +150443,15 @@ - m03109g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109956 or ENSG00000112309 or ENSG00000149541 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.135 - - references: + - gene_reaction_rule: "ENSG00000109956 or ENSG00000112309 or ENSG00000149541" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.135" + - references: "" - subsystem: - - Chondroitin / heparan sulfate biosynthesis + - "Chondroitin / heparan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7206 + - id: "HMR_7206" - name: "" - metabolites: !!omap - m00762g: -1 @@ -150461,15 +150461,15 @@ - m03110g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147408 or ENSG00000169826 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.174 - - references: + - gene_reaction_rule: "ENSG00000147408 or ENSG00000169826" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.174" + - references: "" - subsystem: - - Chondroitin / heparan sulfate biosynthesis + - "Chondroitin / heparan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7207 + - id: "HMR_7207" - name: "" - metabolites: !!omap - m00762g: -1 @@ -150479,15 +150479,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012232 or ENSG00000162694 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.223 - - references: + - gene_reaction_rule: "ENSG00000012232 or ENSG00000162694" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.223" + - references: "" - subsystem: - - Chondroitin / heparan sulfate biosynthesis + - "Chondroitin / heparan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7208 + - id: "HMR_7208" - name: "" - metabolites: !!omap - m02039g: 1 @@ -150497,15 +150497,15 @@ - m03109g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151348 and ENSG00000182197 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.224;2.4.1.225 - - references: + - gene_reaction_rule: "ENSG00000151348 and ENSG00000182197" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.224;2.4.1.225" + - references: "" - subsystem: - - Chondroitin / heparan sulfate biosynthesis + - "Chondroitin / heparan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7209 + - id: "HMR_7209" - name: "" - metabolites: !!omap - m02039g: 1 @@ -150515,15 +150515,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000151348 and ENSG00000182197) or ENSG00000012232 or ENSG00000158008 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.223;2.4.1.224;2.4.1.225 - - references: + - gene_reaction_rule: "(ENSG00000151348 and ENSG00000182197) or ENSG00000012232 or ENSG00000158008" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.223;2.4.1.224;2.4.1.225" + - references: "" - subsystem: - - Chondroitin / heparan sulfate biosynthesis + - "Chondroitin / heparan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7210 + - id: "HMR_7210" - name: "" - metabolites: !!omap - m02039g: 1 @@ -150533,15 +150533,15 @@ - m03109g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151348 and ENSG00000182197 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.224;2.4.1.225 - - references: + - gene_reaction_rule: "ENSG00000151348 and ENSG00000182197" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.224;2.4.1.225" + - references: "" - subsystem: - - Chondroitin / heparan sulfate biosynthesis + - "Chondroitin / heparan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7211 + - id: "HMR_7211" - name: "" - metabolites: !!omap - m02039g: 1 @@ -150551,15 +150551,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000151348 and ENSG00000182197) or ENSG00000012232 or ENSG00000158008 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.223;2.4.1.224;2.4.1.225 - - references: + - gene_reaction_rule: "(ENSG00000151348 and ENSG00000182197) or ENSG00000012232 or ENSG00000158008" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.223;2.4.1.224;2.4.1.225" + - references: "" - subsystem: - - Chondroitin / heparan sulfate biosynthesis + - "Chondroitin / heparan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7212 + - id: "HMR_7212" - name: "" - metabolites: !!omap - m02039g: 1 @@ -150569,15 +150569,15 @@ - m03109g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151348 and ENSG00000182197 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.224;2.4.1.225 - - references: + - gene_reaction_rule: "ENSG00000151348 and ENSG00000182197" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.224;2.4.1.225" + - references: "" - subsystem: - - Chondroitin / heparan sulfate biosynthesis + - "Chondroitin / heparan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7213 + - id: "HMR_7213" - name: "" - metabolites: !!omap - m02039g: 1 @@ -150587,15 +150587,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000151348 and ENSG00000182197) or ENSG00000012232 or ENSG00000158008 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.223;2.4.1.224;2.4.1.225 - - references: + - gene_reaction_rule: "(ENSG00000151348 and ENSG00000182197) or ENSG00000012232 or ENSG00000158008" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.223;2.4.1.224;2.4.1.225" + - references: "" - subsystem: - - Chondroitin / heparan sulfate biosynthesis + - "Chondroitin / heparan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7214 + - id: "HMR_7214" - name: "" - metabolites: !!omap - m02039g: 1 @@ -150605,15 +150605,15 @@ - m03109g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151348 and ENSG00000182197 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.224;2.4.1.225 - - references: + - gene_reaction_rule: "ENSG00000151348 and ENSG00000182197" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.224;2.4.1.225" + - references: "" - subsystem: - - Chondroitin / heparan sulfate biosynthesis + - "Chondroitin / heparan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7215 + - id: "HMR_7215" - name: "" - metabolites: !!omap - m02039g: 1 @@ -150623,15 +150623,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000151348 and ENSG00000182197) or ENSG00000012232 or ENSG00000158008 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.223;2.4.1.224;2.4.1.225 - - references: + - gene_reaction_rule: "(ENSG00000151348 and ENSG00000182197) or ENSG00000012232 or ENSG00000158008" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.223;2.4.1.224;2.4.1.225" + - references: "" - subsystem: - - Chondroitin / heparan sulfate biosynthesis + - "Chondroitin / heparan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7216 + - id: "HMR_7216" - name: "" - metabolites: !!omap - m01252g: 4 @@ -150643,30 +150643,30 @@ - m02682g: -4 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000070614 or ENSG00000138653 or ENSG00000164100 or ENSG00000166507 or ENSG00000272916 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.8 - - references: + - gene_reaction_rule: "ENSG00000070614 or ENSG00000138653 or ENSG00000164100 or ENSG00000166507 or ENSG00000272916" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.8" + - references: "" - subsystem: - - Chondroitin / heparan sulfate biosynthesis + - "Chondroitin / heparan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7217 + - id: "HMR_7217" - name: "" - metabolites: !!omap - m02082g: -1 - m02083g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138604 - - rxnFrom: HMRdatabase - - eccodes: 5.1.3.17 - - references: + - gene_reaction_rule: "ENSG00000138604" + - rxnFrom: "HMRdatabase" + - eccodes: "5.1.3.17" + - references: "" - subsystem: - - Chondroitin / heparan sulfate biosynthesis + - "Chondroitin / heparan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7218 + - id: "HMR_7218" - name: "" - metabolites: !!omap - m02039g: 2 @@ -150676,15 +150676,15 @@ - m02682g: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000153936 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.- - - references: + - gene_reaction_rule: "ENSG00000153936" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.-" + - references: "" - subsystem: - - Chondroitin / heparan sulfate biosynthesis + - "Chondroitin / heparan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7219 + - id: "HMR_7219" - name: "" - metabolites: !!omap - m02039g: 3 @@ -150694,15 +150694,15 @@ - m02682g: -3 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136720 or ENSG00000171004 or ENSG00000185352 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.- - - references: + - gene_reaction_rule: "ENSG00000136720 or ENSG00000171004 or ENSG00000185352" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.-" + - references: "" - subsystem: - - Chondroitin / heparan sulfate biosynthesis + - "Chondroitin / heparan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7220 + - id: "HMR_7220" - name: "" - metabolites: !!omap - m02039g: 1 @@ -150712,15 +150712,15 @@ - m02682g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000002587 or ENSG00000182601 or ENSG00000249853 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.23 - - references: + - gene_reaction_rule: "ENSG00000002587 or ENSG00000182601 or ENSG00000249853" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.23" + - references: "" - subsystem: - - Chondroitin / heparan sulfate biosynthesis + - "Chondroitin / heparan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7221 + - id: "HMR_7221" - name: "" - metabolites: !!omap - m02039g: 1 @@ -150730,15 +150730,15 @@ - m02682g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000122254 or ENSG00000182601 or ENSG00000249853 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.23;2.8.2.29 - - references: + - gene_reaction_rule: "ENSG00000122254 or ENSG00000182601 or ENSG00000249853" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.23;2.8.2.29" + - references: "" - subsystem: - - Chondroitin / heparan sulfate biosynthesis + - "Chondroitin / heparan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7222 + - id: "HMR_7222" - name: "" - metabolites: !!omap - m02039g: 1 @@ -150748,15 +150748,15 @@ - m02682g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000002587 or ENSG00000125430 or ENSG00000153976 or ENSG00000162040 or ENSG00000182601 or ENSG00000249853 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.23;2.8.2.30 - - references: + - gene_reaction_rule: "ENSG00000002587 or ENSG00000125430 or ENSG00000153976 or ENSG00000162040 or ENSG00000182601 or ENSG00000249853" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.23;2.8.2.30" + - references: "" - subsystem: - - Chondroitin / heparan sulfate biosynthesis + - "Chondroitin / heparan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7490 + - id: "HMR_7490" - name: "" - metabolites: !!omap - m01532g: -1 @@ -150766,15 +150766,15 @@ - m02682g: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Chondroitin / heparan sulfate biosynthesis + - "Chondroitin / heparan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7491 + - id: "HMR_7491" - name: "" - metabolites: !!omap - m01518g: 1 @@ -150784,15 +150784,15 @@ - m02682g: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136213 or ENSG00000169105 or ENSG00000171310 or ENSG00000180767 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.5;2.8.2.35 - - references: + - gene_reaction_rule: "ENSG00000136213 or ENSG00000169105 or ENSG00000171310 or ENSG00000180767" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.5;2.8.2.35" + - references: "" - subsystem: - - Chondroitin / heparan sulfate biosynthesis + - "Chondroitin / heparan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7492 + - id: "HMR_7492" - name: "" - metabolites: !!omap - m01518g: -1 @@ -150802,15 +150802,15 @@ - m02682g: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147119 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.17 - - references: + - gene_reaction_rule: "ENSG00000147119" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.17" + - references: "" - subsystem: - - Chondroitin / heparan sulfate biosynthesis + - "Chondroitin / heparan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7493 + - id: "HMR_7493" - name: "" - metabolites: !!omap - m01563g: -1 @@ -150820,15 +150820,15 @@ - m03109g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000033100 or ENSG00000123989 or ENSG00000131873 or ENSG00000198108 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.175;2.4.1.226 - - references: + - gene_reaction_rule: "ENSG00000033100 or ENSG00000123989 or ENSG00000131873 or ENSG00000198108" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.175;2.4.1.226" + - references: "" - subsystem: - - Chondroitin / heparan sulfate biosynthesis + - "Chondroitin / heparan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7494 + - id: "HMR_7494" - name: "" - metabolites: !!omap - m01564g: -1 @@ -150838,15 +150838,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123989 or ENSG00000131873 or ENSG00000147408 or ENSG00000169826 or ENSG00000198108 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.226 - - references: + - gene_reaction_rule: "ENSG00000123989 or ENSG00000131873 or ENSG00000147408 or ENSG00000169826 or ENSG00000198108" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.226" + - references: "" - subsystem: - - Chondroitin / heparan sulfate biosynthesis + - "Chondroitin / heparan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7495 + - id: "HMR_7495" - name: "" - metabolites: !!omap - m01515g: 1 @@ -150856,15 +150856,15 @@ - m03109g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000033100 or ENSG00000123989 or ENSG00000131873 or ENSG00000198108 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.175;2.4.1.226 - - references: + - gene_reaction_rule: "ENSG00000033100 or ENSG00000123989 or ENSG00000131873 or ENSG00000198108" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.175;2.4.1.226" + - references: "" - subsystem: - - Chondroitin / heparan sulfate biosynthesis + - "Chondroitin / heparan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7496 + - id: "HMR_7496" - name: "" - metabolites: !!omap - m01515g: -1 @@ -150874,30 +150874,30 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123989 or ENSG00000131873 or ENSG00000147408 or ENSG00000169826 or ENSG00000198108 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.226 - - references: + - gene_reaction_rule: "ENSG00000123989 or ENSG00000131873 or ENSG00000147408 or ENSG00000169826 or ENSG00000198108" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.226" + - references: "" - subsystem: - - Chondroitin / heparan sulfate biosynthesis + - "Chondroitin / heparan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7497 + - id: "HMR_7497" - name: "" - metabolites: !!omap - m01516g: -1 - m01530g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Chondroitin / heparan sulfate biosynthesis + - "Chondroitin / heparan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7498 + - id: "HMR_7498" - name: "" - metabolites: !!omap - m01516g: -1 @@ -150907,15 +150907,15 @@ - m02682g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136213 or ENSG00000169105 or ENSG00000171310 or ENSG00000180767 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000136213 or ENSG00000169105 or ENSG00000171310 or ENSG00000180767" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Chondroitin / heparan sulfate biosynthesis + - "Chondroitin / heparan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7509 + - id: "HMR_7509" - name: "" - metabolites: !!omap - m01530g: -1 @@ -150925,15 +150925,15 @@ - m02682g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136213 or ENSG00000169105 or ENSG00000171310 or ENSG00000180767 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.5;2.8.2.35 - - references: + - gene_reaction_rule: "ENSG00000136213 or ENSG00000169105 or ENSG00000171310 or ENSG00000180767" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.5;2.8.2.35" + - references: "" - subsystem: - - Chondroitin / heparan sulfate biosynthesis + - "Chondroitin / heparan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7510 + - id: "HMR_7510" - name: "" - metabolites: !!omap - m01525g: 1 @@ -150943,15 +150943,15 @@ - m02682g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111817 or ENSG00000111962 - - rxnFrom: HMRdatabase - - eccodes: 5.1.3.19;2.8.2.- - - references: + - gene_reaction_rule: "ENSG00000111817 or ENSG00000111962" + - rxnFrom: "HMRdatabase" + - eccodes: "5.1.3.19;2.8.2.-" + - references: "" - subsystem: - - Chondroitin / heparan sulfate biosynthesis + - "Chondroitin / heparan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7519 + - id: "HMR_7519" - name: "" - metabolites: !!omap - m01532g: 1 @@ -150961,15 +150961,15 @@ - m02682g: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000122863 or ENSG00000147119 or ENSG00000182022 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.17;2.8.2.33 - - references: + - gene_reaction_rule: "ENSG00000122863 or ENSG00000147119 or ENSG00000182022" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.17;2.8.2.33" + - references: "" - subsystem: - - Chondroitin / heparan sulfate biosynthesis + - "Chondroitin / heparan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7520 + - id: "HMR_7520" - name: "" - metabolites: !!omap - m01532g: -1 @@ -150979,15 +150979,15 @@ - m03109g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000033100 or ENSG00000123989 or ENSG00000131873 or ENSG00000198108 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.175;2.4.1.226 - - references: + - gene_reaction_rule: "ENSG00000033100 or ENSG00000123989 or ENSG00000131873 or ENSG00000198108" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.175;2.4.1.226" + - references: "" - subsystem: - - Chondroitin / heparan sulfate biosynthesis + - "Chondroitin / heparan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7521 + - id: "HMR_7521" - name: "" - metabolites: !!omap - m01540g: -1 @@ -150997,15 +150997,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123989 or ENSG00000131873 or ENSG00000147408 or ENSG00000169826 or ENSG00000198108 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.226 - - references: + - gene_reaction_rule: "ENSG00000123989 or ENSG00000131873 or ENSG00000147408 or ENSG00000169826 or ENSG00000198108" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.226" + - references: "" - subsystem: - - Chondroitin / heparan sulfate biosynthesis + - "Chondroitin / heparan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7522 + - id: "HMR_7522" - name: "" - metabolites: !!omap - m01533g: 1 @@ -151015,15 +151015,15 @@ - m02682g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000122863 or ENSG00000147119 or ENSG00000182022 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.17;2.8.2.33 - - references: + - gene_reaction_rule: "ENSG00000122863 or ENSG00000147119 or ENSG00000182022" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.17;2.8.2.33" + - references: "" - subsystem: - - Chondroitin / heparan sulfate biosynthesis + - "Chondroitin / heparan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7534 + - id: "HMR_7534" - name: "" - metabolites: !!omap - m01532g: -1 @@ -151033,15 +151033,15 @@ - m02682g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111962 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.- - - references: + - gene_reaction_rule: "ENSG00000111962" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.-" + - references: "" - subsystem: - - Chondroitin / heparan sulfate biosynthesis + - "Chondroitin / heparan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7535 + - id: "HMR_7535" - name: "" - metabolites: !!omap - m01542g: -1 @@ -151051,15 +151051,15 @@ - m03109g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000033100 or ENSG00000123989 or ENSG00000131873 or ENSG00000198108 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.175;2.4.1.226 - - references: + - gene_reaction_rule: "ENSG00000033100 or ENSG00000123989 or ENSG00000131873 or ENSG00000198108" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.175;2.4.1.226" + - references: "" - subsystem: - - Chondroitin / heparan sulfate biosynthesis + - "Chondroitin / heparan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7536 + - id: "HMR_7536" - name: "" - metabolites: !!omap - m01551g: -1 @@ -151069,15 +151069,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123989 or ENSG00000131873 or ENSG00000147408 or ENSG00000169826 or ENSG00000198108 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.226 - - references: + - gene_reaction_rule: "ENSG00000123989 or ENSG00000131873 or ENSG00000147408 or ENSG00000169826 or ENSG00000198108" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.226" + - references: "" - subsystem: - - Chondroitin / heparan sulfate biosynthesis + - "Chondroitin / heparan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7537 + - id: "HMR_7537" - name: "" - metabolites: !!omap - m01552g: -1 @@ -151087,15 +151087,15 @@ - m02682g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000122863 or ENSG00000147119 or ENSG00000182022 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.17;2.8.2.33 - - references: + - gene_reaction_rule: "ENSG00000122863 or ENSG00000147119 or ENSG00000182022" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.17;2.8.2.33" + - references: "" - subsystem: - - Chondroitin / heparan sulfate biosynthesis + - "Chondroitin / heparan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7538 + - id: "HMR_7538" - name: "" - metabolites: !!omap - m01543g: 1 @@ -151105,15 +151105,15 @@ - m02682g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111962 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.- - - references: + - gene_reaction_rule: "ENSG00000111962" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.-" + - references: "" - subsystem: - - Chondroitin / heparan sulfate biosynthesis + - "Chondroitin / heparan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7551 + - id: "HMR_7551" - name: "" - metabolites: !!omap - m01565g: -1 @@ -151123,15 +151123,15 @@ - m02682g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136213 or ENSG00000169105 or ENSG00000171310 or ENSG00000180767 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000136213 or ENSG00000169105 or ENSG00000171310 or ENSG00000180767" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Chondroitin / heparan sulfate biosynthesis + - "Chondroitin / heparan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7552 + - id: "HMR_7552" - name: "" - metabolites: !!omap - m01565g: -1 @@ -151141,15 +151141,15 @@ - m02682g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000122863 or ENSG00000147119 or ENSG00000182022 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.17;2.8.2.33 - - references: + - gene_reaction_rule: "ENSG00000122863 or ENSG00000147119 or ENSG00000182022" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.17;2.8.2.33" + - references: "" - subsystem: - - Chondroitin / heparan sulfate biosynthesis + - "Chondroitin / heparan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7553 + - id: "HMR_7553" - name: "" - metabolites: !!omap - m01554g: 1 @@ -151159,15 +151159,15 @@ - m02682g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147119 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.17 - - references: + - gene_reaction_rule: "ENSG00000147119" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.17" + - references: "" - subsystem: - - Chondroitin / heparan sulfate biosynthesis + - "Chondroitin / heparan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7554 + - id: "HMR_7554" - name: "" - metabolites: !!omap - m01554g: 1 @@ -151177,15 +151177,15 @@ - m02682g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10956661 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10956661" - subsystem: - - Chondroitin / heparan sulfate biosynthesis + - "Chondroitin / heparan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7501 + - id: "HMR_7501" - name: "" - metabolites: !!omap - m00205l: 1 @@ -151194,15 +151194,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Chondroitin sulfate degradation + - "Chondroitin sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7502 + - id: "HMR_7502" - name: "" - metabolites: !!omap - m01519l: 1 @@ -151212,15 +151212,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113273 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.12 - - references: + - gene_reaction_rule: "ENSG00000113273" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.12" + - references: "" - subsystem: - - Chondroitin sulfate degradation + - "Chondroitin sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7503 + - id: "HMR_7503" - name: "" - metabolites: !!omap - m01520l: 1 @@ -151231,15 +151231,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000068001 or ENSG00000106302 or ENSG00000106304 or ENSG00000114378 or ENSG00000169660 or ENSG00000186792 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.35;3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000068001 or ENSG00000106302 or ENSG00000106304 or ENSG00000114378 or ENSG00000169660 or ENSG00000186792 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.35;3.2.1.52" + - references: "" - subsystem: - - Chondroitin sulfate degradation + - "Chondroitin sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7504 + - id: "HMR_7504" - name: "" - metabolites: !!omap - m01519l: -1 @@ -151248,15 +151248,15 @@ - m02525l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Chondroitin sulfate degradation + - "Chondroitin sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7505 + - id: "HMR_7505" - name: "" - metabolites: !!omap - m01520l: -1 @@ -151265,15 +151265,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000133116 or ENSG00000169919 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.31 - - references: + - gene_reaction_rule: "ENSG00000133116 or ENSG00000169919" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.31" + - references: "" - subsystem: - - Chondroitin sulfate degradation + - "Chondroitin sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7506 + - id: "HMR_7506" - name: "" - metabolites: !!omap - m01521l: -1 @@ -151283,15 +151283,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113273 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.12 - - references: + - gene_reaction_rule: "ENSG00000113273" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.12" + - references: "" - subsystem: - - Chondroitin sulfate degradation + - "Chondroitin sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7507 + - id: "HMR_7507" - name: "" - metabolites: !!omap - m01522l: -1 @@ -151300,15 +151300,15 @@ - m02525l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000068001 or ENSG00000106302 or ENSG00000106304 or ENSG00000114378 or ENSG00000169660 or ENSG00000186792 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.35;3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000068001 or ENSG00000106302 or ENSG00000106304 or ENSG00000114378 or ENSG00000169660 or ENSG00000186792 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.35;3.2.1.52" + - references: "" - subsystem: - - Chondroitin sulfate degradation + - "Chondroitin sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7508 + - id: "HMR_7508" - name: "" - metabolites: !!omap - m01523l: -1 @@ -151320,15 +151320,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Chondroitin sulfate degradation + - "Chondroitin sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7513 + - id: "HMR_7513" - name: "" - metabolites: !!omap - m00205l: 1 @@ -151337,15 +151337,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Chondroitin sulfate degradation + - "Chondroitin sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7514 + - id: "HMR_7514" - name: "" - metabolites: !!omap - m01526l: 1 @@ -151355,15 +151355,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113273 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.12 - - references: + - gene_reaction_rule: "ENSG00000113273" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.12" + - references: "" - subsystem: - - Chondroitin sulfate degradation + - "Chondroitin sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7515 + - id: "HMR_7515" - name: "" - metabolites: !!omap - m01527l: 1 @@ -151374,15 +151374,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000068001 or ENSG00000106302 or ENSG00000106304 or ENSG00000114378 or ENSG00000169660 or ENSG00000186792 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.35;3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000068001 or ENSG00000106302 or ENSG00000106304 or ENSG00000114378 or ENSG00000169660 or ENSG00000186792 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.35;3.2.1.52" + - references: "" - subsystem: - - Chondroitin sulfate degradation + - "Chondroitin sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7516 + - id: "HMR_7516" - name: "" - metabolites: !!omap - m01526l: -1 @@ -151391,15 +151391,15 @@ - m02525l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Chondroitin sulfate degradation + - "Chondroitin sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7517 + - id: "HMR_7517" - name: "" - metabolites: !!omap - m01527l: -1 @@ -151409,15 +151409,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000010404 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.13 - - references: + - gene_reaction_rule: "ENSG00000010404" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.13" + - references: "" - subsystem: - - Chondroitin sulfate degradation + - "Chondroitin sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7518 + - id: "HMR_7518" - name: "" - metabolites: !!omap - m01521l: 1 @@ -151426,15 +151426,15 @@ - m02384l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000127415 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.76 - - references: + - gene_reaction_rule: "ENSG00000127415" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.76" + - references: "" - subsystem: - - Chondroitin sulfate degradation + - "Chondroitin sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7525 + - id: "HMR_7525" - name: "" - metabolites: !!omap - m00205l: 1 @@ -151443,15 +151443,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Chondroitin sulfate degradation + - "Chondroitin sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7526 + - id: "HMR_7526" - name: "" - metabolites: !!omap - m01534l: 1 @@ -151461,15 +151461,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5 - - references: + - gene_reaction_rule: "ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5" + - references: "" - subsystem: - - Chondroitin sulfate degradation + - "Chondroitin sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7527 + - id: "HMR_7527" - name: "" - metabolites: !!omap - m01535l: 1 @@ -151480,15 +151480,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Chondroitin sulfate degradation + - "Chondroitin sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7528 + - id: "HMR_7528" - name: "" - metabolites: !!omap - m01534l: -1 @@ -151497,15 +151497,15 @@ - m02525l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Chondroitin sulfate degradation + - "Chondroitin sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7529 + - id: "HMR_7529" - name: "" - metabolites: !!omap - m01535l: -1 @@ -151514,15 +151514,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000133116 or ENSG00000169919 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.31 - - references: + - gene_reaction_rule: "ENSG00000133116 or ENSG00000169919" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.31" + - references: "" - subsystem: - - Chondroitin sulfate degradation + - "Chondroitin sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7530 + - id: "HMR_7530" - name: "" - metabolites: !!omap - m01536l: -1 @@ -151532,15 +151532,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5 - - references: + - gene_reaction_rule: "ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5" + - references: "" - subsystem: - - Chondroitin sulfate degradation + - "Chondroitin sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7531 + - id: "HMR_7531" - name: "" - metabolites: !!omap - m01536l: -1 @@ -151551,15 +151551,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Chondroitin sulfate degradation + - "Chondroitin sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7532 + - id: "HMR_7532" - name: "" - metabolites: !!omap - m01537l: -1 @@ -151568,15 +151568,15 @@ - m02525l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Chondroitin sulfate degradation + - "Chondroitin sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7533 + - id: "HMR_7533" - name: "" - metabolites: !!omap - m01538l: -1 @@ -151588,15 +151588,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Chondroitin sulfate degradation + - "Chondroitin sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7541 + - id: "HMR_7541" - name: "" - metabolites: !!omap - m00205l: 1 @@ -151605,15 +151605,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Chondroitin sulfate degradation + - "Chondroitin sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7542 + - id: "HMR_7542" - name: "" - metabolites: !!omap - m01544l: 1 @@ -151623,15 +151623,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5 - - references: + - gene_reaction_rule: "ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5" + - references: "" - subsystem: - - Chondroitin sulfate degradation + - "Chondroitin sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7543 + - id: "HMR_7543" - name: "" - metabolites: !!omap - m01545l: 1 @@ -151642,15 +151642,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Chondroitin sulfate degradation + - "Chondroitin sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7544 + - id: "HMR_7544" - name: "" - metabolites: !!omap - m01544l: -1 @@ -151659,15 +151659,15 @@ - m02525l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Chondroitin sulfate degradation + - "Chondroitin sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7545 + - id: "HMR_7545" - name: "" - metabolites: !!omap - m01545l: -1 @@ -151677,15 +151677,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Chondroitin sulfate degradation + - "Chondroitin sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7546 + - id: "HMR_7546" - name: "" - metabolites: !!omap - m01546l: -1 @@ -151694,15 +151694,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000133116 or ENSG00000169919 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.31 - - references: + - gene_reaction_rule: "ENSG00000133116 or ENSG00000169919" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.31" + - references: "" - subsystem: - - Chondroitin sulfate degradation + - "Chondroitin sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7547 + - id: "HMR_7547" - name: "" - metabolites: !!omap - m01547l: -1 @@ -151712,15 +151712,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5 - - references: + - gene_reaction_rule: "ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5" + - references: "" - subsystem: - - Chondroitin sulfate degradation + - "Chondroitin sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7548 + - id: "HMR_7548" - name: "" - metabolites: !!omap - m01547l: -1 @@ -151731,15 +151731,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Chondroitin sulfate degradation + - "Chondroitin sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7549 + - id: "HMR_7549" - name: "" - metabolites: !!omap - m01548l: -1 @@ -151748,15 +151748,15 @@ - m02525l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Chondroitin sulfate degradation + - "Chondroitin sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7550 + - id: "HMR_7550" - name: "" - metabolites: !!omap - m01538l: 1 @@ -151766,15 +151766,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Chondroitin sulfate degradation + - "Chondroitin sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7557 + - id: "HMR_7557" - name: "" - metabolites: !!omap - m00205l: 1 @@ -151783,15 +151783,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Chondroitin sulfate degradation + - "Chondroitin sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7558 + - id: "HMR_7558" - name: "" - metabolites: !!omap - m01555l: 1 @@ -151801,15 +151801,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113273 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.12 - - references: + - gene_reaction_rule: "ENSG00000113273" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.12" + - references: "" - subsystem: - - Chondroitin sulfate degradation + - "Chondroitin sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7559 + - id: "HMR_7559" - name: "" - metabolites: !!omap - m01557l: 1 @@ -151820,15 +151820,15 @@ - m02946l: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000068001 or ENSG00000106302 or ENSG00000106304 or ENSG00000114378 or ENSG00000169660 or ENSG00000186792 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.35;3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000068001 or ENSG00000106302 or ENSG00000106304 or ENSG00000114378 or ENSG00000169660 or ENSG00000186792 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.35;3.2.1.52" + - references: "" - subsystem: - - Chondroitin sulfate degradation + - "Chondroitin sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7560 + - id: "HMR_7560" - name: "" - metabolites: !!omap - m01555l: -1 @@ -151838,15 +151838,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5 - - references: + - gene_reaction_rule: "ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5" + - references: "" - subsystem: - - Chondroitin sulfate degradation + - "Chondroitin sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7561 + - id: "HMR_7561" - name: "" - metabolites: !!omap - m01556l: -1 @@ -151855,15 +151855,15 @@ - m02525l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Chondroitin sulfate degradation + - "Chondroitin sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7562 + - id: "HMR_7562" - name: "" - metabolites: !!omap - m01557l: -1 @@ -151872,15 +151872,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000133116 or ENSG00000169919 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.31 - - references: + - gene_reaction_rule: "ENSG00000133116 or ENSG00000169919" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.31" + - references: "" - subsystem: - - Chondroitin sulfate degradation + - "Chondroitin sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7563 + - id: "HMR_7563" - name: "" - metabolites: !!omap - m01558l: -1 @@ -151891,15 +151891,15 @@ - m02946l: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Chondroitin sulfate degradation + - "Chondroitin sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7564 + - id: "HMR_7564" - name: "" - metabolites: !!omap - m01558l: -1 @@ -151909,15 +151909,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113273 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.12 - - references: + - gene_reaction_rule: "ENSG00000113273" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.12" + - references: "" - subsystem: - - Chondroitin sulfate degradation + - "Chondroitin sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7565 + - id: "HMR_7565" - name: "" - metabolites: !!omap - m01559l: -1 @@ -151927,15 +151927,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 or ENSG00000068001 or ENSG00000106302 or ENSG00000106304 or ENSG00000114378 or ENSG00000141012 or ENSG00000170266 or ENSG00000186792 - - rxnFrom: HMRdatabase - - eccodes: 3.4.16.5;3.2.1.35;3.1.6.4;3.2.1.23 - - references: + - gene_reaction_rule: "ENSG00000064601 or ENSG00000068001 or ENSG00000106302 or ENSG00000106304 or ENSG00000114378 or ENSG00000141012 or ENSG00000170266 or ENSG00000186792" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.16.5;3.2.1.35;3.1.6.4;3.2.1.23" + - references: "" - subsystem: - - Chondroitin sulfate degradation + - "Chondroitin sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7566 + - id: "HMR_7566" - name: "" - metabolites: !!omap - m01560l: -1 @@ -151944,15 +151944,15 @@ - m02525l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Chondroitin sulfate degradation + - "Chondroitin sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7567 + - id: "HMR_7567" - name: "" - metabolites: !!omap - m01561l: -1 @@ -151964,15 +151964,15 @@ - m02946l: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Chondroitin sulfate degradation + - "Chondroitin sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7225 + - id: "HMR_7225" - name: "" - metabolites: !!omap - m00205l: 1 @@ -151981,15 +151981,15 @@ - m02080l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000172987 or ENSG00000173083 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.166 - - references: + - gene_reaction_rule: "ENSG00000172987 or ENSG00000173083" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.166" + - references: "" - subsystem: - - Heparan sulfate degradation + - "Heparan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7226 + - id: "HMR_7226" - name: "" - metabolites: !!omap - m02039l: 1 @@ -151999,15 +151999,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135677 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.14 - - references: + - gene_reaction_rule: "ENSG00000135677" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.14" + - references: "" - subsystem: - - Heparan sulfate degradation + - "Heparan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7227 + - id: "HMR_7227" - name: "" - metabolites: !!omap - m02039l: 1 @@ -152017,15 +152017,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000181523 - - rxnFrom: HMRdatabase - - eccodes: 3.10.1.1 - - references: + - gene_reaction_rule: "ENSG00000181523" + - rxnFrom: "HMRdatabase" + - eccodes: "3.10.1.1" + - references: "" - subsystem: - - Heparan sulfate degradation + - "Heparan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7228 + - id: "HMR_7228" - name: "" - metabolites: !!omap - m01261c: -1 @@ -152035,15 +152035,15 @@ - m02073l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165102 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.78 - - references: + - gene_reaction_rule: "ENSG00000165102" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.78" + - references: "" - subsystem: - - Heparan sulfate degradation + - "Heparan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7229 + - id: "HMR_7229" - name: "" - metabolites: !!omap - m02040l: -1 @@ -152052,15 +152052,15 @@ - m02527l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108784 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.50 - - references: + - gene_reaction_rule: "ENSG00000108784" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.50" + - references: "" - subsystem: - - Heparan sulfate degradation + - "Heparan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7230 + - id: "HMR_7230" - name: "" - metabolites: !!omap - m02040l: -1 @@ -152069,15 +152069,15 @@ - m02384l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000127415 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.76 - - references: + - gene_reaction_rule: "ENSG00000127415" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.76" + - references: "" - subsystem: - - Heparan sulfate degradation + - "Heparan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7231 + - id: "HMR_7231" - name: "" - metabolites: !!omap - m02039l: 1 @@ -152087,15 +152087,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135677 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.14 - - references: + - gene_reaction_rule: "ENSG00000135677" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.14" + - references: "" - subsystem: - - Heparan sulfate degradation + - "Heparan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7232 + - id: "HMR_7232" - name: "" - metabolites: !!omap - m02039l: 1 @@ -152105,15 +152105,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000181523 - - rxnFrom: HMRdatabase - - eccodes: 3.10.1.1 - - references: + - gene_reaction_rule: "ENSG00000181523" + - rxnFrom: "HMRdatabase" + - eccodes: "3.10.1.1" + - references: "" - subsystem: - - Heparan sulfate degradation + - "Heparan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7233 + - id: "HMR_7233" - name: "" - metabolites: !!omap - m01261c: -1 @@ -152123,15 +152123,15 @@ - m02078l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165102 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.78 - - references: + - gene_reaction_rule: "ENSG00000165102" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.78" + - references: "" - subsystem: - - Heparan sulfate degradation + - "Heparan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7234 + - id: "HMR_7234" - name: "" - metabolites: !!omap - m02040l: -1 @@ -152140,15 +152140,15 @@ - m02527l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108784 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.50 - - references: + - gene_reaction_rule: "ENSG00000108784" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.50" + - references: "" - subsystem: - - Heparan sulfate degradation + - "Heparan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7235 + - id: "HMR_7235" - name: "" - metabolites: !!omap - m01973l: 1 @@ -152157,15 +152157,15 @@ - m02079l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000133116 or ENSG00000169919 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.31 - - references: + - gene_reaction_rule: "ENSG00000133116 or ENSG00000169919" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.31" + - references: "" - subsystem: - - Heparan sulfate degradation + - "Heparan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7236 + - id: "HMR_7236" - name: "" - metabolites: !!omap - m02039l: 1 @@ -152175,15 +152175,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Heparan sulfate degradation + - "Heparan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7237 + - id: "HMR_7237" - name: "" - metabolites: !!omap - m02039l: 1 @@ -152193,15 +152193,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135677 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.14 - - references: + - gene_reaction_rule: "ENSG00000135677" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.14" + - references: "" - subsystem: - - Heparan sulfate degradation + - "Heparan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7238 + - id: "HMR_7238" - name: "" - metabolites: !!omap - m02039l: 1 @@ -152211,15 +152211,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000181523 - - rxnFrom: HMRdatabase - - eccodes: 3.10.1.1 - - references: + - gene_reaction_rule: "ENSG00000181523" + - rxnFrom: "HMRdatabase" + - eccodes: "3.10.1.1" + - references: "" - subsystem: - - Heparan sulfate degradation + - "Heparan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7239 + - id: "HMR_7239" - name: "" - metabolites: !!omap - m01261c: -1 @@ -152229,15 +152229,15 @@ - m02060l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165102 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.78 - - references: + - gene_reaction_rule: "ENSG00000165102" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.78" + - references: "" - subsystem: - - Heparan sulfate degradation + - "Heparan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7240 + - id: "HMR_7240" - name: "" - metabolites: !!omap - m02040l: -1 @@ -152246,15 +152246,15 @@ - m02527l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108784 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.50 - - references: + - gene_reaction_rule: "ENSG00000108784" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.50" + - references: "" - subsystem: - - Heparan sulfate degradation + - "Heparan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7241 + - id: "HMR_7241" - name: "" - metabolites: !!omap - m02039l: 1 @@ -152264,15 +152264,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000010404 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.13 - - references: + - gene_reaction_rule: "ENSG00000010404" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.13" + - references: "" - subsystem: - - Heparan sulfate degradation + - "Heparan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7242 + - id: "HMR_7242" - name: "" - metabolites: !!omap - m02040l: -1 @@ -152281,15 +152281,15 @@ - m02384l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000127415 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.76 - - references: + - gene_reaction_rule: "ENSG00000127415" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.76" + - references: "" - subsystem: - - Heparan sulfate degradation + - "Heparan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7243 + - id: "HMR_7243" - name: "" - metabolites: !!omap - m02039l: 1 @@ -152299,15 +152299,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Heparan sulfate degradation + - "Heparan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7244 + - id: "HMR_7244" - name: "" - metabolites: !!omap - m02039l: 1 @@ -152317,15 +152317,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000181523 - - rxnFrom: HMRdatabase - - eccodes: 3.10.1.1 - - references: + - gene_reaction_rule: "ENSG00000181523" + - rxnFrom: "HMRdatabase" + - eccodes: "3.10.1.1" + - references: "" - subsystem: - - Heparan sulfate degradation + - "Heparan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7245 + - id: "HMR_7245" - name: "" - metabolites: !!omap - m01261c: -1 @@ -152335,15 +152335,15 @@ - m02067l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165102 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.78 - - references: + - gene_reaction_rule: "ENSG00000165102" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.78" + - references: "" - subsystem: - - Heparan sulfate degradation + - "Heparan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7246 + - id: "HMR_7246" - name: "" - metabolites: !!omap - m02040l: -1 @@ -152352,15 +152352,15 @@ - m02527l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108784 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.50 - - references: + - gene_reaction_rule: "ENSG00000108784" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.50" + - references: "" - subsystem: - - Heparan sulfate degradation + - "Heparan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7247 + - id: "HMR_7247" - name: "" - metabolites: !!omap - m02039l: 1 @@ -152370,15 +152370,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000010404 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.13 - - references: + - gene_reaction_rule: "ENSG00000010404" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.13" + - references: "" - subsystem: - - Heparan sulfate degradation + - "Heparan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7248 + - id: "HMR_7248" - name: "" - metabolites: !!omap - m02040l: -1 @@ -152387,15 +152387,15 @@ - m02384l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000127415 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.76 - - references: + - gene_reaction_rule: "ENSG00000127415" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.76" + - references: "" - subsystem: - - Heparan sulfate degradation + - "Heparan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7249 + - id: "HMR_7249" - name: "" - metabolites: !!omap - m02039l: 1 @@ -152405,15 +152405,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Heparan sulfate degradation + - "Heparan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7250 + - id: "HMR_7250" - name: "" - metabolites: !!omap - m02040l: -1 @@ -152422,15 +152422,15 @@ - m02527l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108784 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.50 - - references: + - gene_reaction_rule: "ENSG00000108784" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.50" + - references: "" - subsystem: - - Heparan sulfate degradation + - "Heparan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7251 + - id: "HMR_7251" - name: "" - metabolites: !!omap - m01758l: 1 @@ -152440,15 +152440,15 @@ - m02072l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Heparan sulfate degradation + - "Heparan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7571 + - id: "HMR_7571" - name: "" - metabolites: !!omap - m01973l: 1 @@ -152457,15 +152457,15 @@ - m02141l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000133116 or ENSG00000169919 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.31 - - references: + - gene_reaction_rule: "ENSG00000133116 or ENSG00000169919" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.31" + - references: "" - subsystem: - - Heparan sulfate degradation + - "Heparan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7572 + - id: "HMR_7572" - name: "" - metabolites: !!omap - m02040l: -1 @@ -152474,15 +152474,15 @@ - m02527l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Heparan sulfate degradation + - "Heparan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7573 + - id: "HMR_7573" - name: "" - metabolites: !!omap - m01973l: 1 @@ -152491,15 +152491,15 @@ - m02527l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169919 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000169919" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Heparan sulfate degradation + - "Heparan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7335 + - id: "HMR_7335" - name: "" - metabolites: !!omap - m01590g: 1 @@ -152509,15 +152509,15 @@ - m02323g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110080 or ENSG00000126091 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.6 - - references: + - gene_reaction_rule: "ENSG00000110080 or ENSG00000126091" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.6" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7336 + - id: "HMR_7336" - name: "" - metabolites: !!omap - m02039g: 1 @@ -152527,15 +152527,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000156966 or ENSG00000170340 or ENSG00000174684 or ENSG00000175711 or ENSG00000176383 or ENSG00000177191 or ENSG00000179913 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000156966 or ENSG00000170340 or ENSG00000174684 or ENSG00000175711 or ENSG00000176383 or ENSG00000177191 or ENSG00000179913" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7337 + - id: "HMR_7337" - name: "" - metabolites: !!omap - m02039g: 1 @@ -152545,15 +152545,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000086062 or ENSG00000117411 or ENSG00000158470 or ENSG00000158850 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000086062 or ENSG00000117411 or ENSG00000158470 or ENSG00000158850" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7338 + - id: "HMR_7338" - name: "" - metabolites: !!omap - m02039g: 1 @@ -152563,15 +152563,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000156966 or ENSG00000170340 or ENSG00000174684 or ENSG00000175711 or ENSG00000176383 or ENSG00000177191 or ENSG00000179913 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000156966 or ENSG00000170340 or ENSG00000174684 or ENSG00000175711 or ENSG00000176383 or ENSG00000177191 or ENSG00000179913" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7339 + - id: "HMR_7339" - name: "" - metabolites: !!omap - m02039g: 1 @@ -152581,15 +152581,15 @@ - m02682g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135702 or ENSG00000140835 or ENSG00000175040 or ENSG00000183196 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.- - - references: + - gene_reaction_rule: "ENSG00000135702 or ENSG00000140835 or ENSG00000175040 or ENSG00000183196" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.-" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7340 + - id: "HMR_7340" - name: "" - metabolites: !!omap - m02039g: 1 @@ -152599,15 +152599,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000086062 or ENSG00000117411 or ENSG00000158470 or ENSG00000158850 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000086062 or ENSG00000117411 or ENSG00000158470 or ENSG00000158850" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7341 + - id: "HMR_7341" - name: "" - metabolites: !!omap - m02039g: 1 @@ -152617,15 +152617,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000156966 or ENSG00000170340 or ENSG00000174684 or ENSG00000175711 or ENSG00000176383 or ENSG00000177191 or ENSG00000179913 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000156966 or ENSG00000170340 or ENSG00000174684 or ENSG00000175711 or ENSG00000176383 or ENSG00000177191 or ENSG00000179913" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7342 + - id: "HMR_7342" - name: "" - metabolites: !!omap - m02039g: 1 @@ -152635,15 +152635,15 @@ - m02682g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135702 or ENSG00000140835 or ENSG00000175040 or ENSG00000183196 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.- - - references: + - gene_reaction_rule: "ENSG00000135702 or ENSG00000140835 or ENSG00000175040 or ENSG00000183196" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.-" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7343 + - id: "HMR_7343" - name: "" - metabolites: !!omap - m02039g: 1 @@ -152653,15 +152653,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000086062 or ENSG00000117411 or ENSG00000158470 or ENSG00000158850 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000086062 or ENSG00000117411 or ENSG00000158470 or ENSG00000158850" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7344 + - id: "HMR_7344" - name: "" - metabolites: !!omap - m02039g: 1 @@ -152671,15 +152671,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000156966 or ENSG00000170340 or ENSG00000174684 or ENSG00000175711 or ENSG00000176383 or ENSG00000177191 or ENSG00000179913 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000156966 or ENSG00000170340 or ENSG00000174684 or ENSG00000175711 or ENSG00000176383 or ENSG00000177191 or ENSG00000179913" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7345 + - id: "HMR_7345" - name: "" - metabolites: !!omap - m02039g: 1 @@ -152689,15 +152689,15 @@ - m02682g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135702 or ENSG00000140835 or ENSG00000175040 or ENSG00000183196 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.- - - references: + - gene_reaction_rule: "ENSG00000135702 or ENSG00000140835 or ENSG00000175040 or ENSG00000183196" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.-" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7346 + - id: "HMR_7346" - name: "" - metabolites: !!omap - m02039g: 1 @@ -152707,15 +152707,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000086062 or ENSG00000117411 or ENSG00000158470 or ENSG00000158850 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000086062 or ENSG00000117411 or ENSG00000158470 or ENSG00000158850" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7347 + - id: "HMR_7347" - name: "" - metabolites: !!omap - m02039g: 1 @@ -152725,15 +152725,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000156966 or ENSG00000170340 or ENSG00000174684 or ENSG00000175711 or ENSG00000176383 or ENSG00000177191 or ENSG00000179913 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000156966 or ENSG00000170340 or ENSG00000174684 or ENSG00000175711 or ENSG00000176383 or ENSG00000177191 or ENSG00000179913" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7348 + - id: "HMR_7348" - name: "" - metabolites: !!omap - m02039g: 1 @@ -152743,15 +152743,15 @@ - m02682g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135702 or ENSG00000140835 or ENSG00000175040 or ENSG00000183196 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.- - - references: + - gene_reaction_rule: "ENSG00000135702 or ENSG00000140835 or ENSG00000175040 or ENSG00000183196" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.-" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7349 + - id: "HMR_7349" - name: "" - metabolites: !!omap - m02039g: 1 @@ -152761,15 +152761,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000086062 or ENSG00000117411 or ENSG00000158470 or ENSG00000158850 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000086062 or ENSG00000117411 or ENSG00000158470 or ENSG00000158850" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7350 + - id: "HMR_7350" - name: "" - metabolites: !!omap - m02039g: 1 @@ -152779,15 +152779,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000156966 or ENSG00000170340 or ENSG00000174684 or ENSG00000175711 or ENSG00000176383 or ENSG00000177191 or ENSG00000179913 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000156966 or ENSG00000170340 or ENSG00000174684 or ENSG00000175711 or ENSG00000176383 or ENSG00000177191 or ENSG00000179913" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7351 + - id: "HMR_7351" - name: "" - metabolites: !!omap - m02039g: 1 @@ -152797,15 +152797,15 @@ - m02682g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135702 or ENSG00000140835 or ENSG00000175040 or ENSG00000183196 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.- - - references: + - gene_reaction_rule: "ENSG00000135702 or ENSG00000140835 or ENSG00000175040 or ENSG00000183196" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.-" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7352 + - id: "HMR_7352" - name: "" - metabolites: !!omap - m02039g: 1 @@ -152815,15 +152815,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000086062 or ENSG00000117411 or ENSG00000158470 or ENSG00000158850 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000086062 or ENSG00000117411 or ENSG00000158470 or ENSG00000158850" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7353 + - id: "HMR_7353" - name: "" - metabolites: !!omap - m02039g: 1 @@ -152833,15 +152833,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000156966 or ENSG00000170340 or ENSG00000174684 or ENSG00000175711 or ENSG00000176383 or ENSG00000177191 or ENSG00000179913 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000156966 or ENSG00000170340 or ENSG00000174684 or ENSG00000175711 or ENSG00000176383 or ENSG00000177191 or ENSG00000179913" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7354 + - id: "HMR_7354" - name: "" - metabolites: !!omap - m02039g: 1 @@ -152851,15 +152851,15 @@ - m02682g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135702 or ENSG00000140835 or ENSG00000175040 or ENSG00000183196 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.- - - references: + - gene_reaction_rule: "ENSG00000135702 or ENSG00000140835 or ENSG00000175040 or ENSG00000183196" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.-" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7355 + - id: "HMR_7355" - name: "" - metabolites: !!omap - m02039g: 1 @@ -152869,15 +152869,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000086062 or ENSG00000117411 or ENSG00000158470 or ENSG00000158850 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000086062 or ENSG00000117411 or ENSG00000158470 or ENSG00000158850" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7356 + - id: "HMR_7356" - name: "" - metabolites: !!omap - m02039g: 1 @@ -152887,15 +152887,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000156966 or ENSG00000170340 or ENSG00000174684 or ENSG00000175711 or ENSG00000176383 or ENSG00000177191 or ENSG00000179913 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000156966 or ENSG00000170340 or ENSG00000174684 or ENSG00000175711 or ENSG00000176383 or ENSG00000177191 or ENSG00000179913" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7357 + - id: "HMR_7357" - name: "" - metabolites: !!omap - m02039g: 1 @@ -152905,15 +152905,15 @@ - m02682g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135702 or ENSG00000140835 or ENSG00000175040 or ENSG00000183196 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.- - - references: + - gene_reaction_rule: "ENSG00000135702 or ENSG00000140835 or ENSG00000175040 or ENSG00000183196" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.-" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7358 + - id: "HMR_7358" - name: "" - metabolites: !!omap - m02039g: 1 @@ -152923,15 +152923,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000086062 or ENSG00000117411 or ENSG00000158470 or ENSG00000158850 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000086062 or ENSG00000117411 or ENSG00000158470 or ENSG00000158850" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7359 + - id: "HMR_7359" - name: "" - metabolites: !!omap - m02039g: 1 @@ -152941,15 +152941,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000156966 or ENSG00000170340 or ENSG00000174684 or ENSG00000175711 or ENSG00000176383 or ENSG00000177191 or ENSG00000179913 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000156966 or ENSG00000170340 or ENSG00000174684 or ENSG00000175711 or ENSG00000176383 or ENSG00000177191 or ENSG00000179913" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7360 + - id: "HMR_7360" - name: "" - metabolites: !!omap - m02039g: 1 @@ -152959,15 +152959,15 @@ - m02682g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135702 or ENSG00000140835 or ENSG00000175040 or ENSG00000183196 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.- - - references: + - gene_reaction_rule: "ENSG00000135702 or ENSG00000140835 or ENSG00000175040 or ENSG00000183196" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.-" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7361 + - id: "HMR_7361" - name: "" - metabolites: !!omap - m02039g: 1 @@ -152977,15 +152977,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000086062 or ENSG00000117411 or ENSG00000158470 or ENSG00000158850 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000086062 or ENSG00000117411 or ENSG00000158470 or ENSG00000158850" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7362 + - id: "HMR_7362" - name: "" - metabolites: !!omap - m02039g: 1 @@ -152995,15 +152995,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000156966 or ENSG00000170340 or ENSG00000174684 or ENSG00000175711 or ENSG00000176383 or ENSG00000177191 or ENSG00000179913 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000156966 or ENSG00000170340 or ENSG00000174684 or ENSG00000175711 or ENSG00000176383 or ENSG00000177191 or ENSG00000179913" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7363 + - id: "HMR_7363" - name: "" - metabolites: !!omap - m02039g: 1 @@ -153013,15 +153013,15 @@ - m02682g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135702 or ENSG00000140835 or ENSG00000175040 or ENSG00000183196 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.- - - references: + - gene_reaction_rule: "ENSG00000135702 or ENSG00000140835 or ENSG00000175040 or ENSG00000183196" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.-" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7364 + - id: "HMR_7364" - name: "" - metabolites: !!omap - m02039g: 1 @@ -153031,15 +153031,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000086062 or ENSG00000117411 or ENSG00000158470 or ENSG00000158850 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000086062 or ENSG00000117411 or ENSG00000158470 or ENSG00000158850" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7365 + - id: "HMR_7365" - name: "" - metabolites: !!omap - m02039g: 1 @@ -153049,15 +153049,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000156966 or ENSG00000170340 or ENSG00000174684 or ENSG00000175711 or ENSG00000176383 or ENSG00000177191 or ENSG00000179913 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000156966 or ENSG00000170340 or ENSG00000174684 or ENSG00000175711 or ENSG00000176383 or ENSG00000177191 or ENSG00000179913" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7366 + - id: "HMR_7366" - name: "" - metabolites: !!omap - m02039g: 1 @@ -153067,15 +153067,15 @@ - m02682g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135702 or ENSG00000140835 or ENSG00000175040 or ENSG00000183196 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.- - - references: + - gene_reaction_rule: "ENSG00000135702 or ENSG00000140835 or ENSG00000175040 or ENSG00000183196" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.-" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7367 + - id: "HMR_7367" - name: "" - metabolites: !!omap - m02039g: 1 @@ -153085,15 +153085,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000086062 or ENSG00000117411 or ENSG00000158470 or ENSG00000158850 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000086062 or ENSG00000117411 or ENSG00000158470 or ENSG00000158850" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7368 + - id: "HMR_7368" - name: "" - metabolites: !!omap - m02039g: 1 @@ -153103,15 +153103,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000156966 or ENSG00000170340 or ENSG00000174684 or ENSG00000175711 or ENSG00000176383 or ENSG00000177191 or ENSG00000179913 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000156966 or ENSG00000170340 or ENSG00000174684 or ENSG00000175711 or ENSG00000176383 or ENSG00000177191 or ENSG00000179913" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7369 + - id: "HMR_7369" - name: "" - metabolites: !!omap - m02039g: 1 @@ -153121,15 +153121,15 @@ - m02682g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135702 or ENSG00000140835 or ENSG00000175040 or ENSG00000183196 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.- - - references: + - gene_reaction_rule: "ENSG00000135702 or ENSG00000140835 or ENSG00000175040 or ENSG00000183196" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.-" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7370 + - id: "HMR_7370" - name: "" - metabolites: !!omap - m02039g: 1 @@ -153139,15 +153139,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000086062 or ENSG00000117411 or ENSG00000158470 or ENSG00000158850 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000086062 or ENSG00000117411 or ENSG00000158470 or ENSG00000158850" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7371 + - id: "HMR_7371" - name: "" - metabolites: !!omap - m02039g: 1 @@ -153157,15 +153157,15 @@ - m02682g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000122863 or ENSG00000147119 or ENSG00000175264 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.17;2.8.2.21 - - references: + - gene_reaction_rule: "ENSG00000122863 or ENSG00000147119 or ENSG00000175264" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.17;2.8.2.21" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7442 + - id: "HMR_7442" - name: "" - metabolites: !!omap - m01590g: 1 @@ -153175,15 +153175,15 @@ - m02304g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008513 or ENSG00000110080 or ENSG00000157350 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.4 - - references: + - gene_reaction_rule: "ENSG00000008513 or ENSG00000110080 or ENSG00000157350" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.4" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7443 + - id: "HMR_7443" - name: "" - metabolites: !!omap - m02039g: 1 @@ -153193,15 +153193,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000086062 or ENSG00000117411 or ENSG00000158470 or ENSG00000158850 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000086062 or ENSG00000117411 or ENSG00000158470 or ENSG00000158850" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7444 + - id: "HMR_7444" - name: "" - metabolites: !!omap - m02039g: 1 @@ -153211,15 +153211,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000156966 or ENSG00000170340 or ENSG00000174684 or ENSG00000175711 or ENSG00000176383 or ENSG00000177191 or ENSG00000179913 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000156966 or ENSG00000170340 or ENSG00000174684 or ENSG00000175711 or ENSG00000176383 or ENSG00000177191 or ENSG00000179913" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7445 + - id: "HMR_7445" - name: "" - metabolites: !!omap - m02039g: 1 @@ -153229,15 +153229,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000086062 or ENSG00000117411 or ENSG00000158470 or ENSG00000158850 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000086062 or ENSG00000117411 or ENSG00000158470 or ENSG00000158850" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7446 + - id: "HMR_7446" - name: "" - metabolites: !!omap - m02039g: 1 @@ -153247,15 +153247,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000156966 or ENSG00000170340 or ENSG00000174684 or ENSG00000175711 or ENSG00000176383 or ENSG00000177191 or ENSG00000179913 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000156966 or ENSG00000170340 or ENSG00000174684 or ENSG00000175711 or ENSG00000176383 or ENSG00000177191 or ENSG00000179913" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7447 + - id: "HMR_7447" - name: "" - metabolites: !!omap - m02039g: 1 @@ -153265,15 +153265,15 @@ - m02682g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135702 or ENSG00000140835 or ENSG00000175040 or ENSG00000183196 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.- - - references: + - gene_reaction_rule: "ENSG00000135702 or ENSG00000140835 or ENSG00000175040 or ENSG00000183196" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.-" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7448 + - id: "HMR_7448" - name: "" - metabolites: !!omap - m02039g: 1 @@ -153283,15 +153283,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000086062 or ENSG00000117411 or ENSG00000158470 or ENSG00000158850 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000086062 or ENSG00000117411 or ENSG00000158470 or ENSG00000158850" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7449 + - id: "HMR_7449" - name: "" - metabolites: !!omap - m02039g: 1 @@ -153301,15 +153301,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000156966 or ENSG00000170340 or ENSG00000174684 or ENSG00000175711 or ENSG00000176383 or ENSG00000177191 or ENSG00000179913 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000156966 or ENSG00000170340 or ENSG00000174684 or ENSG00000175711 or ENSG00000176383 or ENSG00000177191 or ENSG00000179913" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7450 + - id: "HMR_7450" - name: "" - metabolites: !!omap - m02039g: 1 @@ -153319,15 +153319,15 @@ - m02682g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135702 or ENSG00000140835 or ENSG00000175040 or ENSG00000183196 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.- - - references: + - gene_reaction_rule: "ENSG00000135702 or ENSG00000140835 or ENSG00000175040 or ENSG00000183196" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.-" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7451 + - id: "HMR_7451" - name: "" - metabolites: !!omap - m02039g: 1 @@ -153337,15 +153337,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000086062 or ENSG00000117411 or ENSG00000158470 or ENSG00000158850 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000086062 or ENSG00000117411 or ENSG00000158470 or ENSG00000158850" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7452 + - id: "HMR_7452" - name: "" - metabolites: !!omap - m02039g: 1 @@ -153355,15 +153355,15 @@ - m02682g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000122863 or ENSG00000147119 or ENSG00000175264 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.17;2.8.2.21 - - references: + - gene_reaction_rule: "ENSG00000122863 or ENSG00000147119 or ENSG00000175264" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.17;2.8.2.21" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7471 + - id: "HMR_7471" - name: "" - metabolites: !!omap - m01609g: -1 @@ -153373,15 +153373,15 @@ - m03107g: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000086062 or ENSG00000117411 or ENSG00000158470 or ENSG00000158850 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000086062 or ENSG00000117411 or ENSG00000158470 or ENSG00000158850" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7472 + - id: "HMR_7472" - name: "" - metabolites: !!omap - m01590g: 1 @@ -153391,15 +153391,15 @@ - m02291g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008513 or ENSG00000110080 or ENSG00000157350 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.4 - - references: + - gene_reaction_rule: "ENSG00000008513 or ENSG00000110080 or ENSG00000157350" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.4" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7473 + - id: "HMR_7473" - name: "" - metabolites: !!omap - m02039g: 1 @@ -153409,15 +153409,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000156966 or ENSG00000170340 or ENSG00000174684 or ENSG00000175711 or ENSG00000176383 or ENSG00000177191 or ENSG00000179913 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000156966 or ENSG00000170340 or ENSG00000174684 or ENSG00000175711 or ENSG00000176383 or ENSG00000177191 or ENSG00000179913" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7474 + - id: "HMR_7474" - name: "" - metabolites: !!omap - m02039g: 1 @@ -153427,15 +153427,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000086062 or ENSG00000117411 or ENSG00000158470 or ENSG00000158850 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000086062 or ENSG00000117411 or ENSG00000158470 or ENSG00000158850" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7475 + - id: "HMR_7475" - name: "" - metabolites: !!omap - m02039g: 1 @@ -153445,15 +153445,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000156966 or ENSG00000170340 or ENSG00000174684 or ENSG00000175711 or ENSG00000176383 or ENSG00000177191 or ENSG00000179913 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000156966 or ENSG00000170340 or ENSG00000174684 or ENSG00000175711 or ENSG00000176383 or ENSG00000177191 or ENSG00000179913" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7476 + - id: "HMR_7476" - name: "" - metabolites: !!omap - m02039g: 1 @@ -153463,15 +153463,15 @@ - m02682g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135702 or ENSG00000140835 or ENSG00000175040 or ENSG00000183196 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.- - - references: + - gene_reaction_rule: "ENSG00000135702 or ENSG00000140835 or ENSG00000175040 or ENSG00000183196" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.-" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7477 + - id: "HMR_7477" - name: "" - metabolites: !!omap - m02039g: 1 @@ -153481,15 +153481,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000086062 or ENSG00000117411 or ENSG00000158470 or ENSG00000158850 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000086062 or ENSG00000117411 or ENSG00000158470 or ENSG00000158850" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7478 + - id: "HMR_7478" - name: "" - metabolites: !!omap - m02039g: 1 @@ -153499,15 +153499,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000156966 or ENSG00000170340 or ENSG00000174684 or ENSG00000175711 or ENSG00000176383 or ENSG00000177191 or ENSG00000179913 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000156966 or ENSG00000170340 or ENSG00000174684 or ENSG00000175711 or ENSG00000176383 or ENSG00000177191 or ENSG00000179913" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7479 + - id: "HMR_7479" - name: "" - metabolites: !!omap - m02039g: 1 @@ -153517,15 +153517,15 @@ - m02682g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135702 or ENSG00000140835 or ENSG00000175040 or ENSG00000183196 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.- - - references: + - gene_reaction_rule: "ENSG00000135702 or ENSG00000140835 or ENSG00000175040 or ENSG00000183196" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.-" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7480 + - id: "HMR_7480" - name: "" - metabolites: !!omap - m02039g: 1 @@ -153535,15 +153535,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000086062 or ENSG00000117411 or ENSG00000158470 or ENSG00000158850 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000086062 or ENSG00000117411 or ENSG00000158470 or ENSG00000158850" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7481 + - id: "HMR_7481" - name: "" - metabolites: !!omap - m02039g: 1 @@ -153553,15 +153553,15 @@ - m02682g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000122863 or ENSG00000147119 or ENSG00000175264 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.17;2.8.2.21 - - references: + - gene_reaction_rule: "ENSG00000122863 or ENSG00000147119 or ENSG00000175264" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.17;2.8.2.21" + - references: "" - subsystem: - - Keratan sulfate biosynthesis + - "Keratan sulfate biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7373 + - id: "HMR_7373" - name: "" - metabolites: !!omap - m01159s: 1 @@ -153570,15 +153570,15 @@ - m02278s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000001036 or ENSG00000179163 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.51 - - references: + - gene_reaction_rule: "ENSG00000001036 or ENSG00000179163" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.51" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7375 + - id: "HMR_7375" - name: "" - metabolites: !!omap - m01159l: 1 @@ -153587,15 +153587,15 @@ - m02278l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000001036 or ENSG00000179163 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.51 - - references: + - gene_reaction_rule: "ENSG00000001036 or ENSG00000179163" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.51" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7376 + - id: "HMR_7376" - name: "" - metabolites: !!omap - m00198l: 1 @@ -153604,15 +153604,15 @@ - m02248l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000038002 - - rxnFrom: HMRdatabase - - eccodes: 3.5.1.26 - - references: + - gene_reaction_rule: "ENSG00000038002" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.1.26" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7377 + - id: "HMR_7377" - name: "" - metabolites: !!omap - m02040l: -1 @@ -153621,15 +153621,15 @@ - m02527l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167280 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.96 - - references: + - gene_reaction_rule: "ENSG00000167280" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.96" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7378 + - id: "HMR_7378" - name: "" - metabolites: !!omap - m02040l: -1 @@ -153638,15 +153638,15 @@ - m02543l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5 - - references: + - gene_reaction_rule: "ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7379 + - id: "HMR_7379" - name: "" - metabolites: !!omap - m02039l: 1 @@ -153656,15 +153656,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5 - - references: + - gene_reaction_rule: "ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7380 + - id: "HMR_7380" - name: "" - metabolites: !!omap - m01910l: 2 @@ -153673,15 +153673,15 @@ - m02274l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5 - - references: + - gene_reaction_rule: "ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7381 + - id: "HMR_7381" - name: "" - metabolites: !!omap - m02039l: 1 @@ -153691,15 +153691,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135677 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.14 - - references: + - gene_reaction_rule: "ENSG00000135677" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.14" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7382 + - id: "HMR_7382" - name: "" - metabolites: !!omap - m02039l: 1 @@ -153710,15 +153710,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7383 + - id: "HMR_7383" - name: "" - metabolites: !!omap - m02040l: -2 @@ -153727,15 +153727,15 @@ - m02527l: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7384 + - id: "HMR_7384" - name: "" - metabolites: !!omap - m01910l: 1 @@ -153744,15 +153744,15 @@ - m02277l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5 - - references: + - gene_reaction_rule: "ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7385 + - id: "HMR_7385" - name: "" - metabolites: !!omap - m02039l: 1 @@ -153762,15 +153762,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135677 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.14 - - references: + - gene_reaction_rule: "ENSG00000135677" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.14" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7386 + - id: "HMR_7386" - name: "" - metabolites: !!omap - m02040l: -1 @@ -153779,15 +153779,15 @@ - m02527l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7387 + - id: "HMR_7387" - name: "" - metabolites: !!omap - m02039l: 1 @@ -153798,15 +153798,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7388 + - id: "HMR_7388" - name: "" - metabolites: !!omap - m01910l: 1 @@ -153815,15 +153815,15 @@ - m02240l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5 - - references: + - gene_reaction_rule: "ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7389 + - id: "HMR_7389" - name: "" - metabolites: !!omap - m02039l: 1 @@ -153833,15 +153833,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135677 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.14 - - references: + - gene_reaction_rule: "ENSG00000135677" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.14" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7390 + - id: "HMR_7390" - name: "" - metabolites: !!omap - m02040l: -1 @@ -153850,15 +153850,15 @@ - m02527l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7391 + - id: "HMR_7391" - name: "" - metabolites: !!omap - m02039l: 1 @@ -153869,15 +153869,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7392 + - id: "HMR_7392" - name: "" - metabolites: !!omap - m01910l: 1 @@ -153886,15 +153886,15 @@ - m02243l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5 - - references: + - gene_reaction_rule: "ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7393 + - id: "HMR_7393" - name: "" - metabolites: !!omap - m02039l: 1 @@ -153904,15 +153904,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135677 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.14 - - references: + - gene_reaction_rule: "ENSG00000135677" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.14" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7394 + - id: "HMR_7394" - name: "" - metabolites: !!omap - m02040l: -1 @@ -153921,15 +153921,15 @@ - m02527l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7395 + - id: "HMR_7395" - name: "" - metabolites: !!omap - m02039l: 1 @@ -153940,15 +153940,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7396 + - id: "HMR_7396" - name: "" - metabolites: !!omap - m01910l: 1 @@ -153957,15 +153957,15 @@ - m02246l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5 - - references: + - gene_reaction_rule: "ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7397 + - id: "HMR_7397" - name: "" - metabolites: !!omap - m02039l: 1 @@ -153975,15 +153975,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135677 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.14 - - references: + - gene_reaction_rule: "ENSG00000135677" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.14" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7398 + - id: "HMR_7398" - name: "" - metabolites: !!omap - m02039l: 1 @@ -153994,15 +153994,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7399 + - id: "HMR_7399" - name: "" - metabolites: !!omap - m02040l: -1 @@ -154011,15 +154011,15 @@ - m02527l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7400 + - id: "HMR_7400" - name: "" - metabolites: !!omap - m01910l: 1 @@ -154028,15 +154028,15 @@ - m02250l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5 - - references: + - gene_reaction_rule: "ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7401 + - id: "HMR_7401" - name: "" - metabolites: !!omap - m02039l: 1 @@ -154046,15 +154046,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135677 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.14 - - references: + - gene_reaction_rule: "ENSG00000135677" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.14" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7402 + - id: "HMR_7402" - name: "" - metabolites: !!omap - m02040l: -1 @@ -154063,15 +154063,15 @@ - m02527l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7403 + - id: "HMR_7403" - name: "" - metabolites: !!omap - m02039l: 1 @@ -154082,15 +154082,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7404 + - id: "HMR_7404" - name: "" - metabolites: !!omap - m01910l: 1 @@ -154099,15 +154099,15 @@ - m02253l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5 - - references: + - gene_reaction_rule: "ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7405 + - id: "HMR_7405" - name: "" - metabolites: !!omap - m02039l: 1 @@ -154117,15 +154117,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135677 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.14 - - references: + - gene_reaction_rule: "ENSG00000135677" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.14" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7406 + - id: "HMR_7406" - name: "" - metabolites: !!omap - m02040l: -1 @@ -154134,15 +154134,15 @@ - m02527l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7407 + - id: "HMR_7407" - name: "" - metabolites: !!omap - m02039l: 1 @@ -154153,15 +154153,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7408 + - id: "HMR_7408" - name: "" - metabolites: !!omap - m01910l: 1 @@ -154170,15 +154170,15 @@ - m02256l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5 - - references: + - gene_reaction_rule: "ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7409 + - id: "HMR_7409" - name: "" - metabolites: !!omap - m02039l: 1 @@ -154188,15 +154188,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135677 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.14 - - references: + - gene_reaction_rule: "ENSG00000135677" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.14" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7410 + - id: "HMR_7410" - name: "" - metabolites: !!omap - m02040l: -1 @@ -154205,15 +154205,15 @@ - m02527l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7411 + - id: "HMR_7411" - name: "" - metabolites: !!omap - m02039l: 1 @@ -154224,15 +154224,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7412 + - id: "HMR_7412" - name: "" - metabolites: !!omap - m01910l: 1 @@ -154241,15 +154241,15 @@ - m02260l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5 - - references: + - gene_reaction_rule: "ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7413 + - id: "HMR_7413" - name: "" - metabolites: !!omap - m02039l: 1 @@ -154259,15 +154259,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135677 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.14 - - references: + - gene_reaction_rule: "ENSG00000135677" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.14" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7414 + - id: "HMR_7414" - name: "" - metabolites: !!omap - m02040l: -1 @@ -154276,15 +154276,15 @@ - m02527l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7415 + - id: "HMR_7415" - name: "" - metabolites: !!omap - m02039l: 1 @@ -154295,15 +154295,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7416 + - id: "HMR_7416" - name: "" - metabolites: !!omap - m01910l: 1 @@ -154312,15 +154312,15 @@ - m02263l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5 - - references: + - gene_reaction_rule: "ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7417 + - id: "HMR_7417" - name: "" - metabolites: !!omap - m02039l: 1 @@ -154330,15 +154330,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135677 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.14 - - references: + - gene_reaction_rule: "ENSG00000135677" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.14" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7418 + - id: "HMR_7418" - name: "" - metabolites: !!omap - m02039l: 1 @@ -154349,15 +154349,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7419 + - id: "HMR_7419" - name: "" - metabolites: !!omap - m02040l: -1 @@ -154366,15 +154366,15 @@ - m02527l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7420 + - id: "HMR_7420" - name: "" - metabolites: !!omap - m01910l: 1 @@ -154383,15 +154383,15 @@ - m02266l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5 - - references: + - gene_reaction_rule: "ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7421 + - id: "HMR_7421" - name: "" - metabolites: !!omap - m02039l: 1 @@ -154401,15 +154401,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135677 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.14 - - references: + - gene_reaction_rule: "ENSG00000135677" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.14" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7422 + - id: "HMR_7422" - name: "" - metabolites: !!omap - m02040l: -1 @@ -154418,15 +154418,15 @@ - m02527l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7423 + - id: "HMR_7423" - name: "" - metabolites: !!omap - m02039l: 1 @@ -154437,15 +154437,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7424 + - id: "HMR_7424" - name: "" - metabolites: !!omap - m01910l: 1 @@ -154454,15 +154454,15 @@ - m02269l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5 - - references: + - gene_reaction_rule: "ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7425 + - id: "HMR_7425" - name: "" - metabolites: !!omap - m02040l: -1 @@ -154471,15 +154471,15 @@ - m02527l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7426 + - id: "HMR_7426" - name: "" - metabolites: !!omap - m01910l: 1 @@ -154488,15 +154488,15 @@ - m02272l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5 - - references: + - gene_reaction_rule: "ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7427 + - id: "HMR_7427" - name: "" - metabolites: !!omap - m00141l: 1 @@ -154505,15 +154505,15 @@ - m02527l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7455 + - id: "HMR_7455" - name: "" - metabolites: !!omap - m02040l: -1 @@ -154522,15 +154522,15 @@ - m02543l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5 - - references: + - gene_reaction_rule: "ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7456 + - id: "HMR_7456" - name: "" - metabolites: !!omap - m02039l: 1 @@ -154540,15 +154540,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5 - - references: + - gene_reaction_rule: "ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7457 + - id: "HMR_7457" - name: "" - metabolites: !!omap - m01910l: 2 @@ -154557,15 +154557,15 @@ - m02281l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5 - - references: + - gene_reaction_rule: "ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7458 + - id: "HMR_7458" - name: "" - metabolites: !!omap - m02039l: 1 @@ -154575,15 +154575,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135677 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.14 - - references: + - gene_reaction_rule: "ENSG00000135677" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.14" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7459 + - id: "HMR_7459" - name: "" - metabolites: !!omap - m02039l: 1 @@ -154594,15 +154594,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7460 + - id: "HMR_7460" - name: "" - metabolites: !!omap - m02040l: -1 @@ -154611,15 +154611,15 @@ - m02527l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7461 + - id: "HMR_7461" - name: "" - metabolites: !!omap - m01910l: 1 @@ -154628,15 +154628,15 @@ - m02284l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5 - - references: + - gene_reaction_rule: "ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7462 + - id: "HMR_7462" - name: "" - metabolites: !!omap - m02039l: 1 @@ -154647,15 +154647,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7463 + - id: "HMR_7463" - name: "" - metabolites: !!omap - m02039l: 1 @@ -154665,15 +154665,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135677 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.14 - - references: + - gene_reaction_rule: "ENSG00000135677" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.14" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7464 + - id: "HMR_7464" - name: "" - metabolites: !!omap - m02040l: -1 @@ -154682,15 +154682,15 @@ - m02527l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7465 + - id: "HMR_7465" - name: "" - metabolites: !!omap - m01910l: 1 @@ -154699,15 +154699,15 @@ - m02287l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5 - - references: + - gene_reaction_rule: "ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7466 + - id: "HMR_7466" - name: "" - metabolites: !!omap - m01801l: 1 @@ -154716,15 +154716,15 @@ - m02527l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7467 + - id: "HMR_7467" - name: "" - metabolites: !!omap - m01611l: 1 @@ -154733,15 +154733,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5 - - references: + - gene_reaction_rule: "ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7468 + - id: "HMR_7468" - name: "" - metabolites: !!omap - m01611l: -1 @@ -154750,15 +154750,15 @@ - m03000l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7469 + - id: "HMR_7469" - name: "" - metabolites: !!omap - m00205l: 1 @@ -154768,15 +154768,15 @@ - m03110l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000198951 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.49 - - references: + - gene_reaction_rule: "ENSG00000198951" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.49" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7484 + - id: "HMR_7484" - name: "" - metabolites: !!omap - m02040l: -1 @@ -154785,15 +154785,15 @@ - m02543l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5 - - references: + - gene_reaction_rule: "ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7485 + - id: "HMR_7485" - name: "" - metabolites: !!omap - m02039l: 1 @@ -154803,15 +154803,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5 - - references: + - gene_reaction_rule: "ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7486 + - id: "HMR_7486" - name: "" - metabolites: !!omap - m01910l: 2 @@ -154820,15 +154820,15 @@ - m02301l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5 - - references: + - gene_reaction_rule: "ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.4;3.2.1.18;3.2.1.23;3.4.16.5" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7487 + - id: "HMR_7487" - name: "" - metabolites: !!omap - m02039l: 1 @@ -154838,15 +154838,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135677 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.14 - - references: + - gene_reaction_rule: "ENSG00000135677" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.14" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7488 + - id: "HMR_7488" - name: "" - metabolites: !!omap - m02039l: 1 @@ -154857,15 +154857,15 @@ - m02946l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_7489 + - id: "HMR_7489" - name: "" - metabolites: !!omap - m02040l: -2 @@ -154874,15 +154874,15 @@ - m02527l: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 or ENSG00000169660 or ENSG00000213614 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.52 - - references: + - gene_reaction_rule: "ENSG00000049860 or ENSG00000169660 or ENSG00000213614" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.52" + - references: "" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: HMR_8643 + - id: "HMR_8643" - name: "" - metabolites: !!omap - m01380c: 1 @@ -154892,15 +154892,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000159398 or ENSG00000172828 or ENSG00000172831 or ENSG00000198848 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.1;3.1.1.84;3.1.1.56 - - references: + - gene_reaction_rule: "ENSG00000159398 or ENSG00000172828 or ENSG00000172831 or ENSG00000198848" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.1;3.1.1.84;3.1.1.56" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_8645 + - id: "HMR_8645" - name: "" - metabolites: !!omap - m01380r: 1 @@ -154910,15 +154910,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000172831 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.84 - - references: + - gene_reaction_rule: "ENSG00000172831" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.84" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_8648 + - id: "HMR_8648" - name: "" - metabolites: !!omap - m01766r: 1 @@ -154928,15 +154928,15 @@ - m02470r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000114771 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.3 - - references: + - gene_reaction_rule: "ENSG00000114771" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.3" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_1581 + - id: "HMR_1581" - name: "" - metabolites: !!omap - m01183r: 1 @@ -154948,15 +154948,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167910 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.17 - - references: PMID:1591235;PMID:2106520;PMID:7288293 + - gene_reaction_rule: "ENSG00000167910" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.17" + - references: "PMID:1591235;PMID:2106520;PMID:7288293" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1584 + - id: "HMR_1584" - name: "" - metabolites: !!omap - m01182r: 1 @@ -154966,15 +154966,15 @@ - m02553r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099377 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.181 - - references: + - gene_reaction_rule: "ENSG00000099377" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.181" + - references: "" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1585 + - id: "HMR_1585" - name: "" - metabolites: !!omap - m01182r: 1 @@ -154984,15 +154984,15 @@ - m02555r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099377 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.181 - - references: PMID:12679481 + - gene_reaction_rule: "ENSG00000099377" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.181" + - references: "PMID:12679481" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1589 + - id: "HMR_1589" - name: "" - metabolites: !!omap - m01178r: 1 @@ -155004,15 +155004,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000180432 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.95 - - references: PMID:1591235;PMID:6806291 + - gene_reaction_rule: "ENSG00000180432" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.95" + - references: "PMID:1591235;PMID:6806291" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1590 + - id: "HMR_1590" - name: "" - metabolites: !!omap - m01178r: 1 @@ -155024,15 +155024,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000180432 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.95 - - references: + - gene_reaction_rule: "ENSG00000180432" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.95" + - references: "" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1592 + - id: "HMR_1592" - name: "" - metabolites: !!omap - m01178c: 1 @@ -155044,30 +155044,30 @@ - m02751r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12543708 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12543708" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1593 + - id: "HMR_1593" - name: "" - metabolites: !!omap - m01178c: -1 - m01178r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12543708 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12543708" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1595 + - id: "HMR_1595" - name: "" - metabolites: !!omap - m01177c: 1 @@ -155077,15 +155077,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000122787 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.3;1.3.99.6 - - references: PMID:7508385 + - gene_reaction_rule: "ENSG00000122787" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.3;1.3.99.6" + - references: "PMID:7508385" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1598 + - id: "HMR_1598" - name: "" - metabolites: !!omap - m01078c: 1 @@ -155095,15 +155095,15 @@ - m02553c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000198610 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.50 - - references: PMID:1591235;PMID:3459552 + - gene_reaction_rule: "ENSG00000198610" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.50" + - references: "PMID:1591235;PMID:3459552" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1599 + - id: "HMR_1599" - name: "" - metabolites: !!omap - m01078c: 1 @@ -155113,15 +155113,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151632 or ENSG00000187134 or ENSG00000196139 or ENSG00000198610 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.50;1.1.1.213 - - references: PMID:1591235;PMID:3459552 + - gene_reaction_rule: "ENSG00000151632 or ENSG00000187134 or ENSG00000196139 or ENSG00000198610" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.50;1.1.1.213" + - references: "PMID:1591235;PMID:3459552" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1604 + - id: "HMR_1604" - name: "" - metabolites: !!omap - m01078c: -1 @@ -155133,15 +155133,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135929 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.15 - - references: PMID:1591235;PMID:271969;PMID:4026854;PMID:7077149 + - gene_reaction_rule: "ENSG00000135929" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.15" + - references: "PMID:1591235;PMID:271969;PMID:4026854;PMID:7077149" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1605 + - id: "HMR_1605" - name: "" - metabolites: !!omap - m01078m: -1 @@ -155153,15 +155153,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135929 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.15 - - references: PMID:1708392;PMID:2019602;PMID:9660774 + - gene_reaction_rule: "ENSG00000135929" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.15" + - references: "PMID:1708392;PMID:2019602;PMID:9660774" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1608 + - id: "HMR_1608" - name: "" - metabolites: !!omap - m00750c: 1 @@ -155171,15 +155171,15 @@ - m02553c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135929 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.15 - - references: PMID:1591235;PMID:6338006 + - gene_reaction_rule: "ENSG00000135929" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.15" + - references: "PMID:1591235;PMID:6338006" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1609 + - id: "HMR_1609" - name: "" - metabolites: !!omap - m00750m: 1 @@ -155189,15 +155189,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135929 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.15 - - references: + - gene_reaction_rule: "ENSG00000135929" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.15" + - references: "" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1610 + - id: "HMR_1610" - name: "" - metabolites: !!omap - m00750m: 1 @@ -155207,15 +155207,15 @@ - m02555m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135929 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.15 - - references: PMID:1708392;PMID:9660774 + - gene_reaction_rule: "ENSG00000135929" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.15" + - references: "PMID:1708392;PMID:9660774" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1611 + - id: "HMR_1611" - name: "" - metabolites: !!omap - m00750c: -1 @@ -155226,15 +155226,15 @@ - m02553c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135929 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.15 - - references: PMID:1591235;PMID:5723340;PMID:5914340 + - gene_reaction_rule: "ENSG00000135929" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.15" + - references: "PMID:1591235;PMID:5723340;PMID:5914340" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1613 + - id: "HMR_1613" - name: "" - metabolites: !!omap - m00750m: -1 @@ -155245,15 +155245,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135929 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.15 - - references: + - gene_reaction_rule: "ENSG00000135929" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.15" + - references: "" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1614 + - id: "HMR_1614" - name: "" - metabolites: !!omap - m00750m: -1 @@ -155264,45 +155264,45 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135929 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.15 - - references: PMID:1708392;PMID:9660774 + - gene_reaction_rule: "ENSG00000135929" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.15" + - references: "PMID:1708392;PMID:9660774" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1619 + - id: "HMR_1619" - name: "" - metabolites: !!omap - m00752c: -1 - m00752r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000083807 or ENSG00000140284 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.7 - - references: PMID:12543708 + - gene_reaction_rule: "ENSG00000083807 or ENSG00000140284" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.7" + - references: "PMID:12543708" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1620 + - id: "HMR_1620" - name: "" - metabolites: !!omap - m00752c: -1 - m00752m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000083807 or ENSG00000140284 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.7 - - references: PMID:12543708 + - gene_reaction_rule: "ENSG00000083807 or ENSG00000140284" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.7" + - references: "PMID:12543708" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1622 + - id: "HMR_1622" - name: "" - metabolites: !!omap - m00752c: -1 @@ -155314,30 +155314,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117528 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:17173541 + - gene_reaction_rule: "ENSG00000117528" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:17173541" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1623 + - id: "HMR_1623" - name: "" - metabolites: !!omap - m00752c: -1 - m00752p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1624 + - id: "HMR_1624" - name: "" - metabolites: !!omap - m00616r: 1 @@ -155348,15 +155348,15 @@ - m02759r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000083807 or ENSG00000140284 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.7 - - references: PMID:10198260;PMID:3183523;PMID:8301225 + - gene_reaction_rule: "ENSG00000083807 or ENSG00000140284" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.7" + - references: "PMID:10198260;PMID:3183523;PMID:8301225" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1625 + - id: "HMR_1625" - name: "" - metabolites: !!omap - m00616p: 1 @@ -155367,15 +155367,15 @@ - m02759p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000083807 or ENSG00000140284 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.7 - - references: + - gene_reaction_rule: "ENSG00000083807 or ENSG00000140284" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.7" + - references: "" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1627 + - id: "HMR_1627" - name: "" - metabolites: !!omap - m00616c: 1 @@ -155386,90 +155386,90 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000083807 or ENSG00000140284 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.7 - - references: PMID:10479480;PMID:10749848;PMID:11980911 + - gene_reaction_rule: "ENSG00000083807 or ENSG00000140284" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.7" + - references: "PMID:10479480;PMID:10749848;PMID:11980911" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1629 + - id: "HMR_1629" - name: "" - metabolites: !!omap - m00616c: -1 - m00616p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000180432 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.95 - - references: PMID:12543708 + - gene_reaction_rule: "ENSG00000180432" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.95" + - references: "PMID:12543708" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1630 + - id: "HMR_1630" - name: "" - metabolites: !!omap - m00616c: -1 - m00616m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000180432 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.95 - - references: PMID:12543708 + - gene_reaction_rule: "ENSG00000180432" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.95" + - references: "PMID:12543708" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1631 + - id: "HMR_1631" - name: "" - metabolites: !!omap - m00616c: -1 - m00616r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000180432 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.95 - - references: PMID:12543708 + - gene_reaction_rule: "ENSG00000180432" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.95" + - references: "PMID:12543708" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1632 + - id: "HMR_1632" - name: "" - metabolites: !!omap - m00616p: -1 - m00618p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000242110 - - rxnFrom: HMRdatabase - - eccodes: 5.1.99.4 - - references: PMID:11864182;PMID:11060344;PMID:10709654;PMID:11060344;PMID:11060344 + - gene_reaction_rule: "ENSG00000242110" + - rxnFrom: "HMRdatabase" + - eccodes: "5.1.99.4" + - references: "PMID:11864182;PMID:11060344;PMID:10709654;PMID:11060344;PMID:11060344" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1635 + - id: "HMR_1635" - name: "" - metabolites: !!omap - m00616m: -1 - m00618m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000242110 - - rxnFrom: HMRdatabase - - eccodes: 5.1.99.4 - - references: PMID:11864182;PMID:11060344;PMID:10709654;PMID:11060344;PMID:11060344 + - gene_reaction_rule: "ENSG00000242110" + - rxnFrom: "HMRdatabase" + - eccodes: "5.1.99.4" + - references: "PMID:11864182;PMID:11060344;PMID:10709654;PMID:11060344;PMID:11060344" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1637 + - id: "HMR_1637" - name: "" - metabolites: !!omap - m00618m: -1 @@ -155478,15 +155478,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6;1.17.99.- - - references: PMID:10709654 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6;1.17.99.-" + - references: "PMID:10709654" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1638 + - id: "HMR_1638" - name: "" - metabolites: !!omap - m00618p: -1 @@ -155497,15 +155497,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6;1.17.99.- - - references: + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6;1.17.99.-" + - references: "" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1639 + - id: "HMR_1639" - name: "" - metabolites: !!omap - m00618p: -1 @@ -155514,15 +155514,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.6;1.17.99.- - - references: PMID:11356170;PMID:8943006 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.6;1.17.99.-" + - references: "PMID:11356170;PMID:8943006" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1642 + - id: "HMR_1642" - name: "" - metabolites: !!omap - m00036p: 1 @@ -155530,15 +155530,15 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.107 - - references: PMID:8902629 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.107" + - references: "PMID:8902629" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1646 + - id: "HMR_1646" - name: "" - metabolites: !!omap - m00036p: -1 @@ -155548,15 +155548,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.1.1.211 - - references: PMID:11330072 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.1.1.211" + - references: "PMID:11330072" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1652 + - id: "HMR_1652" - name: "" - metabolites: !!omap - m00748p: -1 @@ -155565,15 +155565,15 @@ - m02774p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000116171 or ENSG00000167306 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.176;2.3.1.16 - - references: PMID:1121274;PMID:11356164;PMID:6378901 + - gene_reaction_rule: "ENSG00000060971 or ENSG00000116171 or ENSG00000167306" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.176;2.3.1.16" + - references: "PMID:1121274;PMID:11356164;PMID:6378901" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1653 + - id: "HMR_1653" - name: "" - metabolites: !!omap - m00748m: -1 @@ -155582,30 +155582,30 @@ - m02774m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000116171 or ENSG00000167306 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.176;2.3.1.16 - - references: PMID:1121274;PMID:11356164;PMID:6378901 + - gene_reaction_rule: "ENSG00000060971 or ENSG00000116171 or ENSG00000167306" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.176;2.3.1.16" + - references: "PMID:1121274;PMID:11356164;PMID:6378901" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1656 + - id: "HMR_1656" - name: "" - metabolites: !!omap - m01514c: -1 - m01514p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10884298;PMID:6469982 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10884298;PMID:6469982" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1659 + - id: "HMR_1659" - name: "" - metabolites: !!omap - m01285c: 1 @@ -155617,15 +155617,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000067829 or ENSG00000067840 or ENSG00000101986 or ENSG00000130821 or ENSG00000130822 or ENSG00000130829 or ENSG00000180879 or ENSG00000184343 or ENSG00000185825 or ENSG00000198753 or ENSG00000198910 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:18619829 + - gene_reaction_rule: "ENSG00000067829 or ENSG00000067840 or ENSG00000101986 or ENSG00000130821 or ENSG00000130822 or ENSG00000130829 or ENSG00000180879 or ENSG00000184343 or ENSG00000185825 or ENSG00000198753 or ENSG00000198910" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:18619829" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1660 + - id: "HMR_1660" - name: "" - metabolites: !!omap - m01445c: 1 @@ -155635,15 +155635,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101473 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.27 - - references: PMID:10884298 + - gene_reaction_rule: "ENSG00000101473" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.27" + - references: "PMID:10884298" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1662 + - id: "HMR_1662" - name: "" - metabolites: !!omap - m01445m: 1 @@ -155653,15 +155653,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101473 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.27 - - references: PMID:11454857;PMID:10944470;PMID:10817395;PMID:11673457 + - gene_reaction_rule: "ENSG00000101473" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.27" + - references: "PMID:11454857;PMID:10944470;PMID:10817395;PMID:11673457" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1663 + - id: "HMR_1663" - name: "" - metabolites: !!omap - m01445p: 1 @@ -155671,45 +155671,45 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101473 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.27 - - references: PMID:11454857;PMID:10944470;PMID:10817395;PMID:11673457 + - gene_reaction_rule: "ENSG00000101473" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.27" + - references: "PMID:11454857;PMID:10944470;PMID:10817395;PMID:11673457" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1665 + - id: "HMR_1665" - name: "" - metabolites: !!omap - m01445c: 1 - m01445p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000083807 or ENSG00000140284 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.7 - - references: PMID:12543708 + - gene_reaction_rule: "ENSG00000083807 or ENSG00000140284" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.7" + - references: "PMID:12543708" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1666 + - id: "HMR_1666" - name: "" - metabolites: !!omap - m01445c: 1 - m01445m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000083807 or ENSG00000140284 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.7 - - references: PMID:12543708 + - gene_reaction_rule: "ENSG00000083807 or ENSG00000140284" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.7" + - references: "PMID:12543708" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1667 + - id: "HMR_1667" - name: "" - metabolites: !!omap - m01514p: -1 @@ -155718,15 +155718,15 @@ - m02963p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136881 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.65 - - references: PMID:10884298;PMID:12239217;PMID:12543708;PMID:15026425;PMID:3741411;PMID:6884990 + - gene_reaction_rule: "ENSG00000136881" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.65" + - references: "PMID:10884298;PMID:12239217;PMID:12543708;PMID:15026425;PMID:3741411;PMID:6884990" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1668 + - id: "HMR_1668" - name: "" - metabolites: !!omap - m01514c: -1 @@ -155735,15 +155735,15 @@ - m02963c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136881 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.65 - - references: PMID:10884298;PMID:12239217;PMID:12543708;PMID:15026425;PMID:3741411;PMID:6884990 + - gene_reaction_rule: "ENSG00000136881" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.65" + - references: "PMID:10884298;PMID:12239217;PMID:12543708;PMID:15026425;PMID:3741411;PMID:6884990" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1670 + - id: "HMR_1670" - name: "" - metabolites: !!omap - m01514c: -1 @@ -155752,15 +155752,15 @@ - m01988c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136881 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.65 - - references: PMID:10884298;PMID:12239217;PMID:12543708;PMID:15026425;PMID:3741411;PMID:6884990 + - gene_reaction_rule: "ENSG00000136881" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.65" + - references: "PMID:10884298;PMID:12239217;PMID:12543708;PMID:15026425;PMID:3741411;PMID:6884990" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1673 + - id: "HMR_1673" - name: "" - metabolites: !!omap - m01181c: 1 @@ -155770,15 +155770,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000122787 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.3;1.3.99.6 - - references: PMID:7508385 + - gene_reaction_rule: "ENSG00000122787" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.3;1.3.99.6" + - references: "PMID:7508385" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1676 + - id: "HMR_1676" - name: "" - metabolites: !!omap - m01095c: 1 @@ -155788,15 +155788,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151632 or ENSG00000187134 or ENSG00000196139 or ENSG00000198610 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.213;1.1.1.50 - - references: PMID:1554355;PMID:1591235;PMID:3459552 + - gene_reaction_rule: "ENSG00000151632 or ENSG00000187134 or ENSG00000196139 or ENSG00000198610" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.213;1.1.1.50" + - references: "PMID:1554355;PMID:1591235;PMID:3459552" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1678 + - id: "HMR_1678" - name: "" - metabolites: !!omap - m01095c: 1 @@ -155806,30 +155806,30 @@ - m02553c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000198610 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.50 - - references: PMID:1554355;PMID:1591235;PMID:3459552 + - gene_reaction_rule: "ENSG00000198610" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.50" + - references: "PMID:1554355;PMID:1591235;PMID:3459552" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1679 + - id: "HMR_1679" - name: "" - metabolites: !!omap - m01095c: -1 - m01095m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12543708 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12543708" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1681 + - id: "HMR_1681" - name: "" - metabolites: !!omap - m01093c: 1 @@ -155841,15 +155841,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135929 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.15 - - references: PMID:1708392;PMID:2019602;PMID:9660774 + - gene_reaction_rule: "ENSG00000135929" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.15" + - references: "PMID:1708392;PMID:2019602;PMID:9660774" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1682 + - id: "HMR_1682" - name: "" - metabolites: !!omap - m01093m: 1 @@ -155861,15 +155861,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135929 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.15 - - references: PMID:1708392;PMID:2019602;PMID:9660774 + - gene_reaction_rule: "ENSG00000135929" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.15" + - references: "PMID:1708392;PMID:2019602;PMID:9660774" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1684 + - id: "HMR_1684" - name: "" - metabolites: !!omap - m00756c: -1 @@ -155879,15 +155879,15 @@ - m02553c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147576 or ENSG00000172955 or ENSG00000187758 or ENSG00000196344 or ENSG00000196616 or ENSG00000197894 or ENSG00000198099 or ENSG00000248144 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.1 - - references: PMID:5487878;PMID:6338006;PMID:6379302 + - gene_reaction_rule: "ENSG00000147576 or ENSG00000172955 or ENSG00000187758 or ENSG00000196344 or ENSG00000196616 or ENSG00000197894 or ENSG00000198099 or ENSG00000248144" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.1" + - references: "PMID:5487878;PMID:6338006;PMID:6379302" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1685 + - id: "HMR_1685" - name: "" - metabolites: !!omap - m00756m: 1 @@ -155897,15 +155897,15 @@ - m02555m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135929 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.15 - - references: PMID:1708392;PMID:9660774 + - gene_reaction_rule: "ENSG00000135929" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.15" + - references: "PMID:1708392;PMID:9660774" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1687 + - id: "HMR_1687" - name: "" - metabolites: !!omap - m01094m: 1 @@ -155917,15 +155917,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135929 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.15 - - references: PMID:11454857 + - gene_reaction_rule: "ENSG00000135929" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.15" + - references: "PMID:11454857" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1689 + - id: "HMR_1689" - name: "" - metabolites: !!omap - m00757m: 1 @@ -155935,15 +155935,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135929 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.15 - - references: PMID:9660774 + - gene_reaction_rule: "ENSG00000135929" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.15" + - references: "PMID:9660774" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1691 + - id: "HMR_1691" - name: "" - metabolites: !!omap - m00757m: -1 @@ -155954,15 +155954,15 @@ - m02555m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135929 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.15 - - references: PMID:9660774 + - gene_reaction_rule: "ENSG00000135929" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.15" + - references: "PMID:9660774" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1692 + - id: "HMR_1692" - name: "" - metabolites: !!omap - m00756c: -1 @@ -155973,15 +155973,15 @@ - m02553c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000143149 or ENSG00000164904 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.3 - - references: PMID:11182138;PMID:8155713;PMID:9538213 + - gene_reaction_rule: "ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000143149 or ENSG00000164904" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.3" + - references: "PMID:11182138;PMID:8155713;PMID:9538213" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1693 + - id: "HMR_1693" - name: "" - metabolites: !!omap - m00756m: -1 @@ -155992,45 +155992,45 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135929 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.15 - - references: PMID:1708392;PMID:9660774 + - gene_reaction_rule: "ENSG00000135929" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.15" + - references: "PMID:1708392;PMID:9660774" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1694 + - id: "HMR_1694" - name: "" - metabolites: !!omap - m00758c: -1 - m00758m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000138029 or ENSG00000167306 or ENSG00000167315 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.176;2.3.1.16 - - references: PMID:12543708 + - gene_reaction_rule: "ENSG00000060971 or ENSG00000138029 or ENSG00000167306 or ENSG00000167315" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.176;2.3.1.16" + - references: "PMID:12543708" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1695 + - id: "HMR_1695" - name: "" - metabolites: !!omap - m00758c: -1 - m00758r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12543708 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12543708" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1696 + - id: "HMR_1696" - name: "" - metabolites: !!omap - m00758c: -1 @@ -156042,15 +156042,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117528 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:17173541 + - gene_reaction_rule: "ENSG00000117528" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:17173541" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1697 + - id: "HMR_1697" - name: "" - metabolites: !!omap - m00614c: 1 @@ -156061,15 +156061,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000083807 or ENSG00000140284 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.28;6.2.1.7 - - references: PMID:10479480;PMID:10749848;PMID:11980911 + - gene_reaction_rule: "ENSG00000083807 or ENSG00000140284" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.28;6.2.1.7" + - references: "PMID:10479480;PMID:10749848;PMID:11980911" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1699 + - id: "HMR_1699" - name: "" - metabolites: !!omap - m00614r: 1 @@ -156080,15 +156080,15 @@ - m02759r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000083807 or ENSG00000140284 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.28;6.2.1.7 - - references: PMID:10198260;PMID:12543708;PMID:3183523 + - gene_reaction_rule: "ENSG00000083807 or ENSG00000140284" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.28;6.2.1.7" + - references: "PMID:10198260;PMID:12543708;PMID:3183523" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1700 + - id: "HMR_1700" - name: "" - metabolites: !!omap - m00614p: 1 @@ -156099,30 +156099,30 @@ - m02759p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000083807 or ENSG00000140284 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.28;6.2.1.7 - - references: PMID:10198260;PMID:12543708;PMID:3183523 + - gene_reaction_rule: "ENSG00000083807 or ENSG00000140284" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.28;6.2.1.7" + - references: "PMID:10198260;PMID:12543708;PMID:3183523" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1701 + - id: "HMR_1701" - name: "" - metabolites: !!omap - m00614c: -1 - m00614p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12543708 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12543708" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1702 + - id: "HMR_1702" - name: "" - metabolites: !!omap - m00614p: 1 @@ -156134,30 +156134,30 @@ - m02751r: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12543708;PMID:17034878 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12543708;PMID:17034878" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1703 + - id: "HMR_1703" - name: "" - metabolites: !!omap - m00614p: -1 - m00617p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000242110 - - rxnFrom: HMRdatabase - - eccodes: 5.1.99.4 - - references: PMID:7649182;PMID:11060344;PMID:10655068 + - gene_reaction_rule: "ENSG00000242110" + - rxnFrom: "HMRdatabase" + - eccodes: "5.1.99.4" + - references: "PMID:7649182;PMID:11060344;PMID:10655068" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1704 + - id: "HMR_1704" - name: "" - metabolites: !!omap - m00617p: -1 @@ -156166,15 +156166,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000168306 - - rxnFrom: HMRdatabase - - eccodes: 1.17.99.3 - - references: PMID:8943006;PMID:8387517 + - gene_reaction_rule: "ENSG00000168306" + - rxnFrom: "HMRdatabase" + - eccodes: "1.17.99.3" + - references: "PMID:8943006;PMID:8387517" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1706 + - id: "HMR_1706" - name: "" - metabolites: !!omap - m00037p: 1 @@ -156182,15 +156182,15 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.107 - - references: PMID:8902629 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.107" + - references: "PMID:8902629" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1708 + - id: "HMR_1708" - name: "" - metabolites: !!omap - m00037p: -1 @@ -156200,15 +156200,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.107 - - references: PMID:8902629 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.107" + - references: "PMID:8902629" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1710 + - id: "HMR_1710" - name: "" - metabolites: !!omap - m00754p: -1 @@ -156217,15 +156217,15 @@ - m02774p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000116171 or ENSG00000167306 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.176;2.3.1.154 - - references: PMID:1703300;PMID:10706581 + - gene_reaction_rule: "ENSG00000060971 or ENSG00000116171 or ENSG00000167306" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.176;2.3.1.154" + - references: "PMID:1703300;PMID:10706581" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1716 + - id: "HMR_1716" - name: "" - metabolites: !!omap - m01434p: -1 @@ -156235,30 +156235,30 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: PMID:11673457;PMID:11454857;PMID:10944470;PMID:10817395 + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "PMID:11673457;PMID:11454857;PMID:10944470;PMID:10817395" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1717 + - id: "HMR_1717" - name: "" - metabolites: !!omap - m01434c: -1 - m01434p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10884298;PMID:6469982 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10884298;PMID:6469982" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1718 + - id: "HMR_1718" - name: "" - metabolites: !!omap - m01434c: -1 @@ -156268,15 +156268,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: PMID:11673457;PMID:11454857;PMID:10944470;PMID:10817395 + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "PMID:11673457;PMID:11454857;PMID:10944470;PMID:10817395" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1720 + - id: "HMR_1720" - name: "" - metabolites: !!omap - m01434p: -1 @@ -156285,15 +156285,15 @@ - m02962p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136881 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.65 - - references: PMID:12810727;PMID:6884990 + - gene_reaction_rule: "ENSG00000136881" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.65" + - references: "PMID:12810727;PMID:6884990" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1722 + - id: "HMR_1722" - name: "" - metabolites: !!omap - m01434c: -1 @@ -156302,15 +156302,15 @@ - m01987c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136881 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.65 - - references: PMID:12810727;PMID:6884990 + - gene_reaction_rule: "ENSG00000136881" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.65" + - references: "PMID:12810727;PMID:6884990" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1723 + - id: "HMR_1723" - name: "" - metabolites: !!omap - m01434c: -1 @@ -156319,30 +156319,30 @@ - m02962c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136881 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.65 - - references: PMID:12810727;PMID:6884990 + - gene_reaction_rule: "ENSG00000136881" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.65" + - references: "PMID:12810727;PMID:6884990" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1725 + - id: "HMR_1725" - name: "" - metabolites: !!omap - m01434c: -1 - m01434r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10884298;PMID:6469982 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10884298;PMID:6469982" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1726 + - id: "HMR_1726" - name: "" - metabolites: !!omap - m01334c: -1 @@ -156353,15 +156353,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000083807 or ENSG00000140284 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.7 - - references: PMID:10749848;PMID:10884298;PMID:15026425;PMID:438652;PMID:6173037 + - gene_reaction_rule: "ENSG00000083807 or ENSG00000140284" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.7" + - references: "PMID:10749848;PMID:10884298;PMID:15026425;PMID:438652;PMID:6173037" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1727 + - id: "HMR_1727" - name: "" - metabolites: !!omap - m01334r: -1 @@ -156372,15 +156372,15 @@ - m02759r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000083807 or ENSG00000140284 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.7 - - references: PMID:10749848;PMID:10884298;PMID:15026425;PMID:438652;PMID:6173037 + - gene_reaction_rule: "ENSG00000083807 or ENSG00000140284" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.7" + - references: "PMID:10749848;PMID:10884298;PMID:15026425;PMID:438652;PMID:6173037" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1729 + - id: "HMR_1729" - name: "" - metabolites: !!omap - m01435c: -1 @@ -156390,15 +156390,15 @@ - m02950c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105398 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.14 - - references: + - gene_reaction_rule: "ENSG00000105398" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.14" + - references: "" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1730 + - id: "HMR_1730" - name: "" - metabolites: !!omap - m01435c: 1 @@ -156408,15 +156408,15 @@ - m02950c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101846 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.2 - - references: PMID:1606923;PMID:10049998 + - gene_reaction_rule: "ENSG00000101846" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.2" + - references: "PMID:1606923;PMID:10049998" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1735 + - id: "HMR_1735" - name: "" - metabolites: !!omap - m00610c: 1 @@ -156428,15 +156428,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000036530 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.98 - - references: PMID:14640697;PMID:10377398 + - gene_reaction_rule: "ENSG00000036530" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.98" + - references: "PMID:14640697;PMID:10377398" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1737 + - id: "HMR_1737" - name: "" - metabolites: !!omap - m00610c: -1 @@ -156448,15 +156448,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000146233 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.99 - - references: PMID:10748047 + - gene_reaction_rule: "ENSG00000146233" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.99" + - references: "PMID:10748047" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1738 + - id: "HMR_1738" - name: "" - metabolites: !!omap - m00978c: 1 @@ -156466,15 +156466,15 @@ - m02553c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099377 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.181 - - references: PMID:12679481;PMID:11067870 + - gene_reaction_rule: "ENSG00000099377" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.181" + - references: "PMID:12679481;PMID:11067870" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1739 + - id: "HMR_1739" - name: "" - metabolites: !!omap - m00976c: 1 @@ -156486,15 +156486,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000180432 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.95 - - references: PMID:10051404 + - gene_reaction_rule: "ENSG00000180432" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.95" + - references: "PMID:10051404" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1740 + - id: "HMR_1740" - name: "" - metabolites: !!omap - m00976c: -1 @@ -156504,15 +156504,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000122787 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.3 - - references: PMID:7508385 + - gene_reaction_rule: "ENSG00000122787" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.3" + - references: "PMID:7508385" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1741 + - id: "HMR_1741" - name: "" - metabolites: !!omap - m00978c: -1 @@ -156522,15 +156522,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000122787 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.3 - - references: PMID:7508385 + - gene_reaction_rule: "ENSG00000122787" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.3" + - references: "PMID:7508385" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1742 + - id: "HMR_1742" - name: "" - metabolites: !!omap - m01077c: 1 @@ -156540,15 +156540,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000198610 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.50 - - references: PMID:11158055 + - gene_reaction_rule: "ENSG00000198610" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.50" + - references: "PMID:11158055" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1743 + - id: "HMR_1743" - name: "" - metabolites: !!omap - m01080c: 1 @@ -156558,45 +156558,45 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000198610 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.50 - - references: PMID:11158055 + - gene_reaction_rule: "ENSG00000198610" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.50" + - references: "PMID:11158055" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1744 + - id: "HMR_1744" - name: "" - metabolites: !!omap - m01077c: -1 - m01077m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12543708 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12543708" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1745 + - id: "HMR_1745" - name: "" - metabolites: !!omap - m01080c: -1 - m01080m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12543708 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12543708" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1746 + - id: "HMR_1746" - name: "" - metabolites: !!omap - m01076m: 1 @@ -156608,15 +156608,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135929 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.15 - - references: PMID:1708392;PMID:2019602;PMID:9660774 + - gene_reaction_rule: "ENSG00000135929" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.15" + - references: "PMID:1708392;PMID:2019602;PMID:9660774" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1747 + - id: "HMR_1747" - name: "" - metabolites: !!omap - m01079m: 1 @@ -156628,15 +156628,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135929 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.15 - - references: PMID:1708392;PMID:2019602;PMID:9660774 + - gene_reaction_rule: "ENSG00000135929" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.15" + - references: "PMID:1708392;PMID:2019602;PMID:9660774" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1748 + - id: "HMR_1748" - name: "" - metabolites: !!omap - m00746m: 1 @@ -156648,15 +156648,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135929 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.15 - - references: PMID:1708392;PMID:9660774 + - gene_reaction_rule: "ENSG00000135929" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.15" + - references: "PMID:1708392;PMID:9660774" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1749 + - id: "HMR_1749" - name: "" - metabolites: !!omap - m00753m: 1 @@ -156668,15 +156668,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135929 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.15 - - references: PMID:1708392;PMID:9660774 + - gene_reaction_rule: "ENSG00000135929" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.15" + - references: "PMID:1708392;PMID:9660774" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1750 + - id: "HMR_1750" - name: "" - metabolites: !!omap - m00746m: -1 @@ -156687,15 +156687,15 @@ - m02977m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135929 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.15 - - references: PMID:1708392;PMID:9660774 + - gene_reaction_rule: "ENSG00000135929" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.15" + - references: "PMID:1708392;PMID:9660774" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1751 + - id: "HMR_1751" - name: "" - metabolites: !!omap - m00742m: 1 @@ -156706,45 +156706,45 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135929 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.15 - - references: PMID:1708392;PMID:9660774 + - gene_reaction_rule: "ENSG00000135929" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.15" + - references: "PMID:1708392;PMID:9660774" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1752 + - id: "HMR_1752" - name: "" - metabolites: !!omap - m02977c: 1 - m02977m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12543708 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12543708" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1753 + - id: "HMR_1753" - name: "" - metabolites: !!omap - m00742c: 1 - m00742m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12543708 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12543708" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1754 + - id: "HMR_1754" - name: "" - metabolites: !!omap - m00615c: 1 @@ -156755,15 +156755,15 @@ - m02977c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000083807 or ENSG00000140284 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.7 - - references: PMID:10479480;PMID:10749848;PMID:11980911 + - gene_reaction_rule: "ENSG00000083807 or ENSG00000140284" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.7" + - references: "PMID:10479480;PMID:10749848;PMID:11980911" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1756 + - id: "HMR_1756" - name: "" - metabolites: !!omap - m00742c: -1 @@ -156774,75 +156774,75 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000083807 or ENSG00000140284 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.7 - - references: PMID:10479480;PMID:10749848;PMID:11980911 + - gene_reaction_rule: "ENSG00000083807 or ENSG00000140284" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.7" + - references: "PMID:10479480;PMID:10749848;PMID:11980911" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1758 + - id: "HMR_1758" - name: "" - metabolites: !!omap - m00615c: -1 - m00615p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12543708 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12543708" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1759 + - id: "HMR_1759" - name: "" - metabolites: !!omap - m00743c: -1 - m00743p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12543708 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12543708" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1760 + - id: "HMR_1760" - name: "" - metabolites: !!omap - m00036p: 1 - m00615p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000242110 - - rxnFrom: HMRdatabase - - eccodes: 5.1.99.4 - - references: PMID:7649182;PMID:11060344;PMID:10655068 + - gene_reaction_rule: "ENSG00000242110" + - rxnFrom: "HMRdatabase" + - eccodes: "5.1.99.4" + - references: "PMID:7649182;PMID:11060344;PMID:10655068" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1761 + - id: "HMR_1761" - name: "" - metabolites: !!omap - m00037p: 1 - m00743p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000242110 - - rxnFrom: HMRdatabase - - eccodes: 5.1.99.4 - - references: PMID:7649182;PMID:11060344;PMID:10655068 + - gene_reaction_rule: "ENSG00000242110" + - rxnFrom: "HMRdatabase" + - eccodes: "5.1.99.4" + - references: "PMID:7649182;PMID:11060344;PMID:10655068" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1762 + - id: "HMR_1762" - name: "" - metabolites: !!omap - m00625m: 1 @@ -156854,30 +156854,30 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135929 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.15 - - references: PMID:1708392 + - gene_reaction_rule: "ENSG00000135929" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.15" + - references: "PMID:1708392" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1764 + - id: "HMR_1764" - name: "" - metabolites: !!omap - m00625c: -1 - m00625m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1765 + - id: "HMR_1765" - name: "" - metabolites: !!omap - m00625c: -1 @@ -156889,15 +156889,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000172817 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.100 - - references: PMID:10588945 + - gene_reaction_rule: "ENSG00000172817" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.100" + - references: "PMID:10588945" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1766 + - id: "HMR_1766" - name: "" - metabolites: !!omap - m00979c: 1 @@ -156907,15 +156907,15 @@ - m02553c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099377 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.181 - - references: PMID:12679481;PMID:11067870 + - gene_reaction_rule: "ENSG00000099377" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.181" + - references: "PMID:12679481;PMID:11067870" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1767 + - id: "HMR_1767" - name: "" - metabolites: !!omap - m00977c: 1 @@ -156927,15 +156927,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000180432 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.95 - - references: PMID:10051404 + - gene_reaction_rule: "ENSG00000180432" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.95" + - references: "PMID:10051404" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1768 + - id: "HMR_1768" - name: "" - metabolites: !!omap - m00977c: -1 @@ -156945,15 +156945,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000122787 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.3 - - references: PMID:7508385 + - gene_reaction_rule: "ENSG00000122787" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.3" + - references: "PMID:7508385" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1769 + - id: "HMR_1769" - name: "" - metabolites: !!omap - m00979c: -1 @@ -156963,15 +156963,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000122787 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.3 - - references: PMID:7508385 + - gene_reaction_rule: "ENSG00000122787" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.3" + - references: "PMID:7508385" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1770 + - id: "HMR_1770" - name: "" - metabolites: !!omap - m01082c: -1 @@ -156981,15 +156981,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000198610 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.50 - - references: PMID:11158055 + - gene_reaction_rule: "ENSG00000198610" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.50" + - references: "PMID:11158055" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1771 + - id: "HMR_1771" - name: "" - metabolites: !!omap - m01084c: -1 @@ -156999,45 +156999,45 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000198610 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.50 - - references: PMID:11158055 + - gene_reaction_rule: "ENSG00000198610" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.50" + - references: "PMID:11158055" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1772 + - id: "HMR_1772" - name: "" - metabolites: !!omap - m01090c: -1 - m01090m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12543708 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12543708" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1774 + - id: "HMR_1774" - name: "" - metabolites: !!omap - m01093c: -1 - m01093m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12543708 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12543708" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1776 + - id: "HMR_1776" - name: "" - metabolites: !!omap - m00619r: 1 @@ -157049,15 +157049,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138135 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.38 - - references: PMID:9852097 + - gene_reaction_rule: "ENSG00000138135" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.38" + - references: "PMID:9852097" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1777 + - id: "HMR_1777" - name: "" - metabolites: !!omap - m00619r: -1 @@ -157069,15 +157069,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000172817 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.100 - - references: PMID:10588945 + - gene_reaction_rule: "ENSG00000172817" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.100" + - references: "PMID:10588945" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1778 + - id: "HMR_1778" - name: "" - metabolites: !!omap - m01179r: -1 @@ -157087,15 +157087,15 @@ - m02553r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099377 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000099377" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1781 + - id: "HMR_1781" - name: "" - metabolites: !!omap - m00592r: 1 @@ -157107,15 +157107,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138135 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.38 - - references: PMID:9852097 + - gene_reaction_rule: "ENSG00000138135" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.38" + - references: "PMID:9852097" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1783 + - id: "HMR_1783" - name: "" - metabolites: !!omap - m00592r: -1 @@ -157125,15 +157125,15 @@ - m02553r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000203857 or ENSG00000203859 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.145;5.3.3.1 - - references: PMID:11067870;PMID:11454857;PMID:10599696;PMID:1401999 + - gene_reaction_rule: "ENSG00000203857 or ENSG00000203859" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.145;5.3.3.1" + - references: "PMID:11067870;PMID:11454857;PMID:10599696;PMID:1401999" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1784 + - id: "HMR_1784" - name: "" - metabolites: !!omap - m00623m: 1 @@ -157145,15 +157145,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138135 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.38 - - references: PMID:9852097 + - gene_reaction_rule: "ENSG00000138135" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.38" + - references: "PMID:9852097" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1785 + - id: "HMR_1785" - name: "" - metabolites: !!omap - m00623r: 1 @@ -157165,15 +157165,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138135 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.38 - - references: PMID:9852097 + - gene_reaction_rule: "ENSG00000138135" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.38" + - references: "PMID:9852097" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1786 + - id: "HMR_1786" - name: "" - metabolites: !!omap - m00623c: 1 @@ -157185,15 +157185,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138135 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.38 - - references: PMID:9852097 + - gene_reaction_rule: "ENSG00000138135" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.38" + - references: "PMID:9852097" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1787 + - id: "HMR_1787" - name: "" - metabolites: !!omap - m00623r: -1 @@ -157203,15 +157203,15 @@ - m02553r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1790 + - id: "HMR_1790" - name: "" - metabolites: !!omap - m00623m: -1 @@ -157221,15 +157221,15 @@ - m02555m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135929 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.15 - - references: PMID:9660774 + - gene_reaction_rule: "ENSG00000135929" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.15" + - references: "PMID:9660774" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1792 + - id: "HMR_1792" - name: "" - metabolites: !!omap - m00763m: -1 @@ -157240,15 +157240,15 @@ - m02555m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135929 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.15 - - references: PMID:9660774 + - gene_reaction_rule: "ENSG00000135929" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.15" + - references: "PMID:9660774" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1794 + - id: "HMR_1794" - name: "" - metabolites: !!omap - m00761m: 1 @@ -157260,15 +157260,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135929 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.15 - - references: PMID:9660774 + - gene_reaction_rule: "ENSG00000135929" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.15" + - references: "PMID:9660774" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1796 + - id: "HMR_1796" - name: "" - metabolites: !!omap - m00761m: -1 @@ -157278,15 +157278,15 @@ - m02555m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135929 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.15 - - references: PMID:9660774 + - gene_reaction_rule: "ENSG00000135929" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.15" + - references: "PMID:9660774" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1797 + - id: "HMR_1797" - name: "" - metabolites: !!omap - m00623c: -1 @@ -157298,15 +157298,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130649 or ENSG00000135929 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.- - - references: PMID:11181760;PMID:11067870;PMID:11454857 + - gene_reaction_rule: "ENSG00000130649 or ENSG00000135929" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.-" + - references: "PMID:11181760;PMID:11067870;PMID:11454857" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1798 + - id: "HMR_1798" - name: "" - metabolites: !!omap - m00623m: -1 @@ -157318,15 +157318,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130649 or ENSG00000135929 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.- - - references: PMID:11181760;PMID:11067870;PMID:11454857 + - gene_reaction_rule: "ENSG00000130649 or ENSG00000135929" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.-" + - references: "PMID:11181760;PMID:11067870;PMID:11454857" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1800 + - id: "HMR_1800" - name: "" - metabolites: !!omap - m00761m: 1 @@ -157338,15 +157338,15 @@ - m02630m: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135929 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.15 - - references: PMID:9660774 + - gene_reaction_rule: "ENSG00000135929" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.15" + - references: "PMID:9660774" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1802 + - id: "HMR_1802" - name: "" - metabolites: !!omap - m01078m: -1 @@ -157358,15 +157358,15 @@ - m02630m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130649 or ENSG00000135929 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.- - - references: PMID:9660774;PMID:9660774;PMID:9210654 + - gene_reaction_rule: "ENSG00000130649 or ENSG00000135929" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.-" + - references: "PMID:9660774;PMID:9660774;PMID:9210654" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1803 + - id: "HMR_1803" - name: "" - metabolites: !!omap - m00750c: -1 @@ -157376,15 +157376,15 @@ - m02553c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135929 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.15 - - references: PMID:9660774 + - gene_reaction_rule: "ENSG00000135929" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.15" + - references: "PMID:9660774" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1804 + - id: "HMR_1804" - name: "" - metabolites: !!omap - m01091c: 1 @@ -157396,15 +157396,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130649 or ENSG00000135929 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.- - - references: PMID:9210654;PMID:9660774 + - gene_reaction_rule: "ENSG00000130649 or ENSG00000135929" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.-" + - references: "PMID:9210654;PMID:9660774" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1805 + - id: "HMR_1805" - name: "" - metabolites: !!omap - m01091m: 1 @@ -157416,15 +157416,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130649 or ENSG00000135929 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.- - - references: PMID:9210654;PMID:9660774 + - gene_reaction_rule: "ENSG00000130649 or ENSG00000135929" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.-" + - references: "PMID:9210654;PMID:9660774" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1806 + - id: "HMR_1806" - name: "" - metabolites: !!omap - m00751m: -1 @@ -157434,15 +157434,15 @@ - m02553m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135929 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.15 - - references: PMID:9660774 + - gene_reaction_rule: "ENSG00000135929" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.15" + - references: "PMID:9660774" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1807 + - id: "HMR_1807" - name: "" - metabolites: !!omap - m00751m: -1 @@ -157450,15 +157450,15 @@ - m02040m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135929 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.15 - - references: PMID:9210654;PMID:9660774 + - gene_reaction_rule: "ENSG00000135929" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.15" + - references: "PMID:9210654;PMID:9660774" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1810 + - id: "HMR_1810" - name: "" - metabolites: !!omap - m01078r: -1 @@ -157470,15 +157470,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160868 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.67 - - references: PMID:11454857;PMID:9931427;PMID:10706592 + - gene_reaction_rule: "ENSG00000160868" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.67" + - references: "PMID:11454857;PMID:9931427;PMID:10706592" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1811 + - id: "HMR_1811" - name: "" - metabolites: !!omap - m01087r: 1 @@ -157490,15 +157490,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135929 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.15 - - references: PMID:11454857 + - gene_reaction_rule: "ENSG00000135929" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.15" + - references: "PMID:11454857" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1813 + - id: "HMR_1813" - name: "" - metabolites: !!omap - m00747r: -1 @@ -157508,15 +157508,15 @@ - m02555r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087076 or ENSG00000099377 or ENSG00000100867 or ENSG00000109854 or ENSG00000121039 or ENSG00000138400 or ENSG00000139988 or ENSG00000145439 or ENSG00000159692 or ENSG00000160439 or ENSG00000164039 or ENSG00000167733 or ENSG00000170426 or ENSG00000170786 or ENSG00000176387 or ENSG00000183921 or ENSG00000184860 or ENSG00000186153 or ENSG00000187134 or ENSG00000197894 or ENSG00000198074 or ENSG00000198189 or ENSG00000198610 or ENSG00000204228 or ENSG00000227471 or ENSG00000240857 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.- - - references: PMID:9931427;PMID:10706592 + - gene_reaction_rule: "ENSG00000087076 or ENSG00000099377 or ENSG00000100867 or ENSG00000109854 or ENSG00000121039 or ENSG00000138400 or ENSG00000139988 or ENSG00000145439 or ENSG00000159692 or ENSG00000160439 or ENSG00000164039 or ENSG00000167733 or ENSG00000170426 or ENSG00000170786 or ENSG00000176387 or ENSG00000183921 or ENSG00000184860 or ENSG00000186153 or ENSG00000187134 or ENSG00000197894 or ENSG00000198074 or ENSG00000198189 or ENSG00000198610 or ENSG00000204228 or ENSG00000227471 or ENSG00000240857" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.-" + - references: "PMID:9931427;PMID:10706592" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1815 + - id: "HMR_1815" - name: "" - metabolites: !!omap - m01085r: 1 @@ -157528,15 +157528,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160868 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.67 - - references: PMID:10706592;PMID:11454857;PMID:9931427 + - gene_reaction_rule: "ENSG00000160868" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.67" + - references: "PMID:10706592;PMID:11454857;PMID:9931427" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1817 + - id: "HMR_1817" - name: "" - metabolites: !!omap - m01086r: 1 @@ -157548,15 +157548,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160868 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.67 - - references: PMID:11454857;PMID:9931427;PMID:10706592 + - gene_reaction_rule: "ENSG00000160868" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.67" + - references: "PMID:11454857;PMID:9931427;PMID:10706592" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1819 + - id: "HMR_1819" - name: "" - metabolites: !!omap - m01088r: 1 @@ -157568,15 +157568,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160868 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.67 - - references: PMID:11454857;PMID:9931427;PMID:10706592 + - gene_reaction_rule: "ENSG00000160868" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.67" + - references: "PMID:11454857;PMID:9931427;PMID:10706592" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1830 + - id: "HMR_1830" - name: "" - metabolites: !!omap - m00745c: 1 @@ -157588,15 +157588,15 @@ - m02630c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167910 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.17 - - references: PMID:12393855;PMID:11344576 + - gene_reaction_rule: "ENSG00000167910" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.17" + - references: "PMID:12393855;PMID:11344576" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1831 + - id: "HMR_1831" - name: "" - metabolites: !!omap - m00745r: 1 @@ -157608,15 +157608,15 @@ - m02630r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167910 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.17 - - references: PMID:12393855;PMID:11344576 + - gene_reaction_rule: "ENSG00000167910" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.17" + - references: "PMID:12393855;PMID:11344576" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1832 + - id: "HMR_1832" - name: "" - metabolites: !!omap - m00745c: -1 @@ -157627,15 +157627,15 @@ - m02759c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000083807 or ENSG00000140284 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.7 - - references: PMID:6639941 + - gene_reaction_rule: "ENSG00000083807 or ENSG00000140284" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.7" + - references: "PMID:6639941" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1833 + - id: "HMR_1833" - name: "" - metabolites: !!omap - m00745r: -1 @@ -157646,15 +157646,15 @@ - m02759r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000083807 or ENSG00000140284 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.7 - - references: PMID:6639941 + - gene_reaction_rule: "ENSG00000083807 or ENSG00000140284" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.7" + - references: "PMID:6639941" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1834 + - id: "HMR_1834" - name: "" - metabolites: !!omap - m00745c: -1 @@ -157664,15 +157664,15 @@ - m02040c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 3.5.1.24 - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.1.24" + - references: "" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1835 + - id: "HMR_1835" - name: "" - metabolites: !!omap - m01597c: -1 @@ -157682,30 +157682,30 @@ - m02964c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136881 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.65 - - references: PMID:11980911;PMID:11980911;PMID:10884298 + - gene_reaction_rule: "ENSG00000136881" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.65" + - references: "PMID:11980911;PMID:11980911;PMID:10884298" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1836 + - id: "HMR_1836" - name: "" - metabolites: !!omap - m01667c: -1 - m01667p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1837 + - id: "HMR_1837" - name: "" - metabolites: !!omap - m01597p: -1 @@ -157715,15 +157715,15 @@ - m02964p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136881 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.65 - - references: PMID:11980911;PMID:11980911;PMID:10884298 + - gene_reaction_rule: "ENSG00000136881" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.65" + - references: "PMID:11980911;PMID:11980911;PMID:10884298" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1838 + - id: "HMR_1838" - name: "" - metabolites: !!omap - m02039c: -2 @@ -157735,15 +157735,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160868 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.97 - - references: + - gene_reaction_rule: "ENSG00000160868" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.97" + - references: "" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1839 + - id: "HMR_1839" - name: "" - metabolites: !!omap - m00745c: 1 @@ -157755,15 +157755,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000180432 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.95 - - references: PMID:11980911 + - gene_reaction_rule: "ENSG00000180432" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.95" + - references: "PMID:11980911" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1840 + - id: "HMR_1840" - name: "" - metabolites: !!omap - m00745r: 1 @@ -157775,15 +157775,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000180432 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.95 - - references: PMID:11980911 + - gene_reaction_rule: "ENSG00000180432" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.95" + - references: "PMID:11980911" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1841 + - id: "HMR_1841" - name: "" - metabolites: !!omap - m01334c: -1 @@ -157795,15 +157795,15 @@ - m02965c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136881 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.-;2.3.1.65 - - references: PMID:11980911;PMID:11980911 + - gene_reaction_rule: "ENSG00000136881" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.-;2.3.1.65" + - references: "PMID:11980911;PMID:11980911" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1842 + - id: "HMR_1842" - name: "" - metabolites: !!omap - m01334p: -1 @@ -157815,15 +157815,15 @@ - m02965p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136881 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.-;2.3.1.65 - - references: PMID:11980911;PMID:11980911 + - gene_reaction_rule: "ENSG00000136881" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.-;2.3.1.65" + - references: "PMID:11980911;PMID:11980911" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1843 + - id: "HMR_1843" - name: "" - metabolites: !!omap - m02039c: 1 @@ -157833,15 +157833,15 @@ - m02965c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105398 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.14 - - references: + - gene_reaction_rule: "ENSG00000105398" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.14" + - references: "" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1844 + - id: "HMR_1844" - name: "" - metabolites: !!omap - m01334c: -1 @@ -157853,15 +157853,15 @@ - m02759c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136881 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.-;2.3.1.65 - - references: PMID:11980911;PMID:11980911 + - gene_reaction_rule: "ENSG00000136881" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.-;2.3.1.65" + - references: "PMID:11980911;PMID:11980911" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1845 + - id: "HMR_1845" - name: "" - metabolites: !!omap - m01334p: -1 @@ -157873,15 +157873,15 @@ - m02759p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136881 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.-;2.3.1.65 - - references: PMID:11980911;PMID:11980911 + - gene_reaction_rule: "ENSG00000136881" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.-;2.3.1.65" + - references: "PMID:11980911;PMID:11980911" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1846 + - id: "HMR_1846" - name: "" - metabolites: !!omap - m02000c: -1 @@ -157891,15 +157891,15 @@ - m02951c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105398 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.14 - - references: + - gene_reaction_rule: "ENSG00000105398" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.14" + - references: "" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_3799 + - id: "HMR_3799" - name: "" - metabolites: !!omap - m01597m: 1 @@ -157909,15 +157909,15 @@ - m02774m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.2 - - references: PMID:11013297;PMID:11013297 + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673 or ENSG00000136881 or ENSG00000177465 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.2" + - references: "PMID:11013297;PMID:11013297" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_3908 + - id: "HMR_3908" - name: "" - metabolites: !!omap - m00918c: 1 @@ -157926,15 +157926,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000129596 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.20 - - references: PMID:7524679 + - gene_reaction_rule: "ENSG00000129596" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.20" + - references: "PMID:7524679" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_3910 + - id: "HMR_3910" - name: "" - metabolites: !!omap - m00918c: -1 @@ -157943,15 +157943,15 @@ - m02157c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000128683 or ENSG00000136750 or ENSG00000139631 - - rxnFrom: HMRdatabase - - eccodes: 4.1.1.15;4.1.1.29 - - references: PMID:1516767;PMID:6128735;PMID:6956856 + - gene_reaction_rule: "ENSG00000128683 or ENSG00000136750 or ENSG00000139631" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.1.15;4.1.1.29" + - references: "PMID:1516767;PMID:6128735;PMID:6956856" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_3911 + - id: "HMR_3911" - name: "" - metabolites: !!omap - m02039c: -1 @@ -157962,15 +157962,15 @@ - m02961c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 1.8.1.3 - - references: PMID:13979247;PMID:16680556;PMID:7295801 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "1.8.1.3" + - references: "PMID:13979247;PMID:16680556;PMID:7295801" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4679 + - id: "HMR_4679" - name: "" - metabolites: !!omap - m01627c: -1 @@ -157979,15 +157979,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000181915 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.19 - - references: PMID:17153586;PMID:17581819;PMID:3657558;UNIPROT:Q96SZ5 + - gene_reaction_rule: "ENSG00000181915" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.19" + - references: "PMID:17153586;PMID:17581819;PMID:3657558;UNIPROT:Q96SZ5" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8063 + - id: "HMR_8063" - name: "" - metabolites: !!omap - m00918c: -2 @@ -157996,15 +157996,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8064 + - id: "HMR_8064" - name: "" - metabolites: !!omap - m00918m: -2 @@ -158013,15 +158013,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8065 + - id: "HMR_8065" - name: "" - metabolites: !!omap - m01596c: 1 @@ -158030,15 +158030,15 @@ - m02961c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000128683 or ENSG00000136750 or ENSG00000139631 - - rxnFrom: HMRdatabase - - eccodes: 4.1.1.15;4.1.1.29 - - references: + - gene_reaction_rule: "ENSG00000128683 or ENSG00000136750 or ENSG00000139631" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.1.15;4.1.1.29" + - references: "" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8759 + - id: "HMR_8759" - name: "" - metabolites: !!omap - m02157c: -2 @@ -158046,15 +158046,15 @@ - m02961c: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_1847 + - id: "HMR_1847" - name: "" - metabolites: !!omap - m02000c: 1 @@ -158064,15 +158064,15 @@ - m02951c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101846 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.2 - - references: PMID:1606923;PMID:10049998 + - gene_reaction_rule: "ENSG00000101846" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.2" + - references: "PMID:1606923;PMID:10049998" - subsystem: - - Bile acid recycling + - "Bile acid recycling" - confidence_score: 0 - !!omap - - id: HMR_1848 + - id: "HMR_1848" - name: "" - metabolites: !!omap - m01334r: -1 @@ -158083,30 +158083,30 @@ - m02759r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000083807 or ENSG00000140284 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.7 - - references: PMID:10749848;PMID:10884298;PMID:438652 + - gene_reaction_rule: "ENSG00000083807 or ENSG00000140284" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.7" + - references: "PMID:10749848;PMID:10884298;PMID:438652" - subsystem: - - Bile acid recycling + - "Bile acid recycling" - confidence_score: 0 - !!omap - - id: HMR_1850 + - id: "HMR_1850" - name: "" - metabolites: !!omap - m01445c: -1 - m01445r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:15975683 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:15975683" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1852 + - id: "HMR_1852" - name: "" - metabolites: !!omap - m01988c: -1 @@ -158115,15 +158115,15 @@ - m02357s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100652 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:15975683 + - gene_reaction_rule: "ENSG00000100652" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:15975683" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1853 + - id: "HMR_1853" - name: "" - metabolites: !!omap - m01285c: 1 @@ -158135,30 +158135,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000103222 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14716480;PMID:15209530;PMID:15297262 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000103222" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14716480;PMID:15209530;PMID:15297262" - subsystem: - - Bile acid recycling + - "Bile acid recycling" - confidence_score: 0 - !!omap - - id: HMR_1854 + - id: "HMR_1854" - name: "" - metabolites: !!omap - m01435c: -1 - m01435r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:15975683 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:15975683" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1855 + - id: "HMR_1855" - name: "" - metabolites: !!omap - m02519c: 1 @@ -158167,15 +158167,15 @@ - m02963s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100652 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:6469982 + - gene_reaction_rule: "ENSG00000100652" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:6469982" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1857 + - id: "HMR_1857" - name: "" - metabolites: !!omap - m01285p: 2 @@ -158187,15 +158187,15 @@ - m02963s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12663868;PMID:14716480;PMID:15209530;PMID:15297262;PMID:1599411;PMID:17416343;PMID:9068608 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12663868;PMID:14716480;PMID:15209530;PMID:15297262;PMID:1599411;PMID:17416343;PMID:9068608" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1859 + - id: "HMR_1859" - name: "" - metabolites: !!omap - m01987c: -1 @@ -158204,15 +158204,15 @@ - m02357s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1861 + - id: "HMR_1861" - name: "" - metabolites: !!omap - m01285p: 2 @@ -158224,15 +158224,15 @@ - m02962s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:15297262;PMID:17416343 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:15297262;PMID:17416343" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1862 + - id: "HMR_1862" - name: "" - metabolites: !!omap - m01988c: 1 @@ -158241,15 +158241,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100652 or ENSG00000125255 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:15297262 + - gene_reaction_rule: "ENSG00000100652 or ENSG00000125255" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:15297262" - subsystem: - - Bile acid recycling + - "Bile acid recycling" - confidence_score: 0 - !!omap - - id: HMR_1863 + - id: "HMR_1863" - name: "" - metabolites: !!omap - m01988c: 1 @@ -158258,15 +158258,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100652 or ENSG00000125255 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076396;PMID:11819755;PMID:17404808;PMID:6384004 + - gene_reaction_rule: "ENSG00000100652 or ENSG00000125255" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076396;PMID:11819755;PMID:17404808;PMID:6384004" - subsystem: - - Bile acid recycling + - "Bile acid recycling" - confidence_score: 0 - !!omap - - id: HMR_1864 + - id: "HMR_1864" - name: "" - metabolites: !!omap - m01435c: 1 @@ -158275,15 +158275,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100652 or ENSG00000125255 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076396;PMID:11819755;PMID:17404808;PMID:6384004 + - gene_reaction_rule: "ENSG00000100652 or ENSG00000125255" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076396;PMID:11819755;PMID:17404808;PMID:6384004" - subsystem: - - Bile acid recycling + - "Bile acid recycling" - confidence_score: 0 - !!omap - - id: HMR_1865 + - id: "HMR_1865" - name: "" - metabolites: !!omap - m02519c: 2 @@ -158292,15 +158292,15 @@ - m02963s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100652 or ENSG00000125255 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076396;PMID:11819755;PMID:17404808;PMID:6384004 + - gene_reaction_rule: "ENSG00000100652 or ENSG00000125255" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076396;PMID:11819755;PMID:17404808;PMID:6384004" - subsystem: - - Bile acid recycling + - "Bile acid recycling" - confidence_score: 0 - !!omap - - id: HMR_1866 + - id: "HMR_1866" - name: "" - metabolites: !!omap - m02519c: 2 @@ -158309,15 +158309,15 @@ - m02962s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100652 or ENSG00000125255 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076396;PMID:11819755;PMID:17404808;PMID:6384004 + - gene_reaction_rule: "ENSG00000100652 or ENSG00000125255" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076396;PMID:11819755;PMID:17404808;PMID:6384004" - subsystem: - - Bile acid recycling + - "Bile acid recycling" - confidence_score: 0 - !!omap - - id: HMR_1867 + - id: "HMR_1867" - name: "" - metabolites: !!omap - m01987c: 1 @@ -158326,15 +158326,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100652 or ENSG00000125255 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076396;PMID:11819755;PMID:17404808;PMID:6384004 + - gene_reaction_rule: "ENSG00000100652 or ENSG00000125255" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076396;PMID:11819755;PMID:17404808;PMID:6384004" - subsystem: - - Bile acid recycling + - "Bile acid recycling" - confidence_score: 0 - !!omap - - id: HMR_1868 + - id: "HMR_1868" - name: "" - metabolites: !!omap - m01285c: 1 @@ -158346,15 +158346,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073734 or ENSG00000108846 or ENSG00000125257 or ENSG00000163959 or ENSG00000186198 or ENSG00000121270 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12663868;PMID:17404808;PMID:11076396 + - gene_reaction_rule: "ENSG00000073734 or ENSG00000108846 or ENSG00000125257 or ENSG00000163959 or ENSG00000186198 or ENSG00000121270" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12663868;PMID:17404808;PMID:11076396" - subsystem: - - Bile acid recycling + - "Bile acid recycling" - confidence_score: 2 - !!omap - - id: HMR_1870 + - id: "HMR_1870" - name: "" - metabolites: !!omap - m01285c: 1 @@ -158366,15 +158366,15 @@ - m02963s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073734 or ENSG00000108846 or ENSG00000125257 or ENSG00000163959 or ENSG00000186198 or ENSG00000121270 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12663868;PMID:17404808;PMID:11076396 + - gene_reaction_rule: "ENSG00000073734 or ENSG00000108846 or ENSG00000125257 or ENSG00000163959 or ENSG00000186198 or ENSG00000121270" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12663868;PMID:17404808;PMID:11076396" - subsystem: - - Bile acid recycling + - "Bile acid recycling" - confidence_score: 2 - !!omap - - id: HMR_1872 + - id: "HMR_1872" - name: "" - metabolites: !!omap - m01285c: 1 @@ -158386,15 +158386,15 @@ - m02962s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073734 or ENSG00000103222 or ENSG00000108846 or ENSG00000125257 or ENSG00000163959 or ENSG00000186198 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12663868;PMID:17404808;PMID:11076396 + - gene_reaction_rule: "ENSG00000073734 or ENSG00000103222 or ENSG00000108846 or ENSG00000125257 or ENSG00000163959 or ENSG00000186198" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12663868;PMID:17404808;PMID:11076396" - subsystem: - - Bile acid recycling + - "Bile acid recycling" - confidence_score: 0 - !!omap - - id: HMR_1874 + - id: "HMR_1874" - name: "" - metabolites: !!omap - m01285c: 1 @@ -158406,15 +158406,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073734 or ENSG00000108846 or ENSG00000125257 or ENSG00000163959 or ENSG00000186198 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12663868;PMID:17404808;PMID:11076396 + - gene_reaction_rule: "ENSG00000073734 or ENSG00000108846 or ENSG00000125257 or ENSG00000163959 or ENSG00000186198" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12663868;PMID:17404808;PMID:11076396" - subsystem: - - Bile acid recycling + - "Bile acid recycling" - confidence_score: 0 - !!omap - - id: HMR_1875 + - id: "HMR_1875" - name: "" - metabolites: !!omap - m01445c: 1 @@ -158425,15 +158425,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 or ENSG00000084453 or ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000021488 or ENSG00000084453 or ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Bile acid recycling + - "Bile acid recycling" - confidence_score: 0 - !!omap - - id: HMR_1876 + - id: "HMR_1876" - name: "" - metabolites: !!omap - m01988c: 1 @@ -158444,15 +158444,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 or ENSG00000084453 or ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000021488 or ENSG00000084453 or ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Bile acid recycling + - "Bile acid recycling" - confidence_score: 0 - !!omap - - id: HMR_1877 + - id: "HMR_1877" - name: "" - metabolites: !!omap - m02026c: -1 @@ -158463,15 +158463,15 @@ - m02963s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 or ENSG00000084453 or ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000021488 or ENSG00000084453 or ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Bile acid recycling + - "Bile acid recycling" - confidence_score: 0 - !!omap - - id: HMR_1878 + - id: "HMR_1878" - name: "" - metabolites: !!omap - m02046c: -1 @@ -158480,15 +158480,15 @@ - m02963s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 or ENSG00000101187 or ENSG00000111700 or ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000084453 or ENSG00000101187 or ENSG00000111700 or ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1879 + - id: "HMR_1879" - name: "" - metabolites: !!omap - m02026c: -1 @@ -158499,15 +158499,15 @@ - m02962s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 or ENSG00000084453 or ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000021488 or ENSG00000084453 or ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Bile acid recycling + - "Bile acid recycling" - confidence_score: 0 - !!omap - - id: HMR_1880 + - id: "HMR_1880" - name: "" - metabolites: !!omap - m01445c: 1 @@ -158518,15 +158518,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 or ENSG00000084453 or ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000021488 or ENSG00000084453 or ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Bile acid recycling + - "Bile acid recycling" - confidence_score: 0 - !!omap - - id: HMR_1881 + - id: "HMR_1881" - name: "" - metabolites: !!omap - m01445c: 1 @@ -158537,15 +158537,15 @@ - m02900s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 or ENSG00000084453 or ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000021488 or ENSG00000084453 or ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Bile acid recycling + - "Bile acid recycling" - confidence_score: 0 - !!omap - - id: HMR_1882 + - id: "HMR_1882" - name: "" - metabolites: !!omap - m01445c: 1 @@ -158556,15 +158556,15 @@ - m02901s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 or ENSG00000084453 or ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000021488 or ENSG00000084453 or ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Bile acid recycling + - "Bile acid recycling" - confidence_score: 0 - !!omap - - id: HMR_1883 + - id: "HMR_1883" - name: "" - metabolites: !!omap - m01980c: -1 @@ -158575,15 +158575,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 or ENSG00000084453 or ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000021488 or ENSG00000084453 or ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Bile acid recycling + - "Bile acid recycling" - confidence_score: 0 - !!omap - - id: HMR_1884 + - id: "HMR_1884" - name: "" - metabolites: !!omap - m01988c: 1 @@ -158594,15 +158594,15 @@ - m02900s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 or ENSG00000084453 or ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000021488 or ENSG00000084453 or ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Bile acid recycling + - "Bile acid recycling" - confidence_score: 0 - !!omap - - id: HMR_1885 + - id: "HMR_1885" - name: "" - metabolites: !!omap - m01988c: 1 @@ -158613,15 +158613,15 @@ - m02901s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 or ENSG00000084453 or ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000021488 or ENSG00000084453 or ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Bile acid recycling + - "Bile acid recycling" - confidence_score: 0 - !!omap - - id: HMR_1886 + - id: "HMR_1886" - name: "" - metabolites: !!omap - m01435c: 1 @@ -158632,15 +158632,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 or ENSG00000084453 or ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000021488 or ENSG00000084453 or ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Bile acid recycling + - "Bile acid recycling" - confidence_score: 0 - !!omap - - id: HMR_1887 + - id: "HMR_1887" - name: "" - metabolites: !!omap - m01435c: 1 @@ -158651,15 +158651,15 @@ - m02900s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 or ENSG00000084453 or ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000021488 or ENSG00000084453 or ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Bile acid recycling + - "Bile acid recycling" - confidence_score: 0 - !!omap - - id: HMR_1888 + - id: "HMR_1888" - name: "" - metabolites: !!omap - m01435c: 1 @@ -158670,15 +158670,15 @@ - m02901s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 or ENSG00000084453 or ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000021488 or ENSG00000084453 or ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Bile acid recycling + - "Bile acid recycling" - confidence_score: 0 - !!omap - - id: HMR_1889 + - id: "HMR_1889" - name: "" - metabolites: !!omap - m01980c: -1 @@ -158689,15 +158689,15 @@ - m02963s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 or ENSG00000084453 or ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000021488 or ENSG00000084453 or ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Bile acid recycling + - "Bile acid recycling" - confidence_score: 0 - !!omap - - id: HMR_1890 + - id: "HMR_1890" - name: "" - metabolites: !!omap - m02046c: -1 @@ -158708,15 +158708,15 @@ - m02963s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 or ENSG00000084453 or ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000021488 or ENSG00000084453 or ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Bile acid recycling + - "Bile acid recycling" - confidence_score: 0 - !!omap - - id: HMR_1891 + - id: "HMR_1891" - name: "" - metabolites: !!omap - m02046c: -1 @@ -158727,15 +158727,15 @@ - m02963s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 or ENSG00000084453 or ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000021488 or ENSG00000084453 or ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Bile acid recycling + - "Bile acid recycling" - confidence_score: 0 - !!omap - - id: HMR_1892 + - id: "HMR_1892" - name: "" - metabolites: !!omap - m01980c: -1 @@ -158746,15 +158746,15 @@ - m02962s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 or ENSG00000084453 or ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000021488 or ENSG00000084453 or ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Bile acid recycling + - "Bile acid recycling" - confidence_score: 0 - !!omap - - id: HMR_1893 + - id: "HMR_1893" - name: "" - metabolites: !!omap - m02046c: -1 @@ -158765,15 +158765,15 @@ - m02962s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 or ENSG00000084453 or ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000021488 or ENSG00000084453 or ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Bile acid recycling + - "Bile acid recycling" - confidence_score: 0 - !!omap - - id: HMR_1894 + - id: "HMR_1894" - name: "" - metabolites: !!omap - m02046c: -1 @@ -158784,15 +158784,15 @@ - m02962s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 or ENSG00000084453 or ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000021488 or ENSG00000084453 or ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Bile acid recycling + - "Bile acid recycling" - confidence_score: 0 - !!omap - - id: HMR_1895 + - id: "HMR_1895" - name: "" - metabolites: !!omap - m01285r: 1 @@ -158804,15 +158804,15 @@ - m02751r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000103222 or ENSG00000108846 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16983557;PMID:;PMID:16847695 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000103222 or ENSG00000108846" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16983557;PMID:;PMID:16847695" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 2 - !!omap - - id: HMR_1896 + - id: "HMR_1896" - name: "" - metabolites: !!omap - m01285c: 1 @@ -158824,15 +158824,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000103222 or ENSG00000108846 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16983557;PMID:;PMID:16847695 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000103222 or ENSG00000108846" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16983557;PMID:;PMID:16847695" - subsystem: - - Bile acid recycling + - "Bile acid recycling" - confidence_score: 2 - !!omap - - id: HMR_1897 + - id: "HMR_1897" - name: "" - metabolites: !!omap - m01285r: 1 @@ -158844,15 +158844,15 @@ - m02751r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000103222 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16983557;PMID:;PMID:16847695 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000103222" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16983557;PMID:;PMID:16847695" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1403 + - id: "HMR_1403" - name: "" - metabolites: !!omap - m01198c: -1 @@ -158861,15 +158861,15 @@ - m02631c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10694406 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10694406" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_1404 + - id: "HMR_1404" - name: "" - metabolites: !!omap - m01215c: -1 @@ -158878,15 +158878,15 @@ - m02631c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10694406 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10694406" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_1405 + - id: "HMR_1405" - name: "" - metabolites: !!omap - m00275c: 1 @@ -158895,15 +158895,15 @@ - m02631c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10694406 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10694406" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_1406 + - id: "HMR_1406" - name: "" - metabolites: !!omap - m00303c: -1 @@ -158912,15 +158912,15 @@ - m02631c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10694406 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10694406" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_1407 + - id: "HMR_1407" - name: "" - metabolites: !!omap - m00372c: -1 @@ -158929,15 +158929,15 @@ - m02631c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10694406 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10694406" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_1408 + - id: "HMR_1408" - name: "" - metabolites: !!omap - m00404c: -1 @@ -158946,15 +158946,15 @@ - m02631c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10694406 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10694406" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_1409 + - id: "HMR_1409" - name: "" - metabolites: !!omap - m00418c: -1 @@ -158963,15 +158963,15 @@ - m02631c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10694406 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10694406" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_1410 + - id: "HMR_1410" - name: "" - metabolites: !!omap - m00303c: 1 @@ -158981,15 +158981,15 @@ - m02630c: -3 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12088281;PMID:10694406 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12088281;PMID:10694406" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_1411 + - id: "HMR_1411" - name: "" - metabolites: !!omap - m00303c: 1 @@ -158999,15 +158999,15 @@ - m02630c: -3 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12088281;PMID:10694406 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12088281;PMID:10694406" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_1412 + - id: "HMR_1412" - name: "" - metabolites: !!omap - m00271c: 1 @@ -159017,15 +159017,15 @@ - m02630c: -3 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12088281;PMID:10694406 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12088281;PMID:10694406" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_1413 + - id: "HMR_1413" - name: "" - metabolites: !!omap - m00299c: 1 @@ -159035,15 +159035,15 @@ - m02630c: -3 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12088281;PMID:10694406 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12088281;PMID:10694406" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_1414 + - id: "HMR_1414" - name: "" - metabolites: !!omap - m00355c: 1 @@ -159053,15 +159053,15 @@ - m02630c: -3 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12088281;PMID:10694406 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12088281;PMID:10694406" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_1415 + - id: "HMR_1415" - name: "" - metabolites: !!omap - m00275c: -1 @@ -159071,15 +159071,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12088281;PMID:10694406 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12088281;PMID:10694406" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_1416 + - id: "HMR_1416" - name: "" - metabolites: !!omap - m00372c: 1 @@ -159089,15 +159089,15 @@ - m02630c: -3 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12088281;PMID:10694406 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12088281;PMID:10694406" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_1417 + - id: "HMR_1417" - name: "" - metabolites: !!omap - m00404c: 1 @@ -159107,15 +159107,15 @@ - m02630c: -3 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12088281;PMID:10694406 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12088281;PMID:10694406" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_1418 + - id: "HMR_1418" - name: "" - metabolites: !!omap - m00984c: -1 @@ -159124,15 +159124,15 @@ - m02040c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12088281;PMID:10694406 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12088281;PMID:10694406" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_1419 + - id: "HMR_1419" - name: "" - metabolites: !!omap - m00984c: -1 @@ -159141,15 +159141,15 @@ - m02040c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12088281;PMID:10694406 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12088281;PMID:10694406" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_1420 + - id: "HMR_1420" - name: "" - metabolites: !!omap - m01192c: -1 @@ -159159,15 +159159,15 @@ - m02040c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10694406;PMID:12088281;PMID:10694406;PMID:12088281 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10694406;PMID:12088281;PMID:10694406;PMID:12088281" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_1421 + - id: "HMR_1421" - name: "" - metabolites: !!omap - m01192c: -1 @@ -159177,15 +159177,15 @@ - m02040c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12088281;PMID:10694406 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12088281;PMID:10694406" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_1422 + - id: "HMR_1422" - name: "" - metabolites: !!omap - m00271c: -1 @@ -159195,15 +159195,15 @@ - m02040c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12088281;PMID:10694406 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12088281;PMID:10694406" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_1423 + - id: "HMR_1423" - name: "" - metabolites: !!omap - m00271c: -1 @@ -159213,15 +159213,15 @@ - m02040c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12088281;PMID:10694406 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12088281;PMID:10694406" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_1424 + - id: "HMR_1424" - name: "" - metabolites: !!omap - m00299c: -1 @@ -159231,15 +159231,15 @@ - m02040c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10694406;PMID:12088281;PMID:10694406;PMID:12088281 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10694406;PMID:12088281;PMID:10694406;PMID:12088281" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_1425 + - id: "HMR_1425" - name: "" - metabolites: !!omap - m00299c: -1 @@ -159249,15 +159249,15 @@ - m02040c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12088281;PMID:10694406 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12088281;PMID:10694406" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_1426 + - id: "HMR_1426" - name: "" - metabolites: !!omap - m00355c: -1 @@ -159267,15 +159267,15 @@ - m02040c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12088281;PMID:10694406 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12088281;PMID:10694406" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_1427 + - id: "HMR_1427" - name: "" - metabolites: !!omap - m00355c: -1 @@ -159284,15 +159284,15 @@ - m02040c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12088281;PMID:10694406 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12088281;PMID:10694406" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_1428 + - id: "HMR_1428" - name: "" - metabolites: !!omap - m00368c: -1 @@ -159302,15 +159302,15 @@ - m02040c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12088281;PMID:10694406 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12088281;PMID:10694406" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_1429 + - id: "HMR_1429" - name: "" - metabolites: !!omap - m00368c: -1 @@ -159320,15 +159320,15 @@ - m02040c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12088281;PMID:10694406 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12088281;PMID:10694406" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_1430 + - id: "HMR_1430" - name: "" - metabolites: !!omap - m00415c: -1 @@ -159337,15 +159337,15 @@ - m02040c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12088281;PMID:10694406 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12088281;PMID:10694406" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_1431 + - id: "HMR_1431" - name: "" - metabolites: !!omap - m00415c: -1 @@ -159354,15 +159354,15 @@ - m02040c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12088281;PMID:10694406 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12088281;PMID:10694406" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_1432 + - id: "HMR_1432" - name: "" - metabolites: !!omap - m00589c: -1 @@ -159372,15 +159372,15 @@ - m02040c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12088281;PMID:10694406 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12088281;PMID:10694406" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_1433 + - id: "HMR_1433" - name: "" - metabolites: !!omap - m00589c: -1 @@ -159390,15 +159390,15 @@ - m02040c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12088281;PMID:10694406 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12088281;PMID:10694406" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_8262 + - id: "HMR_8262" - name: "" - metabolites: !!omap - m01948g: 1 @@ -159408,15 +159408,15 @@ - m03092g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174951 or ENSG00000176920 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.69 - - references: + - gene_reaction_rule: "ENSG00000174951 or ENSG00000176920" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.69" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8263 + - id: "HMR_8263" - name: "" - metabolites: !!omap - m02039g: 1 @@ -159426,15 +159426,15 @@ - m03110g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000175164 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000175164" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8264 + - id: "HMR_8264" - name: "" - metabolites: !!omap - m01850g: 1 @@ -159444,15 +159444,15 @@ - m03090g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130383 or ENSG00000156413 or ENSG00000171124 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.65 - - references: + - gene_reaction_rule: "ENSG00000130383 or ENSG00000156413 or ENSG00000171124" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.65" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8267 + - id: "HMR_8267" - name: "" - metabolites: !!omap - m02039g: 1 @@ -159462,15 +159462,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000175164 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.40 - - references: + - gene_reaction_rule: "ENSG00000175164" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.40" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8268 + - id: "HMR_8268" - name: "" - metabolites: !!omap - m01859g: 1 @@ -159480,15 +159480,15 @@ - m03091g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130383 or ENSG00000156413 or ENSG00000171124 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.65 - - references: + - gene_reaction_rule: "ENSG00000130383 or ENSG00000156413 or ENSG00000171124" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.65" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8271 + - id: "HMR_8271" - name: "" - metabolites: !!omap - m01948g: 1 @@ -159498,15 +159498,15 @@ - m03092g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130383 or ENSG00000156413 or ENSG00000171124 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.65 - - references: + - gene_reaction_rule: "ENSG00000130383 or ENSG00000156413 or ENSG00000171124" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.65" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8274 + - id: "HMR_8274" - name: "" - metabolites: !!omap - m01948g: 1 @@ -159516,15 +159516,15 @@ - m02347g: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000130383 or ENSG00000156413 or ENSG00000171124 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.65 - - references: + - gene_reaction_rule: "ENSG00000130383 or ENSG00000156413 or ENSG00000171124" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.65" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8275 + - id: "HMR_8275" - name: "" - metabolites: !!omap - m02039g: 1 @@ -159534,15 +159534,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000176597 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.206 - - references: + - gene_reaction_rule: "ENSG00000176597" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.206" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8276 + - id: "HMR_8276" - name: "" - metabolites: !!omap - m02039g: 1 @@ -159552,15 +159552,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000183778 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000183778" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8277 + - id: "HMR_8277" - name: "" - metabolites: !!omap - m02039g: 1 @@ -159570,15 +159570,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000179913 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000179913" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8278 + - id: "HMR_8278" - name: "" - metabolites: !!omap - m02039g: 1 @@ -159588,15 +159588,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000170340 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000170340" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8279 + - id: "HMR_8279" - name: "" - metabolites: !!omap - m02039g: 1 @@ -159606,15 +159606,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000179913 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000179913" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8280 + - id: "HMR_8280" - name: "" - metabolites: !!omap - m01948g: 1 @@ -159624,15 +159624,15 @@ - m03095g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174951 or ENSG00000176920 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.69 - - references: + - gene_reaction_rule: "ENSG00000174951 or ENSG00000176920" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.69" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8281 + - id: "HMR_8281" - name: "" - metabolites: !!omap - m01914g: 1 @@ -159642,15 +159642,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000175164 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.40 - - references: + - gene_reaction_rule: "ENSG00000175164" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.40" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8284 + - id: "HMR_8284" - name: "" - metabolites: !!omap - m01262g: 1 @@ -159660,15 +159660,15 @@ - m03110g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000175164 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.40 - - references: + - gene_reaction_rule: "ENSG00000175164" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.40" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8285 + - id: "HMR_8285" - name: "" - metabolites: !!omap - m01262g: -1 @@ -159678,15 +159678,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000179913 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000179913" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8286 + - id: "HMR_8286" - name: "" - metabolites: !!omap - m01907g: -1 @@ -159696,15 +159696,15 @@ - m03097g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174951 or ENSG00000176920 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.69 - - references: + - gene_reaction_rule: "ENSG00000174951 or ENSG00000176920" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.69" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8287 + - id: "HMR_8287" - name: "" - metabolites: !!omap - m01948g: 1 @@ -159714,15 +159714,15 @@ - m03095g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000172461 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000172461" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8288 + - id: "HMR_8288" - name: "" - metabolites: !!omap - m02039g: 1 @@ -159732,15 +159732,15 @@ - m03110g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000175164 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.40 - - references: + - gene_reaction_rule: "ENSG00000175164" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.40" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8291 + - id: "HMR_8291" - name: "" - metabolites: !!omap - m01948g: 1 @@ -159750,15 +159750,15 @@ - m03137g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174951 or ENSG00000176920 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.69 - - references: + - gene_reaction_rule: "ENSG00000174951 or ENSG00000176920" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.69" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8292 + - id: "HMR_8292" - name: "" - metabolites: !!omap - m01263g: 1 @@ -159768,15 +159768,15 @@ - m03137g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000175164 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.40 - - references: + - gene_reaction_rule: "ENSG00000175164" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.40" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8293 + - id: "HMR_8293" - name: "" - metabolites: !!omap - m01263g: -1 @@ -159786,15 +159786,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000179913 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000179913" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8294 + - id: "HMR_8294" - name: "" - metabolites: !!omap - m01857g: 1 @@ -159804,15 +159804,15 @@ - m02039g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174951 or ENSG00000176920 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.69 - - references: + - gene_reaction_rule: "ENSG00000174951 or ENSG00000176920" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.69" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8295 + - id: "HMR_8295" - name: "" - metabolites: !!omap - m01857g: -1 @@ -159822,15 +159822,15 @@ - m03110g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000175164 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.40 - - references: + - gene_reaction_rule: "ENSG00000175164" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.40" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8298 + - id: "HMR_8298" - name: "" - metabolites: !!omap - m01915g: 1 @@ -159840,15 +159840,15 @@ - m03137g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000175164 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.40 - - references: + - gene_reaction_rule: "ENSG00000175164" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.40" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8301 + - id: "HMR_8301" - name: "" - metabolites: !!omap - m01856g: 1 @@ -159857,15 +159857,15 @@ - m02594g: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000174951 or ENSG00000176920 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.69 - - references: + - gene_reaction_rule: "ENSG00000174951 or ENSG00000176920" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.69" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8302 + - id: "HMR_8302" - name: "" - metabolites: !!omap - m01856g: -1 @@ -159875,15 +159875,15 @@ - m03107g: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000175164 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.40 - - references: + - gene_reaction_rule: "ENSG00000175164" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.40" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8305 + - id: "HMR_8305" - name: "" - metabolites: !!omap - m02039g: 1 @@ -159893,15 +159893,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000170340 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000170340" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8306 + - id: "HMR_8306" - name: "" - metabolites: !!omap - m02039g: 1 @@ -159911,15 +159911,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000179913 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000179913" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8307 + - id: "HMR_8307" - name: "" - metabolites: !!omap - m01858g: 1 @@ -159929,15 +159929,15 @@ - m02596g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000172461 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000172461" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8308 + - id: "HMR_8308" - name: "" - metabolites: !!omap - m01854g: 1 @@ -159947,15 +159947,15 @@ - m02039g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000172461 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000172461" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8309 + - id: "HMR_8309" - name: "" - metabolites: !!omap - m01852g: 1 @@ -159965,15 +159965,15 @@ - m02039g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000172461 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000172461" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8316 + - id: "HMR_8316" - name: "" - metabolites: !!omap - m01880g: 1 @@ -159983,15 +159983,15 @@ - m03111g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111846 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.150 - - references: + - gene_reaction_rule: "ENSG00000111846" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.150" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8317 + - id: "HMR_8317" - name: "" - metabolites: !!omap - m01880g: -1 @@ -160001,15 +160001,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000179913 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000179913" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8318 + - id: "HMR_8318" - name: "" - metabolites: !!omap - m01264g: 1 @@ -160019,15 +160019,15 @@ - m02347g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110080 or ENSG00000126091 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.6 - - references: + - gene_reaction_rule: "ENSG00000110080 or ENSG00000126091" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.6" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8319 + - id: "HMR_8319" - name: "" - metabolites: !!omap - m01264g: -1 @@ -160037,15 +160037,15 @@ - m02198g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171124 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000171124" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8322 + - id: "HMR_8322" - name: "" - metabolites: !!omap - m01948g: 1 @@ -160055,15 +160055,15 @@ - m02331g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000172461 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000172461" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8325 + - id: "HMR_8325" - name: "" - metabolites: !!omap - m01590g: 1 @@ -160073,15 +160073,15 @@ - m02904g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064225 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.10 - - references: + - gene_reaction_rule: "ENSG00000064225" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.10" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8326 + - id: "HMR_8326" - name: "" - metabolites: !!omap - m01948g: 1 @@ -160091,15 +160091,15 @@ - m02904g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000172461 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000172461" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8327 + - id: "HMR_8327" - name: "" - metabolites: !!omap - m00744g: 1 @@ -160109,15 +160109,15 @@ - m02904g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101638 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.- - - references: + - gene_reaction_rule: "ENSG00000101638" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.-" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8330 + - id: "HMR_8330" - name: "" - metabolites: !!omap - m01855g: 1 @@ -160127,15 +160127,15 @@ - m03137g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000172461 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000172461" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8331 + - id: "HMR_8331" - name: "" - metabolites: !!omap - m01853g: 1 @@ -160145,15 +160145,15 @@ - m02039g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000172461 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000172461" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8332 + - id: "HMR_8332" - name: "" - metabolites: !!omap - m01948g: 1 @@ -160163,15 +160163,15 @@ - m03133g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000172461 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000172461" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8333 + - id: "HMR_8333" - name: "" - metabolites: !!omap - m01851g: 1 @@ -160181,15 +160181,15 @@ - m03133g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000172461 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000172461" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8334 + - id: "HMR_8334" - name: "" - metabolites: !!omap - m01948g: 1 @@ -160199,15 +160199,15 @@ - m02594g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000172461 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.- - - references: + - gene_reaction_rule: "ENSG00000172461" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.-" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8337 + - id: "HMR_8337" - name: "" - metabolites: !!omap - m01590g: 1 @@ -160217,15 +160217,15 @@ - m03138g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064225 - - rxnFrom: HMRdatabase - - eccodes: 2.4.99.10 - - references: + - gene_reaction_rule: "ENSG00000064225" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.99.10" + - references: "" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_0712 + - id: "HMR_0712" - name: "" - metabolites: !!omap - m01306p: 1 @@ -160235,15 +160235,15 @@ - m02555p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138413 or ENSG00000182054 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.42 - - references: PMID:15173171;PMID:10521434 + - gene_reaction_rule: "ENSG00000138413 or ENSG00000182054" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.42" + - references: "PMID:15173171;PMID:10521434" - subsystem: - - Nicotinate and nicotinamide metabolism + - "Nicotinate and nicotinamide metabolism" - confidence_score: 0 - !!omap - - id: HMR_3992 + - id: "HMR_3992" - name: "" - metabolites: !!omap - m01823c: -2 @@ -160253,15 +160253,15 @@ - m02553c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000065615 or ENSG00000100243 or ENSG00000159348 or ENSG00000166394 or ENSG00000215883 - - rxnFrom: HMRdatabase - - eccodes: 1.6.2.2 - - references: PMID:2500149;PMID:6841358;PMID:7294831;PMID:8143727 + - gene_reaction_rule: "ENSG00000065615 or ENSG00000100243 or ENSG00000159348 or ENSG00000166394 or ENSG00000215883" + - rxnFrom: "HMRdatabase" + - eccodes: "1.6.2.2" + - references: "PMID:2500149;PMID:6841358;PMID:7294831;PMID:8143727" - subsystem: - - Nicotinate and nicotinamide metabolism + - "Nicotinate and nicotinamide metabolism" - confidence_score: 0 - !!omap - - id: HMR_4228 + - id: "HMR_4228" - name: "" - metabolites: !!omap - m00629c: 1 @@ -160270,15 +160270,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162882 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.6 - - references: PMID:12007609 + - gene_reaction_rule: "ENSG00000162882" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.6" + - references: "PMID:12007609" - subsystem: - - Nicotinate and nicotinamide metabolism + - "Nicotinate and nicotinamide metabolism" - confidence_score: 0 - !!omap - - id: HMR_4251 + - id: "HMR_4251" - name: "" - metabolites: !!omap - m01596c: 1 @@ -160289,15 +160289,15 @@ - m02822c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103485 - - rxnFrom: HMRdatabase - - eccodes: 2.4.2.19 - - references: PMID:17868694 + - gene_reaction_rule: "ENSG00000103485" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.2.19" + - references: "PMID:17868694" - subsystem: - - Nicotinate and nicotinamide metabolism + - "Nicotinate and nicotinamide metabolism" - confidence_score: 0 - !!omap - - id: HMR_4252 + - id: "HMR_4252" - name: "" - metabolites: !!omap - m02040c: -1 @@ -160306,15 +160306,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000014257 or ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000146587 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.5 - - references: PMID:11690631;PMID:17405878;PMID:6284244;PMID:7999131;UNIPROT:P21589;UNIPROT:Q96P26 + - gene_reaction_rule: "ENSG00000014257 or ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000146587 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.5" + - references: "PMID:11690631;PMID:17405878;PMID:6284244;PMID:7999131;UNIPROT:P21589;UNIPROT:Q96P26" - subsystem: - - Nicotinate and nicotinamide metabolism + - "Nicotinate and nicotinamide metabolism" - confidence_score: 0 - !!omap - - id: HMR_4253 + - id: "HMR_4253" - name: "" - metabolites: !!omap - m01285c: 1 @@ -160324,15 +160324,15 @@ - m02585c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000077009 or ENSG00000106733 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000077009 or ENSG00000106733" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Nicotinate and nicotinamide metabolism + - "Nicotinate and nicotinamide metabolism" - confidence_score: 0 - !!omap - - id: HMR_4254 + - id: "HMR_4254" - name: "" - metabolites: !!omap - m02039c: -1 @@ -160342,15 +160342,15 @@ - m02806c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147813 - - rxnFrom: HMRdatabase - - eccodes: 2.4.2.11 - - references: PMID:17604275;UNIPROT:Q6XQN6 + - gene_reaction_rule: "ENSG00000147813" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.2.11" + - references: "PMID:17604275;UNIPROT:Q6XQN6" - subsystem: - - Nicotinate and nicotinamide metabolism + - "Nicotinate and nicotinamide metabolism" - confidence_score: 0 - !!omap - - id: HMR_4255 + - id: "HMR_4255" - name: "" - metabolites: !!omap - m01334c: 1 @@ -160360,15 +160360,15 @@ - m02585c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112874 or ENSG00000154269 or ENSG00000197594 - - rxnFrom: HMRdatabase - - eccodes: 3.6.1.22;3.6.1.9 - - references: PMID:11579996;PMID:11946484 + - gene_reaction_rule: "ENSG00000112874 or ENSG00000154269 or ENSG00000197594" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.1.22;3.6.1.9" + - references: "PMID:11579996;PMID:11946484" - subsystem: - - Nicotinate and nicotinamide metabolism + - "Nicotinate and nicotinamide metabolism" - confidence_score: 0 - !!omap - - id: HMR_4257 + - id: "HMR_4257" - name: "" - metabolites: !!omap - m01371c: -1 @@ -160378,15 +160378,15 @@ - m02759c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157064 or ENSG00000163864 or ENSG00000173614 - - rxnFrom: HMRdatabase - - eccodes: 2.7.7.1;2.7.7.18 - - references: + - gene_reaction_rule: "ENSG00000157064 or ENSG00000163864 or ENSG00000173614" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.7.1;2.7.7.18" + - references: "" - subsystem: - - Nicotinate and nicotinamide metabolism + - "Nicotinate and nicotinamide metabolism" - confidence_score: 0 - !!omap - - id: HMR_4259 + - id: "HMR_4259" - name: "" - metabolites: !!omap - m02039c: 1 @@ -160396,15 +160396,15 @@ - m02585c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 3.5.1.42 - - references: PMID:7021549 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.1.42" + - references: "PMID:7021549" - subsystem: - - Nicotinate and nicotinamide metabolism + - "Nicotinate and nicotinamide metabolism" - confidence_score: 0 - !!omap - - id: HMR_4260 + - id: "HMR_4260" - name: "" - metabolites: !!omap - m01334c: 1 @@ -160418,15 +160418,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000172890 - - rxnFrom: HMRdatabase - - eccodes: 6.3.5.1 - - references: PMID:11947665;PMID:12547821;PMID:2107886 + - gene_reaction_rule: "ENSG00000172890" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.5.1" + - references: "PMID:11947665;PMID:12547821;PMID:2107886" - subsystem: - - Nicotinate and nicotinamide metabolism + - "Nicotinate and nicotinamide metabolism" - confidence_score: 0 - !!omap - - id: HMR_4261 + - id: "HMR_4261" - name: "" - metabolites: !!omap - m01334c: 1 @@ -160437,15 +160437,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000172890 - - rxnFrom: HMRdatabase - - eccodes: 6.3.5.1 - - references: + - gene_reaction_rule: "ENSG00000172890" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.5.1" + - references: "" - subsystem: - - Nicotinate and nicotinamide metabolism + - "Nicotinate and nicotinamide metabolism" - confidence_score: 0 - !!omap - - id: HMR_4262 + - id: "HMR_4262" - name: "" - metabolites: !!omap - m02039c: 1 @@ -160455,15 +160455,15 @@ - m02806c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105835 - - rxnFrom: HMRdatabase - - eccodes: 2.4.2.12 - - references: PMID:12555668;PMID:1443581;PMID:14612543;PMID:4344987;PMID:6176238 + - gene_reaction_rule: "ENSG00000105835" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.2.12" + - references: "PMID:12555668;PMID:1443581;PMID:14612543;PMID:4344987;PMID:6176238" - subsystem: - - Nicotinate and nicotinamide metabolism + - "Nicotinate and nicotinamide metabolism" - confidence_score: 0 - !!omap - - id: HMR_4263 + - id: "HMR_4263" - name: "" - metabolites: !!omap - m01334c: 1 @@ -160473,15 +160473,15 @@ - m02581c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112874 - - rxnFrom: HMRdatabase - - eccodes: 3.6.1.22 - - references: + - gene_reaction_rule: "ENSG00000112874" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.1.22" + - references: "" - subsystem: - - Nicotinate and nicotinamide metabolism + - "Nicotinate and nicotinamide metabolism" - confidence_score: 0 - !!omap - - id: HMR_4264 + - id: "HMR_4264" - name: "" - metabolites: !!omap - m02040c: -1 @@ -160490,15 +160490,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000014257 or ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.5 - - references: + - gene_reaction_rule: "ENSG00000014257 or ENSG00000076685 or ENSG00000116981 or ENSG00000122643 or ENSG00000125458 or ENSG00000135318 or ENSG00000141698 or ENSG00000185013 or ENSG00000205309 or ENSG00000250741" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.5" + - references: "" - subsystem: - - Nicotinate and nicotinamide metabolism + - "Nicotinate and nicotinamide metabolism" - confidence_score: 0 - !!omap - - id: HMR_4265 + - id: "HMR_4265" - name: "" - metabolites: !!omap - m01285c: 1 @@ -160508,15 +160508,15 @@ - m02582c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000077009 or ENSG00000106733 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.22 - - references: + - gene_reaction_rule: "ENSG00000077009 or ENSG00000106733" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.22" + - references: "" - subsystem: - - Nicotinate and nicotinamide metabolism + - "Nicotinate and nicotinamide metabolism" - confidence_score: 0 - !!omap - - id: HMR_4267 + - id: "HMR_4267" - name: "" - metabolites: !!omap - m01371m: -1 @@ -160526,15 +160526,15 @@ - m02759m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157064 or ENSG00000163864 or ENSG00000173614 - - rxnFrom: HMRdatabase - - eccodes: 2.7.7.1 - - references: + - gene_reaction_rule: "ENSG00000157064 or ENSG00000163864 or ENSG00000173614" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.7.1" + - references: "" - subsystem: - - Nicotinate and nicotinamide metabolism + - "Nicotinate and nicotinamide metabolism" - confidence_score: 0 - !!omap - - id: HMR_4268 + - id: "HMR_4268" - name: "" - metabolites: !!omap - m01285m: 1 @@ -160544,15 +160544,15 @@ - m02554m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008130 or ENSG00000152620 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.23 - - references: PMID:11594753 + - gene_reaction_rule: "ENSG00000008130 or ENSG00000152620" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.23" + - references: "PMID:11594753" - subsystem: - - Nicotinate and nicotinamide metabolism + - "Nicotinate and nicotinamide metabolism" - confidence_score: 0 - !!omap - - id: HMR_4269 + - id: "HMR_4269" - name: "" - metabolites: !!omap - m01285c: 1 @@ -160562,15 +160562,15 @@ - m02554c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008130 or ENSG00000152620 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.23 - - references: PMID:11594753 + - gene_reaction_rule: "ENSG00000008130 or ENSG00000152620" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.23" + - references: "PMID:11594753" - subsystem: - - Nicotinate and nicotinamide metabolism + - "Nicotinate and nicotinamide metabolism" - confidence_score: 0 - !!omap - - id: HMR_4270 + - id: "HMR_4270" - name: "" - metabolites: !!omap - m02040c: -1 @@ -160579,15 +160579,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000014257 or ENSG00000102575 or ENSG00000142513 or ENSG00000143727 or ENSG00000155893 or ENSG00000162836 or ENSG00000183760 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.2 - - references: + - gene_reaction_rule: "ENSG00000014257 or ENSG00000102575 or ENSG00000142513 or ENSG00000143727 or ENSG00000155893 or ENSG00000162836 or ENSG00000183760" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.2" + - references: "" - subsystem: - - Nicotinate and nicotinamide metabolism + - "Nicotinate and nicotinamide metabolism" - confidence_score: 0 - !!omap - - id: HMR_4271 + - id: "HMR_4271" - name: "" - metabolites: !!omap - m02039i: -1 @@ -160598,15 +160598,15 @@ - m02555m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112992 - - rxnFrom: HMRdatabase - - eccodes: 1.6.1.1;1.6.1.2 - - references: PMID:10216162;PMID:12223207 + - gene_reaction_rule: "ENSG00000112992" + - rxnFrom: "HMRdatabase" + - eccodes: "1.6.1.1;1.6.1.2" + - references: "PMID:10216162;PMID:12223207" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4276 + - id: "HMR_4276" - name: "" - metabolites: !!omap - m01371n: -1 @@ -160616,15 +160616,15 @@ - m02759n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000173614 - - rxnFrom: HMRdatabase - - eccodes: 2.7.7.1 - - references: + - gene_reaction_rule: "ENSG00000173614" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.7.1" + - references: "" - subsystem: - - Nicotinate and nicotinamide metabolism + - "Nicotinate and nicotinamide metabolism" - confidence_score: 0 - !!omap - - id: HMR_4278 + - id: "HMR_4278" - name: "" - metabolites: !!omap - m01334n: 1 @@ -160635,15 +160635,15 @@ - m02759n: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000172890 - - rxnFrom: HMRdatabase - - eccodes: 6.3.5.1 - - references: + - gene_reaction_rule: "ENSG00000172890" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.5.1" + - references: "" - subsystem: - - Nicotinate and nicotinamide metabolism + - "Nicotinate and nicotinamide metabolism" - confidence_score: 0 - !!omap - - id: HMR_4279 + - id: "HMR_4279" - name: "" - metabolites: !!omap - m01285n: 1 @@ -160653,15 +160653,15 @@ - m02554n: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008130 or ENSG00000152620 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.23 - - references: PMID:11594753 + - gene_reaction_rule: "ENSG00000008130 or ENSG00000152620" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.23" + - references: "PMID:11594753" - subsystem: - - Nicotinate and nicotinamide metabolism + - "Nicotinate and nicotinamide metabolism" - confidence_score: 0 - !!omap - - id: HMR_4662 + - id: "HMR_4662" - name: "" - metabolites: !!omap - m02039c: 1 @@ -160671,15 +160671,15 @@ - m02844c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000198805 - - rxnFrom: HMRdatabase - - eccodes: 2.4.2.1 - - references: PMID:2301;PMID:37803;UNIPROT:P00491 + - gene_reaction_rule: "ENSG00000198805" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.2.1" + - references: "PMID:2301;PMID:37803;UNIPROT:P00491" - subsystem: - - Nicotinate and nicotinamide metabolism + - "Nicotinate and nicotinamide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7142 + - id: "HMR_7142" - name: "" - metabolites: !!omap - m01288s: 1 @@ -160689,15 +160689,15 @@ - m02583s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000004468 or ENSG00000109743 - - rxnFrom: HMRdatabase - - eccodes: 3.2.2.5 - - references: + - gene_reaction_rule: "ENSG00000004468 or ENSG00000109743" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.2.5" + - references: "" - subsystem: - - Nicotinate and nicotinamide metabolism + - "Nicotinate and nicotinamide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7143 + - id: "HMR_7143" - name: "" - metabolites: !!omap - m01288c: 1 @@ -160707,15 +160707,15 @@ - m02583c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000004468 or ENSG00000109743 - - rxnFrom: HMRdatabase - - eccodes: 3.2.2.5 - - references: + - gene_reaction_rule: "ENSG00000004468 or ENSG00000109743" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.2.5" + - references: "" - subsystem: - - Nicotinate and nicotinamide metabolism + - "Nicotinate and nicotinamide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7623 + - id: "HMR_7623" - name: "" - metabolites: !!omap - m00197c: -1 @@ -160725,15 +160725,15 @@ - m02583c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000077463 or ENSG00000111339 or ENSG00000129744 or ENSG00000156219 or ENSG00000167311 - - rxnFrom: HMRdatabase - - eccodes: 2.4.2.31 - - references: + - gene_reaction_rule: "ENSG00000077463 or ENSG00000111339 or ENSG00000129744 or ENSG00000156219 or ENSG00000167311" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.2.31" + - references: "" - subsystem: - - Nicotinate and nicotinamide metabolism + - "Nicotinate and nicotinamide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7625 + - id: "HMR_7625" - name: "" - metabolites: !!omap - m00196c: 1 @@ -160745,15 +160745,15 @@ - m02583c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000077463 or ENSG00000111339 or ENSG00000129744 or ENSG00000156219 or ENSG00000167311 - - rxnFrom: HMRdatabase - - eccodes: 2.4.2.31 - - references: + - gene_reaction_rule: "ENSG00000077463 or ENSG00000111339 or ENSG00000129744 or ENSG00000156219 or ENSG00000167311" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.2.31" + - references: "" - subsystem: - - Nicotinate and nicotinamide metabolism + - "Nicotinate and nicotinamide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7627 + - id: "HMR_7627" - name: "" - metabolites: !!omap - m01289c: 1 @@ -160763,15 +160763,15 @@ - m02583c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000004468 or ENSG00000109743 - - rxnFrom: HMRdatabase - - eccodes: 3.2.2.5 - - references: + - gene_reaction_rule: "ENSG00000004468 or ENSG00000109743" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.2.5" + - references: "" - subsystem: - - Nicotinate and nicotinamide metabolism + - "Nicotinate and nicotinamide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7676 + - id: "HMR_7676" - name: "" - metabolites: !!omap - m00536c: 1 @@ -160780,15 +160780,15 @@ - m02877c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000166741 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.1 - - references: + - gene_reaction_rule: "ENSG00000166741" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.1" + - references: "" - subsystem: - - Nicotinate and nicotinamide metabolism + - "Nicotinate and nicotinamide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7677 + - id: "HMR_7677" - name: "" - metabolites: !!omap - m00536c: -1 @@ -160799,15 +160799,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138356 - - rxnFrom: HMRdatabase - - eccodes: 1.2.3.1 - - references: + - gene_reaction_rule: "ENSG00000138356" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.3.1" + - references: "" - subsystem: - - Nicotinate and nicotinamide metabolism + - "Nicotinate and nicotinamide metabolism" - confidence_score: 0 - !!omap - - id: HMR_7678 + - id: "HMR_7678" - name: "" - metabolites: !!omap - m00536c: -1 @@ -160818,15 +160818,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138356 - - rxnFrom: HMRdatabase - - eccodes: 1.2.3.1 - - references: + - gene_reaction_rule: "ENSG00000138356" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.3.1" + - references: "" - subsystem: - - Nicotinate and nicotinamide metabolism + - "Nicotinate and nicotinamide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8788 + - id: "HMR_8788" - name: "" - metabolites: !!omap - m01289s: 1 @@ -160836,15 +160836,15 @@ - m02583s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000004468 or ENSG00000109743 - - rxnFrom: HMRdatabase - - eccodes: 3.2.2.5 - - references: + - gene_reaction_rule: "ENSG00000004468 or ENSG00000109743" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.2.5" + - references: "" - subsystem: - - Nicotinate and nicotinamide metabolism + - "Nicotinate and nicotinamide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8790 + - id: "HMR_8790" - name: "" - metabolites: !!omap - m01371n: -1 @@ -160854,15 +160854,15 @@ - m02759n: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000173614 - - rxnFrom: HMRdatabase - - eccodes: 2.7.7.1 - - references: + - gene_reaction_rule: "ENSG00000173614" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.7.1" + - references: "" - subsystem: - - Nicotinate and nicotinamide metabolism + - "Nicotinate and nicotinamide metabolism" - confidence_score: 0 - !!omap - - id: HMR_8791 + - id: "HMR_8791" - name: "" - metabolites: !!omap - m02039c: -1 @@ -160872,15 +160872,15 @@ - m02844c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000198805 - - rxnFrom: HMRdatabase - - eccodes: 2.4.2.1 - - references: + - gene_reaction_rule: "ENSG00000198805" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.2.1" + - references: "" - subsystem: - - Nicotinate and nicotinamide metabolism + - "Nicotinate and nicotinamide metabolism" - confidence_score: 0 - !!omap - - id: HMR_3871 + - id: "HMR_3871" - name: "" - metabolites: !!omap - m01285c: 1 @@ -160890,15 +160890,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068120 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.24 - - references: PMID:11923312;PMID:11994049;PMID:13163064;PMID:15893380 + - gene_reaction_rule: "ENSG00000068120" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.24" + - references: "PMID:11923312;PMID:11994049;PMID:13163064;PMID:15893380" - subsystem: - - Pantothenate and CoA biosynthesis + - "Pantothenate and CoA biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4058 + - id: "HMR_4058" - name: "" - metabolites: !!omap - m01285m: 1 @@ -160908,15 +160908,15 @@ - m02039m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068120 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.24 - - references: PMID:11923312;PMID:11994049;PMID:13163064;PMID:15893380 + - gene_reaction_rule: "ENSG00000068120" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.24" + - references: "PMID:11923312;PMID:11994049;PMID:13163064;PMID:15893380" - subsystem: - - Pantothenate and CoA biosynthesis + - "Pantothenate and CoA biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4498 + - id: "HMR_4498" - name: "" - metabolites: !!omap - m00184c: -1 @@ -160926,15 +160926,15 @@ - m02741c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 3.1.4.14 - - references: PMID:220505;PMID:5671058 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.4.14" + - references: "PMID:220505;PMID:5671058" - subsystem: - - Pantothenate and CoA biosynthesis + - "Pantothenate and CoA biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4499 + - id: "HMR_4499" - name: "" - metabolites: !!omap - m02039m: -1 @@ -160944,15 +160944,15 @@ - m02741m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 3.1.4.14 - - references: PMID:5553404;PMID:5671058 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.4.14" + - references: "PMID:5553404;PMID:5671058" - subsystem: - - Pantothenate and CoA biosynthesis + - "Pantothenate and CoA biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4500 + - id: "HMR_4500" - name: "" - metabolites: !!omap - m00184c: 1 @@ -160962,15 +160962,15 @@ - m02681c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149313 - - rxnFrom: HMRdatabase - - eccodes: 2.7.8.- - - references: PMID:12815048;PMID:4561013 + - gene_reaction_rule: "ENSG00000149313" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.8.-" + - references: "PMID:12815048;PMID:4561013" - subsystem: - - Pantothenate and CoA biosynthesis + - "Pantothenate and CoA biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4714 + - id: "HMR_4714" - name: "" - metabolites: !!omap - m01285c: 1 @@ -160980,15 +160980,15 @@ - m02741c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120137 or ENSG00000125779 or ENSG00000152782 or ENSG00000157881 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.33;2.7.1.34 - - references: PMID:13163064;PMID:15105273;PMID:15659606 + - gene_reaction_rule: "ENSG00000120137 or ENSG00000125779 or ENSG00000152782 or ENSG00000157881" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.33;2.7.1.34" + - references: "PMID:13163064;PMID:15105273;PMID:15659606" - subsystem: - - Pantothenate and CoA biosynthesis + - "Pantothenate and CoA biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4715 + - id: "HMR_4715" - name: "" - metabolites: !!omap - m01285m: 1 @@ -160998,15 +160998,15 @@ - m02741m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120137 or ENSG00000125779 or ENSG00000152782 or ENSG00000157881 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.33;2.7.1.34 - - references: PMID:13163064;PMID:15105273;PMID:15659606 + - gene_reaction_rule: "ENSG00000120137 or ENSG00000125779 or ENSG00000152782 or ENSG00000157881" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.33;2.7.1.34" + - references: "PMID:13163064;PMID:15105273;PMID:15659606" - subsystem: - - Pantothenate and CoA biosynthesis + - "Pantothenate and CoA biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4716 + - id: "HMR_4716" - name: "" - metabolites: !!omap - m01596c: 1 @@ -161015,15 +161015,15 @@ - m02679c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105607 or ENSG00000161860 - - rxnFrom: HMRdatabase - - eccodes: 4.1.1.30 - - references: PMID:13163064 + - gene_reaction_rule: "ENSG00000105607 or ENSG00000161860" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.1.30" + - references: "PMID:13163064" - subsystem: - - Pantothenate and CoA biosynthesis + - "Pantothenate and CoA biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4717 + - id: "HMR_4717" - name: "" - metabolites: !!omap - m01627c: 1 @@ -161032,15 +161032,15 @@ - m02680c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112299 or ENSG00000112303 - - rxnFrom: HMRdatabase - - eccodes: 3.5.1.92 - - references: PMID:13163064 + - gene_reaction_rule: "ENSG00000112299 or ENSG00000112303" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.1.92" + - references: "PMID:13163064" - subsystem: - - Pantothenate and CoA biosynthesis + - "Pantothenate and CoA biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4718 + - id: "HMR_4718" - name: "" - metabolites: !!omap - m01285c: 1 @@ -161050,15 +161050,15 @@ - m02680c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120137 or ENSG00000125779 or ENSG00000152782 or ENSG00000157881 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.33 - - references: PMID:10625688;PMID:11923312;PMID:13630913;PMID:15105273;PMID:15659606;PMID:15893380;PMID:16040613;PMID:17242360;PMID:2995137;PMID:2999132;PMID:4337331;PMID:7084227 + - gene_reaction_rule: "ENSG00000120137 or ENSG00000125779 or ENSG00000152782 or ENSG00000157881" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.33" + - references: "PMID:10625688;PMID:11923312;PMID:13630913;PMID:15105273;PMID:15659606;PMID:15893380;PMID:16040613;PMID:17242360;PMID:2995137;PMID:2999132;PMID:4337331;PMID:7084227" - subsystem: - - Pantothenate and CoA biosynthesis + - "Pantothenate and CoA biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4723 + - id: "HMR_4723" - name: "" - metabolites: !!omap - m00163c: 1 @@ -161070,15 +161070,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000127125 - - rxnFrom: HMRdatabase - - eccodes: 6.3.2.5 - - references: PMID:11923312;PMID:12906824;PMID:15893380 + - gene_reaction_rule: "ENSG00000127125" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.2.5" + - references: "PMID:11923312;PMID:12906824;PMID:15893380" - subsystem: - - Pantothenate and CoA biosynthesis + - "Pantothenate and CoA biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4725 + - id: "HMR_4725" - name: "" - metabolites: !!omap - m00163c: -1 @@ -161087,15 +161087,15 @@ - m02741c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138621 - - rxnFrom: HMRdatabase - - eccodes: 4.1.1.36 - - references: PMID:11923312;PMID:13630913;PMID:15893380;PMID:4459135;PMID:6061681 + - gene_reaction_rule: "ENSG00000138621" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.1.36" + - references: "PMID:11923312;PMID:13630913;PMID:15893380;PMID:4459135;PMID:6061681" - subsystem: - - Pantothenate and CoA biosynthesis + - "Pantothenate and CoA biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4727 + - id: "HMR_4727" - name: "" - metabolites: !!omap - m01371c: -1 @@ -161105,15 +161105,15 @@ - m02759c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068120 - - rxnFrom: HMRdatabase - - eccodes: 2.7.7.3 - - references: PMID:11923312;PMID:11994049;PMID:13163064;PMID:15893380 + - gene_reaction_rule: "ENSG00000068120" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.7.3" + - references: "PMID:11923312;PMID:11994049;PMID:13163064;PMID:15893380" - subsystem: - - Pantothenate and CoA biosynthesis + - "Pantothenate and CoA biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4730 + - id: "HMR_4730" - name: "" - metabolites: !!omap - m00163c: -1 @@ -161123,15 +161123,15 @@ - m02623c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120137 or ENSG00000125779 or ENSG00000152782 or ENSG00000157881 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.33 - - references: PMID:10625688;PMID:13630913;PMID:15105273;PMID:15659606;PMID:16040613 + - gene_reaction_rule: "ENSG00000120137 or ENSG00000125779 or ENSG00000152782 or ENSG00000157881" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.33" + - references: "PMID:10625688;PMID:13630913;PMID:15105273;PMID:15659606;PMID:16040613" - subsystem: - - Pantothenate and CoA biosynthesis + - "Pantothenate and CoA biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4731 + - id: "HMR_4731" - name: "" - metabolites: !!omap - m00163m: -1 @@ -161141,15 +161141,15 @@ - m02623m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120137 or ENSG00000125779 or ENSG00000152782 or ENSG00000157881 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.33 - - references: PMID:10625688;PMID:13630913;PMID:15105273;PMID:15659606;PMID:16040613 + - gene_reaction_rule: "ENSG00000120137 or ENSG00000125779 or ENSG00000152782 or ENSG00000157881" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.33" + - references: "PMID:10625688;PMID:13630913;PMID:15105273;PMID:15659606;PMID:16040613" - subsystem: - - Pantothenate and CoA biosynthesis + - "Pantothenate and CoA biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4732 + - id: "HMR_4732" - name: "" - metabolites: !!omap - m01334c: 1 @@ -161159,15 +161159,15 @@ - m02741c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000154269 or ENSG00000197594 - - rxnFrom: HMRdatabase - - eccodes: 3.6.1.9 - - references: PMID:11579996;PMID:11946484 + - gene_reaction_rule: "ENSG00000154269 or ENSG00000197594" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.1.9" + - references: "PMID:11579996;PMID:11946484" - subsystem: - - Pantothenate and CoA biosynthesis + - "Pantothenate and CoA biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4733 + - id: "HMR_4733" - name: "" - metabolites: !!omap - m00163m: -1 @@ -161176,15 +161176,15 @@ - m02741m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138621 - - rxnFrom: HMRdatabase - - eccodes: 4.1.1.36 - - references: PMID:11923312;PMID:13630913;PMID:15893380;PMID:4459135;PMID:6061681 + - gene_reaction_rule: "ENSG00000138621" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.1.36" + - references: "PMID:11923312;PMID:13630913;PMID:15893380;PMID:4459135;PMID:6061681" - subsystem: - - Pantothenate and CoA biosynthesis + - "Pantothenate and CoA biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4734 + - id: "HMR_4734" - name: "" - metabolites: !!omap - m01371m: -1 @@ -161194,15 +161194,15 @@ - m02759m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068120 - - rxnFrom: HMRdatabase - - eccodes: 2.7.7.3 - - references: PMID:11923312;PMID:11994049;PMID:13163064;PMID:15893380 + - gene_reaction_rule: "ENSG00000068120" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.7.3" + - references: "PMID:11923312;PMID:11994049;PMID:13163064;PMID:15893380" - subsystem: - - Pantothenate and CoA biosynthesis + - "Pantothenate and CoA biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_7731 + - id: "HMR_7731" - name: "" - metabolites: !!omap - m01597l: -1 @@ -161211,15 +161211,15 @@ - m02751l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134575 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.2 - - references: + - gene_reaction_rule: "ENSG00000134575" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.2" + - references: "" - subsystem: - - Pantothenate and CoA biosynthesis + - "Pantothenate and CoA biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_8792 + - id: "HMR_8792" - name: "" - metabolites: !!omap - m02040c: -1 @@ -161228,15 +161228,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Pantothenate and CoA biosynthesis + - "Pantothenate and CoA biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_0663 + - id: "HMR_0663" - name: "" - metabolites: !!omap - m00237c: 1 @@ -161246,30 +161246,30 @@ - m02750c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101333 or ENSG00000114805 or ENSG00000115556 or ENSG00000115896 or ENSG00000124181 or ENSG00000137841 or ENSG00000138193 or ENSG00000139151 or ENSG00000149527 or ENSG00000149782 or ENSG00000154822 or ENSG00000161714 or ENSG00000182621 or ENSG00000187091 or ENSG00000197943 or ENSG00000240891 - - rxnFrom: HMRdatabase - - eccodes: 3.1.4.11 - - references: PMID:11509606;PMID:7356635 + - gene_reaction_rule: "ENSG00000101333 or ENSG00000114805 or ENSG00000115556 or ENSG00000115896 or ENSG00000124181 or ENSG00000137841 or ENSG00000138193 or ENSG00000139151 or ENSG00000149527 or ENSG00000149782 or ENSG00000154822 or ENSG00000161714 or ENSG00000182621 or ENSG00000187091 or ENSG00000197943 or ENSG00000240891" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.4.11" + - references: "PMID:11509606;PMID:7356635" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4308 + - id: "HMR_4308" - name: "" - metabolites: !!omap - m01968c: 1 - m02173c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105655 - - rxnFrom: HMRdatabase - - eccodes: 5.5.1.4 - - references: PMID:12941308 + - gene_reaction_rule: "ENSG00000105655" + - rxnFrom: "HMRdatabase" + - eccodes: "5.5.1.4" + - references: "PMID:12941308" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6539 + - id: "HMR_6539" - name: "" - metabolites: !!omap - m01973c: 1 @@ -161279,15 +161279,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100253 - - rxnFrom: HMRdatabase - - eccodes: 1.13.99.1 - - references: PMID:15504367;PMID:2226462;PMID:6822903 + - gene_reaction_rule: "ENSG00000100253" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.99.1" + - references: "PMID:15504367;PMID:2226462;PMID:6822903" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6540 + - id: "HMR_6540" - name: "" - metabolites: !!omap - m02040c: -1 @@ -161296,15 +161296,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104331 or ENSG00000133731 or ENSG00000141401 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.25 - - references: PMID:1319157;PMID:2829849;PMID:2906139;PMID:2999094 + - gene_reaction_rule: "ENSG00000104331 or ENSG00000133731 or ENSG00000141401" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.25" + - references: "PMID:1319157;PMID:2829849;PMID:2906139;PMID:2999094" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6542 + - id: "HMR_6542" - name: "" - metabolites: !!omap - m00552c: 1 @@ -161314,15 +161314,15 @@ - m02750c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000078142 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.137 - - references: + - gene_reaction_rule: "ENSG00000078142" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.137" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6543 + - id: "HMR_6543" - name: "" - metabolites: !!omap - m00552c: -1 @@ -161331,15 +161331,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000150712 or ENSG00000171100 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.64 - - references: PMID:7556092 + - gene_reaction_rule: "ENSG00000150712 or ENSG00000171100" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.64" + - references: "PMID:7556092" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6544 + - id: "HMR_6544" - name: "" - metabolites: !!omap - m00552c: -1 @@ -161349,15 +161349,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115020 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.150 - - references: PMID:9211928;PMID:10231032;PMID:11493657;PMID:10358929 + - gene_reaction_rule: "ENSG00000115020" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.150" + - references: "PMID:9211928;PMID:10231032;PMID:11493657;PMID:10358929" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6545 + - id: "HMR_6545" - name: "" - metabolites: !!omap - m00552c: 1 @@ -161366,15 +161366,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000003987 or ENSG00000054148 or ENSG00000063601 or ENSG00000087053 or ENSG00000102043 or ENSG00000111077 or ENSG00000111696 or ENSG00000112367 or ENSG00000117598 or ENSG00000125458 or ENSG00000126821 or ENSG00000137770 or ENSG00000139304 or ENSG00000139505 or ENSG00000144048 or ENSG00000158079 or ENSG00000160539 or ENSG00000163082 or ENSG00000163719 or ENSG00000165458 or ENSG00000165688 or ENSG00000198825 or ENSG00000198881 or ENSG00000205309 or ENSG00000205808 or ENSG00000211456 or ENSG00000213920 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.- - - references: + - gene_reaction_rule: "ENSG00000003987 or ENSG00000054148 or ENSG00000063601 or ENSG00000087053 or ENSG00000102043 or ENSG00000111077 or ENSG00000111696 or ENSG00000112367 or ENSG00000117598 or ENSG00000125458 or ENSG00000126821 or ENSG00000137770 or ENSG00000139304 or ENSG00000139505 or ENSG00000144048 or ENSG00000158079 or ENSG00000160539 or ENSG00000163082 or ENSG00000163719 or ENSG00000165458 or ENSG00000165688 or ENSG00000198825 or ENSG00000198881 or ENSG00000205309 or ENSG00000205808 or ENSG00000211456 or ENSG00000213920" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.-" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6546 + - id: "HMR_6546" - name: "" - metabolites: !!omap - m00553c: 1 @@ -161384,15 +161384,15 @@ - m02750c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000038210 or ENSG00000143393 or ENSG00000155252 or ENSG00000241973 or ENSG00000281028 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.67 - - references: PMID:7556092 + - gene_reaction_rule: "ENSG00000038210 or ENSG00000143393 or ENSG00000155252 or ENSG00000241973 or ENSG00000281028" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.67" + - references: "PMID:7556092" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6547 + - id: "HMR_6547" - name: "" - metabolites: !!omap - m00553c: -1 @@ -161401,15 +161401,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000003987 or ENSG00000054148 or ENSG00000063601 or ENSG00000087053 or ENSG00000102043 or ENSG00000111077 or ENSG00000111696 or ENSG00000112367 or ENSG00000117598 or ENSG00000125458 or ENSG00000126821 or ENSG00000137770 or ENSG00000139304 or ENSG00000139505 or ENSG00000144048 or ENSG00000158079 or ENSG00000160539 or ENSG00000163082 or ENSG00000163719 or ENSG00000165458 or ENSG00000165688 or ENSG00000198825 or ENSG00000205309 or ENSG00000205808 or ENSG00000211456 or ENSG00000213920 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.- - - references: PMID:7556092 + - gene_reaction_rule: "ENSG00000003987 or ENSG00000054148 or ENSG00000063601 or ENSG00000087053 or ENSG00000102043 or ENSG00000111077 or ENSG00000111696 or ENSG00000112367 or ENSG00000117598 or ENSG00000125458 or ENSG00000126821 or ENSG00000137770 or ENSG00000139304 or ENSG00000139505 or ENSG00000144048 or ENSG00000158079 or ENSG00000160539 or ENSG00000163082 or ENSG00000163719 or ENSG00000165458 or ENSG00000165688 or ENSG00000198825 or ENSG00000205309 or ENSG00000205808 or ENSG00000211456 or ENSG00000213920" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.-" + - references: "PMID:7556092" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6548 + - id: "HMR_6548" - name: "" - metabolites: !!omap - m00551c: 1 @@ -161419,15 +161419,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000011405 and ENSG00000133056) or ENSG00000139144 or ENSG00000141506 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.154 - - references: + - gene_reaction_rule: "(ENSG00000011405 and ENSG00000133056) or ENSG00000139144 or ENSG00000141506" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.154" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6549 + - id: "HMR_6549" - name: "" - metabolites: !!omap - m00551c: -1 @@ -161436,15 +161436,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000040933 or ENSG00000109452 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.66 - - references: + - gene_reaction_rule: "ENSG00000040933 or ENSG00000109452" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.66" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6550 + - id: "HMR_6550" - name: "" - metabolites: !!omap - m00551c: -1 @@ -161453,15 +161453,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000132958 or ENSG00000171862 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.67 - - references: + - gene_reaction_rule: "ENSG00000132958 or ENSG00000171862" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.67" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6551 + - id: "HMR_6551" - name: "" - metabolites: !!omap - m00553c: -1 @@ -161471,15 +161471,15 @@ - m02736c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107242 or ENSG00000143398 or ENSG00000167103 or ENSG00000186111 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.68 - - references: + - gene_reaction_rule: "ENSG00000107242 or ENSG00000143398 or ENSG00000167103 or ENSG00000186111" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.68" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6552 + - id: "HMR_6552" - name: "" - metabolites: !!omap - m00553c: 1 @@ -161488,15 +161488,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000078269 or ENSG00000122126 or ENSG00000148384 or ENSG00000159082 or ENSG00000204084 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.36 - - references: + - gene_reaction_rule: "ENSG00000078269 or ENSG00000122126 or ENSG00000148384 or ENSG00000159082 or ENSG00000204084" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.36" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6553 + - id: "HMR_6553" - name: "" - metabolites: !!omap - m00554c: 1 @@ -161505,15 +161505,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000155099 or ENSG00000165782 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.78 - - references: + - gene_reaction_rule: "ENSG00000155099 or ENSG00000165782" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.78" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6554 + - id: "HMR_6554" - name: "" - metabolites: !!omap - m00554c: -1 @@ -161523,15 +161523,15 @@ - m02736c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000150867 or ENSG00000166908 or ENSG00000276293 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.149 - - references: PMID:9356448;PMID:7567999;PMID:11756679;PMID:9295334;PMID:7567999;PMID:11756679;PMID:9356448;PMID:7556092 + - gene_reaction_rule: "ENSG00000150867 or ENSG00000166908 or ENSG00000276293" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.149" + - references: "PMID:9356448;PMID:7567999;PMID:11756679;PMID:9295334;PMID:7567999;PMID:11756679;PMID:9356448;PMID:7556092" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6555 + - id: "HMR_6555" - name: "" - metabolites: !!omap - m01285c: 1 @@ -161541,15 +161541,15 @@ - m02736c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000121879 and ENSG00000145675) or ENSG00000051382 or ENSG00000105647 or ENSG00000105851 or ENSG00000117461 or ENSG00000126264 or ENSG00000141506 or ENSG00000171608 or ENSG00000276231 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.153 - - references: + - gene_reaction_rule: "(ENSG00000121879 and ENSG00000145675) or ENSG00000051382 or ENSG00000105647 or ENSG00000105851 or ENSG00000117461 or ENSG00000126264 or ENSG00000141506 or ENSG00000171608 or ENSG00000276231" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.153" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6556 + - id: "HMR_6556" - name: "" - metabolites: !!omap - m02040c: -1 @@ -161558,15 +161558,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000132958 or ENSG00000171862 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.67 - - references: + - gene_reaction_rule: "ENSG00000132958 or ENSG00000171862" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.67" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6557 + - id: "HMR_6557" - name: "" - metabolites: !!omap - m00551c: 1 @@ -161575,15 +161575,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000003987 or ENSG00000054148 or ENSG00000063601 or ENSG00000087053 or ENSG00000102043 or ENSG00000111077 or ENSG00000111696 or ENSG00000112367 or ENSG00000117598 or ENSG00000125458 or ENSG00000126821 or ENSG00000137770 or ENSG00000139304 or ENSG00000139505 or ENSG00000144048 or ENSG00000158079 or ENSG00000160539 or ENSG00000163082 or ENSG00000163719 or ENSG00000165458 or ENSG00000165688 or ENSG00000198825 or ENSG00000198881 or ENSG00000205309 or ENSG00000205808 or ENSG00000211456 or ENSG00000213920 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.- - - references: PMID:7556092 + - gene_reaction_rule: "ENSG00000003987 or ENSG00000054148 or ENSG00000063601 or ENSG00000087053 or ENSG00000102043 or ENSG00000111077 or ENSG00000111696 or ENSG00000112367 or ENSG00000117598 or ENSG00000125458 or ENSG00000126821 or ENSG00000137770 or ENSG00000139304 or ENSG00000139505 or ENSG00000144048 or ENSG00000158079 or ENSG00000160539 or ENSG00000163082 or ENSG00000163719 or ENSG00000165458 or ENSG00000165688 or ENSG00000198825 or ENSG00000198881 or ENSG00000205309 or ENSG00000205808 or ENSG00000211456 or ENSG00000213920" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.-" + - references: "PMID:7556092" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6558 + - id: "HMR_6558" - name: "" - metabolites: !!omap - m02040c: -1 @@ -161592,15 +161592,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000132958 or ENSG00000171862 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.67 - - references: PMID:7556092 + - gene_reaction_rule: "ENSG00000132958 or ENSG00000171862" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.67" + - references: "PMID:7556092" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6559 + - id: "HMR_6559" - name: "" - metabolites: !!omap - m00237c: 1 @@ -161610,15 +161610,15 @@ - m02736c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101333 or ENSG00000114805 or ENSG00000115556 or ENSG00000115896 or ENSG00000124181 or ENSG00000137841 or ENSG00000138193 or ENSG00000139151 or ENSG00000149527 or ENSG00000149782 or ENSG00000154822 or ENSG00000161714 or ENSG00000182621 or ENSG00000187091 or ENSG00000197943 or ENSG00000240891 - - rxnFrom: HMRdatabase - - eccodes: 3.1.4.11 - - references: + - gene_reaction_rule: "ENSG00000101333 or ENSG00000114805 or ENSG00000115556 or ENSG00000115896 or ENSG00000124181 or ENSG00000137841 or ENSG00000138193 or ENSG00000139151 or ENSG00000149527 or ENSG00000149782 or ENSG00000154822 or ENSG00000161714 or ENSG00000182621 or ENSG00000187091 or ENSG00000197943 or ENSG00000240891" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.4.11" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6560 + - id: "HMR_6560" - name: "" - metabolites: !!omap - m00526c: 1 @@ -161627,15 +161627,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068383 or ENSG00000132376 or ENSG00000185133 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.56 - - references: + - gene_reaction_rule: "ENSG00000068383 or ENSG00000132376 or ENSG00000185133" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.56" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6561 + - id: "HMR_6561" - name: "" - metabolites: !!omap - m00526c: -1 @@ -161644,15 +161644,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151689 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.57 - - references: + - gene_reaction_rule: "ENSG00000151689" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.57" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6562 + - id: "HMR_6562" - name: "" - metabolites: !!omap - m00530c: -1 @@ -161661,15 +161661,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104331 or ENSG00000133731 or ENSG00000141401 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.25 - - references: + - gene_reaction_rule: "ENSG00000104331 or ENSG00000133731 or ENSG00000141401" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.25" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6563 + - id: "HMR_6563" - name: "" - metabolites: !!omap - m00522c: 1 @@ -161679,15 +161679,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000086544 or ENSG00000137825 or ENSG00000143772 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.127 - - references: + - gene_reaction_rule: "ENSG00000086544 or ENSG00000137825 or ENSG00000143772" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.127" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6564 + - id: "HMR_6564" - name: "" - metabolites: !!omap - m00522c: -1 @@ -161696,15 +161696,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107789 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.62 - - references: + - gene_reaction_rule: "ENSG00000107789" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.62" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6565 + - id: "HMR_6565" - name: "" - metabolites: !!omap - m00522c: -1 @@ -161713,15 +161713,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068383 or ENSG00000132376 or ENSG00000168918 or ENSG00000185133 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.56;3.1.3.86 - - references: + - gene_reaction_rule: "ENSG00000068383 or ENSG00000132376 or ENSG00000168918 or ENSG00000185133" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.56;3.1.3.86" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6566 + - id: "HMR_6566" - name: "" - metabolites: !!omap - m00522c: 1 @@ -161731,15 +161731,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100605 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.159 - - references: + - gene_reaction_rule: "ENSG00000100605" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.159" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6567 + - id: "HMR_6567" - name: "" - metabolites: !!omap - m00523c: 1 @@ -161749,15 +161749,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100605 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.159 - - references: + - gene_reaction_rule: "ENSG00000100605" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.159" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6568 + - id: "HMR_6568" - name: "" - metabolites: !!omap - m00521c: 1 @@ -161767,15 +161767,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151151 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.140 - - references: + - gene_reaction_rule: "ENSG00000151151" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.140" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6569 + - id: "HMR_6569" - name: "" - metabolites: !!omap - m00524c: -1 @@ -161784,15 +161784,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151689 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.57 - - references: + - gene_reaction_rule: "ENSG00000151689" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.57" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6570 + - id: "HMR_6570" - name: "" - metabolites: !!omap - m00528c: -1 @@ -161801,15 +161801,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000040933 or ENSG00000109452 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.66 - - references: + - gene_reaction_rule: "ENSG00000040933 or ENSG00000109452" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.66" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6571 + - id: "HMR_6571" - name: "" - metabolites: !!omap - m00529c: -1 @@ -161818,30 +161818,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104331 or ENSG00000133731 or ENSG00000141401 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.25 - - references: + - gene_reaction_rule: "ENSG00000104331 or ENSG00000133731 or ENSG00000141401" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.25" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6572 + - id: "HMR_6572" - name: "" - metabolites: !!omap - m00529c: 1 - m01968c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105655 - - rxnFrom: HMRdatabase - - eccodes: 5.5.1.4 - - references: + - gene_reaction_rule: "ENSG00000105655" + - rxnFrom: "HMRdatabase" + - eccodes: "5.5.1.4" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6573 + - id: "HMR_6573" - name: "" - metabolites: !!omap - m00525c: 1 @@ -161851,15 +161851,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151151 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.151 - - references: + - gene_reaction_rule: "ENSG00000151151" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.151" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6574 + - id: "HMR_6574" - name: "" - metabolites: !!omap - m00521c: 1 @@ -161869,15 +161869,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151151 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.151 - - references: + - gene_reaction_rule: "ENSG00000151151" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.151" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6575 + - id: "HMR_6575" - name: "" - metabolites: !!omap - m00521c: -1 @@ -161887,15 +161887,15 @@ - m02039c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100605 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.134 - - references: + - gene_reaction_rule: "ENSG00000100605" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.134" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6576 + - id: "HMR_6576" - name: "" - metabolites: !!omap - m00521c: -1 @@ -161905,15 +161905,15 @@ - m02492c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000127080 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.158 - - references: + - gene_reaction_rule: "ENSG00000127080" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.158" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6579 + - id: "HMR_6579" - name: "" - metabolites: !!omap - m00554c: 1 @@ -161923,15 +161923,15 @@ - m02750c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107242 or ENSG00000143398 or ENSG00000167103 or ENSG00000186111 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.68 - - references: PMID:9211928;PMID:10231032;PMID:11493657;PMID:10358929 + - gene_reaction_rule: "ENSG00000107242 or ENSG00000143398 or ENSG00000167103 or ENSG00000186111" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.68" + - references: "PMID:9211928;PMID:10231032;PMID:11493657;PMID:10358929" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6580 + - id: "HMR_6580" - name: "" - metabolites: !!omap - m00554g: 1 @@ -161941,15 +161941,15 @@ - m02750g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107242 or ENSG00000143398 or ENSG00000167103 or ENSG00000186111 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.68 - - references: PMID:9211928;PMID:10231032;PMID:11493657;PMID:10358929 + - gene_reaction_rule: "ENSG00000107242 or ENSG00000143398 or ENSG00000167103 or ENSG00000186111" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.68" + - references: "PMID:9211928;PMID:10231032;PMID:11493657;PMID:10358929" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6581 + - id: "HMR_6581" - name: "" - metabolites: !!omap - m00554r: 1 @@ -161959,15 +161959,15 @@ - m02750r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107242 or ENSG00000143398 or ENSG00000167103 or ENSG00000186111 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.68 - - references: PMID:9211928;PMID:10231032;PMID:11493657;PMID:10358929 + - gene_reaction_rule: "ENSG00000107242 or ENSG00000143398 or ENSG00000167103 or ENSG00000186111" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.68" + - references: "PMID:9211928;PMID:10231032;PMID:11493657;PMID:10358929" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6583 + - id: "HMR_6583" - name: "" - metabolites: !!omap - m00554c: -1 @@ -161976,15 +161976,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000132958 or ENSG00000171862 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.67 - - references: PMID:7556092;PMID:9367831 + - gene_reaction_rule: "ENSG00000132958 or ENSG00000171862" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.67" + - references: "PMID:7556092;PMID:9367831" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6584 + - id: "HMR_6584" - name: "" - metabolites: !!omap - m00554g: -1 @@ -161993,15 +161993,15 @@ - m02751g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000132958 or ENSG00000171862 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.67 - - references: PMID:7556092;PMID:9367831 + - gene_reaction_rule: "ENSG00000132958 or ENSG00000171862" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.67" + - references: "PMID:7556092;PMID:9367831" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6585 + - id: "HMR_6585" - name: "" - metabolites: !!omap - m00554r: -1 @@ -162010,15 +162010,15 @@ - m02751r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000132958 or ENSG00000171862 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.67 - - references: PMID:7556092;PMID:9367831 + - gene_reaction_rule: "ENSG00000132958 or ENSG00000171862" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.67" + - references: "PMID:7556092;PMID:9367831" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6587 + - id: "HMR_6587" - name: "" - metabolites: !!omap - m00554c: -1 @@ -162028,15 +162028,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000078142 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.137 - - references: PMID:9211928;PMID:9043658;PMID:11493657;PMID:10358929 + - gene_reaction_rule: "ENSG00000078142" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.137" + - references: "PMID:9211928;PMID:9043658;PMID:11493657;PMID:10358929" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6588 + - id: "HMR_6588" - name: "" - metabolites: !!omap - m00554g: -1 @@ -162046,15 +162046,15 @@ - m02039g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000078142 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.137 - - references: PMID:9211928;PMID:9043658;PMID:11493657;PMID:10358929 + - gene_reaction_rule: "ENSG00000078142" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.137" + - references: "PMID:9211928;PMID:9043658;PMID:11493657;PMID:10358929" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6589 + - id: "HMR_6589" - name: "" - metabolites: !!omap - m00554r: -1 @@ -162064,15 +162064,15 @@ - m02039r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000078142 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.137 - - references: PMID:9211928;PMID:9043658;PMID:11493657;PMID:10358929 + - gene_reaction_rule: "ENSG00000078142" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.137" + - references: "PMID:9211928;PMID:9043658;PMID:11493657;PMID:10358929" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6591 + - id: "HMR_6591" - name: "" - metabolites: !!omap - m00554c: 1 @@ -162081,15 +162081,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000003987 or ENSG00000054148 or ENSG00000063601 or ENSG00000087053 or ENSG00000102043 or ENSG00000111077 or ENSG00000111696 or ENSG00000112367 or ENSG00000117598 or ENSG00000125458 or ENSG00000126821 or ENSG00000137770 or ENSG00000139304 or ENSG00000139505 or ENSG00000144048 or ENSG00000158079 or ENSG00000160539 or ENSG00000163082 or ENSG00000163719 or ENSG00000165458 or ENSG00000165688 or ENSG00000198825 or ENSG00000205309 or ENSG00000205808 or ENSG00000211456 or ENSG00000213920 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.- - - references: PMID:7556092 + - gene_reaction_rule: "ENSG00000003987 or ENSG00000054148 or ENSG00000063601 or ENSG00000087053 or ENSG00000102043 or ENSG00000111077 or ENSG00000111696 or ENSG00000112367 or ENSG00000117598 or ENSG00000125458 or ENSG00000126821 or ENSG00000137770 or ENSG00000139304 or ENSG00000139505 or ENSG00000144048 or ENSG00000158079 or ENSG00000160539 or ENSG00000163082 or ENSG00000163719 or ENSG00000165458 or ENSG00000165688 or ENSG00000198825 or ENSG00000205309 or ENSG00000205808 or ENSG00000211456 or ENSG00000213920" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.-" + - references: "PMID:7556092" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6592 + - id: "HMR_6592" - name: "" - metabolites: !!omap - m00551c: -1 @@ -162099,15 +162099,15 @@ - m02734c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107242 or ENSG00000143398 or ENSG00000167103 or ENSG00000186111 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.68 - - references: PMID:9211928;PMID:10231032;PMID:11493657;PMID:10358929 + - gene_reaction_rule: "ENSG00000107242 or ENSG00000143398 or ENSG00000167103 or ENSG00000186111" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.68" + - references: "PMID:9211928;PMID:10231032;PMID:11493657;PMID:10358929" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6595 + - id: "HMR_6595" - name: "" - metabolites: !!omap - m01285c: 1 @@ -162117,15 +162117,15 @@ - m02735c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107242 or ENSG00000143398 or ENSG00000167103 or ENSG00000186111 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.68 - - references: PMID:9211928;PMID:10231032;PMID:11493657;PMID:10358929 + - gene_reaction_rule: "ENSG00000107242 or ENSG00000143398 or ENSG00000167103 or ENSG00000186111" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.68" + - references: "PMID:9211928;PMID:10231032;PMID:11493657;PMID:10358929" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_7652 + - id: "HMR_7652" - name: "" - metabolites: !!omap - m01133c: 1 @@ -162134,15 +162134,15 @@ - m02492c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068745 or ENSG00000145725 or ENSG00000161896 or ENSG00000168781 or ENSG00000176095 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.21 - - references: + - gene_reaction_rule: "ENSG00000068745 or ENSG00000145725 or ENSG00000161896 or ENSG00000168781 or ENSG00000176095" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.21" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_7654 + - id: "HMR_7654" - name: "" - metabolites: !!omap - m01133n: -1 @@ -162152,15 +162152,15 @@ - m02751n: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068745 or ENSG00000145725 or ENSG00000161896 or ENSG00000168781 or ENSG00000176095 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.21 - - references: + - gene_reaction_rule: "ENSG00000068745 or ENSG00000145725 or ENSG00000161896 or ENSG00000168781 or ENSG00000176095" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.21" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_7655 + - id: "HMR_7655" - name: "" - metabolites: !!omap - m01133c: -1 @@ -162170,15 +162170,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000122824 or ENSG00000173598 or ENSG00000196368 or ENSG00000272325 - - rxnFrom: HMRdatabase - - eccodes: 3.6.1.52 - - references: + - gene_reaction_rule: "ENSG00000122824 or ENSG00000173598 or ENSG00000196368 or ENSG00000272325" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.1.52" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_7656 + - id: "HMR_7656" - name: "" - metabolites: !!omap - m00531c: 1 @@ -162187,15 +162187,15 @@ - m01371c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000145725 or ENSG00000168781 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.24 - - references: + - gene_reaction_rule: "ENSG00000145725 or ENSG00000168781" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.24" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8799 + - id: "HMR_8799" - name: "" - metabolites: !!omap - m00521n: 1 @@ -162205,15 +162205,15 @@ - m02039n: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151151 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.151 - - references: + - gene_reaction_rule: "ENSG00000151151" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.151" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8800 + - id: "HMR_8800" - name: "" - metabolites: !!omap - m00521n: 1 @@ -162223,15 +162223,15 @@ - m02039n: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151151 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.151 - - references: + - gene_reaction_rule: "ENSG00000151151" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.151" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8801 + - id: "HMR_8801" - name: "" - metabolites: !!omap - m00524c: -1 @@ -162240,15 +162240,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8802 + - id: "HMR_8802" - name: "" - metabolites: !!omap - m02040c: -1 @@ -162257,15 +162257,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171100 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000171100" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8803 + - id: "HMR_8803" - name: "" - metabolites: !!omap - m00521n: 1 @@ -162275,15 +162275,15 @@ - m02039n: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151151 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.151 - - references: + - gene_reaction_rule: "ENSG00000151151" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.151" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8804 + - id: "HMR_8804" - name: "" - metabolites: !!omap - m00525n: 1 @@ -162293,15 +162293,15 @@ - m02039n: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151151 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.151 - - references: + - gene_reaction_rule: "ENSG00000151151" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.151" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8805 + - id: "HMR_8805" - name: "" - metabolites: !!omap - m00522n: 1 @@ -162311,15 +162311,15 @@ - m02039n: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151151 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.151 - - references: + - gene_reaction_rule: "ENSG00000151151" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.151" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8806 + - id: "HMR_8806" - name: "" - metabolites: !!omap - m00526c: -1 @@ -162328,15 +162328,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8807 + - id: "HMR_8807" - name: "" - metabolites: !!omap - m02040n: -1 @@ -162345,15 +162345,15 @@ - m02751n: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171862 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.67 - - references: + - gene_reaction_rule: "ENSG00000171862" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.67" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8808 + - id: "HMR_8808" - name: "" - metabolites: !!omap - m00551n: 1 @@ -162362,15 +162362,15 @@ - m02751n: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165458 or ENSG00000168918 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165458 or ENSG00000168918" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8809 + - id: "HMR_8809" - name: "" - metabolites: !!omap - m00551n: -1 @@ -162379,15 +162379,15 @@ - m02751n: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171100 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000171100" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8810 + - id: "HMR_8810" - name: "" - metabolites: !!omap - m00551n: -1 @@ -162396,15 +162396,15 @@ - m02751n: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000040933 or ENSG00000109452 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000040933 or ENSG00000109452" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8811 + - id: "HMR_8811" - name: "" - metabolites: !!omap - m00551n: -1 @@ -162414,15 +162414,15 @@ - m02734n: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107242 or ENSG00000143398 or ENSG00000167103 or ENSG00000186111 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000107242 or ENSG00000143398 or ENSG00000167103 or ENSG00000186111" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8812 + - id: "HMR_8812" - name: "" - metabolites: !!omap - m00552n: -1 @@ -162431,15 +162431,15 @@ - m02751n: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171100 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000171100" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8813 + - id: "HMR_8813" - name: "" - metabolites: !!omap - m00551c: 1 @@ -162449,15 +162449,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107242 or ENSG00000143398 or ENSG00000167103 or ENSG00000186111 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.68 - - references: + - gene_reaction_rule: "ENSG00000107242 or ENSG00000143398 or ENSG00000167103 or ENSG00000186111" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.68" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8814 + - id: "HMR_8814" - name: "" - metabolites: !!omap - m00551n: 1 @@ -162467,15 +162467,15 @@ - m02039n: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107242 or ENSG00000143398 or ENSG00000167103 or ENSG00000186111 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000107242 or ENSG00000143398 or ENSG00000167103 or ENSG00000186111" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8815 + - id: "HMR_8815" - name: "" - metabolites: !!omap - m00552c: -1 @@ -162485,15 +162485,15 @@ - m02735c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107242 or ENSG00000143398 or ENSG00000167103 or ENSG00000186111 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.68 - - references: + - gene_reaction_rule: "ENSG00000107242 or ENSG00000143398 or ENSG00000167103 or ENSG00000186111" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.68" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8816 + - id: "HMR_8816" - name: "" - metabolites: !!omap - m01285n: 1 @@ -162503,15 +162503,15 @@ - m02736n: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000051382 or ENSG00000105851 or ENSG00000121879 or ENSG00000171608 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000051382 or ENSG00000105851 or ENSG00000121879 or ENSG00000171608" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8817 + - id: "HMR_8817" - name: "" - metabolites: !!omap - m00553n: 1 @@ -162520,15 +162520,15 @@ - m02751n: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000078269 or ENSG00000122126 or ENSG00000148384 or ENSG00000159082 or ENSG00000204084 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000078269 or ENSG00000122126 or ENSG00000148384 or ENSG00000159082 or ENSG00000204084" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8818 + - id: "HMR_8818" - name: "" - metabolites: !!omap - m00237n: 1 @@ -162538,15 +162538,15 @@ - m02736n: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101333 or ENSG00000115556 or ENSG00000124181 or ENSG00000137841 or ENSG00000138193 or ENSG00000139151 or ENSG00000149782 or ENSG00000161714 or ENSG00000182621 or ENSG00000187091 or ENSG00000197943 - - rxnFrom: HMRdatabase - - eccodes: 3.1.4.11 - - references: + - gene_reaction_rule: "ENSG00000101333 or ENSG00000115556 or ENSG00000124181 or ENSG00000137841 or ENSG00000138193 or ENSG00000139151 or ENSG00000149782 or ENSG00000161714 or ENSG00000182621 or ENSG00000187091 or ENSG00000197943" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.4.11" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8819 + - id: "HMR_8819" - name: "" - metabolites: !!omap - m00551n: 1 @@ -162556,15 +162556,15 @@ - m02039n: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000011405 and ENSG00000133056) or ENSG00000139144 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "(ENSG00000011405 and ENSG00000133056) or ENSG00000139144" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8820 + - id: "HMR_8820" - name: "" - metabolites: !!omap - m00553n: -1 @@ -162573,15 +162573,15 @@ - m02751n: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8821 + - id: "HMR_8821" - name: "" - metabolites: !!omap - m00553n: -1 @@ -162591,15 +162591,15 @@ - m02736n: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107242 or ENSG00000143398 or ENSG00000167103 or ENSG00000186111 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000107242 or ENSG00000143398 or ENSG00000167103 or ENSG00000186111" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8822 + - id: "HMR_8822" - name: "" - metabolites: !!omap - m00237c: 1 @@ -162609,15 +162609,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101333 or ENSG00000114805 or ENSG00000115556 or ENSG00000115896 or ENSG00000124181 or ENSG00000137841 or ENSG00000138193 or ENSG00000139151 or ENSG00000149527 or ENSG00000149782 or ENSG00000154822 or ENSG00000161714 or ENSG00000182621 or ENSG00000187091 or ENSG00000197943 or ENSG00000240891 - - rxnFrom: HMRdatabase - - eccodes: 3.1.4.11 - - references: + - gene_reaction_rule: "ENSG00000101333 or ENSG00000114805 or ENSG00000115556 or ENSG00000115896 or ENSG00000124181 or ENSG00000137841 or ENSG00000138193 or ENSG00000139151 or ENSG00000149527 or ENSG00000149782 or ENSG00000154822 or ENSG00000161714 or ENSG00000182621 or ENSG00000187091 or ENSG00000197943 or ENSG00000240891" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.4.11" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8823 + - id: "HMR_8823" - name: "" - metabolites: !!omap - m00237n: 1 @@ -162627,15 +162627,15 @@ - m02040n: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000182621 - - rxnFrom: HMRdatabase - - eccodes: 3.1.4.11 - - references: + - gene_reaction_rule: "ENSG00000182621" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.4.11" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8824 + - id: "HMR_8824" - name: "" - metabolites: !!omap - m00554c: -1 @@ -162645,15 +162645,15 @@ - m02735c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000078142 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.137 - - references: + - gene_reaction_rule: "ENSG00000078142" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.137" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8825 + - id: "HMR_8825" - name: "" - metabolites: !!omap - m00554r: -1 @@ -162663,15 +162663,15 @@ - m02735r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000011405 and ENSG00000133056) or ENSG00000139144 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.154 - - references: + - gene_reaction_rule: "(ENSG00000011405 and ENSG00000133056) or ENSG00000139144" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.154" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8826 + - id: "HMR_8826" - name: "" - metabolites: !!omap - m00554n: -1 @@ -162681,15 +162681,15 @@ - m02736n: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000150867 or ENSG00000166908 or ENSG00000276293 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000150867 or ENSG00000166908 or ENSG00000276293" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8827 + - id: "HMR_8827" - name: "" - metabolites: !!omap - m00552r: 1 @@ -162699,15 +162699,15 @@ - m02750r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000011405 and ENSG00000133056) or ENSG00000139144 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.154 - - references: + - gene_reaction_rule: "(ENSG00000011405 and ENSG00000133056) or ENSG00000139144" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.154" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8829 + - id: "HMR_8829" - name: "" - metabolites: !!omap - m00552n: 1 @@ -162717,15 +162717,15 @@ - m02750n: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000078142 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000078142" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8830 + - id: "HMR_8830" - name: "" - metabolites: !!omap - m00553n: 1 @@ -162735,15 +162735,15 @@ - m02750n: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000038210 or ENSG00000143393 or ENSG00000155252 or ENSG00000241973 or ENSG00000281028 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000038210 or ENSG00000143393 or ENSG00000155252 or ENSG00000241973 or ENSG00000281028" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8831 + - id: "HMR_8831" - name: "" - metabolites: !!omap - m00554n: 1 @@ -162753,15 +162753,15 @@ - m02750n: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107242 or ENSG00000143398 or ENSG00000167103 or ENSG00000186111 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000107242 or ENSG00000143398 or ENSG00000167103 or ENSG00000186111" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8833 + - id: "HMR_8833" - name: "" - metabolites: !!omap - m00237n: 1 @@ -162771,15 +162771,15 @@ - m02750n: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000182621 - - rxnFrom: HMRdatabase - - eccodes: 3.1.4.11 - - references: + - gene_reaction_rule: "ENSG00000182621" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.4.11" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8835 + - id: "HMR_8835" - name: "" - metabolites: !!omap - m00521c: 1 @@ -162790,15 +162790,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068745 or ENSG00000145725 or ENSG00000161896 or ENSG00000168781 or ENSG00000176095 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.21 - - references: + - gene_reaction_rule: "ENSG00000068745 or ENSG00000145725 or ENSG00000161896 or ENSG00000168781 or ENSG00000176095" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.21" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8836 + - id: "HMR_8836" - name: "" - metabolites: !!omap - m00521n: 1 @@ -162809,15 +162809,15 @@ - m02759n: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068745 or ENSG00000145725 or ENSG00000161896 or ENSG00000168781 or ENSG00000176095 - - rxnFrom: HMRdatabase - - eccodes: 2.7.4.21 - - references: + - gene_reaction_rule: "ENSG00000068745 or ENSG00000145725 or ENSG00000161896 or ENSG00000168781 or ENSG00000176095" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.4.21" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_3923 + - id: "HMR_3923" - name: "" - metabolites: !!omap - m01045m: 1 @@ -162830,15 +162830,15 @@ - m02980m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000091140 and ENSG00000140905 and ENSG00000145020 and ENSG00000178445 - - rxnFrom: HMRdatabase - - eccodes: 1.8.1.4;2.1.2.10 - - references: PMID:7916605 + - gene_reaction_rule: "ENSG00000091140 and ENSG00000140905 and ENSG00000145020 and ENSG00000178445" + - rxnFrom: "HMRdatabase" + - eccodes: "1.8.1.4;2.1.2.10" + - references: "PMID:7916605" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_3925 + - id: "HMR_3925" - name: "" - metabolites: !!omap - m01698c: -1 @@ -162848,15 +162848,15 @@ - m02978c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151552 - - rxnFrom: HMRdatabase - - eccodes: 1.5.1.34 - - references: PMID:7317032 + - gene_reaction_rule: "ENSG00000151552" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.1.34" + - references: "PMID:7317032" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_3929 + - id: "HMR_3929" - name: "" - metabolites: !!omap - m01044c: -1 @@ -162865,15 +162865,15 @@ - m02578c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160282 - - rxnFrom: HMRdatabase - - eccodes: 4.3.1.4 - - references: PMID:10673422;PMID:10773664;PMID:14697341;PMID:15272307;PMID:7050870 + - gene_reaction_rule: "ENSG00000160282" + - rxnFrom: "HMRdatabase" + - eccodes: "4.3.1.4" + - references: "PMID:10673422;PMID:10773664;PMID:14697341;PMID:15272307;PMID:7050870" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_3972 + - id: "HMR_3972" - name: "" - metabolites: !!omap - m01045c: 1 @@ -162882,15 +162882,15 @@ - m02980c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4332 + - id: "HMR_4332" - name: "" - metabolites: !!omap - m01700c: -1 @@ -162900,15 +162900,15 @@ - m02980c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178700 or ENSG00000228716 - - rxnFrom: HMRdatabase - - eccodes: 1.5.1.3 - - references: PMID:15153070;PMID:1631094;PMID:6882460 + - gene_reaction_rule: "ENSG00000178700 or ENSG00000228716" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.1.3" + - references: "PMID:15153070;PMID:1631094;PMID:6882460" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4333 + - id: "HMR_4333" - name: "" - metabolites: !!omap - m01700c: -1 @@ -162918,15 +162918,15 @@ - m02980c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178700 or ENSG00000228716 - - rxnFrom: HMRdatabase - - eccodes: 1.5.1.3 - - references: PMID:15153070;PMID:16171773;PMID:1631094;PMID:6882460;PMID:962851 + - gene_reaction_rule: "ENSG00000178700 or ENSG00000228716" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.1.3" + - references: "PMID:15153070;PMID:16171773;PMID:1631094;PMID:6882460;PMID:962851" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4335 + - id: "HMR_4335" - name: "" - metabolites: !!omap - m01700m: -1 @@ -162936,15 +162936,15 @@ - m02980m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178700 or ENSG00000228716 - - rxnFrom: HMRdatabase - - eccodes: 1.5.1.3 - - references: PMID:15153070;PMID:16171773;PMID:1631094;PMID:6882460;PMID:962851 + - gene_reaction_rule: "ENSG00000178700 or ENSG00000228716" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.1.3" + - references: "PMID:15153070;PMID:16171773;PMID:1631094;PMID:6882460;PMID:962851" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4336 + - id: "HMR_4336" - name: "" - metabolites: !!omap - m00266c: -1 @@ -162956,15 +162956,15 @@ - m02980c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136010 or ENSG00000144908 - - rxnFrom: HMRdatabase - - eccodes: 1.5.1.6 - - references: PMID:10204077;PMID:12065246;PMID:2733692;PMID:3196754 + - gene_reaction_rule: "ENSG00000136010 or ENSG00000144908" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.1.6" + - references: "PMID:10204077;PMID:12065246;PMID:2733692;PMID:3196754" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4338 + - id: "HMR_4338" - name: "" - metabolites: !!omap - m00266c: 1 @@ -162975,15 +162975,15 @@ - m02980c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100714 - - rxnFrom: HMRdatabase - - eccodes: 3.5.4.9;6.3.4.3 - - references: PMID:12024029;PMID:16171773;PMID:3053686 + - gene_reaction_rule: "ENSG00000100714" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.4.9;6.3.4.3" + - references: "PMID:12024029;PMID:16171773;PMID:3053686" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4340 + - id: "HMR_4340" - name: "" - metabolites: !!omap - m00266m: 1 @@ -162994,15 +162994,15 @@ - m02980m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000065911 or ENSG00000120254 or ENSG00000163738 - - rxnFrom: HMRdatabase - - eccodes: 3.5.4.9;6.3.4.3 - - references: PMID:12024029;PMID:16171773;PMID:3053686 + - gene_reaction_rule: "ENSG00000065911 or ENSG00000120254 or ENSG00000163738" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.4.9;6.3.4.3" + - references: "PMID:12024029;PMID:16171773;PMID:3053686" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4440 + - id: "HMR_4440" - name: "" - metabolites: !!omap - m01044m: -1 @@ -163011,15 +163011,15 @@ - m02553m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000065911 or ENSG00000163738 - - rxnFrom: HMRdatabase - - eccodes: 1.5.1.15 - - references: PMID:12024029;PMID:1392622;PMID:16171773;PMID:3258307;PMID:8218174 + - gene_reaction_rule: "ENSG00000065911 or ENSG00000163738" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.1.15" + - references: "PMID:12024029;PMID:1392622;PMID:16171773;PMID:3258307;PMID:8218174" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 2 - !!omap - - id: HMR_4442 + - id: "HMR_4442" - name: "" - metabolites: !!omap - m01044c: -1 @@ -163028,15 +163028,15 @@ - m02555c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100714 - - rxnFrom: HMRdatabase - - eccodes: 1.5.1.5 - - references: PMID:12937168;PMID:14597174;PMID:15033905;PMID:16171773;PMID:23838;PMID:3053686;PMID:8218174 + - gene_reaction_rule: "ENSG00000100714" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.1.5" + - references: "PMID:12937168;PMID:14597174;PMID:15033905;PMID:16171773;PMID:23838;PMID:3053686;PMID:8218174" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4444 + - id: "HMR_4444" - name: "" - metabolites: !!omap - m01044m: -1 @@ -163045,15 +163045,15 @@ - m02555m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000065911 or ENSG00000100714 or ENSG00000120254 - - rxnFrom: HMRdatabase - - eccodes: 1.5.1.5 - - references: PMID:12937168;PMID:14597174;PMID:15033905;PMID:16171773;PMID:23838;PMID:3053686;PMID:8218174 + - gene_reaction_rule: "ENSG00000065911 or ENSG00000100714 or ENSG00000120254" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.1.5" + - references: "PMID:12937168;PMID:14597174;PMID:15033905;PMID:16171773;PMID:23838;PMID:3053686;PMID:8218174" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4446 + - id: "HMR_4446" - name: "" - metabolites: !!omap - m01045c: -1 @@ -163063,15 +163063,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000177000 - - rxnFrom: HMRdatabase - - eccodes: 1.5.1.20 - - references: PMID:7920641 + - gene_reaction_rule: "ENSG00000177000" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.1.20" + - references: "PMID:7920641" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4448 + - id: "HMR_4448" - name: "" - metabolites: !!omap - m01045c: -1 @@ -163081,15 +163081,15 @@ - m02553c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000177000 - - rxnFrom: HMRdatabase - - eccodes: 1.5.1.20 - - references: PMID:1119805;PMID:2383427 + - gene_reaction_rule: "ENSG00000177000" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.1.20" + - references: "PMID:1119805;PMID:2383427" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4503 + - id: "HMR_4503" - name: "" - metabolites: !!omap - m00266c: -1 @@ -163098,15 +163098,15 @@ - m02040c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100714 - - rxnFrom: HMRdatabase - - eccodes: 3.5.4.9 - - references: PMID:12937168;PMID:16171773;PMID:3053686 + - gene_reaction_rule: "ENSG00000100714" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.4.9" + - references: "PMID:12937168;PMID:16171773;PMID:3053686" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4505 + - id: "HMR_4505" - name: "" - metabolites: !!omap - m00266m: -1 @@ -163115,15 +163115,15 @@ - m02040m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000065911 or ENSG00000120254 or ENSG00000163738 - - rxnFrom: HMRdatabase - - eccodes: 3.5.4.9 - - references: PMID:12937168;PMID:16171773;PMID:3053686 + - gene_reaction_rule: "ENSG00000065911 or ENSG00000120254 or ENSG00000163738" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.4.9" + - references: "PMID:12937168;PMID:16171773;PMID:3053686" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4654 + - id: "HMR_4654" - name: "" - metabolites: !!omap - m01700c: 1 @@ -163132,15 +163132,15 @@ - m02553c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178700 or ENSG00000228716 - - rxnFrom: HMRdatabase - - eccodes: 1.5.1.3 - - references: PMID:15153070;PMID:1631094;PMID:6882460 + - gene_reaction_rule: "ENSG00000178700 or ENSG00000228716" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.1.3" + - references: "PMID:15153070;PMID:1631094;PMID:6882460" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4655 + - id: "HMR_4655" - name: "" - metabolites: !!omap - m01700c: 1 @@ -163149,15 +163149,15 @@ - m02555c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178700 or ENSG00000228716 - - rxnFrom: HMRdatabase - - eccodes: 1.5.1.3 - - references: PMID:15153070;PMID:16171773;PMID:1631094;PMID:4396284;PMID:6882460;PMID:962851 + - gene_reaction_rule: "ENSG00000178700 or ENSG00000228716" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.1.3" + - references: "PMID:15153070;PMID:16171773;PMID:1631094;PMID:4396284;PMID:6882460;PMID:962851" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4656 + - id: "HMR_4656" - name: "" - metabolites: !!omap - m01700m: 1 @@ -163166,15 +163166,15 @@ - m02555m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178700 or ENSG00000228716 - - rxnFrom: HMRdatabase - - eccodes: 1.5.1.3 - - references: PMID:15153070;PMID:16171773;PMID:1631094;PMID:4396284;PMID:6882460;PMID:962851 + - gene_reaction_rule: "ENSG00000178700 or ENSG00000228716" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.1.3" + - references: "PMID:15153070;PMID:16171773;PMID:1631094;PMID:4396284;PMID:6882460;PMID:962851" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4665 + - id: "HMR_4665" - name: "" - metabolites: !!omap - m01044m: -1 @@ -163183,15 +163183,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000091140 and ENSG00000140905 and ENSG00000145020 and ENSG00000178445 - - rxnFrom: HMRdatabase - - eccodes: 2.1.2.10 - - references: PMID:7916605 + - gene_reaction_rule: "ENSG00000091140 and ENSG00000140905 and ENSG00000145020 and ENSG00000178445" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.2.10" + - references: "PMID:7916605" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_9726 + - id: "HMR_9726" - name: "" - metabolites: !!omap - m01100c: -1 @@ -163201,15 +163201,15 @@ - m10011c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160282 - - rxnFrom: HMRdatabase - - eccodes: 2.1.2.5 - - references: + - gene_reaction_rule: "ENSG00000160282" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.2.5" + - references: "" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_4666 + - id: "HMR_4666" - name: "" - metabolites: !!omap - m01044m: 1 @@ -163219,15 +163219,15 @@ - m02751m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136371 - - rxnFrom: HMRdatabase - - eccodes: 6.3.3.2 - - references: PMID:12207015;PMID:12764149;PMID:8522195 + - gene_reaction_rule: "ENSG00000136371" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.3.2" + - references: "PMID:12207015;PMID:12764149;PMID:8522195" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_7145 + - id: "HMR_7145" - name: "" - metabolites: !!omap - m01618c: 1 @@ -163236,15 +163236,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000124615 - - rxnFrom: HMRdatabase - - eccodes: 4.1.99.18 - - references: + - gene_reaction_rule: "ENSG00000124615" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.99.18" + - references: "" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_7146 + - id: "HMR_7146" - name: "" - metabolites: !!omap - m01618c: -1 @@ -163257,15 +163257,15 @@ - m02682c: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000164172 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000164172" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_7147 + - id: "HMR_7147" - name: "" - metabolites: !!omap - m01281c: 1 @@ -163275,15 +163275,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171723 - - rxnFrom: HMRdatabase - - eccodes: 2.7.7.75 - - references: + - gene_reaction_rule: "ENSG00000171723" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.7.75" + - references: "" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_7908 + - id: "HMR_7908" - name: "" - metabolites: !!omap - m00266c: -1 @@ -163295,15 +163295,15 @@ - m02751c: 4 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136877 - - rxnFrom: HMRdatabase - - eccodes: 6.3.2.17 - - references: + - gene_reaction_rule: "ENSG00000136877" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.2.17" + - references: "" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_7909 + - id: "HMR_7909" - name: "" - metabolites: !!omap - m00266m: -1 @@ -163315,15 +163315,15 @@ - m02751m: 4 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136877 - - rxnFrom: HMRdatabase - - eccodes: 6.3.2.17 - - references: + - gene_reaction_rule: "ENSG00000136877" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.2.17" + - references: "" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_7910 + - id: "HMR_7910" - name: "" - metabolites: !!omap - m00267c: -1 @@ -163335,15 +163335,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136877 - - rxnFrom: HMRdatabase - - eccodes: 6.3.2.17 - - references: + - gene_reaction_rule: "ENSG00000136877" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.2.17" + - references: "" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_7911 + - id: "HMR_7911" - name: "" - metabolites: !!omap - m00267m: -1 @@ -163355,15 +163355,15 @@ - m02751m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136877 - - rxnFrom: HMRdatabase - - eccodes: 6.3.2.17 - - references: + - gene_reaction_rule: "ENSG00000136877" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.2.17" + - references: "" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_7912 + - id: "HMR_7912" - name: "" - metabolites: !!omap - m00268c: -1 @@ -163375,15 +163375,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136877 - - rxnFrom: HMRdatabase - - eccodes: 6.3.2.17 - - references: + - gene_reaction_rule: "ENSG00000136877" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.2.17" + - references: "" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_7913 + - id: "HMR_7913" - name: "" - metabolites: !!omap - m00268m: -1 @@ -163395,15 +163395,15 @@ - m02751m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136877 - - rxnFrom: HMRdatabase - - eccodes: 6.3.2.17 - - references: + - gene_reaction_rule: "ENSG00000136877" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.2.17" + - references: "" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_7916 + - id: "HMR_7916" - name: "" - metabolites: !!omap - m00266l: 1 @@ -163412,15 +163412,15 @@ - m02040l: -4 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137563 - - rxnFrom: HMRdatabase - - eccodes: 3.4.19.9 - - references: + - gene_reaction_rule: "ENSG00000137563" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.19.9" + - references: "" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_7919 + - id: "HMR_7919" - name: "" - metabolites: !!omap - m00267l: 1 @@ -163429,15 +163429,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137563 - - rxnFrom: HMRdatabase - - eccodes: 3.4.19.9 - - references: + - gene_reaction_rule: "ENSG00000137563" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.19.9" + - references: "" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_7920 + - id: "HMR_7920" - name: "" - metabolites: !!omap - m00266s: 1 @@ -163446,15 +163446,15 @@ - m02040s: -4 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137563 - - rxnFrom: HMRdatabase - - eccodes: 3.4.19.9 - - references: + - gene_reaction_rule: "ENSG00000137563" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.19.9" + - references: "" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_7921 + - id: "HMR_7921" - name: "" - metabolites: !!omap - m00267s: 1 @@ -163463,15 +163463,15 @@ - m02040s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137563 - - rxnFrom: HMRdatabase - - eccodes: 3.4.19.9 - - references: + - gene_reaction_rule: "ENSG00000137563" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.19.9" + - references: "" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_7922 + - id: "HMR_7922" - name: "" - metabolites: !!omap - m00268s: 1 @@ -163480,15 +163480,15 @@ - m02040s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137563 - - rxnFrom: HMRdatabase - - eccodes: 3.4.19.9 - - references: + - gene_reaction_rule: "ENSG00000137563" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.19.9" + - references: "" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_7925 + - id: "HMR_7925" - name: "" - metabolites: !!omap - m00268l: 1 @@ -163497,15 +163497,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137563 - - rxnFrom: HMRdatabase - - eccodes: 3.4.19.9 - - references: + - gene_reaction_rule: "ENSG00000137563" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.19.9" + - references: "" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8105 + - id: "HMR_8105" - name: "" - metabolites: !!omap - m01285c: 4 @@ -163517,15 +163517,15 @@ - m02751c: 4 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136877 - - rxnFrom: HMRdatabase - - eccodes: 6.3.2.17 - - references: + - gene_reaction_rule: "ENSG00000136877" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.2.17" + - references: "" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8106 + - id: "HMR_8106" - name: "" - metabolites: !!omap - m01285c: 1 @@ -163537,15 +163537,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136877 - - rxnFrom: HMRdatabase - - eccodes: 6.3.2.17 - - references: + - gene_reaction_rule: "ENSG00000136877" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.2.17" + - references: "" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8107 + - id: "HMR_8107" - name: "" - metabolites: !!omap - m01285c: 1 @@ -163557,15 +163557,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136877 - - rxnFrom: HMRdatabase - - eccodes: 6.3.2.17 - - references: + - gene_reaction_rule: "ENSG00000136877" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.2.17" + - references: "" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8108 + - id: "HMR_8108" - name: "" - metabolites: !!omap - m01285c: 4 @@ -163577,15 +163577,15 @@ - m02980c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136877 - - rxnFrom: HMRdatabase - - eccodes: 6.3.2.17 - - references: + - gene_reaction_rule: "ENSG00000136877" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.2.17" + - references: "" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8109 + - id: "HMR_8109" - name: "" - metabolites: !!omap - m01285c: 1 @@ -163597,15 +163597,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136877 - - rxnFrom: HMRdatabase - - eccodes: 6.3.2.17 - - references: + - gene_reaction_rule: "ENSG00000136877" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.2.17" + - references: "" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8110 + - id: "HMR_8110" - name: "" - metabolites: !!omap - m01285c: 1 @@ -163617,15 +163617,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136877 - - rxnFrom: HMRdatabase - - eccodes: 6.3.2.17 - - references: + - gene_reaction_rule: "ENSG00000136877" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.2.17" + - references: "" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8112 + - id: "HMR_8112" - name: "" - metabolites: !!omap - m01285m: 4 @@ -163637,15 +163637,15 @@ - m02751m: 4 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136877 - - rxnFrom: HMRdatabase - - eccodes: 6.3.2.17 - - references: + - gene_reaction_rule: "ENSG00000136877" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.2.17" + - references: "" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8113 + - id: "HMR_8113" - name: "" - metabolites: !!omap - m01285m: 1 @@ -163657,15 +163657,15 @@ - m02751m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136877 - - rxnFrom: HMRdatabase - - eccodes: 6.3.2.17 - - references: + - gene_reaction_rule: "ENSG00000136877" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.2.17" + - references: "" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8114 + - id: "HMR_8114" - name: "" - metabolites: !!omap - m01285m: 1 @@ -163677,15 +163677,15 @@ - m02751m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136877 - - rxnFrom: HMRdatabase - - eccodes: 6.3.2.17 - - references: + - gene_reaction_rule: "ENSG00000136877" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.2.17" + - references: "" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8115 + - id: "HMR_8115" - name: "" - metabolites: !!omap - m01285m: 4 @@ -163697,15 +163697,15 @@ - m02980m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136877 - - rxnFrom: HMRdatabase - - eccodes: 6.3.2.17 - - references: + - gene_reaction_rule: "ENSG00000136877" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.2.17" + - references: "" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8116 + - id: "HMR_8116" - name: "" - metabolites: !!omap - m01285m: 1 @@ -163717,15 +163717,15 @@ - m02751m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136877 - - rxnFrom: HMRdatabase - - eccodes: 6.3.2.17 - - references: + - gene_reaction_rule: "ENSG00000136877" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.2.17" + - references: "" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8117 + - id: "HMR_8117" - name: "" - metabolites: !!omap - m01285m: 1 @@ -163737,15 +163737,15 @@ - m02751m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136877 - - rxnFrom: HMRdatabase - - eccodes: 6.3.2.17 - - references: + - gene_reaction_rule: "ENSG00000136877" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.2.17" + - references: "" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8129 + - id: "HMR_8129" - name: "" - metabolites: !!omap - m01700s: 1 @@ -163754,15 +163754,15 @@ - m02691s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137563 - - rxnFrom: HMRdatabase - - eccodes: 3.4.19.9 - - references: + - gene_reaction_rule: "ENSG00000137563" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.19.9" + - references: "" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8130 + - id: "HMR_8130" - name: "" - metabolites: !!omap - m01700l: 1 @@ -163771,15 +163771,15 @@ - m02691l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137563 - - rxnFrom: HMRdatabase - - eccodes: 3.4.19.9 - - references: + - gene_reaction_rule: "ENSG00000137563" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.19.9" + - references: "" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8132 + - id: "HMR_8132" - name: "" - metabolites: !!omap - m01974s: 4 @@ -163788,15 +163788,15 @@ - m02980s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137563 - - rxnFrom: HMRdatabase - - eccodes: 3.4.19.9 - - references: + - gene_reaction_rule: "ENSG00000137563" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.19.9" + - references: "" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8133 + - id: "HMR_8133" - name: "" - metabolites: !!omap - m01974l: 4 @@ -163805,15 +163805,15 @@ - m02980l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137563 - - rxnFrom: HMRdatabase - - eccodes: 3.4.19.9 - - references: + - gene_reaction_rule: "ENSG00000137563" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.19.9" + - references: "" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8135 + - id: "HMR_8135" - name: "" - metabolites: !!omap - m01974s: 1 @@ -163822,15 +163822,15 @@ - m02691s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137563 - - rxnFrom: HMRdatabase - - eccodes: 3.4.19.9 - - references: + - gene_reaction_rule: "ENSG00000137563" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.19.9" + - references: "" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8136 + - id: "HMR_8136" - name: "" - metabolites: !!omap - m01974l: 1 @@ -163839,15 +163839,15 @@ - m02691l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137563 - - rxnFrom: HMRdatabase - - eccodes: 3.4.19.9 - - references: + - gene_reaction_rule: "ENSG00000137563" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.19.9" + - references: "" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8137 + - id: "HMR_8137" - name: "" - metabolites: !!omap - m01974s: 1 @@ -163856,15 +163856,15 @@ - m02692s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137563 - - rxnFrom: HMRdatabase - - eccodes: 3.4.19.9 - - references: + - gene_reaction_rule: "ENSG00000137563" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.19.9" + - references: "" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8138 + - id: "HMR_8138" - name: "" - metabolites: !!omap - m01974l: 1 @@ -163873,15 +163873,15 @@ - m02692l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137563 - - rxnFrom: HMRdatabase - - eccodes: 3.4.19.9 - - references: + - gene_reaction_rule: "ENSG00000137563" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.19.9" + - references: "" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8139 + - id: "HMR_8139" - name: "" - metabolites: !!omap - m01974s: 1 @@ -163890,15 +163890,15 @@ - m02118s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137563 - - rxnFrom: HMRdatabase - - eccodes: 3.4.19.9 - - references: + - gene_reaction_rule: "ENSG00000137563" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.19.9" + - references: "" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8140 + - id: "HMR_8140" - name: "" - metabolites: !!omap - m01974l: 1 @@ -163907,15 +163907,15 @@ - m02118l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137563 - - rxnFrom: HMRdatabase - - eccodes: 3.4.19.9 - - references: + - gene_reaction_rule: "ENSG00000137563" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.19.9" + - references: "" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8141 + - id: "HMR_8141" - name: "" - metabolites: !!omap - m01974s: 1 @@ -163924,15 +163924,15 @@ - m02119s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137563 - - rxnFrom: HMRdatabase - - eccodes: 3.4.19.9 - - references: + - gene_reaction_rule: "ENSG00000137563" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.19.9" + - references: "" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8142 + - id: "HMR_8142" - name: "" - metabolites: !!omap - m01974l: 1 @@ -163941,15 +163941,15 @@ - m02119l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137563 - - rxnFrom: HMRdatabase - - eccodes: 3.4.19.9 - - references: + - gene_reaction_rule: "ENSG00000137563" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.19.9" + - references: "" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8143 + - id: "HMR_8143" - name: "" - metabolites: !!omap - m01044c: 1 @@ -163959,15 +163959,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136371 - - rxnFrom: HMRdatabase - - eccodes: 6.3.3.2 - - references: + - gene_reaction_rule: "ENSG00000136371" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.3.2" + - references: "" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8144 + - id: "HMR_8144" - name: "" - metabolites: !!omap - m01044c: -1 @@ -163976,15 +163976,15 @@ - m02553c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100714 - - rxnFrom: HMRdatabase - - eccodes: 1.5.1.5 - - references: + - gene_reaction_rule: "ENSG00000100714" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.1.5" + - references: "" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8758 + - id: "HMR_8758" - name: "" - metabolites: !!omap - m01596c: 1 @@ -163993,15 +163993,15 @@ - m02553c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136010 or ENSG00000144908 - - rxnFrom: HMRdatabase - - eccodes: 1.5.1.6 - - references: + - gene_reaction_rule: "ENSG00000136010 or ENSG00000144908" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.1.6" + - references: "" - subsystem: - - Folate metabolism + - "Folate metabolism" - confidence_score: 0 - !!omap - - id: HMR_7661 + - id: "HMR_7661" - name: "" - metabolites: !!omap - m01400c: -1 @@ -164010,15 +164010,15 @@ - m02426c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169814 - - rxnFrom: HMRdatabase - - eccodes: 3.5.1.12 - - references: + - gene_reaction_rule: "ENSG00000169814" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.1.12" + - references: "" - subsystem: - - Biotin metabolism + - "Biotin metabolism" - confidence_score: 0 - !!omap - - id: HMR_7662 + - id: "HMR_7662" - name: "" - metabolites: !!omap - m01400n: -1 @@ -164027,15 +164027,15 @@ - m02426n: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169814 - - rxnFrom: HMRdatabase - - eccodes: 3.5.1.12 - - references: + - gene_reaction_rule: "ENSG00000169814" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.1.12" + - references: "" - subsystem: - - Biotin metabolism + - "Biotin metabolism" - confidence_score: 0 - !!omap - - id: HMR_7663 + - id: "HMR_7663" - name: "" - metabolites: !!omap - m01400s: -1 @@ -164044,15 +164044,15 @@ - m02426s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169814 - - rxnFrom: HMRdatabase - - eccodes: 3.5.1.12 - - references: + - gene_reaction_rule: "ENSG00000169814" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.1.12" + - references: "" - subsystem: - - Biotin metabolism + - "Biotin metabolism" - confidence_score: 0 - !!omap - - id: HMR_7668 + - id: "HMR_7668" - name: "" - metabolites: !!omap - m01371c: -1 @@ -164062,15 +164062,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000159267 - - rxnFrom: HMRdatabase - - eccodes: 6.3.4.9;6.3.4.10;6.3.4.11;6.3.4.15 - - references: + - gene_reaction_rule: "ENSG00000159267" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.4.9;6.3.4.10;6.3.4.11;6.3.4.15" + - references: "" - subsystem: - - Biotin metabolism + - "Biotin metabolism" - confidence_score: 0 - !!omap - - id: HMR_7669 + - id: "HMR_7669" - name: "" - metabolites: !!omap - m00185c: -1 @@ -164080,15 +164080,15 @@ - m02426c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Biotin metabolism + - "Biotin metabolism" - confidence_score: 0 - !!omap - - id: HMR_7670 + - id: "HMR_7670" - name: "" - metabolites: !!omap - m01334c: 1 @@ -164098,15 +164098,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000159267 - - rxnFrom: HMRdatabase - - eccodes: 6.3.4.9;6.3.4.10;6.3.4.11;6.3.4.15 - - references: + - gene_reaction_rule: "ENSG00000159267" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.4.9;6.3.4.10;6.3.4.11;6.3.4.15" + - references: "" - subsystem: - - Biotin metabolism + - "Biotin metabolism" - confidence_score: 0 - !!omap - - id: HMR_7671 + - id: "HMR_7671" - name: "" - metabolites: !!omap - m00185c: 1 @@ -164115,15 +164115,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 3.4.-.- - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.-.-" + - references: "" - subsystem: - - Biotin metabolism + - "Biotin metabolism" - confidence_score: 0 - !!omap - - id: HMR_7672 + - id: "HMR_7672" - name: "" - metabolites: !!omap - m01285c: 1 @@ -164135,15 +164135,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000076555 or ENSG00000278540 - - rxnFrom: HMRdatabase - - eccodes: 6.3.4.14 - - references: + - gene_reaction_rule: "ENSG00000076555 or ENSG00000278540" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.4.14" + - references: "" - subsystem: - - Biotin metabolism + - "Biotin metabolism" - confidence_score: 0 - !!omap - - id: HMR_7673 + - id: "HMR_7673" - name: "" - metabolites: !!omap - m01261c: -1 @@ -164152,15 +164152,15 @@ - m02444c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000076555 or ENSG00000278540 - - rxnFrom: HMRdatabase - - eccodes: 6.4.1.2 - - references: + - gene_reaction_rule: "ENSG00000076555 or ENSG00000278540" + - rxnFrom: "HMRdatabase" + - eccodes: "6.4.1.2" + - references: "" - subsystem: - - Biotin metabolism + - "Biotin metabolism" - confidence_score: 0 - !!omap - - id: HMR_4160 + - id: "HMR_4160" - name: "" - metabolites: !!omap - m01155c: 1 @@ -164170,15 +164170,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000131979 - - rxnFrom: HMRdatabase - - eccodes: 3.5.4.16 - - references: PMID:10727395 + - gene_reaction_rule: "ENSG00000131979" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.4.16" + - references: "PMID:10727395" - subsystem: - - Biopterin metabolism + - "Biopterin metabolism" - confidence_score: 0 - !!omap - - id: HMR_4162 + - id: "HMR_4162" - name: "" - metabolites: !!omap - m01155n: 1 @@ -164188,15 +164188,15 @@ - m02040n: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000131979 - - rxnFrom: HMRdatabase - - eccodes: 3.5.4.16 - - references: PMID:10727395 + - gene_reaction_rule: "ENSG00000131979" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.4.16" + - references: "PMID:10727395" - subsystem: - - Biopterin metabolism + - "Biopterin metabolism" - confidence_score: 0 - !!omap - - id: HMR_4163 + - id: "HMR_4163" - name: "" - metabolites: !!omap - m01155c: -1 @@ -164204,15 +164204,15 @@ - m03057c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000150787 - - rxnFrom: HMRdatabase - - eccodes: 4.2.3.12 - - references: PMID:7493990 + - gene_reaction_rule: "ENSG00000150787" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.3.12" + - references: "PMID:7493990" - subsystem: - - Biopterin metabolism + - "Biopterin metabolism" - confidence_score: 0 - !!omap - - id: HMR_4165 + - id: "HMR_4165" - name: "" - metabolites: !!omap - m01170c: -1 @@ -164222,15 +164222,15 @@ - m02978c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116096 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.153 - - references: + - gene_reaction_rule: "ENSG00000116096" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.153" + - references: "" - subsystem: - - Biopterin metabolism + - "Biopterin metabolism" - confidence_score: 0 - !!omap - - id: HMR_4166 + - id: "HMR_4166" - name: "" - metabolites: !!omap - m01164c: 1 @@ -164240,15 +164240,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116096 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.153;1.1.1.220 - - references: PMID:1883349;PMID:2511841 + - gene_reaction_rule: "ENSG00000116096" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.153;1.1.1.220" + - references: "PMID:1883349;PMID:2511841" - subsystem: - - Biopterin metabolism + - "Biopterin metabolism" - confidence_score: 0 - !!omap - - id: HMR_4167 + - id: "HMR_4167" - name: "" - metabolites: !!omap - m01164c: -1 @@ -164258,15 +164258,15 @@ - m02978c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116096 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.153 - - references: PMID:1883349 + - gene_reaction_rule: "ENSG00000116096" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.153" + - references: "PMID:1883349" - subsystem: - - Biopterin metabolism + - "Biopterin metabolism" - confidence_score: 0 - !!omap - - id: HMR_4169 + - id: "HMR_4169" - name: "" - metabolites: !!omap - m01832c: 1 @@ -164274,15 +164274,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000131979 - - rxnFrom: HMRdatabase - - eccodes: 3.5.4.16 - - references: PMID:10727395 + - gene_reaction_rule: "ENSG00000131979" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.4.16" + - references: "PMID:10727395" - subsystem: - - Biopterin metabolism + - "Biopterin metabolism" - confidence_score: 0 - !!omap - - id: HMR_4170 + - id: "HMR_4170" - name: "" - metabolites: !!omap - m01832n: 1 @@ -164290,15 +164290,15 @@ - m02040n: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000131979 - - rxnFrom: HMRdatabase - - eccodes: 3.5.4.16 - - references: PMID:10727395 + - gene_reaction_rule: "ENSG00000131979" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.4.16" + - references: "PMID:10727395" - subsystem: - - Biopterin metabolism + - "Biopterin metabolism" - confidence_score: 0 - !!omap - - id: HMR_4523 + - id: "HMR_4523" - name: "" - metabolites: !!omap - m01698c: -1 @@ -164308,15 +164308,15 @@ - m02978c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151552 - - rxnFrom: HMRdatabase - - eccodes: 1.5.1.34 - - references: PMID:7317032 + - gene_reaction_rule: "ENSG00000151552" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.1.34" + - references: "PMID:7317032" - subsystem: - - Biopterin metabolism + - "Biopterin metabolism" - confidence_score: 0 - !!omap - - id: HMR_4539 + - id: "HMR_4539" - name: "" - metabolites: !!omap - m00965c: -1 @@ -164324,15 +164324,15 @@ - m02632c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000132570 or ENSG00000166228 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.96 - - references: PMID:10727395;PMID:8921004;PMID:10727395;PMID:10727395;PMID:10727395 + - gene_reaction_rule: "ENSG00000132570 or ENSG00000166228" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.96" + - references: "PMID:10727395;PMID:8921004;PMID:10727395;PMID:10727395;PMID:10727395" - subsystem: - - Biopterin metabolism + - "Biopterin metabolism" - confidence_score: 0 - !!omap - - id: HMR_4540 + - id: "HMR_4540" - name: "" - metabolites: !!omap - m00965n: -1 @@ -164340,45 +164340,45 @@ - m02632n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000132570 or ENSG00000166228 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.96 - - references: PMID:10727395;PMID:8921004;PMID:10727395;PMID:10727395;PMID:10727395 + - gene_reaction_rule: "ENSG00000132570 or ENSG00000166228" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.96" + - references: "PMID:10727395;PMID:8921004;PMID:10727395;PMID:10727395;PMID:10727395" - subsystem: - - Biopterin metabolism + - "Biopterin metabolism" - confidence_score: 0 - !!omap - - id: HMR_4541 + - id: "HMR_4541" - name: "" - metabolites: !!omap - m02632c: -1 - m02823c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000132570 or ENSG00000166228 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.96 - - references: + - gene_reaction_rule: "ENSG00000132570 or ENSG00000166228" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.96" + - references: "" - subsystem: - - Biopterin metabolism + - "Biopterin metabolism" - confidence_score: 0 - !!omap - - id: HMR_4542 + - id: "HMR_4542" - name: "" - metabolites: !!omap - m02632n: -1 - m02823n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000132570 or ENSG00000166228 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.96 - - references: PMID:8921004 + - gene_reaction_rule: "ENSG00000132570 or ENSG00000166228" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.96" + - references: "PMID:8921004" - subsystem: - - Biopterin metabolism + - "Biopterin metabolism" - confidence_score: 0 - !!omap - - id: HMR_4543 + - id: "HMR_4543" - name: "" - metabolites: !!omap - m00965c: -1 @@ -164386,15 +164386,15 @@ - m02823c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000132570 or ENSG00000166228 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.96 - - references: PMID:1988938;PMID:1355046;PMID:10727395 + - gene_reaction_rule: "ENSG00000132570 or ENSG00000166228" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.96" + - references: "PMID:1988938;PMID:1355046;PMID:10727395" - subsystem: - - Biopterin metabolism + - "Biopterin metabolism" - confidence_score: 0 - !!omap - - id: HMR_4544 + - id: "HMR_4544" - name: "" - metabolites: !!omap - m00965n: -1 @@ -164402,15 +164402,15 @@ - m02823n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000132570 or ENSG00000166228 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.96 - - references: PMID:1988938;PMID:1355046;PMID:10727395 + - gene_reaction_rule: "ENSG00000132570 or ENSG00000166228" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.96" + - references: "PMID:1988938;PMID:1355046;PMID:10727395" - subsystem: - - Biopterin metabolism + - "Biopterin metabolism" - confidence_score: 0 - !!omap - - id: HMR_4816 + - id: "HMR_4816" - name: "" - metabolites: !!omap - m01155c: -1 @@ -164420,15 +164420,15 @@ - m02751c: 3 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162551 or ENSG00000163283 or ENSG00000163286 or ENSG00000163295 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.1 - - references: PMID:1730777 + - gene_reaction_rule: "ENSG00000162551 or ENSG00000163283 or ENSG00000163286 or ENSG00000163295" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.1" + - references: "PMID:1730777" - subsystem: - - Biopterin metabolism + - "Biopterin metabolism" - confidence_score: 0 - !!omap - - id: HMR_4817 + - id: "HMR_4817" - name: "" - metabolites: !!omap - m00574c: -1 @@ -164436,15 +164436,15 @@ - m02040c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000131979 - - rxnFrom: HMRdatabase - - eccodes: 3.5.4.16 - - references: PMID:10727395 + - gene_reaction_rule: "ENSG00000131979" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.4.16" + - references: "PMID:10727395" - subsystem: - - Biopterin metabolism + - "Biopterin metabolism" - confidence_score: 0 - !!omap - - id: HMR_4818 + - id: "HMR_4818" - name: "" - metabolites: !!omap - m00574n: -1 @@ -164452,15 +164452,15 @@ - m02040n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000131979 - - rxnFrom: HMRdatabase - - eccodes: 3.5.4.16 - - references: PMID:10727395 + - gene_reaction_rule: "ENSG00000131979" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.4.16" + - references: "PMID:10727395" - subsystem: - - Biopterin metabolism + - "Biopterin metabolism" - confidence_score: 0 - !!omap - - id: HMR_4833 + - id: "HMR_4833" - name: "" - metabolites: !!omap - m00575c: -1 @@ -164470,15 +164470,15 @@ - m02040c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000131979 - - rxnFrom: HMRdatabase - - eccodes: 3.5.4.16 - - references: PMID:10727395 + - gene_reaction_rule: "ENSG00000131979" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.4.16" + - references: "PMID:10727395" - subsystem: - - Biopterin metabolism + - "Biopterin metabolism" - confidence_score: 0 - !!omap - - id: HMR_4834 + - id: "HMR_4834" - name: "" - metabolites: !!omap - m00575n: -1 @@ -164488,45 +164488,45 @@ - m02040n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000131979 - - rxnFrom: HMRdatabase - - eccodes: 3.5.4.16 - - references: PMID:10727395 + - gene_reaction_rule: "ENSG00000131979" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.4.16" + - references: "PMID:10727395" - subsystem: - - Biopterin metabolism + - "Biopterin metabolism" - confidence_score: 0 - !!omap - - id: HMR_4835 + - id: "HMR_4835" - name: "" - metabolites: !!omap - m00574c: -1 - m00575c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000131979 - - rxnFrom: HMRdatabase - - eccodes: 3.5.4.16 - - references: PMID:10727395 + - gene_reaction_rule: "ENSG00000131979" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.4.16" + - references: "PMID:10727395" - subsystem: - - Biopterin metabolism + - "Biopterin metabolism" - confidence_score: 0 - !!omap - - id: HMR_4836 + - id: "HMR_4836" - name: "" - metabolites: !!omap - m00574n: -1 - m00575n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000131979 - - rxnFrom: HMRdatabase - - eccodes: 3.5.4.16 - - references: PMID:10727395 + - gene_reaction_rule: "ENSG00000131979" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.4.16" + - references: "PMID:10727395" - subsystem: - - Biopterin metabolism + - "Biopterin metabolism" - confidence_score: 0 - !!omap - - id: HMR_8538 + - id: "HMR_8538" - name: "" - metabolites: !!omap - m00965c: -1 @@ -164534,15 +164534,15 @@ - m02040c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000132570 or ENSG00000166228 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.96 - - references: + - gene_reaction_rule: "ENSG00000132570 or ENSG00000166228" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.96" + - references: "" - subsystem: - - Biopterin metabolism + - "Biopterin metabolism" - confidence_score: 0 - !!omap - - id: HMR_8738 + - id: "HMR_8738" - name: "" - metabolites: !!omap - m01155n: -1 @@ -164550,15 +164550,15 @@ - m03057n: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000150787 - - rxnFrom: HMRdatabase - - eccodes: 4.2.3.12 - - references: + - gene_reaction_rule: "ENSG00000150787" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.3.12" + - references: "" - subsystem: - - Biopterin metabolism + - "Biopterin metabolism" - confidence_score: 0 - !!omap - - id: HMR_8739 + - id: "HMR_8739" - name: "" - metabolites: !!omap - m01170n: -1 @@ -164568,15 +164568,15 @@ - m02978n: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116096 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.153 - - references: + - gene_reaction_rule: "ENSG00000116096" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.153" + - references: "" - subsystem: - - Biopterin metabolism + - "Biopterin metabolism" - confidence_score: 0 - !!omap - - id: HMR_8740 + - id: "HMR_8740" - name: "" - metabolites: !!omap - m01045c: 1 @@ -164586,15 +164586,15 @@ - m02978c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Biopterin metabolism + - "Biopterin metabolism" - confidence_score: 0 - !!omap - - id: HMR_6393 + - id: "HMR_6393" - name: "" - metabolites: !!omap - m01655c: 1 @@ -164603,15 +164603,15 @@ - m02489c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11160563 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11160563" - subsystem: - - Ascorbate and aldarate metabolism + - "Ascorbate and aldarate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6394 + - id: "HMR_6394" - name: "" - metabolites: !!omap - m01368c: -1 @@ -164620,15 +164620,15 @@ - m02394c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 1.8.5.- - - references: PMID:11160563 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "1.8.5.-" + - references: "PMID:11160563" - subsystem: - - Ascorbate and aldarate metabolism + - "Ascorbate and aldarate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6396 + - id: "HMR_6396" - name: "" - metabolites: !!omap - m01368c: 1 @@ -164638,15 +164638,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023572 or ENSG00000173221 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000023572 or ENSG00000173221" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Ascorbate and aldarate metabolism + - "Ascorbate and aldarate metabolism" - confidence_score: 0 - !!omap - - id: HMR_6405 + - id: "HMR_6405" - name: "" - metabolites: !!omap - m02040c: -1 @@ -164655,15 +164655,15 @@ - m02426c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.13 - - references: PMID:2502979 + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.13" + - references: "PMID:2502979" - subsystem: - - Ascorbate and aldarate metabolism + - "Ascorbate and aldarate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8345 + - id: "HMR_8345" - name: "" - metabolites: !!omap - m01685r: -1 @@ -164672,15 +164672,15 @@ - m02040r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Ascorbate and aldarate metabolism + - "Ascorbate and aldarate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8346 + - id: "HMR_8346" - name: "" - metabolites: !!omap - m02039r: 1 @@ -164689,15 +164689,15 @@ - m02379r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130988 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000130988" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Ascorbate and aldarate metabolism + - "Ascorbate and aldarate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8348 + - id: "HMR_8348" - name: "" - metabolites: !!omap - m01685c: -1 @@ -164707,15 +164707,15 @@ - m02555c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Ascorbate and aldarate metabolism + - "Ascorbate and aldarate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8349 + - id: "HMR_8349" - name: "" - metabolites: !!omap - m01681c: 1 @@ -164726,15 +164726,15 @@ - m02553c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000143149 or ENSG00000164904 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000143149 or ENSG00000164904" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.3" + - references: "" - subsystem: - - Ascorbate and aldarate metabolism + - "Ascorbate and aldarate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8619 + - id: "HMR_8619" - name: "" - metabolites: !!omap - m01368c: -1 @@ -164744,15 +164744,15 @@ - m02631c: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Ascorbate and aldarate metabolism + - "Ascorbate and aldarate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8620 + - id: "HMR_8620" - name: "" - metabolites: !!omap - m01368c: 1 @@ -164761,15 +164761,15 @@ - m02027c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Ascorbate and aldarate metabolism + - "Ascorbate and aldarate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8621 + - id: "HMR_8621" - name: "" - metabolites: !!omap - m00573c: 1 @@ -164777,15 +164777,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Ascorbate and aldarate metabolism + - "Ascorbate and aldarate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8622 + - id: "HMR_8622" - name: "" - metabolites: !!omap - m00573c: -1 @@ -164794,15 +164794,15 @@ - m02406c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Ascorbate and aldarate metabolism + - "Ascorbate and aldarate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8623 + - id: "HMR_8623" - name: "" - metabolites: !!omap - m00573c: -1 @@ -164811,15 +164811,15 @@ - m02424c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Ascorbate and aldarate metabolism + - "Ascorbate and aldarate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8624 + - id: "HMR_8624" - name: "" - metabolites: !!omap - m00573c: -1 @@ -164829,15 +164829,15 @@ - m02992c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Ascorbate and aldarate metabolism + - "Ascorbate and aldarate metabolism" - confidence_score: 0 - !!omap - - id: HMR_8625 + - id: "HMR_8625" - name: "" - metabolites: !!omap - m00573c: -1 @@ -164847,15 +164847,15 @@ - m02661c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Ascorbate and aldarate metabolism + - "Ascorbate and aldarate metabolism" - confidence_score: 0 - !!omap - - id: HMR_3991 + - id: "HMR_3991" - name: "" - metabolites: !!omap - m01821s: -4 @@ -164865,15 +164865,15 @@ - m02630s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000047457 or ENSG00000163755 or ENSG00000165060 or ENSG00000167996 or ENSG00000181867 - - rxnFrom: HMRdatabase - - eccodes: 1.16.3.1 - - references: PMID:16405854;PMID:2154449;PMID:9162052;PMID:9722559 + - gene_reaction_rule: "ENSG00000047457 or ENSG00000163755 or ENSG00000165060 or ENSG00000167996 or ENSG00000181867" + - rxnFrom: "HMRdatabase" + - eccodes: "1.16.3.1" + - references: "PMID:16405854;PMID:2154449;PMID:9162052;PMID:9722559" - subsystem: - - Porphyrin metabolism + - "Porphyrin metabolism" - confidence_score: 0 - !!omap - - id: HMR_4657 + - id: "HMR_4657" - name: "" - metabolites: !!omap - m00630m: -1 @@ -164882,15 +164882,15 @@ - m02039m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023330 or ENSG00000158578 or ENSG00000178773 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.37 - - references: PMID:7592562 + - gene_reaction_rule: "ENSG00000023330 or ENSG00000158578 or ENSG00000178773" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.37" + - references: "PMID:7592562" - subsystem: - - Porphyrin metabolism + - "Porphyrin metabolism" - confidence_score: 0 - !!omap - - id: HMR_4744 + - id: "HMR_4744" - name: "" - metabolites: !!omap - m01074c: -2 @@ -164899,15 +164899,15 @@ - m02756c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000148218 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.24 - - references: PMID:15144063;PMID:2394940 + - gene_reaction_rule: "ENSG00000148218" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.24" + - references: "PMID:15144063;PMID:2394940" - subsystem: - - Porphyrin metabolism + - "Porphyrin metabolism" - confidence_score: 0 - !!omap - - id: HMR_4746 + - id: "HMR_4746" - name: "" - metabolites: !!omap - m02039c: 4 @@ -164917,15 +164917,15 @@ - m02756c: -4 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000256269 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.61 - - references: PMID:1418238 + - gene_reaction_rule: "ENSG00000256269" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.61" + - references: "PMID:1418238" - subsystem: - - Porphyrin metabolism + - "Porphyrin metabolism" - confidence_score: 0 - !!omap - - id: HMR_4748 + - id: "HMR_4748" - name: "" - metabolites: !!omap - m02040c: 1 @@ -164933,15 +164933,15 @@ - m03128c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000188690 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.75 - - references: PMID:3138984;PMID:6466301;PMID:7092213 + - gene_reaction_rule: "ENSG00000188690" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.75" + - references: "PMID:3138984;PMID:6466301;PMID:7092213" - subsystem: - - Porphyrin metabolism + - "Porphyrin metabolism" - confidence_score: 0 - !!omap - - id: HMR_4750 + - id: "HMR_4750" - name: "" - metabolites: !!omap - m01596c: 4 @@ -164950,15 +164950,15 @@ - m03128c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000126088 - - rxnFrom: HMRdatabase - - eccodes: 4.1.1.37 - - references: + - gene_reaction_rule: "ENSG00000126088" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.1.37" + - references: "" - subsystem: - - Porphyrin metabolism + - "Porphyrin metabolism" - confidence_score: 0 - !!omap - - id: HMR_4752 + - id: "HMR_4752" - name: "" - metabolites: !!omap - m01596c: 2 @@ -164969,15 +164969,15 @@ - m02804c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000080819 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.3 - - references: PMID:11248690;PMID:16176984;PMID:16239244 + - gene_reaction_rule: "ENSG00000080819" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.3" + - references: "PMID:11248690;PMID:16176984;PMID:16239244" - subsystem: - - Porphyrin metabolism + - "Porphyrin metabolism" - confidence_score: 0 - !!omap - - id: HMR_4755 + - id: "HMR_4755" - name: "" - metabolites: !!omap - m02041m: 3 @@ -164986,15 +164986,15 @@ - m02804m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000143224 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.4 - - references: PMID:14535846;PMID:16621625;PMID:9578577 + - gene_reaction_rule: "ENSG00000143224" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.4" + - references: "PMID:14535846;PMID:16621625;PMID:9578577" - subsystem: - - Porphyrin metabolism + - "Porphyrin metabolism" - confidence_score: 0 - !!omap - - id: HMR_4757 + - id: "HMR_4757" - name: "" - metabolites: !!omap - m02041c: 3 @@ -165003,15 +165003,15 @@ - m02804c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000143224 - - rxnFrom: HMRdatabase - - eccodes: 1.3.3.4 - - references: + - gene_reaction_rule: "ENSG00000143224" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.3.4" + - references: "" - subsystem: - - Porphyrin metabolism + - "Porphyrin metabolism" - confidence_score: 0 - !!omap - - id: HMR_4758 + - id: "HMR_4758" - name: "" - metabolites: !!omap - m01821m: -1 @@ -165020,15 +165020,15 @@ - m02803m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066926 - - rxnFrom: HMRdatabase - - eccodes: 4.99.1.1 - - references: PMID:11175906;PMID:11215517;PMID:11853551;PMID:11947230;PMID:1624416;PMID:182145;PMID:2310748;PMID:3196293;PMID:3702737;PMID:406931;PMID:6425295;PMID:7309736;PMID:8818224;PMID:9712849;PMID:9808757 + - gene_reaction_rule: "ENSG00000066926" + - rxnFrom: "HMRdatabase" + - eccodes: "4.99.1.1" + - references: "PMID:11175906;PMID:11215517;PMID:11853551;PMID:11947230;PMID:1624416;PMID:182145;PMID:2310748;PMID:3196293;PMID:3702737;PMID:406931;PMID:6425295;PMID:7309736;PMID:8818224;PMID:9712849;PMID:9808757" - subsystem: - - Porphyrin metabolism + - "Porphyrin metabolism" - confidence_score: 0 - !!omap - - id: HMR_4762 + - id: "HMR_4762" - name: "" - metabolites: !!omap - m01358m: -1 @@ -165036,15 +165036,15 @@ - m02049m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000004961 - - rxnFrom: HMRdatabase - - eccodes: 4.4.1.17 - - references: + - gene_reaction_rule: "ENSG00000004961" + - rxnFrom: "HMRdatabase" + - eccodes: "4.4.1.17" + - references: "" - subsystem: - - Porphyrin metabolism + - "Porphyrin metabolism" - confidence_score: 0 - !!omap - - id: HMR_4763 + - id: "HMR_4763" - name: "" - metabolites: !!omap - m01399c: 1 @@ -165059,15 +165059,15 @@ - m02630c: -3 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100292 or ENSG00000103415 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.3 - - references: + - gene_reaction_rule: "ENSG00000100292 or ENSG00000103415" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.3" + - references: "" - subsystem: - - Porphyrin metabolism + - "Porphyrin metabolism" - confidence_score: 0 - !!omap - - id: HMR_4764 + - id: "HMR_4764" - name: "" - metabolites: !!omap - m01396c: 1 @@ -165077,15 +165077,15 @@ - m02553c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000090013 or ENSG00000106605 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.24 - - references: + - gene_reaction_rule: "ENSG00000090013 or ENSG00000106605" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.24" + - references: "" - subsystem: - - Porphyrin metabolism + - "Porphyrin metabolism" - confidence_score: 0 - !!omap - - id: HMR_4768 + - id: "HMR_4768" - name: "" - metabolites: !!omap - m02039c: -6 @@ -165093,15 +165093,15 @@ - m03128c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11281297 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11281297" - subsystem: - - Porphyrin metabolism + - "Porphyrin metabolism" - confidence_score: 0 - !!omap - - id: HMR_4769 + - id: "HMR_4769" - name: "" - metabolites: !!omap - m02039c: -6 @@ -165109,15 +165109,15 @@ - m03128c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11281297 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11281297" - subsystem: - - Porphyrin metabolism + - "Porphyrin metabolism" - confidence_score: 0 - !!omap - - id: HMR_4770 + - id: "HMR_4770" - name: "" - metabolites: !!omap - m01604c: -1 @@ -165125,15 +165125,15 @@ - m02039c: -6 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11281297 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11281297" - subsystem: - - Porphyrin metabolism + - "Porphyrin metabolism" - confidence_score: 0 - !!omap - - id: HMR_4771 + - id: "HMR_4771" - name: "" - metabolites: !!omap - m02040c: -1 @@ -165141,15 +165141,15 @@ - m03127c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Porphyrin metabolism + - "Porphyrin metabolism" - confidence_score: 0 - !!omap - - id: HMR_4772 + - id: "HMR_4772" - name: "" - metabolites: !!omap - m01596c: 4 @@ -165158,15 +165158,15 @@ - m03127c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000126088 - - rxnFrom: HMRdatabase - - eccodes: 4.1.1.37 - - references: PMID:17360334;UNIPROT:P06132 + - gene_reaction_rule: "ENSG00000126088" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.1.37" + - references: "PMID:17360334;UNIPROT:P06132" - subsystem: - - Porphyrin metabolism + - "Porphyrin metabolism" - confidence_score: 0 - !!omap - - id: HMR_4773 + - id: "HMR_4773" - name: "" - metabolites: !!omap - m01603c: -1 @@ -165174,15 +165174,15 @@ - m02039c: -6 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11281297 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11281297" - subsystem: - - Porphyrin metabolism + - "Porphyrin metabolism" - confidence_score: 0 - !!omap - - id: HMR_6395 + - id: "HMR_6395" - name: "" - metabolites: !!omap - m01368s: -1 @@ -165192,15 +165192,15 @@ - m02039s: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000071967 - - rxnFrom: HMRdatabase - - eccodes: 1.-.-.- - - references: + - gene_reaction_rule: "ENSG00000071967" + - rxnFrom: "HMRdatabase" + - eccodes: "1.-.-.-" + - references: "" - subsystem: - - Porphyrin metabolism + - "Porphyrin metabolism" - confidence_score: 0 - !!omap - - id: HMR_8634 + - id: "HMR_8634" - name: "" - metabolites: !!omap - m01396c: 1 @@ -165210,15 +165210,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000090013 or ENSG00000106605 - - rxnFrom: HMRdatabase - - eccodes: 1.5.1.30;1.3.1.24 - - references: + - gene_reaction_rule: "ENSG00000090013 or ENSG00000106605" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.1.30;1.3.1.24" + - references: "" - subsystem: - - Porphyrin metabolism + - "Porphyrin metabolism" - confidence_score: 0 - !!omap - - id: HMR_9717 + - id: "HMR_9717" - name: "" - metabolites: !!omap - m01957c: -1 @@ -165226,15 +165226,15 @@ - m02050c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Porphyrin metabolism + - "Porphyrin metabolism" - confidence_score: 0 - !!omap - - id: HMR_6630 + - id: "HMR_6630" - name: "" - metabolites: !!omap - m02039c: 1 @@ -165244,15 +165244,15 @@ - m02834c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072042 or ENSG00000073737 or ENSG00000080511 or ENSG00000121039 or ENSG00000139988 or ENSG00000162496 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.300 - - references: + - gene_reaction_rule: "ENSG00000072042 or ENSG00000073737 or ENSG00000080511 or ENSG00000121039 or ENSG00000139988 or ENSG00000162496" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.300" + - references: "" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6631 + - id: "HMR_6631" - name: "" - metabolites: !!omap - m02039c: 1 @@ -165262,15 +165262,15 @@ - m02834c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000025423 or ENSG00000135437 or ENSG00000147576 or ENSG00000170786 or ENSG00000172955 or ENSG00000187758 or ENSG00000196344 or ENSG00000196616 or ENSG00000197894 or ENSG00000198099 or ENSG00000248144 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.1;1.1.1.105 - - references: + - gene_reaction_rule: "ENSG00000025423 or ENSG00000135437 or ENSG00000147576 or ENSG00000170786 or ENSG00000172955 or ENSG00000187758 or ENSG00000196344 or ENSG00000196616 or ENSG00000197894 or ENSG00000198099 or ENSG00000248144" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.1;1.1.1.105" + - references: "" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6632 + - id: "HMR_6632" - name: "" - metabolites: !!omap - m02039r: 1 @@ -165280,15 +165280,15 @@ - m02834r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072042 or ENSG00000073737 or ENSG00000080511 or ENSG00000121039 or ENSG00000139988 or ENSG00000162496 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.300 - - references: + - gene_reaction_rule: "ENSG00000072042 or ENSG00000073737 or ENSG00000080511 or ENSG00000121039 or ENSG00000139988 or ENSG00000162496" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.300" + - references: "" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6633 + - id: "HMR_6633" - name: "" - metabolites: !!omap - m02039r: 1 @@ -165298,15 +165298,15 @@ - m02834r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000025423 or ENSG00000135437 or ENSG00000147576 or ENSG00000170786 or ENSG00000172955 or ENSG00000187758 or ENSG00000196344 or ENSG00000196616 or ENSG00000197894 or ENSG00000198099 or ENSG00000248144 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.1;1.1.1.105 - - references: + - gene_reaction_rule: "ENSG00000025423 or ENSG00000135437 or ENSG00000147576 or ENSG00000170786 or ENSG00000172955 or ENSG00000187758 or ENSG00000196344 or ENSG00000196616 or ENSG00000197894 or ENSG00000198099 or ENSG00000248144" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.1;1.1.1.105" + - references: "" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6634 + - id: "HMR_6634" - name: "" - metabolites: !!omap - m01032c: 1 @@ -165318,15 +165318,15 @@ - m02834c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095596 - - rxnFrom: HMRdatabase - - eccodes: 1.14.-.- - - references: + - gene_reaction_rule: "ENSG00000095596" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.-.-" + - references: "" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6635 + - id: "HMR_6635" - name: "" - metabolites: !!omap - m00535c: 1 @@ -165335,15 +165335,15 @@ - m02838c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000062282 or ENSG00000114113 or ENSG00000114115 or ENSG00000121207 or ENSG00000147160 or ENSG00000185000 or ENSG00000204195 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.135;2.3.1.75 - - references: + - gene_reaction_rule: "ENSG00000062282 or ENSG00000114113 or ENSG00000114115 or ENSG00000121207 or ENSG00000147160 or ENSG00000185000 or ENSG00000204195" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.135;2.3.1.75" + - references: "" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6636 + - id: "HMR_6636" - name: "" - metabolites: !!omap - m02039c: 1 @@ -165353,15 +165353,15 @@ - m10005c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006757 or ENSG00000079435 or ENSG00000100344 or ENSG00000101670 or ENSG00000114771 or ENSG00000134780 or ENSG00000138207 or ENSG00000159398 or ENSG00000164535 or ENSG00000166035 or ENSG00000170835 or ENSG00000172828 or ENSG00000172831 or ENSG00000175535 or ENSG00000177666 or ENSG00000182333 or ENSG00000187021 or ENSG00000198848 or ENSG00000203837 or ENSG00000266200 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.1;3.1.1.3 - - references: + - gene_reaction_rule: "ENSG00000006757 or ENSG00000079435 or ENSG00000100344 or ENSG00000101670 or ENSG00000114771 or ENSG00000134780 or ENSG00000138207 or ENSG00000159398 or ENSG00000164535 or ENSG00000166035 or ENSG00000170835 or ENSG00000172828 or ENSG00000172831 or ENSG00000175535 or ENSG00000177666 or ENSG00000182333 or ENSG00000187021 or ENSG00000198848 or ENSG00000203837 or ENSG00000266200" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.1;3.1.1.3" + - references: "" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6637 + - id: "HMR_6637" - name: "" - metabolites: !!omap - m00291c: 1 @@ -165371,15 +165371,15 @@ - m10005c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116745 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.64 - - references: + - gene_reaction_rule: "ENSG00000116745" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.64" + - references: "" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6638 + - id: "HMR_6638" - name: "" - metabolites: !!omap - m00290c: -1 @@ -165389,15 +165389,15 @@ - m02553c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000025423 or ENSG00000135437 or ENSG00000139547 or ENSG00000140522 or ENSG00000157326 or ENSG00000170786 or ENSG00000187630 or ENSG00000265203 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.105 - - references: + - gene_reaction_rule: "ENSG00000025423 or ENSG00000135437 or ENSG00000139547 or ENSG00000140522 or ENSG00000157326 or ENSG00000170786 or ENSG00000187630 or ENSG00000265203" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.105" + - references: "" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6639 + - id: "HMR_6639" - name: "" - metabolites: !!omap - m00291c: -1 @@ -165406,15 +165406,15 @@ - m02838c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000062282 or ENSG00000114113 or ENSG00000114115 or ENSG00000121207 or ENSG00000147160 or ENSG00000185000 or ENSG00000204195 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.135;2.3.1.75 - - references: + - gene_reaction_rule: "ENSG00000062282 or ENSG00000114113 or ENSG00000114115 or ENSG00000121207 or ENSG00000147160 or ENSG00000185000 or ENSG00000204195" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.135;2.3.1.75" + - references: "" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6640 + - id: "HMR_6640" - name: "" - metabolites: !!omap - m01340c: 1 @@ -165422,15 +165422,15 @@ - m02834c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000163684 or ENSG00000244486 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.- - - references: PMID:9581846 + - gene_reaction_rule: "ENSG00000163684 or ENSG00000244486" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.-" + - references: "PMID:9581846" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6641 + - id: "HMR_6641" - name: "" - metabolites: !!omap - m01008c: 1 @@ -165442,15 +165442,15 @@ - m02834c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000003137 - - rxnFrom: HMRdatabase - - eccodes: 1.14.-.- - - references: PMID:9581846 + - gene_reaction_rule: "ENSG00000003137" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.-.-" + - references: "PMID:9581846" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6642 + - id: "HMR_6642" - name: "" - metabolites: !!omap - m01008r: 1 @@ -165462,30 +165462,30 @@ - m02834r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000003137 - - rxnFrom: HMRdatabase - - eccodes: 1.14.-.- - - references: PMID:9581846 + - gene_reaction_rule: "ENSG00000003137" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.-.-" + - references: "PMID:9581846" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6643 + - id: "HMR_6643" - name: "" - metabolites: !!omap - m01232c: 1 - m02834c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000114113 or ENSG00000114115 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000114113 or ENSG00000114115" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6644 + - id: "HMR_6644" - name: "" - metabolites: !!omap - m01230c: -1 @@ -165495,30 +165495,30 @@ - m02553c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000025423 or ENSG00000135437 or ENSG00000139547 or ENSG00000140522 or ENSG00000157326 or ENSG00000170786 or ENSG00000187630 or ENSG00000265203 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.105 - - references: + - gene_reaction_rule: "ENSG00000025423 or ENSG00000135437 or ENSG00000139547 or ENSG00000140522 or ENSG00000157326 or ENSG00000170786 or ENSG00000187630 or ENSG00000265203" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.105" + - references: "" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6645 + - id: "HMR_6645" - name: "" - metabolites: !!omap - m00351c: 1 - m02834c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000114113 or ENSG00000114115 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000114113 or ENSG00000114115" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6646 + - id: "HMR_6646" - name: "" - metabolites: !!omap - m02039c: 2 @@ -165529,15 +165529,15 @@ - m02833c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000128918 or ENSG00000165092 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.36 - - references: + - gene_reaction_rule: "ENSG00000128918 or ENSG00000165092" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.36" + - references: "" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6647 + - id: "HMR_6647" - name: "" - metabolites: !!omap - m02039r: 2 @@ -165548,15 +165548,15 @@ - m02833r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000128918 or ENSG00000165092 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.36 - - references: + - gene_reaction_rule: "ENSG00000128918 or ENSG00000165092" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.36" + - references: "" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6648 + - id: "HMR_6648" - name: "" - metabolites: !!omap - m01024c: 1 @@ -165568,15 +165568,15 @@ - m02832c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000140505 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: PMID:9647871 + - gene_reaction_rule: "ENSG00000140505" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "PMID:9647871" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6649 + - id: "HMR_6649" - name: "" - metabolites: !!omap - m01024r: 1 @@ -165588,45 +165588,45 @@ - m02832r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000140505 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: PMID:9647871 + - gene_reaction_rule: "ENSG00000140505" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "PMID:9647871" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6650 + - id: "HMR_6650" - name: "" - metabolites: !!omap - m01230r: 1 - m02832r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000114113 or ENSG00000114115 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:9647871 + - gene_reaction_rule: "ENSG00000114113 or ENSG00000114115" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:9647871" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6651 + - id: "HMR_6651" - name: "" - metabolites: !!omap - m00290c: 1 - m02832c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000114113 or ENSG00000114115 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000114113 or ENSG00000114115" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6652 + - id: "HMR_6652" - name: "" - metabolites: !!omap - m01230r: -1 @@ -165637,15 +165637,15 @@ - m02553r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000128918 or ENSG00000165092 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.36 - - references: PMID:11007799;PMID:11279029;PMID:10559215 + - gene_reaction_rule: "ENSG00000128918 or ENSG00000165092" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.36" + - references: "PMID:11007799;PMID:11279029;PMID:10559215" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6653 + - id: "HMR_6653" - name: "" - metabolites: !!omap - m01023c: 1 @@ -165657,15 +165657,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000140505 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: PMID:9647871 + - gene_reaction_rule: "ENSG00000140505" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "PMID:9647871" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6654 + - id: "HMR_6654" - name: "" - metabolites: !!omap - m01023r: 1 @@ -165677,15 +165677,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000140505 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: PMID:9647871 + - gene_reaction_rule: "ENSG00000140505" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "PMID:9647871" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6655 + - id: "HMR_6655" - name: "" - metabolites: !!omap - m01023c: -1 @@ -165697,15 +165697,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000140505 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000140505" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6656 + - id: "HMR_6656" - name: "" - metabolites: !!omap - m01023r: -1 @@ -165717,15 +165717,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000140505 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000140505" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6657 + - id: "HMR_6657" - name: "" - metabolites: !!omap - m00427c: 1 @@ -165737,15 +165737,15 @@ - m02833c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: PMID:12091498;PMID:10823918 + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "PMID:12091498;PMID:10823918" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6658 + - id: "HMR_6658" - name: "" - metabolites: !!omap - m00427r: 1 @@ -165757,90 +165757,90 @@ - m02833r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: PMID:12091498;PMID:10823918 + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000155016 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "PMID:12091498;PMID:10823918" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6659 + - id: "HMR_6659" - name: "" - metabolites: !!omap - m01231c: -1 - m02833c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:9647871 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:9647871" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6660 + - id: "HMR_6660" - name: "" - metabolites: !!omap - m01231r: -1 - m02833r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:9647871 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:9647871" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6661 + - id: "HMR_6661" - name: "" - metabolites: !!omap - m00350c: -1 - m02833c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134184 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:9647871 + - gene_reaction_rule: "ENSG00000134184" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:9647871" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6662 + - id: "HMR_6662" - name: "" - metabolites: !!omap - m00350r: -1 - m02833r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:9647871 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:9647871" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6663 + - id: "HMR_6663" - name: "" - metabolites: !!omap - m01224c: -1 - m01231c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 5.-.-.- - - references: PMID:9380738 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "5.-.-.-" + - references: "PMID:9380738" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6664 + - id: "HMR_6664" - name: "" - metabolites: !!omap - m01029c: 1 @@ -165852,15 +165852,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000003137 - - rxnFrom: HMRdatabase - - eccodes: 1.14.-.- - - references: PMID:12091498;PMID:10823918 + - gene_reaction_rule: "ENSG00000003137" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.-.-" + - references: "PMID:12091498;PMID:10823918" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6665 + - id: "HMR_6665" - name: "" - metabolites: !!omap - m01029r: 1 @@ -165872,15 +165872,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000003137 - - rxnFrom: HMRdatabase - - eccodes: 1.14.-.- - - references: PMID:12091498;PMID:10823918 + - gene_reaction_rule: "ENSG00000003137" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.-.-" + - references: "PMID:12091498;PMID:10823918" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6666 + - id: "HMR_6666" - name: "" - metabolites: !!omap - m01231c: -1 @@ -165889,15 +165889,15 @@ - m03109c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.17 - - references: PMID:8295481 + - gene_reaction_rule: "ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.17" + - references: "PMID:8295481" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6667 + - id: "HMR_6667" - name: "" - metabolites: !!omap - m01231r: -1 @@ -165906,15 +165906,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.17 - - references: PMID:8295481 + - gene_reaction_rule: "ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.17" + - references: "PMID:8295481" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6668 + - id: "HMR_6668" - name: "" - metabolites: !!omap - m01029c: -1 @@ -165923,15 +165923,15 @@ - m03109c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.17 - - references: PMID:8295481 + - gene_reaction_rule: "ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.17" + - references: "PMID:8295481" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6669 + - id: "HMR_6669" - name: "" - metabolites: !!omap - m01029r: -1 @@ -165940,15 +165940,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.17 - - references: PMID:8295481 + - gene_reaction_rule: "ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.17" + - references: "PMID:8295481" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6670 + - id: "HMR_6670" - name: "" - metabolites: !!omap - m01029c: -1 @@ -165958,15 +165958,15 @@ - m02555c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087076 or ENSG00000099377 or ENSG00000100867 or ENSG00000109854 or ENSG00000121039 or ENSG00000138400 or ENSG00000139988 or ENSG00000145439 or ENSG00000159692 or ENSG00000160439 or ENSG00000164039 or ENSG00000167733 or ENSG00000170426 or ENSG00000170786 or ENSG00000176387 or ENSG00000183921 or ENSG00000184860 or ENSG00000186153 or ENSG00000187134 or ENSG00000197894 or ENSG00000198074 or ENSG00000198189 or ENSG00000198610 or ENSG00000204228 or ENSG00000227471 or ENSG00000240857 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.- - - references: PMID:12117568 + - gene_reaction_rule: "ENSG00000087076 or ENSG00000099377 or ENSG00000100867 or ENSG00000109854 or ENSG00000121039 or ENSG00000138400 or ENSG00000139988 or ENSG00000145439 or ENSG00000159692 or ENSG00000160439 or ENSG00000164039 or ENSG00000167733 or ENSG00000170426 or ENSG00000170786 or ENSG00000176387 or ENSG00000183921 or ENSG00000184860 or ENSG00000186153 or ENSG00000187134 or ENSG00000197894 or ENSG00000198074 or ENSG00000198189 or ENSG00000198610 or ENSG00000204228 or ENSG00000227471 or ENSG00000240857" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.-" + - references: "PMID:12117568" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6671 + - id: "HMR_6671" - name: "" - metabolites: !!omap - m00291c: -1 @@ -165975,45 +165975,45 @@ - m02678c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000062282 or ENSG00000121207 or ENSG00000147160 or ENSG00000185000 or ENSG00000204195 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.75;2.3.1.76;2.3.1.135 - - references: + - gene_reaction_rule: "ENSG00000062282 or ENSG00000121207 or ENSG00000147160 or ENSG00000185000 or ENSG00000204195" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.75;2.3.1.76;2.3.1.135" + - references: "" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6672 + - id: "HMR_6672" - name: "" - metabolites: !!omap - m00349c: -1 - m02832c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:9647871 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:9647871" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6673 + - id: "HMR_6673" - name: "" - metabolites: !!omap - m00349r: -1 - m02832r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:9647871 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:9647871" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6674 + - id: "HMR_6674" - name: "" - metabolites: !!omap - m00349r: -1 @@ -166024,15 +166024,15 @@ - m02833r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000128918 or ENSG00000165092 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.36 - - references: PMID:10559215 + - gene_reaction_rule: "ENSG00000128918 or ENSG00000165092" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.36" + - references: "PMID:10559215" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6675 + - id: "HMR_6675" - name: "" - metabolites: !!omap - m00349c: -1 @@ -166043,15 +166043,15 @@ - m02553c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000128918 or ENSG00000165092 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.36 - - references: PMID:10559215;PMID:11007799 + - gene_reaction_rule: "ENSG00000128918 or ENSG00000165092" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.36" + - references: "PMID:10559215;PMID:11007799" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6676 + - id: "HMR_6676" - name: "" - metabolites: !!omap - m00349r: -1 @@ -166062,15 +166062,15 @@ - m02553r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000128918 or ENSG00000165092 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.36 - - references: PMID:10559215;PMID:11007799 + - gene_reaction_rule: "ENSG00000128918 or ENSG00000165092" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.36" + - references: "PMID:10559215;PMID:11007799" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6677 + - id: "HMR_6677" - name: "" - metabolites: !!omap - m00349c: -1 @@ -166082,15 +166082,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095596 - - rxnFrom: HMRdatabase - - eccodes: 1.14.-.- - - references: PMID:9647871 + - gene_reaction_rule: "ENSG00000095596" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.-.-" + - references: "PMID:9647871" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6678 + - id: "HMR_6678" - name: "" - metabolites: !!omap - m00349r: -1 @@ -166102,15 +166102,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095596 - - rxnFrom: HMRdatabase - - eccodes: 1.14.-.- - - references: PMID:9647871 + - gene_reaction_rule: "ENSG00000095596" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.-.-" + - references: "PMID:9647871" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6679 + - id: "HMR_6679" - name: "" - metabolites: !!omap - m00350c: -1 @@ -166119,15 +166119,15 @@ - m03109c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.17 - - references: PMID:10702251 + - gene_reaction_rule: "ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.17" + - references: "PMID:10702251" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6680 + - id: "HMR_6680" - name: "" - metabolites: !!omap - m00350r: -1 @@ -166136,15 +166136,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.17 - - references: PMID:10702251 + - gene_reaction_rule: "ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.17" + - references: "PMID:10702251" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6681 + - id: "HMR_6681" - name: "" - metabolites: !!omap - m00350c: -1 @@ -166156,15 +166156,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000003137 - - rxnFrom: HMRdatabase - - eccodes: 1.14.-.- - - references: PMID:12091498;PMID:10823918 + - gene_reaction_rule: "ENSG00000003137" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.-.-" + - references: "PMID:12091498;PMID:10823918" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6682 + - id: "HMR_6682" - name: "" - metabolites: !!omap - m00350r: -1 @@ -166176,15 +166176,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000003137 - - rxnFrom: HMRdatabase - - eccodes: 1.14.-.- - - references: PMID:12091498;PMID:10823918 + - gene_reaction_rule: "ENSG00000003137" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.-.-" + - references: "PMID:12091498;PMID:10823918" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6683 + - id: "HMR_6683" - name: "" - metabolites: !!omap - m00350c: -1 @@ -166196,15 +166196,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000003137 - - rxnFrom: HMRdatabase - - eccodes: 1.14.-.- - - references: PMID:11221542 + - gene_reaction_rule: "ENSG00000003137" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.-.-" + - references: "PMID:11221542" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6684 + - id: "HMR_6684" - name: "" - metabolites: !!omap - m00350r: -1 @@ -166216,15 +166216,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000003137 - - rxnFrom: HMRdatabase - - eccodes: 1.14.-.- - - references: PMID:11221542 + - gene_reaction_rule: "ENSG00000003137" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.-.-" + - references: "PMID:11221542" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6685 + - id: "HMR_6685" - name: "" - metabolites: !!omap - m01057c: -1 @@ -166233,15 +166233,15 @@ - m03109c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.17 - - references: PMID:10702251 + - gene_reaction_rule: "ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.17" + - references: "PMID:10702251" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6686 + - id: "HMR_6686" - name: "" - metabolites: !!omap - m01057r: -1 @@ -166250,15 +166250,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.17 - - references: PMID:10702251 + - gene_reaction_rule: "ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.17" + - references: "PMID:10702251" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6687 + - id: "HMR_6687" - name: "" - metabolites: !!omap - m00350c: -1 @@ -166270,15 +166270,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000003137 - - rxnFrom: HMRdatabase - - eccodes: 1.14.-.- - - references: PMID:11221542 + - gene_reaction_rule: "ENSG00000003137" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.-.-" + - references: "PMID:11221542" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6690 + - id: "HMR_6690" - name: "" - metabolites: !!omap - m01346c: -1 @@ -166288,15 +166288,15 @@ - m02832c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6691 + - id: "HMR_6691" - name: "" - metabolites: !!omap - m01248c: -1 @@ -166306,15 +166306,15 @@ - m02832c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6692 + - id: "HMR_6692" - name: "" - metabolites: !!omap - m01247c: 1 @@ -166323,15 +166323,15 @@ - m01803c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6693 + - id: "HMR_6693" - name: "" - metabolites: !!omap - m01247c: -1 @@ -166341,75 +166341,75 @@ - m02729c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6694 + - id: "HMR_6694" - name: "" - metabolites: !!omap - m02177c: 1 - m02624c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10852960;PMID:11756445;PMID:11756445 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10852960;PMID:11756445;PMID:11756445" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6695 + - id: "HMR_6695" - name: "" - metabolites: !!omap - m02176c: 1 - m02624c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11756445;PMID:10852960;PMID:11756445 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11756445;PMID:10852960;PMID:11756445" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6697 + - id: "HMR_6697" - name: "" - metabolites: !!omap - m02179c: 1 - m02624c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10852960;PMID:11756445;PMID:11756445 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10852960;PMID:11756445;PMID:11756445" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6699 + - id: "HMR_6699" - name: "" - metabolites: !!omap - m02178c: 1 - m02624c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11756445;PMID:10852960;PMID:11756445 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11756445;PMID:10852960;PMID:11756445" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6700 + - id: "HMR_6700" - name: "" - metabolites: !!omap - m00993c: 1 @@ -166421,15 +166421,15 @@ - m02833c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095596 - - rxnFrom: HMRdatabase - - eccodes: 1.14.-.- - - references: + - gene_reaction_rule: "ENSG00000095596" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.-.-" + - references: "" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6701 + - id: "HMR_6701" - name: "" - metabolites: !!omap - m00993r: 1 @@ -166441,15 +166441,15 @@ - m02833r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095596 - - rxnFrom: HMRdatabase - - eccodes: 1.14.-.- - - references: + - gene_reaction_rule: "ENSG00000095596" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.-.-" + - references: "" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6702 + - id: "HMR_6702" - name: "" - metabolites: !!omap - m00993c: -1 @@ -166461,15 +166461,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000003137 - - rxnFrom: HMRdatabase - - eccodes: 1.14.-.- - - references: + - gene_reaction_rule: "ENSG00000003137" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.-.-" + - references: "" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6703 + - id: "HMR_6703" - name: "" - metabolites: !!omap - m00993r: -1 @@ -166481,15 +166481,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000003137 - - rxnFrom: HMRdatabase - - eccodes: 1.14.-.- - - references: + - gene_reaction_rule: "ENSG00000003137" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.-.-" + - references: "" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6704 + - id: "HMR_6704" - name: "" - metabolites: !!omap - m00993c: -1 @@ -166499,15 +166499,15 @@ - m03109c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.17 - - references: + - gene_reaction_rule: "ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.17" + - references: "" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6705 + - id: "HMR_6705" - name: "" - metabolites: !!omap - m00993r: -1 @@ -166517,15 +166517,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.17 - - references: + - gene_reaction_rule: "ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.17" + - references: "" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_8697 + - id: "HMR_8697" - name: "" - metabolites: !!omap - m01385c: -1 @@ -166533,15 +166533,15 @@ - m02832c: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135697 - - rxnFrom: HMRdatabase - - eccodes: 3.1.6.14 - - references: + - gene_reaction_rule: "ENSG00000135697" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.6.14" + - references: "" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_8698 + - id: "HMR_8698" - name: "" - metabolites: !!omap - m02039c: -2 @@ -166552,15 +166552,15 @@ - m02833c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_8699 + - id: "HMR_8699" - name: "" - metabolites: !!omap - m00349c: -1 @@ -166571,15 +166571,15 @@ - m02555c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_8700 + - id: "HMR_8700" - name: "" - metabolites: !!omap - m01006c: 1 @@ -166591,30 +166591,30 @@ - m02833c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134716 or ENSG00000138109 or ENSG00000138115 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000134716 or ENSG00000138109 or ENSG00000138115" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_8702 + - id: "HMR_8702" - name: "" - metabolites: !!omap - m01230c: -1 - m02832c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_8703 + - id: "HMR_8703" - name: "" - metabolites: !!omap - m01026c: 2 @@ -166622,30 +166622,30 @@ - m02833c: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_8704 + - id: "HMR_8704" - name: "" - metabolites: !!omap - m00348c: -1 - m01026c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_8706 + - id: "HMR_8706" - name: "" - metabolites: !!omap - m00348c: 2 @@ -166653,15 +166653,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_8709 + - id: "HMR_8709" - name: "" - metabolites: !!omap - m00290c: -1 @@ -166671,15 +166671,15 @@ - m02555c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000025423 or ENSG00000135437 or ENSG00000139547 or ENSG00000140522 or ENSG00000157326 or ENSG00000170786 or ENSG00000187630 or ENSG00000265203 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.105 - - references: + - gene_reaction_rule: "ENSG00000025423 or ENSG00000135437 or ENSG00000139547 or ENSG00000140522 or ENSG00000157326 or ENSG00000170786 or ENSG00000187630 or ENSG00000265203" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.105" + - references: "" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_8710 + - id: "HMR_8710" - name: "" - metabolites: !!omap - m00349c: -1 @@ -166689,30 +166689,30 @@ - m02553c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135437 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.315 - - references: + - gene_reaction_rule: "ENSG00000135437" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.315" + - references: "" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_8711 + - id: "HMR_8711" - name: "" - metabolites: !!omap - m00291c: -1 - m02834c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_8712 + - id: "HMR_8712" - name: "" - metabolites: !!omap - m01334c: 1 @@ -166723,15 +166723,15 @@ - m02835c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_8713 + - id: "HMR_8713" - name: "" - metabolites: !!omap - m02833r: -1 @@ -166740,15 +166740,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000241635 or ENSG00000242366 or ENSG00000242515 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.17 - - references: + - gene_reaction_rule: "ENSG00000241635 or ENSG00000242366 or ENSG00000242515" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.17" + - references: "" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_8717 + - id: "HMR_8717" - name: "" - metabolites: !!omap - m00350r: -1 @@ -166757,15 +166757,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000241635 or ENSG00000242366 or ENSG00000242515 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.17 - - references: + - gene_reaction_rule: "ENSG00000241635 or ENSG00000242366 or ENSG00000242515" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.17" + - references: "" - subsystem: - - Retinol metabolism + - "Retinol metabolism" - confidence_score: 0 - !!omap - - id: HMR_6506 + - id: "HMR_6506" - name: "" - metabolites: !!omap - m01285c: 1 @@ -166775,15 +166775,15 @@ - m02842c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135002 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.26 - - references: PMID:12623014;PMID:14630025 + - gene_reaction_rule: "ENSG00000135002" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.26" + - references: "PMID:12623014;PMID:14630025" - subsystem: - - Riboflavin metabolism + - "Riboflavin metabolism" - confidence_score: 0 - !!omap - - id: HMR_6507 + - id: "HMR_6507" - name: "" - metabolites: !!omap - m01828c: -1 @@ -166792,15 +166792,15 @@ - m02842c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000014257 or ENSG00000102575 or ENSG00000142513 or ENSG00000143727 or ENSG00000155893 or ENSG00000162836 or ENSG00000183760 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.2 - - references: PMID:12623014;PMID:14630025 + - gene_reaction_rule: "ENSG00000014257 or ENSG00000102575 or ENSG00000142513 or ENSG00000143727 or ENSG00000155893 or ENSG00000162836 or ENSG00000183760" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.2" + - references: "PMID:12623014;PMID:14630025" - subsystem: - - Riboflavin metabolism + - "Riboflavin metabolism" - confidence_score: 0 - !!omap - - id: HMR_6508 + - id: "HMR_6508" - name: "" - metabolites: !!omap - m01371c: -1 @@ -166810,15 +166810,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160688 or ENSG00000163352 - - rxnFrom: HMRdatabase - - eccodes: 2.7.7.2 - - references: PMID:16643857;PMID:2157358;PMID:6298797;UNIPROT:Q8NFF5 + - gene_reaction_rule: "ENSG00000160688 or ENSG00000163352" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.7.2" + - references: "PMID:16643857;PMID:2157358;PMID:6298797;UNIPROT:Q8NFF5" - subsystem: - - Riboflavin metabolism + - "Riboflavin metabolism" - confidence_score: 0 - !!omap - - id: HMR_6509 + - id: "HMR_6509" - name: "" - metabolites: !!omap - m01334c: 1 @@ -166828,15 +166828,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000154269 or ENSG00000197594 - - rxnFrom: HMRdatabase - - eccodes: 3.6.1.9;3.6.1.18 - - references: PMID:11579996;PMID:11946484;PMID:1315502;PMID:5636362;PMID:8881717;PMID:9211338 + - gene_reaction_rule: "ENSG00000154269 or ENSG00000197594" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.1.9;3.6.1.18" + - references: "PMID:11579996;PMID:11946484;PMID:1315502;PMID:5636362;PMID:8881717;PMID:9211338" - subsystem: - - Riboflavin metabolism + - "Riboflavin metabolism" - confidence_score: 0 - !!omap - - id: HMR_6510 + - id: "HMR_6510" - name: "" - metabolites: !!omap - m01802c: -1 @@ -166846,15 +166846,15 @@ - m02553c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 1.5.1.38 - - references: PMID:10620517 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.1.38" + - references: "PMID:10620517" - subsystem: - - Riboflavin metabolism + - "Riboflavin metabolism" - confidence_score: 0 - !!omap - - id: HMR_6511 + - id: "HMR_6511" - name: "" - metabolites: !!omap - m01802c: -1 @@ -166864,15 +166864,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000090013 - - rxnFrom: HMRdatabase - - eccodes: 1.5.1.30 - - references: PMID:10620517 + - gene_reaction_rule: "ENSG00000090013" + - rxnFrom: "HMRdatabase" + - eccodes: "1.5.1.30" + - references: "PMID:10620517" - subsystem: - - Riboflavin metabolism + - "Riboflavin metabolism" - confidence_score: 0 - !!omap - - id: HMR_4537 + - id: "HMR_4537" - name: "" - metabolites: !!omap - m00965c: 1 @@ -166882,15 +166882,15 @@ - m03089c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000129167 or ENSG00000139287 - - rxnFrom: HMRdatabase - - eccodes: 1.14.16.4 - - references: + - gene_reaction_rule: "ENSG00000129167 or ENSG00000139287" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.16.4" + - references: "" - subsystem: - - Serotonin and melatonin biosynthesis + - "Serotonin and melatonin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4545 + - id: "HMR_4545" - name: "" - metabolites: !!omap - m01107c: -1 @@ -166899,15 +166899,15 @@ - m02897c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000132437 - - rxnFrom: HMRdatabase - - eccodes: 4.1.1.28 - - references: PMID:11513473 + - gene_reaction_rule: "ENSG00000132437" + - rxnFrom: "HMRdatabase" + - eccodes: "4.1.1.28" + - references: "PMID:11513473" - subsystem: - - Serotonin and melatonin biosynthesis + - "Serotonin and melatonin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4546 + - id: "HMR_4546" - name: "" - metabolites: !!omap - m01261c: -1 @@ -166917,15 +166917,15 @@ - m02897c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000129673 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.87 - - references: + - gene_reaction_rule: "ENSG00000129673" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.87" + - references: "" - subsystem: - - Serotonin and melatonin biosynthesis + - "Serotonin and melatonin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4547 + - id: "HMR_4547" - name: "" - metabolites: !!omap - m02039c: 1 @@ -166935,15 +166935,15 @@ - m02877c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000196433 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.4 - - references: + - gene_reaction_rule: "ENSG00000196433" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.4" + - references: "" - subsystem: - - Serotonin and melatonin biosynthesis + - "Serotonin and melatonin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4548 + - id: "HMR_4548" - name: "" - metabolites: !!omap - m01161c: -1 @@ -166952,15 +166952,15 @@ - m02460c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138061 or ENSG00000140465 or ENSG00000140505 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: PMID:12044950 + - gene_reaction_rule: "ENSG00000138061 or ENSG00000140465 or ENSG00000140505" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "PMID:12044950" - subsystem: - - Serotonin and melatonin biosynthesis + - "Serotonin and melatonin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4549 + - id: "HMR_4549" - name: "" - metabolites: !!omap - m01161c: 1 @@ -166969,15 +166969,15 @@ - m02949c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000070614 or ENSG00000111962 or ENSG00000115526 or ENSG00000124302 or ENSG00000130540 or ENSG00000135702 or ENSG00000136720 or ENSG00000138653 or ENSG00000140835 or ENSG00000147119 or ENSG00000153936 or ENSG00000154080 or ENSG00000154252 or ENSG00000164100 or ENSG00000166507 or ENSG00000171004 or ENSG00000173597 or ENSG00000175040 or ENSG00000175229 or ENSG00000183196 or ENSG00000185352 or ENSG00000197093 or ENSG00000198075 or ENSG00000198203 or ENSG00000261052 or ENSG00000272916 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.- - - references: + - gene_reaction_rule: "ENSG00000070614 or ENSG00000111962 or ENSG00000115526 or ENSG00000124302 or ENSG00000130540 or ENSG00000135702 or ENSG00000136720 or ENSG00000138653 or ENSG00000140835 or ENSG00000147119 or ENSG00000153936 or ENSG00000154080 or ENSG00000154252 or ENSG00000164100 or ENSG00000166507 or ENSG00000171004 or ENSG00000173597 or ENSG00000175040 or ENSG00000175229 or ENSG00000183196 or ENSG00000185352 or ENSG00000197093 or ENSG00000198075 or ENSG00000198203 or ENSG00000261052 or ENSG00000272916" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.-" + - references: "" - subsystem: - - Serotonin and melatonin biosynthesis + - "Serotonin and melatonin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4550 + - id: "HMR_4550" - name: "" - metabolites: !!omap - m01839c: 1 @@ -166985,15 +166985,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000131203 or ENSG00000188676 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.52 - - references: PMID:12044950;PMID:12044950 + - gene_reaction_rule: "ENSG00000131203 or ENSG00000188676" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.52" + - references: "PMID:12044950;PMID:12044950" - subsystem: - - Serotonin and melatonin biosynthesis + - "Serotonin and melatonin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4551 + - id: "HMR_4551" - name: "" - metabolites: !!omap - m01596c: 1 @@ -167004,15 +167004,15 @@ - m02520c: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12044950 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12044950" - subsystem: - - Serotonin and melatonin biosynthesis + - "Serotonin and melatonin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4552 + - id: "HMR_4552" - name: "" - metabolites: !!omap - m02147c: -1 @@ -167020,15 +167020,15 @@ - m02460c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12044950 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12044950" - subsystem: - - Serotonin and melatonin biosynthesis + - "Serotonin and melatonin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4553 + - id: "HMR_4553" - name: "" - metabolites: !!omap - m01625c: -1 @@ -167037,15 +167037,15 @@ - m02459c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12044950 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12044950" - subsystem: - - Serotonin and melatonin biosynthesis + - "Serotonin and melatonin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4554 + - id: "HMR_4554" - name: "" - metabolites: !!omap - m01160c: -1 @@ -167054,15 +167054,15 @@ - m02897c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:8891913 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:8891913" - subsystem: - - Serotonin and melatonin biosynthesis + - "Serotonin and melatonin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4555 + - id: "HMR_4555" - name: "" - metabolites: !!omap - m02039c: 1 @@ -167072,15 +167072,15 @@ - m02897c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000241644 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.49 - - references: + - gene_reaction_rule: "ENSG00000241644" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.49" + - references: "" - subsystem: - - Serotonin and melatonin biosynthesis + - "Serotonin and melatonin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4556 + - id: "HMR_4556" - name: "" - metabolites: !!omap - m01408c: 1 @@ -167090,15 +167090,15 @@ - m02877c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000241644 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.49 - - references: + - gene_reaction_rule: "ENSG00000241644" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.49" + - references: "" - subsystem: - - Serotonin and melatonin biosynthesis + - "Serotonin and melatonin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4557 + - id: "HMR_4557" - name: "" - metabolites: !!omap - m01834c: 1 @@ -167106,15 +167106,15 @@ - m02897c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000131203 or ENSG00000188676 - - rxnFrom: HMRdatabase - - eccodes: 1.13.11.52 - - references: + - gene_reaction_rule: "ENSG00000131203 or ENSG00000188676" + - rxnFrom: "HMRdatabase" + - eccodes: "1.13.11.52" + - references: "" - subsystem: - - Serotonin and melatonin biosynthesis + - "Serotonin and melatonin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4558 + - id: "HMR_4558" - name: "" - metabolites: !!omap - m01102c: 1 @@ -167126,15 +167126,15 @@ - m02897c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000069535 or ENSG00000189221 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.4 - - references: + - gene_reaction_rule: "ENSG00000069535 or ENSG00000189221" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.4" + - references: "" - subsystem: - - Serotonin and melatonin biosynthesis + - "Serotonin and melatonin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4559 + - id: "HMR_4559" - name: "" - metabolites: !!omap - m01102c: -1 @@ -167145,15 +167145,15 @@ - m02553c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000143149 or ENSG00000164904 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.3 - - references: PMID:8155713;PMID:8605195 + - gene_reaction_rule: "ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000143149 or ENSG00000164904" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.3" + - references: "PMID:8155713;PMID:8605195" - subsystem: - - Serotonin and melatonin biosynthesis + - "Serotonin and melatonin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4560 + - id: "HMR_4560" - name: "" - metabolites: !!omap - m01102c: -1 @@ -167164,15 +167164,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138356 - - rxnFrom: HMRdatabase - - eccodes: 1.2.3.1 - - references: PMID:11569919;PMID:16143537 + - gene_reaction_rule: "ENSG00000138356" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.3.1" + - references: "PMID:11569919;PMID:16143537" - subsystem: - - Serotonin and melatonin biosynthesis + - "Serotonin and melatonin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4561 + - id: "HMR_4561" - name: "" - metabolites: !!omap - m01102c: -1 @@ -167182,15 +167182,15 @@ - m02555c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147576 or ENSG00000172955 or ENSG00000187758 or ENSG00000196344 or ENSG00000196616 or ENSG00000197894 or ENSG00000198099 or ENSG00000248144 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.1 - - references: PMID:10336614;PMID:10336614;PMID:10336614 + - gene_reaction_rule: "ENSG00000147576 or ENSG00000172955 or ENSG00000187758 or ENSG00000196344 or ENSG00000196616 or ENSG00000197894 or ENSG00000198099 or ENSG00000248144" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.1" + - references: "PMID:10336614;PMID:10336614;PMID:10336614" - subsystem: - - Serotonin and melatonin biosynthesis + - "Serotonin and melatonin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4563 + - id: "HMR_4563" - name: "" - metabolites: !!omap - m01110c: -1 @@ -167200,15 +167200,15 @@ - m02877c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000093010 or ENSG00000184154 or ENSG00000284844 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.6 - - references: PMID:7743212;PMID:11821057 + - gene_reaction_rule: "ENSG00000093010 or ENSG00000184154 or ENSG00000284844" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.6" + - references: "PMID:7743212;PMID:11821057" - subsystem: - - Serotonin and melatonin biosynthesis + - "Serotonin and melatonin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4564 + - id: "HMR_4564" - name: "" - metabolites: !!omap - m01103c: -1 @@ -167218,15 +167218,15 @@ - m02877c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000196433 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.4 - - references: + - gene_reaction_rule: "ENSG00000196433" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.4" + - references: "" - subsystem: - - Serotonin and melatonin biosynthesis + - "Serotonin and melatonin biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_4204 + - id: "HMR_4204" - name: "" - metabolites: !!omap - m01334c: 1 @@ -167236,15 +167236,15 @@ - m02984c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000196511 - - rxnFrom: HMRdatabase - - eccodes: 2.7.6.2 - - references: + - gene_reaction_rule: "ENSG00000196511" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.6.2" + - references: "" - subsystem: - - Thiamine metabolism + - "Thiamine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4206 + - id: "HMR_4206" - name: "" - metabolites: !!omap - m01285c: 1 @@ -167253,15 +167253,15 @@ - m02985c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000196511 - - rxnFrom: HMRdatabase - - eccodes: 2.7.6.2 - - references: + - gene_reaction_rule: "ENSG00000196511" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.6.2" + - references: "" - subsystem: - - Thiamine metabolism + - "Thiamine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4207 + - id: "HMR_4207" - name: "" - metabolites: !!omap - m02039c: 1 @@ -167271,15 +167271,15 @@ - m02985c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000259431 - - rxnFrom: HMRdatabase - - eccodes: 3.6.1.28 - - references: + - gene_reaction_rule: "ENSG00000259431" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.1.28" + - references: "" - subsystem: - - Thiamine metabolism + - "Thiamine metabolism" - confidence_score: 0 - !!omap - - id: HMR_4208 + - id: "HMR_4208" - name: "" - metabolites: !!omap - m02039c: 1 @@ -167289,15 +167289,15 @@ - m02984c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135778 - - rxnFrom: HMRdatabase - - eccodes: 3.6.1.15 - - references: + - gene_reaction_rule: "ENSG00000135778" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.1.15" + - references: "" - subsystem: - - Thiamine metabolism + - "Thiamine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8744 + - id: "HMR_8744" - name: "" - metabolites: !!omap - m02039m: 1 @@ -167307,15 +167307,15 @@ - m02984m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135778 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000135778" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Thiamine metabolism + - "Thiamine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8746 + - id: "HMR_8746" - name: "" - metabolites: !!omap - m00561c: 1 @@ -167325,15 +167325,15 @@ - m02984c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000131828 and ENSG00000168291) or (ENSG00000163114 and ENSG00000168291) - - rxnFrom: HMRdatabase - - eccodes: 1.2.4.1 - - references: + - gene_reaction_rule: "(ENSG00000131828 and ENSG00000168291) or (ENSG00000163114 and ENSG00000168291)" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.4.1" + - references: "" - subsystem: - - Thiamine metabolism + - "Thiamine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8748 + - id: "HMR_8748" - name: "" - metabolites: !!omap - m02040c: -1 @@ -167342,15 +167342,15 @@ - m02983c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Thiamine metabolism + - "Thiamine metabolism" - confidence_score: 0 - !!omap - - id: HMR_8613 + - id: "HMR_8613" - name: "" - metabolites: !!omap - m01361c: -2 @@ -167361,15 +167361,15 @@ - m02553c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Vitamin B12 metabolism + - "Vitamin B12 metabolism" - confidence_score: 0 - !!omap - - id: HMR_8615 + - id: "HMR_8615" - name: "" - metabolites: !!omap - m01598m: 1 @@ -167379,15 +167379,15 @@ - m02553m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000139428 or ENSG00000151611 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.17 - - references: + - gene_reaction_rule: "ENSG00000139428 or ENSG00000151611" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.17" + - references: "" - subsystem: - - Vitamin B12 metabolism + - "Vitamin B12 metabolism" - confidence_score: 0 - !!omap - - id: HMR_8616 + - id: "HMR_8616" - name: "" - metabolites: !!omap - m01371m: -1 @@ -167397,15 +167397,15 @@ - m03057m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000139428 or ENSG00000151611 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.17 - - references: + - gene_reaction_rule: "ENSG00000139428 or ENSG00000151611" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.17" + - references: "" - subsystem: - - Vitamin B12 metabolism + - "Vitamin B12 metabolism" - confidence_score: 0 - !!omap - - id: HMR_4064 + - id: "HMR_4064" - name: "" - metabolites: !!omap - m02040c: -1 @@ -167414,15 +167414,15 @@ - m02814c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100092 or ENSG00000100101 or ENSG00000144362 or ENSG00000213160 or ENSG00000241360 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.74 - - references: PMID:1322411;PMID:14522954 + - gene_reaction_rule: "ENSG00000100092 or ENSG00000100101 or ENSG00000144362 or ENSG00000213160 or ENSG00000241360" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.74" + - references: "PMID:1322411;PMID:14522954" - subsystem: - - Vitamin B6 metabolism + - "Vitamin B6 metabolism" - confidence_score: 0 - !!omap - - id: HMR_4065 + - id: "HMR_4065" - name: "" - metabolites: !!omap - m01285c: 1 @@ -167432,15 +167432,15 @@ - m02814c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160209 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.35 - - references: PMID:6088736 + - gene_reaction_rule: "ENSG00000160209" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.35" + - references: "PMID:6088736" - subsystem: - - Vitamin B6 metabolism + - "Vitamin B6 metabolism" - confidence_score: 0 - !!omap - - id: HMR_4066 + - id: "HMR_4066" - name: "" - metabolites: !!omap - m01285c: 1 @@ -167450,15 +167450,15 @@ - m02818c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160209 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.35 - - references: PMID:6088736 + - gene_reaction_rule: "ENSG00000160209" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.35" + - references: "PMID:6088736" - subsystem: - - Vitamin B6 metabolism + - "Vitamin B6 metabolism" - confidence_score: 0 - !!omap - - id: HMR_4067 + - id: "HMR_4067" - name: "" - metabolites: !!omap - m02041c: 1 @@ -167467,15 +167467,15 @@ - m02818c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108439 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.5 - - references: PMID:6088736;PMID:9601034 + - gene_reaction_rule: "ENSG00000108439" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.5" + - references: "PMID:6088736;PMID:9601034" - subsystem: - - Vitamin B6 metabolism + - "Vitamin B6 metabolism" - confidence_score: 0 - !!omap - - id: HMR_4068 + - id: "HMR_4068" - name: "" - metabolites: !!omap - m01285c: 1 @@ -167485,15 +167485,15 @@ - m02816c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160209 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.35 - - references: PMID:6088736 + - gene_reaction_rule: "ENSG00000160209" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.35" + - references: "PMID:6088736" - subsystem: - - Vitamin B6 metabolism + - "Vitamin B6 metabolism" - confidence_score: 0 - !!omap - - id: HMR_4069 + - id: "HMR_4069" - name: "" - metabolites: !!omap - m02039c: 1 @@ -167505,15 +167505,15 @@ - m02816c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108439 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.5 - - references: PMID:6088736;PMID:9601034 + - gene_reaction_rule: "ENSG00000108439" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.5" + - references: "PMID:6088736;PMID:9601034" - subsystem: - - Vitamin B6 metabolism + - "Vitamin B6 metabolism" - confidence_score: 0 - !!omap - - id: HMR_4070 + - id: "HMR_4070" - name: "" - metabolites: !!omap - m02039c: 1 @@ -167525,15 +167525,15 @@ - m02815c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108439 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.5 - - references: PMID:6088736;PMID:9601034 + - gene_reaction_rule: "ENSG00000108439" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.5" + - references: "PMID:6088736;PMID:9601034" - subsystem: - - Vitamin B6 metabolism + - "Vitamin B6 metabolism" - confidence_score: 0 - !!omap - - id: HMR_4071 + - id: "HMR_4071" - name: "" - metabolites: !!omap - m02041c: -1 @@ -167542,15 +167542,15 @@ - m02817c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108439 - - rxnFrom: HMRdatabase - - eccodes: 1.1.3.12;1.4.3.5 - - references: PMID:6088736;PMID:9601034 + - gene_reaction_rule: "ENSG00000108439" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.3.12;1.4.3.5" + - references: "PMID:6088736;PMID:9601034" - subsystem: - - Vitamin B6 metabolism + - "Vitamin B6 metabolism" - confidence_score: 0 - !!omap - - id: HMR_8102 + - id: "HMR_8102" - name: "" - metabolites: !!omap - m01033c: 1 @@ -167560,15 +167560,15 @@ - m02813c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138356 - - rxnFrom: HMRdatabase - - eccodes: 1.2.3.1 - - references: + - gene_reaction_rule: "ENSG00000138356" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.3.1" + - references: "" - subsystem: - - Vitamin B6 metabolism + - "Vitamin B6 metabolism" - confidence_score: 0 - !!omap - - id: HMR_8724 + - id: "HMR_8724" - name: "" - metabolites: !!omap - m02040c: -1 @@ -167577,15 +167577,15 @@ - m02816c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000144362 or ENSG00000241360 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.74 - - references: + - gene_reaction_rule: "ENSG00000144362 or ENSG00000241360" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.74" + - references: "" - subsystem: - - Vitamin B6 metabolism + - "Vitamin B6 metabolism" - confidence_score: 0 - !!omap - - id: HMR_8725 + - id: "HMR_8725" - name: "" - metabolites: !!omap - m02040c: -1 @@ -167594,30 +167594,30 @@ - m02818c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000144362 or ENSG00000241360 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.74 - - references: + - gene_reaction_rule: "ENSG00000144362 or ENSG00000241360" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.74" + - references: "" - subsystem: - - Vitamin B6 metabolism + - "Vitamin B6 metabolism" - confidence_score: 0 - !!omap - - id: HMR_2114 + - id: "HMR_2114" - name: "" - metabolites: !!omap - m02805c: -1 - m03142c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Vitamin D metabolism + - "Vitamin D metabolism" - confidence_score: 0 - !!omap - - id: HMR_2115 + - id: "HMR_2115" - name: "" - metabolites: !!omap - m01415c: 1 @@ -167629,15 +167629,15 @@ - m03142c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000186104 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.159 - - references: PMID:15465040;PMID:7937829 + - gene_reaction_rule: "ENSG00000186104" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.159" + - references: "PMID:15465040;PMID:7937829" - subsystem: - - Vitamin D metabolism + - "Vitamin D metabolism" - confidence_score: 0 - !!omap - - id: HMR_2117 + - id: "HMR_2117" - name: "" - metabolites: !!omap - m01415m: 1 @@ -167649,15 +167649,15 @@ - m03142m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130649 or ENSG00000135929 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.- - - references: PMID:7937829 + - gene_reaction_rule: "ENSG00000130649 or ENSG00000135929" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.-" + - references: "PMID:7937829" - subsystem: - - Vitamin D metabolism + - "Vitamin D metabolism" - confidence_score: 0 - !!omap - - id: HMR_2118 + - id: "HMR_2118" - name: "" - metabolites: !!omap - m01415c: -1 @@ -167669,15 +167669,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000081479 and ENSG00000107611 and ENSG00000111012 and ENSG00000145321 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.13 - - references: PMID:11856765;PMID:12855575 + - gene_reaction_rule: "ENSG00000081479 and ENSG00000107611 and ENSG00000111012 and ENSG00000145321" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.13" + - references: "PMID:11856765;PMID:12855575" - subsystem: - - Vitamin D metabolism + - "Vitamin D metabolism" - confidence_score: 0 - !!omap - - id: HMR_2128 + - id: "HMR_2128" - name: "" - metabolites: !!omap - m01417m: -1 @@ -167689,15 +167689,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000019186 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.126 - - references: PMID:8506296 + - gene_reaction_rule: "ENSG00000019186" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.126" + - references: "PMID:8506296" - subsystem: - - Vitamin D metabolism + - "Vitamin D metabolism" - confidence_score: 0 - !!omap - - id: HMR_2129 + - id: "HMR_2129" - name: "" - metabolites: !!omap - m00608c: 1 @@ -167709,15 +167709,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119723 or ENSG00000130649 or ENSG00000145476 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.- - - references: PMID:11012668 + - gene_reaction_rule: "ENSG00000119723 or ENSG00000130649 or ENSG00000145476" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.-" + - references: "PMID:11012668" - subsystem: - - Vitamin D metabolism + - "Vitamin D metabolism" - confidence_score: 0 - !!omap - - id: HMR_2130 + - id: "HMR_2130" - name: "" - metabolites: !!omap - m00608m: -1 @@ -167729,15 +167729,15 @@ - m02630m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119723 or ENSG00000130649 or ENSG00000145476 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.- - - references: PMID:11012668 + - gene_reaction_rule: "ENSG00000119723 or ENSG00000130649 or ENSG00000145476" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.-" + - references: "PMID:11012668" - subsystem: - - Vitamin D metabolism + - "Vitamin D metabolism" - confidence_score: 0 - !!omap - - id: HMR_2131 + - id: "HMR_2131" - name: "" - metabolites: !!omap - m00607c: 1 @@ -167749,15 +167749,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119723 or ENSG00000130649 or ENSG00000145476 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.- - - references: PMID:11012668 + - gene_reaction_rule: "ENSG00000119723 or ENSG00000130649 or ENSG00000145476" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.-" + - references: "PMID:11012668" - subsystem: - - Vitamin D metabolism + - "Vitamin D metabolism" - confidence_score: 0 - !!omap - - id: HMR_2132 + - id: "HMR_2132" - name: "" - metabolites: !!omap - m00607m: 1 @@ -167769,15 +167769,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119723 or ENSG00000130649 or ENSG00000145476 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.- - - references: PMID:11012668 + - gene_reaction_rule: "ENSG00000119723 or ENSG00000130649 or ENSG00000145476" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.-" + - references: "PMID:11012668" - subsystem: - - Vitamin D metabolism + - "Vitamin D metabolism" - confidence_score: 0 - !!omap - - id: HMR_2133 + - id: "HMR_2133" - name: "" - metabolites: !!omap - m00607c: -1 @@ -167786,15 +167786,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119723 or ENSG00000130649 or ENSG00000145476 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.- - - references: PMID:11012668 + - gene_reaction_rule: "ENSG00000119723 or ENSG00000130649 or ENSG00000145476" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.-" + - references: "PMID:11012668" - subsystem: - - Vitamin D metabolism + - "Vitamin D metabolism" - confidence_score: 0 - !!omap - - id: HMR_2134 + - id: "HMR_2134" - name: "" - metabolites: !!omap - m00607m: -1 @@ -167803,15 +167803,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119723 or ENSG00000130649 or ENSG00000145476 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.- - - references: PMID:11012668 + - gene_reaction_rule: "ENSG00000119723 or ENSG00000130649 or ENSG00000145476" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.-" + - references: "PMID:11012668" - subsystem: - - Vitamin D metabolism + - "Vitamin D metabolism" - confidence_score: 0 - !!omap - - id: HMR_2135 + - id: "HMR_2135" - name: "" - metabolites: !!omap - m00621c: -1 @@ -167820,15 +167820,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119723 or ENSG00000130649 or ENSG00000145476 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.- - - references: PMID:11012668 + - gene_reaction_rule: "ENSG00000119723 or ENSG00000130649 or ENSG00000145476" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.-" + - references: "PMID:11012668" - subsystem: - - Vitamin D metabolism + - "Vitamin D metabolism" - confidence_score: 0 - !!omap - - id: HMR_2136 + - id: "HMR_2136" - name: "" - metabolites: !!omap - m00621m: -1 @@ -167837,15 +167837,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119723 or ENSG00000130649 or ENSG00000145476 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.- - - references: PMID:11012668 + - gene_reaction_rule: "ENSG00000119723 or ENSG00000130649 or ENSG00000145476" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.-" + - references: "PMID:11012668" - subsystem: - - Vitamin D metabolism + - "Vitamin D metabolism" - confidence_score: 0 - !!omap - - id: HMR_2137 + - id: "HMR_2137" - name: "" - metabolites: !!omap - m00035c: 1 @@ -167857,15 +167857,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000019186 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.126 - - references: PMID:12466393;PMID:12485911 + - gene_reaction_rule: "ENSG00000019186" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.126" + - references: "PMID:12466393;PMID:12485911" - subsystem: - - Vitamin D metabolism + - "Vitamin D metabolism" - confidence_score: 0 - !!omap - - id: HMR_2138 + - id: "HMR_2138" - name: "" - metabolites: !!omap - m00035m: 1 @@ -167877,15 +167877,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000019186 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.126 - - references: PMID:12466393;PMID:12485911 + - gene_reaction_rule: "ENSG00000019186" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.126" + - references: "PMID:12466393;PMID:12485911" - subsystem: - - Vitamin D metabolism + - "Vitamin D metabolism" - confidence_score: 0 - !!omap - - id: HMR_2139 + - id: "HMR_2139" - name: "" - metabolites: !!omap - m00035c: -1 @@ -167897,15 +167897,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000019186 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.126 - - references: + - gene_reaction_rule: "ENSG00000019186" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.126" + - references: "" - subsystem: - - Vitamin D metabolism + - "Vitamin D metabolism" - confidence_score: 0 - !!omap - - id: HMR_2140 + - id: "HMR_2140" - name: "" - metabolites: !!omap - m00035m: -1 @@ -167917,15 +167917,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000019186 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.126 - - references: + - gene_reaction_rule: "ENSG00000019186" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.126" + - references: "" - subsystem: - - Vitamin D metabolism + - "Vitamin D metabolism" - confidence_score: 0 - !!omap - - id: HMR_2142 + - id: "HMR_2142" - name: "" - metabolites: !!omap - m00612c: 1 @@ -167937,15 +167937,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119723 or ENSG00000130649 or ENSG00000145476 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.- - - references: + - gene_reaction_rule: "ENSG00000119723 or ENSG00000130649 or ENSG00000145476" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.-" + - references: "" - subsystem: - - Vitamin D metabolism + - "Vitamin D metabolism" - confidence_score: 0 - !!omap - - id: HMR_2143 + - id: "HMR_2143" - name: "" - metabolites: !!omap - m00612m: 1 @@ -167957,15 +167957,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119723 or ENSG00000130649 or ENSG00000145476 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.- - - references: + - gene_reaction_rule: "ENSG00000119723 or ENSG00000130649 or ENSG00000145476" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.-" + - references: "" - subsystem: - - Vitamin D metabolism + - "Vitamin D metabolism" - confidence_score: 0 - !!omap - - id: HMR_2144 + - id: "HMR_2144" - name: "" - metabolites: !!omap - m00611c: 1 @@ -167977,15 +167977,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119723 or ENSG00000130649 or ENSG00000145476 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.- - - references: PMID:11012668 + - gene_reaction_rule: "ENSG00000119723 or ENSG00000130649 or ENSG00000145476" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.-" + - references: "PMID:11012668" - subsystem: - - Vitamin D metabolism + - "Vitamin D metabolism" - confidence_score: 0 - !!omap - - id: HMR_2145 + - id: "HMR_2145" - name: "" - metabolites: !!omap - m00611m: 1 @@ -167997,15 +167997,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119723 or ENSG00000130649 or ENSG00000145476 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.- - - references: PMID:11012668 + - gene_reaction_rule: "ENSG00000119723 or ENSG00000130649 or ENSG00000145476" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.-" + - references: "PMID:11012668" - subsystem: - - Vitamin D metabolism + - "Vitamin D metabolism" - confidence_score: 0 - !!omap - - id: HMR_7996 + - id: "HMR_7996" - name: "" - metabolites: !!omap - m00620m: 1 @@ -168017,15 +168017,15 @@ - m03141m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135929 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.15 - - references: + - gene_reaction_rule: "ENSG00000135929" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.15" + - references: "" - subsystem: - - Vitamin D metabolism + - "Vitamin D metabolism" - confidence_score: 0 - !!omap - - id: HMR_7999 + - id: "HMR_7999" - name: "" - metabolites: !!omap - m00613m: 1 @@ -168037,15 +168037,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000019186 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.126 - - references: + - gene_reaction_rule: "ENSG00000019186" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.126" + - references: "" - subsystem: - - Vitamin D metabolism + - "Vitamin D metabolism" - confidence_score: 0 - !!omap - - id: HMR_8003 + - id: "HMR_8003" - name: "" - metabolites: !!omap - m00518m: 1 @@ -168057,15 +168057,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Vitamin D metabolism + - "Vitamin D metabolism" - confidence_score: 0 - !!omap - - id: HMR_8004 + - id: "HMR_8004" - name: "" - metabolites: !!omap - m00519m: 1 @@ -168077,15 +168077,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000081479 and ENSG00000107611 and ENSG00000111012 and ENSG00000145321 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000081479 and ENSG00000107611 and ENSG00000111012 and ENSG00000145321" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Vitamin D metabolism + - "Vitamin D metabolism" - confidence_score: 0 - !!omap - - id: HMR_8005 + - id: "HMR_8005" - name: "" - metabolites: !!omap - m00518m: 1 @@ -168097,15 +168097,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Vitamin D metabolism + - "Vitamin D metabolism" - confidence_score: 0 - !!omap - - id: HMR_8006 + - id: "HMR_8006" - name: "" - metabolites: !!omap - m00035m: -1 @@ -168117,15 +168117,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Vitamin D metabolism + - "Vitamin D metabolism" - confidence_score: 0 - !!omap - - id: HMR_8008 + - id: "HMR_8008" - name: "" - metabolites: !!omap - m01415m: -1 @@ -168137,75 +168137,75 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000081479 and ENSG00000107611 and ENSG00000111012 and ENSG00000145321 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000081479 and ENSG00000107611 and ENSG00000111012 and ENSG00000145321" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Vitamin D metabolism + - "Vitamin D metabolism" - confidence_score: 0 - !!omap - - id: HMR_8011 + - id: "HMR_8011" - name: "" - metabolites: !!omap - m02765c: -1 - m02805c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Vitamin D metabolism + - "Vitamin D metabolism" - confidence_score: 0 - !!omap - - id: HMR_8012 + - id: "HMR_8012" - name: "" - metabolites: !!omap - m02422c: -1 - m02765c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Vitamin D metabolism + - "Vitamin D metabolism" - confidence_score: 0 - !!omap - - id: HMR_8013 + - id: "HMR_8013" - name: "" - metabolites: !!omap - m02765c: -1 - m02953c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Vitamin D metabolism + - "Vitamin D metabolism" - confidence_score: 0 - !!omap - - id: HMR_8014 + - id: "HMR_8014" - name: "" - metabolites: !!omap - m02765c: -1 - m03142c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Vitamin D metabolism + - "Vitamin D metabolism" - confidence_score: 0 - !!omap - - id: HMR_6423 + - id: "HMR_6423" - name: "" - metabolites: !!omap - m01330c: -1 @@ -168214,15 +168214,15 @@ - m02489c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11160563 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11160563" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6426 + - id: "HMR_6426" - name: "" - metabolites: !!omap - m00357c: 1 @@ -168234,15 +168234,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.30 - - references: PMID:11997390;PMID:10191290;PMID:12368403;PMID:11997390;PMID:10191290;PMID:12368403 + - gene_reaction_rule: "ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.30" + - references: "PMID:11997390;PMID:10191290;PMID:12368403;PMID:11997390;PMID:10191290;PMID:12368403" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6427 + - id: "HMR_6427" - name: "" - metabolites: !!omap - m00357r: 1 @@ -168254,15 +168254,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.30 - - references: PMID:11997390;PMID:10191290;PMID:12368403;PMID:11997390;PMID:10191290;PMID:12368403 + - gene_reaction_rule: "ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.30" + - references: "PMID:11997390;PMID:10191290;PMID:12368403;PMID:11997390;PMID:10191290;PMID:12368403" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6428 + - id: "HMR_6428" - name: "" - metabolites: !!omap - m00345c: 1 @@ -168274,15 +168274,15 @@ - m02630c: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.30 - - references: PMID:10191290;PMID:11997390;PMID:12368403;PMID:11997390;PMID:12368403;PMID:10191290 + - gene_reaction_rule: "ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.30" + - references: "PMID:10191290;PMID:11997390;PMID:12368403;PMID:11997390;PMID:12368403;PMID:10191290" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6429 + - id: "HMR_6429" - name: "" - metabolites: !!omap - m00345r: 1 @@ -168294,15 +168294,15 @@ - m02630r: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.30 - - references: PMID:10191290;PMID:11997390;PMID:12368403;PMID:11997390;PMID:12368403;PMID:10191290 + - gene_reaction_rule: "ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.30" + - references: "PMID:10191290;PMID:11997390;PMID:12368403;PMID:11997390;PMID:12368403;PMID:10191290" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6432 + - id: "HMR_6432" - name: "" - metabolites: !!omap - m00287m: 1 @@ -168318,15 +168318,15 @@ - m02774m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000072506 or ENSG00000084754 or ENSG00000087008 or ENSG00000097021 or ENSG00000101473 or ENSG00000119673 or ENSG00000127884 or ENSG00000130304 or ENSG00000133835 or ENSG00000136881 or ENSG00000138029 or ENSG00000138796 or ENSG00000140284 or ENSG00000143554 or ENSG00000157426 or ENSG00000161533 or ENSG00000167107 or ENSG00000167114 or ENSG00000167315 or ENSG00000176715 or ENSG00000177465 or ENSG00000184227 or ENSG00000242110 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.3.3.6;2.3.1.154;2.3.1.16;3.1.2.2;4.2.1.17;5.1.99.4;6.2.1.- - - references: + - gene_reaction_rule: "ENSG00000060971 or ENSG00000072506 or ENSG00000084754 or ENSG00000087008 or ENSG00000097021 or ENSG00000101473 or ENSG00000119673 or ENSG00000127884 or ENSG00000130304 or ENSG00000133835 or ENSG00000136881 or ENSG00000138029 or ENSG00000138796 or ENSG00000140284 or ENSG00000143554 or ENSG00000157426 or ENSG00000161533 or ENSG00000167107 or ENSG00000167114 or ENSG00000167315 or ENSG00000176715 or ENSG00000177465 or ENSG00000184227 or ENSG00000242110" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.3.3.6;2.3.1.154;2.3.1.16;3.1.2.2;4.2.1.17;5.1.99.4;6.2.1.-" + - references: "" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6433 + - id: "HMR_6433" - name: "" - metabolites: !!omap - m00287m: -1 @@ -168344,15 +168344,15 @@ - m02759m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000072506 or ENSG00000084754 or ENSG00000087008 or ENSG00000097021 or ENSG00000101473 or ENSG00000104325 or ENSG00000119673 or ENSG00000127884 or ENSG00000130304 or ENSG00000133835 or ENSG00000136881 or ENSG00000138029 or ENSG00000138796 or ENSG00000140284 or ENSG00000143554 or ENSG00000157426 or ENSG00000161533 or ENSG00000167107 or ENSG00000167114 or ENSG00000167315 or ENSG00000167969 or ENSG00000176715 or ENSG00000177465 or ENSG00000184227 or ENSG00000198721 or ENSG00000242110 or ENSG00000242612 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.3.1.34;1.3.3.6;2.3.1.16;3.1.2.2;3.1.2.27;4.2.1.17;5.1.99.4;5.3.3.8;6.2.1.- - - references: + - gene_reaction_rule: "ENSG00000060971 or ENSG00000072506 or ENSG00000084754 or ENSG00000087008 or ENSG00000097021 or ENSG00000101473 or ENSG00000104325 or ENSG00000119673 or ENSG00000127884 or ENSG00000130304 or ENSG00000133835 or ENSG00000136881 or ENSG00000138029 or ENSG00000138796 or ENSG00000140284 or ENSG00000143554 or ENSG00000157426 or ENSG00000161533 or ENSG00000167107 or ENSG00000167114 or ENSG00000167315 or ENSG00000167969 or ENSG00000176715 or ENSG00000177465 or ENSG00000184227 or ENSG00000198721 or ENSG00000242110 or ENSG00000242612" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.3.1.34;1.3.3.6;2.3.1.16;3.1.2.2;3.1.2.27;4.2.1.17;5.1.99.4;5.3.3.8;6.2.1.-" + - references: "" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6434 + - id: "HMR_6434" - name: "" - metabolites: !!omap - m01186m: 1 @@ -168368,15 +168368,15 @@ - m02774m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6435 + - id: "HMR_6435" - name: "" - metabolites: !!omap - m01096m: 1 @@ -168392,15 +168392,15 @@ - m02759m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000072506 or ENSG00000084754 or ENSG00000087008 or ENSG00000097021 or ENSG00000101473 or ENSG00000104325 or ENSG00000119673 or ENSG00000127884 or ENSG00000130304 or ENSG00000133835 or ENSG00000136881 or ENSG00000138029 or ENSG00000138796 or ENSG00000140284 or ENSG00000143554 or ENSG00000157426 or ENSG00000161533 or ENSG00000167107 or ENSG00000167114 or ENSG00000167315 or ENSG00000167969 or ENSG00000176715 or ENSG00000177465 or ENSG00000184227 or ENSG00000198721 or ENSG00000242110 or ENSG00000242612 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.3.1.34;1.3.3.6;2.3.1.16;3.1.2.2;3.1.2.27;4.2.1.17;5.1.99.4;5.3.3.8;6.2.1.- - - references: + - gene_reaction_rule: "ENSG00000060971 or ENSG00000072506 or ENSG00000084754 or ENSG00000087008 or ENSG00000097021 or ENSG00000101473 or ENSG00000104325 or ENSG00000119673 or ENSG00000127884 or ENSG00000130304 or ENSG00000133835 or ENSG00000136881 or ENSG00000138029 or ENSG00000138796 or ENSG00000140284 or ENSG00000143554 or ENSG00000157426 or ENSG00000161533 or ENSG00000167107 or ENSG00000167114 or ENSG00000167315 or ENSG00000167969 or ENSG00000176715 or ENSG00000177465 or ENSG00000184227 or ENSG00000198721 or ENSG00000242110 or ENSG00000242612" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.3.1.34;1.3.3.6;2.3.1.16;3.1.2.2;3.1.2.27;4.2.1.17;5.1.99.4;5.3.3.8;6.2.1.-" + - references: "" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6436 + - id: "HMR_6436" - name: "" - metabolites: !!omap - m00766m: 1 @@ -168418,15 +168418,15 @@ - m02774m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000072506 or ENSG00000084754 or ENSG00000087008 or ENSG00000097021 or ENSG00000101473 or ENSG00000119673 or ENSG00000127884 or ENSG00000130304 or ENSG00000133835 or ENSG00000136881 or ENSG00000138029 or ENSG00000138796 or ENSG00000140284 or ENSG00000143554 or ENSG00000157426 or ENSG00000161533 or ENSG00000167107 or ENSG00000167114 or ENSG00000167315 or ENSG00000176715 or ENSG00000177465 or ENSG00000184227 or ENSG00000242110 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.3.3.6;2.3.1.154;2.3.1.16;3.1.2.2;4.2.1.17;5.1.99.4;6.2.1.- - - references: + - gene_reaction_rule: "ENSG00000060971 or ENSG00000072506 or ENSG00000084754 or ENSG00000087008 or ENSG00000097021 or ENSG00000101473 or ENSG00000119673 or ENSG00000127884 or ENSG00000130304 or ENSG00000133835 or ENSG00000136881 or ENSG00000138029 or ENSG00000138796 or ENSG00000140284 or ENSG00000143554 or ENSG00000157426 or ENSG00000161533 or ENSG00000167107 or ENSG00000167114 or ENSG00000167315 or ENSG00000176715 or ENSG00000177465 or ENSG00000184227 or ENSG00000242110" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.3.3.6;2.3.1.154;2.3.1.16;3.1.2.2;4.2.1.17;5.1.99.4;6.2.1.-" + - references: "" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6441 + - id: "HMR_6441" - name: "" - metabolites: !!omap - m00361c: 1 @@ -168438,15 +168438,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.30 - - references: PMID:11997390;PMID:10191290;PMID:12368403;PMID:11997390;PMID:10191290;PMID:12368403 + - gene_reaction_rule: "ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.30" + - references: "PMID:11997390;PMID:10191290;PMID:12368403;PMID:11997390;PMID:10191290;PMID:12368403" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6442 + - id: "HMR_6442" - name: "" - metabolites: !!omap - m00361r: 1 @@ -168458,15 +168458,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.30 - - references: PMID:11997390;PMID:10191290;PMID:12368403;PMID:11997390;PMID:10191290;PMID:12368403 + - gene_reaction_rule: "ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.30" + - references: "PMID:11997390;PMID:10191290;PMID:12368403;PMID:11997390;PMID:10191290;PMID:12368403" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6443 + - id: "HMR_6443" - name: "" - metabolites: !!omap - m00347c: 1 @@ -168478,15 +168478,15 @@ - m02630c: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.30 - - references: PMID:11997390;PMID:10191290;PMID:12368403;PMID:11997390;PMID:10191290;PMID:12368403 + - gene_reaction_rule: "ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.30" + - references: "PMID:11997390;PMID:10191290;PMID:12368403;PMID:11997390;PMID:10191290;PMID:12368403" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6444 + - id: "HMR_6444" - name: "" - metabolites: !!omap - m00347r: 1 @@ -168498,15 +168498,15 @@ - m02630r: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.30 - - references: PMID:11997390;PMID:10191290;PMID:12368403;PMID:11997390;PMID:10191290;PMID:12368403 + - gene_reaction_rule: "ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.30" + - references: "PMID:11997390;PMID:10191290;PMID:12368403;PMID:11997390;PMID:10191290;PMID:12368403" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6447 + - id: "HMR_6447" - name: "" - metabolites: !!omap - m00289m: 1 @@ -168522,15 +168522,15 @@ - m02774m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6448 + - id: "HMR_6448" - name: "" - metabolites: !!omap - m00289m: -1 @@ -168548,15 +168548,15 @@ - m02759m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000072506 or ENSG00000084754 or ENSG00000087008 or ENSG00000097021 or ENSG00000101473 or ENSG00000104325 or ENSG00000119673 or ENSG00000127884 or ENSG00000130304 or ENSG00000133835 or ENSG00000136881 or ENSG00000138029 or ENSG00000138796 or ENSG00000140284 or ENSG00000143554 or ENSG00000157426 or ENSG00000161533 or ENSG00000167107 or ENSG00000167114 or ENSG00000167315 or ENSG00000167969 or ENSG00000176715 or ENSG00000177465 or ENSG00000184227 or ENSG00000198721 or ENSG00000242110 or ENSG00000242612 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.3.1.34;1.3.3.6;2.3.1.16;3.1.2.2;3.1.2.27;4.2.1.17;5.1.99.4;5.3.3.8;6.2.1.- - - references: + - gene_reaction_rule: "ENSG00000060971 or ENSG00000072506 or ENSG00000084754 or ENSG00000087008 or ENSG00000097021 or ENSG00000101473 or ENSG00000104325 or ENSG00000119673 or ENSG00000127884 or ENSG00000130304 or ENSG00000133835 or ENSG00000136881 or ENSG00000138029 or ENSG00000138796 or ENSG00000140284 or ENSG00000143554 or ENSG00000157426 or ENSG00000161533 or ENSG00000167107 or ENSG00000167114 or ENSG00000167315 or ENSG00000167969 or ENSG00000176715 or ENSG00000177465 or ENSG00000184227 or ENSG00000198721 or ENSG00000242110 or ENSG00000242612" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.3.1.34;1.3.3.6;2.3.1.16;3.1.2.2;3.1.2.27;4.2.1.17;5.1.99.4;5.3.3.8;6.2.1.-" + - references: "" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6450 + - id: "HMR_6450" - name: "" - metabolites: !!omap - m01188m: 1 @@ -168572,15 +168572,15 @@ - m02774m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000072506 or ENSG00000084754 or ENSG00000087008 or ENSG00000097021 or ENSG00000101473 or ENSG00000119673 or ENSG00000127884 or ENSG00000130304 or ENSG00000133835 or ENSG00000136881 or ENSG00000138029 or ENSG00000138796 or ENSG00000140284 or ENSG00000143554 or ENSG00000157426 or ENSG00000161533 or ENSG00000167107 or ENSG00000167114 or ENSG00000167315 or ENSG00000176715 or ENSG00000177465 or ENSG00000184227 or ENSG00000242110 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.3.3.6;2.3.1.154;2.3.1.16;3.1.2.2;4.2.1.17;5.1.99.4;6.2.1.- - - references: + - gene_reaction_rule: "ENSG00000060971 or ENSG00000072506 or ENSG00000084754 or ENSG00000087008 or ENSG00000097021 or ENSG00000101473 or ENSG00000119673 or ENSG00000127884 or ENSG00000130304 or ENSG00000133835 or ENSG00000136881 or ENSG00000138029 or ENSG00000138796 or ENSG00000140284 or ENSG00000143554 or ENSG00000157426 or ENSG00000161533 or ENSG00000167107 or ENSG00000167114 or ENSG00000167315 or ENSG00000176715 or ENSG00000177465 or ENSG00000184227 or ENSG00000242110" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.3.3.6;2.3.1.154;2.3.1.16;3.1.2.2;4.2.1.17;5.1.99.4;6.2.1.-" + - references: "" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6451 + - id: "HMR_6451" - name: "" - metabolites: !!omap - m01097m: 1 @@ -168596,15 +168596,15 @@ - m02759m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000072506 or ENSG00000084754 or ENSG00000087008 or ENSG00000097021 or ENSG00000101473 or ENSG00000104325 or ENSG00000119673 or ENSG00000127884 or ENSG00000130304 or ENSG00000133835 or ENSG00000136881 or ENSG00000138029 or ENSG00000138796 or ENSG00000140284 or ENSG00000143554 or ENSG00000157426 or ENSG00000161533 or ENSG00000167107 or ENSG00000167114 or ENSG00000167315 or ENSG00000167969 or ENSG00000176715 or ENSG00000177465 or ENSG00000184227 or ENSG00000198721 or ENSG00000242110 or ENSG00000242612 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.3.1.34;1.3.3.6;2.3.1.16;3.1.2.2;3.1.2.27;4.2.1.17;5.1.99.4;5.3.3.8;6.2.1.- - - references: + - gene_reaction_rule: "ENSG00000060971 or ENSG00000072506 or ENSG00000084754 or ENSG00000087008 or ENSG00000097021 or ENSG00000101473 or ENSG00000104325 or ENSG00000119673 or ENSG00000127884 or ENSG00000130304 or ENSG00000133835 or ENSG00000136881 or ENSG00000138029 or ENSG00000138796 or ENSG00000140284 or ENSG00000143554 or ENSG00000157426 or ENSG00000161533 or ENSG00000167107 or ENSG00000167114 or ENSG00000167315 or ENSG00000167969 or ENSG00000176715 or ENSG00000177465 or ENSG00000184227 or ENSG00000198721 or ENSG00000242110 or ENSG00000242612" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.3.1.34;1.3.3.6;2.3.1.16;3.1.2.2;3.1.2.27;4.2.1.17;5.1.99.4;5.3.3.8;6.2.1.-" + - references: "" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6453 + - id: "HMR_6453" - name: "" - metabolites: !!omap - m01097m: -1 @@ -168622,15 +168622,15 @@ - m02774m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000072506 or ENSG00000084754 or ENSG00000087008 or ENSG00000097021 or ENSG00000101473 or ENSG00000119673 or ENSG00000127884 or ENSG00000130304 or ENSG00000133835 or ENSG00000136881 or ENSG00000138029 or ENSG00000138796 or ENSG00000140284 or ENSG00000143554 or ENSG00000157426 or ENSG00000161533 or ENSG00000167107 or ENSG00000167114 or ENSG00000167315 or ENSG00000176715 or ENSG00000177465 or ENSG00000184227 or ENSG00000242110 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.3.3.6;2.3.1.154;2.3.1.16;3.1.2.2;4.2.1.17;5.1.99.4;6.2.1.- - - references: + - gene_reaction_rule: "ENSG00000060971 or ENSG00000072506 or ENSG00000084754 or ENSG00000087008 or ENSG00000097021 or ENSG00000101473 or ENSG00000119673 or ENSG00000127884 or ENSG00000130304 or ENSG00000133835 or ENSG00000136881 or ENSG00000138029 or ENSG00000138796 or ENSG00000140284 or ENSG00000143554 or ENSG00000157426 or ENSG00000161533 or ENSG00000167107 or ENSG00000167114 or ENSG00000167315 or ENSG00000176715 or ENSG00000177465 or ENSG00000184227 or ENSG00000242110" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.3.3.6;2.3.1.154;2.3.1.16;3.1.2.2;4.2.1.17;5.1.99.4;6.2.1.-" + - references: "" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6456 + - id: "HMR_6456" - name: "" - metabolites: !!omap - m01935c: 1 @@ -168638,15 +168638,15 @@ - m02039c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:9789014 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:9789014" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6457 + - id: "HMR_6457" - name: "" - metabolites: !!omap - m01211c: -1 @@ -168654,30 +168654,30 @@ - m02147c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10385606;PMID:9789014;PMID:11722951 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10385606;PMID:9789014;PMID:11722951" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6458 + - id: "HMR_6458" - name: "" - metabolites: !!omap - m01211c: -1 - m01937c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:9789014;PMID:11722951 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:9789014;PMID:11722951" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6459 + - id: "HMR_6459" - name: "" - metabolites: !!omap - m01117c: -1 @@ -168685,15 +168685,15 @@ - m02588c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11890747;PMID:9789014 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11890747;PMID:9789014" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6460 + - id: "HMR_6460" - name: "" - metabolites: !!omap - m01117c: -1 @@ -168703,15 +168703,15 @@ - m02714c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11890747 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11890747" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6461 + - id: "HMR_6461" - name: "" - metabolites: !!omap - m01596c: 1 @@ -168719,15 +168719,15 @@ - m02714c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:9425126 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:9425126" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6464 + - id: "HMR_6464" - name: "" - metabolites: !!omap - m00360c: 1 @@ -168739,15 +168739,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.30 - - references: PMID:11997390 + - gene_reaction_rule: "ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.30" + - references: "PMID:11997390" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6465 + - id: "HMR_6465" - name: "" - metabolites: !!omap - m00360r: 1 @@ -168759,15 +168759,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.30 - - references: PMID:11997390 + - gene_reaction_rule: "ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.30" + - references: "PMID:11997390" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6466 + - id: "HMR_6466" - name: "" - metabolites: !!omap - m00346c: 1 @@ -168779,15 +168779,15 @@ - m02630c: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.30 - - references: PMID:11997390 + - gene_reaction_rule: "ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.30" + - references: "PMID:11997390" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6467 + - id: "HMR_6467" - name: "" - metabolites: !!omap - m00346r: 1 @@ -168799,15 +168799,15 @@ - m02630r: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.30 - - references: PMID:11997390 + - gene_reaction_rule: "ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.30" + - references: "PMID:11997390" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6470 + - id: "HMR_6470" - name: "" - metabolites: !!omap - m00288m: 1 @@ -168825,15 +168825,15 @@ - m02774m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6471 + - id: "HMR_6471" - name: "" - metabolites: !!omap - m00288m: -1 @@ -168851,15 +168851,15 @@ - m02759m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000072506 or ENSG00000084754 or ENSG00000087008 or ENSG00000097021 or ENSG00000101473 or ENSG00000119673 or ENSG00000127884 or ENSG00000130304 or ENSG00000133835 or ENSG00000136881 or ENSG00000138029 or ENSG00000138796 or ENSG00000140284 or ENSG00000143554 or ENSG00000157426 or ENSG00000161533 or ENSG00000167107 or ENSG00000167114 or ENSG00000167315 or ENSG00000176715 or ENSG00000177465 or ENSG00000184227 or ENSG00000242110 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.3.3.6;2.3.1.154;2.3.1.16;3.1.2.2;4.2.1.17;5.1.99.4;6.2.1.- - - references: + - gene_reaction_rule: "ENSG00000060971 or ENSG00000072506 or ENSG00000084754 or ENSG00000087008 or ENSG00000097021 or ENSG00000101473 or ENSG00000119673 or ENSG00000127884 or ENSG00000130304 or ENSG00000133835 or ENSG00000136881 or ENSG00000138029 or ENSG00000138796 or ENSG00000140284 or ENSG00000143554 or ENSG00000157426 or ENSG00000161533 or ENSG00000167107 or ENSG00000167114 or ENSG00000167315 or ENSG00000176715 or ENSG00000177465 or ENSG00000184227 or ENSG00000242110" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.3.3.6;2.3.1.154;2.3.1.16;3.1.2.2;4.2.1.17;5.1.99.4;6.2.1.-" + - references: "" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6472 + - id: "HMR_6472" - name: "" - metabolites: !!omap - m01187m: 1 @@ -168877,15 +168877,15 @@ - m02774m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000072506 or ENSG00000084754 or ENSG00000087008 or ENSG00000097021 or ENSG00000101473 or ENSG00000119673 or ENSG00000127884 or ENSG00000130304 or ENSG00000133835 or ENSG00000136881 or ENSG00000138029 or ENSG00000138796 or ENSG00000140284 or ENSG00000143554 or ENSG00000157426 or ENSG00000161533 or ENSG00000167107 or ENSG00000167114 or ENSG00000167315 or ENSG00000176715 or ENSG00000177465 or ENSG00000184227 or ENSG00000242110 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.3.3.6;2.3.1.154;2.3.1.16;3.1.2.2;4.2.1.17;5.1.99.4;6.2.1.- - - references: + - gene_reaction_rule: "ENSG00000060971 or ENSG00000072506 or ENSG00000084754 or ENSG00000087008 or ENSG00000097021 or ENSG00000101473 or ENSG00000119673 or ENSG00000127884 or ENSG00000130304 or ENSG00000133835 or ENSG00000136881 or ENSG00000138029 or ENSG00000138796 or ENSG00000140284 or ENSG00000143554 or ENSG00000157426 or ENSG00000161533 or ENSG00000167107 or ENSG00000167114 or ENSG00000167315 or ENSG00000176715 or ENSG00000177465 or ENSG00000184227 or ENSG00000242110" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.3.3.6;2.3.1.154;2.3.1.16;3.1.2.2;4.2.1.17;5.1.99.4;6.2.1.-" + - references: "" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6473 + - id: "HMR_6473" - name: "" - metabolites: !!omap - m01097m: 1 @@ -168903,15 +168903,15 @@ - m02759m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000072506 or ENSG00000084754 or ENSG00000087008 or ENSG00000097021 or ENSG00000101473 or ENSG00000119673 or ENSG00000127884 or ENSG00000130304 or ENSG00000133835 or ENSG00000136881 or ENSG00000138029 or ENSG00000138796 or ENSG00000140284 or ENSG00000143554 or ENSG00000157426 or ENSG00000161533 or ENSG00000167107 or ENSG00000167114 or ENSG00000167315 or ENSG00000176715 or ENSG00000177465 or ENSG00000184227 or ENSG00000242110 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.3.3.6;2.3.1.154;2.3.1.16;3.1.2.2;4.2.1.17;5.1.99.4;6.2.1.- - - references: + - gene_reaction_rule: "ENSG00000060971 or ENSG00000072506 or ENSG00000084754 or ENSG00000087008 or ENSG00000097021 or ENSG00000101473 or ENSG00000119673 or ENSG00000127884 or ENSG00000130304 or ENSG00000133835 or ENSG00000136881 or ENSG00000138029 or ENSG00000138796 or ENSG00000140284 or ENSG00000143554 or ENSG00000157426 or ENSG00000161533 or ENSG00000167107 or ENSG00000167114 or ENSG00000167315 or ENSG00000176715 or ENSG00000177465 or ENSG00000184227 or ENSG00000242110" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.3.3.6;2.3.1.154;2.3.1.16;3.1.2.2;4.2.1.17;5.1.99.4;6.2.1.-" + - references: "" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6476 + - id: "HMR_6476" - name: "" - metabolites: !!omap - m00356c: 1 @@ -168923,15 +168923,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.30 - - references: PMID:11997390 + - gene_reaction_rule: "ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.30" + - references: "PMID:11997390" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6500 + - id: "HMR_6500" - name: "" - metabolites: !!omap - m01328c: -1 @@ -168940,15 +168940,15 @@ - m03103m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:9223282;PMID:9223282 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:9223282;PMID:9223282" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6477 + - id: "HMR_6477" - name: "" - metabolites: !!omap - m00356r: 1 @@ -168960,15 +168960,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.30 - - references: PMID:11997390 + - gene_reaction_rule: "ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.30" + - references: "PMID:11997390" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6478 + - id: "HMR_6478" - name: "" - metabolites: !!omap - m00344c: 1 @@ -168980,15 +168980,15 @@ - m02630c: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.30 - - references: PMID:11997390 + - gene_reaction_rule: "ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.30" + - references: "PMID:11997390" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6479 + - id: "HMR_6479" - name: "" - metabolites: !!omap - m00344r: 1 @@ -169000,15 +169000,15 @@ - m02630r: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.30 - - references: PMID:11997390 + - gene_reaction_rule: "ENSG00000171903 or ENSG00000171954 or ENSG00000186115 or ENSG00000186526 or ENSG00000186529" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.30" + - references: "PMID:11997390" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6482 + - id: "HMR_6482" - name: "" - metabolites: !!omap - m00286m: 1 @@ -169026,15 +169026,15 @@ - m02774m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6484 + - id: "HMR_6484" - name: "" - metabolites: !!omap - m00286m: -1 @@ -169052,15 +169052,15 @@ - m02759m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000072506 or ENSG00000084754 or ENSG00000087008 or ENSG00000097021 or ENSG00000101473 or ENSG00000119673 or ENSG00000127884 or ENSG00000130304 or ENSG00000133835 or ENSG00000136881 or ENSG00000138029 or ENSG00000138796 or ENSG00000140284 or ENSG00000143554 or ENSG00000157426 or ENSG00000161533 or ENSG00000167107 or ENSG00000167114 or ENSG00000167315 or ENSG00000176715 or ENSG00000177465 or ENSG00000184227 or ENSG00000242110 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.3.3.6;2.3.1.154;2.3.1.16;3.1.2.2;4.2.1.17;5.1.99.4;6.2.1.- - - references: + - gene_reaction_rule: "ENSG00000060971 or ENSG00000072506 or ENSG00000084754 or ENSG00000087008 or ENSG00000097021 or ENSG00000101473 or ENSG00000119673 or ENSG00000127884 or ENSG00000130304 or ENSG00000133835 or ENSG00000136881 or ENSG00000138029 or ENSG00000138796 or ENSG00000140284 or ENSG00000143554 or ENSG00000157426 or ENSG00000161533 or ENSG00000167107 or ENSG00000167114 or ENSG00000167315 or ENSG00000176715 or ENSG00000177465 or ENSG00000184227 or ENSG00000242110" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.3.3.6;2.3.1.154;2.3.1.16;3.1.2.2;4.2.1.17;5.1.99.4;6.2.1.-" + - references: "" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6486 + - id: "HMR_6486" - name: "" - metabolites: !!omap - m01185m: 1 @@ -169078,15 +169078,15 @@ - m02774m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000072506 or ENSG00000084754 or ENSG00000087008 or ENSG00000097021 or ENSG00000101473 or ENSG00000119673 or ENSG00000127884 or ENSG00000130304 or ENSG00000133835 or ENSG00000136881 or ENSG00000138029 or ENSG00000138796 or ENSG00000140284 or ENSG00000143554 or ENSG00000157426 or ENSG00000161533 or ENSG00000167107 or ENSG00000167114 or ENSG00000167315 or ENSG00000176715 or ENSG00000177465 or ENSG00000184227 or ENSG00000242110 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.35;1.3.3.6;2.3.1.154;2.3.1.16;3.1.2.2;4.2.1.17;5.1.99.4;6.2.1.- - - references: + - gene_reaction_rule: "ENSG00000060971 or ENSG00000072506 or ENSG00000084754 or ENSG00000087008 or ENSG00000097021 or ENSG00000101473 or ENSG00000119673 or ENSG00000127884 or ENSG00000130304 or ENSG00000133835 or ENSG00000136881 or ENSG00000138029 or ENSG00000138796 or ENSG00000140284 or ENSG00000143554 or ENSG00000157426 or ENSG00000161533 or ENSG00000167107 or ENSG00000167114 or ENSG00000167315 or ENSG00000176715 or ENSG00000177465 or ENSG00000184227 or ENSG00000242110" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.35;1.3.3.6;2.3.1.154;2.3.1.16;3.1.2.2;4.2.1.17;5.1.99.4;6.2.1.-" + - references: "" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6488 + - id: "HMR_6488" - name: "" - metabolites: !!omap - m01096m: 1 @@ -169104,15 +169104,15 @@ - m02759m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6490 + - id: "HMR_6490" - name: "" - metabolites: !!omap - m01923c: -1 @@ -169121,15 +169121,15 @@ - m03109c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.17 - - references: PMID:10191290 + - gene_reaction_rule: "ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.17" + - references: "PMID:10191290" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6492 + - id: "HMR_6492" - name: "" - metabolites: !!omap - m01923c: 1 @@ -169139,15 +169139,15 @@ - m02040c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000133116 or ENSG00000169919 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.31 - - references: PMID:10191290;PMID:10191290 + - gene_reaction_rule: "ENSG00000133116 or ENSG00000169919" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.31" + - references: "PMID:10191290;PMID:10191290" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6495 + - id: "HMR_6495" - name: "" - metabolites: !!omap - m00766c: -1 @@ -169156,15 +169156,15 @@ - m03109c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.17 - - references: PMID:10191290 + - gene_reaction_rule: "ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.17" + - references: "PMID:10191290" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6496 + - id: "HMR_6496" - name: "" - metabolites: !!omap - m00766c: 1 @@ -169174,30 +169174,30 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000133116 or ENSG00000169919 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.31 - - references: PMID:10191290;PMID:11818531;PMID:11087858;PMID:10690708 + - gene_reaction_rule: "ENSG00000133116 or ENSG00000169919" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.31" + - references: "PMID:10191290;PMID:11818531;PMID:11087858;PMID:10690708" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6501 + - id: "HMR_6501" - name: "" - metabolites: !!omap - m01212c: -1 - m01329c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10385606;PMID:10385606 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10385606;PMID:10385606" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: HMR_6992 + - id: "HMR_6992" - name: "" - metabolites: !!omap - m01374c: -1 @@ -169209,15 +169209,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_6993 + - id: "HMR_6993" - name: "" - metabolites: !!omap - m01374c: -1 @@ -169229,15 +169229,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_6994 + - id: "HMR_6994" - name: "" - metabolites: !!omap - m01374c: -1 @@ -169249,15 +169249,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_6995 + - id: "HMR_6995" - name: "" - metabolites: !!omap - m00944c: -1 @@ -169266,15 +169266,15 @@ - m02039c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_6996 + - id: "HMR_6996" - name: "" - metabolites: !!omap - m01377c: 1 @@ -169282,30 +169282,30 @@ - m02040c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000143819 - - rxnFrom: HMRdatabase - - eccodes: 3.3.2.9 - - references: + - gene_reaction_rule: "ENSG00000143819" + - rxnFrom: "HMRdatabase" + - eccodes: "3.3.2.9" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_6997 + - id: "HMR_6997" - name: "" - metabolites: !!omap - m01241c: 1 - m01379c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_6998 + - id: "HMR_6998" - name: "" - metabolites: !!omap - m01175c: 1 @@ -169315,15 +169315,15 @@ - m02040c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_6999 + - id: "HMR_6999" - name: "" - metabolites: !!omap - m01376c: 1 @@ -169335,15 +169335,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7000 + - id: "HMR_7000" - name: "" - metabolites: !!omap - m01241c: -1 @@ -169355,15 +169355,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7001 + - id: "HMR_7001" - name: "" - metabolites: !!omap - m00032c: 1 @@ -169375,15 +169375,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7002 + - id: "HMR_7002" - name: "" - metabolites: !!omap - m00034c: 1 @@ -169395,15 +169395,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7003 + - id: "HMR_7003" - name: "" - metabolites: !!omap - m00031c: 1 @@ -169412,15 +169412,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7004 + - id: "HMR_7004" - name: "" - metabolites: !!omap - m00032c: -1 @@ -169428,15 +169428,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000143819 - - rxnFrom: HMRdatabase - - eccodes: 3.3.2.9 - - references: + - gene_reaction_rule: "ENSG00000143819" + - rxnFrom: "HMRdatabase" + - eccodes: "3.3.2.9" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7005 + - id: "HMR_7005" - name: "" - metabolites: !!omap - m00243c: -1 @@ -169446,15 +169446,15 @@ - m02557c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104808 or ENSG00000151632 or ENSG00000187134 or ENSG00000196139 or ENSG00000198610 - - rxnFrom: HMRdatabase - - eccodes: 1.3.1.20 - - references: + - gene_reaction_rule: "ENSG00000104808 or ENSG00000151632 or ENSG00000187134 or ENSG00000196139 or ENSG00000198610" + - rxnFrom: "HMRdatabase" + - eccodes: "1.3.1.20" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7006 + - id: "HMR_7006" - name: "" - metabolites: !!omap - m00246c: 1 @@ -169462,15 +169462,15 @@ - m02557c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7007 + - id: "HMR_7007" - name: "" - metabolites: !!omap - m00243c: -1 @@ -169482,30 +169482,30 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7008 + - id: "HMR_7008" - name: "" - metabolites: !!omap - m00032c: -1 - m00538c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7009 + - id: "HMR_7009" - name: "" - metabolites: !!omap - m00250c: 1 @@ -169517,15 +169517,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7010 + - id: "HMR_7010" - name: "" - metabolites: !!omap - m00250c: -1 @@ -169533,30 +169533,30 @@ - m02039c: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7011 + - id: "HMR_7011" - name: "" - metabolites: !!omap - m00032c: -1 - m00668c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7012 + - id: "HMR_7012" - name: "" - metabolites: !!omap - m00668c: -1 @@ -169568,15 +169568,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7013 + - id: "HMR_7013" - name: "" - metabolites: !!omap - m00033c: 1 @@ -169585,15 +169585,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7014 + - id: "HMR_7014" - name: "" - metabolites: !!omap - m00034c: -1 @@ -169601,45 +169601,45 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000143819 - - rxnFrom: HMRdatabase - - eccodes: 3.3.2.9 - - references: + - gene_reaction_rule: "ENSG00000143819" + - rxnFrom: "HMRdatabase" + - eccodes: "3.3.2.9" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7015 + - id: "HMR_7015" - name: "" - metabolites: !!omap - m00034c: -1 - m00538c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7016 + - id: "HMR_7016" - name: "" - metabolites: !!omap - m00034c: -1 - m00668c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7017 + - id: "HMR_7017" - name: "" - metabolites: !!omap - m01296c: -1 @@ -169651,15 +169651,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7018 + - id: "HMR_7018" - name: "" - metabolites: !!omap - m01296c: -1 @@ -169671,15 +169671,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000140505 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000140505" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7019 + - id: "HMR_7019" - name: "" - metabolites: !!omap - m01300c: -1 @@ -169691,15 +169691,15 @@ - m02630c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7020 + - id: "HMR_7020" - name: "" - metabolites: !!omap - m01296c: -1 @@ -169711,15 +169711,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000140505 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000140505" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7021 + - id: "HMR_7021" - name: "" - metabolites: !!omap - m01296c: -1 @@ -169731,15 +169731,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7022 + - id: "HMR_7022" - name: "" - metabolites: !!omap - m01298c: -1 @@ -169748,15 +169748,15 @@ - m02039c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7023 + - id: "HMR_7023" - name: "" - metabolites: !!omap - m01295c: 1 @@ -169764,15 +169764,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000143819 - - rxnFrom: HMRdatabase - - eccodes: 3.3.2.9 - - references: + - gene_reaction_rule: "ENSG00000143819" + - rxnFrom: "HMRdatabase" + - eccodes: "3.3.2.9" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7024 + - id: "HMR_7024" - name: "" - metabolites: !!omap - m01294c: 1 @@ -169780,15 +169780,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7025 + - id: "HMR_7025" - name: "" - metabolites: !!omap - m00229c: 1 @@ -169796,15 +169796,15 @@ - m02039c: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000053371 or ENSG00000162482 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.11 - - references: + - gene_reaction_rule: "ENSG00000053371 or ENSG00000162482" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.11" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7026 + - id: "HMR_7026" - name: "" - metabolites: !!omap - m00229c: -1 @@ -169812,15 +169812,15 @@ - m02039c: -3 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000053371 or ENSG00000162482 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.11 - - references: + - gene_reaction_rule: "ENSG00000053371 or ENSG00000162482" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.11" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7027 + - id: "HMR_7027" - name: "" - metabolites: !!omap - m01294c: -1 @@ -169828,15 +169828,15 @@ - m02039c: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000053371 or ENSG00000162482 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.11 - - references: + - gene_reaction_rule: "ENSG00000053371 or ENSG00000162482" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.11" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7028 + - id: "HMR_7028" - name: "" - metabolites: !!omap - m01156c: 1 @@ -169844,15 +169844,15 @@ - m02039c: -3 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000053371 or ENSG00000162482 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.11 - - references: + - gene_reaction_rule: "ENSG00000053371 or ENSG00000162482" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.11" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7029 + - id: "HMR_7029" - name: "" - metabolites: !!omap - m02026c: -1 @@ -169861,15 +169861,15 @@ - m03044c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7030 + - id: "HMR_7030" - name: "" - metabolites: !!omap - m02039c: -1 @@ -169881,30 +169881,30 @@ - m03044c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7031 + - id: "HMR_7031" - name: "" - metabolites: !!omap - m01692c: 1 - m02954c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7032 + - id: "HMR_7032" - name: "" - metabolites: !!omap - m01442c: 1 @@ -169916,15 +169916,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7033 + - id: "HMR_7033" - name: "" - metabolites: !!omap - m01441c: 1 @@ -169936,15 +169936,15 @@ - m03044c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7034 + - id: "HMR_7034" - name: "" - metabolites: !!omap - m01440c: 1 @@ -169952,15 +169952,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7035 + - id: "HMR_7035" - name: "" - metabolites: !!omap - m01440c: -1 @@ -169970,15 +169970,15 @@ - m03041c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.5 - - references: + - gene_reaction_rule: "ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.5" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7036 + - id: "HMR_7036" - name: "" - metabolites: !!omap - m02039c: -1 @@ -169990,15 +169990,15 @@ - m03043c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7037 + - id: "HMR_7037" - name: "" - metabolites: !!omap - m01442c: 1 @@ -170008,15 +170008,15 @@ - m03041c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7038 + - id: "HMR_7038" - name: "" - metabolites: !!omap - m01440c: -1 @@ -170027,15 +170027,15 @@ - m03043c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147576 or ENSG00000172955 or ENSG00000187758 or ENSG00000196344 or ENSG00000196616 or ENSG00000197894 or ENSG00000198099 or ENSG00000248144 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.1 - - references: + - gene_reaction_rule: "ENSG00000147576 or ENSG00000172955 or ENSG00000187758 or ENSG00000196344 or ENSG00000196616 or ENSG00000197894 or ENSG00000198099 or ENSG00000248144" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.1" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7039 + - id: "HMR_7039" - name: "" - metabolites: !!omap - m02039c: 1 @@ -170045,15 +170045,15 @@ - m03109c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.17 - - references: + - gene_reaction_rule: "ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.17" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7040 + - id: "HMR_7040" - name: "" - metabolites: !!omap - m01403c: -1 @@ -170065,15 +170065,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7041 + - id: "HMR_7041" - name: "" - metabolites: !!omap - m00724c: 1 @@ -170082,15 +170082,15 @@ - m02039c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7042 + - id: "HMR_7042" - name: "" - metabolites: !!omap - m01406c: 1 @@ -170098,30 +170098,30 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000143819 - - rxnFrom: HMRdatabase - - eccodes: 3.3.2.9 - - references: + - gene_reaction_rule: "ENSG00000143819" + - rxnFrom: "HMRdatabase" + - eccodes: "3.3.2.9" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7043 + - id: "HMR_7043" - name: "" - metabolites: !!omap - m00974c: 1 - m01407c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7044 + - id: "HMR_7044" - name: "" - metabolites: !!omap - m00974c: -1 @@ -170133,30 +170133,30 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130649 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000130649" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7045 + - id: "HMR_7045" - name: "" - metabolites: !!omap - m00973c: 1 - m00975c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7046 + - id: "HMR_7046" - name: "" - metabolites: !!omap - m00972c: 1 @@ -170164,15 +170164,15 @@ - m02039c: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7047 + - id: "HMR_7047" - name: "" - metabolites: !!omap - m00973c: 1 @@ -170180,15 +170180,15 @@ - m02039c: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7048 + - id: "HMR_7048" - name: "" - metabolites: !!omap - m01403c: -1 @@ -170200,30 +170200,30 @@ - m02630c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7049 + - id: "HMR_7049" - name: "" - metabolites: !!omap - m00637c: -1 - m01405c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7050 + - id: "HMR_7050" - name: "" - metabolites: !!omap - m00571c: 1 @@ -170232,15 +170232,15 @@ - m02039c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7051 + - id: "HMR_7051" - name: "" - metabolites: !!omap - m01404c: 1 @@ -170248,15 +170248,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000143819 - - rxnFrom: HMRdatabase - - eccodes: 3.3.2.9 - - references: + - gene_reaction_rule: "ENSG00000143819" + - rxnFrom: "HMRdatabase" + - eccodes: "3.3.2.9" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7052 + - id: "HMR_7052" - name: "" - metabolites: !!omap - m00435c: 1 @@ -170268,15 +170268,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138061 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000138061" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7053 + - id: "HMR_7053" - name: "" - metabolites: !!omap - m01174c: -1 @@ -170288,15 +170288,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7054 + - id: "HMR_7054" - name: "" - metabolites: !!omap - m01173c: 1 @@ -170308,15 +170308,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7055 + - id: "HMR_7055" - name: "" - metabolites: !!omap - m00435c: -1 @@ -170324,15 +170324,15 @@ - m03032c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000143819 - - rxnFrom: HMRdatabase - - eccodes: 3.3.2.9 - - references: + - gene_reaction_rule: "ENSG00000143819" + - rxnFrom: "HMRdatabase" + - eccodes: "3.3.2.9" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7056 + - id: "HMR_7056" - name: "" - metabolites: !!omap - m00030c: 1 @@ -170344,15 +170344,15 @@ - m03032c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7057 + - id: "HMR_7057" - name: "" - metabolites: !!omap - m01195c: 1 @@ -170361,15 +170361,15 @@ - m02682c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105398 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.14 - - references: + - gene_reaction_rule: "ENSG00000105398" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.14" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7058 + - id: "HMR_7058" - name: "" - metabolites: !!omap - m01173c: -1 @@ -170377,15 +170377,15 @@ - m03038c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000143819 - - rxnFrom: HMRdatabase - - eccodes: 3.3.2.9 - - references: + - gene_reaction_rule: "ENSG00000143819" + - rxnFrom: "HMRdatabase" + - eccodes: "3.3.2.9" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7059 + - id: "HMR_7059" - name: "" - metabolites: !!omap - m00929c: 1 @@ -170395,15 +170395,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104808 or ENSG00000117594 or ENSG00000151632 or ENSG00000159228 or ENSG00000159231 or ENSG00000187134 or ENSG00000196139 or ENSG00000198610 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.146;1.1.1.184;1.3.1.20 - - references: + - gene_reaction_rule: "ENSG00000104808 or ENSG00000117594 or ENSG00000151632 or ENSG00000159228 or ENSG00000159231 or ENSG00000187134 or ENSG00000196139 or ENSG00000198610" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.146;1.1.1.184;1.3.1.20" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7060 + - id: "HMR_7060" - name: "" - metabolites: !!omap - m00932c: -1 @@ -170415,15 +170415,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7061 + - id: "HMR_7061" - name: "" - metabolites: !!omap - m00932c: -1 @@ -170435,15 +170435,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100197 or ENSG00000130649 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000100197 or ENSG00000130649 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7062 + - id: "HMR_7062" - name: "" - metabolites: !!omap - m00927c: 1 @@ -170455,15 +170455,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7063 + - id: "HMR_7063" - name: "" - metabolites: !!omap - m00226c: 1 @@ -170475,15 +170475,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197838 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197838" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7064 + - id: "HMR_7064" - name: "" - metabolites: !!omap - m00929c: -1 @@ -170495,15 +170495,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197838 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197838" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7065 + - id: "HMR_7065" - name: "" - metabolites: !!omap - m00928c: 1 @@ -170512,15 +170512,15 @@ - m03109c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.17 - - references: + - gene_reaction_rule: "ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.17" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7066 + - id: "HMR_7066" - name: "" - metabolites: !!omap - m00929c: -1 @@ -170529,15 +170529,15 @@ - m03109c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.17 - - references: + - gene_reaction_rule: "ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.17" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7067 + - id: "HMR_7067" - name: "" - metabolites: !!omap - m00929c: -1 @@ -170549,15 +170549,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7068 + - id: "HMR_7068" - name: "" - metabolites: !!omap - m00931c: 1 @@ -170565,15 +170565,15 @@ - m01831c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7069 + - id: "HMR_7069" - name: "" - metabolites: !!omap - m00931c: -1 @@ -170581,15 +170581,15 @@ - m02589c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7070 + - id: "HMR_7070" - name: "" - metabolites: !!omap - m00917c: 1 @@ -170601,15 +170601,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7071 + - id: "HMR_7071" - name: "" - metabolites: !!omap - m00992c: -1 @@ -170617,15 +170617,15 @@ - m02608c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7072 + - id: "HMR_7072" - name: "" - metabolites: !!omap - m00917c: 1 @@ -170637,15 +170637,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7073 + - id: "HMR_7073" - name: "" - metabolites: !!omap - m00226c: -1 @@ -170653,15 +170653,15 @@ - m02608c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7074 + - id: "HMR_7074" - name: "" - metabolites: !!omap - m01035c: -1 @@ -170672,15 +170672,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7075 + - id: "HMR_7075" - name: "" - metabolites: !!omap - m00225c: 1 @@ -170688,15 +170688,15 @@ - m02589c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7076 + - id: "HMR_7076" - name: "" - metabolites: !!omap - m00225c: -1 @@ -170708,15 +170708,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7077 + - id: "HMR_7077" - name: "" - metabolites: !!omap - m01319c: 1 @@ -170724,15 +170724,15 @@ - m01831c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7078 + - id: "HMR_7078" - name: "" - metabolites: !!omap - m00545c: -1 @@ -170744,15 +170744,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7079 + - id: "HMR_7079" - name: "" - metabolites: !!omap - m00542c: 1 @@ -170761,15 +170761,15 @@ - m02039c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7080 + - id: "HMR_7080" - name: "" - metabolites: !!omap - m00541c: 1 @@ -170778,15 +170778,15 @@ - m02039c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7081 + - id: "HMR_7081" - name: "" - metabolites: !!omap - m00540c: 1 @@ -170794,15 +170794,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000143819 - - rxnFrom: HMRdatabase - - eccodes: 3.3.2.9 - - references: + - gene_reaction_rule: "ENSG00000143819" + - rxnFrom: "HMRdatabase" + - eccodes: "3.3.2.9" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7082 + - id: "HMR_7082" - name: "" - metabolites: !!omap - m00545c: -1 @@ -170814,15 +170814,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7083 + - id: "HMR_7083" - name: "" - metabolites: !!omap - m00544c: 1 @@ -170831,15 +170831,15 @@ - m02039c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7084 + - id: "HMR_7084" - name: "" - metabolites: !!omap - m00543c: 1 @@ -170848,15 +170848,15 @@ - m02039c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7085 + - id: "HMR_7085" - name: "" - metabolites: !!omap - m00545c: -1 @@ -170865,15 +170865,15 @@ - m02040c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7086 + - id: "HMR_7086" - name: "" - metabolites: !!omap - m00548c: -1 @@ -170881,15 +170881,15 @@ - m02580c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7087 + - id: "HMR_7087" - name: "" - metabolites: !!omap - m00539c: 1 @@ -170898,15 +170898,15 @@ - m02580c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7088 + - id: "HMR_7088" - name: "" - metabolites: !!omap - m00228c: -1 @@ -170918,15 +170918,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7089 + - id: "HMR_7089" - name: "" - metabolites: !!omap - m00568c: -1 @@ -170935,15 +170935,15 @@ - m02853c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7090 + - id: "HMR_7090" - name: "" - metabolites: !!omap - m00567c: 1 @@ -170951,15 +170951,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7091 + - id: "HMR_7091" - name: "" - metabolites: !!omap - m00227c: 1 @@ -170971,15 +170971,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7092 + - id: "HMR_7092" - name: "" - metabolites: !!omap - m00227c: -1 @@ -170988,15 +170988,15 @@ - m02144c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7093 + - id: "HMR_7093" - name: "" - metabolites: !!omap - m00565c: -1 @@ -171005,15 +171005,15 @@ - m02144c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7094 + - id: "HMR_7094" - name: "" - metabolites: !!omap - m00565c: -1 @@ -171023,15 +171023,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7095 + - id: "HMR_7095" - name: "" - metabolites: !!omap - m00566c: -1 @@ -171040,15 +171040,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7096 + - id: "HMR_7096" - name: "" - metabolites: !!omap - m00228c: -1 @@ -171060,15 +171060,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000282301 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000106258 or ENSG00000108242 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000160868 or ENSG00000160870 or ENSG00000165841 or ENSG00000282301" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7097 + - id: "HMR_7097" - name: "" - metabolites: !!omap - m01444c: -1 @@ -171077,15 +171077,15 @@ - m02854c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7098 + - id: "HMR_7098" - name: "" - metabolites: !!omap - m01442c: 1 @@ -171095,15 +171095,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7099 + - id: "HMR_7099" - name: "" - metabolites: !!omap - m00242c: -1 @@ -171115,15 +171115,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130649 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000130649" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7100 + - id: "HMR_7100" - name: "" - metabolites: !!omap - m00636c: -1 @@ -171133,15 +171133,15 @@ - m02861c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.18 - - references: + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.18" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7103 + - id: "HMR_7103" - name: "" - metabolites: !!omap - m00242c: -1 @@ -171151,15 +171151,15 @@ - m02143c: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000008394 or ENSG00000065621 or ENSG00000084207 or ENSG00000085871 or ENSG00000099984 or ENSG00000133433 or ENSG00000134184 or ENSG00000134201 or ENSG00000134202 or ENSG00000143198 or ENSG00000148834 or ENSG00000168765 or ENSG00000170899 or ENSG00000174156 or ENSG00000182793 or ENSG00000197448 or ENSG00000213366 or ENSG00000243955 or ENSG00000244067" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7104 + - id: "HMR_7104" - name: "" - metabolites: !!omap - m01978c: -1 @@ -171167,15 +171167,15 @@ - m02855c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7106 + - id: "HMR_7106" - name: "" - metabolites: !!omap - m02039c: -3 @@ -171183,15 +171183,15 @@ - m02861c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_7688 + - id: "HMR_7688" - name: "" - metabolites: !!omap - m01021c: 1 @@ -171201,15 +171201,15 @@ - m02754c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000196502 or ENSG00000197165 or ENSG00000213648 or ENSG00000261052 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.1 - - references: + - gene_reaction_rule: "ENSG00000196502 or ENSG00000197165 or ENSG00000213648 or ENSG00000261052" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.1" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_8032 + - id: "HMR_8032" - name: "" - metabolites: !!omap - m00998c: 1 @@ -171221,15 +171221,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138109 or ENSG00000165841 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.- - - references: + - gene_reaction_rule: "ENSG00000138109 or ENSG00000165841" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.-" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_8034 + - id: "HMR_8034" - name: "" - metabolites: !!omap - m01019c: 1 @@ -171241,15 +171241,15 @@ - m02754c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130649 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.- - - references: + - gene_reaction_rule: "ENSG00000130649" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.-" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_8036 + - id: "HMR_8036" - name: "" - metabolites: !!omap - m00325c: 1 @@ -171261,15 +171261,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162365 or ENSG00000187048 - - rxnFrom: HMRdatabase - - eccodes: 1.14.15.3 - - references: + - gene_reaction_rule: "ENSG00000162365 or ENSG00000187048" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.15.3" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_8037 + - id: "HMR_8037" - name: "" - metabolites: !!omap - m00371c: 1 @@ -171281,15 +171281,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162365 or ENSG00000187048 - - rxnFrom: HMRdatabase - - eccodes: 1.14.15.3 - - references: + - gene_reaction_rule: "ENSG00000162365 or ENSG00000187048" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.15.3" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_8038 + - id: "HMR_8038" - name: "" - metabolites: !!omap - m00403c: 1 @@ -171301,15 +171301,15 @@ - m02674c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162365 or ENSG00000187048 - - rxnFrom: HMRdatabase - - eccodes: 1.14.15.3 - - references: + - gene_reaction_rule: "ENSG00000162365 or ENSG00000187048" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.15.3" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_8040 + - id: "HMR_8040" - name: "" - metabolites: !!omap - m01617c: -1 @@ -171321,15 +171321,15 @@ - m03113c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197838 or ENSG00000198077 or ENSG00000255974 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000197838 or ENSG00000198077 or ENSG00000255974" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_8043 + - id: "HMR_8043" - name: "" - metabolites: !!omap - m01344c: -1 @@ -171341,15 +171341,15 @@ - m02630c: -0.5 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108242 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000108242" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_8046 + - id: "HMR_8046" - name: "" - metabolites: !!omap - m01109c: 1 @@ -171361,15 +171361,15 @@ - m02653c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165841 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.- - - references: + - gene_reaction_rule: "ENSG00000165841" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.-" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_8049 + - id: "HMR_8049" - name: "" - metabolites: !!omap - m01163c: 1 @@ -171381,15 +171381,15 @@ - m02673c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138115 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000138115" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_8052 + - id: "HMR_8052" - name: "" - metabolites: !!omap - m01007c: 1 @@ -171401,15 +171401,15 @@ - m03001c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138109 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.- - - references: + - gene_reaction_rule: "ENSG00000138109" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.-" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_8055 + - id: "HMR_8055" - name: "" - metabolites: !!omap - m02039c: -1 @@ -171421,15 +171421,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160868 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.32 - - references: + - gene_reaction_rule: "ENSG00000160868" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.32" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_8059 + - id: "HMR_8059" - name: "" - metabolites: !!omap - m01765r: -1 @@ -171441,15 +171441,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000186204 - - rxnFrom: HMRdatabase - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000186204" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_8596 + - id: "HMR_8596" - name: "" - metabolites: !!omap - m00001c: 1 @@ -171461,15 +171461,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138109 or ENSG00000165841 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.80 - - references: + - gene_reaction_rule: "ENSG00000138109 or ENSG00000165841" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.80" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_8598 + - id: "HMR_8598" - name: "" - metabolites: !!omap - m02039c: -1 @@ -171481,15 +171481,15 @@ - m02712c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138109 or ENSG00000165841 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000138109 or ENSG00000165841" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_8601 + - id: "HMR_8601" - name: "" - metabolites: !!omap - m00002c: -1 @@ -171501,15 +171501,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138109 or ENSG00000165841 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000138109 or ENSG00000165841" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_6535 + - id: "HMR_6535" - name: "" - metabolites: !!omap - m01442c: 1 @@ -171519,15 +171519,15 @@ - m02156c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117592 or ENSG00000121053 or ENSG00000130508 or ENSG00000147485 or ENSG00000167419 - - rxnFrom: HMRdatabase - - eccodes: 1.11.1.7 - - references: PMID:10753880 + - gene_reaction_rule: "ENSG00000117592 or ENSG00000121053 or ENSG00000130508 or ENSG00000147485 or ENSG00000167419" + - rxnFrom: "HMRdatabase" + - eccodes: "1.11.1.7" + - references: "PMID:10753880" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_6536 + - id: "HMR_6536" - name: "" - metabolites: !!omap - m02039c: -1 @@ -171537,15 +171537,15 @@ - m02591c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117592 or ENSG00000121053 or ENSG00000130508 or ENSG00000147485 or ENSG00000167419 - - rxnFrom: HMRdatabase - - eccodes: 1.11.1.7 - - references: PMID:9450756 + - gene_reaction_rule: "ENSG00000117592 or ENSG00000121053 or ENSG00000130508 or ENSG00000147485 or ENSG00000167419" + - rxnFrom: "HMRdatabase" + - eccodes: "1.11.1.7" + - references: "PMID:9450756" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_9569 + - id: "HMR_9569" - name: "" - metabolites: !!omap - m01020s: -1 @@ -171554,15 +171554,15 @@ - m02754s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006534 or ENSG00000014257 or ENSG00000102575 or ENSG00000134575 or ENSG00000142513 or ENSG00000143727 or ENSG00000155893 or ENSG00000162551 or ENSG00000162836 or ENSG00000163283 or ENSG00000163286 or ENSG00000163295 or ENSG00000184254 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.1;3.1.3.2;3.1.3.41 - - references: PMID:11797369;PMID:1730777;PMID:388794 + - gene_reaction_rule: "ENSG00000006534 or ENSG00000014257 or ENSG00000102575 or ENSG00000134575 or ENSG00000142513 or ENSG00000143727 or ENSG00000155893 or ENSG00000162551 or ENSG00000162836 or ENSG00000163283 or ENSG00000163286 or ENSG00000163295 or ENSG00000184254" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.1;3.1.3.2;3.1.3.41" + - references: "PMID:11797369;PMID:1730777;PMID:388794" - subsystem: - - Metabolism of xenobiotics by cytochrome P450 + - "Metabolism of xenobiotics by cytochrome P450" - confidence_score: 0 - !!omap - - id: HMR_3955 + - id: "HMR_3955" - name: "" - metabolites: !!omap - m01596c: -1 @@ -171571,15 +171571,15 @@ - m02046c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074410 or ENSG00000104267 or ENSG00000107159 or ENSG00000118298 or ENSG00000131686 or ENSG00000133742 or ENSG00000159593 or ENSG00000164879 or ENSG00000167434 or ENSG00000168748 or ENSG00000169239 or ENSG00000174990 or ENSG00000178538 or ENSG00000185015 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.1 - - references: + - gene_reaction_rule: "ENSG00000074410 or ENSG00000104267 or ENSG00000107159 or ENSG00000118298 or ENSG00000131686 or ENSG00000133742 or ENSG00000159593 or ENSG00000164879 or ENSG00000167434 or ENSG00000168748 or ENSG00000169239 or ENSG00000174990 or ENSG00000178538 or ENSG00000185015" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.1" + - references: "" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: HMR_3984 + - id: "HMR_3984" - name: "" - metabolites: !!omap - m02040p: 2 @@ -171587,15 +171587,15 @@ - m02630p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000121691 or ENSG00000166016 - - rxnFrom: HMRdatabase - - eccodes: 1.11.1.6 - - references: PMID:12054464;PMID:1657986 + - gene_reaction_rule: "ENSG00000121691 or ENSG00000166016" + - rxnFrom: "HMRdatabase" + - eccodes: "1.11.1.6" + - references: "PMID:12054464;PMID:1657986" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: HMR_4201 + - id: "HMR_4201" - name: "" - metabolites: !!omap - m01831c: 1 @@ -171604,15 +171604,15 @@ - m02470c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117592 or ENSG00000121053 or ENSG00000121691 or ENSG00000130508 or ENSG00000147485 or ENSG00000167419 - - rxnFrom: HMRdatabase - - eccodes: 1.11.1.6;1.11.1.7 - - references: PMID:12054464 + - gene_reaction_rule: "ENSG00000117592 or ENSG00000121053 or ENSG00000121691 or ENSG00000130508 or ENSG00000147485 or ENSG00000167419" + - rxnFrom: "HMRdatabase" + - eccodes: "1.11.1.6;1.11.1.7" + - references: "PMID:12054464" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: HMR_4202 + - id: "HMR_4202" - name: "" - metabolites: !!omap - m01831c: 1 @@ -171622,15 +171622,15 @@ - m02553c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147576 or ENSG00000172955 or ENSG00000180011 or ENSG00000187758 or ENSG00000196344 or ENSG00000196616 or ENSG00000197894 or ENSG00000198099 or ENSG00000248144 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.244 - - references: + - gene_reaction_rule: "ENSG00000147576 or ENSG00000172955 or ENSG00000180011 or ENSG00000187758 or ENSG00000196344 or ENSG00000196616 or ENSG00000197894 or ENSG00000198099 or ENSG00000248144" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.244" + - references: "" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: HMR_5127 + - id: "HMR_5127" - name: "" - metabolites: !!omap - m02039c: 1 @@ -171638,15 +171638,15 @@ - m02579c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: HMR_5128 + - id: "HMR_5128" - name: "" - metabolites: !!omap - m02039s: 1 @@ -171654,15 +171654,15 @@ - m02579s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: HMR_5363 + - id: "HMR_5363" - name: "" - metabolites: !!omap - m02039c: 1 @@ -171672,15 +171672,15 @@ - m03057c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 3.6.1.25 - - references: PMID:11278456 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.1.25" + - references: "PMID:11278456" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: HMR_5406 + - id: "HMR_5406" - name: "" - metabolites: !!omap - m01421c: 1 @@ -171688,15 +171688,15 @@ - m02040c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074410 or ENSG00000104267 or ENSG00000107159 or ENSG00000118298 or ENSG00000131686 or ENSG00000133742 or ENSG00000159593 or ENSG00000164879 or ENSG00000167434 or ENSG00000168748 or ENSG00000169239 or ENSG00000174990 or ENSG00000178538 or ENSG00000185015 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.1 - - references: PMID:10938543;PMID:11493685;PMID:12713833;PMID:12747791;PMID:14640555;PMID:17259996;PMID:17504134;PMID:17826101;PMID:7011879;PMID:7672338 + - gene_reaction_rule: "ENSG00000074410 or ENSG00000104267 or ENSG00000107159 or ENSG00000118298 or ENSG00000131686 or ENSG00000133742 or ENSG00000159593 or ENSG00000164879 or ENSG00000167434 or ENSG00000168748 or ENSG00000169239 or ENSG00000174990 or ENSG00000178538 or ENSG00000185015" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.1" + - references: "PMID:10938543;PMID:11493685;PMID:12713833;PMID:12747791;PMID:14640555;PMID:17259996;PMID:17504134;PMID:17826101;PMID:7011879;PMID:7672338" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: HMR_5409 + - id: "HMR_5409" - name: "" - metabolites: !!omap - m01421s: -1 @@ -171704,15 +171704,15 @@ - m02046s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: HMR_7794 + - id: "HMR_7794" - name: "" - metabolites: !!omap - m02039n: 1 @@ -171721,15 +171721,15 @@ - m02759n: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107902 or ENSG00000138777 or ENSG00000143363 or ENSG00000180817 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000107902 or ENSG00000138777 or ENSG00000143363 or ENSG00000180817" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: HMR_8617 + - id: "HMR_8617" - name: "" - metabolites: !!omap - m02039m: 1 @@ -171739,15 +171739,15 @@ - m03057m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: HMR_8749 + - id: "HMR_8749" - name: "" - metabolites: !!omap - m01421c: 1 @@ -171755,15 +171755,15 @@ - m02046c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: HMR_8750 + - id: "HMR_8750" - name: "" - metabolites: !!omap - m01421m: 1 @@ -171771,15 +171771,15 @@ - m02046m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: HMR_8751 + - id: "HMR_8751" - name: "" - metabolites: !!omap - m01421m: 1 @@ -171787,15 +171787,15 @@ - m02040m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169239 or ENSG00000174990 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.1 - - references: + - gene_reaction_rule: "ENSG00000169239 or ENSG00000174990" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.1" + - references: "" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: HMR_8752 + - id: "HMR_8752" - name: "" - metabolites: !!omap - m01831l: 1 @@ -171804,15 +171804,15 @@ - m02470l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005381 or ENSG00000115705 or ENSG00000117592 or ENSG00000121053 or ENSG00000167419 - - rxnFrom: HMRdatabase - - eccodes: 1.11.1.7;1.11.1.8;1.11.2.2 - - references: + - gene_reaction_rule: "ENSG00000005381 or ENSG00000115705 or ENSG00000117592 or ENSG00000121053 or ENSG00000167419" + - rxnFrom: "HMRdatabase" + - eccodes: "1.11.1.7;1.11.1.8;1.11.2.2" + - references: "" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: HMR_7741 + - id: "HMR_7741" - name: "" - metabolites: !!omap - m02039m: -1 @@ -171822,15 +171822,15 @@ - m02828m: -2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000161513 - - rxnFrom: HMRdatabase - - eccodes: 1.18.1.2 - - references: + - gene_reaction_rule: "ENSG00000161513" + - rxnFrom: "HMRdatabase" + - eccodes: "1.18.1.2" + - references: "" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: HMR_9464 + - id: "HMR_9464" - name: "" - metabolites: !!omap - m01677c: 1 @@ -171839,15 +171839,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000090402 or ENSG00000114982 or ENSG00000136715 or ENSG00000167371 or ENSG00000168137 or ENSG00000243056 or ENSG00000257335 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.3;3.2.1.10 - - references: + - gene_reaction_rule: "ENSG00000090402 or ENSG00000114982 or ENSG00000136715 or ENSG00000167371 or ENSG00000168137 or ENSG00000243056 or ENSG00000257335" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.3;3.2.1.10" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9465 + - id: "HMR_9465" - name: "" - metabolites: !!omap - m01965s: 2 @@ -171855,15 +171855,15 @@ - m02185s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000090402 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.10 - - references: PMID:17194452;UNIPROT:P14410 + - gene_reaction_rule: "ENSG00000090402" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.10" + - references: "PMID:17194452;UNIPROT:P14410" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9466 + - id: "HMR_9466" - name: "" - metabolites: !!omap - m00520c: -1 @@ -171873,15 +171873,15 @@ - m02039c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116199 or ENSG00000141560 or ENSG00000162408 or ENSG00000167363 or ENSG00000172456 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.- - - references: PMID:11016445;PMID:11016445 + - gene_reaction_rule: "ENSG00000116199 or ENSG00000141560 or ENSG00000162408 or ENSG00000167363 or ENSG00000172456" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.-" + - references: "PMID:11016445;PMID:11016445" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9467 + - id: "HMR_9467" - name: "" - metabolites: !!omap - m01285c: -1 @@ -171891,15 +171891,15 @@ - m02039c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116199 or ENSG00000141560 or ENSG00000162408 or ENSG00000167363 or ENSG00000172456 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.- - - references: PMID:11016445;PMID:11016445 + - gene_reaction_rule: "ENSG00000116199 or ENSG00000141560 or ENSG00000162408 or ENSG00000167363 or ENSG00000172456" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.-" + - references: "PMID:11016445;PMID:11016445" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9468 + - id: "HMR_9468" - name: "" - metabolites: !!omap - m02040c: -1 @@ -171908,15 +171908,15 @@ - m02573c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123213 - - rxnFrom: HMRdatabase - - eccodes: 3.4.24.16 - - references: PMID:11284698;PMID:9257187;PMID:8869556 + - gene_reaction_rule: "ENSG00000123213" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.24.16" + - references: "PMID:11284698;PMID:9257187;PMID:8869556" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9469 + - id: "HMR_9469" - name: "" - metabolites: !!omap - m01762c: 1 @@ -171925,15 +171925,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000172009 - - rxnFrom: HMRdatabase - - eccodes: 3.4.24.15 - - references: PMID:11284698;PMID:8373360 + - gene_reaction_rule: "ENSG00000172009" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.24.15" + - references: "PMID:11284698;PMID:8373360" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9470 + - id: "HMR_9470" - name: "" - metabolites: !!omap - m02039c: -1 @@ -171943,15 +171943,15 @@ - m02553c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000140263 - - rxnFrom: HMRdatabase - - eccodes: 1.1.1.14 - - references: PMID:6870831 + - gene_reaction_rule: "ENSG00000140263" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.1.14" + - references: "PMID:6870831" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9471 + - id: "HMR_9471" - name: "" - metabolites: !!omap - m00570c: -1 @@ -171960,15 +171960,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000173786 - - rxnFrom: HMRdatabase - - eccodes: 3.1.4.37 - - references: PMID:12225906;PMID:12225906;PMID:12225906;PMID:12225906 + - gene_reaction_rule: "ENSG00000173786" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.4.37" + - references: "PMID:12225906;PMID:12225906;PMID:12225906;PMID:12225906" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9472 + - id: "HMR_9472" - name: "" - metabolites: !!omap - m02040c: -1 @@ -171977,15 +171977,15 @@ - m02568c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000166340 - - rxnFrom: HMRdatabase - - eccodes: 3.4.14.9 - - references: PMID:12038963 + - gene_reaction_rule: "ENSG00000166340" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.14.9" + - references: "PMID:12038963" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9473 + - id: "HMR_9473" - name: "" - metabolites: !!omap - m02040c: -1 @@ -171994,15 +171994,15 @@ - m02570c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000091704 or ENSG00000158516 or ENSG00000158525 or ENSG00000163751 or ENSG00000165078 - - rxnFrom: HMRdatabase - - eccodes: 3.4.17.1;3.4.17.5 - - references: PMID:1309362 + - gene_reaction_rule: "ENSG00000091704 or ENSG00000158516 or ENSG00000158525 or ENSG00000163751 or ENSG00000165078" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.17.1;3.4.17.5" + - references: "PMID:1309362" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9474 + - id: "HMR_9474" - name: "" - metabolites: !!omap - m02039c: 1 @@ -172012,15 +172012,15 @@ - m02877c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000093010 or ENSG00000184154 or ENSG00000284844 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.6 - - references: PMID:4436409 + - gene_reaction_rule: "ENSG00000093010 or ENSG00000184154 or ENSG00000284844" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.6" + - references: "PMID:4436409" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9475 + - id: "HMR_9475" - name: "" - metabolites: !!omap - m01307c: 1 @@ -172030,15 +172030,15 @@ - m02916c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167748 or ENSG00000167751 - - rxnFrom: HMRdatabase - - eccodes: 3.4.21.35 - - references: PMID:9355730 + - gene_reaction_rule: "ENSG00000167748 or ENSG00000167751" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.21.35" + - references: "PMID:9355730" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9476 + - id: "HMR_9476" - name: "" - metabolites: !!omap - m01127c: 1 @@ -172047,15 +172047,15 @@ - m03040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072657 - - rxnFrom: HMRdatabase - - eccodes: 3.4.19.6 - - references: PMID:10491199 + - gene_reaction_rule: "ENSG00000072657" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.19.6" + - references: "PMID:10491199" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9477 + - id: "HMR_9477" - name: "" - metabolites: !!omap - m02040c: -1 @@ -172064,15 +172064,15 @@ - m02551c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000159640 - - rxnFrom: HMRdatabase - - eccodes: 3.4.15.1 - - references: PMID:11244003 + - gene_reaction_rule: "ENSG00000159640" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.15.1" + - references: "PMID:11244003" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9478 + - id: "HMR_9478" - name: "" - metabolites: !!omap - m01386c: 1 @@ -172081,15 +172081,15 @@ - m02184c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130234 - - rxnFrom: HMRdatabase - - eccodes: 3.4.15.- - - references: PMID:10969042;PMID:11815627 + - gene_reaction_rule: "ENSG00000130234" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.15.-" + - references: "PMID:10969042;PMID:11815627" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9479 + - id: "HMR_9479" - name: "" - metabolites: !!omap - m02040c: -1 @@ -172098,15 +172098,15 @@ - m02563c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130234 - - rxnFrom: HMRdatabase - - eccodes: 3.4.15.- - - references: PMID:10969042;PMID:11815627 + - gene_reaction_rule: "ENSG00000130234" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.15.-" + - references: "PMID:10969042;PMID:11815627" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9480 + - id: "HMR_9480" - name: "" - metabolites: !!omap - m01347c: 1 @@ -172115,15 +172115,15 @@ - m02724c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130234 - - rxnFrom: HMRdatabase - - eccodes: 3.4.15.- - - references: PMID:11815627;PMID:10969042;PMID:11384769 + - gene_reaction_rule: "ENSG00000130234" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.15.-" + - references: "PMID:11815627;PMID:10969042;PMID:11384769" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9481 + - id: "HMR_9481" - name: "" - metabolites: !!omap - m02040c: -2 @@ -172133,15 +172133,15 @@ - m02724c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000092009 - - rxnFrom: HMRdatabase - - eccodes: 3.4.21.39 - - references: PMID:1800960 + - gene_reaction_rule: "ENSG00000092009" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.21.39" + - references: "PMID:1800960" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9482 + - id: "HMR_9482" - name: "" - metabolites: !!omap - m02040c: -1 @@ -172150,15 +172150,15 @@ - m02360c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000091704 or ENSG00000158516 or ENSG00000158525 or ENSG00000163751 or ENSG00000165078 - - rxnFrom: HMRdatabase - - eccodes: 3.4.17.1;3.4.17.5 - - references: PMID:1800960 + - gene_reaction_rule: "ENSG00000091704 or ENSG00000158516 or ENSG00000158525 or ENSG00000163751 or ENSG00000165078" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.17.1;3.4.17.5" + - references: "PMID:1800960" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9483 + - id: "HMR_9483" - name: "" - metabolites: !!omap - m02040s: -2 @@ -172168,15 +172168,15 @@ - m02360s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095917 or ENSG00000172236 or ENSG00000197253 - - rxnFrom: HMRdatabase - - eccodes: 3.4.21.59 - - references: PMID:1800960 + - gene_reaction_rule: "ENSG00000095917 or ENSG00000172236 or ENSG00000197253" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.21.59" + - references: "PMID:1800960" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9484 + - id: "HMR_9484" - name: "" - metabolites: !!omap - m02016c: 1 @@ -172186,15 +172186,15 @@ - m02671c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000164978 - - rxnFrom: HMRdatabase - - eccodes: 3.6.1.17 - - references: + - gene_reaction_rule: "ENSG00000164978" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.1.17" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9485 + - id: "HMR_9485" - name: "" - metabolites: !!omap - m01436c: 1 @@ -172203,15 +172203,15 @@ - m02527c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111261 or ENSG00000133048 or ENSG00000133063 or ENSG00000134216 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.14 - - references: + - gene_reaction_rule: "ENSG00000111261 or ENSG00000133048 or ENSG00000133063 or ENSG00000134216" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.14" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9487 + - id: "HMR_9487" - name: "" - metabolites: !!omap - m00136c: -1 @@ -172221,15 +172221,15 @@ - m02583c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000107854 and ENSG00000173273) or ENSG00000041880 or ENSG00000059378 or ENSG00000102699 or ENSG00000105939 or ENSG00000111224 or ENSG00000129484 or ENSG00000137817 or ENSG00000138496 or ENSG00000138617 or ENSG00000143799 or ENSG00000151883 or ENSG00000163659 or ENSG00000173193 or ENSG00000173200 or ENSG00000178685 - - rxnFrom: HMRdatabase - - eccodes: 2.4.2.30 - - references: + - gene_reaction_rule: "(ENSG00000107854 and ENSG00000173273) or ENSG00000041880 or ENSG00000059378 or ENSG00000102699 or ENSG00000105939 or ENSG00000111224 or ENSG00000129484 or ENSG00000137817 or ENSG00000138496 or ENSG00000138617 or ENSG00000143799 or ENSG00000151883 or ENSG00000163659 or ENSG00000173193 or ENSG00000173200 or ENSG00000178685" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.2.30" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9488 + - id: "HMR_9488" - name: "" - metabolites: !!omap - m00192c: 1 @@ -172238,15 +172238,15 @@ - m01371c: -4 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000067177 and ENSG00000102893 and ENSG00000164776) or ENSG00000044446 or ENSG00000143933 or ENSG00000156873 or ENSG00000160014 or ENSG00000198668 - - rxnFrom: HMRdatabase - - eccodes: 2.7.11.19 - - references: + - gene_reaction_rule: "(ENSG00000067177 and ENSG00000102893 and ENSG00000164776) or ENSG00000044446 or ENSG00000143933 or ENSG00000156873 or ENSG00000160014 or ENSG00000198668" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.11.19" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9489 + - id: "HMR_9489" - name: "" - metabolites: !!omap - m00192c: -1 @@ -172256,15 +172256,15 @@ - m02751c: 4 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.17 - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.17" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9490 + - id: "HMR_9490" - name: "" - metabolites: !!omap - m02039c: 1 @@ -172274,15 +172274,15 @@ - m03105c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000036672 or ENSG00000048028 or ENSG00000055483 or ENSG00000058056 or ENSG00000068308 or ENSG00000077254 or ENSG00000083799 or ENSG00000085982 or ENSG00000090686 or ENSG00000101557 or ENSG00000102226 or ENSG00000103194 or ENSG00000103404 or ENSG00000106346 or ENSG00000109189 or ENSG00000111667 or ENSG00000114316 or ENSG00000114374 or ENSG00000115464 or ENSG00000118369 or ENSG00000123552 or ENSG00000124356 or ENSG00000124422 or ENSG00000124486 or ENSG00000129204 or ENSG00000131864 or ENSG00000134588 or ENSG00000135093 or ENSG00000135473 or ENSG00000135655 or ENSG00000135913 or ENSG00000136014 or ENSG00000136878 or ENSG00000138134 or ENSG00000138592 or ENSG00000140455 or ENSG00000143258 or ENSG00000152484 or ENSG00000154914 or ENSG00000155313 or ENSG00000156256 or ENSG00000161133 or ENSG00000162402 or ENSG00000162607 or ENSG00000164663 or ENSG00000170185 or ENSG00000170242 or ENSG00000170832 or ENSG00000172046 or ENSG00000184979 or ENSG00000187555 or ENSG00000223443 or ENSG00000227140 or ENSG00000228856 or ENSG00000229579 or ENSG00000230430 or ENSG00000231051 or ENSG00000231637 or ENSG00000232264 or ENSG00000235780 or ENSG00000247746 or ENSG00000248933 or ENSG00000273820 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.15 - - references: + - gene_reaction_rule: "ENSG00000036672 or ENSG00000048028 or ENSG00000055483 or ENSG00000058056 or ENSG00000068308 or ENSG00000077254 or ENSG00000083799 or ENSG00000085982 or ENSG00000090686 or ENSG00000101557 or ENSG00000102226 or ENSG00000103194 or ENSG00000103404 or ENSG00000106346 or ENSG00000109189 or ENSG00000111667 or ENSG00000114316 or ENSG00000114374 or ENSG00000115464 or ENSG00000118369 or ENSG00000123552 or ENSG00000124356 or ENSG00000124422 or ENSG00000124486 or ENSG00000129204 or ENSG00000131864 or ENSG00000134588 or ENSG00000135093 or ENSG00000135473 or ENSG00000135655 or ENSG00000135913 or ENSG00000136014 or ENSG00000136878 or ENSG00000138134 or ENSG00000138592 or ENSG00000140455 or ENSG00000143258 or ENSG00000152484 or ENSG00000154914 or ENSG00000155313 or ENSG00000156256 or ENSG00000161133 or ENSG00000162402 or ENSG00000162607 or ENSG00000164663 or ENSG00000170185 or ENSG00000170242 or ENSG00000170832 or ENSG00000172046 or ENSG00000184979 or ENSG00000187555 or ENSG00000223443 or ENSG00000227140 or ENSG00000228856 or ENSG00000229579 or ENSG00000230430 or ENSG00000231051 or ENSG00000231637 or ENSG00000232264 or ENSG00000235780 or ENSG00000247746 or ENSG00000248933 or ENSG00000273820" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.15" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9491 + - id: "HMR_9491" - name: "" - metabolites: !!omap - m00204c: -1 @@ -172293,30 +172293,30 @@ - m03105c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000103549 and ENSG00000155827) or (ENSG00000126261 and ENSG00000142230) or (ENSG00000121481 and ENSG00000204227) or ENSG00000002746 or ENSG00000005810 or ENSG00000007944 or ENSG00000009335 or ENSG00000011275 or ENSG00000012963 or ENSG00000013561 or ENSG00000024048 or ENSG00000033178 or ENSG00000034677 or ENSG00000049759 or ENSG00000069869 or ENSG00000070423 or ENSG00000070950 or ENSG00000071794 or ENSG00000072401 or ENSG00000072609 or ENSG00000075975 or ENSG00000077152 or ENSG00000077721 or ENSG00000078140 or ENSG00000078747 or ENSG00000078967 or ENSG00000080802 or ENSG00000082996 or ENSG00000085382 or ENSG00000086758 or ENSG00000089234 or ENSG00000090432 or ENSG00000092098 or ENSG00000092148 or ENSG00000099785 or ENSG00000099804 or ENSG00000100814 or ENSG00000101695 or ENSG00000101752 or ENSG00000101871 or ENSG00000102858 or ENSG00000103266 or ENSG00000103275 or ENSG00000103657 or ENSG00000104343 or ENSG00000104517 or ENSG00000105879 or ENSG00000106459 or ENSG00000107341 or ENSG00000107954 or ENSG00000108106 or ENSG00000108523 or ENSG00000108854 or ENSG00000109332 or ENSG00000110344 or ENSG00000110395 or ENSG00000112130 or ENSG00000113269 or ENSG00000114062 or ENSG00000114423 or ENSG00000115392 or ENSG00000115760 or ENSG00000116514 or ENSG00000118518 or ENSG00000119048 or ENSG00000119401 or ENSG00000122257 or ENSG00000123124 or ENSG00000126107 or ENSG00000127481 or ENSG00000128731 or ENSG00000130725 or ENSG00000130939 or ENSG00000130985 or ENSG00000131508 or ENSG00000131653 or ENSG00000132256 or ENSG00000132388 or ENSG00000133135 or ENSG00000133606 or ENSG00000134758 or ENSG00000135679 or ENSG00000136536 or ENSG00000137393 or ENSG00000138376 or ENSG00000138411 or ENSG00000138641 or ENSG00000138942 or ENSG00000139266 or ENSG00000140367 or ENSG00000142273 or ENSG00000143207 or ENSG00000144357 or ENSG00000144583 or ENSG00000144744 or ENSG00000145416 or ENSG00000145495 or ENSG00000146373 or ENSG00000146414 or ENSG00000147854 or ENSG00000148356 or ENSG00000148634 or ENSG00000151148 or ENSG00000151692 or ENSG00000153827 or ENSG00000154370 or ENSG00000154447 or ENSG00000156463 or ENSG00000156587 or ENSG00000158022 or ENSG00000159202 or ENSG00000159459 or ENSG00000159461 or ENSG00000160087 or ENSG00000160714 or ENSG00000162298 or ENSG00000163012 or ENSG00000163162 or ENSG00000163481 or ENSG00000163743 or ENSG00000164068 or ENSG00000164197 or ENSG00000165338 or ENSG00000165406 or ENSG00000166349 or ENSG00000168159 or ENSG00000168411 or ENSG00000170035 or ENSG00000170142 or ENSG00000170881 or ENSG00000172985 or ENSG00000173838 or ENSG00000173926 or ENSG00000175063 or ENSG00000175809 or ENSG00000175931 or ENSG00000176641 or ENSG00000177414 or ENSG00000177889 or ENSG00000179455 or ENSG00000180233 or ENSG00000180537 or ENSG00000181191 or ENSG00000181788 or ENSG00000181852 or ENSG00000182179 or ENSG00000182247 or ENSG00000182670 or ENSG00000183654 or ENSG00000184182 or ENSG00000184787 or ENSG00000185345 or ENSG00000185651 or ENSG00000186187 or ENSG00000186591 or ENSG00000187566 or ENSG00000188050 or ENSG00000196470 or ENSG00000197323 or ENSG00000197530 or ENSG00000197579 or ENSG00000198060 or ENSG00000198373 or ENSG00000198742 or ENSG00000198833 or ENSG00000198919 or ENSG00000198961 or ENSG00000204308 or ENSG00000214357 or ENSG00000215218 or ENSG00000239305 or ENSG00000265491 or ENSG00000276043 or ENSG00000276380 - - rxnFrom: HMRdatabase - - eccodes: 6.3.2.19 - - references: + - gene_reaction_rule: "(ENSG00000103549 and ENSG00000155827) or (ENSG00000126261 and ENSG00000142230) or (ENSG00000121481 and ENSG00000204227) or ENSG00000002746 or ENSG00000005810 or ENSG00000007944 or ENSG00000009335 or ENSG00000011275 or ENSG00000012963 or ENSG00000013561 or ENSG00000024048 or ENSG00000033178 or ENSG00000034677 or ENSG00000049759 or ENSG00000069869 or ENSG00000070423 or ENSG00000070950 or ENSG00000071794 or ENSG00000072401 or ENSG00000072609 or ENSG00000075975 or ENSG00000077152 or ENSG00000077721 or ENSG00000078140 or ENSG00000078747 or ENSG00000078967 or ENSG00000080802 or ENSG00000082996 or ENSG00000085382 or ENSG00000086758 or ENSG00000089234 or ENSG00000090432 or ENSG00000092098 or ENSG00000092148 or ENSG00000099785 or ENSG00000099804 or ENSG00000100814 or ENSG00000101695 or ENSG00000101752 or ENSG00000101871 or ENSG00000102858 or ENSG00000103266 or ENSG00000103275 or ENSG00000103657 or ENSG00000104343 or ENSG00000104517 or ENSG00000105879 or ENSG00000106459 or ENSG00000107341 or ENSG00000107954 or ENSG00000108106 or ENSG00000108523 or ENSG00000108854 or ENSG00000109332 or ENSG00000110344 or ENSG00000110395 or ENSG00000112130 or ENSG00000113269 or ENSG00000114062 or ENSG00000114423 or ENSG00000115392 or ENSG00000115760 or ENSG00000116514 or ENSG00000118518 or ENSG00000119048 or ENSG00000119401 or ENSG00000122257 or ENSG00000123124 or ENSG00000126107 or ENSG00000127481 or ENSG00000128731 or ENSG00000130725 or ENSG00000130939 or ENSG00000130985 or ENSG00000131508 or ENSG00000131653 or ENSG00000132256 or ENSG00000132388 or ENSG00000133135 or ENSG00000133606 or ENSG00000134758 or ENSG00000135679 or ENSG00000136536 or ENSG00000137393 or ENSG00000138376 or ENSG00000138411 or ENSG00000138641 or ENSG00000138942 or ENSG00000139266 or ENSG00000140367 or ENSG00000142273 or ENSG00000143207 or ENSG00000144357 or ENSG00000144583 or ENSG00000144744 or ENSG00000145416 or ENSG00000145495 or ENSG00000146373 or ENSG00000146414 or ENSG00000147854 or ENSG00000148356 or ENSG00000148634 or ENSG00000151148 or ENSG00000151692 or ENSG00000153827 or ENSG00000154370 or ENSG00000154447 or ENSG00000156463 or ENSG00000156587 or ENSG00000158022 or ENSG00000159202 or ENSG00000159459 or ENSG00000159461 or ENSG00000160087 or ENSG00000160714 or ENSG00000162298 or ENSG00000163012 or ENSG00000163162 or ENSG00000163481 or ENSG00000163743 or ENSG00000164068 or ENSG00000164197 or ENSG00000165338 or ENSG00000165406 or ENSG00000166349 or ENSG00000168159 or ENSG00000168411 or ENSG00000170035 or ENSG00000170142 or ENSG00000170881 or ENSG00000172985 or ENSG00000173838 or ENSG00000173926 or ENSG00000175063 or ENSG00000175809 or ENSG00000175931 or ENSG00000176641 or ENSG00000177414 or ENSG00000177889 or ENSG00000179455 or ENSG00000180233 or ENSG00000180537 or ENSG00000181191 or ENSG00000181788 or ENSG00000181852 or ENSG00000182179 or ENSG00000182247 or ENSG00000182670 or ENSG00000183654 or ENSG00000184182 or ENSG00000184787 or ENSG00000185345 or ENSG00000185651 or ENSG00000186187 or ENSG00000186591 or ENSG00000187566 or ENSG00000188050 or ENSG00000196470 or ENSG00000197323 or ENSG00000197530 or ENSG00000197579 or ENSG00000198060 or ENSG00000198373 or ENSG00000198742 or ENSG00000198833 or ENSG00000198919 or ENSG00000198961 or ENSG00000204308 or ENSG00000214357 or ENSG00000215218 or ENSG00000239305 or ENSG00000265491 or ENSG00000276043 or ENSG00000276380" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.2.19" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 2 - !!omap - - id: HMR_9492 + - id: "HMR_9492" - name: "" - metabolites: !!omap - m02709c: -1 - m02710c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000084072 and ENSG00000113593 and ENSG00000137168 and ENSG00000240344) or ENSG00000004478 or ENSG00000077800 or ENSG00000079150 or ENSG00000088832 or ENSG00000096060 or ENSG00000100023 or ENSG00000100442 or ENSG00000102309 or ENSG00000105701 or ENSG00000106080 or ENSG00000108179 or ENSG00000114857 or ENSG00000119782 or ENSG00000122642 or ENSG00000127445 or ENSG00000131013 or ENSG00000134285 or ENSG00000138398 or ENSG00000141756 or ENSG00000153015 or ENSG00000166794 or ENSG00000168938 or ENSG00000171497 or ENSG00000171960 or ENSG00000173486 or ENSG00000185250 or ENSG00000196262 or ENSG00000236334 or ENSG00000263353 or ENSG00000263464 or ENSG00000271567 - - rxnFrom: HMRdatabase - - eccodes: 5.2.1.8 - - references: + - gene_reaction_rule: "(ENSG00000084072 and ENSG00000113593 and ENSG00000137168 and ENSG00000240344) or ENSG00000004478 or ENSG00000077800 or ENSG00000079150 or ENSG00000088832 or ENSG00000096060 or ENSG00000100023 or ENSG00000100442 or ENSG00000102309 or ENSG00000105701 or ENSG00000106080 or ENSG00000108179 or ENSG00000114857 or ENSG00000119782 or ENSG00000122642 or ENSG00000127445 or ENSG00000131013 or ENSG00000134285 or ENSG00000138398 or ENSG00000141756 or ENSG00000153015 or ENSG00000166794 or ENSG00000168938 or ENSG00000171497 or ENSG00000171960 or ENSG00000173486 or ENSG00000185250 or ENSG00000196262 or ENSG00000236334 or ENSG00000263353 or ENSG00000263464 or ENSG00000271567" + - rxnFrom: "HMRdatabase" + - eccodes: "5.2.1.8" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9493 + - id: "HMR_9493" - name: "" - metabolites: !!omap - m00190c: -1 @@ -172325,15 +172325,15 @@ - m01371c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000065534 or ENSG00000101306 or ENSG00000124006 or ENSG00000140795 or ENSG00000145949 - - rxnFrom: HMRdatabase - - eccodes: 2.7.11.18 - - references: + - gene_reaction_rule: "ENSG00000065534 or ENSG00000101306 or ENSG00000124006 or ENSG00000140795 or ENSG00000145949" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.11.18" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9494 + - id: "HMR_9494" - name: "" - metabolites: !!omap - m00190c: 1 @@ -172343,15 +172343,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.53 - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.53" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9495 + - id: "HMR_9495" - name: "" - metabolites: !!omap - m01261c: 1 @@ -172361,15 +172361,15 @@ - m02128c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000005339 and ENSG00000124151) or ENSG00000083168 or ENSG00000084676 or ENSG00000100393 or ENSG00000103510 or ENSG00000108773 or ENSG00000114166 or ENSG00000125484 or ENSG00000128708 or ENSG00000129873 or ENSG00000134014 or ENSG00000134852 or ENSG00000136504 or ENSG00000156650 or ENSG00000172288 or ENSG00000172352 or ENSG00000172977 or ENSG00000182415 or ENSG00000198408 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.48 - - references: + - gene_reaction_rule: "(ENSG00000005339 and ENSG00000124151) or ENSG00000083168 or ENSG00000084676 or ENSG00000100393 or ENSG00000103510 or ENSG00000108773 or ENSG00000114166 or ENSG00000125484 or ENSG00000128708 or ENSG00000129873 or ENSG00000134014 or ENSG00000134852 or ENSG00000136504 or ENSG00000156650 or ENSG00000172288 or ENSG00000172352 or ENSG00000172977 or ENSG00000182415 or ENSG00000198408" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.48" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9496 + - id: "HMR_9496" - name: "" - metabolites: !!omap - m00201c: -1 @@ -172378,15 +172378,15 @@ - m02579c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000092295 or ENSG00000104055 or ENSG00000124491 or ENSG00000125780 or ENSG00000143278 or ENSG00000159495 or ENSG00000163810 or ENSG00000166948 or ENSG00000198959 - - rxnFrom: HMRdatabase - - eccodes: 2.3.2.13 - - references: + - gene_reaction_rule: "ENSG00000092295 or ENSG00000104055 or ENSG00000124491 or ENSG00000125780 or ENSG00000143278 or ENSG00000159495 or ENSG00000163810 or ENSG00000166948 or ENSG00000198959" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.2.13" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9497 + - id: "HMR_9497" - name: "" - metabolites: !!omap - m01285c: 1 @@ -172396,15 +172396,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000189283 - - rxnFrom: HMRdatabase - - eccodes: 3.6.1.29 - - references: + - gene_reaction_rule: "ENSG00000189283" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.1.29" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9498 + - id: "HMR_9498" - name: "" - metabolites: !!omap - m00200c: -1 @@ -172413,15 +172413,15 @@ - m01720c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000170430 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.63 - - references: + - gene_reaction_rule: "ENSG00000170430" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.63" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9499 + - id: "HMR_9499" - name: "" - metabolites: !!omap - m00200c: 1 @@ -172431,15 +172431,15 @@ - m02918c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000131238 or ENSG00000221988 or ENSG00000241404 - - rxnFrom: HMRdatabase - - eccodes: 3.1.2.22 - - references: + - gene_reaction_rule: "ENSG00000131238 or ENSG00000221988 or ENSG00000241404" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.2.22" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9500 + - id: "HMR_9500" - name: "" - metabolites: !!omap - m00202c: 1 @@ -172449,15 +172449,15 @@ - m02877c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120265 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.77 - - references: + - gene_reaction_rule: "ENSG00000120265" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.77" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9501 + - id: "HMR_9501" - name: "" - metabolites: !!omap - m01824c: 2 @@ -172467,15 +172467,15 @@ - m02555c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000127948 - - rxnFrom: HMRdatabase - - eccodes: 1.6.2.4 - - references: + - gene_reaction_rule: "ENSG00000127948" + - rxnFrom: "HMRdatabase" + - eccodes: "1.6.2.4" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9502 + - id: "HMR_9502" - name: "" - metabolites: !!omap - m01985c: 1 @@ -172485,15 +172485,15 @@ - m02669c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085377 - - rxnFrom: HMRdatabase - - eccodes: 3.4.21.26 - - references: + - gene_reaction_rule: "ENSG00000085377" + - rxnFrom: "HMRdatabase" + - eccodes: "3.4.21.26" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9503 + - id: "HMR_9503" - name: "" - metabolites: !!omap - m01285c: 1 @@ -172502,15 +172502,15 @@ - m02840c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000114124 or ENSG00000185974 - - rxnFrom: HMRdatabase - - eccodes: 2.7.11.14 - - references: + - gene_reaction_rule: "ENSG00000114124 or ENSG00000185974" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.11.14" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9504 + - id: "HMR_9504" - name: "" - metabolites: !!omap - m01166c: -1 @@ -172520,15 +172520,15 @@ - m02989c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137364 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.67 - - references: + - gene_reaction_rule: "ENSG00000137364" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.67" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9505 + - id: "HMR_9505" - name: "" - metabolites: !!omap - m01285c: -1 @@ -172540,15 +172540,15 @@ - m03101c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000114999 or ENSG00000156983 or ENSG00000162571 - - rxnFrom: HMRdatabase - - eccodes: 6.3.2.25 - - references: + - gene_reaction_rule: "ENSG00000114999 or ENSG00000156983 or ENSG00000162571" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.2.25" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9506 + - id: "HMR_9506" - name: "" - metabolites: !!omap - m00915c: -1 @@ -172557,15 +172557,15 @@ - m02755c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000039650 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.32 - - references: + - gene_reaction_rule: "ENSG00000039650" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.32" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9507 + - id: "HMR_9507" - name: "" - metabolites: !!omap - m01129c: -1 @@ -172574,15 +172574,15 @@ - m02755c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111880 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.33 - - references: + - gene_reaction_rule: "ENSG00000111880" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.33" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9508 + - id: "HMR_9508" - name: "" - metabolites: !!omap - m00096c: -1 @@ -172591,15 +172591,15 @@ - m02759c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111880 - - rxnFrom: HMRdatabase - - eccodes: 2.7.7.50 - - references: + - gene_reaction_rule: "ENSG00000111880" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.7.50" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9509 + - id: "HMR_9509" - name: "" - metabolites: !!omap - m01864c: -1 @@ -172608,15 +172608,15 @@ - m02877c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101654 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.56 - - references: + - gene_reaction_rule: "ENSG00000101654" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.56" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9510 + - id: "HMR_9510" - name: "" - metabolites: !!omap - m02039c: -1 @@ -172626,15 +172626,15 @@ - m02877c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137200 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.57 - - references: + - gene_reaction_rule: "ENSG00000137200" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.57" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9511 + - id: "HMR_9511" - name: "" - metabolites: !!omap - m02039c: -1 @@ -172644,15 +172644,15 @@ - m02877c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165819 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.62 - - references: + - gene_reaction_rule: "ENSG00000165819" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.62" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9512 + - id: "HMR_9512" - name: "" - metabolites: !!omap - m01597c: -1 @@ -172661,15 +172661,15 @@ - m02627c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136448 or ENSG00000152465 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.97 - - references: + - gene_reaction_rule: "ENSG00000136448 or ENSG00000152465" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.97" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9513 + - id: "HMR_9513" - name: "" - metabolites: !!omap - m01588c: 1 @@ -172678,15 +172678,15 @@ - m02577c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000153904 or ENSG00000213722 - - rxnFrom: HMRdatabase - - eccodes: 3.5.3.18 - - references: + - gene_reaction_rule: "ENSG00000153904 or ENSG00000213722" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.3.18" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9514 + - id: "HMR_9514" - name: "" - metabolites: !!omap - m02040c: 1 @@ -172697,15 +172697,15 @@ - m03054c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000007933 or ENSG00000010932 or ENSG00000076258 or ENSG00000094963 or ENSG00000131781 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.8 - - references: + - gene_reaction_rule: "ENSG00000007933 or ENSG00000010932 or ENSG00000076258 or ENSG00000094963 or ENSG00000131781" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.8" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9515 + - id: "HMR_9515" - name: "" - metabolites: !!omap - m01252c: 1 @@ -172714,15 +172714,15 @@ - m02545c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110013 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.53 - - references: + - gene_reaction_rule: "ENSG00000110013" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.53" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9516 + - id: "HMR_9516" - name: "" - metabolites: !!omap - m00219c: 1 @@ -172731,15 +172731,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000164951 or ENSG00000172840 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.43 - - references: + - gene_reaction_rule: "ENSG00000164951 or ENSG00000172840" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.43" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9517 + - id: "HMR_9517" - name: "" - metabolites: !!omap - m00219c: -1 @@ -172749,15 +172749,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000004799 or ENSG00000005882 or ENSG00000067992 or ENSG00000152256 - - rxnFrom: HMRdatabase - - eccodes: 2.7.11.2 - - references: + - gene_reaction_rule: "ENSG00000004799 or ENSG00000005882 or ENSG00000067992 or ENSG00000152256" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.11.2" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9518 + - id: "HMR_9518" - name: "" - metabolites: !!omap - m02037c: -1 @@ -172766,15 +172766,15 @@ - m03086c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151576 or ENSG00000213339 - - rxnFrom: HMRdatabase - - eccodes: 2.4.2.29 - - references: + - gene_reaction_rule: "ENSG00000151576 or ENSG00000213339" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.2.29" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9519 + - id: "HMR_9519" - name: "" - metabolites: !!omap - m02039c: -1 @@ -172784,15 +172784,15 @@ - m03084c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066651 or ENSG00000104907 or ENSG00000121486 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.214;2.1.1.215;2.1.1.216 - - references: + - gene_reaction_rule: "ENSG00000066651 or ENSG00000104907 or ENSG00000121486" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.214;2.1.1.215;2.1.1.216" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9520 + - id: "HMR_9520" - name: "" - metabolites: !!omap - m02871c: -1 @@ -172801,15 +172801,15 @@ - m03084c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000037897 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.33 - - references: + - gene_reaction_rule: "ENSG00000037897" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.33" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9521 + - id: "HMR_9521" - name: "" - metabolites: !!omap - m02039c: -1 @@ -172819,15 +172819,15 @@ - m03059c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100416 - - rxnFrom: HMRdatabase - - eccodes: 2.8.1.- - - references: + - gene_reaction_rule: "ENSG00000100416" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.1.-" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9522 + - id: "HMR_9522" - name: "" - metabolites: !!omap - m02040c: -1 @@ -172836,15 +172836,15 @@ - m03083c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000141378 or ENSG00000167862 or ENSG00000187024 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.29 - - references: + - gene_reaction_rule: "ENSG00000141378 or ENSG00000167862 or ENSG00000187024" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.29" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9523 + - id: "HMR_9523" - name: "" - metabolites: !!omap - m01706c: 1 @@ -172853,30 +172853,30 @@ - m03083c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000043514 - - rxnFrom: HMRdatabase - - eccodes: 2.5.1.75 - - references: + - gene_reaction_rule: "ENSG00000043514" + - rxnFrom: "HMRdatabase" + - eccodes: "2.5.1.75" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9524 + - id: "HMR_9524" - name: "" - metabolites: !!omap - m03085c: -1 - m03087c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000177192 - - rxnFrom: HMRdatabase - - eccodes: 5.4.99.12 - - references: + - gene_reaction_rule: "ENSG00000177192" + - rxnFrom: "HMRdatabase" + - eccodes: "5.4.99.12" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9525 + - id: "HMR_9525" - name: "" - metabolites: !!omap - m01367c: -1 @@ -172886,15 +172886,15 @@ - m02877c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000214435 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.137 - - references: + - gene_reaction_rule: "ENSG00000214435" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.137" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9527 + - id: "HMR_9527" - name: "" - metabolites: !!omap - m01251c: -1 @@ -172903,15 +172903,15 @@ - m01597c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000156006 or ENSG00000171428 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.5 - - references: + - gene_reaction_rule: "ENSG00000156006 or ENSG00000171428" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.5" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9528 + - id: "HMR_9528" - name: "" - metabolites: !!omap - m00187c: -1 @@ -172921,15 +172921,15 @@ - m02737c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100077 or ENSG00000173020 - - rxnFrom: HMRdatabase - - eccodes: 2.7.11.15 - - references: + - gene_reaction_rule: "ENSG00000100077 or ENSG00000173020" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.11.15" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9529 + - id: "HMR_9529" - name: "" - metabolites: !!omap - m01307c: 1 @@ -172938,15 +172938,15 @@ - m02542c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008438 or ENSG00000159527 or ENSG00000161031 or ENSG00000163218 - - rxnFrom: HMRdatabase - - eccodes: 3.5.1.28 - - references: + - gene_reaction_rule: "ENSG00000008438 or ENSG00000159527 or ENSG00000161031 or ENSG00000163218" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.1.28" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9530 + - id: "HMR_9530" - name: "" - metabolites: !!omap - m01370c: 1 @@ -172956,15 +172956,15 @@ - m02521c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000038002 - - rxnFrom: HMRdatabase - - eccodes: 3.5.1.26 - - references: + - gene_reaction_rule: "ENSG00000038002" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.1.26" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9531 + - id: "HMR_9531" - name: "" - metabolites: !!omap - m01018c: -1 @@ -172973,15 +172973,15 @@ - m02702c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151092 - - rxnFrom: HMRdatabase - - eccodes: 3.5.1.52 - - references: + - gene_reaction_rule: "ENSG00000151092" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.1.52" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9532 + - id: "HMR_9532" - name: "" - metabolites: !!omap - m01306c: -1 @@ -172992,15 +172992,15 @@ - m02943c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000166135 or ENSG00000198363 - - rxnFrom: HMRdatabase - - eccodes: 1.14.11.16 - - references: + - gene_reaction_rule: "ENSG00000166135 or ENSG00000198363" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.11.16" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9534 + - id: "HMR_9534" - name: "" - metabolites: !!omap - m00155c: -1 @@ -173010,15 +173010,15 @@ - m02578c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165591 - - rxnFrom: HMRdatabase - - eccodes: 3.5.1.4 - - references: + - gene_reaction_rule: "ENSG00000165591" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.1.4" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9535 + - id: "HMR_9535" - name: "" - metabolites: !!omap - m00822c: 1 @@ -173028,15 +173028,15 @@ - m02039c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103507 - - rxnFrom: HMRdatabase - - eccodes: 2.7.11.4 - - references: + - gene_reaction_rule: "ENSG00000103507" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.11.4" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9536 + - id: "HMR_9536" - name: "" - metabolites: !!omap - m01983c: 1 @@ -173046,15 +173046,15 @@ - m02911c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130055 or ENSG00000138772 - - rxnFrom: HMRdatabase - - eccodes: 3.1.4.43 - - references: + - gene_reaction_rule: "ENSG00000130055 or ENSG00000138772" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.4.43" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9537 + - id: "HMR_9537" - name: "" - metabolites: !!omap - m02039c: 1 @@ -173064,15 +173064,15 @@ - m02914c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006007 - - rxnFrom: HMRdatabase - - eccodes: 3.1.4.44 - - references: + - gene_reaction_rule: "ENSG00000006007" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.4.44" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9538 + - id: "HMR_9538" - name: "" - metabolites: !!omap - m02039c: -1 @@ -173082,15 +173082,15 @@ - m03145c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000124588 or ENSG00000181019 - - rxnFrom: HMRdatabase - - eccodes: 1.6.5.2;1.10.99.2 - - references: + - gene_reaction_rule: "ENSG00000124588 or ENSG00000181019" + - rxnFrom: "HMRdatabase" + - eccodes: "1.6.5.2;1.10.99.2" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9539 + - id: "HMR_9539" - name: "" - metabolites: !!omap - m01713c: 1 @@ -173100,15 +173100,15 @@ - m03145c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167397 - - rxnFrom: HMRdatabase - - eccodes: 1.1.4.1 - - references: + - gene_reaction_rule: "ENSG00000167397" + - rxnFrom: "HMRdatabase" + - eccodes: "1.1.4.1" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9540 + - id: "HMR_9540" - name: "" - metabolites: !!omap - m01307c: 1 @@ -173119,15 +173119,15 @@ - m02889c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000132330 - - rxnFrom: HMRdatabase - - eccodes: 4.4.1.16 - - references: + - gene_reaction_rule: "ENSG00000132330" + - rxnFrom: "HMRdatabase" + - eccodes: "4.4.1.16" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9541 + - id: "HMR_9541" - name: "" - metabolites: !!omap - m00196c: 1 @@ -173137,15 +173137,15 @@ - m03064c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107669 - - rxnFrom: HMRdatabase - - eccodes: 2.3.2.8 - - references: + - gene_reaction_rule: "ENSG00000107669" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.2.8" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9542 + - id: "HMR_9542" - name: "" - metabolites: !!omap - m01368c: 1 @@ -173156,15 +173156,15 @@ - m02707c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000145730 - - rxnFrom: HMRdatabase - - eccodes: 1.14.17.3 - - references: + - gene_reaction_rule: "ENSG00000145730" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.17.3" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9543 + - id: "HMR_9543" - name: "" - metabolites: !!omap - m01128c: 1 @@ -173172,15 +173172,15 @@ - m02578c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115828 - - rxnFrom: HMRdatabase - - eccodes: 2.3.2.5 - - references: + - gene_reaction_rule: "ENSG00000115828" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.2.5" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9544 + - id: "HMR_9544" - name: "" - metabolites: !!omap - m02040c: -1 @@ -173190,15 +173190,15 @@ - m02990c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000175806 - - rxnFrom: HMRdatabase - - eccodes: 1.8.4.11 - - references: + - gene_reaction_rule: "ENSG00000175806" + - rxnFrom: "HMRdatabase" + - eccodes: "1.8.4.11" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9545 + - id: "HMR_9545" - name: "" - metabolites: !!omap - m02040c: -1 @@ -173209,15 +173209,15 @@ - m02708c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113083 or ENSG00000134013 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.13 - - references: + - gene_reaction_rule: "ENSG00000113083 or ENSG00000134013" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.13" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9546 + - id: "HMR_9546" - name: "" - metabolites: !!omap - m01334c: -1 @@ -173227,15 +173227,15 @@ - m02849c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120158 or ENSG00000137996 - - rxnFrom: HMRdatabase - - eccodes: 6.5.1.4 - - references: + - gene_reaction_rule: "ENSG00000120158 or ENSG00000137996" + - rxnFrom: "HMRdatabase" + - eccodes: "6.5.1.4" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9547 + - id: "HMR_9547" - name: "" - metabolites: !!omap - m02427c: -1 @@ -173244,15 +173244,15 @@ - m03114c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111670 - - rxnFrom: HMRdatabase - - eccodes: 2.7.8.17 - - references: + - gene_reaction_rule: "ENSG00000111670" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.8.17" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9548 + - id: "HMR_9548" - name: "" - metabolites: !!omap - m02002c: -1 @@ -173261,15 +173261,15 @@ - m02527c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103174 - - rxnFrom: HMRdatabase - - eccodes: 3.1.4.45 - - references: + - gene_reaction_rule: "ENSG00000103174" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.4.45" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9549 + - id: "HMR_9549" - name: "" - metabolites: !!omap - m02039c: -1 @@ -173279,15 +173279,15 @@ - m02877c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117543 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.98 - - references: + - gene_reaction_rule: "ENSG00000117543" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.98" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9550 + - id: "HMR_9550" - name: "" - metabolites: !!omap - m00188c: -2 @@ -173299,15 +173299,15 @@ - m02877c: -2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000124275 - - rxnFrom: HMRdatabase - - eccodes: 1.16.1.8 - - references: + - gene_reaction_rule: "ENSG00000124275" + - rxnFrom: "HMRdatabase" + - eccodes: "1.16.1.8" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9551 + - id: "HMR_9551" - name: "" - metabolites: !!omap - m01833c: 1 @@ -173317,15 +173317,15 @@ - m02472c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000258429 - - rxnFrom: HMRdatabase - - eccodes: 3.5.1.88 - - references: + - gene_reaction_rule: "ENSG00000258429" + - rxnFrom: "HMRdatabase" + - eccodes: "3.5.1.88" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9552 + - id: "HMR_9552" - name: "" - metabolites: !!omap - m01710c: -1 @@ -173335,15 +173335,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000122824 or ENSG00000173598 or ENSG00000196368 or ENSG00000272325 - - rxnFrom: HMRdatabase - - eccodes: 3.6.1.52 - - references: + - gene_reaction_rule: "ENSG00000122824 or ENSG00000173598 or ENSG00000196368 or ENSG00000272325" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.1.52" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9553 + - id: "HMR_9553" - name: "" - metabolites: !!omap - m01306c: -1 @@ -173354,15 +173354,15 @@ - m02943c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000083444 or ENSG00000106397 or ENSG00000152952 - - rxnFrom: HMRdatabase - - eccodes: 1.14.11.4 - - references: + - gene_reaction_rule: "ENSG00000083444 or ENSG00000106397 or ENSG00000152952" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.11.4" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9801 + - id: "HMR_9801" - name: "" - metabolites: !!omap - m01948c: 1 @@ -173371,15 +173371,15 @@ - m03167c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000188266 - - rxnFrom: HMRdatabase - - eccodes: 2.7.1.81 - - references: + - gene_reaction_rule: "ENSG00000188266" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.1.81" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9807 + - id: "HMR_9807" - name: "" - metabolites: !!omap - m00631c: 1 @@ -173390,15 +173390,15 @@ - m03167c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000175309 - - rxnFrom: HMRdatabase - - eccodes: 4.2.3.134 - - references: + - gene_reaction_rule: "ENSG00000175309" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.3.134" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9554 + - id: "HMR_9554" - name: "" - metabolites: !!omap - m00683c: -1 @@ -173408,15 +173408,15 @@ - m10005c: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136250 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.77 - - references: + - gene_reaction_rule: "ENSG00000136250" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.77" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9555 + - id: "HMR_9555" - name: "" - metabolites: !!omap - m01578c: 1 @@ -173426,15 +173426,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000249948 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.21 - - references: + - gene_reaction_rule: "ENSG00000249948" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.21" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9556 + - id: "HMR_9556" - name: "" - metabolites: !!omap - m02040s: -1 @@ -173443,15 +173443,15 @@ - m02751s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115850 and ENSG00000163521 and ENSG00000170266 and ENSG00000188167 - - rxnFrom: HMRdatabase - - eccodes: 3.2.1.23 - - references: PMID:3109378;UNIPROT:P16278 + - gene_reaction_rule: "ENSG00000115850 and ENSG00000163521 and ENSG00000170266 and ENSG00000188167" + - rxnFrom: "HMRdatabase" + - eccodes: "3.2.1.23" + - references: "PMID:3109378;UNIPROT:P16278" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9557 + - id: "HMR_9557" - name: "" - metabolites: !!omap - m02039m: -1 @@ -173462,15 +173462,15 @@ - m02751m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000059573 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.41 - - references: + - gene_reaction_rule: "ENSG00000059573" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.41" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9558 + - id: "HMR_9558" - name: "" - metabolites: !!omap - m00675c: -1 @@ -173479,15 +173479,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000184207 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.18 - - references: + - gene_reaction_rule: "ENSG00000184207" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.18" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9559 + - id: "HMR_9559" - name: "" - metabolites: !!omap - m01594c: 1 @@ -173497,15 +173497,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000102230 or ENSG00000161217 - - rxnFrom: HMRdatabase - - eccodes: 2.7.7.15 - - references: + - gene_reaction_rule: "ENSG00000102230 or ENSG00000161217" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.7.15" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9560 + - id: "HMR_9560" - name: "" - metabolites: !!omap - m00632c: -1 @@ -173515,15 +173515,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000185813 - - rxnFrom: HMRdatabase - - eccodes: 2.7.7.14 - - references: + - gene_reaction_rule: "ENSG00000185813" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.7.14" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9561 + - id: "HMR_9561" - name: "" - metabolites: !!omap - m02039s: 1 @@ -173533,15 +173533,15 @@ - m02837s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137392 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10769148;PMID:8017323 + - gene_reaction_rule: "ENSG00000137392" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10769148;PMID:8017323" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9562 + - id: "HMR_9562" - name: "" - metabolites: !!omap - m00537c: 1 @@ -173552,15 +173552,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000002726 or ENSG00000131471 or ENSG00000131480 - - rxnFrom: HMRdatabase - - eccodes: 1.4.3.6;1.4.3.21;1.4.3.22 - - references: + - gene_reaction_rule: "ENSG00000002726 or ENSG00000131471 or ENSG00000131480" + - rxnFrom: "HMRdatabase" + - eccodes: "1.4.3.6;1.4.3.21;1.4.3.22" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9563 + - id: "HMR_9563" - name: "" - metabolites: !!omap - m02039c: 2 @@ -173571,15 +173571,15 @@ - m02713c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000143149 or ENSG00000164904 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000072210 or ENSG00000111275 or ENSG00000137124 or ENSG00000143149 or ENSG00000164904" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.3" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9564 + - id: "HMR_9564" - name: "" - metabolites: !!omap - m02039m: 2 @@ -173590,15 +173590,15 @@ - m02713m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111275 or ENSG00000137124 or ENSG00000164904 - - rxnFrom: HMRdatabase - - eccodes: 1.2.1.4;1.2.1.5 - - references: + - gene_reaction_rule: "ENSG00000111275 or ENSG00000137124 or ENSG00000164904" + - rxnFrom: "HMRdatabase" + - eccodes: "1.2.1.4;1.2.1.5" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9565 + - id: "HMR_9565" - name: "" - metabolites: !!omap - m00773m: 1 @@ -173606,15 +173606,15 @@ - m03031m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000148090 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.18 - - references: + - gene_reaction_rule: "ENSG00000148090" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.18" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9566 + - id: "HMR_9566" - name: "" - metabolites: !!omap - m00773p: 1 @@ -173622,15 +173622,15 @@ - m03031p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104823 or ENSG00000113790 - - rxnFrom: HMRdatabase - - eccodes: 5.3.3.-;5.3.3.8 - - references: + - gene_reaction_rule: "ENSG00000104823 or ENSG00000113790" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.3.-;5.3.3.8" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9567 + - id: "HMR_9567" - name: "" - metabolites: !!omap - m00773m: 1 @@ -173638,15 +173638,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000148090 - - rxnFrom: HMRdatabase - - eccodes: 4.2.1.18 - - references: + - gene_reaction_rule: "ENSG00000148090" + - rxnFrom: "HMRdatabase" + - eccodes: "4.2.1.18" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9568 + - id: "HMR_9568" - name: "" - metabolites: !!omap - m00773p: 1 @@ -173654,15 +173654,15 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104823 or ENSG00000113790 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000104823 or ENSG00000113790" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9570 + - id: "HMR_9570" - name: "" - metabolites: !!omap - m01334c: 1 @@ -173672,15 +173672,15 @@ - m02670c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000164978 - - rxnFrom: HMRdatabase - - eccodes: 3.6.1.17 - - references: + - gene_reaction_rule: "ENSG00000164978" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.1.17" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9571 + - id: "HMR_9571" - name: "" - metabolites: !!omap - m01926s: -1 @@ -173690,15 +173690,15 @@ - m02326s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099998 or ENSG00000100031 or ENSG00000100121 or ENSG00000131067 or ENSG00000133475 or ENSG00000167741 or ENSG00000274252 - - rxnFrom: HMRdatabase - - eccodes: 2.3.2.2 - - references: PMID:1968061 + - gene_reaction_rule: "ENSG00000099998 or ENSG00000100031 or ENSG00000100121 or ENSG00000131067 or ENSG00000133475 or ENSG00000167741 or ENSG00000274252" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.2.2" + - references: "PMID:1968061" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9572 + - id: "HMR_9572" - name: "" - metabolites: !!omap - m01596s: 1 @@ -173709,15 +173709,15 @@ - m02326s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099998 or ENSG00000100031 or ENSG00000100121 or ENSG00000131067 or ENSG00000133475 or ENSG00000167741 or ENSG00000274252 - - rxnFrom: HMRdatabase - - eccodes: 2.3.2.2 - - references: PMID:1968061 + - gene_reaction_rule: "ENSG00000099998 or ENSG00000100031 or ENSG00000100121 or ENSG00000131067 or ENSG00000133475 or ENSG00000167741 or ENSG00000274252" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.2.2" + - references: "PMID:1968061" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9573 + - id: "HMR_9573" - name: "" - metabolites: !!omap - m00994c: -1 @@ -173727,15 +173727,15 @@ - m03109c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.17 - - references: PMID:10702251 + - gene_reaction_rule: "ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.17" + - references: "PMID:10702251" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9574 + - id: "HMR_9574" - name: "" - metabolites: !!omap - m00994r: -1 @@ -173745,15 +173745,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.17 - - references: PMID:10702251 + - gene_reaction_rule: "ENSG00000109181 or ENSG00000135220 or ENSG00000135226 or ENSG00000145626 or ENSG00000156096 or ENSG00000167165 or ENSG00000168671 or ENSG00000171234 or ENSG00000173610 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.17" + - references: "PMID:10702251" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9575 + - id: "HMR_9575" - name: "" - metabolites: !!omap - m01114c: -1 @@ -173762,15 +173762,15 @@ - m02979c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116984 - - rxnFrom: HMRdatabase - - eccodes: 2.1.1.13 - - references: + - gene_reaction_rule: "ENSG00000116984" + - rxnFrom: "HMRdatabase" + - eccodes: "2.1.1.13" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9577 + - id: "HMR_9577" - name: "" - metabolites: !!omap - m00196c: -1 @@ -173779,15 +173779,15 @@ - m02742c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000106799 and ENSG00000163513) or (ENSG00000104365 and ENSG00000213341) or (ENSG00000092439 and ENSG00000119121) or (ENSG00000070770 and ENSG00000101266) or (ENSG00000132964 and ENSG00000155111) or (ENSG00000132155 and ENSG00000157764) or ENSG00000004660 or ENSG00000005249 or ENSG00000006062 or ENSG00000006432 or ENSG00000006837 or ENSG00000007047 or ENSG00000008086 or ENSG00000008118 or ENSG00000008128 or ENSG00000010219 or ENSG00000011566 or ENSG00000012983 or ENSG00000013441 or ENSG00000027075 or ENSG00000028116 or ENSG00000034152 or ENSG00000035664 or ENSG00000038382 or ENSG00000050748 or ENSG00000055332 or ENSG00000058091 or ENSG00000058404 or ENSG00000058729 or ENSG00000059758 or ENSG00000060237 or ENSG00000064393 or ENSG00000065243 or ENSG00000065559 or ENSG00000065613 or ENSG00000065675 or ENSG00000065883 or ENSG00000067606 or ENSG00000067900 or ENSG00000069020 or ENSG00000069956 or ENSG00000070759 or ENSG00000070770 or ENSG00000070808 or ENSG00000071054 or ENSG00000071242 or ENSG00000071909 or ENSG00000072062 or ENSG00000072133 or ENSG00000072195 or ENSG00000072518 or ENSG00000072786 or ENSG00000073803 or ENSG00000074590 or ENSG00000075413 or ENSG00000076984 or ENSG00000077264 or ENSG00000078061 or ENSG00000079277 or ENSG00000080823 or ENSG00000081320 or ENSG00000083290 or ENSG00000085511 or ENSG00000086015 or ENSG00000086232 or ENSG00000087095 or ENSG00000087586 or ENSG00000089022 or ENSG00000090376 or ENSG00000091436 or ENSG00000095015 or ENSG00000095777 or ENSG00000096063 or ENSG00000097046 or ENSG00000099308 or ENSG00000099875 or ENSG00000100030 or ENSG00000100490 or ENSG00000100749 or ENSG00000100784 or ENSG00000101049 or ENSG00000101109 or ENSG00000101266 or ENSG00000101349 or ENSG00000101782 or ENSG00000102096 or ENSG00000102225 or ENSG00000102572 or ENSG00000102882 or ENSG00000104205 or ENSG00000104312 or ENSG00000104375 or ENSG00000104814 or ENSG00000104936 or ENSG00000105053 or ENSG00000105146 or ENSG00000105204 or ENSG00000105221 or ENSG00000105287 or ENSG00000105613 or ENSG00000105810 or ENSG00000106617 or ENSG00000106683 or ENSG00000107140 or ENSG00000107643 or ENSG00000107779 or ENSG00000107968 or ENSG00000108443 or ENSG00000108946 or ENSG00000108984 or ENSG00000109339 or ENSG00000110422 or ENSG00000110931 or ENSG00000111837 or ENSG00000112062 or ENSG00000112079 or ENSG00000112144 or ENSG00000112739 or ENSG00000112742 or ENSG00000113163 or ENSG00000113240 or ENSG00000113712 or ENSG00000114302 or ENSG00000114670 or ENSG00000114738 or ENSG00000114739 or ENSG00000114904 or ENSG00000115170 or ENSG00000115661 or ENSG00000115687 or ENSG00000115694 or ENSG00000115825 or ENSG00000115977 or ENSG00000116141 or ENSG00000117020 or ENSG00000117266 or ENSG00000117650 or ENSG00000117676 or ENSG00000118046 or ENSG00000118515 or ENSG00000119408 or ENSG00000119638 or ENSG00000120539 or ENSG00000121989 or ENSG00000122966 or ENSG00000123143 or ENSG00000123374 or ENSG00000123612 or ENSG00000124784 or ENSG00000125651 or ENSG00000125834 or ENSG00000126562 or ENSG00000126583 or ENSG00000126934 or ENSG00000127334 or ENSG00000127564 or ENSG00000128829 or ENSG00000129465 or ENSG00000130175 or ENSG00000130413 or ENSG00000130669 or ENSG00000130758 or ENSG00000130822 or ENSG00000131023 or ENSG00000131791 or ENSG00000132356 or ENSG00000133059 or ENSG00000133083 or ENSG00000133275 or ENSG00000134058 or ENSG00000134070 or ENSG00000134072 or ENSG00000134318 or ENSG00000134398 or ENSG00000134602 or ENSG00000135090 or ENSG00000135250 or ENSG00000135341 or ENSG00000135409 or ENSG00000135446 or ENSG00000135503 or ENSG00000136098 or ENSG00000136643 or ENSG00000136807 or ENSG00000137193 or ENSG00000137275 or ENSG00000137601 or ENSG00000137764 or ENSG00000137843 or ENSG00000138395 or ENSG00000138669 or ENSG00000138696 or ENSG00000138756 or ENSG00000138769 or ENSG00000139567 or ENSG00000139625 or ENSG00000139908 or ENSG00000140474 or ENSG00000140992 or ENSG00000141503 or ENSG00000141551 or ENSG00000141639 or ENSG00000142149 or ENSG00000142208 or ENSG00000142731 or ENSG00000142733 or ENSG00000142875 or ENSG00000143479 or ENSG00000143674 or ENSG00000143776 or ENSG00000145349 or ENSG00000145632 or ENSG00000145949 or ENSG00000146872 or ENSG00000147044 or ENSG00000147133 or ENSG00000147613 or ENSG00000148660 or ENSG00000149269 or ENSG00000149311 or ENSG00000149554 or ENSG00000149930 or ENSG00000150457 or ENSG00000151292 or ENSG00000151414 or ENSG00000152332 or ENSG00000152495 or ENSG00000152953 or ENSG00000154229 or ENSG00000154237 or ENSG00000154310 or ENSG00000155657 or ENSG00000156345 or ENSG00000156711 or ENSG00000156970 or ENSG00000157106 or ENSG00000157540 or ENSG00000158828 or ENSG00000159792 or ENSG00000160145 or ENSG00000160447 or ENSG00000160469 or ENSG00000160551 or ENSG00000160584 or ENSG00000160602 or ENSG00000162302 or ENSG00000162409 or ENSG00000162526 or ENSG00000162889 or ENSG00000163349 or ENSG00000163482 or ENSG00000163545 or ENSG00000163558 or ENSG00000163788 or ENSG00000163932 or ENSG00000164543 or ENSG00000164885 or ENSG00000164896 or ENSG00000165059 or ENSG00000165238 or ENSG00000165304 or ENSG00000165752 or ENSG00000166333 or ENSG00000166483 or ENSG00000166484 or ENSG00000166501 or ENSG00000166851 or ENSG00000167258 or ENSG00000167657 or ENSG00000168038 or ENSG00000168067 or ENSG00000168078 or ENSG00000168404 or ENSG00000169032 or ENSG00000169118 or ENSG00000169302 or ENSG00000169679 or ENSG00000169967 or ENSG00000170145 or ENSG00000170312 or ENSG00000170390 or ENSG00000171132 or ENSG00000171219 or ENSG00000172071 or ENSG00000172315 or ENSG00000172680 or ENSG00000172939 or ENSG00000173327 or ENSG00000173846 or ENSG00000174672 or ENSG00000175054 or ENSG00000175634 or ENSG00000176444 or ENSG00000177169 or ENSG00000177189 or ENSG00000178093 or ENSG00000178607 or ENSG00000178950 or ENSG00000178999 or ENSG00000179335 or ENSG00000180138 or ENSG00000180370 or ENSG00000180815 or ENSG00000181085 or ENSG00000181409 or ENSG00000182541 or ENSG00000183049 or ENSG00000183421 or ENSG00000183735 or ENSG00000183765 or ENSG00000183943 or ENSG00000184216 or ENSG00000184304 or ENSG00000184343 or ENSG00000185324 or ENSG00000185386 or ENSG00000185532 or ENSG00000186716 or ENSG00000188130 or ENSG00000188191 or ENSG00000188322 or ENSG00000188906 or ENSG00000196335 or ENSG00000196455 or ENSG00000196632 or ENSG00000196730 or ENSG00000197168 or ENSG00000197442 or ENSG00000198001 or ENSG00000198355 or ENSG00000198586 or ENSG00000198648 or ENSG00000198752 or ENSG00000198909 or ENSG00000204217 or ENSG00000204344 or ENSG00000204435 or ENSG00000205111 or ENSG00000206203 or ENSG00000211455 or ENSG00000212122 or ENSG00000213923 or ENSG00000214102 or ENSG00000248333 or ENSG00000250506 or ENSG00000253729 or ENSG00000263528 - - rxnFrom: HMRdatabase - - eccodes: 2.7.11.1;2.7.11.8;2.7.11.9;2.7.11.10;2.7.11.11;2.7.11.12;2.7.11.13;2.7.11.17;2.7.11.21;2.7.11.22;2.7.11.24;2.7.11.25;2.7.11.30;2.7.12.1;2.7.12.2 - - references: + - gene_reaction_rule: "(ENSG00000106799 and ENSG00000163513) or (ENSG00000104365 and ENSG00000213341) or (ENSG00000092439 and ENSG00000119121) or (ENSG00000070770 and ENSG00000101266) or (ENSG00000132964 and ENSG00000155111) or (ENSG00000132155 and ENSG00000157764) or ENSG00000004660 or ENSG00000005249 or ENSG00000006062 or ENSG00000006432 or ENSG00000006837 or ENSG00000007047 or ENSG00000008086 or ENSG00000008118 or ENSG00000008128 or ENSG00000010219 or ENSG00000011566 or ENSG00000012983 or ENSG00000013441 or ENSG00000027075 or ENSG00000028116 or ENSG00000034152 or ENSG00000035664 or ENSG00000038382 or ENSG00000050748 or ENSG00000055332 or ENSG00000058091 or ENSG00000058404 or ENSG00000058729 or ENSG00000059758 or ENSG00000060237 or ENSG00000064393 or ENSG00000065243 or ENSG00000065559 or ENSG00000065613 or ENSG00000065675 or ENSG00000065883 or ENSG00000067606 or ENSG00000067900 or ENSG00000069020 or ENSG00000069956 or ENSG00000070759 or ENSG00000070770 or ENSG00000070808 or ENSG00000071054 or ENSG00000071242 or ENSG00000071909 or ENSG00000072062 or ENSG00000072133 or ENSG00000072195 or ENSG00000072518 or ENSG00000072786 or ENSG00000073803 or ENSG00000074590 or ENSG00000075413 or ENSG00000076984 or ENSG00000077264 or ENSG00000078061 or ENSG00000079277 or ENSG00000080823 or ENSG00000081320 or ENSG00000083290 or ENSG00000085511 or ENSG00000086015 or ENSG00000086232 or ENSG00000087095 or ENSG00000087586 or ENSG00000089022 or ENSG00000090376 or ENSG00000091436 or ENSG00000095015 or ENSG00000095777 or ENSG00000096063 or ENSG00000097046 or ENSG00000099308 or ENSG00000099875 or ENSG00000100030 or ENSG00000100490 or ENSG00000100749 or ENSG00000100784 or ENSG00000101049 or ENSG00000101109 or ENSG00000101266 or ENSG00000101349 or ENSG00000101782 or ENSG00000102096 or ENSG00000102225 or ENSG00000102572 or ENSG00000102882 or ENSG00000104205 or ENSG00000104312 or ENSG00000104375 or ENSG00000104814 or ENSG00000104936 or ENSG00000105053 or ENSG00000105146 or ENSG00000105204 or ENSG00000105221 or ENSG00000105287 or ENSG00000105613 or ENSG00000105810 or ENSG00000106617 or ENSG00000106683 or ENSG00000107140 or ENSG00000107643 or ENSG00000107779 or ENSG00000107968 or ENSG00000108443 or ENSG00000108946 or ENSG00000108984 or ENSG00000109339 or ENSG00000110422 or ENSG00000110931 or ENSG00000111837 or ENSG00000112062 or ENSG00000112079 or ENSG00000112144 or ENSG00000112739 or ENSG00000112742 or ENSG00000113163 or ENSG00000113240 or ENSG00000113712 or ENSG00000114302 or ENSG00000114670 or ENSG00000114738 or ENSG00000114739 or ENSG00000114904 or ENSG00000115170 or ENSG00000115661 or ENSG00000115687 or ENSG00000115694 or ENSG00000115825 or ENSG00000115977 or ENSG00000116141 or ENSG00000117020 or ENSG00000117266 or ENSG00000117650 or ENSG00000117676 or ENSG00000118046 or ENSG00000118515 or ENSG00000119408 or ENSG00000119638 or ENSG00000120539 or ENSG00000121989 or ENSG00000122966 or ENSG00000123143 or ENSG00000123374 or ENSG00000123612 or ENSG00000124784 or ENSG00000125651 or ENSG00000125834 or ENSG00000126562 or ENSG00000126583 or ENSG00000126934 or ENSG00000127334 or ENSG00000127564 or ENSG00000128829 or ENSG00000129465 or ENSG00000130175 or ENSG00000130413 or ENSG00000130669 or ENSG00000130758 or ENSG00000130822 or ENSG00000131023 or ENSG00000131791 or ENSG00000132356 or ENSG00000133059 or ENSG00000133083 or ENSG00000133275 or ENSG00000134058 or ENSG00000134070 or ENSG00000134072 or ENSG00000134318 or ENSG00000134398 or ENSG00000134602 or ENSG00000135090 or ENSG00000135250 or ENSG00000135341 or ENSG00000135409 or ENSG00000135446 or ENSG00000135503 or ENSG00000136098 or ENSG00000136643 or ENSG00000136807 or ENSG00000137193 or ENSG00000137275 or ENSG00000137601 or ENSG00000137764 or ENSG00000137843 or ENSG00000138395 or ENSG00000138669 or ENSG00000138696 or ENSG00000138756 or ENSG00000138769 or ENSG00000139567 or ENSG00000139625 or ENSG00000139908 or ENSG00000140474 or ENSG00000140992 or ENSG00000141503 or ENSG00000141551 or ENSG00000141639 or ENSG00000142149 or ENSG00000142208 or ENSG00000142731 or ENSG00000142733 or ENSG00000142875 or ENSG00000143479 or ENSG00000143674 or ENSG00000143776 or ENSG00000145349 or ENSG00000145632 or ENSG00000145949 or ENSG00000146872 or ENSG00000147044 or ENSG00000147133 or ENSG00000147613 or ENSG00000148660 or ENSG00000149269 or ENSG00000149311 or ENSG00000149554 or ENSG00000149930 or ENSG00000150457 or ENSG00000151292 or ENSG00000151414 or ENSG00000152332 or ENSG00000152495 or ENSG00000152953 or ENSG00000154229 or ENSG00000154237 or ENSG00000154310 or ENSG00000155657 or ENSG00000156345 or ENSG00000156711 or ENSG00000156970 or ENSG00000157106 or ENSG00000157540 or ENSG00000158828 or ENSG00000159792 or ENSG00000160145 or ENSG00000160447 or ENSG00000160469 or ENSG00000160551 or ENSG00000160584 or ENSG00000160602 or ENSG00000162302 or ENSG00000162409 or ENSG00000162526 or ENSG00000162889 or ENSG00000163349 or ENSG00000163482 or ENSG00000163545 or ENSG00000163558 or ENSG00000163788 or ENSG00000163932 or ENSG00000164543 or ENSG00000164885 or ENSG00000164896 or ENSG00000165059 or ENSG00000165238 or ENSG00000165304 or ENSG00000165752 or ENSG00000166333 or ENSG00000166483 or ENSG00000166484 or ENSG00000166501 or ENSG00000166851 or ENSG00000167258 or ENSG00000167657 or ENSG00000168038 or ENSG00000168067 or ENSG00000168078 or ENSG00000168404 or ENSG00000169032 or ENSG00000169118 or ENSG00000169302 or ENSG00000169679 or ENSG00000169967 or ENSG00000170145 or ENSG00000170312 or ENSG00000170390 or ENSG00000171132 or ENSG00000171219 or ENSG00000172071 or ENSG00000172315 or ENSG00000172680 or ENSG00000172939 or ENSG00000173327 or ENSG00000173846 or ENSG00000174672 or ENSG00000175054 or ENSG00000175634 or ENSG00000176444 or ENSG00000177169 or ENSG00000177189 or ENSG00000178093 or ENSG00000178607 or ENSG00000178950 or ENSG00000178999 or ENSG00000179335 or ENSG00000180138 or ENSG00000180370 or ENSG00000180815 or ENSG00000181085 or ENSG00000181409 or ENSG00000182541 or ENSG00000183049 or ENSG00000183421 or ENSG00000183735 or ENSG00000183765 or ENSG00000183943 or ENSG00000184216 or ENSG00000184304 or ENSG00000184343 or ENSG00000185324 or ENSG00000185386 or ENSG00000185532 or ENSG00000186716 or ENSG00000188130 or ENSG00000188191 or ENSG00000188322 or ENSG00000188906 or ENSG00000196335 or ENSG00000196455 or ENSG00000196632 or ENSG00000196730 or ENSG00000197168 or ENSG00000197442 or ENSG00000198001 or ENSG00000198355 or ENSG00000198586 or ENSG00000198648 or ENSG00000198752 or ENSG00000198909 or ENSG00000204217 or ENSG00000204344 or ENSG00000204435 or ENSG00000205111 or ENSG00000206203 or ENSG00000211455 or ENSG00000212122 or ENSG00000213923 or ENSG00000214102 or ENSG00000248333 or ENSG00000250506 or ENSG00000253729 or ENSG00000263528" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.11.1;2.7.11.8;2.7.11.9;2.7.11.10;2.7.11.11;2.7.11.12;2.7.11.13;2.7.11.17;2.7.11.21;2.7.11.22;2.7.11.24;2.7.11.25;2.7.11.30;2.7.12.1;2.7.12.2" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 2 - !!omap - - id: HMR_9578 + - id: "HMR_9578" - name: "" - metabolites: !!omap - m00196c: 1 @@ -173797,15 +173797,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000138814 and ENSG00000221823) or (ENSG00000105568 and ENSG00000113575) or (ENSG00000104695 and ENSG00000105568 and ENSG00000221914) or ENSG00000011485 or ENSG00000040199 or ENSG00000060069 or ENSG00000073711 or ENSG00000074211 or ENSG00000079393 or ENSG00000081721 or ENSG00000081913 or ENSG00000084112 or ENSG00000086717 or ENSG00000100034 or ENSG00000100526 or ENSG00000100614 or ENSG00000107758 or ENSG00000108861 or ENSG00000110536 or ENSG00000111266 or ENSG00000112425 or ENSG00000112679 or ENSG00000115241 or ENSG00000119414 or ENSG00000119938 or ENSG00000120129 or ENSG00000120875 or ENSG00000120910 or ENSG00000122484 or ENSG00000127952 or ENSG00000130829 or ENSG00000131771 or ENSG00000132323 or ENSG00000133878 or ENSG00000135447 or ENSG00000137713 or ENSG00000138032 or ENSG00000138166 or ENSG00000139318 or ENSG00000141298 or ENSG00000143507 or ENSG00000144048 or ENSG00000144579 or ENSG00000144677 or ENSG00000149599 or ENSG00000149923 or ENSG00000154415 or ENSG00000156194 or ENSG00000156475 or ENSG00000158050 or ENSG00000158716 or ENSG00000160075 or ENSG00000162999 or ENSG00000163644 or ENSG00000164086 or ENSG00000164088 or ENSG00000164332 or ENSG00000167065 or ENSG00000167393 or ENSG00000170836 or ENSG00000172531 or ENSG00000172830 or ENSG00000175175 or ENSG00000175215 or ENSG00000184203 or ENSG00000184545 or ENSG00000186298 or ENSG00000188386 or ENSG00000188542 or ENSG00000188716 or ENSG00000189037 or ENSG00000198842 or ENSG00000213639 or ENSG00000247077 or ENSG00000276023 - - rxnFrom: HMRdatabase - - eccodes: 3.1.3.16 - - references: + - gene_reaction_rule: "(ENSG00000138814 and ENSG00000221823) or (ENSG00000105568 and ENSG00000113575) or (ENSG00000104695 and ENSG00000105568 and ENSG00000221914) or ENSG00000011485 or ENSG00000040199 or ENSG00000060069 or ENSG00000073711 or ENSG00000074211 or ENSG00000079393 or ENSG00000081721 or ENSG00000081913 or ENSG00000084112 or ENSG00000086717 or ENSG00000100034 or ENSG00000100526 or ENSG00000100614 or ENSG00000107758 or ENSG00000108861 or ENSG00000110536 or ENSG00000111266 or ENSG00000112425 or ENSG00000112679 or ENSG00000115241 or ENSG00000119414 or ENSG00000119938 or ENSG00000120129 or ENSG00000120875 or ENSG00000120910 or ENSG00000122484 or ENSG00000127952 or ENSG00000130829 or ENSG00000131771 or ENSG00000132323 or ENSG00000133878 or ENSG00000135447 or ENSG00000137713 or ENSG00000138032 or ENSG00000138166 or ENSG00000139318 or ENSG00000141298 or ENSG00000143507 or ENSG00000144048 or ENSG00000144579 or ENSG00000144677 or ENSG00000149599 or ENSG00000149923 or ENSG00000154415 or ENSG00000156194 or ENSG00000156475 or ENSG00000158050 or ENSG00000158716 or ENSG00000160075 or ENSG00000162999 or ENSG00000163644 or ENSG00000164086 or ENSG00000164088 or ENSG00000164332 or ENSG00000167065 or ENSG00000167393 or ENSG00000170836 or ENSG00000172531 or ENSG00000172830 or ENSG00000175175 or ENSG00000175215 or ENSG00000184203 or ENSG00000184545 or ENSG00000186298 or ENSG00000188386 or ENSG00000188542 or ENSG00000188716 or ENSG00000189037 or ENSG00000198842 or ENSG00000213639 or ENSG00000247077 or ENSG00000276023" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.3.16" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9579 + - id: "HMR_9579" - name: "" - metabolites: !!omap - m01285c: 1 @@ -173814,15 +173814,15 @@ - m02801c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000132155 and ENSG00000157764) or (ENSG00000101109 and ENSG00000104375) or (ENSG00000092439 and ENSG00000119121) or (ENSG00000070770 and ENSG00000101266) or ENSG00000005249 or ENSG00000007047 or ENSG00000011566 or ENSG00000012983 or ENSG00000028116 or ENSG00000035664 or ENSG00000038382 or ENSG00000055332 or ENSG00000058729 or ENSG00000060237 or ENSG00000064393 or ENSG00000065613 or ENSG00000067900 or ENSG00000069020 or ENSG00000071054 or ENSG00000071242 or ENSG00000071909 or ENSG00000072133 or ENSG00000072195 or ENSG00000072518 or ENSG00000072786 or ENSG00000074590 or ENSG00000075413 or ENSG00000077264 or ENSG00000078061 or ENSG00000079277 or ENSG00000081320 or ENSG00000083290 or ENSG00000086015 or ENSG00000086232 or ENSG00000087586 or ENSG00000089022 or ENSG00000090376 or ENSG00000093134 or ENSG00000095777 or ENSG00000096063 or ENSG00000097046 or ENSG00000099308 or ENSG00000099875 or ENSG00000100749 or ENSG00000100784 or ENSG00000101049 or ENSG00000101349 or ENSG00000101782 or ENSG00000102096 or ENSG00000102572 or ENSG00000104205 or ENSG00000104312 or ENSG00000104814 or ENSG00000104936 or ENSG00000105053 or ENSG00000105146 or ENSG00000105221 or ENSG00000105613 or ENSG00000106683 or ENSG00000108443 or ENSG00000108946 or ENSG00000110422 or ENSG00000112079 or ENSG00000112739 or ENSG00000113712 or ENSG00000114302 or ENSG00000114670 or ENSG00000114738 or ENSG00000114904 or ENSG00000115661 or ENSG00000115687 or ENSG00000115977 or ENSG00000116141 or ENSG00000117020 or ENSG00000117650 or ENSG00000117676 or ENSG00000118515 or ENSG00000119408 or ENSG00000119638 or ENSG00000120539 or ENSG00000122966 or ENSG00000124784 or ENSG00000125651 or ENSG00000125834 or ENSG00000126562 or ENSG00000127564 or ENSG00000128829 or ENSG00000129465 or ENSG00000130175 or ENSG00000130413 or ENSG00000130669 or ENSG00000131023 or ENSG00000133059 or ENSG00000133083 or ENSG00000133275 or ENSG00000134070 or ENSG00000134318 or ENSG00000134398 or ENSG00000134602 or ENSG00000135090 or ENSG00000135250 or ENSG00000136098 or ENSG00000136643 or ENSG00000137193 or ENSG00000137275 or ENSG00000137601 or ENSG00000137843 or ENSG00000138756 or ENSG00000139908 or ENSG00000140474 or ENSG00000140992 or ENSG00000141503 or ENSG00000141551 or ENSG00000142149 or ENSG00000142208 or ENSG00000143674 or ENSG00000143776 or ENSG00000145949 or ENSG00000146872 or ENSG00000147044 or ENSG00000147133 or ENSG00000147613 or ENSG00000149269 or ENSG00000149311 or ENSG00000149554 or ENSG00000149930 or ENSG00000150457 or ENSG00000151292 or ENSG00000151414 or ENSG00000152332 or ENSG00000152953 or ENSG00000154237 or ENSG00000154310 or ENSG00000155657 or ENSG00000156970 or ENSG00000157106 or ENSG00000158828 or ENSG00000159792 or ENSG00000160145 or ENSG00000160469 or ENSG00000160551 or ENSG00000160584 or ENSG00000160602 or ENSG00000162302 or ENSG00000162526 or ENSG00000162889 or ENSG00000163349 or ENSG00000163482 or ENSG00000163545 or ENSG00000163788 or ENSG00000164543 or ENSG00000165238 or ENSG00000165304 or ENSG00000165752 or ENSG00000166333 or ENSG00000166483 or ENSG00000167657 or ENSG00000168038 or ENSG00000168067 or ENSG00000168404 or ENSG00000169118 or ENSG00000169302 or ENSG00000169679 or ENSG00000170145 or ENSG00000170390 or ENSG00000171219 or ENSG00000172071 or ENSG00000172315 or ENSG00000172680 or ENSG00000172939 or ENSG00000174672 or ENSG00000175054 or ENSG00000175634 or ENSG00000177169 or ENSG00000177189 or ENSG00000178093 or ENSG00000178607 or ENSG00000178950 or ENSG00000178999 or ENSG00000180138 or ENSG00000180370 or ENSG00000181409 or ENSG00000182541 or ENSG00000183421 or ENSG00000183765 or ENSG00000184216 or ENSG00000184343 or ENSG00000186716 or ENSG00000188191 or ENSG00000188322 or ENSG00000188906 or ENSG00000196335 or ENSG00000196455 or ENSG00000196632 or ENSG00000196730 or ENSG00000197168 or ENSG00000198001 or ENSG00000198355 or ENSG00000198586 or ENSG00000198648 or ENSG00000198752 or ENSG00000204344 or ENSG00000206203 or ENSG00000211455 or ENSG00000212122 or ENSG00000213923 or ENSG00000214102 or ENSG00000253729 - - rxnFrom: HMRdatabase - - eccodes: 2.7.11.1 - - references: + - gene_reaction_rule: "(ENSG00000132155 and ENSG00000157764) or (ENSG00000101109 and ENSG00000104375) or (ENSG00000092439 and ENSG00000119121) or (ENSG00000070770 and ENSG00000101266) or ENSG00000005249 or ENSG00000007047 or ENSG00000011566 or ENSG00000012983 or ENSG00000028116 or ENSG00000035664 or ENSG00000038382 or ENSG00000055332 or ENSG00000058729 or ENSG00000060237 or ENSG00000064393 or ENSG00000065613 or ENSG00000067900 or ENSG00000069020 or ENSG00000071054 or ENSG00000071242 or ENSG00000071909 or ENSG00000072133 or ENSG00000072195 or ENSG00000072518 or ENSG00000072786 or ENSG00000074590 or ENSG00000075413 or ENSG00000077264 or ENSG00000078061 or ENSG00000079277 or ENSG00000081320 or ENSG00000083290 or ENSG00000086015 or ENSG00000086232 or ENSG00000087586 or ENSG00000089022 or ENSG00000090376 or ENSG00000093134 or ENSG00000095777 or ENSG00000096063 or ENSG00000097046 or ENSG00000099308 or ENSG00000099875 or ENSG00000100749 or ENSG00000100784 or ENSG00000101049 or ENSG00000101349 or ENSG00000101782 or ENSG00000102096 or ENSG00000102572 or ENSG00000104205 or ENSG00000104312 or ENSG00000104814 or ENSG00000104936 or ENSG00000105053 or ENSG00000105146 or ENSG00000105221 or ENSG00000105613 or ENSG00000106683 or ENSG00000108443 or ENSG00000108946 or ENSG00000110422 or ENSG00000112079 or ENSG00000112739 or ENSG00000113712 or ENSG00000114302 or ENSG00000114670 or ENSG00000114738 or ENSG00000114904 or ENSG00000115661 or ENSG00000115687 or ENSG00000115977 or ENSG00000116141 or ENSG00000117020 or ENSG00000117650 or ENSG00000117676 or ENSG00000118515 or ENSG00000119408 or ENSG00000119638 or ENSG00000120539 or ENSG00000122966 or ENSG00000124784 or ENSG00000125651 or ENSG00000125834 or ENSG00000126562 or ENSG00000127564 or ENSG00000128829 or ENSG00000129465 or ENSG00000130175 or ENSG00000130413 or ENSG00000130669 or ENSG00000131023 or ENSG00000133059 or ENSG00000133083 or ENSG00000133275 or ENSG00000134070 or ENSG00000134318 or ENSG00000134398 or ENSG00000134602 or ENSG00000135090 or ENSG00000135250 or ENSG00000136098 or ENSG00000136643 or ENSG00000137193 or ENSG00000137275 or ENSG00000137601 or ENSG00000137843 or ENSG00000138756 or ENSG00000139908 or ENSG00000140474 or ENSG00000140992 or ENSG00000141503 or ENSG00000141551 or ENSG00000142149 or ENSG00000142208 or ENSG00000143674 or ENSG00000143776 or ENSG00000145949 or ENSG00000146872 or ENSG00000147044 or ENSG00000147133 or ENSG00000147613 or ENSG00000149269 or ENSG00000149311 or ENSG00000149554 or ENSG00000149930 or ENSG00000150457 or ENSG00000151292 or ENSG00000151414 or ENSG00000152332 or ENSG00000152953 or ENSG00000154237 or ENSG00000154310 or ENSG00000155657 or ENSG00000156970 or ENSG00000157106 or ENSG00000158828 or ENSG00000159792 or ENSG00000160145 or ENSG00000160469 or ENSG00000160551 or ENSG00000160584 or ENSG00000160602 or ENSG00000162302 or ENSG00000162526 or ENSG00000162889 or ENSG00000163349 or ENSG00000163482 or ENSG00000163545 or ENSG00000163788 or ENSG00000164543 or ENSG00000165238 or ENSG00000165304 or ENSG00000165752 or ENSG00000166333 or ENSG00000166483 or ENSG00000167657 or ENSG00000168038 or ENSG00000168067 or ENSG00000168404 or ENSG00000169118 or ENSG00000169302 or ENSG00000169679 or ENSG00000170145 or ENSG00000170390 or ENSG00000171219 or ENSG00000172071 or ENSG00000172315 or ENSG00000172680 or ENSG00000172939 or ENSG00000174672 or ENSG00000175054 or ENSG00000175634 or ENSG00000177169 or ENSG00000177189 or ENSG00000178093 or ENSG00000178607 or ENSG00000178950 or ENSG00000178999 or ENSG00000180138 or ENSG00000180370 or ENSG00000181409 or ENSG00000182541 or ENSG00000183421 or ENSG00000183765 or ENSG00000184216 or ENSG00000184343 or ENSG00000186716 or ENSG00000188191 or ENSG00000188322 or ENSG00000188906 or ENSG00000196335 or ENSG00000196455 or ENSG00000196632 or ENSG00000196730 or ENSG00000197168 or ENSG00000198001 or ENSG00000198355 or ENSG00000198586 or ENSG00000198648 or ENSG00000198752 or ENSG00000204344 or ENSG00000206203 or ENSG00000211455 or ENSG00000212122 or ENSG00000213923 or ENSG00000214102 or ENSG00000253729" + - rxnFrom: "HMRdatabase" + - eccodes: "2.7.11.1" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 2 - !!omap - - id: HMR_9580 + - id: "HMR_9580" - name: "" - metabolites: !!omap - m01413c: -1 @@ -173831,30 +173831,30 @@ - m02382s: -4 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000089060 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000089060" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9581 + - id: "HMR_9581" - name: "" - metabolites: !!omap - m02035c: -1 - m02035s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000146477 or ENSG00000175003 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000146477 or ENSG00000175003" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9582 + - id: "HMR_9582" - name: "" - metabolites: !!omap - m02035c: 1 @@ -173863,30 +173863,30 @@ - m02039s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000142494 or ENSG00000180638 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000142494 or ENSG00000180638" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9583 + - id: "HMR_9583" - name: "" - metabolites: !!omap - m02467c: -1 - m02467s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112499 or ENSG00000175003 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000112499 or ENSG00000175003" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9584 + - id: "HMR_9584" - name: "" - metabolites: !!omap - m02039c: 1 @@ -173895,15 +173895,15 @@ - m02467s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000142494 or ENSG00000180638 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000142494 or ENSG00000180638" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9585 + - id: "HMR_9585" - name: "" - metabolites: !!omap - m02039c: -1 @@ -173912,45 +173912,45 @@ - m02821s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110628 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000110628" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9586 + - id: "HMR_9586" - name: "" - metabolites: !!omap - m02482c: 1 - m02482s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000133065 or ENSG00000136052 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000133065 or ENSG00000136052" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9587 + - id: "HMR_9587" - name: "" - metabolites: !!omap - m01624c: 1 - m01624s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136868 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000136868" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9588 + - id: "HMR_9588" - name: "" - metabolites: !!omap - m01306c: -1 @@ -173959,15 +173959,15 @@ - m01571s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137204 or ENSG00000149452 or ENSG00000197901 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000137204 or ENSG00000149452 or ENSG00000197901" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9798 + - id: "HMR_9798" - name: "" - metabolites: !!omap - m01285c: 1 @@ -173978,15 +173978,15 @@ - m03164c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: 6.3.2.4 - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "6.3.2.4" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_9806 + - id: "HMR_9806" - name: "" - metabolites: !!omap - m02026c: -2 @@ -173995,15 +173995,15 @@ - m03170c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000065485 or ENSG00000143870 or ENSG00000155660 or ENSG00000166479 or ENSG00000167004 or ENSG00000185615 or ENSG00000185624 - - rxnFrom: HMRdatabase - - eccodes: 5.3.4.1 - - references: + - gene_reaction_rule: "ENSG00000065485 or ENSG00000143870 or ENSG00000155660 or ENSG00000166479 or ENSG00000167004 or ENSG00000185615 or ENSG00000185624" + - rxnFrom: "HMRdatabase" + - eccodes: "5.3.4.1" + - references: "" - subsystem: - - Isolated + - "Isolated" - confidence_score: 0 - !!omap - - id: HMR_0010 + - id: "HMR_0010" - name: "" - metabolites: !!omap - m00510c: -1 @@ -174012,15 +174012,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074416 or ENSG00000100997 or ENSG00000163686 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.23 - - references: + - gene_reaction_rule: "ENSG00000074416 or ENSG00000100997 or ENSG00000163686" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.23" + - references: "" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_0011 + - id: "HMR_0011" - name: "" - metabolites: !!omap - m01807s: -0.5 @@ -174028,15 +174028,15 @@ - m01820s: -0.5 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_0012 + - id: "HMR_0012" - name: "" - metabolites: !!omap - m00003s: 0.0001 @@ -174101,15 +174101,15 @@ - m03153s: 0.0001 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_0013 + - id: "HMR_0013" - name: "" - metabolites: !!omap - m01450s: 20 @@ -174118,15 +174118,15 @@ - m02048s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000175445 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.34 - - references: + - gene_reaction_rule: "ENSG00000175445" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.34" + - references: "" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_0014 + - id: "HMR_0014" - name: "" - metabolites: !!omap - m01450s: 680 @@ -174135,15 +174135,15 @@ - m02353s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000175445 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.34 - - references: + - gene_reaction_rule: "ENSG00000175445" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.34" + - references: "" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_0477 + - id: "HMR_0477" - name: "" - metabolites: !!omap - m01395s: -2 @@ -174152,15 +174152,15 @@ - m02740s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_0545 + - id: "HMR_0545" - name: "" - metabolites: !!omap - m00004c: -0.0001 @@ -174225,15 +174225,15 @@ - m03050c: -0.0001 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:1550861 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:1550861" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_0546 + - id: "HMR_0546" - name: "" - metabolites: !!omap - m00004c: -0.0001 @@ -174298,15 +174298,15 @@ - m03050c: -0.0001 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16137923 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16137923" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_0547 + - id: "HMR_0547" - name: "" - metabolites: !!omap - m00004c: -0.0001 @@ -174371,15 +174371,15 @@ - m03050c: -0.0001 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16137924 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16137924" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_0548 + - id: "HMR_0548" - name: "" - metabolites: !!omap - m00004c: -0.0005 @@ -174444,15 +174444,15 @@ - m03050c: -0.0005 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16137925 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16137925" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_0549 + - id: "HMR_0549" - name: "" - metabolites: !!omap - m00004c: -0.0005 @@ -174517,15 +174517,15 @@ - m03050c: -0.0005 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16137926 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16137926" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_0550 + - id: "HMR_0550" - name: "" - metabolites: !!omap - m00004c: -0.0005 @@ -174590,15 +174590,15 @@ - m03050c: -0.0005 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16137927 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16137927" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_0551 + - id: "HMR_0551" - name: "" - metabolites: !!omap - m00004c: -0.0005 @@ -174663,15 +174663,15 @@ - m03050c: -0.0005 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16137928 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16137928" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_0552 + - id: "HMR_0552" - name: "" - metabolites: !!omap - m00004c: -0.002 @@ -174736,15 +174736,15 @@ - m03050c: -0.002 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16137929 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16137929" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_0553 + - id: "HMR_0553" - name: "" - metabolites: !!omap - m00004c: -0.0001 @@ -174809,15 +174809,15 @@ - m03050c: -0.0001 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:3111757 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:3111757" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_0555 + - id: "HMR_0555" - name: "" - metabolites: !!omap - m00436c: -0.0001 @@ -174882,15 +174882,15 @@ - m00502c: -0.0001 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16137923 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16137923" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_0556 + - id: "HMR_0556" - name: "" - metabolites: !!omap - m00436c: -0.0005 @@ -174955,15 +174955,15 @@ - m00502c: -0.0005 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16137924 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16137924" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_0557 + - id: "HMR_0557" - name: "" - metabolites: !!omap - m00436c: -0.0005 @@ -175028,15 +175028,15 @@ - m00502c: -0.0005 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16137925 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16137925" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_0558 + - id: "HMR_0558" - name: "" - metabolites: !!omap - m00436c: -0.0005 @@ -175101,15 +175101,15 @@ - m00502c: -0.0005 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16137926 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16137926" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_0559 + - id: "HMR_0559" - name: "" - metabolites: !!omap - m00436c: -0.0005 @@ -175174,15 +175174,15 @@ - m00502c: -0.0005 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16137927 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16137927" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_0560 + - id: "HMR_0560" - name: "" - metabolites: !!omap - m00436c: -0.002 @@ -175247,15 +175247,15 @@ - m00502c: -0.002 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16137928 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16137928" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_0561 + - id: "HMR_0561" - name: "" - metabolites: !!omap - m00436c: -0.0001 @@ -175320,15 +175320,15 @@ - m00502c: -0.0001 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:3111757 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:3111757" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_0685 + - id: "HMR_0685" - name: "" - metabolites: !!omap - m00003c: 0.0001 @@ -175393,15 +175393,15 @@ - m03153c: 0.0001 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16137923 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16137923" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_0686 + - id: "HMR_0686" - name: "" - metabolites: !!omap - m00003c: 0.0001 @@ -175466,15 +175466,15 @@ - m03153c: 0.0001 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16137923 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16137923" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_0687 + - id: "HMR_0687" - name: "" - metabolites: !!omap - m00003c: 0.0001 @@ -175539,15 +175539,15 @@ - m03153c: 0.0001 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16137923 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16137923" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_0688 + - id: "HMR_0688" - name: "" - metabolites: !!omap - m00003c: 0.0005 @@ -175612,15 +175612,15 @@ - m03153c: 0.0005 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16137923 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16137923" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_0689 + - id: "HMR_0689" - name: "" - metabolites: !!omap - m00003c: 0.0005 @@ -175685,15 +175685,15 @@ - m03153c: 0.0005 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16137923 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16137923" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_0690 + - id: "HMR_0690" - name: "" - metabolites: !!omap - m00003c: 0.0005 @@ -175758,15 +175758,15 @@ - m03153c: 0.0005 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16137923 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16137923" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_0691 + - id: "HMR_0691" - name: "" - metabolites: !!omap - m00003c: 0.0005 @@ -175831,15 +175831,15 @@ - m03153c: 0.0005 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16137923 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16137923" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_0692 + - id: "HMR_0692" - name: "" - metabolites: !!omap - m00003c: 0.002 @@ -175904,15 +175904,15 @@ - m03153c: 0.002 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16137923 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16137923" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_1185 + - id: "HMR_1185" - name: "" - metabolites: !!omap - m00042m: 1 @@ -175922,15 +175922,15 @@ - m02630m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_1227 + - id: "HMR_1227" - name: "" - metabolites: !!omap - m00042m: 1 @@ -175940,15 +175940,15 @@ - m02630m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_5233 + - id: "HMR_5233" - name: "" - metabolites: !!omap - m01350l: 2 @@ -175960,15 +175960,15 @@ - m02908l: 75 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_5234 + - id: "HMR_5234" - name: "" - metabolites: !!omap - m01350r: -2 @@ -175982,15 +175982,15 @@ - m02908r: -75 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_5238 + - id: "HMR_5238" - name: "" - metabolites: !!omap - m00656l: 25 @@ -176003,15 +176003,15 @@ - m02908l: 160 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_5239 + - id: "HMR_5239" - name: "" - metabolites: !!omap - m00656r: -25 @@ -176026,15 +176026,15 @@ - m02908r: -160 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_5243 + - id: "HMR_5243" - name: "" - metabolites: !!omap - m00656l: 165 @@ -176050,15 +176050,15 @@ - m03146l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_5244 + - id: "HMR_5244" - name: "" - metabolites: !!omap - m00656r: -165 @@ -176075,15 +176075,15 @@ - m03147r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_5247 + - id: "HMR_5247" - name: "" - metabolites: !!omap - m00656l: 1 @@ -176101,15 +176101,15 @@ - m02956l: 90 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_5257 + - id: "HMR_5257" - name: "" - metabolites: !!omap - m00003r: 0.0005 @@ -176174,15 +176174,15 @@ - m03153r: 0.0005 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16137923 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16137923" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_9022 + - id: "HMR_9022" - name: "" - metabolites: !!omap - m02956s: 0.5 @@ -176190,30 +176190,30 @@ - m02959s: 0.5 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_0004 + - id: "HMR_0004" - name: "" - metabolites: !!omap - m00503c: 1 - m00503s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0006 + - id: "HMR_0006" - name: "" - metabolites: !!omap - m02959s: 10385 @@ -176221,15 +176221,15 @@ - m03147s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074416 or ENSG00000100997 or ENSG00000115884 or ENSG00000142798 or ENSG00000163686 or ENSG00000175445 or ENSG00000277494 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.34;3.1.1.23 - - references: + - gene_reaction_rule: "ENSG00000074416 or ENSG00000100997 or ENSG00000115884 or ENSG00000142798 or ENSG00000163686 or ENSG00000175445 or ENSG00000277494" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.34;3.1.1.23" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0007 + - id: "HMR_0007" - name: "" - metabolites: !!omap - m00241s: 1 @@ -176238,15 +176238,15 @@ - m02959s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000175445 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.34 - - references: + - gene_reaction_rule: "ENSG00000175445" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.34" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0008 + - id: "HMR_0008" - name: "" - metabolites: !!omap - m00241s: -1 @@ -176255,30 +176255,30 @@ - m02040s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000175445 - - rxnFrom: HMRdatabase - - eccodes: 3.1.1.34 - - references: + - gene_reaction_rule: "ENSG00000175445" + - rxnFrom: "HMRdatabase" + - eccodes: "3.1.1.34" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0009 + - id: "HMR_0009" - name: "" - metabolites: !!omap - m00510c: 1 - m00510s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0015 + - id: "HMR_0015" - name: "" - metabolites: !!omap - m00003s: 0.0048 @@ -176343,15 +176343,15 @@ - m03153s: 0.0001 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0016 + - id: "HMR_0016" - name: "" - metabolites: !!omap - m00003s: -0.0001 @@ -176416,15 +176416,15 @@ - m03153s: -0.0001 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0017 + - id: "HMR_0017" - name: "" - metabolites: !!omap - m01410s: 0.125 @@ -176438,180 +176438,180 @@ - m03134s: 0.125 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0018 + - id: "HMR_0018" - name: "" - metabolites: !!omap - m01450c: -1 - m01450s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000015520 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000015520" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0019 + - id: "HMR_0019" - name: "" - metabolites: !!omap - m01451l: 1 - m01451s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073060 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000073060" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0155 + - id: "HMR_0155" - name: "" - metabolites: !!omap - m01410c: 1 - m01410s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0164 + - id: "HMR_0164" - name: "" - metabolites: !!omap - m03134c: 1 - m03134s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0167 + - id: "HMR_0167" - name: "" - metabolites: !!omap - m02120c: 1 - m02120s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0170 + - id: "HMR_0170" - name: "" - metabolites: !!omap - m02108c: 1 - m02108s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0173 + - id: "HMR_0173" - name: "" - metabolites: !!omap - m02642c: 1 - m02642s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0176 + - id: "HMR_0176" - name: "" - metabolites: !!omap - m02614c: 1 - m02614s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0179 + - id: "HMR_0179" - name: "" - metabolites: !!omap - m01648c: 1 - m01648s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12856180;PMID:12883891;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12856180;PMID:12883891;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0183 + - id: "HMR_0183" - name: "" - metabolites: !!omap - m03117c: 1 - m03117s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0187 + - id: "HMR_0187" - name: "" - metabolites: !!omap - m02344c: 1 - m02344s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12856180;PMID:12883891;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12856180;PMID:12883891;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0190 + - id: "HMR_0190" - name: "" - metabolites: !!omap - m01285c: 1 @@ -176623,30 +176623,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074410 or ENSG00000104267 or ENSG00000107159 or ENSG00000118298 or ENSG00000131686 or ENSG00000133742 or ENSG00000159593 or ENSG00000164879 or ENSG00000165029 or ENSG00000166747 or ENSG00000167434 or ENSG00000168748 or ENSG00000169239 or ENSG00000174990 or ENSG00000178538 or ENSG00000185015 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16858612 + - gene_reaction_rule: "ENSG00000074410 or ENSG00000104267 or ENSG00000107159 or ENSG00000118298 or ENSG00000131686 or ENSG00000133742 or ENSG00000159593 or ENSG00000164879 or ENSG00000165029 or ENSG00000166747 or ENSG00000167434 or ENSG00000168748 or ENSG00000169239 or ENSG00000174990 or ENSG00000178538 or ENSG00000185015" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16858612" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0191 + - id: "HMR_0191" - name: "" - metabolites: !!omap - m03051c: 1 - m03051s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0194 + - id: "HMR_0194" - name: "" - metabolites: !!omap - m01285c: 1 @@ -176658,30 +176658,30 @@ - m03051s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0195 + - id: "HMR_0195" - name: "" - metabolites: !!omap - m02494c: 1 - m02494s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12856180;PMID:12883891;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12856180;PMID:12883891;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0198 + - id: "HMR_0198" - name: "" - metabolites: !!omap - m01285c: 1 @@ -176693,30 +176693,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16858612 + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16858612" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0199 + - id: "HMR_0199" - name: "" - metabolites: !!omap - m00128c: 1 - m00128s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0202 + - id: "HMR_0202" - name: "" - metabolites: !!omap - m00128c: -1 @@ -176728,30 +176728,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0203 + - id: "HMR_0203" - name: "" - metabolites: !!omap - m00117c: 1 - m00117s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0207 + - id: "HMR_0207" - name: "" - metabolites: !!omap - m00117c: -1 @@ -176763,30 +176763,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0208 + - id: "HMR_0208" - name: "" - metabolites: !!omap - m02745c: 1 - m02745s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0211 + - id: "HMR_0211" - name: "" - metabolites: !!omap - m01285c: 1 @@ -176798,30 +176798,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0212 + - id: "HMR_0212" - name: "" - metabolites: !!omap - m02690c: 1 - m02690s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0215 + - id: "HMR_0215" - name: "" - metabolites: !!omap - m01285c: 1 @@ -176833,30 +176833,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0216 + - id: "HMR_0216" - name: "" - metabolites: !!omap - m02674c: 1 - m02674s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0224 + - id: "HMR_0224" - name: "" - metabolites: !!omap - m01285c: 1 @@ -176868,30 +176868,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16858612 + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16858612" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0225 + - id: "HMR_0225" - name: "" - metabolites: !!omap - m02675c: 1 - m02675s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12856180;PMID:12883891;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12856180;PMID:12883891;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0231 + - id: "HMR_0231" - name: "" - metabolites: !!omap - m01285c: 1 @@ -176903,30 +176903,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16858612 + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16858612" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0232 + - id: "HMR_0232" - name: "" - metabolites: !!omap - m01197c: 1 - m01197s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0235 + - id: "HMR_0235" - name: "" - metabolites: !!omap - m01197c: -1 @@ -176938,30 +176938,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0236 + - id: "HMR_0236" - name: "" - metabolites: !!omap - m02456c: 1 - m02456s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0239 + - id: "HMR_0239" - name: "" - metabolites: !!omap - m01285c: 1 @@ -176973,30 +176973,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0240 + - id: "HMR_0240" - name: "" - metabolites: !!omap - m00003c: 1 - m00003s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0243 + - id: "HMR_0243" - name: "" - metabolites: !!omap - m00003c: -1 @@ -177008,30 +177008,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0244 + - id: "HMR_0244" - name: "" - metabolites: !!omap - m01238c: 1 - m01238s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0247 + - id: "HMR_0247" - name: "" - metabolites: !!omap - m01238c: -1 @@ -177043,30 +177043,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0248 + - id: "HMR_0248" - name: "" - metabolites: !!omap - m02938c: 1 - m02938s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0253 + - id: "HMR_0253" - name: "" - metabolites: !!omap - m01285c: 1 @@ -177078,30 +177078,30 @@ - m02938s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16858612 + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16858612" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0254 + - id: "HMR_0254" - name: "" - metabolites: !!omap - m00019c: 1 - m00019s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0257 + - id: "HMR_0257" - name: "" - metabolites: !!omap - m00019c: -1 @@ -177113,30 +177113,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0258 + - id: "HMR_0258" - name: "" - metabolites: !!omap - m01585c: 1 - m01585s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0261 + - id: "HMR_0261" - name: "" - metabolites: !!omap - m01285c: 1 @@ -177148,30 +177148,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0262 + - id: "HMR_0262" - name: "" - metabolites: !!omap - m02646c: 1 - m02646s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0265 + - id: "HMR_0265" - name: "" - metabolites: !!omap - m01285c: 1 @@ -177183,30 +177183,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16858612 + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16858612" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0266 + - id: "HMR_0266" - name: "" - metabolites: !!omap - m01778c: 1 - m01778s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12856180;PMID:12883891;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12856180;PMID:12883891;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0269 + - id: "HMR_0269" - name: "" - metabolites: !!omap - m01285c: 1 @@ -177218,30 +177218,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16858612 + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16858612" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0270 + - id: "HMR_0270" - name: "" - metabolites: !!omap - m00115c: 1 - m00115s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0273 + - id: "HMR_0273" - name: "" - metabolites: !!omap - m00115c: -1 @@ -177253,30 +177253,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0274 + - id: "HMR_0274" - name: "" - metabolites: !!omap - m00104c: 1 - m00104s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0277 + - id: "HMR_0277" - name: "" - metabolites: !!omap - m00104c: -1 @@ -177288,30 +177288,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0278 + - id: "HMR_0278" - name: "" - metabolites: !!omap - m02613c: 1 - m02613s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0281 + - id: "HMR_0281" - name: "" - metabolites: !!omap - m01285c: 1 @@ -177323,30 +177323,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0282 + - id: "HMR_0282" - name: "" - metabolites: !!omap - m01771c: 1 - m01771s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0287 + - id: "HMR_0287" - name: "" - metabolites: !!omap - m01285c: 1 @@ -177358,30 +177358,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0288 + - id: "HMR_0288" - name: "" - metabolites: !!omap - m00017c: 1 - m00017s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0291 + - id: "HMR_0291" - name: "" - metabolites: !!omap - m00017c: -1 @@ -177393,30 +177393,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0292 + - id: "HMR_0292" - name: "" - metabolites: !!omap - m01584c: 1 - m01584s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0295 + - id: "HMR_0295" - name: "" - metabolites: !!omap - m01285c: 1 @@ -177428,30 +177428,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0296 + - id: "HMR_0296" - name: "" - metabolites: !!omap - m01235c: 1 - m01235s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0299 + - id: "HMR_0299" - name: "" - metabolites: !!omap - m01235c: -1 @@ -177463,30 +177463,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0300 + - id: "HMR_0300" - name: "" - metabolites: !!omap - m01207c: 1 - m01207s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0303 + - id: "HMR_0303" - name: "" - metabolites: !!omap - m01207c: -1 @@ -177498,30 +177498,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0304 + - id: "HMR_0304" - name: "" - metabolites: !!omap - m02457c: 1 - m02457s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0307 + - id: "HMR_0307" - name: "" - metabolites: !!omap - m01285c: 1 @@ -177533,30 +177533,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0308 + - id: "HMR_0308" - name: "" - metabolites: !!omap - m02053c: 1 - m02053s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0311 + - id: "HMR_0311" - name: "" - metabolites: !!omap - m01285c: 1 @@ -177568,30 +177568,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0312 + - id: "HMR_0312" - name: "" - metabolites: !!omap - m01373c: 1 - m01373s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0317 + - id: "HMR_0317" - name: "" - metabolites: !!omap - m01285c: 1 @@ -177603,30 +177603,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0318 + - id: "HMR_0318" - name: "" - metabolites: !!omap - m01583c: 1 - m01583s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0321 + - id: "HMR_0321" - name: "" - metabolites: !!omap - m01285c: 1 @@ -177638,30 +177638,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0322 + - id: "HMR_0322" - name: "" - metabolites: !!omap - m01582c: 1 - m01582s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0325 + - id: "HMR_0325" - name: "" - metabolites: !!omap - m01285c: 1 @@ -177673,30 +177673,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0326 + - id: "HMR_0326" - name: "" - metabolites: !!omap - m03045c: 1 - m03045s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0329 + - id: "HMR_0329" - name: "" - metabolites: !!omap - m01285c: 1 @@ -177708,30 +177708,30 @@ - m03045s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0330 + - id: "HMR_0330" - name: "" - metabolites: !!omap - m02385c: 1 - m02385s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12856180;PMID:12883891;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12856180;PMID:12883891;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0335 + - id: "HMR_0335" - name: "" - metabolites: !!omap - m01285c: 1 @@ -177743,30 +177743,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16858612 + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16858612" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0336 + - id: "HMR_0336" - name: "" - metabolites: !!omap - m02564c: 1 - m02564s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0339 + - id: "HMR_0339" - name: "" - metabolites: !!omap - m01285c: 1 @@ -177778,30 +177778,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0340 + - id: "HMR_0340" - name: "" - metabolites: !!omap - m01432c: 1 - m01432s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0343 + - id: "HMR_0343" - name: "" - metabolites: !!omap - m01285c: 1 @@ -177813,30 +177813,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0344 + - id: "HMR_0344" - name: "" - metabolites: !!omap - m03153c: 1 - m03153s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0347 + - id: "HMR_0347" - name: "" - metabolites: !!omap - m01285c: 1 @@ -177848,30 +177848,30 @@ - m03153s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0348 + - id: "HMR_0348" - name: "" - metabolites: !!omap - m02389c: 1 - m02389s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0351 + - id: "HMR_0351" - name: "" - metabolites: !!omap - m01285c: 1 @@ -177883,30 +177883,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16858612 + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16858612" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0352 + - id: "HMR_0352" - name: "" - metabolites: !!omap - m02939c: 1 - m02939s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0355 + - id: "HMR_0355" - name: "" - metabolites: !!omap - m01285c: 1 @@ -177918,30 +177918,30 @@ - m02939s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0356 + - id: "HMR_0356" - name: "" - metabolites: !!omap - m02648c: 1 - m02648s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0359 + - id: "HMR_0359" - name: "" - metabolites: !!omap - m01285c: 1 @@ -177953,30 +177953,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0360 + - id: "HMR_0360" - name: "" - metabolites: !!omap - m01784c: 1 - m01784s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0363 + - id: "HMR_0363" - name: "" - metabolites: !!omap - m01285c: 1 @@ -177988,30 +177988,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0364 + - id: "HMR_0364" - name: "" - metabolites: !!omap - m01741c: 1 - m01741s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0367 + - id: "HMR_0367" - name: "" - metabolites: !!omap - m01285c: 1 @@ -178023,30 +178023,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0368 + - id: "HMR_0368" - name: "" - metabolites: !!omap - m00135c: 1 - m00135s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0371 + - id: "HMR_0371" - name: "" - metabolites: !!omap - m00135c: -1 @@ -178058,30 +178058,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0372 + - id: "HMR_0372" - name: "" - metabolites: !!omap - m00114c: 1 - m00114s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0375 + - id: "HMR_0375" - name: "" - metabolites: !!omap - m00114c: -1 @@ -178093,30 +178093,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0376 + - id: "HMR_0376" - name: "" - metabolites: !!omap - m01689c: 1 - m01689s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0379 + - id: "HMR_0379" - name: "" - metabolites: !!omap - m01285c: 1 @@ -178128,30 +178128,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0380 + - id: "HMR_0380" - name: "" - metabolites: !!omap - m00010c: 1 - m00010s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0383 + - id: "HMR_0383" - name: "" - metabolites: !!omap - m00010c: -1 @@ -178163,30 +178163,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0384 + - id: "HMR_0384" - name: "" - metabolites: !!omap - m00341c: 1 - m00341s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0387 + - id: "HMR_0387" - name: "" - metabolites: !!omap - m00341c: -1 @@ -178198,30 +178198,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0388 + - id: "HMR_0388" - name: "" - metabolites: !!omap - m00260c: 1 - m00260s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0391 + - id: "HMR_0391" - name: "" - metabolites: !!omap - m00260c: -1 @@ -178233,30 +178233,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0392 + - id: "HMR_0392" - name: "" - metabolites: !!omap - m00315c: 1 - m00315s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0395 + - id: "HMR_0395" - name: "" - metabolites: !!omap - m00315c: -1 @@ -178268,30 +178268,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0396 + - id: "HMR_0396" - name: "" - metabolites: !!omap - m02387c: 1 - m02387s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0399 + - id: "HMR_0399" - name: "" - metabolites: !!omap - m01285c: 1 @@ -178303,30 +178303,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16858612 + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16858612" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0400 + - id: "HMR_0400" - name: "" - metabolites: !!omap - m01932c: 1 - m01932s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0403 + - id: "HMR_0403" - name: "" - metabolites: !!omap - m01285c: 1 @@ -178338,30 +178338,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16858612 + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16858612" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0404 + - id: "HMR_0404" - name: "" - metabolites: !!omap - m01696c: 1 - m01696s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12856180;PMID:12883891;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12856180;PMID:12883891;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0407 + - id: "HMR_0407" - name: "" - metabolites: !!omap - m01285c: 1 @@ -178373,30 +178373,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16858612 + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16858612" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0408 + - id: "HMR_0408" - name: "" - metabolites: !!omap - m01362c: 1 - m01362s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0411 + - id: "HMR_0411" - name: "" - metabolites: !!omap - m01285c: 1 @@ -178408,30 +178408,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16858612 + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16858612" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0412 + - id: "HMR_0412" - name: "" - metabolites: !!omap - m01291c: 1 - m01291s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0415 + - id: "HMR_0415" - name: "" - metabolites: !!omap - m01285c: 1 @@ -178443,30 +178443,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0416 + - id: "HMR_0416" - name: "" - metabolites: !!omap - m00132c: 1 - m00132s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0419 + - id: "HMR_0419" - name: "" - metabolites: !!omap - m00132c: -1 @@ -178478,30 +178478,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0420 + - id: "HMR_0420" - name: "" - metabolites: !!omap - m00111c: 1 - m00111s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0423 + - id: "HMR_0423" - name: "" - metabolites: !!omap - m00111c: -1 @@ -178513,30 +178513,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0424 + - id: "HMR_0424" - name: "" - metabolites: !!omap - m00094c: 1 - m00094s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0427 + - id: "HMR_0427" - name: "" - metabolites: !!omap - m00094c: -1 @@ -178548,30 +178548,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0428 + - id: "HMR_0428" - name: "" - metabolites: !!omap - m00008c: 1 - m00008s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0431 + - id: "HMR_0431" - name: "" - metabolites: !!omap - m00008c: -1 @@ -178583,30 +178583,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0432 + - id: "HMR_0432" - name: "" - metabolites: !!omap - m00021c: 1 - m00021s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0435 + - id: "HMR_0435" - name: "" - metabolites: !!omap - m00021c: -1 @@ -178618,30 +178618,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0436 + - id: "HMR_0436" - name: "" - metabolites: !!omap - m00265c: 1 - m00265s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000121769 or ENSG00000130304 or ENSG00000135218 or ENSG00000143554 or ENSG00000145384 or ENSG00000163586 or ENSG00000164434 or ENSG00000164687 or ENSG00000167114 or ENSG00000170231 or ENSG00000170323 or ENSG00000197416 or ENSG00000205186" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0439 + - id: "HMR_0439" - name: "" - metabolites: !!omap - m00265c: -1 @@ -178653,45 +178653,45 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0440 + - id: "HMR_0440" - name: "" - metabolites: !!omap - m02746c: 1 - m02746s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0444 + - id: "HMR_0444" - name: "" - metabolites: !!omap - m01983c: -1 - m01983s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165269 or ENSG00000165272 or ENSG00000259916 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:9124577 + - gene_reaction_rule: "ENSG00000165269 or ENSG00000165272 or ENSG00000259916" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:9124577" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0469 + - id: "HMR_0469" - name: "" - metabolites: !!omap - m01285c: 1 @@ -178703,15 +178703,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12663868;PMID:16622704;PMID:17404808 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12663868;PMID:16622704;PMID:17404808" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0470 + - id: "HMR_0470" - name: "" - metabolites: !!omap - m01285c: 1 @@ -178723,15 +178723,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005471 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12663868;PMID:16622704;PMID:17404808 + - gene_reaction_rule: "ENSG00000005471" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12663868;PMID:16622704;PMID:17404808" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0476 + - id: "HMR_0476" - name: "" - metabolites: !!omap - m01285c: 1 @@ -178743,75 +178743,75 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005471 or ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16858612 + - gene_reaction_rule: "ENSG00000005471 or ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16858612" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0770 + - id: "HMR_0770" - name: "" - metabolites: !!omap - m01972c: -1 - m01972s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000139433 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000139433" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0782 + - id: "HMR_0782" - name: "" - metabolites: !!omap - m02930c: -1 - m02930s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1082 + - id: "HMR_1082" - name: "" - metabolites: !!omap - m02366c: -1 - m02366s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103222 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:2753893;PMID:10064732 + - gene_reaction_rule: "ENSG00000103222" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:2753893;PMID:10064732" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1086 + - id: "HMR_1086" - name: "" - metabolites: !!omap - m02369c: -1 - m02369s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000184999 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "ENSG00000184999" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1898 + - id: "HMR_1898" - name: "" - metabolites: !!omap - m01980c: -1 @@ -178822,15 +178822,15 @@ - m02617s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 or ENSG00000084453 or ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113 + - gene_reaction_rule: "ENSG00000021488 or ENSG00000084453 or ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1899 + - id: "HMR_1899" - name: "" - metabolites: !!omap - m02046c: -1 @@ -178841,15 +178841,15 @@ - m02900s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 or ENSG00000084453 or ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113 + - gene_reaction_rule: "ENSG00000021488 or ENSG00000084453 or ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1900 + - id: "HMR_1900" - name: "" - metabolites: !!omap - m02046c: -1 @@ -178860,15 +178860,15 @@ - m02901s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 or ENSG00000084453 or ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113 + - gene_reaction_rule: "ENSG00000021488 or ENSG00000084453 or ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1901 + - id: "HMR_1901" - name: "" - metabolites: !!omap - m01980c: -1 @@ -178879,15 +178879,15 @@ - m02897s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 or ENSG00000084453 or ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113 + - gene_reaction_rule: "ENSG00000021488 or ENSG00000084453 or ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1902 + - id: "HMR_1902" - name: "" - metabolites: !!omap - m02046c: -1 @@ -178898,15 +178898,15 @@ - m02900s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 or ENSG00000084453 or ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113 + - gene_reaction_rule: "ENSG00000021488 or ENSG00000084453 or ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1903 + - id: "HMR_1903" - name: "" - metabolites: !!omap - m02046c: -1 @@ -178917,15 +178917,15 @@ - m02901s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 or ENSG00000084453 or ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113 + - gene_reaction_rule: "ENSG00000021488 or ENSG00000084453 or ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1904 + - id: "HMR_1904" - name: "" - metabolites: !!omap - m01260c: 1 @@ -178936,15 +178936,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 or ENSG00000084453 or ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113 + - gene_reaction_rule: "ENSG00000021488 or ENSG00000084453 or ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1905 + - id: "HMR_1905" - name: "" - metabolites: !!omap - m01260c: 1 @@ -178955,15 +178955,15 @@ - m02900s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 or ENSG00000084453 or ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113 + - gene_reaction_rule: "ENSG00000021488 or ENSG00000084453 or ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1906 + - id: "HMR_1906" - name: "" - metabolites: !!omap - m01260c: 1 @@ -178974,15 +178974,15 @@ - m02901s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 or ENSG00000084453 or ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113 + - gene_reaction_rule: "ENSG00000021488 or ENSG00000084453 or ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1907 + - id: "HMR_1907" - name: "" - metabolites: !!omap - m01736c: 1 @@ -178993,15 +178993,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 or ENSG00000084453 or ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113 + - gene_reaction_rule: "ENSG00000021488 or ENSG00000084453 or ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1908 + - id: "HMR_1908" - name: "" - metabolites: !!omap - m01736c: 1 @@ -179012,15 +179012,15 @@ - m02900s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 or ENSG00000084453 or ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113 + - gene_reaction_rule: "ENSG00000021488 or ENSG00000084453 or ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1909 + - id: "HMR_1909" - name: "" - metabolites: !!omap - m01736c: 1 @@ -179031,15 +179031,15 @@ - m02901s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 or ENSG00000084453 or ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113 + - gene_reaction_rule: "ENSG00000021488 or ENSG00000084453 or ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1910 + - id: "HMR_1910" - name: "" - metabolites: !!omap - m01285r: 1 @@ -179051,15 +179051,15 @@ - m02751r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:15209530 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:15209530" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1911 + - id: "HMR_1911" - name: "" - metabolites: !!omap - m01285c: 1 @@ -179071,15 +179071,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000138075 and ENSG00000143921) or ENSG00000165029 or ENSG00000160179 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12663868;PMID:16622704;PMID:17404808 + - gene_reaction_rule: "(ENSG00000138075 and ENSG00000143921) or ENSG00000165029 or ENSG00000160179" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12663868;PMID:16622704;PMID:17404808" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 2 - !!omap - - id: HMR_1913 + - id: "HMR_1913" - name: "" - metabolites: !!omap - m01285c: 2 @@ -179091,15 +179091,15 @@ - m02946s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:15297262 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:15297262" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1914 + - id: "HMR_1914" - name: "" - metabolites: !!omap - m02046c: -1 @@ -179108,15 +179108,15 @@ - m02946s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000091138 or ENSG00000112053 or ENSG00000145217 or ENSG00000147606 or ENSG00000155850 or ENSG00000174502 or ENSG00000181045 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12759755 + - gene_reaction_rule: "ENSG00000091138 or ENSG00000112053 or ENSG00000145217 or ENSG00000147606 or ENSG00000155850 or ENSG00000174502 or ENSG00000181045" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12759755" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1919 + - id: "HMR_1919" - name: "" - metabolites: !!omap - m01450c: -1 @@ -179126,30 +179126,30 @@ - m02682c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088002 or ENSG00000261052 - - rxnFrom: HMRdatabase - - eccodes: 2.8.2.2 - - references: + - gene_reaction_rule: "ENSG00000088002 or ENSG00000261052" + - rxnFrom: "HMRdatabase" + - eccodes: "2.8.2.2" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 2 - !!omap - - id: HMR_2013 + - id: "HMR_2013" - name: "" - metabolites: !!omap - m01309c: -1 - m01309s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3858 + - id: "HMR_3858" - name: "" - metabolites: !!omap - m01716c: 1 @@ -179158,30 +179158,30 @@ - m02039s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3916 + - id: "HMR_3916" - name: "" - metabolites: !!omap - m01115c: -1 - m01115s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110195 or ENSG00000110203 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000110195 or ENSG00000110203" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3951 + - id: "HMR_3951" - name: "" - metabolites: !!omap - m02519c: -1 @@ -179190,30 +179190,30 @@ - m02949s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3959 + - id: "HMR_3959" - name: "" - metabolites: !!omap - m02631c: -1 - m02631s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3964 + - id: "HMR_3964" - name: "" - metabolites: !!omap - m01285c: 1 @@ -179223,90 +179223,90 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4062 + - id: "HMR_4062" - name: "" - metabolites: !!omap - m02813c: -1 - m02813s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14977409;PMID:4469603 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14977409;PMID:4469603" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4063 + - id: "HMR_4063" - name: "" - metabolites: !!omap - m02814c: -1 - m02814s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14977409 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14977409" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4249 + - id: "HMR_4249" - name: "" - metabolites: !!omap - m03151c: -1 - m03151s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:18124509;PMID:6027578 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:18124509;PMID:6027578" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4321 + - id: "HMR_4321" - name: "" - metabolites: !!omap - m01840c: -1 - m01840s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109667 or ENSG00000133460 or ENSG00000136856 or ENSG00000142583 or ENSG00000163581 or ENSG00000197241 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12750891 + - gene_reaction_rule: "ENSG00000109667 or ENSG00000133460 or ENSG00000136856 or ENSG00000142583 or ENSG00000163581 or ENSG00000197241" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12750891" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4432 + - id: "HMR_4432" - name: "" - metabolites: !!omap - m02477c: -1 - m02477s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4433 + - id: "HMR_4433" - name: "" - metabolites: !!omap - m01980c: -1 @@ -179317,15 +179317,15 @@ - m02124s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4434 + - id: "HMR_4434" - name: "" - metabolites: !!omap - m02046c: -1 @@ -179336,15 +179336,15 @@ - m02900s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4435 + - id: "HMR_4435" - name: "" - metabolites: !!omap - m02046c: -1 @@ -179355,15 +179355,15 @@ - m02901s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4436 + - id: "HMR_4436" - name: "" - metabolites: !!omap - m02026c: -1 @@ -179374,15 +179374,15 @@ - m02124s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4691 + - id: "HMR_4691" - name: "" - metabolites: !!omap - m00970c: 1 @@ -179391,15 +179391,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000010379 or ENSG00000111181 or ENSG00000132164 or ENSG00000157103 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000010379 or ENSG00000111181 or ENSG00000132164 or ENSG00000157103" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4721 + - id: "HMR_4721" - name: "" - metabolites: !!omap - m02519c: 1 @@ -179408,15 +179408,15 @@ - m02680s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138074 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10334869;PMID:12603856;PMID:17024033;PMID:9516450 + - gene_reaction_rule: "ENSG00000138074" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10334869;PMID:12603856;PMID:17024033;PMID:9516450" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4844 + - id: "HMR_4844" - name: "" - metabolites: !!omap - m01280c: -1 @@ -179425,15 +179425,15 @@ - m02170s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: HMRdatabase - - eccodes: 2.3.1.85 - - references: PMID:1550832;PMID:8438778 + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "HMRdatabase" + - eccodes: "2.3.1.85" + - references: "PMID:1550832;PMID:8438778" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4845 + - id: "HMR_4845" - name: "" - metabolites: !!omap - m01280c: 1 @@ -179442,165 +179442,165 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137860 or ENSG00000156222 or ENSG00000197506 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12856181;PMID:10772724 + - gene_reaction_rule: "ENSG00000137860 or ENSG00000156222 or ENSG00000197506" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12856181;PMID:10772724" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4847 + - id: "HMR_4847" - name: "" - metabolites: !!omap - m01279c: -1 - m01279s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174669 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12838422;PMID:168203;PMID:3728675;PMID:8438778;PMID:12006583;PMID:14747464;PMID:16595656;PMID:17187757;PMID:17279066;PMID:6778226;PMID:7479738;PMID:7419607;PMID:1260500 + - gene_reaction_rule: "ENSG00000174669" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12838422;PMID:168203;PMID:3728675;PMID:8438778;PMID:12006583;PMID:14747464;PMID:16595656;PMID:17187757;PMID:17279066;PMID:6778226;PMID:7479738;PMID:7419607;PMID:1260500" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4848 + - id: "HMR_4848" - name: "" - metabolites: !!omap - m02159c: -1 - m02159s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174669 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12838422;PMID:168203;PMID:3728675;PMID:8438778;PMID:12006583;PMID:14747464;PMID:16595656;PMID:17187757;PMID:17279066;PMID:6778226;PMID:7479738;PMID:7419607;PMID:1260500 + - gene_reaction_rule: "ENSG00000174669" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12838422;PMID:168203;PMID:3728675;PMID:8438778;PMID:12006583;PMID:14747464;PMID:16595656;PMID:17187757;PMID:17279066;PMID:6778226;PMID:7479738;PMID:7419607;PMID:1260500" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4849 + - id: "HMR_4849" - name: "" - metabolites: !!omap - m01588c: -1 - m01588s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000003989 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770310;PMID:11004451;PMID:15465786;PMID:16082501;PMID:17466261;PMID:7718542;PMID:10049700;PMID:10072483;PMID:10391915;PMID:10574970;PMID:11311135;PMID:11389679;PMID:11557028;PMID:11564694;PMID:11742812;PMID:11827462;PMID:12117417;PMID:12824232;PMID:14574404;PMID:7690540;PMID:9751058;PMID:9759917;PMID:12883891;PMID:16288981;PMID:1904693;PMID:4424190;PMID:6432599;PMID:9868191 + - gene_reaction_rule: "ENSG00000003989" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770310;PMID:11004451;PMID:15465786;PMID:16082501;PMID:17466261;PMID:7718542;PMID:10049700;PMID:10072483;PMID:10391915;PMID:10574970;PMID:11311135;PMID:11389679;PMID:11557028;PMID:11564694;PMID:11742812;PMID:11827462;PMID:12117417;PMID:12824232;PMID:14574404;PMID:7690540;PMID:9751058;PMID:9759917;PMID:12883891;PMID:16288981;PMID:1904693;PMID:4424190;PMID:6432599;PMID:9868191" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4858 + - id: "HMR_4858" - name: "" - metabolites: !!omap - m01910c: -1 - m01910s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000059804 or ENSG00000117394 or ENSG00000136856 or ENSG00000163581 or ENSG00000197496 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11780753;PMID:11882499;PMID:12750891;PMID:16669350;PMID:1701966;PMID:3399500 + - gene_reaction_rule: "ENSG00000059804 or ENSG00000117394 or ENSG00000136856 or ENSG00000163581 or ENSG00000197496" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11780753;PMID:11882499;PMID:12750891;PMID:16669350;PMID:1701966;PMID:3399500" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4861 + - id: "HMR_4861" - name: "" - metabolites: !!omap - m02171c: -1 - m02171s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151229 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10785372;PMID:1313850;PMID:1992775;PMID:3085711;PMID:7822436;PMID:8240303 + - gene_reaction_rule: "ENSG00000151229" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10785372;PMID:1313850;PMID:1992775;PMID:3085711;PMID:7822436;PMID:8240303" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4873 + - id: "HMR_4873" - name: "" - metabolites: !!omap - m02578c: -1 - m02578s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112077 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:3888072 + - gene_reaction_rule: "ENSG00000112077" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:3888072" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4875 + - id: "HMR_4875" - name: "" - metabolites: !!omap - m02659c: -1 - m02659s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:7419607 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:7419607" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4882 + - id: "HMR_4882" - name: "" - metabolites: !!omap - m03118c: -1 - m03118s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174669 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12838422;PMID:168203;PMID:3728675;PMID:8438778;PMID:12006583;PMID:14747464;PMID:16595656;PMID:17187757;PMID:17279066;PMID:6778226;PMID:7479738;PMID:7419607;PMID:1260500 + - gene_reaction_rule: "ENSG00000174669" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12838422;PMID:168203;PMID:3728675;PMID:8438778;PMID:12006583;PMID:14747464;PMID:16595656;PMID:17187757;PMID:17279066;PMID:6778226;PMID:7479738;PMID:7419607;PMID:1260500" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4885 + - id: "HMR_4885" - name: "" - metabolites: !!omap - m02040c: -1 - m02040s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000086159 or ENSG00000100170 or ENSG00000103375 or ENSG00000143595 or ENSG00000161798 or ENSG00000165269 or ENSG00000165272 or ENSG00000167580 or ENSG00000171885 or ENSG00000240583 or ENSG00000259916 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:3888072;PMID:4684694 + - gene_reaction_rule: "ENSG00000086159 or ENSG00000100170 or ENSG00000103375 or ENSG00000143595 or ENSG00000161798 or ENSG00000165269 or ENSG00000165272 or ENSG00000167580 or ENSG00000171885 or ENSG00000240583 or ENSG00000259916" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:3888072;PMID:4684694" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4896 + - id: "HMR_4896" - name: "" - metabolites: !!omap - m02630c: -1 - m02630s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4910 + - id: "HMR_4910" - name: "" - metabolites: !!omap - m02519c: 3 @@ -179609,15 +179609,15 @@ - m02751s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112337 or ENSG00000124564 or ENSG00000124568 or ENSG00000131183 or ENSG00000146039 or ENSG00000157765 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12750889;PMID:12759754;PMID:12806205;PMID:12811560 + - gene_reaction_rule: "ENSG00000112337 or ENSG00000124564 or ENSG00000124568 or ENSG00000131183 or ENSG00000146039 or ENSG00000157765" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12750889;PMID:12759754;PMID:12806205;PMID:12811560" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4911 + - id: "HMR_4911" - name: "" - metabolites: !!omap - m02519c: 3 @@ -179626,15 +179626,15 @@ - m02751s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000144136 or ENSG00000168575 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000144136 or ENSG00000168575" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4912 + - id: "HMR_4912" - name: "" - metabolites: !!omap - m02519c: 2 @@ -179643,30 +179643,30 @@ - m02751s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000144136 or ENSG00000168575 or ENSG00000198569 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000144136 or ENSG00000168575 or ENSG00000198569" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4919 + - id: "HMR_4919" - name: "" - metabolites: !!omap - m01596c: -1 - m01596s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:3888072;PMID:911815 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:3888072;PMID:911815" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4928 + - id: "HMR_4928" - name: "" - metabolites: !!omap - m02039c: 1 @@ -179675,15 +179675,15 @@ - m02819s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169;PMID:18305372 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169;PMID:18305372" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4931 + - id: "HMR_4931" - name: "" - metabolites: !!omap - m01629c: 1 @@ -179692,15 +179692,15 @@ - m01974s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151012 and ENSG00000168003 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000151012 and ENSG00000168003" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4932 + - id: "HMR_4932" - name: "" - metabolites: !!omap - m01974c: 1 @@ -179713,15 +179713,15 @@ - m02519s: -3 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000079215 or ENSG00000105143 or ENSG00000106688 or ENSG00000110436 or ENSG00000162383 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14530974 + - gene_reaction_rule: "ENSG00000079215 or ENSG00000105143 or ENSG00000106688 or ENSG00000110436 or ENSG00000162383" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14530974" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4933 + - id: "HMR_4933" - name: "" - metabolites: !!omap - m01306c: 1 @@ -179730,15 +179730,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11287335;PMID:11327718 + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11287335;PMID:11327718" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4934 + - id: "HMR_4934" - name: "" - metabolites: !!omap - m01252c: 1 @@ -179747,15 +179747,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12107270;PMID:12739169;PMID:12829793;PMID:17245649;PMID:18375207;PMID:8476015;PMID:8557697;PMID:9786900 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12107270;PMID:12739169;PMID:12829793;PMID:17245649;PMID:18375207;PMID:8476015;PMID:8557697;PMID:9786900" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4935 + - id: "HMR_4935" - name: "" - metabolites: !!omap - m01252c: 1 @@ -179764,15 +179764,15 @@ - m02039s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12107270;PMID:12739169;PMID:12829793;PMID:17173541;PMID:17245649;PMID:18305372;PMID:18375207;PMID:8476015;PMID:8557697;PMID:9651205;PMID:9786900 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12107270;PMID:12739169;PMID:12829793;PMID:17173541;PMID:17245649;PMID:18305372;PMID:18375207;PMID:8476015;PMID:8557697;PMID:9651205;PMID:9786900" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4938 + - id: "HMR_4938" - name: "" - metabolites: !!omap - m02519c: 3 @@ -179781,15 +179781,15 @@ - m02943s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000158296 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739168;PMID:12915942 + - gene_reaction_rule: "ENSG00000158296" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739168;PMID:12915942" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4939 + - id: "HMR_4939" - name: "" - metabolites: !!omap - m02519c: 2 @@ -179798,15 +179798,15 @@ - m02943s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000007216 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000007216" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4946 + - id: "HMR_4946" - name: "" - metabolites: !!omap - m02046c: -2 @@ -179815,90 +179815,90 @@ - m02946s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000091138 or ENSG00000112053 or ENSG00000145217 or ENSG00000147606 or ENSG00000155850 or ENSG00000174502 or ENSG00000181045 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12759755 + - gene_reaction_rule: "ENSG00000091138 or ENSG00000112053 or ENSG00000145217 or ENSG00000147606 or ENSG00000155850 or ENSG00000174502 or ENSG00000181045" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12759755" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4947 + - id: "HMR_4947" - name: "" - metabolites: !!omap - m03130c: -1 - m03130s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:179827;PMID:9305892 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:179827;PMID:9305892" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4948 + - id: "HMR_4948" - name: "" - metabolites: !!omap - m01249c: -1 - m01249s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4949 + - id: "HMR_4949" - name: "" - metabolites: !!omap - m03121c: -1 - m03121s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103569 or ENSG00000132874 or ENSG00000141469 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10505683;PMID:10747366;PMID:11546670;PMID:12571750;PMID:12856182;PMID:8514890;PMID:9124577 + - gene_reaction_rule: "ENSG00000103569 or ENSG00000132874 or ENSG00000141469" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10505683;PMID:10747366;PMID:11546670;PMID:12571750;PMID:12856182;PMID:8514890;PMID:9124577" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4952 + - id: "HMR_4952" - name: "" - metabolites: !!omap - m01383c: 1 - m01383s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10721894;PMID:11787643;PMID:12269802;PMID:12504794;PMID:16955229;PMID:17401668;PMID:18599538;PMID:3132542;PMID:487087;PMID:551321;PMID:6418146;PMID:7731061;PMID:8010975;PMID:8382624;PMID:8654117;PMID:8899554;PMID:911815;PMID:917262 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10721894;PMID:11787643;PMID:12269802;PMID:12504794;PMID:16955229;PMID:17401668;PMID:18599538;PMID:3132542;PMID:487087;PMID:551321;PMID:6418146;PMID:7731061;PMID:8010975;PMID:8382624;PMID:8654117;PMID:8899554;PMID:911815;PMID:917262" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4954 + - id: "HMR_4954" - name: "" - metabolites: !!omap - m01513c: -1 - m01513s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000070214 or ENSG00000112499 or ENSG00000129353 or ENSG00000137968 or ENSG00000143036 or ENSG00000175003 or ENSG00000197375 or ENSG00000204385 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16636297;PMID:18632827;PMID:8707261 + - gene_reaction_rule: "ENSG00000070214 or ENSG00000112499 or ENSG00000129353 or ENSG00000137968 or ENSG00000143036 or ENSG00000175003 or ENSG00000197375 or ENSG00000204385" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16636297;PMID:18632827;PMID:8707261" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4956 + - id: "HMR_4956" - name: "" - metabolites: !!omap - m01442c: 2 @@ -179909,60 +179909,60 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064651 or ENSG00000074803 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739168;PMID:8640224 + - gene_reaction_rule: "ENSG00000064651 or ENSG00000074803" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739168;PMID:8640224" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4958 + - id: "HMR_4958" - name: "" - metabolites: !!omap - m02843c: -1 - m02843s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:15234337 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:15234337" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4969 + - id: "HMR_4969" - name: "" - metabolites: !!omap - m02583c: -1 - m02583s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:17928533 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:17928533" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4973 + - id: "HMR_4973" - name: "" - metabolites: !!omap - m02453c: -1 - m02453s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000059804 or ENSG00000117394 or ENSG00000163581 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12750891 + - gene_reaction_rule: "ENSG00000059804 or ENSG00000117394 or ENSG00000163581" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12750891" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4975 + - id: "HMR_4975" - name: "" - metabolites: !!omap - m02453c: 1 @@ -179971,15 +179971,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117834 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000117834" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4976 + - id: "HMR_4976" - name: "" - metabolites: !!omap - m01253c: 1 @@ -179988,45 +179988,45 @@ - m02039s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12107270;PMID:12739169;PMID:12829793;PMID:17173541;PMID:17245649;PMID:18305372;PMID:18375207;PMID:8476015;PMID:8557697;PMID:9786900 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12107270;PMID:12739169;PMID:12829793;PMID:17173541;PMID:17245649;PMID:18305372;PMID:18375207;PMID:8476015;PMID:8557697;PMID:9786900" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4980 + - id: "HMR_4980" - name: "" - metabolites: !!omap - m02997c: -1 - m02997s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174669 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12838422;PMID:168203;PMID:3728675;PMID:8438778;PMID:12006583;PMID:14747464;PMID:16595656;PMID:17187757;PMID:17279066;PMID:6778226;PMID:7479738;PMID:7419607;PMID:1260500 + - gene_reaction_rule: "ENSG00000174669" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12838422;PMID:168203;PMID:3728675;PMID:8438778;PMID:12006583;PMID:14747464;PMID:16595656;PMID:17187757;PMID:17279066;PMID:6778226;PMID:7479738;PMID:7419607;PMID:1260500" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4982 + - id: "HMR_4982" - name: "" - metabolites: !!omap - m02880c: -1 - m02880s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11004451;PMID:4684694;PMID:5096515;PMID:7388024 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11004451;PMID:4684694;PMID:5096515;PMID:7388024" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4983 + - id: "HMR_4983" - name: "" - metabolites: !!omap - m02519c: 1 @@ -180035,105 +180035,105 @@ - m02996s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000156222 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12856181;PMID:10772724 + - gene_reaction_rule: "ENSG00000156222" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12856181;PMID:10772724" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4985 + - id: "HMR_4985" - name: "" - metabolites: !!omap - m02037c: -1 - m02037s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174669 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12838422;PMID:168203;PMID:3728675;PMID:8438778;PMID:12006583;PMID:14747464;PMID:16595656;PMID:17187757;PMID:17279066;PMID:6778226;PMID:7479738;PMID:7419607;PMID:1260500 + - gene_reaction_rule: "ENSG00000174669" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12838422;PMID:168203;PMID:3728675;PMID:8438778;PMID:12006583;PMID:14747464;PMID:16595656;PMID:17187757;PMID:17279066;PMID:6778226;PMID:7479738;PMID:7419607;PMID:1260500" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4989 + - id: "HMR_4989" - name: "" - metabolites: !!omap - m02586c: -1 - m02586s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:17928533 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:17928533" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4990 + - id: "HMR_4990" - name: "" - metabolites: !!omap - m02042c: -1 - m02042s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4992 + - id: "HMR_4992" - name: "" - metabolites: !!omap - m01619c: -1 - m01619s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130821 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11165387;PMID:12110547;PMID:12145274;PMID:15918910;PMID:3896131;PMID:9386672 + - gene_reaction_rule: "ENSG00000130821" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11165387;PMID:12110547;PMID:12145274;PMID:15918910;PMID:3896131;PMID:9386672" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4993 + - id: "HMR_4993" - name: "" - metabolites: !!omap - m02817c: -1 - m02817s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14977409 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14977409" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4994 + - id: "HMR_4994" - name: "" - metabolites: !!omap - m02923c: -1 - m02923s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000175003 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:1526979 + - gene_reaction_rule: "ENSG00000175003" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:1526979" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4995 + - id: "HMR_4995" - name: "" - metabolites: !!omap - m01588c: 1 @@ -180144,90 +180144,90 @@ - m02658s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4996 + - id: "HMR_4996" - name: "" - metabolites: !!omap - m01962c: 1 - m01962s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117394 or ENSG00000163581 or ENSG00000181856 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12750891 + - gene_reaction_rule: "ENSG00000117394 or ENSG00000163581 or ENSG00000181856" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12750891" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4999 + - id: "HMR_4999" - name: "" - metabolites: !!omap - m02124c: -1 - m02124s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112499 or ENSG00000146477 or ENSG00000175003 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891 + - gene_reaction_rule: "ENSG00000112499 or ENSG00000146477 or ENSG00000175003" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5000 + - id: "HMR_5000" - name: "" - metabolites: !!omap - m01796c: -1 - m01796s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5002 + - id: "HMR_5002" - name: "" - metabolites: !!omap - m02841c: -1 - m02841s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:15234337 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:15234337" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5003 + - id: "HMR_5003" - name: "" - metabolites: !!omap - m01630c: -1 - m01630s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112759 or ENSG00000174669 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12838422;PMID:12006583;PMID:14747464;PMID:16595656;PMID:17187757;PMID:17279066;PMID:7479738 + - gene_reaction_rule: "ENSG00000112759 or ENSG00000174669" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12838422;PMID:12006583;PMID:14747464;PMID:16595656;PMID:17187757;PMID:17279066;PMID:7479738" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5005 + - id: "HMR_5005" - name: "" - metabolites: !!omap - m01396c: 1 @@ -180236,105 +180236,105 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000047457 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:8725559 + - gene_reaction_rule: "ENSG00000047457" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:8725559" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5007 + - id: "HMR_5007" - name: "" - metabolites: !!omap - m01830c: 1 - m01830s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110195 or ENSG00000110203 or ENSG00000165457 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14739191;PMID:14977409;PMID:14998787;PMID:16109384;PMID:16171773;PMID:16750224 + - gene_reaction_rule: "ENSG00000110195 or ENSG00000110203 or ENSG00000165457" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14739191;PMID:14977409;PMID:14998787;PMID:16109384;PMID:16171773;PMID:16750224" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5008 + - id: "HMR_5008" - name: "" - metabolites: !!omap - m01673c: -1 - m01673s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112759 or ENSG00000174669 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12838422;PMID:12006583;PMID:14747464;PMID:16595656;PMID:17187757;PMID:17279066;PMID:7479738 + - gene_reaction_rule: "ENSG00000112759 or ENSG00000174669" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12838422;PMID:12006583;PMID:14747464;PMID:16595656;PMID:17187757;PMID:17279066;PMID:7479738" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5009 + - id: "HMR_5009" - name: "" - metabolites: !!omap - m02609c: -1 - m02609s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5010 + - id: "HMR_5010" - name: "" - metabolites: !!omap - m02815c: -1 - m02815s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14977409 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14977409" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5011 + - id: "HMR_5011" - name: "" - metabolites: !!omap - m02475c: -1 - m02475s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5013 + - id: "HMR_5013" - name: "" - metabolites: !!omap - m02926c: -1 - m02926s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000175003 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:1526979 + - gene_reaction_rule: "ENSG00000175003" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:1526979" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5018 + - id: "HMR_5018" - name: "" - metabolites: !!omap - m00157c: 1 @@ -180343,30 +180343,30 @@ - m02039s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169;PMID:18305372 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169;PMID:18305372" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5020 + - id: "HMR_5020" - name: "" - metabolites: !!omap - m01633c: -1 - m01633s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5021 + - id: "HMR_5021" - name: "" - metabolites: !!omap - m01368c: 1 @@ -180375,105 +180375,105 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000089057 or ENSG00000170482 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14977409 + - gene_reaction_rule: "ENSG00000089057 or ENSG00000170482" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14977409" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5023 + - id: "HMR_5023" - name: "" - metabolites: !!omap - m02579c: -1 - m02579s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112077 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000112077" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5029 + - id: "HMR_5029" - name: "" - metabolites: !!omap - m01965c: -1 - m01965s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000059804 or ENSG00000109667 or ENSG00000117394 or ENSG00000133460 or ENSG00000136856 or ENSG00000140675 or ENSG00000142583 or ENSG00000146411 or ENSG00000160326 or ENSG00000163581 or ENSG00000173262 or ENSG00000181856 or ENSG00000197241 or ENSG00000197496 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11780753;PMID:11780754;PMID:11882499;PMID:16314530;PMID:16669350;PMID:9770484 + - gene_reaction_rule: "ENSG00000059804 or ENSG00000109667 or ENSG00000117394 or ENSG00000133460 or ENSG00000136856 or ENSG00000140675 or ENSG00000142583 or ENSG00000146411 or ENSG00000160326 or ENSG00000163581 or ENSG00000173262 or ENSG00000181856 or ENSG00000197241 or ENSG00000197496" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11780753;PMID:11780754;PMID:11882499;PMID:16314530;PMID:16669350;PMID:9770484" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5032 + - id: "HMR_5032" - name: "" - metabolites: !!omap - m01280c: -1 - m01280s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112759 or ENSG00000164638 or ENSG00000174669 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12838422;PMID:12006583;PMID:14747464;PMID:16595656;PMID:17187757;PMID:17279066;PMID:7479738 + - gene_reaction_rule: "ENSG00000112759 or ENSG00000164638 or ENSG00000174669" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12838422;PMID:12006583;PMID:14747464;PMID:16595656;PMID:17187757;PMID:17279066;PMID:7479738" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5034 + - id: "HMR_5034" - name: "" - metabolites: !!omap - m02996c: -1 - m02996s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112759 or ENSG00000174669 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12838422;PMID:12006583;PMID:14747464;PMID:16595656;PMID:17187757;PMID:17279066;PMID:7479738 + - gene_reaction_rule: "ENSG00000112759 or ENSG00000174669" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12838422;PMID:12006583;PMID:14747464;PMID:16595656;PMID:17187757;PMID:17279066;PMID:7479738" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5035 + - id: "HMR_5035" - name: "" - metabolites: !!omap - m03123c: -1 - m03123s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112759 or ENSG00000174669 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12838422;PMID:12006583;PMID:14747464;PMID:16595656;PMID:17187757;PMID:17279066;PMID:7479738 + - gene_reaction_rule: "ENSG00000112759 or ENSG00000174669" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12838422;PMID:12006583;PMID:14747464;PMID:16595656;PMID:17187757;PMID:17279066;PMID:7479738" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5037 + - id: "HMR_5037" - name: "" - metabolites: !!omap - m02038c: -1 - m02038s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112759 or ENSG00000174669 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12838422;PMID:12006583;PMID:14747464;PMID:16595656;PMID:17187757;PMID:17279066;PMID:7479738 + - gene_reaction_rule: "ENSG00000112759 or ENSG00000174669" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12838422;PMID:12006583;PMID:14747464;PMID:16595656;PMID:17187757;PMID:17279066;PMID:7479738" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5038 + - id: "HMR_5038" - name: "" - metabolites: !!omap - m01630c: 1 @@ -180482,15 +180482,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000156222 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12856181;PMID:10772724 + - gene_reaction_rule: "ENSG00000156222" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12856181;PMID:10772724" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5039 + - id: "HMR_5039" - name: "" - metabolites: !!omap - m01666c: 1 @@ -180499,15 +180499,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000156222 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12856181;PMID:10772724 + - gene_reaction_rule: "ENSG00000156222" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12856181;PMID:10772724" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5040 + - id: "HMR_5040" - name: "" - metabolites: !!omap - m01668c: 1 @@ -180516,15 +180516,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000156222 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12856181;PMID:10772724 + - gene_reaction_rule: "ENSG00000156222" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12856181;PMID:10772724" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5041 + - id: "HMR_5041" - name: "" - metabolites: !!omap - m01669c: 1 @@ -180533,315 +180533,315 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137860 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12856181;PMID:10772724 + - gene_reaction_rule: "ENSG00000137860" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12856181;PMID:10772724" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5042 + - id: "HMR_5042" - name: "" - metabolites: !!omap - m02170c: -1 - m02170s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112759 or ENSG00000174669 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12838422;PMID:12006583;PMID:14747464;PMID:16595656;PMID:17187757;PMID:17279066;PMID:7479738 + - gene_reaction_rule: "ENSG00000112759 or ENSG00000174669" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12838422;PMID:12006583;PMID:14747464;PMID:16595656;PMID:17187757;PMID:17279066;PMID:7479738" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5068 + - id: "HMR_5068" - name: "" - metabolites: !!omap - m01365c: 1 - m01365s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000003989 or ENSG00000139209 or ENSG00000139514 or ENSG00000165349 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:17466261;PMID:7718542;PMID:10049700;PMID:10072483;PMID:10391915;PMID:10574970;PMID:11004451;PMID:11311135;PMID:11389679;PMID:11557028;PMID:11564694;PMID:11742812;PMID:11827462;PMID:12117417;PMID:12824232;PMID:14574404;PMID:14770310;PMID:7690540;PMID:9751058;PMID:9759917;PMID:12883891;PMID:16288981;PMID:1904693;PMID:4424190;PMID:6432599;PMID:9868191;PMID:15465786;PMID:16082501 + - gene_reaction_rule: "ENSG00000003989 or ENSG00000139209 or ENSG00000139514 or ENSG00000165349" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:17466261;PMID:7718542;PMID:10049700;PMID:10072483;PMID:10391915;PMID:10574970;PMID:11004451;PMID:11311135;PMID:11389679;PMID:11557028;PMID:11564694;PMID:11742812;PMID:11827462;PMID:12117417;PMID:12824232;PMID:14574404;PMID:14770310;PMID:7690540;PMID:9751058;PMID:9759917;PMID:12883891;PMID:16288981;PMID:1904693;PMID:4424190;PMID:6432599;PMID:9868191;PMID:15465786;PMID:16082501" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5070 + - id: "HMR_5070" - name: "" - metabolites: !!omap - m02125c: -1 - m02125s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000092068 and ENSG00000168003) or ENSG00000003989 or ENSG00000103257 or ENSG00000123643 or ENSG00000139514 or ENSG00000149150 or ENSG00000155465 or ENSG00000165349 or ENSG00000167703 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770310;PMID:11004451;PMID:15465786;PMID:16082501;PMID:17466261;PMID:7718542;PMID:10049700;PMID:10072483;PMID:10391915;PMID:10574970;PMID:11311135;PMID:11389679;PMID:11557028;PMID:11564694;PMID:11742812;PMID:11827462;PMID:12117417;PMID:12824232;PMID:14574404;PMID:7690540;PMID:9751058;PMID:9759917;PMID:12883891;PMID:16288981;PMID:1904693;PMID:4424190;PMID:6432599;PMID:9868191 + - gene_reaction_rule: "(ENSG00000092068 and ENSG00000168003) or ENSG00000003989 or ENSG00000103257 or ENSG00000123643 or ENSG00000139514 or ENSG00000149150 or ENSG00000155465 or ENSG00000165349 or ENSG00000167703" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770310;PMID:11004451;PMID:15465786;PMID:16082501;PMID:17466261;PMID:7718542;PMID:10049700;PMID:10072483;PMID:10391915;PMID:10574970;PMID:11311135;PMID:11389679;PMID:11557028;PMID:11564694;PMID:11742812;PMID:11827462;PMID:12117417;PMID:12824232;PMID:14574404;PMID:7690540;PMID:9751058;PMID:9759917;PMID:12883891;PMID:16288981;PMID:1904693;PMID:4424190;PMID:6432599;PMID:9868191" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5071 + - id: "HMR_5071" - name: "" - metabolites: !!omap - m02426c: 1 - m02426s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000003989 or ENSG00000139209 or ENSG00000139514 or ENSG00000165349 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:17466261;PMID:7718542;PMID:10049700;PMID:10072483;PMID:10391915;PMID:10574970;PMID:11004451;PMID:11311135;PMID:11389679;PMID:11557028;PMID:11564694;PMID:11742812;PMID:11827462;PMID:12117417;PMID:12824232;PMID:14574404;PMID:14770310;PMID:7690540;PMID:9751058;PMID:9759917;PMID:12883891;PMID:16288981;PMID:1904693;PMID:4424190;PMID:6432599;PMID:9868191;PMID:15465786;PMID:16082501 + - gene_reaction_rule: "ENSG00000003989 or ENSG00000139209 or ENSG00000139514 or ENSG00000165349" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:17466261;PMID:7718542;PMID:10049700;PMID:10072483;PMID:10391915;PMID:10574970;PMID:11004451;PMID:11311135;PMID:11389679;PMID:11557028;PMID:11564694;PMID:11742812;PMID:11827462;PMID:12117417;PMID:12824232;PMID:14574404;PMID:14770310;PMID:7690540;PMID:9751058;PMID:9759917;PMID:12883891;PMID:16288981;PMID:1904693;PMID:4424190;PMID:6432599;PMID:9868191;PMID:15465786;PMID:16082501" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5073 + - id: "HMR_5073" - name: "" - metabolites: !!omap - m02471c: -1 - m02471s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000092068 and ENSG00000168003) or ENSG00000003989 or ENSG00000103257 or ENSG00000123643 or ENSG00000139514 or ENSG00000149150 or ENSG00000155465 or ENSG00000165349 or ENSG00000167703 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12930836;UNIPROT:O75387;PMID:16288981;PMID:911815;PMID:10049700;PMID:10574970;PMID:11389679;PMID:11557028;PMID:11564694;PMID:12824232;PMID:14574404 + - gene_reaction_rule: "(ENSG00000092068 and ENSG00000168003) or ENSG00000003989 or ENSG00000103257 or ENSG00000123643 or ENSG00000139514 or ENSG00000149150 or ENSG00000155465 or ENSG00000165349 or ENSG00000167703" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12930836;UNIPROT:O75387;PMID:16288981;PMID:911815;PMID:10049700;PMID:10574970;PMID:11389679;PMID:11557028;PMID:11564694;PMID:12824232;PMID:14574404" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5074 + - id: "HMR_5074" - name: "" - metabolites: !!omap - m03101c: -1 - m03101s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000092068 and ENSG00000168003) or ENSG00000003989 or ENSG00000103257 or ENSG00000112394 or ENSG00000123643 or ENSG00000139514 or ENSG00000149150 or ENSG00000155465 or ENSG00000165349 or ENSG00000167703 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12930836;UNIPROT:O75387;PMID:16288981;PMID:911815;PMID:10049700;PMID:10574970;PMID:11389679;PMID:11557028;PMID:11564694;PMID:12824232;PMID:14574404 + - gene_reaction_rule: "(ENSG00000092068 and ENSG00000168003) or ENSG00000003989 or ENSG00000103257 or ENSG00000112394 or ENSG00000123643 or ENSG00000139514 or ENSG00000149150 or ENSG00000155465 or ENSG00000165349 or ENSG00000167703" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12930836;UNIPROT:O75387;PMID:16288981;PMID:911815;PMID:10049700;PMID:10574970;PMID:11389679;PMID:11557028;PMID:11564694;PMID:12824232;PMID:14574404" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5076 + - id: "HMR_5076" - name: "" - metabolites: !!omap - m01986c: 1 - m01986s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000092068 and ENSG00000168003) or ENSG00000003989 or ENSG00000103257 or ENSG00000123643 or ENSG00000130876 or ENSG00000139514 or ENSG00000149150 or ENSG00000155465 or ENSG00000164363 or ENSG00000165349 or ENSG00000167703 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12930836;UNIPROT:O75387;PMID:16288981;PMID:911815;PMID:10049700;PMID:10574970;PMID:11389679;PMID:11557028;PMID:11564694;PMID:12824232;PMID:14574404 + - gene_reaction_rule: "(ENSG00000092068 and ENSG00000168003) or ENSG00000003989 or ENSG00000103257 or ENSG00000123643 or ENSG00000130876 or ENSG00000139514 or ENSG00000149150 or ENSG00000155465 or ENSG00000164363 or ENSG00000165349 or ENSG00000167703" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12930836;UNIPROT:O75387;PMID:16288981;PMID:911815;PMID:10049700;PMID:10574970;PMID:11389679;PMID:11557028;PMID:11564694;PMID:12824232;PMID:14574404" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5077 + - id: "HMR_5077" - name: "" - metabolites: !!omap - m01307c: 1 - m01307s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000092068 and ENSG00000168003) or ENSG00000003989 or ENSG00000103257 or ENSG00000123643 or ENSG00000130876 or ENSG00000139514 or ENSG00000149150 or ENSG00000155465 or ENSG00000165349 or ENSG00000167703 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12930836;UNIPROT:O75387;PMID:16288981;PMID:911815;PMID:10049700;PMID:10574970;PMID:11389679;PMID:11557028;PMID:11564694;PMID:12824232;PMID:14574404 + - gene_reaction_rule: "(ENSG00000092068 and ENSG00000168003) or ENSG00000003989 or ENSG00000103257 or ENSG00000123643 or ENSG00000130876 or ENSG00000139514 or ENSG00000149150 or ENSG00000155465 or ENSG00000165349 or ENSG00000167703" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12930836;UNIPROT:O75387;PMID:16288981;PMID:911815;PMID:10049700;PMID:10574970;PMID:11389679;PMID:11557028;PMID:11564694;PMID:12824232;PMID:14574404" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5078 + - id: "HMR_5078" - name: "" - metabolites: !!omap - m01975c: -1 - m01975s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000092068 and ENSG00000168003) or ENSG00000003989 or ENSG00000103257 or ENSG00000123643 or ENSG00000139514 or ENSG00000149150 or ENSG00000155465 or ENSG00000165349 or ENSG00000167703 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12930836;UNIPROT:O75387;PMID:16288981;PMID:911815;PMID:10049700;PMID:10574970;PMID:11389679;PMID:11557028;PMID:11564694;PMID:12824232;PMID:14574404 + - gene_reaction_rule: "(ENSG00000092068 and ENSG00000168003) or ENSG00000003989 or ENSG00000103257 or ENSG00000123643 or ENSG00000139514 or ENSG00000149150 or ENSG00000155465 or ENSG00000165349 or ENSG00000167703" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12930836;UNIPROT:O75387;PMID:16288981;PMID:911815;PMID:10049700;PMID:10574970;PMID:11389679;PMID:11557028;PMID:11564694;PMID:12824232;PMID:14574404" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5079 + - id: "HMR_5079" - name: "" - metabolites: !!omap - m02896c: 1 - m02896s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000092068 and ENSG00000168003) or ENSG00000003989 or ENSG00000103257 or ENSG00000123643 or ENSG00000130876 or ENSG00000139514 or ENSG00000149150 or ENSG00000155465 or ENSG00000165349 or ENSG00000167703 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12930836;UNIPROT:O75387;PMID:16288981;PMID:911815;PMID:10049700;PMID:10574970;PMID:11389679;PMID:11557028;PMID:11564694;PMID:12824232;PMID:14574404 + - gene_reaction_rule: "(ENSG00000092068 and ENSG00000168003) or ENSG00000003989 or ENSG00000103257 or ENSG00000123643 or ENSG00000130876 or ENSG00000139514 or ENSG00000149150 or ENSG00000155465 or ENSG00000165349 or ENSG00000167703" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12930836;UNIPROT:O75387;PMID:16288981;PMID:911815;PMID:10049700;PMID:10574970;PMID:11389679;PMID:11557028;PMID:11564694;PMID:12824232;PMID:14574404" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5080 + - id: "HMR_5080" - name: "" - metabolites: !!omap - m03089c: -1 - m03089s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000092068 and ENSG00000168003) or ENSG00000003989 or ENSG00000103257 or ENSG00000112394 or ENSG00000123643 or ENSG00000139514 or ENSG00000149150 or ENSG00000155465 or ENSG00000165349 or ENSG00000167703 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12930836;UNIPROT:O75387;PMID:16288981;PMID:911815;PMID:10049700;PMID:10574970;PMID:11389679;PMID:11557028;PMID:11564694;PMID:12824232;PMID:14574404 + - gene_reaction_rule: "(ENSG00000092068 and ENSG00000168003) or ENSG00000003989 or ENSG00000103257 or ENSG00000112394 or ENSG00000123643 or ENSG00000139514 or ENSG00000149150 or ENSG00000155465 or ENSG00000165349 or ENSG00000167703" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12930836;UNIPROT:O75387;PMID:16288981;PMID:911815;PMID:10049700;PMID:10574970;PMID:11389679;PMID:11557028;PMID:11564694;PMID:12824232;PMID:14574404" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5082 + - id: "HMR_5082" - name: "" - metabolites: !!omap - m02724c: -1 - m02724s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000092068 and ENSG00000168003) or ENSG00000003989 or ENSG00000103257 or ENSG00000112394 or ENSG00000123643 or ENSG00000139514 or ENSG00000149150 or ENSG00000155465 or ENSG00000165349 or ENSG00000167703 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12930836;UNIPROT:O75387;PMID:16288981;PMID:911815;PMID:10049700;PMID:10574970;PMID:11389679;PMID:11557028;PMID:11564694;PMID:12824232;PMID:14574404 + - gene_reaction_rule: "(ENSG00000092068 and ENSG00000168003) or ENSG00000003989 or ENSG00000103257 or ENSG00000112394 or ENSG00000123643 or ENSG00000139514 or ENSG00000149150 or ENSG00000155465 or ENSG00000165349 or ENSG00000167703" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12930836;UNIPROT:O75387;PMID:16288981;PMID:911815;PMID:10049700;PMID:10574970;PMID:11389679;PMID:11557028;PMID:11564694;PMID:12824232;PMID:14574404" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5084 + - id: "HMR_5084" - name: "" - metabolites: !!omap - m01628c: 1 - m01628s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000092068 and ENSG00000168003) or ENSG00000003989 or ENSG00000103257 or ENSG00000123643 or ENSG00000130876 or ENSG00000139514 or ENSG00000149150 or ENSG00000155465 or ENSG00000165349 or ENSG00000167703 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12930836;UNIPROT:O75387;PMID:16288981;PMID:911815;PMID:10049700;PMID:10574970;PMID:11389679;PMID:11557028;PMID:11564694;PMID:12824232;PMID:14574404 + - gene_reaction_rule: "(ENSG00000092068 and ENSG00000168003) or ENSG00000003989 or ENSG00000103257 or ENSG00000123643 or ENSG00000130876 or ENSG00000139514 or ENSG00000149150 or ENSG00000155465 or ENSG00000165349 or ENSG00000167703" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12930836;UNIPROT:O75387;PMID:16288981;PMID:911815;PMID:10049700;PMID:10574970;PMID:11389679;PMID:11557028;PMID:11564694;PMID:12824232;PMID:14574404" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5085 + - id: "HMR_5085" - name: "" - metabolites: !!omap - m02360c: -1 - m02360s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000092068 and ENSG00000168003) or ENSG00000003989 or ENSG00000103257 or ENSG00000123643 or ENSG00000139514 or ENSG00000149150 or ENSG00000155465 or ENSG00000165349 or ENSG00000167703 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12930836;UNIPROT:O75387;PMID:16288981;PMID:911815;PMID:10049700;PMID:10574970;PMID:11389679;PMID:11557028;PMID:11564694;PMID:12824232;PMID:14574404 + - gene_reaction_rule: "(ENSG00000092068 and ENSG00000168003) or ENSG00000003989 or ENSG00000103257 or ENSG00000123643 or ENSG00000139514 or ENSG00000149150 or ENSG00000155465 or ENSG00000165349 or ENSG00000167703" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12930836;UNIPROT:O75387;PMID:16288981;PMID:911815;PMID:10049700;PMID:10574970;PMID:11389679;PMID:11557028;PMID:11564694;PMID:12824232;PMID:14574404" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5087 + - id: "HMR_5087" - name: "" - metabolites: !!omap - m02770c: -1 - m02770s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000003989 or ENSG00000092068 or ENSG00000103257 or ENSG00000123643 or ENSG00000139514 or ENSG00000149150 or ENSG00000155465 or ENSG00000165349 or ENSG00000167703 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12930836;UNIPROT:O75387;PMID:16288981;PMID:911815;PMID:10049700;PMID:10574970;PMID:11389679;PMID:11557028;PMID:11564694;PMID:12824232;PMID:14574404 + - gene_reaction_rule: "ENSG00000003989 or ENSG00000092068 or ENSG00000103257 or ENSG00000123643 or ENSG00000139514 or ENSG00000149150 or ENSG00000155465 or ENSG00000165349 or ENSG00000167703" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12930836;UNIPROT:O75387;PMID:16288981;PMID:911815;PMID:10049700;PMID:10574970;PMID:11389679;PMID:11557028;PMID:11564694;PMID:12824232;PMID:14574404" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5088 + - id: "HMR_5088" - name: "" - metabolites: !!omap - m01369c: 1 - m01369s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000092068 and ENSG00000168003) or ENSG00000003989 or ENSG00000103257 or ENSG00000123643 or ENSG00000139514 or ENSG00000149150 or ENSG00000155465 or ENSG00000165349 or ENSG00000167703 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12930836;UNIPROT:O75387;PMID:16288981;PMID:911815;PMID:10049700;PMID:10574970;PMID:11389679;PMID:11557028;PMID:11564694;PMID:12824232;PMID:14574404 + - gene_reaction_rule: "(ENSG00000092068 and ENSG00000168003) or ENSG00000003989 or ENSG00000103257 or ENSG00000123643 or ENSG00000139514 or ENSG00000149150 or ENSG00000155465 or ENSG00000165349 or ENSG00000167703" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12930836;UNIPROT:O75387;PMID:16288981;PMID:911815;PMID:10049700;PMID:10574970;PMID:11389679;PMID:11557028;PMID:11564694;PMID:12824232;PMID:14574404" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5089 + - id: "HMR_5089" - name: "" - metabolites: !!omap - m03135c: -1 - m03135s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000092068 and ENSG00000168003) or ENSG00000003989 or ENSG00000103257 or ENSG00000123643 or ENSG00000139514 or ENSG00000149150 or ENSG00000155465 or ENSG00000165349 or ENSG00000167703 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12930836;UNIPROT:O75387;PMID:16288981;PMID:911815;PMID:10049700;PMID:10574970;PMID:11389679;PMID:11557028;PMID:11564694;PMID:12824232;PMID:14574404 + - gene_reaction_rule: "(ENSG00000092068 and ENSG00000168003) or ENSG00000003989 or ENSG00000103257 or ENSG00000123643 or ENSG00000139514 or ENSG00000149150 or ENSG00000155465 or ENSG00000165349 or ENSG00000167703" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12930836;UNIPROT:O75387;PMID:16288981;PMID:911815;PMID:10049700;PMID:10574970;PMID:11389679;PMID:11557028;PMID:11564694;PMID:12824232;PMID:14574404" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5091 + - id: "HMR_5091" - name: "" - metabolites: !!omap - m02993c: 1 - m02993s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000092068 and ENSG00000168003) or ENSG00000003989 or ENSG00000103257 or ENSG00000123643 or ENSG00000130876 or ENSG00000139514 or ENSG00000149150 or ENSG00000155465 or ENSG00000165349 or ENSG00000167703 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12930836;UNIPROT:O75387;PMID:16288981;PMID:911815;PMID:10049700;PMID:10574970;PMID:11389679;PMID:11557028;PMID:11564694;PMID:12824232;PMID:14574404 + - gene_reaction_rule: "(ENSG00000092068 and ENSG00000168003) or ENSG00000003989 or ENSG00000103257 or ENSG00000123643 or ENSG00000130876 or ENSG00000139514 or ENSG00000149150 or ENSG00000155465 or ENSG00000165349 or ENSG00000167703" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12930836;UNIPROT:O75387;PMID:16288981;PMID:911815;PMID:10049700;PMID:10574970;PMID:11389679;PMID:11557028;PMID:11564694;PMID:12824232;PMID:14574404" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5092 + - id: "HMR_5092" - name: "" - metabolites: !!omap - m02184c: -1 - m02184s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000092068 and ENSG00000168003) or ENSG00000003989 or ENSG00000103257 or ENSG00000123643 or ENSG00000139514 or ENSG00000149150 or ENSG00000155465 or ENSG00000165349 or ENSG00000167703 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12930836;UNIPROT:O75387;PMID:16288981;PMID:911815;PMID:10049700;PMID:10574970;PMID:11389679;PMID:11557028;PMID:11564694;PMID:12824232;PMID:14574404 + - gene_reaction_rule: "(ENSG00000092068 and ENSG00000168003) or ENSG00000003989 or ENSG00000103257 or ENSG00000123643 or ENSG00000139514 or ENSG00000149150 or ENSG00000155465 or ENSG00000165349 or ENSG00000167703" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12930836;UNIPROT:O75387;PMID:16288981;PMID:911815;PMID:10049700;PMID:10574970;PMID:11389679;PMID:11557028;PMID:11564694;PMID:12824232;PMID:14574404" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5094 + - id: "HMR_5094" - name: "" - metabolites: !!omap - m02658c: 1 - m02658s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000003989 or ENSG00000139209 or ENSG00000139514 or ENSG00000165349 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770310;PMID:11004451;PMID:15465786;PMID:16082501;PMID:17466261;PMID:7718542;PMID:10049700;PMID:10072483;PMID:10391915;PMID:10574970;PMID:11311135;PMID:11389679;PMID:11557028;PMID:11564694;PMID:11742812;PMID:11827462;PMID:12117417;PMID:12824232;PMID:14574404;PMID:7690540;PMID:9751058;PMID:9759917;PMID:12883891;PMID:16288981;PMID:1904693;PMID:4424190;PMID:6432599;PMID:9868191 + - gene_reaction_rule: "ENSG00000003989 or ENSG00000139209 or ENSG00000139514 or ENSG00000165349" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770310;PMID:11004451;PMID:15465786;PMID:16082501;PMID:17466261;PMID:7718542;PMID:10049700;PMID:10072483;PMID:10391915;PMID:10574970;PMID:11311135;PMID:11389679;PMID:11557028;PMID:11564694;PMID:11742812;PMID:11827462;PMID:12117417;PMID:12824232;PMID:14574404;PMID:7690540;PMID:9751058;PMID:9759917;PMID:12883891;PMID:16288981;PMID:1904693;PMID:4424190;PMID:6432599;PMID:9868191" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5129 + - id: "HMR_5129" - name: "" - metabolites: !!omap - m02038c: 1 @@ -180850,255 +180850,255 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137860 or ENSG00000197506 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12856181;PMID:10772724 + - gene_reaction_rule: "ENSG00000137860 or ENSG00000197506" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12856181;PMID:10772724" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5198 + - id: "HMR_5198" - name: "" - metabolites: !!omap - m01308c: -1 - m01308s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:15843442;PMID:2396980;PMID:3578517;PMID:9160046 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:15843442;PMID:2396980;PMID:3578517;PMID:9160046" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5200 + - id: "HMR_5200" - name: "" - metabolites: !!omap - m01343c: -1 - m01343s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5202 + - id: "HMR_5202" - name: "" - metabolites: !!omap - m01345c: -1 - m01345s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12023832;PMID:15843442;PMID:2396980;PMID:3578517;PMID:7544533;PMID:9160046 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12023832;PMID:15843442;PMID:2396980;PMID:3578517;PMID:7544533;PMID:9160046" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5206 + - id: "HMR_5206" - name: "" - metabolites: !!omap - m01350c: -1 - m01350s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:15976321;PMID:16680030 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:15976321;PMID:16680030" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5213 + - id: "HMR_5213" - name: "" - metabolites: !!omap - m01827c: -1 - m01827s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10766195;PMID:11460506;PMID:18676163;PMID:2695254 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10766195;PMID:11460506;PMID:18676163;PMID:2695254" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5215 + - id: "HMR_5215" - name: "" - metabolites: !!omap - m02044c: -1 - m02044s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5216 + - id: "HMR_5216" - name: "" - metabolites: !!omap - m02753c: -1 - m02753s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5219 + - id: "HMR_5219" - name: "" - metabolites: !!omap - m02802c: -1 - m02802s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5221 + - id: "HMR_5221" - name: "" - metabolites: !!omap - m00186c: -1 - m00186s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5231 + - id: "HMR_5231" - name: "" - metabolites: !!omap - m02414c: -1 - m02414s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5232 + - id: "HMR_5232" - name: "" - metabolites: !!omap - m02047l: 1 - m02047s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5236 + - id: "HMR_5236" - name: "" - metabolites: !!omap - m02048r: -1 - m02048s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5237 + - id: "HMR_5237" - name: "" - metabolites: !!omap - m02352l: 1 - m02352s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5240 + - id: "HMR_5240" - name: "" - metabolites: !!omap - m02353r: -1 - m02353s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5241 + - id: "HMR_5241" - name: "" - metabolites: !!omap - m03146l: 1 - m03146s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130164 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000130164" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5246 + - id: "HMR_5246" - name: "" - metabolites: !!omap - m01569l: 1 - m01569s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130164 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000130164" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5295 + - id: "HMR_5295" - name: "" - metabolites: !!omap - m01285c: 1 @@ -181112,45 +181112,45 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000101892 and ENSG00000137731 and ENSG00000163399) or (ENSG00000018625 and ENSG00000129244 and ENSG00000137731) or (ENSG00000018625 and ENSG00000069849 and ENSG00000137731) or (ENSG00000101892 and ENSG00000105409 and ENSG00000137731) or (ENSG00000105409 and ENSG00000137731 and ENSG00000143153) or (ENSG00000105409 and ENSG00000129244 and ENSG00000137731) or (ENSG00000069849 and ENSG00000105409 and ENSG00000137731) or (ENSG00000101892 and ENSG00000132681 and ENSG00000137731) or (ENSG00000132681 and ENSG00000137731 and ENSG00000143153) or (ENSG00000129244 and ENSG00000132681 and ENSG00000137731) or (ENSG00000069849 and ENSG00000132681 and ENSG00000137731) or (ENSG00000137731 and ENSG00000143153 and ENSG00000163399) or (ENSG00000129244 and ENSG00000137731 and ENSG00000163399) or (ENSG00000069849 and ENSG00000137731 and ENSG00000163399) or (ENSG00000018625 and ENSG00000101892 and ENSG00000137731) or (ENSG00000018625 and ENSG00000137731 and ENSG00000143153) - - rxnFrom: HMRdatabase - - eccodes: 3.6.3.9 - - references: PMID:2835623;PMID:6258180 + - gene_reaction_rule: "(ENSG00000101892 and ENSG00000137731 and ENSG00000163399) or (ENSG00000018625 and ENSG00000129244 and ENSG00000137731) or (ENSG00000018625 and ENSG00000069849 and ENSG00000137731) or (ENSG00000101892 and ENSG00000105409 and ENSG00000137731) or (ENSG00000105409 and ENSG00000137731 and ENSG00000143153) or (ENSG00000105409 and ENSG00000129244 and ENSG00000137731) or (ENSG00000069849 and ENSG00000105409 and ENSG00000137731) or (ENSG00000101892 and ENSG00000132681 and ENSG00000137731) or (ENSG00000132681 and ENSG00000137731 and ENSG00000143153) or (ENSG00000129244 and ENSG00000132681 and ENSG00000137731) or (ENSG00000069849 and ENSG00000132681 and ENSG00000137731) or (ENSG00000137731 and ENSG00000143153 and ENSG00000163399) or (ENSG00000129244 and ENSG00000137731 and ENSG00000163399) or (ENSG00000069849 and ENSG00000137731 and ENSG00000163399) or (ENSG00000018625 and ENSG00000101892 and ENSG00000137731) or (ENSG00000018625 and ENSG00000137731 and ENSG00000143153)" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.3.9" + - references: "PMID:2835623;PMID:6258180" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5296 + - id: "HMR_5296" - name: "" - metabolites: !!omap - m02470c: -1 - m02470s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5303 + - id: "HMR_5303" - name: "" - metabolites: !!omap - m01371c: -1 - m01371s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10913128;PMID:11147574;PMID:11557556;PMID:12269403;PMID:14613890;PMID:15210701;PMID:15958381;PMID:17124168;PMID:179827;PMID:18697206;PMID:3031070;PMID:3244197;PMID:9305892 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10913128;PMID:11147574;PMID:11557556;PMID:12269403;PMID:14613890;PMID:15210701;PMID:15958381;PMID:17124168;PMID:179827;PMID:18697206;PMID:3031070;PMID:3244197;PMID:9305892" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5305 + - id: "HMR_5305" - name: "" - metabolites: !!omap - m01307c: 1 @@ -181159,15 +181159,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000003989 or ENSG00000072041 or ENSG00000105281 or ENSG00000111371 or ENSG00000115902 or ENSG00000134294 or ENSG00000139209 or ENSG00000139514 or ENSG00000165349 or ENSG00000174358 or ENSG00000268104 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12845534;PMID:10823827;PMID:11452978;PMID:15632147 + - gene_reaction_rule: "ENSG00000003989 or ENSG00000072041 or ENSG00000105281 or ENSG00000111371 or ENSG00000115902 or ENSG00000134294 or ENSG00000139209 or ENSG00000139514 or ENSG00000165349 or ENSG00000174358 or ENSG00000268104" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12845534;PMID:10823827;PMID:11452978;PMID:15632147" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5307 + - id: "HMR_5307" - name: "" - metabolites: !!omap - m01307c: 1 @@ -181178,15 +181178,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000017483 or ENSG00000188338 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000017483 or ENSG00000188338" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5308 + - id: "HMR_5308" - name: "" - metabolites: !!omap - m01975c: 1 @@ -181195,15 +181195,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072041 or ENSG00000105281 or ENSG00000111371 or ENSG00000134294 or ENSG00000139209 or ENSG00000174358 or ENSG00000268104 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12845534;PMID:10823827;PMID:11452978;PMID:15632147 + - gene_reaction_rule: "ENSG00000072041 or ENSG00000105281 or ENSG00000111371 or ENSG00000134294 or ENSG00000139209 or ENSG00000174358 or ENSG00000268104" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12845534;PMID:10823827;PMID:11452978;PMID:15632147" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5310 + - id: "HMR_5310" - name: "" - metabolites: !!omap - m01975c: 1 @@ -181214,15 +181214,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000017483 or ENSG00000188338 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000017483 or ENSG00000188338" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5311 + - id: "HMR_5311" - name: "" - metabolites: !!omap - m01369c: 1 @@ -181231,15 +181231,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072041 or ENSG00000111371 or ENSG00000134294 or ENSG00000139209 or ENSG00000268104 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12845534;PMID:10823827;PMID:11452978;PMID:15632147 + - gene_reaction_rule: "ENSG00000072041 or ENSG00000111371 or ENSG00000134294 or ENSG00000139209 or ENSG00000268104" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12845534;PMID:10823827;PMID:11452978;PMID:15632147" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5313 + - id: "HMR_5313" - name: "" - metabolites: !!omap - m01369c: 1 @@ -181250,15 +181250,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000017483 or ENSG00000188338 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000017483 or ENSG00000188338" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5314 + - id: "HMR_5314" - name: "" - metabolites: !!omap - m02519c: 1 @@ -181267,15 +181267,15 @@ - m03135s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072041 or ENSG00000174358 or ENSG00000268104 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12930836;PMID:17322374 + - gene_reaction_rule: "ENSG00000072041 or ENSG00000174358 or ENSG00000268104" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12930836;PMID:17322374" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5315 + - id: "HMR_5315" - name: "" - metabolites: !!omap - m02360c: 1 @@ -181284,15 +181284,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000003989 or ENSG00000072041 or ENSG00000111371 or ENSG00000134294 or ENSG00000139209 or ENSG00000139514 or ENSG00000165349 or ENSG00000168003 or ENSG00000174358 or ENSG00000268104 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12930836;PMID:17322374 + - gene_reaction_rule: "ENSG00000003989 or ENSG00000072041 or ENSG00000111371 or ENSG00000134294 or ENSG00000139209 or ENSG00000139514 or ENSG00000165349 or ENSG00000168003 or ENSG00000174358 or ENSG00000268104" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12930836;PMID:17322374" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5316 + - id: "HMR_5316" - name: "" - metabolites: !!omap - m02184c: 1 @@ -181301,15 +181301,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072041 or ENSG00000174358 or ENSG00000268104 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12930836;PMID:17322374 + - gene_reaction_rule: "ENSG00000072041 or ENSG00000174358 or ENSG00000268104" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12930836;PMID:17322374" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5317 + - id: "HMR_5317" - name: "" - metabolites: !!omap - m02519c: 1 @@ -181318,15 +181318,15 @@ - m03089s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174358 or ENSG00000268104 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000174358 or ENSG00000268104" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5318 + - id: "HMR_5318" - name: "" - metabolites: !!omap - m02519c: 1 @@ -181335,15 +181335,15 @@ - m03101s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174358 or ENSG00000268104 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000174358 or ENSG00000268104" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5319 + - id: "HMR_5319" - name: "" - metabolites: !!omap - m02519c: 1 @@ -181352,15 +181352,15 @@ - m02724s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000003989 or ENSG00000111371 or ENSG00000134294 or ENSG00000139209 or ENSG00000139514 or ENSG00000165349 or ENSG00000174358 or ENSG00000268104 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000003989 or ENSG00000111371 or ENSG00000134294 or ENSG00000139209 or ENSG00000139514 or ENSG00000165349 or ENSG00000174358 or ENSG00000268104" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5320 + - id: "HMR_5320" - name: "" - metabolites: !!omap - m01986c: 1 @@ -181369,15 +181369,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111371 or ENSG00000134294 or ENSG00000139209 or ENSG00000174358 or ENSG00000268104 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12845534;PMID:10823827;PMID:11452978;PMID:15632147 + - gene_reaction_rule: "ENSG00000111371 or ENSG00000134294 or ENSG00000139209 or ENSG00000174358 or ENSG00000268104" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12845534;PMID:10823827;PMID:11452978;PMID:15632147" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5322 + - id: "HMR_5322" - name: "" - metabolites: !!omap - m02519c: 1 @@ -181386,15 +181386,15 @@ - m02770s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011083 or ENSG00000072041 or ENSG00000111371 or ENSG00000134294 or ENSG00000139209 or ENSG00000163817 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12845534;PMID:10823827;PMID:11452978;PMID:15632147 + - gene_reaction_rule: "ENSG00000011083 or ENSG00000072041 or ENSG00000111371 or ENSG00000134294 or ENSG00000139209 or ENSG00000163817" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12845534;PMID:10823827;PMID:11452978;PMID:15632147" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5324 + - id: "HMR_5324" - name: "" - metabolites: !!omap - m02471c: 1 @@ -181403,15 +181403,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072041 or ENSG00000111371 or ENSG00000134294 or ENSG00000139209 or ENSG00000174358 or ENSG00000197375 or ENSG00000268104 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12845534 + - gene_reaction_rule: "ENSG00000072041 or ENSG00000111371 or ENSG00000134294 or ENSG00000139209 or ENSG00000174358 or ENSG00000197375 or ENSG00000268104" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12845534" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5326 + - id: "HMR_5326" - name: "" - metabolites: !!omap - m02519c: 1 @@ -181420,15 +181420,15 @@ - m02993s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072041 or ENSG00000111371 or ENSG00000134294 or ENSG00000139209 or ENSG00000268104 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12845534;PMID:10823827;PMID:11452978;PMID:15632147 + - gene_reaction_rule: "ENSG00000072041 or ENSG00000111371 or ENSG00000134294 or ENSG00000139209 or ENSG00000268104" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12845534;PMID:10823827;PMID:11452978;PMID:15632147" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5328 + - id: "HMR_5328" - name: "" - metabolites: !!omap - m01370c: 1 @@ -181437,15 +181437,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000079215 or ENSG00000105143 or ENSG00000106688 or ENSG00000110436 or ENSG00000178537 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10823827 + - gene_reaction_rule: "ENSG00000079215 or ENSG00000105143 or ENSG00000106688 or ENSG00000110436 or ENSG00000178537" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10823827" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5330 + - id: "HMR_5330" - name: "" - metabolites: !!omap - m01974c: 1 @@ -181454,15 +181454,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000079215 or ENSG00000105143 or ENSG00000106688 or ENSG00000110436 or ENSG00000162383 or ENSG00000174358 or ENSG00000178537 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10823827 + - gene_reaction_rule: "ENSG00000079215 or ENSG00000105143 or ENSG00000106688 or ENSG00000110436 or ENSG00000162383 or ENSG00000174358 or ENSG00000178537" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10823827" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5332 + - id: "HMR_5332" - name: "" - metabolites: !!omap - m01285c: 1 @@ -181474,15 +181474,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000091664 or ENSG00000104888 or ENSG00000179520 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000091664 or ENSG00000104888 or ENSG00000179520" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5333 + - id: "HMR_5333" - name: "" - metabolites: !!omap - m02125c: 1 @@ -181491,15 +181491,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134294 or ENSG00000139209 or ENSG00000268104 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10823827;PMID:12845534 + - gene_reaction_rule: "ENSG00000134294 or ENSG00000139209 or ENSG00000268104" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10823827;PMID:12845534" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5335 + - id: "HMR_5335" - name: "" - metabolites: !!omap - m02039c: -1 @@ -181510,15 +181510,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000188338 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000188338" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5413 + - id: "HMR_5413" - name: "" - metabolites: !!omap - m02039c: 1 @@ -181527,15 +181527,15 @@ - m02751s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000144136 or ENSG00000168575 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000144136 or ENSG00000168575" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5429 + - id: "HMR_5429" - name: "" - metabolites: !!omap - m01285c: 1 @@ -181549,15 +181549,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000101892 and ENSG00000137731 and ENSG00000163399) or (ENSG00000018625 and ENSG00000129244 and ENSG00000137731) or (ENSG00000018625 and ENSG00000069849 and ENSG00000137731) or (ENSG00000101892 and ENSG00000105409 and ENSG00000137731) or (ENSG00000105409 and ENSG00000137731 and ENSG00000143153) or (ENSG00000105409 and ENSG00000129244 and ENSG00000137731) or (ENSG00000069849 and ENSG00000105409 and ENSG00000137731) or (ENSG00000101892 and ENSG00000132681 and ENSG00000137731) or (ENSG00000132681 and ENSG00000137731 and ENSG00000143153) or (ENSG00000129244 and ENSG00000132681 and ENSG00000137731) or (ENSG00000069849 and ENSG00000132681 and ENSG00000137731) or (ENSG00000137731 and ENSG00000143153 and ENSG00000163399) or (ENSG00000129244 and ENSG00000137731 and ENSG00000163399) or (ENSG00000069849 and ENSG00000137731 and ENSG00000163399) or (ENSG00000018625 and ENSG00000101892 and ENSG00000137731) or (ENSG00000018625 and ENSG00000137731 and ENSG00000143153) - - rxnFrom: HMRdatabase - - eccodes: - - references: DOI:10.1002/9780470691861 + - gene_reaction_rule: "(ENSG00000101892 and ENSG00000137731 and ENSG00000163399) or (ENSG00000018625 and ENSG00000129244 and ENSG00000137731) or (ENSG00000018625 and ENSG00000069849 and ENSG00000137731) or (ENSG00000101892 and ENSG00000105409 and ENSG00000137731) or (ENSG00000105409 and ENSG00000137731 and ENSG00000143153) or (ENSG00000105409 and ENSG00000129244 and ENSG00000137731) or (ENSG00000069849 and ENSG00000105409 and ENSG00000137731) or (ENSG00000101892 and ENSG00000132681 and ENSG00000137731) or (ENSG00000132681 and ENSG00000137731 and ENSG00000143153) or (ENSG00000129244 and ENSG00000132681 and ENSG00000137731) or (ENSG00000069849 and ENSG00000132681 and ENSG00000137731) or (ENSG00000137731 and ENSG00000143153 and ENSG00000163399) or (ENSG00000129244 and ENSG00000137731 and ENSG00000163399) or (ENSG00000069849 and ENSG00000137731 and ENSG00000163399) or (ENSG00000018625 and ENSG00000101892 and ENSG00000137731) or (ENSG00000018625 and ENSG00000137731 and ENSG00000143153)" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "DOI:10.1002/9780470691861" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5430 + - id: "HMR_5430" - name: "" - metabolites: !!omap - m02039c: -1 @@ -181566,15 +181566,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066230 or ENSG00000090020 or ENSG00000115616 or ENSG00000135740 or ENSG00000180251 or ENSG00000181804 - - rxnFrom: HMRdatabase - - eccodes: - - references: DOI:10.1002/9780470691861 + - gene_reaction_rule: "ENSG00000066230 or ENSG00000090020 or ENSG00000115616 or ENSG00000135740 or ENSG00000180251 or ENSG00000181804" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "DOI:10.1002/9780470691861" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5432 + - id: "HMR_5432" - name: "" - metabolites: !!omap - m02046c: -1 @@ -181583,30 +181583,30 @@ - m02519s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000033867 - - rxnFrom: HMRdatabase - - eccodes: - - references: DOI:10.1002/9780470691861 + - gene_reaction_rule: "ENSG00000033867" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "DOI:10.1002/9780470691861" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5433 + - id: "HMR_5433" - name: "" - metabolites: !!omap - m02200c: -1 - m02200s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000006071 and ENSG00000121361) or (ENSG00000069431 and ENSG00000121361) or (ENSG00000006071 and ENSG00000187486) or (ENSG00000069431 and ENSG00000187486) - - rxnFrom: HMRdatabase - - eccodes: - - references: DOI:10.1002/9780470691861 + - gene_reaction_rule: "(ENSG00000006071 and ENSG00000121361) or (ENSG00000069431 and ENSG00000121361) or (ENSG00000006071 and ENSG00000187486) or (ENSG00000069431 and ENSG00000187486)" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "DOI:10.1002/9780470691861" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5435 + - id: "HMR_5435" - name: "" - metabolites: !!omap - m02519c: 2 @@ -181615,15 +181615,15 @@ - m02965s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100652 or ENSG00000125255 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076396;PMID:11819755;PMID:17404808;PMID:6384004 + - gene_reaction_rule: "ENSG00000100652 or ENSG00000125255" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076396;PMID:11819755;PMID:17404808;PMID:6384004" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5436 + - id: "HMR_5436" - name: "" - metabolites: !!omap - m02000c: 1 @@ -181632,15 +181632,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100652 or ENSG00000125255 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076396;PMID:11819755;PMID:17404808;PMID:6384004 + - gene_reaction_rule: "ENSG00000100652 or ENSG00000125255" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076396;PMID:11819755;PMID:17404808;PMID:6384004" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5437 + - id: "HMR_5437" - name: "" - metabolites: !!omap - m02519c: 2 @@ -181649,15 +181649,15 @@ - m02966s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100652 or ENSG00000125255 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076396;PMID:11819755;PMID:17404808;PMID:6384004 + - gene_reaction_rule: "ENSG00000100652 or ENSG00000125255" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076396;PMID:11819755;PMID:17404808;PMID:6384004" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5438 + - id: "HMR_5438" - name: "" - metabolites: !!omap - m02004c: 1 @@ -181666,15 +181666,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100652 or ENSG00000125255 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076396;PMID:11819755;PMID:17404808;PMID:6384004 + - gene_reaction_rule: "ENSG00000100652 or ENSG00000125255" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076396;PMID:11819755;PMID:17404808;PMID:6384004" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5439 + - id: "HMR_5439" - name: "" - metabolites: !!omap - m02519c: 2 @@ -181683,45 +181683,45 @@ - m02950s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100652 or ENSG00000125255 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076396;PMID:11819755;PMID:17404808;PMID:6384004 + - gene_reaction_rule: "ENSG00000100652 or ENSG00000125255" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076396;PMID:11819755;PMID:17404808;PMID:6384004" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5440 + - id: "HMR_5440" - name: "" - metabolites: !!omap - m01396c: 1 - m01396s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5441 + - id: "HMR_5441" - name: "" - metabolites: !!omap - m02136c: -1 - m02136s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149150 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12930836;UNIPROT:O75387;PMID:16288981;PMID:911815;PMID:10049700;PMID:10574970;PMID:11389679;PMID:11557028;PMID:11564694;PMID:12824232;PMID:14574404 + - gene_reaction_rule: "ENSG00000149150" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12930836;UNIPROT:O75387;PMID:16288981;PMID:911815;PMID:10049700;PMID:10574970;PMID:11389679;PMID:11557028;PMID:11564694;PMID:12824232;PMID:14574404" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5442 + - id: "HMR_5442" - name: "" - metabolites: !!omap - m01285c: 1 @@ -181733,15 +181733,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000114770 - - rxnFrom: HMRdatabase - - eccodes: - - references: DOI:10.1002/9780470691861 + - gene_reaction_rule: "ENSG00000114770" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "DOI:10.1002/9780470691861" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5443 + - id: "HMR_5443" - name: "" - metabolites: !!omap - m01285c: 1 @@ -181753,15 +181753,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000114770 - - rxnFrom: HMRdatabase - - eccodes: - - references: DOI:10.1002/9780470691861 + - gene_reaction_rule: "ENSG00000114770" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "DOI:10.1002/9780470691861" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5444 + - id: "HMR_5444" - name: "" - metabolites: !!omap - m01285c: 1 @@ -181773,15 +181773,15 @@ - m02900s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000114770 - - rxnFrom: HMRdatabase - - eccodes: - - references: DOI:10.1002/9780470691861 + - gene_reaction_rule: "ENSG00000114770" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "DOI:10.1002/9780470691861" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5445 + - id: "HMR_5445" - name: "" - metabolites: !!omap - m01285c: 1 @@ -181793,15 +181793,15 @@ - m02901s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000114770 - - rxnFrom: HMRdatabase - - eccodes: - - references: DOI:10.1002/9780470691861 + - gene_reaction_rule: "ENSG00000114770" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "DOI:10.1002/9780470691861" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5446 + - id: "HMR_5446" - name: "" - metabolites: !!omap - m01285c: 1 @@ -181813,15 +181813,15 @@ - m03120s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16586096 + - gene_reaction_rule: "ENSG00000125257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16586096" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5447 + - id: "HMR_5447" - name: "" - metabolites: !!omap - m01370c: 1 @@ -181834,15 +181834,15 @@ - m02519s: -3 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000079215 or ENSG00000105143 or ENSG00000106688 or ENSG00000110436 or ENSG00000162383 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14530974 + - gene_reaction_rule: "ENSG00000079215 or ENSG00000105143 or ENSG00000106688 or ENSG00000110436 or ENSG00000162383" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14530974" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5448 + - id: "HMR_5448" - name: "" - metabolites: !!omap - m02046c: -1 @@ -181851,15 +181851,15 @@ - m02519s: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000080493 or ENSG00000188687 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14722772 + - gene_reaction_rule: "ENSG00000080493 or ENSG00000188687" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14722772" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5450 + - id: "HMR_5450" - name: "" - metabolites: !!omap - m01965c: 1 @@ -181868,15 +181868,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117834 or ENSG00000140675 or ENSG00000148942 or ENSG00000154025 or ENSG00000158865 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12748858 + - gene_reaction_rule: "ENSG00000117834 or ENSG00000140675 or ENSG00000148942 or ENSG00000154025 or ENSG00000158865" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12748858" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5451 + - id: "HMR_5451" - name: "" - metabolites: !!omap - m02519c: 2 @@ -181885,15 +181885,15 @@ - m02961s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000131389 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000131389" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5454 + - id: "HMR_5454" - name: "" - metabolites: !!omap - m01442c: 1 @@ -181904,15 +181904,15 @@ - m02961s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000131389 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12719981 + - gene_reaction_rule: "ENSG00000131389" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12719981" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5455 + - id: "HMR_5455" - name: "" - metabolites: !!omap - m01442c: 1 @@ -181923,15 +181923,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000196517 or ENSG00000268104 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12719981 + - gene_reaction_rule: "ENSG00000196517 or ENSG00000268104" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12719981" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5457 + - id: "HMR_5457" - name: "" - metabolites: !!omap - m01442c: 1 @@ -181942,15 +181942,15 @@ - m02519s: -3 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165970 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165970" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5458 + - id: "HMR_5458" - name: "" - metabolites: !!omap - m01307c: -1 @@ -181959,15 +181959,15 @@ - m01986s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 or ENSG00000130876 or ENSG00000168003 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257 or ENSG00000130876 or ENSG00000168003" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5459 + - id: "HMR_5459" - name: "" - metabolites: !!omap - m01975c: -1 @@ -181976,15 +181976,15 @@ - m01986s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5460 + - id: "HMR_5460" - name: "" - metabolites: !!omap - m01986c: -1 @@ -181993,15 +181993,15 @@ - m02896s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 or ENSG00000130876 or ENSG00000168003 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257 or ENSG00000130876 or ENSG00000168003" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5461 + - id: "HMR_5461" - name: "" - metabolites: !!omap - m01986c: -1 @@ -182010,15 +182010,15 @@ - m02471s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5462 + - id: "HMR_5462" - name: "" - metabolites: !!omap - m01986c: -1 @@ -182027,15 +182027,15 @@ - m03089s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5463 + - id: "HMR_5463" - name: "" - metabolites: !!omap - m01986c: -1 @@ -182044,15 +182044,15 @@ - m02724s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5464 + - id: "HMR_5464" - name: "" - metabolites: !!omap - m01986c: -1 @@ -182061,15 +182061,15 @@ - m03101s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5465 + - id: "HMR_5465" - name: "" - metabolites: !!omap - m01628c: -1 @@ -182078,15 +182078,15 @@ - m01986s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000092068 and ENSG00000168003) or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "(ENSG00000092068 and ENSG00000168003) or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5466 + - id: "HMR_5466" - name: "" - metabolites: !!omap - m01986c: -1 @@ -182095,15 +182095,15 @@ - m02360s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5467 + - id: "HMR_5467" - name: "" - metabolites: !!omap - m01986c: -1 @@ -182112,15 +182112,15 @@ - m02770s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5468 + - id: "HMR_5468" - name: "" - metabolites: !!omap - m01369c: -1 @@ -182129,15 +182129,15 @@ - m01986s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5469 + - id: "HMR_5469" - name: "" - metabolites: !!omap - m01986c: -1 @@ -182146,15 +182146,15 @@ - m03135s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5470 + - id: "HMR_5470" - name: "" - metabolites: !!omap - m01986c: -1 @@ -182163,15 +182163,15 @@ - m02993s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 or ENSG00000130876 or ENSG00000168003 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257 or ENSG00000130876 or ENSG00000168003" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5471 + - id: "HMR_5471" - name: "" - metabolites: !!omap - m01986c: -1 @@ -182180,15 +182180,15 @@ - m02136s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5472 + - id: "HMR_5472" - name: "" - metabolites: !!omap - m01986c: -1 @@ -182197,15 +182197,15 @@ - m02184s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5473 + - id: "HMR_5473" - name: "" - metabolites: !!omap - m01307c: -1 @@ -182214,15 +182214,15 @@ - m01975s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 or ENSG00000130876 or ENSG00000168003 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257 or ENSG00000130876 or ENSG00000168003" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5474 + - id: "HMR_5474" - name: "" - metabolites: !!omap - m01307c: -1 @@ -182231,15 +182231,15 @@ - m02896s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5475 + - id: "HMR_5475" - name: "" - metabolites: !!omap - m01307c: -1 @@ -182248,15 +182248,15 @@ - m02471s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5476 + - id: "HMR_5476" - name: "" - metabolites: !!omap - m01307c: -1 @@ -182265,15 +182265,15 @@ - m03089s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5477 + - id: "HMR_5477" - name: "" - metabolites: !!omap - m01307c: -1 @@ -182282,15 +182282,15 @@ - m02724s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5478 + - id: "HMR_5478" - name: "" - metabolites: !!omap - m01307c: -1 @@ -182299,15 +182299,15 @@ - m03101s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5479 + - id: "HMR_5479" - name: "" - metabolites: !!omap - m01307c: -1 @@ -182316,15 +182316,15 @@ - m01628s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5480 + - id: "HMR_5480" - name: "" - metabolites: !!omap - m01307c: -1 @@ -182333,15 +182333,15 @@ - m02360s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5481 + - id: "HMR_5481" - name: "" - metabolites: !!omap - m01307c: -1 @@ -182350,15 +182350,15 @@ - m02770s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5482 + - id: "HMR_5482" - name: "" - metabolites: !!omap - m01307c: -1 @@ -182367,15 +182367,15 @@ - m01369s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5483 + - id: "HMR_5483" - name: "" - metabolites: !!omap - m01307c: -1 @@ -182384,15 +182384,15 @@ - m03135s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5484 + - id: "HMR_5484" - name: "" - metabolites: !!omap - m01307c: -1 @@ -182401,15 +182401,15 @@ - m02993s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5485 + - id: "HMR_5485" - name: "" - metabolites: !!omap - m01307c: -1 @@ -182418,15 +182418,15 @@ - m02136s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5486 + - id: "HMR_5486" - name: "" - metabolites: !!omap - m01307c: -1 @@ -182435,15 +182435,15 @@ - m02184s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5487 + - id: "HMR_5487" - name: "" - metabolites: !!omap - m01975c: -1 @@ -182452,15 +182452,15 @@ - m02896s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 or ENSG00000130876 or ENSG00000168003 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257 or ENSG00000130876 or ENSG00000168003" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5488 + - id: "HMR_5488" - name: "" - metabolites: !!omap - m01975c: -1 @@ -182469,15 +182469,15 @@ - m02471s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5489 + - id: "HMR_5489" - name: "" - metabolites: !!omap - m01975c: -1 @@ -182486,15 +182486,15 @@ - m03089s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5490 + - id: "HMR_5490" - name: "" - metabolites: !!omap - m01975c: -1 @@ -182503,15 +182503,15 @@ - m02724s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5491 + - id: "HMR_5491" - name: "" - metabolites: !!omap - m01975c: -1 @@ -182520,15 +182520,15 @@ - m03101s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5492 + - id: "HMR_5492" - name: "" - metabolites: !!omap - m01628c: -1 @@ -182537,15 +182537,15 @@ - m01975s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000130876 and ENSG00000168003) or (ENSG00000103257 and ENSG00000168003) - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "(ENSG00000130876 and ENSG00000168003) or (ENSG00000103257 and ENSG00000168003)" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5493 + - id: "HMR_5493" - name: "" - metabolites: !!omap - m01975c: -1 @@ -182554,15 +182554,15 @@ - m02360s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5494 + - id: "HMR_5494" - name: "" - metabolites: !!omap - m01975c: -1 @@ -182571,15 +182571,15 @@ - m02770s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5495 + - id: "HMR_5495" - name: "" - metabolites: !!omap - m01369c: -1 @@ -182588,15 +182588,15 @@ - m01975s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5496 + - id: "HMR_5496" - name: "" - metabolites: !!omap - m01975c: -1 @@ -182605,15 +182605,15 @@ - m03135s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5497 + - id: "HMR_5497" - name: "" - metabolites: !!omap - m01975c: -1 @@ -182622,15 +182622,15 @@ - m02993s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 or ENSG00000130876 or ENSG00000168003 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257 or ENSG00000130876 or ENSG00000168003" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5498 + - id: "HMR_5498" - name: "" - metabolites: !!omap - m01975c: -1 @@ -182639,15 +182639,15 @@ - m02136s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5499 + - id: "HMR_5499" - name: "" - metabolites: !!omap - m01975c: -1 @@ -182656,15 +182656,15 @@ - m02184s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5500 + - id: "HMR_5500" - name: "" - metabolites: !!omap - m02471c: -1 @@ -182673,15 +182673,15 @@ - m02896s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5501 + - id: "HMR_5501" - name: "" - metabolites: !!omap - m02896c: -1 @@ -182690,15 +182690,15 @@ - m03089s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5502 + - id: "HMR_5502" - name: "" - metabolites: !!omap - m02724c: -1 @@ -182707,15 +182707,15 @@ - m02896s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5503 + - id: "HMR_5503" - name: "" - metabolites: !!omap - m02896c: -1 @@ -182724,15 +182724,15 @@ - m03101s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5504 + - id: "HMR_5504" - name: "" - metabolites: !!omap - m01628c: -1 @@ -182741,15 +182741,15 @@ - m02896s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5505 + - id: "HMR_5505" - name: "" - metabolites: !!omap - m02360c: -1 @@ -182758,15 +182758,15 @@ - m02896s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5506 + - id: "HMR_5506" - name: "" - metabolites: !!omap - m02770c: -1 @@ -182775,15 +182775,15 @@ - m02896s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5507 + - id: "HMR_5507" - name: "" - metabolites: !!omap - m01369c: -1 @@ -182792,15 +182792,15 @@ - m02896s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5508 + - id: "HMR_5508" - name: "" - metabolites: !!omap - m02896c: -1 @@ -182809,15 +182809,15 @@ - m03135s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5509 + - id: "HMR_5509" - name: "" - metabolites: !!omap - m02896c: -1 @@ -182826,15 +182826,15 @@ - m02993s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5510 + - id: "HMR_5510" - name: "" - metabolites: !!omap - m02136c: -1 @@ -182843,15 +182843,15 @@ - m02896s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5511 + - id: "HMR_5511" - name: "" - metabolites: !!omap - m02184c: -1 @@ -182860,15 +182860,15 @@ - m02896s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5512 + - id: "HMR_5512" - name: "" - metabolites: !!omap - m02471c: -1 @@ -182877,15 +182877,15 @@ - m03089s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5513 + - id: "HMR_5513" - name: "" - metabolites: !!omap - m02471c: -1 @@ -182894,15 +182894,15 @@ - m02724s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5514 + - id: "HMR_5514" - name: "" - metabolites: !!omap - m02471c: -1 @@ -182911,15 +182911,15 @@ - m03101s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5515 + - id: "HMR_5515" - name: "" - metabolites: !!omap - m01628c: -1 @@ -182928,15 +182928,15 @@ - m02471s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5516 + - id: "HMR_5516" - name: "" - metabolites: !!omap - m02360c: -1 @@ -182945,15 +182945,15 @@ - m02471s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 and ENSG00000168003 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257 and ENSG00000168003" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5517 + - id: "HMR_5517" - name: "" - metabolites: !!omap - m02471c: -1 @@ -182962,15 +182962,15 @@ - m02770s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5518 + - id: "HMR_5518" - name: "" - metabolites: !!omap - m01369c: -1 @@ -182979,15 +182979,15 @@ - m02471s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5519 + - id: "HMR_5519" - name: "" - metabolites: !!omap - m02471c: -1 @@ -182996,15 +182996,15 @@ - m03135s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5520 + - id: "HMR_5520" - name: "" - metabolites: !!omap - m02471c: -1 @@ -183013,15 +183013,15 @@ - m02993s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5521 + - id: "HMR_5521" - name: "" - metabolites: !!omap - m02136c: -1 @@ -183030,15 +183030,15 @@ - m02471s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5522 + - id: "HMR_5522" - name: "" - metabolites: !!omap - m02184c: -1 @@ -183047,15 +183047,15 @@ - m02471s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5523 + - id: "HMR_5523" - name: "" - metabolites: !!omap - m02724c: -1 @@ -183064,15 +183064,15 @@ - m03089s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5524 + - id: "HMR_5524" - name: "" - metabolites: !!omap - m03089c: -1 @@ -183081,15 +183081,15 @@ - m03101s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5525 + - id: "HMR_5525" - name: "" - metabolites: !!omap - m01628c: -1 @@ -183098,15 +183098,15 @@ - m03089s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5526 + - id: "HMR_5526" - name: "" - metabolites: !!omap - m02360c: -1 @@ -183115,15 +183115,15 @@ - m03089s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5527 + - id: "HMR_5527" - name: "" - metabolites: !!omap - m02770c: -1 @@ -183132,15 +183132,15 @@ - m03089s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 or ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257 or ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5528 + - id: "HMR_5528" - name: "" - metabolites: !!omap - m01369c: -1 @@ -183149,15 +183149,15 @@ - m03089s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 or ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257 or ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5529 + - id: "HMR_5529" - name: "" - metabolites: !!omap - m03089c: -1 @@ -183166,15 +183166,15 @@ - m03135s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 or ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257 or ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5530 + - id: "HMR_5530" - name: "" - metabolites: !!omap - m02993c: -1 @@ -183183,15 +183183,15 @@ - m03089s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 or ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257 or ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5531 + - id: "HMR_5531" - name: "" - metabolites: !!omap - m02136c: -1 @@ -183200,15 +183200,15 @@ - m03089s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 or ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257 or ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5532 + - id: "HMR_5532" - name: "" - metabolites: !!omap - m02184c: -1 @@ -183217,15 +183217,15 @@ - m03089s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 or ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257 or ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5533 + - id: "HMR_5533" - name: "" - metabolites: !!omap - m02724c: -1 @@ -183234,15 +183234,15 @@ - m03101s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 or ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257 or ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5534 + - id: "HMR_5534" - name: "" - metabolites: !!omap - m01628c: -1 @@ -183251,15 +183251,15 @@ - m02724s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 or ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257 or ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5535 + - id: "HMR_5535" - name: "" - metabolites: !!omap - m02360c: -1 @@ -183268,15 +183268,15 @@ - m02724s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 or ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257 or ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5536 + - id: "HMR_5536" - name: "" - metabolites: !!omap - m02724c: -1 @@ -183285,15 +183285,15 @@ - m02770s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 or ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257 or ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5537 + - id: "HMR_5537" - name: "" - metabolites: !!omap - m01369c: -1 @@ -183302,15 +183302,15 @@ - m02724s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 or ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257 or ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5538 + - id: "HMR_5538" - name: "" - metabolites: !!omap - m02724c: -1 @@ -183319,15 +183319,15 @@ - m03135s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 or ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257 or ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5539 + - id: "HMR_5539" - name: "" - metabolites: !!omap - m02724c: -1 @@ -183336,15 +183336,15 @@ - m02993s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 or ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257 or ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5540 + - id: "HMR_5540" - name: "" - metabolites: !!omap - m02136c: -1 @@ -183353,15 +183353,15 @@ - m02724s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 or ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257 or ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5541 + - id: "HMR_5541" - name: "" - metabolites: !!omap - m02184c: -1 @@ -183370,15 +183370,15 @@ - m02724s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 or ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257 or ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5542 + - id: "HMR_5542" - name: "" - metabolites: !!omap - m01628c: -1 @@ -183387,15 +183387,15 @@ - m03101s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5543 + - id: "HMR_5543" - name: "" - metabolites: !!omap - m02360c: -1 @@ -183404,15 +183404,15 @@ - m03101s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5544 + - id: "HMR_5544" - name: "" - metabolites: !!omap - m02770c: -1 @@ -183421,15 +183421,15 @@ - m03101s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5545 + - id: "HMR_5545" - name: "" - metabolites: !!omap - m01369c: -1 @@ -183438,15 +183438,15 @@ - m03101s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5546 + - id: "HMR_5546" - name: "" - metabolites: !!omap - m03101c: -1 @@ -183455,15 +183455,15 @@ - m03135s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5547 + - id: "HMR_5547" - name: "" - metabolites: !!omap - m02993c: -1 @@ -183472,15 +183472,15 @@ - m03101s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 or ENSG00000188687 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257 or ENSG00000188687" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5548 + - id: "HMR_5548" - name: "" - metabolites: !!omap - m02136c: -1 @@ -183489,15 +183489,15 @@ - m03101s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5549 + - id: "HMR_5549" - name: "" - metabolites: !!omap - m02184c: -1 @@ -183506,15 +183506,15 @@ - m03101s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5550 + - id: "HMR_5550" - name: "" - metabolites: !!omap - m01628c: 1 @@ -183523,15 +183523,15 @@ - m02360s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5551 + - id: "HMR_5551" - name: "" - metabolites: !!omap - m01628c: -1 @@ -183540,15 +183540,15 @@ - m02770s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5552 + - id: "HMR_5552" - name: "" - metabolites: !!omap - m01369c: -1 @@ -183557,15 +183557,15 @@ - m01628s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5553 + - id: "HMR_5553" - name: "" - metabolites: !!omap - m01628c: -1 @@ -183574,15 +183574,15 @@ - m03135s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5554 + - id: "HMR_5554" - name: "" - metabolites: !!omap - m01628c: -1 @@ -183591,15 +183591,15 @@ - m02993s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5555 + - id: "HMR_5555" - name: "" - metabolites: !!omap - m01628c: -1 @@ -183608,15 +183608,15 @@ - m02136s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5556 + - id: "HMR_5556" - name: "" - metabolites: !!omap - m01628c: -1 @@ -183625,15 +183625,15 @@ - m02184s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5557 + - id: "HMR_5557" - name: "" - metabolites: !!omap - m02360c: -1 @@ -183642,15 +183642,15 @@ - m02770s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5558 + - id: "HMR_5558" - name: "" - metabolites: !!omap - m01369c: -1 @@ -183659,15 +183659,15 @@ - m02360s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5559 + - id: "HMR_5559" - name: "" - metabolites: !!omap - m02360c: -1 @@ -183676,15 +183676,15 @@ - m03135s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5560 + - id: "HMR_5560" - name: "" - metabolites: !!omap - m02360c: -1 @@ -183693,15 +183693,15 @@ - m02993s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5561 + - id: "HMR_5561" - name: "" - metabolites: !!omap - m02136c: -1 @@ -183710,15 +183710,15 @@ - m02360s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5562 + - id: "HMR_5562" - name: "" - metabolites: !!omap - m02184c: -1 @@ -183727,15 +183727,15 @@ - m02360s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5563 + - id: "HMR_5563" - name: "" - metabolites: !!omap - m01369c: -1 @@ -183744,15 +183744,15 @@ - m02770s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5564 + - id: "HMR_5564" - name: "" - metabolites: !!omap - m02770c: -1 @@ -183761,15 +183761,15 @@ - m03135s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5565 + - id: "HMR_5565" - name: "" - metabolites: !!omap - m02770c: -1 @@ -183778,15 +183778,15 @@ - m02993s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5566 + - id: "HMR_5566" - name: "" - metabolites: !!omap - m02136c: -1 @@ -183795,15 +183795,15 @@ - m02770s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5567 + - id: "HMR_5567" - name: "" - metabolites: !!omap - m02184c: -1 @@ -183812,15 +183812,15 @@ - m02770s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5568 + - id: "HMR_5568" - name: "" - metabolites: !!omap - m01369c: -1 @@ -183829,15 +183829,15 @@ - m03135s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5569 + - id: "HMR_5569" - name: "" - metabolites: !!omap - m01369c: -1 @@ -183846,15 +183846,15 @@ - m02993s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5570 + - id: "HMR_5570" - name: "" - metabolites: !!omap - m01369c: -1 @@ -183863,15 +183863,15 @@ - m02136s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5571 + - id: "HMR_5571" - name: "" - metabolites: !!omap - m01369c: -1 @@ -183880,15 +183880,15 @@ - m02184s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5572 + - id: "HMR_5572" - name: "" - metabolites: !!omap - m02993c: -1 @@ -183897,15 +183897,15 @@ - m03135s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5573 + - id: "HMR_5573" - name: "" - metabolites: !!omap - m02136c: -1 @@ -183914,15 +183914,15 @@ - m03135s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5574 + - id: "HMR_5574" - name: "" - metabolites: !!omap - m02184c: -1 @@ -183931,15 +183931,15 @@ - m03135s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5575 + - id: "HMR_5575" - name: "" - metabolites: !!omap - m02136c: -1 @@ -183948,15 +183948,15 @@ - m02993s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5576 + - id: "HMR_5576" - name: "" - metabolites: !!omap - m02184c: -1 @@ -183965,15 +183965,15 @@ - m02993s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5577 + - id: "HMR_5577" - name: "" - metabolites: !!omap - m02136c: -1 @@ -183982,15 +183982,15 @@ - m02184s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5578 + - id: "HMR_5578" - name: "" - metabolites: !!omap - m01365c: -1 @@ -183999,15 +183999,15 @@ - m02426s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 or ENSG00000168003 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257 or ENSG00000168003" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5579 + - id: "HMR_5579" - name: "" - metabolites: !!omap - m02426c: -1 @@ -184016,15 +184016,15 @@ - m02658s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5580 + - id: "HMR_5580" - name: "" - metabolites: !!omap - m02125c: -1 @@ -184033,15 +184033,15 @@ - m02426s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5581 + - id: "HMR_5581" - name: "" - metabolites: !!omap - m01588c: -1 @@ -184050,15 +184050,15 @@ - m02426s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5582 + - id: "HMR_5582" - name: "" - metabolites: !!omap - m01365c: -1 @@ -184067,15 +184067,15 @@ - m02658s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5583 + - id: "HMR_5583" - name: "" - metabolites: !!omap - m01365c: -1 @@ -184084,15 +184084,15 @@ - m02125s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5584 + - id: "HMR_5584" - name: "" - metabolites: !!omap - m01365c: -1 @@ -184101,15 +184101,15 @@ - m01588s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5585 + - id: "HMR_5585" - name: "" - metabolites: !!omap - m02125c: -1 @@ -184118,15 +184118,15 @@ - m02658s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5586 + - id: "HMR_5586" - name: "" - metabolites: !!omap - m01588c: -1 @@ -184135,15 +184135,15 @@ - m02125s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5587 + - id: "HMR_5587" - name: "" - metabolites: !!omap - m01307c: -1 @@ -184154,15 +184154,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5588 + - id: "HMR_5588" - name: "" - metabolites: !!omap - m01975c: -1 @@ -184173,15 +184173,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5589 + - id: "HMR_5589" - name: "" - metabolites: !!omap - m01986c: 1 @@ -184192,15 +184192,15 @@ - m02896s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5590 + - id: "HMR_5590" - name: "" - metabolites: !!omap - m01986c: 1 @@ -184211,15 +184211,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5591 + - id: "HMR_5591" - name: "" - metabolites: !!omap - m01986c: 1 @@ -184230,15 +184230,15 @@ - m03089s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5592 + - id: "HMR_5592" - name: "" - metabolites: !!omap - m01986c: 1 @@ -184249,15 +184249,15 @@ - m02724s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5593 + - id: "HMR_5593" - name: "" - metabolites: !!omap - m01986c: 1 @@ -184268,15 +184268,15 @@ - m03101s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5594 + - id: "HMR_5594" - name: "" - metabolites: !!omap - m01628c: -1 @@ -184287,15 +184287,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5595 + - id: "HMR_5595" - name: "" - metabolites: !!omap - m01986c: 1 @@ -184306,15 +184306,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5596 + - id: "HMR_5596" - name: "" - metabolites: !!omap - m01986c: 1 @@ -184325,15 +184325,15 @@ - m02770s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5597 + - id: "HMR_5597" - name: "" - metabolites: !!omap - m01369c: -1 @@ -184344,15 +184344,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5598 + - id: "HMR_5598" - name: "" - metabolites: !!omap - m01986c: 1 @@ -184363,15 +184363,15 @@ - m03135s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5599 + - id: "HMR_5599" - name: "" - metabolites: !!omap - m01986c: 1 @@ -184382,15 +184382,15 @@ - m02993s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5600 + - id: "HMR_5600" - name: "" - metabolites: !!omap - m01986c: 1 @@ -184401,15 +184401,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5601 + - id: "HMR_5601" - name: "" - metabolites: !!omap - m01986c: 1 @@ -184420,15 +184420,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5602 + - id: "HMR_5602" - name: "" - metabolites: !!omap - m01307c: 1 @@ -184439,15 +184439,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5603 + - id: "HMR_5603" - name: "" - metabolites: !!omap - m01307c: 1 @@ -184458,15 +184458,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000105281 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000105281" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5604 + - id: "HMR_5604" - name: "" - metabolites: !!omap - m01307c: 1 @@ -184477,15 +184477,15 @@ - m02896s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000105281 or ENSG00000115902 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000105281 or ENSG00000115902" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5605 + - id: "HMR_5605" - name: "" - metabolites: !!omap - m01307c: 1 @@ -184496,15 +184496,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5606 + - id: "HMR_5606" - name: "" - metabolites: !!omap - m01307c: 1 @@ -184515,15 +184515,15 @@ - m03089s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5607 + - id: "HMR_5607" - name: "" - metabolites: !!omap - m01307c: 1 @@ -184534,15 +184534,15 @@ - m02724s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5608 + - id: "HMR_5608" - name: "" - metabolites: !!omap - m01307c: 1 @@ -184553,15 +184553,15 @@ - m03101s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5609 + - id: "HMR_5609" - name: "" - metabolites: !!omap - m01307c: 1 @@ -184572,15 +184572,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000105281 or ENSG00000115902 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000105281 or ENSG00000115902" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5610 + - id: "HMR_5610" - name: "" - metabolites: !!omap - m01307c: 1 @@ -184591,15 +184591,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5611 + - id: "HMR_5611" - name: "" - metabolites: !!omap - m01307c: 1 @@ -184610,15 +184610,15 @@ - m02770s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5612 + - id: "HMR_5612" - name: "" - metabolites: !!omap - m01307c: 1 @@ -184629,15 +184629,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000105281 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000105281" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5613 + - id: "HMR_5613" - name: "" - metabolites: !!omap - m01307c: 1 @@ -184648,15 +184648,15 @@ - m03135s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5614 + - id: "HMR_5614" - name: "" - metabolites: !!omap - m01307c: 1 @@ -184667,15 +184667,15 @@ - m02993s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000105281 or ENSG00000115902 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000105281 or ENSG00000115902" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5615 + - id: "HMR_5615" - name: "" - metabolites: !!omap - m01307c: 1 @@ -184686,15 +184686,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5616 + - id: "HMR_5616" - name: "" - metabolites: !!omap - m01307c: 1 @@ -184705,15 +184705,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5617 + - id: "HMR_5617" - name: "" - metabolites: !!omap - m01975c: 1 @@ -184724,15 +184724,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5618 + - id: "HMR_5618" - name: "" - metabolites: !!omap - m01307c: -1 @@ -184743,15 +184743,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000105281 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000105281" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5619 + - id: "HMR_5619" - name: "" - metabolites: !!omap - m01975c: 1 @@ -184762,15 +184762,15 @@ - m02896s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000105281 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000105281" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5620 + - id: "HMR_5620" - name: "" - metabolites: !!omap - m01975c: 1 @@ -184781,15 +184781,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5621 + - id: "HMR_5621" - name: "" - metabolites: !!omap - m01975c: 1 @@ -184800,15 +184800,15 @@ - m03089s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5622 + - id: "HMR_5622" - name: "" - metabolites: !!omap - m01975c: 1 @@ -184819,15 +184819,15 @@ - m02724s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5623 + - id: "HMR_5623" - name: "" - metabolites: !!omap - m01975c: 1 @@ -184838,15 +184838,15 @@ - m03101s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5624 + - id: "HMR_5624" - name: "" - metabolites: !!omap - m01628c: -1 @@ -184857,15 +184857,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000105281 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000105281" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5625 + - id: "HMR_5625" - name: "" - metabolites: !!omap - m01975c: 1 @@ -184876,15 +184876,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5626 + - id: "HMR_5626" - name: "" - metabolites: !!omap - m01975c: 1 @@ -184895,15 +184895,15 @@ - m02770s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5627 + - id: "HMR_5627" - name: "" - metabolites: !!omap - m01369c: -1 @@ -184914,15 +184914,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000105281 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000105281" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5628 + - id: "HMR_5628" - name: "" - metabolites: !!omap - m01975c: 1 @@ -184933,15 +184933,15 @@ - m03135s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5629 + - id: "HMR_5629" - name: "" - metabolites: !!omap - m01975c: 1 @@ -184952,15 +184952,15 @@ - m02993s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000105281 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000105281" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5630 + - id: "HMR_5630" - name: "" - metabolites: !!omap - m01975c: 1 @@ -184971,15 +184971,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5631 + - id: "HMR_5631" - name: "" - metabolites: !!omap - m01975c: 1 @@ -184990,15 +184990,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5632 + - id: "HMR_5632" - name: "" - metabolites: !!omap - m01986c: -1 @@ -185009,15 +185009,15 @@ - m02896s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5633 + - id: "HMR_5633" - name: "" - metabolites: !!omap - m01307c: -1 @@ -185028,15 +185028,15 @@ - m02896s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000105281 or ENSG00000115902 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000105281 or ENSG00000115902" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5634 + - id: "HMR_5634" - name: "" - metabolites: !!omap - m01975c: -1 @@ -185047,15 +185047,15 @@ - m02896s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000105281 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000105281" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5635 + - id: "HMR_5635" - name: "" - metabolites: !!omap - m02471c: -1 @@ -185066,15 +185066,15 @@ - m02896s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5636 + - id: "HMR_5636" - name: "" - metabolites: !!omap - m02519c: 1 @@ -185085,15 +185085,15 @@ - m03089s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5637 + - id: "HMR_5637" - name: "" - metabolites: !!omap - m02519c: 1 @@ -185104,15 +185104,15 @@ - m02896s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5638 + - id: "HMR_5638" - name: "" - metabolites: !!omap - m02519c: 1 @@ -185123,15 +185123,15 @@ - m03101s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5639 + - id: "HMR_5639" - name: "" - metabolites: !!omap - m01628c: -1 @@ -185142,15 +185142,15 @@ - m02896s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000105281 or ENSG00000115902 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000105281 or ENSG00000115902" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5640 + - id: "HMR_5640" - name: "" - metabolites: !!omap - m02360c: -1 @@ -185161,15 +185161,15 @@ - m02896s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5641 + - id: "HMR_5641" - name: "" - metabolites: !!omap - m02519c: 1 @@ -185180,15 +185180,15 @@ - m02896s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5642 + - id: "HMR_5642" - name: "" - metabolites: !!omap - m01369c: -1 @@ -185199,15 +185199,15 @@ - m02896s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000105281 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000105281" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5643 + - id: "HMR_5643" - name: "" - metabolites: !!omap - m02519c: 1 @@ -185218,15 +185218,15 @@ - m03135s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5644 + - id: "HMR_5644" - name: "" - metabolites: !!omap - m02519c: 1 @@ -185237,15 +185237,15 @@ - m02993s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000105281 or ENSG00000115902 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000105281 or ENSG00000115902" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5645 + - id: "HMR_5645" - name: "" - metabolites: !!omap - m02136c: -1 @@ -185256,15 +185256,15 @@ - m02896s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5646 + - id: "HMR_5646" - name: "" - metabolites: !!omap - m02184c: -1 @@ -185275,15 +185275,15 @@ - m02896s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5647 + - id: "HMR_5647" - name: "" - metabolites: !!omap - m01986c: -1 @@ -185294,15 +185294,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5648 + - id: "HMR_5648" - name: "" - metabolites: !!omap - m01307c: -1 @@ -185313,15 +185313,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5649 + - id: "HMR_5649" - name: "" - metabolites: !!omap - m01975c: -1 @@ -185332,15 +185332,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5650 + - id: "HMR_5650" - name: "" - metabolites: !!omap - m02471c: 1 @@ -185351,15 +185351,15 @@ - m02896s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5651 + - id: "HMR_5651" - name: "" - metabolites: !!omap - m02471c: 1 @@ -185370,15 +185370,15 @@ - m03089s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5652 + - id: "HMR_5652" - name: "" - metabolites: !!omap - m02471c: 1 @@ -185389,15 +185389,15 @@ - m02724s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5653 + - id: "HMR_5653" - name: "" - metabolites: !!omap - m02471c: 1 @@ -185408,15 +185408,15 @@ - m03101s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5654 + - id: "HMR_5654" - name: "" - metabolites: !!omap - m01628c: -1 @@ -185427,15 +185427,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5655 + - id: "HMR_5655" - name: "" - metabolites: !!omap - m02360c: -1 @@ -185446,15 +185446,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5656 + - id: "HMR_5656" - name: "" - metabolites: !!omap - m02471c: 1 @@ -185465,15 +185465,15 @@ - m02770s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5657 + - id: "HMR_5657" - name: "" - metabolites: !!omap - m01369c: -1 @@ -185484,15 +185484,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5658 + - id: "HMR_5658" - name: "" - metabolites: !!omap - m02471c: 1 @@ -185503,15 +185503,15 @@ - m03135s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5659 + - id: "HMR_5659" - name: "" - metabolites: !!omap - m02471c: 1 @@ -185522,15 +185522,15 @@ - m02993s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5660 + - id: "HMR_5660" - name: "" - metabolites: !!omap - m02136c: -1 @@ -185541,15 +185541,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5661 + - id: "HMR_5661" - name: "" - metabolites: !!omap - m02184c: -1 @@ -185560,15 +185560,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5662 + - id: "HMR_5662" - name: "" - metabolites: !!omap - m01986c: -1 @@ -185579,15 +185579,15 @@ - m03089s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5663 + - id: "HMR_5663" - name: "" - metabolites: !!omap - m01307c: -1 @@ -185598,15 +185598,15 @@ - m03089s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5664 + - id: "HMR_5664" - name: "" - metabolites: !!omap - m01975c: -1 @@ -185617,15 +185617,15 @@ - m03089s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5665 + - id: "HMR_5665" - name: "" - metabolites: !!omap - m02519c: 1 @@ -185636,15 +185636,15 @@ - m03089s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5666 + - id: "HMR_5666" - name: "" - metabolites: !!omap - m02471c: -1 @@ -185655,15 +185655,15 @@ - m03089s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5667 + - id: "HMR_5667" - name: "" - metabolites: !!omap - m02519c: 1 @@ -185674,15 +185674,15 @@ - m03089s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5668 + - id: "HMR_5668" - name: "" - metabolites: !!omap - m02519c: 1 @@ -185693,15 +185693,15 @@ - m03101s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5669 + - id: "HMR_5669" - name: "" - metabolites: !!omap - m01628c: -1 @@ -185712,15 +185712,15 @@ - m03089s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5670 + - id: "HMR_5670" - name: "" - metabolites: !!omap - m02360c: -1 @@ -185731,15 +185731,15 @@ - m03089s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5671 + - id: "HMR_5671" - name: "" - metabolites: !!omap - m02519c: 1 @@ -185750,15 +185750,15 @@ - m03089s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5672 + - id: "HMR_5672" - name: "" - metabolites: !!omap - m01369c: -1 @@ -185769,15 +185769,15 @@ - m03089s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5673 + - id: "HMR_5673" - name: "" - metabolites: !!omap - m02519c: 1 @@ -185788,15 +185788,15 @@ - m03135s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5674 + - id: "HMR_5674" - name: "" - metabolites: !!omap - m02519c: 1 @@ -185807,15 +185807,15 @@ - m03089s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5675 + - id: "HMR_5675" - name: "" - metabolites: !!omap - m02136c: -1 @@ -185826,15 +185826,15 @@ - m03089s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5676 + - id: "HMR_5676" - name: "" - metabolites: !!omap - m02184c: -1 @@ -185845,15 +185845,15 @@ - m03089s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000103257 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000103257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5677 + - id: "HMR_5677" - name: "" - metabolites: !!omap - m01986c: -1 @@ -185864,15 +185864,15 @@ - m02724s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5678 + - id: "HMR_5678" - name: "" - metabolites: !!omap - m01307c: -1 @@ -185883,15 +185883,15 @@ - m02724s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5679 + - id: "HMR_5679" - name: "" - metabolites: !!omap - m01975c: -1 @@ -185902,15 +185902,15 @@ - m02724s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5680 + - id: "HMR_5680" - name: "" - metabolites: !!omap - m02519c: 1 @@ -185921,15 +185921,15 @@ - m02896s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5681 + - id: "HMR_5681" - name: "" - metabolites: !!omap - m02471c: -1 @@ -185940,15 +185940,15 @@ - m02724s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5682 + - id: "HMR_5682" - name: "" - metabolites: !!omap - m02519c: 1 @@ -185959,15 +185959,15 @@ - m03089s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5683 + - id: "HMR_5683" - name: "" - metabolites: !!omap - m02519c: 1 @@ -185978,15 +185978,15 @@ - m03101s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5684 + - id: "HMR_5684" - name: "" - metabolites: !!omap - m01628c: -1 @@ -185997,15 +185997,15 @@ - m02724s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5685 + - id: "HMR_5685" - name: "" - metabolites: !!omap - m02360c: -1 @@ -186016,15 +186016,15 @@ - m02724s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5686 + - id: "HMR_5686" - name: "" - metabolites: !!omap - m02519c: 1 @@ -186035,15 +186035,15 @@ - m02770s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5687 + - id: "HMR_5687" - name: "" - metabolites: !!omap - m01369c: -1 @@ -186054,15 +186054,15 @@ - m02724s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5688 + - id: "HMR_5688" - name: "" - metabolites: !!omap - m02519c: 1 @@ -186073,15 +186073,15 @@ - m03135s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5689 + - id: "HMR_5689" - name: "" - metabolites: !!omap - m02519c: 1 @@ -186092,15 +186092,15 @@ - m02993s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5690 + - id: "HMR_5690" - name: "" - metabolites: !!omap - m02136c: -1 @@ -186111,15 +186111,15 @@ - m02724s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5691 + - id: "HMR_5691" - name: "" - metabolites: !!omap - m02184c: -1 @@ -186130,15 +186130,15 @@ - m02724s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5692 + - id: "HMR_5692" - name: "" - metabolites: !!omap - m01986c: -1 @@ -186149,15 +186149,15 @@ - m03101s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5693 + - id: "HMR_5693" - name: "" - metabolites: !!omap - m01307c: -1 @@ -186168,15 +186168,15 @@ - m03101s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5694 + - id: "HMR_5694" - name: "" - metabolites: !!omap - m01975c: -1 @@ -186187,15 +186187,15 @@ - m03101s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5695 + - id: "HMR_5695" - name: "" - metabolites: !!omap - m02519c: 1 @@ -186206,15 +186206,15 @@ - m03101s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5696 + - id: "HMR_5696" - name: "" - metabolites: !!omap - m02471c: -1 @@ -186225,15 +186225,15 @@ - m03101s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5697 + - id: "HMR_5697" - name: "" - metabolites: !!omap - m02519c: 1 @@ -186244,15 +186244,15 @@ - m03101s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5698 + - id: "HMR_5698" - name: "" - metabolites: !!omap - m02519c: 1 @@ -186263,15 +186263,15 @@ - m03101s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5699 + - id: "HMR_5699" - name: "" - metabolites: !!omap - m01628c: -1 @@ -186282,15 +186282,15 @@ - m03101s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5700 + - id: "HMR_5700" - name: "" - metabolites: !!omap - m02360c: -1 @@ -186301,15 +186301,15 @@ - m03101s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5701 + - id: "HMR_5701" - name: "" - metabolites: !!omap - m02519c: 1 @@ -186320,15 +186320,15 @@ - m03101s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5702 + - id: "HMR_5702" - name: "" - metabolites: !!omap - m01369c: -1 @@ -186339,15 +186339,15 @@ - m03101s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5703 + - id: "HMR_5703" - name: "" - metabolites: !!omap - m02519c: 1 @@ -186358,15 +186358,15 @@ - m03135s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5704 + - id: "HMR_5704" - name: "" - metabolites: !!omap - m02519c: 1 @@ -186377,15 +186377,15 @@ - m03101s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5705 + - id: "HMR_5705" - name: "" - metabolites: !!omap - m02136c: -1 @@ -186396,15 +186396,15 @@ - m03101s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5706 + - id: "HMR_5706" - name: "" - metabolites: !!omap - m02184c: -1 @@ -186415,15 +186415,15 @@ - m03101s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5707 + - id: "HMR_5707" - name: "" - metabolites: !!omap - m01628c: 1 @@ -186434,15 +186434,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5708 + - id: "HMR_5708" - name: "" - metabolites: !!omap - m01307c: -1 @@ -186453,15 +186453,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000105281 or ENSG00000115902 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000105281 or ENSG00000115902" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5709 + - id: "HMR_5709" - name: "" - metabolites: !!omap - m01628c: 1 @@ -186472,15 +186472,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000105281 or ENSG00000115902 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000105281 or ENSG00000115902" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5710 + - id: "HMR_5710" - name: "" - metabolites: !!omap - m01628c: 1 @@ -186491,15 +186491,15 @@ - m02896s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000105281 or ENSG00000115902 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000105281 or ENSG00000115902" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5711 + - id: "HMR_5711" - name: "" - metabolites: !!omap - m01628c: 1 @@ -186510,15 +186510,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5712 + - id: "HMR_5712" - name: "" - metabolites: !!omap - m01628c: 1 @@ -186529,15 +186529,15 @@ - m03089s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5713 + - id: "HMR_5713" - name: "" - metabolites: !!omap - m01628c: 1 @@ -186548,15 +186548,15 @@ - m02724s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5714 + - id: "HMR_5714" - name: "" - metabolites: !!omap - m01628c: 1 @@ -186567,15 +186567,15 @@ - m03101s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5715 + - id: "HMR_5715" - name: "" - metabolites: !!omap - m01628c: 1 @@ -186586,15 +186586,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5716 + - id: "HMR_5716" - name: "" - metabolites: !!omap - m01628c: 1 @@ -186605,15 +186605,15 @@ - m02770s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5717 + - id: "HMR_5717" - name: "" - metabolites: !!omap - m01369c: -1 @@ -186624,15 +186624,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000105281 or ENSG00000115902 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000105281 or ENSG00000115902" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5718 + - id: "HMR_5718" - name: "" - metabolites: !!omap - m01628c: 1 @@ -186643,15 +186643,15 @@ - m03135s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5719 + - id: "HMR_5719" - name: "" - metabolites: !!omap - m01628c: 1 @@ -186662,15 +186662,15 @@ - m02993s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000105281 or ENSG00000115902 or ENSG00000151012 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000105281 or ENSG00000115902 or ENSG00000151012" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5720 + - id: "HMR_5720" - name: "" - metabolites: !!omap - m01628c: 1 @@ -186681,15 +186681,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5721 + - id: "HMR_5721" - name: "" - metabolites: !!omap - m01628c: 1 @@ -186700,15 +186700,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5722 + - id: "HMR_5722" - name: "" - metabolites: !!omap - m01986c: -1 @@ -186719,15 +186719,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5723 + - id: "HMR_5723" - name: "" - metabolites: !!omap - m01307c: -1 @@ -186738,15 +186738,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5724 + - id: "HMR_5724" - name: "" - metabolites: !!omap - m01975c: -1 @@ -186757,15 +186757,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5725 + - id: "HMR_5725" - name: "" - metabolites: !!omap - m02360c: 1 @@ -186776,15 +186776,15 @@ - m02896s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5726 + - id: "HMR_5726" - name: "" - metabolites: !!omap - m02360c: 1 @@ -186795,15 +186795,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5727 + - id: "HMR_5727" - name: "" - metabolites: !!omap - m02360c: 1 @@ -186814,15 +186814,15 @@ - m03089s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5728 + - id: "HMR_5728" - name: "" - metabolites: !!omap - m02360c: 1 @@ -186833,15 +186833,15 @@ - m02724s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5729 + - id: "HMR_5729" - name: "" - metabolites: !!omap - m02360c: 1 @@ -186852,15 +186852,15 @@ - m03101s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5730 + - id: "HMR_5730" - name: "" - metabolites: !!omap - m01628c: -1 @@ -186871,15 +186871,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5731 + - id: "HMR_5731" - name: "" - metabolites: !!omap - m02360c: 1 @@ -186890,15 +186890,15 @@ - m02770s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5732 + - id: "HMR_5732" - name: "" - metabolites: !!omap - m01369c: -1 @@ -186909,15 +186909,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5733 + - id: "HMR_5733" - name: "" - metabolites: !!omap - m02360c: 1 @@ -186928,15 +186928,15 @@ - m03135s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5734 + - id: "HMR_5734" - name: "" - metabolites: !!omap - m02360c: 1 @@ -186947,15 +186947,15 @@ - m02993s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5735 + - id: "HMR_5735" - name: "" - metabolites: !!omap - m02136c: -1 @@ -186966,15 +186966,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5736 + - id: "HMR_5736" - name: "" - metabolites: !!omap - m02184c: -1 @@ -186985,15 +186985,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5737 + - id: "HMR_5737" - name: "" - metabolites: !!omap - m01986c: -1 @@ -187004,15 +187004,15 @@ - m02770s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5738 + - id: "HMR_5738" - name: "" - metabolites: !!omap - m01307c: -1 @@ -187023,15 +187023,15 @@ - m02770s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5739 + - id: "HMR_5739" - name: "" - metabolites: !!omap - m01975c: -1 @@ -187042,15 +187042,15 @@ - m02770s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5740 + - id: "HMR_5740" - name: "" - metabolites: !!omap - m02519c: 1 @@ -187061,15 +187061,15 @@ - m02896s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5741 + - id: "HMR_5741" - name: "" - metabolites: !!omap - m02471c: -1 @@ -187080,15 +187080,15 @@ - m02770s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5742 + - id: "HMR_5742" - name: "" - metabolites: !!omap - m02519c: 1 @@ -187099,15 +187099,15 @@ - m03089s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5743 + - id: "HMR_5743" - name: "" - metabolites: !!omap - m02519c: 1 @@ -187118,15 +187118,15 @@ - m02770s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5744 + - id: "HMR_5744" - name: "" - metabolites: !!omap - m02519c: 1 @@ -187137,15 +187137,15 @@ - m03101s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5745 + - id: "HMR_5745" - name: "" - metabolites: !!omap - m01628c: -1 @@ -187156,15 +187156,15 @@ - m02770s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5746 + - id: "HMR_5746" - name: "" - metabolites: !!omap - m02360c: -1 @@ -187175,15 +187175,15 @@ - m02770s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5747 + - id: "HMR_5747" - name: "" - metabolites: !!omap - m01369c: -1 @@ -187194,15 +187194,15 @@ - m02770s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5748 + - id: "HMR_5748" - name: "" - metabolites: !!omap - m02519c: 1 @@ -187213,15 +187213,15 @@ - m03135s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5749 + - id: "HMR_5749" - name: "" - metabolites: !!omap - m02519c: 1 @@ -187232,15 +187232,15 @@ - m02993s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5750 + - id: "HMR_5750" - name: "" - metabolites: !!omap - m02136c: -1 @@ -187251,15 +187251,15 @@ - m02770s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5751 + - id: "HMR_5751" - name: "" - metabolites: !!omap - m02184c: -1 @@ -187270,15 +187270,15 @@ - m02770s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5752 + - id: "HMR_5752" - name: "" - metabolites: !!omap - m01369c: 1 @@ -187289,15 +187289,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5753 + - id: "HMR_5753" - name: "" - metabolites: !!omap - m01307c: -1 @@ -187308,15 +187308,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000105281 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000105281" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5754 + - id: "HMR_5754" - name: "" - metabolites: !!omap - m01369c: 1 @@ -187327,15 +187327,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000105281 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000105281" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5755 + - id: "HMR_5755" - name: "" - metabolites: !!omap - m01369c: 1 @@ -187346,15 +187346,15 @@ - m02896s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000105281 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000105281" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5756 + - id: "HMR_5756" - name: "" - metabolites: !!omap - m01369c: 1 @@ -187365,15 +187365,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5757 + - id: "HMR_5757" - name: "" - metabolites: !!omap - m01369c: 1 @@ -187384,15 +187384,15 @@ - m03089s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5758 + - id: "HMR_5758" - name: "" - metabolites: !!omap - m01369c: 1 @@ -187403,15 +187403,15 @@ - m02724s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5759 + - id: "HMR_5759" - name: "" - metabolites: !!omap - m01369c: 1 @@ -187422,15 +187422,15 @@ - m03101s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5760 + - id: "HMR_5760" - name: "" - metabolites: !!omap - m01369c: 1 @@ -187441,15 +187441,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000105281 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000105281" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5761 + - id: "HMR_5761" - name: "" - metabolites: !!omap - m01369c: 1 @@ -187460,15 +187460,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5762 + - id: "HMR_5762" - name: "" - metabolites: !!omap - m01369c: 1 @@ -187479,15 +187479,15 @@ - m02770s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5763 + - id: "HMR_5763" - name: "" - metabolites: !!omap - m01369c: 1 @@ -187498,15 +187498,15 @@ - m03135s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5764 + - id: "HMR_5764" - name: "" - metabolites: !!omap - m01369c: 1 @@ -187517,15 +187517,15 @@ - m02993s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000105281 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000105281" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5765 + - id: "HMR_5765" - name: "" - metabolites: !!omap - m01369c: 1 @@ -187536,15 +187536,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5766 + - id: "HMR_5766" - name: "" - metabolites: !!omap - m01369c: 1 @@ -187555,15 +187555,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5767 + - id: "HMR_5767" - name: "" - metabolites: !!omap - m01986c: -1 @@ -187574,15 +187574,15 @@ - m03135s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5768 + - id: "HMR_5768" - name: "" - metabolites: !!omap - m01307c: -1 @@ -187593,15 +187593,15 @@ - m03135s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5769 + - id: "HMR_5769" - name: "" - metabolites: !!omap - m01975c: -1 @@ -187612,15 +187612,15 @@ - m03135s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5770 + - id: "HMR_5770" - name: "" - metabolites: !!omap - m02519c: 1 @@ -187631,15 +187631,15 @@ - m03135s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5771 + - id: "HMR_5771" - name: "" - metabolites: !!omap - m02471c: -1 @@ -187650,15 +187650,15 @@ - m03135s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5772 + - id: "HMR_5772" - name: "" - metabolites: !!omap - m02519c: 1 @@ -187669,15 +187669,15 @@ - m03135s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5773 + - id: "HMR_5773" - name: "" - metabolites: !!omap - m02519c: 1 @@ -187688,15 +187688,15 @@ - m03135s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5774 + - id: "HMR_5774" - name: "" - metabolites: !!omap - m02519c: 1 @@ -187707,15 +187707,15 @@ - m03135s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5775 + - id: "HMR_5775" - name: "" - metabolites: !!omap - m01628c: -1 @@ -187726,15 +187726,15 @@ - m03135s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5776 + - id: "HMR_5776" - name: "" - metabolites: !!omap - m02360c: -1 @@ -187745,15 +187745,15 @@ - m03135s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5777 + - id: "HMR_5777" - name: "" - metabolites: !!omap - m02519c: 1 @@ -187764,15 +187764,15 @@ - m03135s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5778 + - id: "HMR_5778" - name: "" - metabolites: !!omap - m01369c: -1 @@ -187783,15 +187783,15 @@ - m03135s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5779 + - id: "HMR_5779" - name: "" - metabolites: !!omap - m02519c: 1 @@ -187802,15 +187802,15 @@ - m03135s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5780 + - id: "HMR_5780" - name: "" - metabolites: !!omap - m02136c: -1 @@ -187821,15 +187821,15 @@ - m03135s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5781 + - id: "HMR_5781" - name: "" - metabolites: !!omap - m02184c: -1 @@ -187840,15 +187840,15 @@ - m03135s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5782 + - id: "HMR_5782" - name: "" - metabolites: !!omap - m01986c: -1 @@ -187859,15 +187859,15 @@ - m02993s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5783 + - id: "HMR_5783" - name: "" - metabolites: !!omap - m01307c: -1 @@ -187878,15 +187878,15 @@ - m02993s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000105281 or ENSG00000115902 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000105281 or ENSG00000115902" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5784 + - id: "HMR_5784" - name: "" - metabolites: !!omap - m01975c: -1 @@ -187897,15 +187897,15 @@ - m02993s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000105281 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000105281" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5785 + - id: "HMR_5785" - name: "" - metabolites: !!omap - m02519c: 1 @@ -187916,15 +187916,15 @@ - m02993s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000105281 or ENSG00000115902 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000105281 or ENSG00000115902" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5786 + - id: "HMR_5786" - name: "" - metabolites: !!omap - m02471c: -1 @@ -187935,15 +187935,15 @@ - m02993s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5787 + - id: "HMR_5787" - name: "" - metabolites: !!omap - m02519c: 1 @@ -187954,15 +187954,15 @@ - m03089s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5788 + - id: "HMR_5788" - name: "" - metabolites: !!omap - m02519c: 1 @@ -187973,15 +187973,15 @@ - m02993s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5789 + - id: "HMR_5789" - name: "" - metabolites: !!omap - m02519c: 1 @@ -187992,15 +187992,15 @@ - m03101s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5790 + - id: "HMR_5790" - name: "" - metabolites: !!omap - m01628c: -1 @@ -188011,15 +188011,15 @@ - m02993s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000105281 or ENSG00000115902 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000105281 or ENSG00000115902" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5791 + - id: "HMR_5791" - name: "" - metabolites: !!omap - m02360c: -1 @@ -188030,15 +188030,15 @@ - m02993s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5792 + - id: "HMR_5792" - name: "" - metabolites: !!omap - m02519c: 1 @@ -188049,15 +188049,15 @@ - m02993s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5793 + - id: "HMR_5793" - name: "" - metabolites: !!omap - m01369c: -1 @@ -188068,15 +188068,15 @@ - m02993s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000105281 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000105281" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5794 + - id: "HMR_5794" - name: "" - metabolites: !!omap - m02519c: 1 @@ -188087,15 +188087,15 @@ - m03135s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5795 + - id: "HMR_5795" - name: "" - metabolites: !!omap - m02136c: -1 @@ -188106,15 +188106,15 @@ - m02993s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5796 + - id: "HMR_5796" - name: "" - metabolites: !!omap - m02184c: -1 @@ -188125,15 +188125,15 @@ - m02993s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5797 + - id: "HMR_5797" - name: "" - metabolites: !!omap - m01986c: -1 @@ -188144,15 +188144,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5798 + - id: "HMR_5798" - name: "" - metabolites: !!omap - m01307c: -1 @@ -188163,15 +188163,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5799 + - id: "HMR_5799" - name: "" - metabolites: !!omap - m01975c: -1 @@ -188182,15 +188182,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5800 + - id: "HMR_5800" - name: "" - metabolites: !!omap - m02136c: 1 @@ -188201,15 +188201,15 @@ - m02896s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5801 + - id: "HMR_5801" - name: "" - metabolites: !!omap - m02136c: 1 @@ -188220,15 +188220,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5802 + - id: "HMR_5802" - name: "" - metabolites: !!omap - m02136c: 1 @@ -188239,15 +188239,15 @@ - m03089s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5803 + - id: "HMR_5803" - name: "" - metabolites: !!omap - m02136c: 1 @@ -188258,15 +188258,15 @@ - m02724s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5804 + - id: "HMR_5804" - name: "" - metabolites: !!omap - m02136c: 1 @@ -188277,15 +188277,15 @@ - m03101s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5805 + - id: "HMR_5805" - name: "" - metabolites: !!omap - m01628c: -1 @@ -188296,15 +188296,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5806 + - id: "HMR_5806" - name: "" - metabolites: !!omap - m02136c: 1 @@ -188315,15 +188315,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5807 + - id: "HMR_5807" - name: "" - metabolites: !!omap - m02136c: 1 @@ -188334,15 +188334,15 @@ - m02770s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5808 + - id: "HMR_5808" - name: "" - metabolites: !!omap - m01369c: -1 @@ -188353,15 +188353,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5809 + - id: "HMR_5809" - name: "" - metabolites: !!omap - m02136c: 1 @@ -188372,15 +188372,15 @@ - m03135s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5810 + - id: "HMR_5810" - name: "" - metabolites: !!omap - m02136c: 1 @@ -188391,15 +188391,15 @@ - m02993s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5811 + - id: "HMR_5811" - name: "" - metabolites: !!omap - m02136c: 1 @@ -188410,15 +188410,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5812 + - id: "HMR_5812" - name: "" - metabolites: !!omap - m01986c: -1 @@ -188429,15 +188429,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5813 + - id: "HMR_5813" - name: "" - metabolites: !!omap - m01307c: -1 @@ -188448,15 +188448,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5814 + - id: "HMR_5814" - name: "" - metabolites: !!omap - m01975c: -1 @@ -188467,15 +188467,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5815 + - id: "HMR_5815" - name: "" - metabolites: !!omap - m02184c: 1 @@ -188486,15 +188486,15 @@ - m02896s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5816 + - id: "HMR_5816" - name: "" - metabolites: !!omap - m02184c: 1 @@ -188505,15 +188505,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5817 + - id: "HMR_5817" - name: "" - metabolites: !!omap - m02184c: 1 @@ -188524,15 +188524,15 @@ - m03089s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5818 + - id: "HMR_5818" - name: "" - metabolites: !!omap - m02184c: 1 @@ -188543,15 +188543,15 @@ - m02724s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5819 + - id: "HMR_5819" - name: "" - metabolites: !!omap - m02184c: 1 @@ -188562,15 +188562,15 @@ - m03101s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5820 + - id: "HMR_5820" - name: "" - metabolites: !!omap - m01628c: -1 @@ -188581,15 +188581,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5821 + - id: "HMR_5821" - name: "" - metabolites: !!omap - m02184c: 1 @@ -188600,15 +188600,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5822 + - id: "HMR_5822" - name: "" - metabolites: !!omap - m02184c: 1 @@ -188619,15 +188619,15 @@ - m02770s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5823 + - id: "HMR_5823" - name: "" - metabolites: !!omap - m01369c: -1 @@ -188638,15 +188638,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5824 + - id: "HMR_5824" - name: "" - metabolites: !!omap - m02184c: 1 @@ -188657,15 +188657,15 @@ - m03135s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5825 + - id: "HMR_5825" - name: "" - metabolites: !!omap - m02184c: 1 @@ -188676,15 +188676,15 @@ - m02993s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5826 + - id: "HMR_5826" - name: "" - metabolites: !!omap - m02136c: -1 @@ -188695,15 +188695,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5827 + - id: "HMR_5827" - name: "" - metabolites: !!omap - m01986c: 1 @@ -188714,15 +188714,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5828 + - id: "HMR_5828" - name: "" - metabolites: !!omap - m01365c: -1 @@ -188733,15 +188733,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5829 + - id: "HMR_5829" - name: "" - metabolites: !!omap - m01986c: 1 @@ -188752,15 +188752,15 @@ - m02658s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5830 + - id: "HMR_5830" - name: "" - metabolites: !!omap - m01986c: 1 @@ -188771,15 +188771,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5831 + - id: "HMR_5831" - name: "" - metabolites: !!omap - m01588c: -1 @@ -188790,15 +188790,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5832 + - id: "HMR_5832" - name: "" - metabolites: !!omap - m01307c: 1 @@ -188809,15 +188809,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5833 + - id: "HMR_5833" - name: "" - metabolites: !!omap - m01307c: 1 @@ -188828,15 +188828,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5834 + - id: "HMR_5834" - name: "" - metabolites: !!omap - m01307c: 1 @@ -188847,15 +188847,15 @@ - m02658s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5835 + - id: "HMR_5835" - name: "" - metabolites: !!omap - m01307c: 1 @@ -188866,15 +188866,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5836 + - id: "HMR_5836" - name: "" - metabolites: !!omap - m01307c: 1 @@ -188885,15 +188885,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5837 + - id: "HMR_5837" - name: "" - metabolites: !!omap - m01975c: 1 @@ -188904,15 +188904,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5838 + - id: "HMR_5838" - name: "" - metabolites: !!omap - m01365c: -1 @@ -188923,15 +188923,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5839 + - id: "HMR_5839" - name: "" - metabolites: !!omap - m01975c: 1 @@ -188942,15 +188942,15 @@ - m02658s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5840 + - id: "HMR_5840" - name: "" - metabolites: !!omap - m01975c: 1 @@ -188961,15 +188961,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5841 + - id: "HMR_5841" - name: "" - metabolites: !!omap - m01588c: -1 @@ -188980,15 +188980,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5842 + - id: "HMR_5842" - name: "" - metabolites: !!omap - m02426c: -1 @@ -188999,15 +188999,15 @@ - m02896s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000138079 or ENSG00000155465 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000138079 or ENSG00000155465" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5843 + - id: "HMR_5843" - name: "" - metabolites: !!omap - m01365c: -1 @@ -189018,15 +189018,15 @@ - m02896s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5844 + - id: "HMR_5844" - name: "" - metabolites: !!omap - m02519c: 1 @@ -189037,15 +189037,15 @@ - m02896s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5845 + - id: "HMR_5845" - name: "" - metabolites: !!omap - m02125c: -1 @@ -189056,15 +189056,15 @@ - m02896s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5846 + - id: "HMR_5846" - name: "" - metabolites: !!omap - m01588c: -1 @@ -189075,15 +189075,15 @@ - m02896s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5847 + - id: "HMR_5847" - name: "" - metabolites: !!omap - m02426c: -1 @@ -189094,15 +189094,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5848 + - id: "HMR_5848" - name: "" - metabolites: !!omap - m01365c: -1 @@ -189113,15 +189113,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5849 + - id: "HMR_5849" - name: "" - metabolites: !!omap - m02471c: 1 @@ -189132,15 +189132,15 @@ - m02658s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5850 + - id: "HMR_5850" - name: "" - metabolites: !!omap - m02125c: -1 @@ -189151,15 +189151,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5851 + - id: "HMR_5851" - name: "" - metabolites: !!omap - m01588c: -1 @@ -189170,15 +189170,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5852 + - id: "HMR_5852" - name: "" - metabolites: !!omap - m02426c: -1 @@ -189189,15 +189189,15 @@ - m03089s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5853 + - id: "HMR_5853" - name: "" - metabolites: !!omap - m01365c: -1 @@ -189208,15 +189208,15 @@ - m03089s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5854 + - id: "HMR_5854" - name: "" - metabolites: !!omap - m02519c: 1 @@ -189227,15 +189227,15 @@ - m03089s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5855 + - id: "HMR_5855" - name: "" - metabolites: !!omap - m02125c: -1 @@ -189246,15 +189246,15 @@ - m03089s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5856 + - id: "HMR_5856" - name: "" - metabolites: !!omap - m01588c: -1 @@ -189265,15 +189265,15 @@ - m03089s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5857 + - id: "HMR_5857" - name: "" - metabolites: !!omap - m02426c: -1 @@ -189284,15 +189284,15 @@ - m02724s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5858 + - id: "HMR_5858" - name: "" - metabolites: !!omap - m01365c: -1 @@ -189303,15 +189303,15 @@ - m02724s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5859 + - id: "HMR_5859" - name: "" - metabolites: !!omap - m02519c: 1 @@ -189322,15 +189322,15 @@ - m02724s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5860 + - id: "HMR_5860" - name: "" - metabolites: !!omap - m02125c: -1 @@ -189341,15 +189341,15 @@ - m02724s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5861 + - id: "HMR_5861" - name: "" - metabolites: !!omap - m01588c: -1 @@ -189360,15 +189360,15 @@ - m02724s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5862 + - id: "HMR_5862" - name: "" - metabolites: !!omap - m02426c: -1 @@ -189379,15 +189379,15 @@ - m03101s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5863 + - id: "HMR_5863" - name: "" - metabolites: !!omap - m01365c: -1 @@ -189398,15 +189398,15 @@ - m03101s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5864 + - id: "HMR_5864" - name: "" - metabolites: !!omap - m02519c: 1 @@ -189417,15 +189417,15 @@ - m03101s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5865 + - id: "HMR_5865" - name: "" - metabolites: !!omap - m02125c: -1 @@ -189436,15 +189436,15 @@ - m03101s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5866 + - id: "HMR_5866" - name: "" - metabolites: !!omap - m01588c: -1 @@ -189455,15 +189455,15 @@ - m03101s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5867 + - id: "HMR_5867" - name: "" - metabolites: !!omap - m01628c: 1 @@ -189474,15 +189474,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5868 + - id: "HMR_5868" - name: "" - metabolites: !!omap - m01365c: -1 @@ -189493,15 +189493,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5869 + - id: "HMR_5869" - name: "" - metabolites: !!omap - m01628c: 1 @@ -189512,15 +189512,15 @@ - m02658s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5870 + - id: "HMR_5870" - name: "" - metabolites: !!omap - m01628c: 1 @@ -189531,15 +189531,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5871 + - id: "HMR_5871" - name: "" - metabolites: !!omap - m01588c: -1 @@ -189550,15 +189550,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5872 + - id: "HMR_5872" - name: "" - metabolites: !!omap - m02360c: 1 @@ -189569,15 +189569,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5873 + - id: "HMR_5873" - name: "" - metabolites: !!omap - m01365c: -1 @@ -189588,15 +189588,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000155465 or ENSG00000168003 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000155465 or ENSG00000168003" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5874 + - id: "HMR_5874" - name: "" - metabolites: !!omap - m02360c: 1 @@ -189607,15 +189607,15 @@ - m02658s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5875 + - id: "HMR_5875" - name: "" - metabolites: !!omap - m02125c: -1 @@ -189626,15 +189626,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5876 + - id: "HMR_5876" - name: "" - metabolites: !!omap - m01588c: -1 @@ -189645,15 +189645,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5877 + - id: "HMR_5877" - name: "" - metabolites: !!omap - m02426c: -1 @@ -189664,15 +189664,15 @@ - m02770s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5878 + - id: "HMR_5878" - name: "" - metabolites: !!omap - m01365c: -1 @@ -189683,15 +189683,15 @@ - m02770s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5879 + - id: "HMR_5879" - name: "" - metabolites: !!omap - m02519c: 1 @@ -189702,15 +189702,15 @@ - m02770s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5880 + - id: "HMR_5880" - name: "" - metabolites: !!omap - m02125c: -1 @@ -189721,15 +189721,15 @@ - m02770s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5881 + - id: "HMR_5881" - name: "" - metabolites: !!omap - m01588c: -1 @@ -189740,15 +189740,15 @@ - m02770s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5882 + - id: "HMR_5882" - name: "" - metabolites: !!omap - m01369c: 1 @@ -189759,15 +189759,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5883 + - id: "HMR_5883" - name: "" - metabolites: !!omap - m01365c: -1 @@ -189778,15 +189778,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5884 + - id: "HMR_5884" - name: "" - metabolites: !!omap - m01369c: 1 @@ -189797,15 +189797,15 @@ - m02658s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5885 + - id: "HMR_5885" - name: "" - metabolites: !!omap - m01369c: 1 @@ -189816,15 +189816,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5886 + - id: "HMR_5886" - name: "" - metabolites: !!omap - m01369c: 1 @@ -189835,15 +189835,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5887 + - id: "HMR_5887" - name: "" - metabolites: !!omap - m02426c: -1 @@ -189854,15 +189854,15 @@ - m03135s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5888 + - id: "HMR_5888" - name: "" - metabolites: !!omap - m01365c: -1 @@ -189873,15 +189873,15 @@ - m03135s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5889 + - id: "HMR_5889" - name: "" - metabolites: !!omap - m02519c: 1 @@ -189892,15 +189892,15 @@ - m03135s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5890 + - id: "HMR_5890" - name: "" - metabolites: !!omap - m02125c: -1 @@ -189911,15 +189911,15 @@ - m03135s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5891 + - id: "HMR_5891" - name: "" - metabolites: !!omap - m01588c: -1 @@ -189930,15 +189930,15 @@ - m03135s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5892 + - id: "HMR_5892" - name: "" - metabolites: !!omap - m02426c: -1 @@ -189949,15 +189949,15 @@ - m02993s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5893 + - id: "HMR_5893" - name: "" - metabolites: !!omap - m01365c: -1 @@ -189968,15 +189968,15 @@ - m02993s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5894 + - id: "HMR_5894" - name: "" - metabolites: !!omap - m02519c: 1 @@ -189987,15 +189987,15 @@ - m02993s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5895 + - id: "HMR_5895" - name: "" - metabolites: !!omap - m02125c: -1 @@ -190006,15 +190006,15 @@ - m02993s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5896 + - id: "HMR_5896" - name: "" - metabolites: !!omap - m01588c: -1 @@ -190025,15 +190025,15 @@ - m02993s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5897 + - id: "HMR_5897" - name: "" - metabolites: !!omap - m02136c: 1 @@ -190044,15 +190044,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5898 + - id: "HMR_5898" - name: "" - metabolites: !!omap - m01365c: -1 @@ -190063,15 +190063,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5899 + - id: "HMR_5899" - name: "" - metabolites: !!omap - m02136c: 1 @@ -190082,15 +190082,15 @@ - m02658s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5900 + - id: "HMR_5900" - name: "" - metabolites: !!omap - m02125c: -1 @@ -190101,15 +190101,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5901 + - id: "HMR_5901" - name: "" - metabolites: !!omap - m01588c: -1 @@ -190120,15 +190120,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5902 + - id: "HMR_5902" - name: "" - metabolites: !!omap - m02184c: 1 @@ -190139,15 +190139,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5903 + - id: "HMR_5903" - name: "" - metabolites: !!omap - m01365c: -1 @@ -190158,15 +190158,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5904 + - id: "HMR_5904" - name: "" - metabolites: !!omap - m02184c: 1 @@ -190177,15 +190177,15 @@ - m02658s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5905 + - id: "HMR_5905" - name: "" - metabolites: !!omap - m02125c: -1 @@ -190196,15 +190196,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5906 + - id: "HMR_5906" - name: "" - metabolites: !!omap - m01588c: -1 @@ -190215,15 +190215,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000103064" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5907 + - id: "HMR_5907" - name: "" - metabolites: !!omap - m01986c: -1 @@ -190232,15 +190232,15 @@ - m02426s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5908 + - id: "HMR_5908" - name: "" - metabolites: !!omap - m01307c: -1 @@ -190249,15 +190249,15 @@ - m02426s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5909 + - id: "HMR_5909" - name: "" - metabolites: !!omap - m01975c: -1 @@ -190266,15 +190266,15 @@ - m02426s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5910 + - id: "HMR_5910" - name: "" - metabolites: !!omap - m02426c: 1 @@ -190283,15 +190283,15 @@ - m02896s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5911 + - id: "HMR_5911" - name: "" - metabolites: !!omap - m02426c: 1 @@ -190300,15 +190300,15 @@ - m02471s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5912 + - id: "HMR_5912" - name: "" - metabolites: !!omap - m02426c: 1 @@ -190317,15 +190317,15 @@ - m03089s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5913 + - id: "HMR_5913" - name: "" - metabolites: !!omap - m02426c: 1 @@ -190334,15 +190334,15 @@ - m02724s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5914 + - id: "HMR_5914" - name: "" - metabolites: !!omap - m02426c: 1 @@ -190351,15 +190351,15 @@ - m03101s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5915 + - id: "HMR_5915" - name: "" - metabolites: !!omap - m01628c: -1 @@ -190368,15 +190368,15 @@ - m02426s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5916 + - id: "HMR_5916" - name: "" - metabolites: !!omap - m02360c: -1 @@ -190385,15 +190385,15 @@ - m02426s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5917 + - id: "HMR_5917" - name: "" - metabolites: !!omap - m02426c: 1 @@ -190402,15 +190402,15 @@ - m02770s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5918 + - id: "HMR_5918" - name: "" - metabolites: !!omap - m01369c: -1 @@ -190419,15 +190419,15 @@ - m02426s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5919 + - id: "HMR_5919" - name: "" - metabolites: !!omap - m02426c: 1 @@ -190436,15 +190436,15 @@ - m03135s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5920 + - id: "HMR_5920" - name: "" - metabolites: !!omap - m02426c: 1 @@ -190453,15 +190453,15 @@ - m02993s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5921 + - id: "HMR_5921" - name: "" - metabolites: !!omap - m02136c: -1 @@ -190470,15 +190470,15 @@ - m02426s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5922 + - id: "HMR_5922" - name: "" - metabolites: !!omap - m02184c: -1 @@ -190487,15 +190487,15 @@ - m02426s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5923 + - id: "HMR_5923" - name: "" - metabolites: !!omap - m01365c: 1 @@ -190504,15 +190504,15 @@ - m01986s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5924 + - id: "HMR_5924" - name: "" - metabolites: !!omap - m01307c: -1 @@ -190521,15 +190521,15 @@ - m01365s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5925 + - id: "HMR_5925" - name: "" - metabolites: !!omap - m01365c: 1 @@ -190538,15 +190538,15 @@ - m01975s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5926 + - id: "HMR_5926" - name: "" - metabolites: !!omap - m01365c: 1 @@ -190555,15 +190555,15 @@ - m02896s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5927 + - id: "HMR_5927" - name: "" - metabolites: !!omap - m01365c: 1 @@ -190572,15 +190572,15 @@ - m02471s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5928 + - id: "HMR_5928" - name: "" - metabolites: !!omap - m01365c: 1 @@ -190589,15 +190589,15 @@ - m03089s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5929 + - id: "HMR_5929" - name: "" - metabolites: !!omap - m01365c: 1 @@ -190606,15 +190606,15 @@ - m02724s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5930 + - id: "HMR_5930" - name: "" - metabolites: !!omap - m01365c: 1 @@ -190623,15 +190623,15 @@ - m03101s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5931 + - id: "HMR_5931" - name: "" - metabolites: !!omap - m01365c: 1 @@ -190640,15 +190640,15 @@ - m01628s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5932 + - id: "HMR_5932" - name: "" - metabolites: !!omap - m01365c: 1 @@ -190657,15 +190657,15 @@ - m02360s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5933 + - id: "HMR_5933" - name: "" - metabolites: !!omap - m01365c: 1 @@ -190674,15 +190674,15 @@ - m02770s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5934 + - id: "HMR_5934" - name: "" - metabolites: !!omap - m01365c: 1 @@ -190691,15 +190691,15 @@ - m01369s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5935 + - id: "HMR_5935" - name: "" - metabolites: !!omap - m01365c: 1 @@ -190708,15 +190708,15 @@ - m03135s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5936 + - id: "HMR_5936" - name: "" - metabolites: !!omap - m01365c: 1 @@ -190725,15 +190725,15 @@ - m02993s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5937 + - id: "HMR_5937" - name: "" - metabolites: !!omap - m01365c: 1 @@ -190742,15 +190742,15 @@ - m02136s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5938 + - id: "HMR_5938" - name: "" - metabolites: !!omap - m01365c: 1 @@ -190759,15 +190759,15 @@ - m02184s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5939 + - id: "HMR_5939" - name: "" - metabolites: !!omap - m01986c: -1 @@ -190776,15 +190776,15 @@ - m02658s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5940 + - id: "HMR_5940" - name: "" - metabolites: !!omap - m01307c: -1 @@ -190793,15 +190793,15 @@ - m02658s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5941 + - id: "HMR_5941" - name: "" - metabolites: !!omap - m01975c: -1 @@ -190810,15 +190810,15 @@ - m02658s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5942 + - id: "HMR_5942" - name: "" - metabolites: !!omap - m02658c: 1 @@ -190827,15 +190827,15 @@ - m02896s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5943 + - id: "HMR_5943" - name: "" - metabolites: !!omap - m02471c: -1 @@ -190844,15 +190844,15 @@ - m02658s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5944 + - id: "HMR_5944" - name: "" - metabolites: !!omap - m02658c: 1 @@ -190861,15 +190861,15 @@ - m03089s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5945 + - id: "HMR_5945" - name: "" - metabolites: !!omap - m02658c: 1 @@ -190878,15 +190878,15 @@ - m02724s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5946 + - id: "HMR_5946" - name: "" - metabolites: !!omap - m02658c: 1 @@ -190895,15 +190895,15 @@ - m03101s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5947 + - id: "HMR_5947" - name: "" - metabolites: !!omap - m01628c: -1 @@ -190912,15 +190912,15 @@ - m02658s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5948 + - id: "HMR_5948" - name: "" - metabolites: !!omap - m02360c: -1 @@ -190929,15 +190929,15 @@ - m02658s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5949 + - id: "HMR_5949" - name: "" - metabolites: !!omap - m02658c: 1 @@ -190946,15 +190946,15 @@ - m02770s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5950 + - id: "HMR_5950" - name: "" - metabolites: !!omap - m01369c: -1 @@ -190963,15 +190963,15 @@ - m02658s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5951 + - id: "HMR_5951" - name: "" - metabolites: !!omap - m02658c: 1 @@ -190980,15 +190980,15 @@ - m03135s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5952 + - id: "HMR_5952" - name: "" - metabolites: !!omap - m02658c: 1 @@ -190997,15 +190997,15 @@ - m02993s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5953 + - id: "HMR_5953" - name: "" - metabolites: !!omap - m02136c: -1 @@ -191014,15 +191014,15 @@ - m02658s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5954 + - id: "HMR_5954" - name: "" - metabolites: !!omap - m02184c: -1 @@ -191031,15 +191031,15 @@ - m02658s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5955 + - id: "HMR_5955" - name: "" - metabolites: !!omap - m01986c: -1 @@ -191048,15 +191048,15 @@ - m02125s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5956 + - id: "HMR_5956" - name: "" - metabolites: !!omap - m01307c: -1 @@ -191065,15 +191065,15 @@ - m02125s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5957 + - id: "HMR_5957" - name: "" - metabolites: !!omap - m01975c: -1 @@ -191082,15 +191082,15 @@ - m02125s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5958 + - id: "HMR_5958" - name: "" - metabolites: !!omap - m02125c: 1 @@ -191099,15 +191099,15 @@ - m02896s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5959 + - id: "HMR_5959" - name: "" - metabolites: !!omap - m02125c: 1 @@ -191116,15 +191116,15 @@ - m02471s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5960 + - id: "HMR_5960" - name: "" - metabolites: !!omap - m02125c: 1 @@ -191133,15 +191133,15 @@ - m03089s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5961 + - id: "HMR_5961" - name: "" - metabolites: !!omap - m02125c: 1 @@ -191150,15 +191150,15 @@ - m02724s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5962 + - id: "HMR_5962" - name: "" - metabolites: !!omap - m02125c: 1 @@ -191167,15 +191167,15 @@ - m03101s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5963 + - id: "HMR_5963" - name: "" - metabolites: !!omap - m01628c: -1 @@ -191184,15 +191184,15 @@ - m02125s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5964 + - id: "HMR_5964" - name: "" - metabolites: !!omap - m02125c: 1 @@ -191201,15 +191201,15 @@ - m02360s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5965 + - id: "HMR_5965" - name: "" - metabolites: !!omap - m02125c: 1 @@ -191218,15 +191218,15 @@ - m02770s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5966 + - id: "HMR_5966" - name: "" - metabolites: !!omap - m01369c: -1 @@ -191235,15 +191235,15 @@ - m02125s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5967 + - id: "HMR_5967" - name: "" - metabolites: !!omap - m02125c: 1 @@ -191252,15 +191252,15 @@ - m03135s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5968 + - id: "HMR_5968" - name: "" - metabolites: !!omap - m02125c: 1 @@ -191269,15 +191269,15 @@ - m02993s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5969 + - id: "HMR_5969" - name: "" - metabolites: !!omap - m02125c: 1 @@ -191286,15 +191286,15 @@ - m02136s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5970 + - id: "HMR_5970" - name: "" - metabolites: !!omap - m02125c: 1 @@ -191303,15 +191303,15 @@ - m02184s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5971 + - id: "HMR_5971" - name: "" - metabolites: !!omap - m01588c: 1 @@ -191320,15 +191320,15 @@ - m01986s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5972 + - id: "HMR_5972" - name: "" - metabolites: !!omap - m01307c: -1 @@ -191337,15 +191337,15 @@ - m01588s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5973 + - id: "HMR_5973" - name: "" - metabolites: !!omap - m01588c: 1 @@ -191354,15 +191354,15 @@ - m01975s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5974 + - id: "HMR_5974" - name: "" - metabolites: !!omap - m01588c: 1 @@ -191371,15 +191371,15 @@ - m02896s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5975 + - id: "HMR_5975" - name: "" - metabolites: !!omap - m01588c: 1 @@ -191388,15 +191388,15 @@ - m02471s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5976 + - id: "HMR_5976" - name: "" - metabolites: !!omap - m01588c: 1 @@ -191405,15 +191405,15 @@ - m03089s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5977 + - id: "HMR_5977" - name: "" - metabolites: !!omap - m01588c: 1 @@ -191422,15 +191422,15 @@ - m02724s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5978 + - id: "HMR_5978" - name: "" - metabolites: !!omap - m01588c: 1 @@ -191439,15 +191439,15 @@ - m03101s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5979 + - id: "HMR_5979" - name: "" - metabolites: !!omap - m01588c: 1 @@ -191456,15 +191456,15 @@ - m01628s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5980 + - id: "HMR_5980" - name: "" - metabolites: !!omap - m01588c: 1 @@ -191473,15 +191473,15 @@ - m02360s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5981 + - id: "HMR_5981" - name: "" - metabolites: !!omap - m01588c: 1 @@ -191490,15 +191490,15 @@ - m02770s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5982 + - id: "HMR_5982" - name: "" - metabolites: !!omap - m01369c: -1 @@ -191507,15 +191507,15 @@ - m01588s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5983 + - id: "HMR_5983" - name: "" - metabolites: !!omap - m01588c: 1 @@ -191524,15 +191524,15 @@ - m03135s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5984 + - id: "HMR_5984" - name: "" - metabolites: !!omap - m01588c: 1 @@ -191541,15 +191541,15 @@ - m02993s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5985 + - id: "HMR_5985" - name: "" - metabolites: !!omap - m01588c: 1 @@ -191558,15 +191558,15 @@ - m02136s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5986 + - id: "HMR_5986" - name: "" - metabolites: !!omap - m01588c: 1 @@ -191575,15 +191575,15 @@ - m02184s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770309;PMID:14770310 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770309;PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5987 + - id: "HMR_5987" - name: "" - metabolites: !!omap - m01821c: 1 @@ -191592,15 +191592,15 @@ - m02039s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000018280 or ENSG00000110911 or ENSG00000138449 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14530970 + - gene_reaction_rule: "ENSG00000018280 or ENSG00000110911 or ENSG00000138449" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14530970" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5989 + - id: "HMR_5989" - name: "" - metabolites: !!omap - m02039c: 1 @@ -191609,15 +191609,15 @@ - m03157s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000104635 or ENSG00000110911 or ENSG00000138821 or ENSG00000139540 or ENSG00000141424 or ENSG00000141873 or ENSG00000143570 or ENSG00000147804 or ENSG00000165794 or ENSG00000196950 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14530970 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000104635 or ENSG00000110911 or ENSG00000138821 or ENSG00000139540 or ENSG00000141424 or ENSG00000141873 or ENSG00000143570 or ENSG00000147804 or ENSG00000165794 or ENSG00000196950" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14530970" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5990 + - id: "HMR_5990" - name: "" - metabolites: !!omap - m01442c: -1 @@ -191626,15 +191626,15 @@ - m02200s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113504 or ENSG00000124067 or ENSG00000124140 or ENSG00000140199 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739168;PMID:8663127 + - gene_reaction_rule: "ENSG00000113504 or ENSG00000124067 or ENSG00000124140 or ENSG00000140199" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739168;PMID:8663127" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5992 + - id: "HMR_5992" - name: "" - metabolites: !!omap - m01306c: 1 @@ -191643,15 +191643,15 @@ - m02519s: -3 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000158296 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739168;PMID:12915942 + - gene_reaction_rule: "ENSG00000158296" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739168;PMID:12915942" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5993 + - id: "HMR_5993" - name: "" - metabolites: !!omap - m01587c: 1 @@ -191660,15 +191660,15 @@ - m02039s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5994 + - id: "HMR_5994" - name: "" - metabolites: !!omap - m01587c: 1 @@ -191677,15 +191677,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000007216 or ENSG00000141485 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000007216 or ENSG00000141485" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5995 + - id: "HMR_5995" - name: "" - metabolites: !!omap - m01587c: 1 @@ -191694,15 +191694,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000007216 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000007216" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5996 + - id: "HMR_5996" - name: "" - metabolites: !!omap - m01587c: 1 @@ -191711,15 +191711,15 @@ - m02519s: -3 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 or ENSG00000158296 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739168;PMID:12915942 + - gene_reaction_rule: "ENSG00000103064 or ENSG00000158296" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739168;PMID:12915942" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5997 + - id: "HMR_5997" - name: "" - metabolites: !!omap - m01587c: 1 @@ -191728,15 +191728,15 @@ - m02519s: -4 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000141485 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12915942 + - gene_reaction_rule: "ENSG00000141485" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12915942" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5998 + - id: "HMR_5998" - name: "" - metabolites: !!omap - m02039c: 1 @@ -191745,15 +191745,15 @@ - m02403s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169;PMID:18305372 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169;PMID:18305372" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6000 + - id: "HMR_6000" - name: "" - metabolites: !!omap - m01253c: -1 @@ -191762,15 +191762,15 @@ - m02819s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6001 + - id: "HMR_6001" - name: "" - metabolites: !!omap - m01252c: -1 @@ -191779,15 +191779,15 @@ - m01253s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6002 + - id: "HMR_6002" - name: "" - metabolites: !!omap - m01253c: -1 @@ -191796,15 +191796,15 @@ - m01833s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6003 + - id: "HMR_6003" - name: "" - metabolites: !!omap - m01253c: -1 @@ -191813,15 +191813,15 @@ - m02772s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6004 + - id: "HMR_6004" - name: "" - metabolites: !!omap - m01253c: 1 @@ -191830,15 +191830,15 @@ - m02403s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6005 + - id: "HMR_6005" - name: "" - metabolites: !!omap - m01253c: -1 @@ -191847,15 +191847,15 @@ - m02833s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6006 + - id: "HMR_6006" - name: "" - metabolites: !!omap - m00648c: -1 @@ -191864,15 +191864,15 @@ - m01253s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6007 + - id: "HMR_6007" - name: "" - metabolites: !!omap - m00648c: -1 @@ -191881,15 +191881,15 @@ - m02819s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6008 + - id: "HMR_6008" - name: "" - metabolites: !!omap - m00648c: -1 @@ -191898,15 +191898,15 @@ - m01252s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6009 + - id: "HMR_6009" - name: "" - metabolites: !!omap - m00648c: -1 @@ -191915,15 +191915,15 @@ - m01833s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6010 + - id: "HMR_6010" - name: "" - metabolites: !!omap - m00648c: -1 @@ -191932,15 +191932,15 @@ - m02772s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6011 + - id: "HMR_6011" - name: "" - metabolites: !!omap - m00648c: -1 @@ -191949,15 +191949,15 @@ - m02403s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6012 + - id: "HMR_6012" - name: "" - metabolites: !!omap - m00648c: -1 @@ -191966,15 +191966,15 @@ - m01410s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6013 + - id: "HMR_6013" - name: "" - metabolites: !!omap - m00648c: -1 @@ -191983,15 +191983,15 @@ - m02833s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6014 + - id: "HMR_6014" - name: "" - metabolites: !!omap - m01306c: -1 @@ -192000,15 +192000,15 @@ - m02819s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6015 + - id: "HMR_6015" - name: "" - metabolites: !!omap - m01252c: -1 @@ -192017,15 +192017,15 @@ - m02819s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6016 + - id: "HMR_6016" - name: "" - metabolites: !!omap - m01833c: -1 @@ -192034,15 +192034,15 @@ - m02819s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6017 + - id: "HMR_6017" - name: "" - metabolites: !!omap - m02772c: -1 @@ -192051,15 +192051,15 @@ - m02819s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6018 + - id: "HMR_6018" - name: "" - metabolites: !!omap - m02403c: -1 @@ -192068,15 +192068,15 @@ - m02819s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6019 + - id: "HMR_6019" - name: "" - metabolites: !!omap - m01410c: -1 @@ -192085,15 +192085,15 @@ - m02819s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6020 + - id: "HMR_6020" - name: "" - metabolites: !!omap - m02819c: -1 @@ -192102,15 +192102,15 @@ - m02833s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6021 + - id: "HMR_6021" - name: "" - metabolites: !!omap - m00157c: -1 @@ -192119,15 +192119,15 @@ - m02819s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6022 + - id: "HMR_6022" - name: "" - metabolites: !!omap - m01252c: 1 @@ -192136,15 +192136,15 @@ - m01306s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6023 + - id: "HMR_6023" - name: "" - metabolites: !!omap - m01306c: -1 @@ -192153,15 +192153,15 @@ - m01833s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6024 + - id: "HMR_6024" - name: "" - metabolites: !!omap - m01306c: -1 @@ -192170,15 +192170,15 @@ - m02772s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6025 + - id: "HMR_6025" - name: "" - metabolites: !!omap - m01253c: 1 @@ -192187,15 +192187,15 @@ - m01306s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6026 + - id: "HMR_6026" - name: "" - metabolites: !!omap - m01306c: -1 @@ -192204,15 +192204,15 @@ - m02403s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6027 + - id: "HMR_6027" - name: "" - metabolites: !!omap - m01306c: -1 @@ -192221,15 +192221,15 @@ - m01410s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6028 + - id: "HMR_6028" - name: "" - metabolites: !!omap - m01306c: -1 @@ -192238,15 +192238,15 @@ - m02833s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6029 + - id: "HMR_6029" - name: "" - metabolites: !!omap - m00157c: -1 @@ -192255,15 +192255,15 @@ - m01306s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6030 + - id: "HMR_6030" - name: "" - metabolites: !!omap - m00648c: -1 @@ -192272,15 +192272,15 @@ - m01306s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6031 + - id: "HMR_6031" - name: "" - metabolites: !!omap - m01252c: -1 @@ -192289,15 +192289,15 @@ - m01833s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6032 + - id: "HMR_6032" - name: "" - metabolites: !!omap - m01252c: -1 @@ -192306,15 +192306,15 @@ - m02772s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6033 + - id: "HMR_6033" - name: "" - metabolites: !!omap - m01252c: 1 @@ -192323,15 +192323,15 @@ - m02403s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6034 + - id: "HMR_6034" - name: "" - metabolites: !!omap - m01252c: -1 @@ -192340,15 +192340,15 @@ - m01410s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6035 + - id: "HMR_6035" - name: "" - metabolites: !!omap - m01252c: -1 @@ -192357,15 +192357,15 @@ - m02833s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6036 + - id: "HMR_6036" - name: "" - metabolites: !!omap - m00157c: -1 @@ -192374,15 +192374,15 @@ - m01252s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6037 + - id: "HMR_6037" - name: "" - metabolites: !!omap - m01833c: -1 @@ -192391,15 +192391,15 @@ - m02772s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6038 + - id: "HMR_6038" - name: "" - metabolites: !!omap - m01833c: 1 @@ -192408,15 +192408,15 @@ - m02403s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6039 + - id: "HMR_6039" - name: "" - metabolites: !!omap - m01410c: -1 @@ -192425,15 +192425,15 @@ - m01833s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6040 + - id: "HMR_6040" - name: "" - metabolites: !!omap - m01833c: -1 @@ -192442,15 +192442,15 @@ - m02833s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6041 + - id: "HMR_6041" - name: "" - metabolites: !!omap - m00157c: -1 @@ -192459,15 +192459,15 @@ - m01833s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6042 + - id: "HMR_6042" - name: "" - metabolites: !!omap - m02403c: -1 @@ -192476,15 +192476,15 @@ - m02772s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6043 + - id: "HMR_6043" - name: "" - metabolites: !!omap - m01410c: -1 @@ -192493,15 +192493,15 @@ - m02772s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6044 + - id: "HMR_6044" - name: "" - metabolites: !!omap - m02772c: -1 @@ -192510,15 +192510,15 @@ - m02833s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6045 + - id: "HMR_6045" - name: "" - metabolites: !!omap - m00157c: -1 @@ -192527,15 +192527,15 @@ - m02772s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6046 + - id: "HMR_6046" - name: "" - metabolites: !!omap - m01253c: -1 @@ -192544,15 +192544,15 @@ - m01410s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6047 + - id: "HMR_6047" - name: "" - metabolites: !!omap - m00157c: -1 @@ -192561,15 +192561,15 @@ - m01253s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6048 + - id: "HMR_6048" - name: "" - metabolites: !!omap - m01410c: 1 @@ -192578,15 +192578,15 @@ - m02403s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6049 + - id: "HMR_6049" - name: "" - metabolites: !!omap - m02403c: -1 @@ -192595,15 +192595,15 @@ - m02833s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6050 + - id: "HMR_6050" - name: "" - metabolites: !!omap - m00157c: -1 @@ -192612,15 +192612,15 @@ - m02403s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6051 + - id: "HMR_6051" - name: "" - metabolites: !!omap - m01410c: -1 @@ -192629,15 +192629,15 @@ - m02833s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6052 + - id: "HMR_6052" - name: "" - metabolites: !!omap - m00157c: -1 @@ -192646,15 +192646,15 @@ - m01410s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6053 + - id: "HMR_6053" - name: "" - metabolites: !!omap - m00157c: -1 @@ -192663,15 +192663,15 @@ - m02833s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6054 + - id: "HMR_6054" - name: "" - metabolites: !!omap - m00157c: -1 @@ -192680,45 +192680,45 @@ - m00648s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6055 + - id: "HMR_6055" - name: "" - metabolites: !!omap - m02998c: -1 - m02998s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101187 or ENSG00000134538 or ENSG00000139155 or ENSG00000147100 or ENSG00000176463 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "ENSG00000101187 or ENSG00000134538 or ENSG00000139155 or ENSG00000147100 or ENSG00000176463" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6056 + - id: "HMR_6056" - name: "" - metabolites: !!omap - m03052c: -1 - m03052s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147100 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "ENSG00000147100" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6057 + - id: "HMR_6057" - name: "" - metabolites: !!omap - m02519c: 1 @@ -192727,30 +192727,30 @@ - m02751s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000124568 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12811560 + - gene_reaction_rule: "ENSG00000124568" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12811560" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6058 + - id: "HMR_6058" - name: "" - metabolites: !!omap - m01442c: 1 - m01442s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147606 or ENSG00000174502 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12811560 + - gene_reaction_rule: "ENSG00000147606 or ENSG00000174502" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12811560" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6059 + - id: "HMR_6059" - name: "" - metabolites: !!omap - m02039c: 1 @@ -192759,15 +192759,15 @@ - m02982s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117479 or ENSG00000135917 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770311 + - gene_reaction_rule: "ENSG00000117479 or ENSG00000135917" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770311" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6060 + - id: "HMR_6060" - name: "" - metabolites: !!omap - m02026c: -1 @@ -192778,15 +192778,15 @@ - m02402s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6061 + - id: "HMR_6061" - name: "" - metabolites: !!omap - m02026c: -1 @@ -192797,15 +192797,15 @@ - m02965s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6062 + - id: "HMR_6062" - name: "" - metabolites: !!omap - m02000c: 1 @@ -192816,15 +192816,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6063 + - id: "HMR_6063" - name: "" - metabolites: !!omap - m02026c: -1 @@ -192835,15 +192835,15 @@ - m03129s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6064 + - id: "HMR_6064" - name: "" - metabolites: !!omap - m02026c: -1 @@ -192854,15 +192854,15 @@ - m02966s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6065 + - id: "HMR_6065" - name: "" - metabolites: !!omap - m02004c: 1 @@ -192873,15 +192873,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6066 + - id: "HMR_6066" - name: "" - metabolites: !!omap - m02026c: -1 @@ -192892,15 +192892,15 @@ - m02951s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6067 + - id: "HMR_6067" - name: "" - metabolites: !!omap - m02026c: -1 @@ -192911,15 +192911,15 @@ - m02952s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6068 + - id: "HMR_6068" - name: "" - metabolites: !!omap - m01980c: -1 @@ -192930,15 +192930,15 @@ - m02402s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6069 + - id: "HMR_6069" - name: "" - metabolites: !!omap - m02046c: -1 @@ -192949,15 +192949,15 @@ - m02900s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6070 + - id: "HMR_6070" - name: "" - metabolites: !!omap - m02046c: -1 @@ -192968,15 +192968,15 @@ - m02901s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6071 + - id: "HMR_6071" - name: "" - metabolites: !!omap - m01980c: -1 @@ -192987,15 +192987,15 @@ - m02965s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6072 + - id: "HMR_6072" - name: "" - metabolites: !!omap - m02046c: -1 @@ -193006,15 +193006,15 @@ - m02965s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6073 + - id: "HMR_6073" - name: "" - metabolites: !!omap - m02046c: -1 @@ -193025,15 +193025,15 @@ - m02965s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6074 + - id: "HMR_6074" - name: "" - metabolites: !!omap - m01980c: -1 @@ -193044,15 +193044,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6075 + - id: "HMR_6075" - name: "" - metabolites: !!omap - m02000c: 1 @@ -193063,15 +193063,15 @@ - m02900s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6076 + - id: "HMR_6076" - name: "" - metabolites: !!omap - m02000c: 1 @@ -193082,15 +193082,15 @@ - m02901s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6077 + - id: "HMR_6077" - name: "" - metabolites: !!omap - m01980c: -1 @@ -193101,15 +193101,15 @@ - m03129s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6078 + - id: "HMR_6078" - name: "" - metabolites: !!omap - m02046c: -1 @@ -193120,15 +193120,15 @@ - m03129s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6079 + - id: "HMR_6079" - name: "" - metabolites: !!omap - m02046c: -1 @@ -193139,15 +193139,15 @@ - m03129s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6080 + - id: "HMR_6080" - name: "" - metabolites: !!omap - m01980c: -1 @@ -193158,15 +193158,15 @@ - m02966s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6081 + - id: "HMR_6081" - name: "" - metabolites: !!omap - m02046c: -1 @@ -193177,15 +193177,15 @@ - m02966s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6082 + - id: "HMR_6082" - name: "" - metabolites: !!omap - m02046c: -1 @@ -193196,15 +193196,15 @@ - m02966s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6083 + - id: "HMR_6083" - name: "" - metabolites: !!omap - m01980c: -1 @@ -193215,15 +193215,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6084 + - id: "HMR_6084" - name: "" - metabolites: !!omap - m02004c: 1 @@ -193234,15 +193234,15 @@ - m02900s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6085 + - id: "HMR_6085" - name: "" - metabolites: !!omap - m02004c: 1 @@ -193253,15 +193253,15 @@ - m02901s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6086 + - id: "HMR_6086" - name: "" - metabolites: !!omap - m01980c: -1 @@ -193272,15 +193272,15 @@ - m02951s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6087 + - id: "HMR_6087" - name: "" - metabolites: !!omap - m02046c: -1 @@ -193291,15 +193291,15 @@ - m02951s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6088 + - id: "HMR_6088" - name: "" - metabolites: !!omap - m02046c: -1 @@ -193310,15 +193310,15 @@ - m02951s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6089 + - id: "HMR_6089" - name: "" - metabolites: !!omap - m01980c: -1 @@ -193329,15 +193329,15 @@ - m02952s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6090 + - id: "HMR_6090" - name: "" - metabolites: !!omap - m02046c: -1 @@ -193348,15 +193348,15 @@ - m02952s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6091 + - id: "HMR_6091" - name: "" - metabolites: !!omap - m02046c: -1 @@ -193367,15 +193367,15 @@ - m02952s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6092 + - id: "HMR_6092" - name: "" - metabolites: !!omap - m01980c: -1 @@ -193386,15 +193386,15 @@ - m02950s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6093 + - id: "HMR_6093" - name: "" - metabolites: !!omap - m02046c: -1 @@ -193405,15 +193405,15 @@ - m02950s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6094 + - id: "HMR_6094" - name: "" - metabolites: !!omap - m02046c: -1 @@ -193424,15 +193424,15 @@ - m02950s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6095 + - id: "HMR_6095" - name: "" - metabolites: !!omap - m01396c: 1 @@ -193443,15 +193443,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6096 + - id: "HMR_6096" - name: "" - metabolites: !!omap - m02046c: -1 @@ -193460,15 +193460,15 @@ - m02998s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 or ENSG00000101187 or ENSG00000134538 or ENSG00000139155 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000084453 or ENSG00000101187 or ENSG00000134538 or ENSG00000139155" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6097 + - id: "HMR_6097" - name: "" - metabolites: !!omap - m02026c: -1 @@ -193479,15 +193479,15 @@ - m02998s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6098 + - id: "HMR_6098" - name: "" - metabolites: !!omap - m02046c: -1 @@ -193496,15 +193496,15 @@ - m03052s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 or ENSG00000101187 or ENSG00000111700 or ENSG00000134538 or ENSG00000139155 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000084453 or ENSG00000101187 or ENSG00000111700 or ENSG00000134538 or ENSG00000139155" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6099 + - id: "HMR_6099" - name: "" - metabolites: !!omap - m02026c: -1 @@ -193515,15 +193515,15 @@ - m03052s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6100 + - id: "HMR_6100" - name: "" - metabolites: !!omap - m02026c: -1 @@ -193534,15 +193534,15 @@ - m02839s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6101 + - id: "HMR_6101" - name: "" - metabolites: !!omap - m02046c: -1 @@ -193551,15 +193551,15 @@ - m02786s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 or ENSG00000101187 or ENSG00000174640 or ENSG00000176463 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000084453 or ENSG00000101187 or ENSG00000174640 or ENSG00000176463" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6102 + - id: "HMR_6102" - name: "" - metabolites: !!omap - m02026c: -1 @@ -193570,15 +193570,15 @@ - m02786s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6103 + - id: "HMR_6103" - name: "" - metabolites: !!omap - m02026c: -1 @@ -193589,15 +193589,15 @@ - m02366s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6104 + - id: "HMR_6104" - name: "" - metabolites: !!omap - m01397c: 1 @@ -193608,15 +193608,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6105 + - id: "HMR_6105" - name: "" - metabolites: !!omap - m02026c: -1 @@ -193627,15 +193627,15 @@ - m02995s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6106 + - id: "HMR_6106" - name: "" - metabolites: !!omap - m02026c: -1 @@ -193646,15 +193646,15 @@ - m02369s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6107 + - id: "HMR_6107" - name: "" - metabolites: !!omap - m01398c: 1 @@ -193665,15 +193665,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6108 + - id: "HMR_6108" - name: "" - metabolites: !!omap - m01396c: 1 @@ -193684,15 +193684,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6109 + - id: "HMR_6109" - name: "" - metabolites: !!omap - m01396c: 1 @@ -193703,15 +193703,15 @@ - m02900s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6110 + - id: "HMR_6110" - name: "" - metabolites: !!omap - m01396c: 1 @@ -193722,15 +193722,15 @@ - m02901s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6111 + - id: "HMR_6111" - name: "" - metabolites: !!omap - m01980c: -1 @@ -193741,15 +193741,15 @@ - m02998s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6112 + - id: "HMR_6112" - name: "" - metabolites: !!omap - m02046c: -1 @@ -193760,15 +193760,15 @@ - m02998s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6113 + - id: "HMR_6113" - name: "" - metabolites: !!omap - m02046c: -1 @@ -193779,15 +193779,15 @@ - m02998s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6114 + - id: "HMR_6114" - name: "" - metabolites: !!omap - m01980c: -1 @@ -193798,15 +193798,15 @@ - m03052s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6115 + - id: "HMR_6115" - name: "" - metabolites: !!omap - m02046c: -1 @@ -193817,15 +193817,15 @@ - m03052s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6116 + - id: "HMR_6116" - name: "" - metabolites: !!omap - m02046c: -1 @@ -193836,15 +193836,15 @@ - m03052s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6117 + - id: "HMR_6117" - name: "" - metabolites: !!omap - m01980c: -1 @@ -193855,15 +193855,15 @@ - m02839s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6118 + - id: "HMR_6118" - name: "" - metabolites: !!omap - m02046c: -1 @@ -193874,15 +193874,15 @@ - m02900s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6119 + - id: "HMR_6119" - name: "" - metabolites: !!omap - m02046c: -1 @@ -193893,15 +193893,15 @@ - m02901s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6120 + - id: "HMR_6120" - name: "" - metabolites: !!omap - m01980c: -1 @@ -193912,15 +193912,15 @@ - m02786s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6121 + - id: "HMR_6121" - name: "" - metabolites: !!omap - m02046c: -1 @@ -193931,15 +193931,15 @@ - m02900s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6122 + - id: "HMR_6122" - name: "" - metabolites: !!omap - m02046c: -1 @@ -193950,15 +193950,15 @@ - m02901s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6123 + - id: "HMR_6123" - name: "" - metabolites: !!omap - m01362c: 1 @@ -193969,15 +193969,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6124 + - id: "HMR_6124" - name: "" - metabolites: !!omap - m01362c: 1 @@ -193988,15 +193988,15 @@ - m02900s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6125 + - id: "HMR_6125" - name: "" - metabolites: !!omap - m01362c: 1 @@ -194007,15 +194007,15 @@ - m02901s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6126 + - id: "HMR_6126" - name: "" - metabolites: !!omap - m01980c: -1 @@ -194026,15 +194026,15 @@ - m02366s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6127 + - id: "HMR_6127" - name: "" - metabolites: !!omap - m02046c: -1 @@ -194045,15 +194045,15 @@ - m02900s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6128 + - id: "HMR_6128" - name: "" - metabolites: !!omap - m02046c: -1 @@ -194064,15 +194064,15 @@ - m02901s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6129 + - id: "HMR_6129" - name: "" - metabolites: !!omap - m01789c: 1 @@ -194081,15 +194081,15 @@ - m02046s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 or ENSG00000101187 or ENSG00000111700 or ENSG00000134538 or ENSG00000137491 or ENSG00000139155 or ENSG00000176463 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000084453 or ENSG00000101187 or ENSG00000111700 or ENSG00000134538 or ENSG00000137491 or ENSG00000139155 or ENSG00000176463" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6130 + - id: "HMR_6130" - name: "" - metabolites: !!omap - m01789c: 1 @@ -194100,15 +194100,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6131 + - id: "HMR_6131" - name: "" - metabolites: !!omap - m01789c: 1 @@ -194119,15 +194119,15 @@ - m02900s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6132 + - id: "HMR_6132" - name: "" - metabolites: !!omap - m01789c: 1 @@ -194138,15 +194138,15 @@ - m02901s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6133 + - id: "HMR_6133" - name: "" - metabolites: !!omap - m01659c: 1 @@ -194157,15 +194157,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6134 + - id: "HMR_6134" - name: "" - metabolites: !!omap - m01659c: 1 @@ -194176,15 +194176,15 @@ - m02900s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6135 + - id: "HMR_6135" - name: "" - metabolites: !!omap - m01659c: 1 @@ -194195,15 +194195,15 @@ - m02901s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6136 + - id: "HMR_6136" - name: "" - metabolites: !!omap - m01397c: 1 @@ -194214,15 +194214,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6137 + - id: "HMR_6137" - name: "" - metabolites: !!omap - m01397c: 1 @@ -194233,15 +194233,15 @@ - m02900s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6138 + - id: "HMR_6138" - name: "" - metabolites: !!omap - m01397c: 1 @@ -194252,15 +194252,15 @@ - m02901s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6139 + - id: "HMR_6139" - name: "" - metabolites: !!omap - m01980c: -1 @@ -194271,15 +194271,15 @@ - m02418s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6140 + - id: "HMR_6140" - name: "" - metabolites: !!omap - m02046c: -1 @@ -194290,15 +194290,15 @@ - m02900s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6141 + - id: "HMR_6141" - name: "" - metabolites: !!omap - m02046c: -1 @@ -194309,15 +194309,15 @@ - m02901s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6142 + - id: "HMR_6142" - name: "" - metabolites: !!omap - m00591c: -1 @@ -194328,15 +194328,15 @@ - m02046s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6143 + - id: "HMR_6143" - name: "" - metabolites: !!omap - m00591c: -1 @@ -194347,15 +194347,15 @@ - m02900s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6144 + - id: "HMR_6144" - name: "" - metabolites: !!omap - m00591c: -1 @@ -194366,15 +194366,15 @@ - m02901s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6145 + - id: "HMR_6145" - name: "" - metabolites: !!omap - m01980c: -1 @@ -194385,15 +194385,15 @@ - m02995s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6146 + - id: "HMR_6146" - name: "" - metabolites: !!omap - m02046c: -1 @@ -194404,15 +194404,15 @@ - m02995s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6147 + - id: "HMR_6147" - name: "" - metabolites: !!omap - m02046c: -1 @@ -194423,15 +194423,15 @@ - m02995s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6148 + - id: "HMR_6148" - name: "" - metabolites: !!omap - m01980c: -1 @@ -194442,15 +194442,15 @@ - m02362s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6149 + - id: "HMR_6149" - name: "" - metabolites: !!omap - m02046c: -1 @@ -194461,15 +194461,15 @@ - m02900s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6150 + - id: "HMR_6150" - name: "" - metabolites: !!omap - m02046c: -1 @@ -194480,15 +194480,15 @@ - m02901s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6151 + - id: "HMR_6151" - name: "" - metabolites: !!omap - m01980c: -1 @@ -194499,15 +194499,15 @@ - m02364s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6152 + - id: "HMR_6152" - name: "" - metabolites: !!omap - m02046c: -1 @@ -194518,15 +194518,15 @@ - m02900s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6153 + - id: "HMR_6153" - name: "" - metabolites: !!omap - m02046c: -1 @@ -194537,15 +194537,15 @@ - m02901s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6154 + - id: "HMR_6154" - name: "" - metabolites: !!omap - m01980c: -1 @@ -194556,15 +194556,15 @@ - m02369s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6155 + - id: "HMR_6155" - name: "" - metabolites: !!omap - m02046c: -1 @@ -194575,15 +194575,15 @@ - m02900s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6156 + - id: "HMR_6156" - name: "" - metabolites: !!omap - m02046c: -1 @@ -194594,15 +194594,15 @@ - m02901s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6157 + - id: "HMR_6157" - name: "" - metabolites: !!omap - m01980c: -1 @@ -194613,15 +194613,15 @@ - m02370s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6158 + - id: "HMR_6158" - name: "" - metabolites: !!omap - m02046c: -1 @@ -194632,15 +194632,15 @@ - m02900s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6159 + - id: "HMR_6159" - name: "" - metabolites: !!omap - m02046c: -1 @@ -194651,15 +194651,15 @@ - m02901s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6160 + - id: "HMR_6160" - name: "" - metabolites: !!omap - m01398c: 1 @@ -194670,15 +194670,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6161 + - id: "HMR_6161" - name: "" - metabolites: !!omap - m01398c: 1 @@ -194689,15 +194689,15 @@ - m02900s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6162 + - id: "HMR_6162" - name: "" - metabolites: !!omap - m01398c: 1 @@ -194708,15 +194708,15 @@ - m02901s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6163 + - id: "HMR_6163" - name: "" - metabolites: !!omap - m01980c: -1 @@ -194727,15 +194727,15 @@ - m02776s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6164 + - id: "HMR_6164" - name: "" - metabolites: !!omap - m02046c: -1 @@ -194746,15 +194746,15 @@ - m02900s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6165 + - id: "HMR_6165" - name: "" - metabolites: !!omap - m02046c: -1 @@ -194765,15 +194765,15 @@ - m02901s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6166 + - id: "HMR_6166" - name: "" - metabolites: !!omap - m01980c: -1 @@ -194784,15 +194784,15 @@ - m02777s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6167 + - id: "HMR_6167" - name: "" - metabolites: !!omap - m02046c: -1 @@ -194803,15 +194803,15 @@ - m02900s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6168 + - id: "HMR_6168" - name: "" - metabolites: !!omap - m02046c: -1 @@ -194822,15 +194822,15 @@ - m02901s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6169 + - id: "HMR_6169" - name: "" - metabolites: !!omap - m01980c: -1 @@ -194841,15 +194841,15 @@ - m02778s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6170 + - id: "HMR_6170" - name: "" - metabolites: !!omap - m02046c: -1 @@ -194860,15 +194860,15 @@ - m02900s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6171 + - id: "HMR_6171" - name: "" - metabolites: !!omap - m02046c: -1 @@ -194879,15 +194879,15 @@ - m02901s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6172 + - id: "HMR_6172" - name: "" - metabolites: !!omap - m01980c: -1 @@ -194898,15 +194898,15 @@ - m02779s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6173 + - id: "HMR_6173" - name: "" - metabolites: !!omap - m02046c: -1 @@ -194917,15 +194917,15 @@ - m02900s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6174 + - id: "HMR_6174" - name: "" - metabolites: !!omap - m02046c: -1 @@ -194936,15 +194936,15 @@ - m02901s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6175 + - id: "HMR_6175" - name: "" - metabolites: !!omap - m01980c: -1 @@ -194955,15 +194955,15 @@ - m02780s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6176 + - id: "HMR_6176" - name: "" - metabolites: !!omap - m02046c: -1 @@ -194974,15 +194974,15 @@ - m02900s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6177 + - id: "HMR_6177" - name: "" - metabolites: !!omap - m02046c: -1 @@ -194993,15 +194993,15 @@ - m02901s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6178 + - id: "HMR_6178" - name: "" - metabolites: !!omap - m01980c: -1 @@ -195012,15 +195012,15 @@ - m02781s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6179 + - id: "HMR_6179" - name: "" - metabolites: !!omap - m02046c: -1 @@ -195031,15 +195031,15 @@ - m02900s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6180 + - id: "HMR_6180" - name: "" - metabolites: !!omap - m02046c: -1 @@ -195050,15 +195050,15 @@ - m02901s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6181 + - id: "HMR_6181" - name: "" - metabolites: !!omap - m01980c: -1 @@ -195069,15 +195069,15 @@ - m02782s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6182 + - id: "HMR_6182" - name: "" - metabolites: !!omap - m02046c: -1 @@ -195088,15 +195088,15 @@ - m02900s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6183 + - id: "HMR_6183" - name: "" - metabolites: !!omap - m02046c: -1 @@ -195107,15 +195107,15 @@ - m02901s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6184 + - id: "HMR_6184" - name: "" - metabolites: !!omap - m01980c: -1 @@ -195126,15 +195126,15 @@ - m02783s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6185 + - id: "HMR_6185" - name: "" - metabolites: !!omap - m02046c: -1 @@ -195145,15 +195145,15 @@ - m02900s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6186 + - id: "HMR_6186" - name: "" - metabolites: !!omap - m02046c: -1 @@ -195164,15 +195164,15 @@ - m02901s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6187 + - id: "HMR_6187" - name: "" - metabolites: !!omap - m01980c: -1 @@ -195183,15 +195183,15 @@ - m02784s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6188 + - id: "HMR_6188" - name: "" - metabolites: !!omap - m02046c: -1 @@ -195202,15 +195202,15 @@ - m02900s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6189 + - id: "HMR_6189" - name: "" - metabolites: !!omap - m02046c: -1 @@ -195221,15 +195221,15 @@ - m02901s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6190 + - id: "HMR_6190" - name: "" - metabolites: !!omap - m01980c: -1 @@ -195240,15 +195240,15 @@ - m02785s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6191 + - id: "HMR_6191" - name: "" - metabolites: !!omap - m02046c: -1 @@ -195259,15 +195259,15 @@ - m02900s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6192 + - id: "HMR_6192" - name: "" - metabolites: !!omap - m02046c: -1 @@ -195278,15 +195278,15 @@ - m02901s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6193 + - id: "HMR_6193" - name: "" - metabolites: !!omap - m01980c: -1 @@ -195297,15 +195297,15 @@ - m02787s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6194 + - id: "HMR_6194" - name: "" - metabolites: !!omap - m02046c: -1 @@ -195316,15 +195316,15 @@ - m02900s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6195 + - id: "HMR_6195" - name: "" - metabolites: !!omap - m02046c: -1 @@ -195335,15 +195335,15 @@ - m02901s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6196 + - id: "HMR_6196" - name: "" - metabolites: !!omap - m01980c: -1 @@ -195354,15 +195354,15 @@ - m02788s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6197 + - id: "HMR_6197" - name: "" - metabolites: !!omap - m02046c: -1 @@ -195373,15 +195373,15 @@ - m02900s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6198 + - id: "HMR_6198" - name: "" - metabolites: !!omap - m02046c: -1 @@ -195392,15 +195392,15 @@ - m02901s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6199 + - id: "HMR_6199" - name: "" - metabolites: !!omap - m01980c: -1 @@ -195411,15 +195411,15 @@ - m02789s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6200 + - id: "HMR_6200" - name: "" - metabolites: !!omap - m02046c: -1 @@ -195430,15 +195430,15 @@ - m02900s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6201 + - id: "HMR_6201" - name: "" - metabolites: !!omap - m02046c: -1 @@ -195449,15 +195449,15 @@ - m02901s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6202 + - id: "HMR_6202" - name: "" - metabolites: !!omap - m01980c: -1 @@ -195468,15 +195468,15 @@ - m02790s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6203 + - id: "HMR_6203" - name: "" - metabolites: !!omap - m02046c: -1 @@ -195487,15 +195487,15 @@ - m02900s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6204 + - id: "HMR_6204" - name: "" - metabolites: !!omap - m02046c: -1 @@ -195506,15 +195506,15 @@ - m02901s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6205 + - id: "HMR_6205" - name: "" - metabolites: !!omap - m01980c: -1 @@ -195525,15 +195525,15 @@ - m02792s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6206 + - id: "HMR_6206" - name: "" - metabolites: !!omap - m02046c: -1 @@ -195544,15 +195544,15 @@ - m02900s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6207 + - id: "HMR_6207" - name: "" - metabolites: !!omap - m02046c: -1 @@ -195563,15 +195563,15 @@ - m02901s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6208 + - id: "HMR_6208" - name: "" - metabolites: !!omap - m01980c: -1 @@ -195582,15 +195582,15 @@ - m02794s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6209 + - id: "HMR_6209" - name: "" - metabolites: !!omap - m02046c: -1 @@ -195601,15 +195601,15 @@ - m02900s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6210 + - id: "HMR_6210" - name: "" - metabolites: !!omap - m02046c: -1 @@ -195620,15 +195620,15 @@ - m02901s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6211 + - id: "HMR_6211" - name: "" - metabolites: !!omap - m01980c: -1 @@ -195639,15 +195639,15 @@ - m02795s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6212 + - id: "HMR_6212" - name: "" - metabolites: !!omap - m02046c: -1 @@ -195658,15 +195658,15 @@ - m02900s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6213 + - id: "HMR_6213" - name: "" - metabolites: !!omap - m02046c: -1 @@ -195677,15 +195677,15 @@ - m02901s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113;PMID:11076396 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113;PMID:11076396" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6214 + - id: "HMR_6214" - name: "" - metabolites: !!omap - m02026c: -1 @@ -195696,15 +195696,15 @@ - m02617s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6215 + - id: "HMR_6215" - name: "" - metabolites: !!omap - m02026c: -1 @@ -195715,15 +195715,15 @@ - m02897s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6216 + - id: "HMR_6216" - name: "" - metabolites: !!omap - m01260c: 1 @@ -195734,15 +195734,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6217 + - id: "HMR_6217" - name: "" - metabolites: !!omap - m01736c: 1 @@ -195753,15 +195753,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 and ENSG00000111700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14579113 + - gene_reaction_rule: "ENSG00000084453 and ENSG00000111700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6218 + - id: "HMR_6218" - name: "" - metabolites: !!omap - m01362c: 1 @@ -195772,15 +195772,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174640 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000174640" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6219 + - id: "HMR_6219" - name: "" - metabolites: !!omap - m02026c: -1 @@ -195791,15 +195791,15 @@ - m02418s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174640 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000174640" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6220 + - id: "HMR_6220" - name: "" - metabolites: !!omap - m00591c: -1 @@ -195810,15 +195810,15 @@ - m02046s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174640 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000174640" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6221 + - id: "HMR_6221" - name: "" - metabolites: !!omap - m02026c: -1 @@ -195829,15 +195829,15 @@ - m02362s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174640 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000174640" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6222 + - id: "HMR_6222" - name: "" - metabolites: !!omap - m02026c: -1 @@ -195848,15 +195848,15 @@ - m02364s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174640 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000174640" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6223 + - id: "HMR_6223" - name: "" - metabolites: !!omap - m02026c: -1 @@ -195867,15 +195867,15 @@ - m02370s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174640 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000174640" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6224 + - id: "HMR_6224" - name: "" - metabolites: !!omap - m02026c: -1 @@ -195886,15 +195886,15 @@ - m02776s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174640 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000174640" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6225 + - id: "HMR_6225" - name: "" - metabolites: !!omap - m02026c: -1 @@ -195905,15 +195905,15 @@ - m02777s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174640 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000174640" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6226 + - id: "HMR_6226" - name: "" - metabolites: !!omap - m02026c: -1 @@ -195924,15 +195924,15 @@ - m02778s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174640 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000174640" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6227 + - id: "HMR_6227" - name: "" - metabolites: !!omap - m02026c: -1 @@ -195943,15 +195943,15 @@ - m02779s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174640 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000174640" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6228 + - id: "HMR_6228" - name: "" - metabolites: !!omap - m02026c: -1 @@ -195962,15 +195962,15 @@ - m02780s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174640 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000174640" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6229 + - id: "HMR_6229" - name: "" - metabolites: !!omap - m02026c: -1 @@ -195981,15 +195981,15 @@ - m02781s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174640 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000174640" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6230 + - id: "HMR_6230" - name: "" - metabolites: !!omap - m02026c: -1 @@ -196000,15 +196000,15 @@ - m02782s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174640 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000174640" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6231 + - id: "HMR_6231" - name: "" - metabolites: !!omap - m02026c: -1 @@ -196019,15 +196019,15 @@ - m02783s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174640 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000174640" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6232 + - id: "HMR_6232" - name: "" - metabolites: !!omap - m02026c: -1 @@ -196038,15 +196038,15 @@ - m02784s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174640 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000174640" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6233 + - id: "HMR_6233" - name: "" - metabolites: !!omap - m02026c: -1 @@ -196057,15 +196057,15 @@ - m02785s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174640 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000174640" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6234 + - id: "HMR_6234" - name: "" - metabolites: !!omap - m02026c: -1 @@ -196076,15 +196076,15 @@ - m02787s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174640 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000174640" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6235 + - id: "HMR_6235" - name: "" - metabolites: !!omap - m02026c: -1 @@ -196095,15 +196095,15 @@ - m02788s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174640 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000174640" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6236 + - id: "HMR_6236" - name: "" - metabolites: !!omap - m02026c: -1 @@ -196114,15 +196114,15 @@ - m02789s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174640 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000174640" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6237 + - id: "HMR_6237" - name: "" - metabolites: !!omap - m02026c: -1 @@ -196133,15 +196133,15 @@ - m02790s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174640 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000174640" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6238 + - id: "HMR_6238" - name: "" - metabolites: !!omap - m02026c: -1 @@ -196152,15 +196152,15 @@ - m02792s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174640 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000174640" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6239 + - id: "HMR_6239" - name: "" - metabolites: !!omap - m02026c: -1 @@ -196171,15 +196171,15 @@ - m02794s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174640 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000174640" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6240 + - id: "HMR_6240" - name: "" - metabolites: !!omap - m02026c: -1 @@ -196190,30 +196190,30 @@ - m02795s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174640 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11076394;PMID:11076396;PMID:14579113 + - gene_reaction_rule: "ENSG00000174640" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11076394;PMID:11076396;PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6241 + - id: "HMR_6241" - name: "" - metabolites: !!omap - m02617c: -1 - m02617s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112499 or ENSG00000146477 or ENSG00000164638 or ENSG00000175003 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891 + - gene_reaction_rule: "ENSG00000112499 or ENSG00000146477 or ENSG00000164638 or ENSG00000175003" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6242 + - id: "HMR_6242" - name: "" - metabolites: !!omap - m02519c: 2 @@ -196222,30 +196222,30 @@ - m02617s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103546 or ENSG00000142319 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000103546 or ENSG00000142319" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6243 + - id: "HMR_6243" - name: "" - metabolites: !!omap - m02897c: -1 - m02897s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112499 or ENSG00000146477 or ENSG00000164638 or ENSG00000175003 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891 + - gene_reaction_rule: "ENSG00000112499 or ENSG00000146477 or ENSG00000164638 or ENSG00000175003" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6244 + - id: "HMR_6244" - name: "" - metabolites: !!omap - m02200c: -2 @@ -196256,465 +196256,465 @@ - m02897s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108576 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000108576" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6245 + - id: "HMR_6245" - name: "" - metabolites: !!omap - m01260c: -1 - m01260s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112499 or ENSG00000146477 or ENSG00000175003 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891 + - gene_reaction_rule: "ENSG00000112499 or ENSG00000146477 or ENSG00000175003" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6246 + - id: "HMR_6246" - name: "" - metabolites: !!omap - m02786c: 1 - m02786s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112499 or ENSG00000146477 or ENSG00000174640 or ENSG00000175003 or ENSG00000176463 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "ENSG00000112499 or ENSG00000146477 or ENSG00000174640 or ENSG00000175003 or ENSG00000176463" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6247 + - id: "HMR_6247" - name: "" - metabolites: !!omap - m02789c: 1 - m02789s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112499 or ENSG00000146477 or ENSG00000174640 or ENSG00000175003 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "ENSG00000112499 or ENSG00000146477 or ENSG00000174640 or ENSG00000175003" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6248 + - id: "HMR_6248" - name: "" - metabolites: !!omap - m01789c: 1 - m01789s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137491 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "ENSG00000137491" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6249 + - id: "HMR_6249" - name: "" - metabolites: !!omap - m01659c: 1 - m01659s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000121270 or ENSG00000137491 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "ENSG00000121270 or ENSG00000137491" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6250 + - id: "HMR_6250" - name: "" - metabolites: !!omap - m01397c: -1 - m01397s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000184999 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "ENSG00000184999" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6251 + - id: "HMR_6251" - name: "" - metabolites: !!omap - m02418c: -1 - m02418s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6252 + - id: "HMR_6252" - name: "" - metabolites: !!omap - m00591c: -1 - m00591s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6253 + - id: "HMR_6253" - name: "" - metabolites: !!omap - m02995c: -1 - m02995s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000184999 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "ENSG00000184999" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6254 + - id: "HMR_6254" - name: "" - metabolites: !!omap - m02362c: -1 - m02362s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000184999 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "ENSG00000184999" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6255 + - id: "HMR_6255" - name: "" - metabolites: !!omap - m02364c: -1 - m02364s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000184999 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "ENSG00000184999" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6256 + - id: "HMR_6256" - name: "" - metabolites: !!omap - m02370c: -1 - m02370s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000184999 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "ENSG00000184999" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6257 + - id: "HMR_6257" - name: "" - metabolites: !!omap - m02839c: -1 - m02839s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101187 or ENSG00000134538 or ENSG00000139155 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "ENSG00000101187 or ENSG00000134538 or ENSG00000139155" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6258 + - id: "HMR_6258" - name: "" - metabolites: !!omap - m01398c: -1 - m01398s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000184999 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "ENSG00000184999" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6259 + - id: "HMR_6259" - name: "" - metabolites: !!omap - m02776c: -1 - m02776s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000184999 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "ENSG00000184999" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6260 + - id: "HMR_6260" - name: "" - metabolites: !!omap - m02777c: -1 - m02777s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6261 + - id: "HMR_6261" - name: "" - metabolites: !!omap - m02778c: -1 - m02778s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000184999 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "ENSG00000184999" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6262 + - id: "HMR_6262" - name: "" - metabolites: !!omap - m02779c: -1 - m02779s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000184999 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "ENSG00000184999" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6263 + - id: "HMR_6263" - name: "" - metabolites: !!omap - m02780c: -1 - m02780s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000184999 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "ENSG00000184999" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6264 + - id: "HMR_6264" - name: "" - metabolites: !!omap - m02781c: -1 - m02781s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000184999 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "ENSG00000184999" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6265 + - id: "HMR_6265" - name: "" - metabolites: !!omap - m02782c: -1 - m02782s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000184999 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "ENSG00000184999" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6266 + - id: "HMR_6266" - name: "" - metabolites: !!omap - m02783c: 1 - m02783s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174640 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "ENSG00000174640" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6267 + - id: "HMR_6267" - name: "" - metabolites: !!omap - m02784c: -1 - m02784s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000184999 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "ENSG00000184999" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6268 + - id: "HMR_6268" - name: "" - metabolites: !!omap - m02785c: 1 - m02785s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174640 or ENSG00000176463 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "ENSG00000174640 or ENSG00000176463" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6269 + - id: "HMR_6269" - name: "" - metabolites: !!omap - m02787c: -1 - m02787s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6270 + - id: "HMR_6270" - name: "" - metabolites: !!omap - m02788c: -1 - m02788s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000184999 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "ENSG00000184999" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6271 + - id: "HMR_6271" - name: "" - metabolites: !!omap - m02790c: -1 - m02790s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000184999 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "ENSG00000184999" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6272 + - id: "HMR_6272" - name: "" - metabolites: !!omap - m02792c: -1 - m02792s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000184999 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "ENSG00000184999" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6273 + - id: "HMR_6273" - name: "" - metabolites: !!omap - m02794c: -1 - m02794s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000184999 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "ENSG00000184999" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6274 + - id: "HMR_6274" - name: "" - metabolites: !!omap - m02795c: -1 - m02795s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000184999 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "ENSG00000184999" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6275 + - id: "HMR_6275" - name: "" - metabolites: !!omap - m01368c: 1 @@ -196723,15 +196723,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000089057 or ENSG00000170482 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12845532 + - gene_reaction_rule: "ENSG00000089057 or ENSG00000170482" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12845532" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6351 + - id: "HMR_6351" - name: "" - metabolites: !!omap - m02519c: 1 @@ -196740,15 +196740,15 @@ - m03123s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137860 or ENSG00000156222 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12856181;PMID:10772724 + - gene_reaction_rule: "ENSG00000137860 or ENSG00000156222" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12856181;PMID:10772724" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6352 + - id: "HMR_6352" - name: "" - metabolites: !!omap - m01673c: 1 @@ -196757,15 +196757,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137860 or ENSG00000156222 or ENSG00000197506 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12856181;PMID:10772724 + - gene_reaction_rule: "ENSG00000137860 or ENSG00000156222 or ENSG00000197506" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12856181;PMID:10772724" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6353 + - id: "HMR_6353" - name: "" - metabolites: !!omap - m02170c: 1 @@ -196774,15 +196774,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137860 or ENSG00000197506 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12856181;PMID:10772724 + - gene_reaction_rule: "ENSG00000137860 or ENSG00000197506" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12856181;PMID:10772724" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6354 + - id: "HMR_6354" - name: "" - metabolites: !!omap - m01671c: 1 @@ -196791,15 +196791,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137860 or ENSG00000197506 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12856181;PMID:10772724 + - gene_reaction_rule: "ENSG00000137860 or ENSG00000197506" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12856181;PMID:10772724" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6355 + - id: "HMR_6355" - name: "" - metabolites: !!omap - m01280c: 1 @@ -196808,15 +196808,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197506 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12856181 + - gene_reaction_rule: "ENSG00000197506" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12856181" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6356 + - id: "HMR_6356" - name: "" - metabolites: !!omap - m02519c: 2 @@ -196825,15 +196825,15 @@ - m02996s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197506 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12856181 + - gene_reaction_rule: "ENSG00000197506" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12856181" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6357 + - id: "HMR_6357" - name: "" - metabolites: !!omap - m02170c: 1 @@ -196842,15 +196842,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197506 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12856181 + - gene_reaction_rule: "ENSG00000197506" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12856181" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6358 + - id: "HMR_6358" - name: "" - metabolites: !!omap - m02519c: 2 @@ -196859,15 +196859,15 @@ - m03123s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197506 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12856181 + - gene_reaction_rule: "ENSG00000197506" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12856181" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6359 + - id: "HMR_6359" - name: "" - metabolites: !!omap - m01669c: 1 @@ -196876,15 +196876,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197506 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12856181 + - gene_reaction_rule: "ENSG00000197506" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12856181" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6360 + - id: "HMR_6360" - name: "" - metabolites: !!omap - m02038c: 1 @@ -196893,15 +196893,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197506 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12856181 + - gene_reaction_rule: "ENSG00000197506" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12856181" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6361 + - id: "HMR_6361" - name: "" - metabolites: !!omap - m01630c: 1 @@ -196910,15 +196910,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197506 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12856181 + - gene_reaction_rule: "ENSG00000197506" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12856181" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6362 + - id: "HMR_6362" - name: "" - metabolites: !!omap - m01673c: 1 @@ -196927,15 +196927,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197506 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12856181 + - gene_reaction_rule: "ENSG00000197506" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12856181" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6363 + - id: "HMR_6363" - name: "" - metabolites: !!omap - m01666c: 1 @@ -196944,15 +196944,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197506 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12856181 + - gene_reaction_rule: "ENSG00000197506" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12856181" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6364 + - id: "HMR_6364" - name: "" - metabolites: !!omap - m01668c: 1 @@ -196961,15 +196961,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197506 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12856181 + - gene_reaction_rule: "ENSG00000197506" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12856181" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6365 + - id: "HMR_6365" - name: "" - metabolites: !!omap - m01671c: 1 @@ -196978,90 +196978,90 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197506 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12856181 + - gene_reaction_rule: "ENSG00000197506" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12856181" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6366 + - id: "HMR_6366" - name: "" - metabolites: !!omap - m01669c: -1 - m01669s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112759 or ENSG00000174669 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12838422;PMID:12006583;PMID:14747464;PMID:16595656;PMID:17187757;PMID:17279066;PMID:7479738 + - gene_reaction_rule: "ENSG00000112759 or ENSG00000174669" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12838422;PMID:12006583;PMID:14747464;PMID:16595656;PMID:17187757;PMID:17279066;PMID:7479738" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6367 + - id: "HMR_6367" - name: "" - metabolites: !!omap - m01666c: -1 - m01666s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112759 or ENSG00000174669 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12838422;PMID:12006583;PMID:14747464;PMID:16595656;PMID:17187757;PMID:17279066;PMID:7479738 + - gene_reaction_rule: "ENSG00000112759 or ENSG00000174669" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12838422;PMID:12006583;PMID:14747464;PMID:16595656;PMID:17187757;PMID:17279066;PMID:7479738" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6368 + - id: "HMR_6368" - name: "" - metabolites: !!omap - m01668c: -1 - m01668s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112759 or ENSG00000174669 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12838422;PMID:12006583;PMID:14747464;PMID:16595656;PMID:17187757;PMID:17279066;PMID:7479738 + - gene_reaction_rule: "ENSG00000112759 or ENSG00000174669" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12838422;PMID:12006583;PMID:14747464;PMID:16595656;PMID:17187757;PMID:17279066;PMID:7479738" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6369 + - id: "HMR_6369" - name: "" - metabolites: !!omap - m01671c: -1 - m01671s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112759 or ENSG00000174669 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12838422;PMID:12006583;PMID:14747464;PMID:16595656;PMID:17187757;PMID:17279066;PMID:7479738 + - gene_reaction_rule: "ENSG00000112759 or ENSG00000174669" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12838422;PMID:12006583;PMID:14747464;PMID:16595656;PMID:17187757;PMID:17279066;PMID:7479738" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6370 + - id: "HMR_6370" - name: "" - metabolites: !!omap - m03157c: -1 - m03157s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000170385 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12748859 + - gene_reaction_rule: "ENSG00000170385" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12748859" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6371 + - id: "HMR_6371" - name: "" - metabolites: !!omap - m01986c: 1 @@ -197070,15 +197070,15 @@ - m02039s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123643 or ENSG00000180773 or ENSG00000186334 or ENSG00000186335 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12748860 + - gene_reaction_rule: "ENSG00000123643 or ENSG00000180773 or ENSG00000186334 or ENSG00000186335" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12748860" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6372 + - id: "HMR_6372" - name: "" - metabolites: !!omap - m01307c: 1 @@ -197087,15 +197087,15 @@ - m02039s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123643 or ENSG00000180773 or ENSG00000186334 or ENSG00000186335 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12748860 + - gene_reaction_rule: "ENSG00000123643 or ENSG00000180773 or ENSG00000186334 or ENSG00000186335" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12748860" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6373 + - id: "HMR_6373" - name: "" - metabolites: !!omap - m02039c: 1 @@ -197104,15 +197104,15 @@ - m02770s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123643 or ENSG00000180773 or ENSG00000186334 or ENSG00000186335 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12748860 + - gene_reaction_rule: "ENSG00000123643 or ENSG00000180773 or ENSG00000186334 or ENSG00000186335" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12748860" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6374 + - id: "HMR_6374" - name: "" - metabolites: !!omap - m02039c: 1 @@ -197121,15 +197121,15 @@ - m02896s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123643 or ENSG00000180773 or ENSG00000186334 or ENSG00000186335 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12748860 + - gene_reaction_rule: "ENSG00000123643 or ENSG00000180773 or ENSG00000186334 or ENSG00000186335" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12748860" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6375 + - id: "HMR_6375" - name: "" - metabolites: !!omap - m02519c: 1 @@ -197138,15 +197138,15 @@ - m02896s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072041 or ENSG00000111371 or ENSG00000134294 or ENSG00000139209 or ENSG00000174358 or ENSG00000268104 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12845534;PMID:10823827;PMID:11452978;PMID:15632147 + - gene_reaction_rule: "ENSG00000072041 or ENSG00000111371 or ENSG00000134294 or ENSG00000139209 or ENSG00000174358 or ENSG00000268104" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12845534;PMID:10823827;PMID:11452978;PMID:15632147" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6377 + - id: "HMR_6377" - name: "" - metabolites: !!omap - m01628c: 1 @@ -197155,15 +197155,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072041 or ENSG00000105281 or ENSG00000115902 or ENSG00000139209 or ENSG00000174358 or ENSG00000268104 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12845534;PMID:10823827;PMID:11452978;PMID:15632147 + - gene_reaction_rule: "ENSG00000072041 or ENSG00000105281 or ENSG00000115902 or ENSG00000139209 or ENSG00000174358 or ENSG00000268104" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12845534;PMID:10823827;PMID:11452978;PMID:15632147" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6379 + - id: "HMR_6379" - name: "" - metabolites: !!omap - m02136c: 1 @@ -197172,15 +197172,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000003989 or ENSG00000139514 or ENSG00000165349 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12845534;PMID:10823827;PMID:11452978;PMID:15632147 + - gene_reaction_rule: "ENSG00000003989 or ENSG00000139514 or ENSG00000165349" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12845534;PMID:10823827;PMID:11452978;PMID:15632147" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6380 + - id: "HMR_6380" - name: "" - metabolites: !!omap - m01975c: 1 @@ -197191,15 +197191,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000017483 or ENSG00000111371 or ENSG00000134294 or ENSG00000139209 or ENSG00000268104 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12845534 + - gene_reaction_rule: "ENSG00000017483 or ENSG00000111371 or ENSG00000134294 or ENSG00000139209 or ENSG00000268104" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12845534" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6381 + - id: "HMR_6381" - name: "" - metabolites: !!omap - m02039c: -1 @@ -197210,15 +197210,15 @@ - m02896s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000017483 or ENSG00000111371 or ENSG00000134294 or ENSG00000139209 or ENSG00000268104 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12845534 + - gene_reaction_rule: "ENSG00000017483 or ENSG00000111371 or ENSG00000134294 or ENSG00000139209 or ENSG00000268104" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12845534" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6382 + - id: "HMR_6382" - name: "" - metabolites: !!omap - m01369c: 1 @@ -197229,15 +197229,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000017483 or ENSG00000111371 or ENSG00000134294 or ENSG00000139209 or ENSG00000268104 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12845534 + - gene_reaction_rule: "ENSG00000017483 or ENSG00000111371 or ENSG00000134294 or ENSG00000139209 or ENSG00000268104" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12845534" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6383 + - id: "HMR_6383" - name: "" - metabolites: !!omap - m02039c: -1 @@ -197248,15 +197248,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000003989 or ENSG00000139514 or ENSG00000165349 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12845534 + - gene_reaction_rule: "ENSG00000003989 or ENSG00000139514 or ENSG00000165349" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12845534" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6384 + - id: "HMR_6384" - name: "" - metabolites: !!omap - m02039c: -1 @@ -197267,15 +197267,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000017483 or ENSG00000134294 or ENSG00000268104 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12845534 + - gene_reaction_rule: "ENSG00000017483 or ENSG00000134294 or ENSG00000268104" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12845534" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6392 + - id: "HMR_6392" - name: "" - metabolites: !!omap - m01285c: 1 @@ -197287,15 +197287,15 @@ - m02952s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103222 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:17404808 + - gene_reaction_rule: "ENSG00000103222" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:17404808" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6406 + - id: "HMR_6406" - name: "" - metabolites: !!omap - m01285c: 1 @@ -197309,135 +197309,135 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138074 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16415531 + - gene_reaction_rule: "ENSG00000138074" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16415531" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6424 + - id: "HMR_6424" - name: "" - metabolites: !!omap - m01330c: -1 - m01330s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6439 + - id: "HMR_6439" - name: "" - metabolites: !!omap - m01938c: 1 - m01938s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6462 + - id: "HMR_6462" - name: "" - metabolites: !!omap - m01935c: -1 - m01935s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6474 + - id: "HMR_6474" - name: "" - metabolites: !!omap - m01327c: -1 - m01327s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000015520 and ENSG00000073060 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000015520 and ENSG00000073060" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6505 + - id: "HMR_6505" - name: "" - metabolites: !!omap - m02842c: -1 - m02842s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6512 + - id: "HMR_6512" - name: "" - metabolites: !!omap - m01802c: -1 - m01802s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000039123 or ENSG00000054148 or ENSG00000063601 or ENSG00000067113 or ENSG00000072756 or ENSG00000087053 or ENSG00000126821 or ENSG00000139505 or ENSG00000141934 or ENSG00000162407 or ENSG00000163082 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14977409;PMID:17466261 + - gene_reaction_rule: "ENSG00000039123 or ENSG00000054148 or ENSG00000063601 or ENSG00000067113 or ENSG00000072756 or ENSG00000087053 or ENSG00000126821 or ENSG00000139505 or ENSG00000141934 or ENSG00000162407 or ENSG00000163082" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14977409;PMID:17466261" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6514 + - id: "HMR_6514" - name: "" - metabolites: !!omap - m02986c: -1 - m02986s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6516 + - id: "HMR_6516" - name: "" - metabolites: !!omap - m02145c: -1 - m02145s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6524 + - id: "HMR_6524" - name: "" - metabolites: !!omap - m01442c: 1 @@ -197446,15 +197446,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000070915 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000070915" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6525 + - id: "HMR_6525" - name: "" - metabolites: !!omap - m01442c: 1 @@ -197463,15 +197463,15 @@ - m02046s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000004939 or ENSG00000008300 or ENSG00000091137 or ENSG00000091138 or ENSG00000113073 or ENSG00000114923 or ENSG00000164889 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000004939 or ENSG00000008300 or ENSG00000091137 or ENSG00000091138 or ENSG00000113073 or ENSG00000114923 or ENSG00000164889" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6526 + - id: "HMR_6526" - name: "" - metabolites: !!omap - m01442c: 2 @@ -197482,15 +197482,15 @@ - m02579s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064651 or ENSG00000074803 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000064651 or ENSG00000074803" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6527 + - id: "HMR_6527" - name: "" - metabolites: !!omap - m01442c: 1 @@ -197499,15 +197499,15 @@ - m02579s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113504 or ENSG00000124067 or ENSG00000140199 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113504 or ENSG00000124067 or ENSG00000140199" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6529 + - id: "HMR_6529" - name: "" - metabolites: !!omap - m01442c: 1 @@ -197516,15 +197516,15 @@ - m01833s: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000091137 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000091137" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6530 + - id: "HMR_6530" - name: "" - metabolites: !!omap - m01442c: 1 @@ -197533,15 +197533,15 @@ - m02946s: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000225697 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000225697" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6531 + - id: "HMR_6531" - name: "" - metabolites: !!omap - m01442c: 2 @@ -197550,15 +197550,15 @@ - m02661s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000225697 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000225697" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6532 + - id: "HMR_6532" - name: "" - metabolites: !!omap - m01442c: 2 @@ -197567,15 +197567,15 @@ - m02046s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000050438 or ENSG00000144290 or ENSG00000225697 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000050438 or ENSG00000144290 or ENSG00000225697" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6533 + - id: "HMR_6533" - name: "" - metabolites: !!omap - m01442c: 2 @@ -197584,15 +197584,15 @@ - m02147s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000225697 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000225697" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6534 + - id: "HMR_6534" - name: "" - metabolites: !!omap - m01442c: 1 @@ -197601,45 +197601,45 @@ - m02046s: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112053 or ENSG00000147606 or ENSG00000155850 or ENSG00000174502 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000112053 or ENSG00000147606 or ENSG00000155850 or ENSG00000174502" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6628 + - id: "HMR_6628" - name: "" - metabolites: !!omap - m02834c: 1 - m02834s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000114115 and ENSG00000137868 and ENSG00000138207) or (ENSG00000114113 and ENSG00000137868 and ENSG00000138207) - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "(ENSG00000114115 and ENSG00000137868 and ENSG00000138207) or (ENSG00000114113 and ENSG00000137868 and ENSG00000138207)" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6732 + - id: "HMR_6732" - name: "" - metabolites: !!omap - m01736c: -1 - m01736s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112499 or ENSG00000146477 or ENSG00000164638 or ENSG00000175003 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891 + - gene_reaction_rule: "ENSG00000112499 or ENSG00000146477 or ENSG00000164638 or ENSG00000175003" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6733 + - id: "HMR_6733" - name: "" - metabolites: !!omap - m01736c: 1 @@ -197648,15 +197648,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103546 or ENSG00000142319 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000103546 or ENSG00000142319" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6989 + - id: "HMR_6989" - name: "" - metabolites: !!omap - m02174c: 1 @@ -197665,360 +197665,360 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105641 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000105641" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6991 + - id: "HMR_6991" - name: "" - metabolites: !!omap - m02588c: -1 - m02588s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7109 + - id: "HMR_7109" - name: "" - metabolites: !!omap - m01374c: 1 - m01374s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7111 + - id: "HMR_7111" - name: "" - metabolites: !!omap - m02556c: 1 - m02556s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7113 + - id: "HMR_7113" - name: "" - metabolites: !!omap - m01296c: 1 - m01296s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7115 + - id: "HMR_7115" - name: "" - metabolites: !!omap - m03044c: 1 - m03044s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7117 + - id: "HMR_7117" - name: "" - metabolites: !!omap - m01403c: 1 - m01403s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7119 + - id: "HMR_7119" - name: "" - metabolites: !!omap - m01174c: 1 - m01174s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7121 + - id: "HMR_7121" - name: "" - metabolites: !!omap - m00932c: 1 - m00932s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7123 + - id: "HMR_7123" - name: "" - metabolites: !!omap - m00545c: 1 - m00545s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7125 + - id: "HMR_7125" - name: "" - metabolites: !!omap - m00228c: 1 - m00228s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7127 + - id: "HMR_7127" - name: "" - metabolites: !!omap - m00242c: 1 - m00242s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7173 + - id: "HMR_7173" - name: "" - metabolites: !!omap - m01712c: -1 - m01712s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7184 + - id: "HMR_7184" - name: "" - metabolites: !!omap - m02907c: -1 - m02907s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7223 + - id: "HMR_7223" - name: "" - metabolites: !!omap - m02054g: -1 - m02054s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7253 + - id: "HMR_7253" - name: "" - metabolites: !!omap - m03155c: -1 - m03155s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7372 + - id: "HMR_7372" - name: "" - metabolites: !!omap - m02278g: -1 - m02278s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7453 + - id: "HMR_7453" - name: "" - metabolites: !!omap - m02288g: -1 - m02288s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7482 + - id: "HMR_7482" - name: "" - metabolites: !!omap - m02303g: -1 - m02303s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7499 + - id: "HMR_7499" - name: "" - metabolites: !!omap - m01517g: -1 - m01517s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174669 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000174669" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7511 + - id: "HMR_7511" - name: "" - metabolites: !!omap - m01525g: -1 - m01525s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7523 + - id: "HMR_7523" - name: "" - metabolites: !!omap - m01533g: -1 - m01533s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7539 + - id: "HMR_7539" - name: "" - metabolites: !!omap - m01543g: -1 - m01543s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7555 + - id: "HMR_7555" - name: "" - metabolites: !!omap - m01554g: -1 - m01554s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7568 + - id: "HMR_7568" - name: "" - metabolites: !!omap - m02039c: 2 @@ -198028,15 +198028,15 @@ - m03111c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103044 or ENSG00000105509 or ENSG00000170961 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.212 - - references: + - gene_reaction_rule: "ENSG00000103044 or ENSG00000105509 or ENSG00000170961" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.212" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7569 + - id: "HMR_7569" - name: "" - metabolites: !!omap - m02039c: 2 @@ -198047,75 +198047,75 @@ - m03111c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103044 or ENSG00000105509 or ENSG00000170961 - - rxnFrom: HMRdatabase - - eccodes: 2.4.1.212 - - references: + - gene_reaction_rule: "ENSG00000103044 or ENSG00000105509 or ENSG00000170961" + - rxnFrom: "HMRdatabase" + - eccodes: "2.4.1.212" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7579 + - id: "HMR_7579" - name: "" - metabolites: !!omap - m02672g: -1 - m02672s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7583 + - id: "HMR_7583" - name: "" - metabolites: !!omap - m02510g: -1 - m02510s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7608 + - id: "HMR_7608" - name: "" - metabolites: !!omap - m00626c: -1 - m00626s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7609 + - id: "HMR_7609" - name: "" - metabolites: !!omap - m00549c: -1 - m00549s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7629 + - id: "HMR_7629" - name: "" - metabolites: !!omap - m01285c: 1 @@ -198127,15 +198127,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000017260 or ENSG00000058668 or ENSG00000064270 or ENSG00000067842 or ENSG00000070961 or ENSG00000074370 or ENSG00000157087 or ENSG00000174437 or ENSG00000196296 - - rxnFrom: HMRdatabase - - eccodes: 3.6.3.8 - - references: + - gene_reaction_rule: "ENSG00000017260 or ENSG00000058668 or ENSG00000064270 or ENSG00000067842 or ENSG00000070961 or ENSG00000074370 or ENSG00000157087 or ENSG00000174437 or ENSG00000196296" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.3.8" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7630 + - id: "HMR_7630" - name: "" - metabolites: !!omap - m01413c: -1 @@ -198144,15 +198144,15 @@ - m02519s: -3 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100678 or ENSG00000118160 or ENSG00000183023 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000100678 or ENSG00000118160 or ENSG00000183023" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7631 + - id: "HMR_7631" - name: "" - metabolites: !!omap - m01413c: -1 @@ -198163,15 +198163,15 @@ - m02519s: -4 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074621 or ENSG00000140090 or ENSG00000155886 or ENSG00000185052 or ENSG00000188467 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000074621 or ENSG00000140090 or ENSG00000155886 or ENSG00000185052 or ENSG00000188467" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7632 + - id: "HMR_7632" - name: "" - metabolites: !!omap - m01413c: -1 @@ -198182,15 +198182,15 @@ - m02578s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074621 or ENSG00000155886 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000074621 or ENSG00000155886" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7633 + - id: "HMR_7633" - name: "" - metabolites: !!omap - m01285c: 2 @@ -198202,15 +198202,15 @@ - m02751c: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000036565 or ENSG00000165646 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000036565 or ENSG00000165646" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7634 + - id: "HMR_7634" - name: "" - metabolites: !!omap - m01107c: -3 @@ -198222,15 +198222,15 @@ - m02751c: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000036565 or ENSG00000165646 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000036565 or ENSG00000165646" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7635 + - id: "HMR_7635" - name: "" - metabolites: !!omap - m01285c: 2 @@ -198242,15 +198242,15 @@ - m02751c: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000036565 or ENSG00000165646 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000036565 or ENSG00000165646" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7636 + - id: "HMR_7636" - name: "" - metabolites: !!omap - m01285c: 2 @@ -198262,15 +198262,15 @@ - m02751c: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000036565 or ENSG00000165646 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000036565 or ENSG00000165646" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7637 + - id: "HMR_7637" - name: "" - metabolites: !!omap - m01285c: 2 @@ -198282,15 +198282,15 @@ - m02751c: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000036565 or ENSG00000165646 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000036565 or ENSG00000165646" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7639 + - id: "HMR_7639" - name: "" - metabolites: !!omap - m01641c: 1 @@ -198303,15 +198303,15 @@ - m02519s: -3 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000079215 or ENSG00000105143 or ENSG00000106688 or ENSG00000110436 or ENSG00000162383 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000079215 or ENSG00000105143 or ENSG00000106688 or ENSG00000110436 or ENSG00000162383" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7643 + - id: "HMR_7643" - name: "" - metabolites: !!omap - m01638c: -1 @@ -198320,15 +198320,15 @@ - m01975s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130876 and ENSG00000168003 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000130876 and ENSG00000168003" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7644 + - id: "HMR_7644" - name: "" - metabolites: !!omap - m01638c: -1 @@ -198337,15 +198337,15 @@ - m01986s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130876 and ENSG00000168003 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000130876 and ENSG00000168003" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7645 + - id: "HMR_7645" - name: "" - metabolites: !!omap - m01638c: 1 @@ -198354,15 +198354,15 @@ - m02039s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123643 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000123643" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7650 + - id: "HMR_7650" - name: "" - metabolites: !!omap - m01285c: 1 @@ -198374,15 +198374,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125257 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000125257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7651 + - id: "HMR_7651" - name: "" - metabolites: !!omap - m01786c: 1 @@ -198391,30 +198391,30 @@ - m02046s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 or ENSG00000101187 or ENSG00000111700 or ENSG00000134538 or ENSG00000139155 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000084453 or ENSG00000101187 or ENSG00000111700 or ENSG00000134538 or ENSG00000139155" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7660 + - id: "HMR_7660" - name: "" - metabolites: !!omap - m01356c: -1 - m01356s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7666 + - id: "HMR_7666" - name: "" - metabolites: !!omap - m01401c: 1 @@ -198423,15 +198423,15 @@ - m02039s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000155380 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000155380" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7667 + - id: "HMR_7667" - name: "" - metabolites: !!omap - m01285c: 1 @@ -198445,15 +198445,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138074 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000138074" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7679 + - id: "HMR_7679" - name: "" - metabolites: !!omap - m00536c: -1 @@ -198465,15 +198465,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7680 + - id: "HMR_7680" - name: "" - metabolites: !!omap - m01626c: 1 @@ -198482,15 +198482,15 @@ - m02039s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7681 + - id: "HMR_7681" - name: "" - metabolites: !!omap - m01260c: -3 @@ -198502,15 +198502,15 @@ - m02751c: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000187714 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000187714" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7682 + - id: "HMR_7682" - name: "" - metabolites: !!omap - m01100c: -1 @@ -198519,15 +198519,15 @@ - m02147s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000173638 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:9602167 + - gene_reaction_rule: "ENSG00000173638" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:9602167" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7683 + - id: "HMR_7683" - name: "" - metabolites: !!omap - m01115c: -1 @@ -198536,15 +198536,15 @@ - m02147s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000173638 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:9602167 + - gene_reaction_rule: "ENSG00000173638" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:9602167" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7684 + - id: "HMR_7684" - name: "" - metabolites: !!omap - m01830c: -1 @@ -198553,15 +198553,15 @@ - m02147s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000173638 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:9602167 + - gene_reaction_rule: "ENSG00000173638" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:9602167" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7685 + - id: "HMR_7685" - name: "" - metabolites: !!omap - m02147c: 1 @@ -198570,15 +198570,15 @@ - m02980s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000173638 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:9602167 + - gene_reaction_rule: "ENSG00000173638" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:9602167" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7686 + - id: "HMR_7686" - name: "" - metabolites: !!omap - m02147c: -1 @@ -198587,15 +198587,15 @@ - m02983s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000173638 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:9602167 + - gene_reaction_rule: "ENSG00000173638" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:9602167" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7687 + - id: "HMR_7687" - name: "" - metabolites: !!omap - m02147c: 3 @@ -198604,30 +198604,30 @@ - m02985s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000173638 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:9602167 + - gene_reaction_rule: "ENSG00000173638" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:9602167" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7690 + - id: "HMR_7690" - name: "" - metabolites: !!omap - m02754c: -1 - m02754s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7691 + - id: "HMR_7691" - name: "" - metabolites: !!omap - m01285c: 1 @@ -198639,15 +198639,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000114770 or ENSG00000121270 or ENSG00000125257 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000114770 or ENSG00000121270 or ENSG00000125257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 2 - !!omap - - id: HMR_7692 + - id: "HMR_7692" - name: "" - metabolites: !!omap - m01285c: 1 @@ -198659,15 +198659,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000114770 or ENSG00000121270 or ENSG00000125257 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000114770 or ENSG00000121270 or ENSG00000125257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 2 - !!omap - - id: HMR_7699 + - id: "HMR_7699" - name: "" - metabolites: !!omap - m02519c: 2 @@ -198676,15 +198676,15 @@ - m02946s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000081800 or ENSG00000164707 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000081800 or ENSG00000164707" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7700 + - id: "HMR_7700" - name: "" - metabolites: !!omap - m02519c: 3 @@ -198693,15 +198693,15 @@ - m02946s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000081800 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000081800" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7734 + - id: "HMR_7734" - name: "" - metabolites: !!omap - m01513c: 1 @@ -198710,30 +198710,30 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115665 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000115665" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7735 + - id: "HMR_7735" - name: "" - metabolites: !!omap - m02049c: -1 - m02049s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000076351 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:17129779 + - gene_reaction_rule: "ENSG00000076351" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:17129779" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7736 + - id: "HMR_7736" - name: "" - metabolites: !!omap - m01285c: 1 @@ -198745,15 +198745,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101438 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000101438" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7737 + - id: "HMR_7737" - name: "" - metabolites: !!omap - m01285c: 1 @@ -198765,15 +198765,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101438 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000101438" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7738 + - id: "HMR_7738" - name: "" - metabolites: !!omap - m00970c: -3 @@ -198785,150 +198785,150 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101438 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000101438" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7739 + - id: "HMR_7739" - name: "" - metabolites: !!omap - m02174c: -1 - m02174s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000256870 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000256870" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7774 + - id: "HMR_7774" - name: "" - metabolites: !!omap - m02552c: -1 - m02552s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7781 + - id: "HMR_7781" - name: "" - metabolites: !!omap - m01285c: -1 - m01285s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7787 + - id: "HMR_7787" - name: "" - metabolites: !!omap - m01623c: -1 - m01623s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7798 + - id: "HMR_7798" - name: "" - metabolites: !!omap - m01595c: -1 - m01595s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7896 + - id: "HMR_7896" - name: "" - metabolites: !!omap - m01797c: -1 - m01797s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7898 + - id: "HMR_7898" - name: "" - metabolites: !!omap - m02193c: -1 - m02193s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7900 + - id: "HMR_7900" - name: "" - metabolites: !!omap - m01714c: -1 - m01714s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7901 + - id: "HMR_7901" - name: "" - metabolites: !!omap - m02050c: -1 - m02050s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7902 + - id: "HMR_7902" - name: "" - metabolites: !!omap - m02046c: -2 @@ -198937,30 +198937,30 @@ - m02661s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000091138 or ENSG00000145217 or ENSG00000155850 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000091138 or ENSG00000145217 or ENSG00000155850" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7903 + - id: "HMR_7903" - name: "" - metabolites: !!omap - m02440c: -1 - m02440s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7904 + - id: "HMR_7904" - name: "" - metabolites: !!omap - m02519c: 1 @@ -198969,45 +198969,45 @@ - m02885s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000081800 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000081800" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7905 + - id: "HMR_7905" - name: "" - metabolites: !!omap - m01288c: -1 - m01288s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000004468 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000004468" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7906 + - id: "HMR_7906" - name: "" - metabolites: !!omap - m01704c: -1 - m01704s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7946 + - id: "HMR_7946" - name: "" - metabolites: !!omap - m01789c: 1 @@ -199016,45 +199016,45 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100652 or ENSG00000125255 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000100652 or ENSG00000125255" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7951 + - id: "HMR_7951" - name: "" - metabolites: !!omap - m01659c: -1 - m01659r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7961 + - id: "HMR_7961" - name: "" - metabolites: !!omap - m01158c: -1 - m01158s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7964 + - id: "HMR_7964" - name: "" - metabolites: !!omap - m01285c: 1 @@ -199066,15 +199066,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108846 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000108846" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7967 + - id: "HMR_7967" - name: "" - metabolites: !!omap - m01285c: 1 @@ -199086,60 +199086,60 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103222 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000103222" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7975 + - id: "HMR_7975" - name: "" - metabolites: !!omap - m01071c: -1 - m01071s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7977 + - id: "HMR_7977" - name: "" - metabolites: !!omap - m00580c: -1 - m00580s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7979 + - id: "HMR_7979" - name: "" - metabolites: !!omap - m02968c: -1 - m02968s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7982 + - id: "HMR_7982" - name: "" - metabolites: !!omap - m01285c: 1 @@ -199151,15 +199151,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103222 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000103222" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7986 + - id: "HMR_7986" - name: "" - metabolites: !!omap - m00402c: -1 @@ -199171,15 +199171,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103222 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000103222" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7990 + - id: "HMR_7990" - name: "" - metabolites: !!omap - m01070c: -1 @@ -199191,390 +199191,390 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103222 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000103222" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7994 + - id: "HMR_7994" - name: "" - metabolites: !!omap - m03141c: -1 - m03141s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7997 + - id: "HMR_7997" - name: "" - metabolites: !!omap - m00620c: -1 - m00620s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8002 + - id: "HMR_8002" - name: "" - metabolites: !!omap - m00613c: -1 - m00613s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8007 + - id: "HMR_8007" - name: "" - metabolites: !!omap - m00035c: -1 - m00035s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8010 + - id: "HMR_8010" - name: "" - metabolites: !!omap - m01415c: -1 - m01415s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8015 + - id: "HMR_8015" - name: "" - metabolites: !!omap - m03142c: -1 - m03142s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8023 + - id: "HMR_8023" - name: "" - metabolites: !!omap - m00204c: -1 - m00204s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8031 + - id: "HMR_8031" - name: "" - metabolites: !!omap - m01647c: -1 - m01647s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112499 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000112499" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8033 + - id: "HMR_8033" - name: "" - metabolites: !!omap - m00998c: -1 - m00998s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8035 + - id: "HMR_8035" - name: "" - metabolites: !!omap - m01019c: -1 - m01019s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8039 + - id: "HMR_8039" - name: "" - metabolites: !!omap - m01617c: -1 - m01617s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8041 + - id: "HMR_8041" - name: "" - metabolites: !!omap - m03113c: -1 - m03113s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8042 + - id: "HMR_8042" - name: "" - metabolites: !!omap - m01344c: -1 - m01344s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8044 + - id: "HMR_8044" - name: "" - metabolites: !!omap - m01768c: -1 - m01768s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8045 + - id: "HMR_8045" - name: "" - metabolites: !!omap - m02653c: -1 - m02653s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8047 + - id: "HMR_8047" - name: "" - metabolites: !!omap - m01109c: -1 - m01109s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8048 + - id: "HMR_8048" - name: "" - metabolites: !!omap - m02673c: -1 - m02673s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8050 + - id: "HMR_8050" - name: "" - metabolites: !!omap - m01163c: -1 - m01163s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8051 + - id: "HMR_8051" - name: "" - metabolites: !!omap - m03001c: -1 - m03001s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8053 + - id: "HMR_8053" - name: "" - metabolites: !!omap - m01007c: -1 - m01007s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8054 + - id: "HMR_8054" - name: "" - metabolites: !!omap - m02587c: -1 - m02587s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8056 + - id: "HMR_8056" - name: "" - metabolites: !!omap - m02153c: -1 - m02153s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8057 + - id: "HMR_8057" - name: "" - metabolites: !!omap - m01765c: -1 - m01765s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8061 + - id: "HMR_8061" - name: "" - metabolites: !!omap - m02150c: -1 - m02150s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8073 + - id: "HMR_8073" - name: "" - metabolites: !!omap - m01672c: -1 - m01672s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8075 + - id: "HMR_8075" - name: "" - metabolites: !!omap - m00648c: 1 @@ -199583,15 +199583,15 @@ - m02039s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000118596 or ENSG00000141526 or ENSG00000155380 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000118596 or ENSG00000141526 or ENSG00000155380" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8076 + - id: "HMR_8076" - name: "" - metabolites: !!omap - m02046c: -2 @@ -199600,15 +199600,15 @@ - m02519s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000033867 or ENSG00000080493 or ENSG00000113073 or ENSG00000188687 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000033867 or ENSG00000080493 or ENSG00000113073 or ENSG00000188687" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8077 + - id: "HMR_8077" - name: "" - metabolites: !!omap - m02046c: -3 @@ -199617,120 +199617,120 @@ - m02519s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000033867 or ENSG00000080493 or ENSG00000113073 or ENSG00000188687 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000033867 or ENSG00000080493 or ENSG00000113073 or ENSG00000188687" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8079 + - id: "HMR_8079" - name: "" - metabolites: !!omap - m00665c: -1 - m00665s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8080 + - id: "HMR_8080" - name: "" - metabolites: !!omap - m00730c: -1 - m00730s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8081 + - id: "HMR_8081" - name: "" - metabolites: !!omap - m02354c: -1 - m02354s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112394 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000112394" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8090 + - id: "HMR_8090" - name: "" - metabolites: !!omap - m02325c: -1 - m02325s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8095 + - id: "HMR_8095" - name: "" - metabolites: !!omap - m02620c: -1 - m02620s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8100 + - id: "HMR_8100" - name: "" - metabolites: !!omap - m02182c: -1 - m02182s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8101 + - id: "HMR_8101" - name: "" - metabolites: !!omap - m01021c: -1 - m01021s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8103 + - id: "HMR_8103" - name: "" - metabolites: !!omap - m01033c: -1 @@ -199742,480 +199742,480 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8104 + - id: "HMR_8104" - name: "" - metabolites: !!omap - m01069c: -1 - m01069s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8154 + - id: "HMR_8154" - name: "" - metabolites: !!omap - m01919c: -1 - m01919s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8158 + - id: "HMR_8158" - name: "" - metabolites: !!omap - m02902c: -1 - m02902s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8161 + - id: "HMR_8161" - name: "" - metabolites: !!omap - m02903c: -1 - m02903s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8164 + - id: "HMR_8164" - name: "" - metabolites: !!omap - m01711c: -1 - m01711s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8214 + - id: "HMR_8214" - name: "" - metabolites: !!omap - m01695c: -1 - m01695s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8223 + - id: "HMR_8223" - name: "" - metabolites: !!omap - m01861c: -1 - m01861s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8225 + - id: "HMR_8225" - name: "" - metabolites: !!omap - m01261c: -1 - m01261g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169359 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000169359" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8229 + - id: "HMR_8229" - name: "" - metabolites: !!omap - m01244c: -1 - m01244s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8231 + - id: "HMR_8231" - name: "" - metabolites: !!omap - m01245c: -1 - m01245s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8240 + - id: "HMR_8240" - name: "" - metabolites: !!omap - m02928c: -1 - m02928s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8247 + - id: "HMR_8247" - name: "" - metabolites: !!omap - m02931c: -1 - m02931s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8253 + - id: "HMR_8253" - name: "" - metabolites: !!omap - m01917c: -1 - m01917s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8266 + - id: "HMR_8266" - name: "" - metabolites: !!omap - m01850c: -1 - m01850s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8270 + - id: "HMR_8270" - name: "" - metabolites: !!omap - m01859c: -1 - m01859s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8273 + - id: "HMR_8273" - name: "" - metabolites: !!omap - m01999c: -1 - m01999s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8283 + - id: "HMR_8283" - name: "" - metabolites: !!omap - m01914c: -1 - m01914s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8290 + - id: "HMR_8290" - name: "" - metabolites: !!omap - m03096c: -1 - m03096s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8297 + - id: "HMR_8297" - name: "" - metabolites: !!omap - m03098c: -1 - m03098s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8300 + - id: "HMR_8300" - name: "" - metabolites: !!omap - m01915c: -1 - m01915s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8304 + - id: "HMR_8304" - name: "" - metabolites: !!omap - m01916c: -1 - m01916s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8311 + - id: "HMR_8311" - name: "" - metabolites: !!omap - m01852c: -1 - m01852s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8313 + - id: "HMR_8313" - name: "" - metabolites: !!omap - m01851c: -1 - m01851s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8315 + - id: "HMR_8315" - name: "" - metabolites: !!omap - m01853c: -1 - m01853s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8321 + - id: "HMR_8321" - name: "" - metabolites: !!omap - m02198c: -1 - m02198s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8324 + - id: "HMR_8324" - name: "" - metabolites: !!omap - m02331c: -1 - m02331s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8329 + - id: "HMR_8329" - name: "" - metabolites: !!omap - m00744c: -1 - m00744s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8336 + - id: "HMR_8336" - name: "" - metabolites: !!omap - m02164c: -1 - m02164s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8339 + - id: "HMR_8339" - name: "" - metabolites: !!omap - m03138c: -1 - m03138s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8340 + - id: "HMR_8340" - name: "" - metabolites: !!omap - m02337c: -1 - m02337s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8343 + - id: "HMR_8343" - name: "" - metabolites: !!omap - m02338c: -1 - m02338s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8354 + - id: "HMR_8354" - name: "" - metabolites: !!omap - m00970c: 1 @@ -200224,15 +200224,15 @@ - m02039s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123643 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000123643" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8364 + - id: "HMR_8364" - name: "" - metabolites: !!omap - m01256c: 1 @@ -200241,60 +200241,60 @@ - m02039s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000118596 or ENSG00000141526 or ENSG00000155380 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000118596 or ENSG00000141526 or ENSG00000155380" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8374 + - id: "HMR_8374" - name: "" - metabolites: !!omap - m01438c: -1 - m01438s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8408 + - id: "HMR_8408" - name: "" - metabolites: !!omap - m02041c: -1 - m02041s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8420 + - id: "HMR_8420" - name: "" - metabolites: !!omap - m00577c: -1 - m00577s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8429 + - id: "HMR_8429" - name: "" - metabolites: !!omap - m01619c: 1 @@ -200303,15 +200303,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130821 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000130821" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8515 + - id: "HMR_8515" - name: "" - metabolites: !!omap - m02403c: 1 @@ -200320,45 +200320,45 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000256870 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000256870" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8520 + - id: "HMR_8520" - name: "" - metabolites: !!omap - m00516c: -1 - m00516s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8536 + - id: "HMR_8536" - name: "" - metabolites: !!omap - m03100c: -1 - m03100s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8551 + - id: "HMR_8551" - name: "" - metabolites: !!omap - m02046c: -1 @@ -200367,165 +200367,165 @@ - m02366s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111700 or ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000111700 or ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8567 + - id: "HMR_8567" - name: "" - metabolites: !!omap - m02445c: -1 - m02445s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8586 + - id: "HMR_8586" - name: "" - metabolites: !!omap - m02450c: -1 - m02450s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000059804 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000059804" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8593 + - id: "HMR_8593" - name: "" - metabolites: !!omap - m01338c: -1 - m01338s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8595 + - id: "HMR_8595" - name: "" - metabolites: !!omap - m02386c: -1 - m02386s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8597 + - id: "HMR_8597" - name: "" - metabolites: !!omap - m00001c: -1 - m00001s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8599 + - id: "HMR_8599" - name: "" - metabolites: !!omap - m02712c: -1 - m02712s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8600 + - id: "HMR_8600" - name: "" - metabolites: !!omap - m00002c: -1 - m00002s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8602 + - id: "HMR_8602" - name: "" - metabolites: !!omap - m01326c: -1 - m01326s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8612 + - id: "HMR_8612" - name: "" - metabolites: !!omap - m01361c: 1 - m01361s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8618 + - id: "HMR_8618" - name: "" - metabolites: !!omap - m01368c: -1 - m01368s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8629 + - id: "HMR_8629" - name: "" - metabolites: !!omap - m01365c: 1 @@ -200534,15 +200534,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000268104 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000268104" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8631 + - id: "HMR_8631" - name: "" - metabolites: !!omap - m01397c: 1 @@ -200551,15 +200551,15 @@ - m02046s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8632 + - id: "HMR_8632" - name: "" - metabolites: !!omap - m01398c: 1 @@ -200568,15 +200568,15 @@ - m02046s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111700 or ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000111700 or ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8633 + - id: "HMR_8633" - name: "" - metabolites: !!omap - m01285c: 1 @@ -200588,15 +200588,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103222 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000103222" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8635 + - id: "HMR_8635" - name: "" - metabolites: !!omap - m01396c: 1 @@ -200605,45 +200605,45 @@ - m02046s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8636 + - id: "HMR_8636" - name: "" - metabolites: !!omap - m01632c: -1 - m01632s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174669 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000174669" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8656 + - id: "HMR_8656" - name: "" - metabolites: !!omap - m01418c: -1 - m01418s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8658 + - id: "HMR_8658" - name: "" - metabolites: !!omap - m01285c: 1 @@ -200655,15 +200655,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073734 or ENSG00000108846 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000073734 or ENSG00000108846" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8659 + - id: "HMR_8659" - name: "" - metabolites: !!omap - m01445c: 1 @@ -200672,15 +200672,15 @@ - m02046s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 or ENSG00000111700 or ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000084453 or ENSG00000111700 or ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8660 + - id: "HMR_8660" - name: "" - metabolites: !!omap - m01445c: 1 @@ -200689,15 +200689,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100652 or ENSG00000125255 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000100652 or ENSG00000125255" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8670 + - id: "HMR_8670" - name: "" - metabolites: !!omap - m01442c: 2 @@ -200706,15 +200706,15 @@ - m01833s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000225697 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000225697" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8671 + - id: "HMR_8671" - name: "" - metabolites: !!omap - m01442c: 1 @@ -200723,30 +200723,30 @@ - m02174s: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000091137 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000091137" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8676 + - id: "HMR_8676" - name: "" - metabolites: !!omap - m02348c: -1 - m02348s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197208 or ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197208 or ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8677 + - id: "HMR_8677" - name: "" - metabolites: !!omap - m02348c: 1 @@ -200755,60 +200755,60 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000004809 or ENSG00000163393 or ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000004809 or ENSG00000163393 or ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8678 + - id: "HMR_8678" - name: "" - metabolites: !!omap - m01615c: -1 - m01615s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8679 + - id: "HMR_8679" - name: "" - metabolites: !!omap - m01614c: -1 - m01614s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8686 + - id: "HMR_8686" - name: "" - metabolites: !!omap - m00816c: -1 - m00816s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8687 + - id: "HMR_8687" - name: "" - metabolites: !!omap - m01629c: 1 @@ -200817,105 +200817,105 @@ - m02896s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000103064 and ENSG00000138079 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000021488 and ENSG00000103064 and ENSG00000138079" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8696 + - id: "HMR_8696" - name: "" - metabolites: !!omap - m01385c: -1 - m01385s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8714 + - id: "HMR_8714" - name: "" - metabolites: !!omap - m02836c: -1 - m02836s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8718 + - id: "HMR_8718" - name: "" - metabolites: !!omap - m00353c: -1 - m00353s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8720 + - id: "HMR_8720" - name: "" - metabolites: !!omap - m10005c: -1 - m10005s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8721 + - id: "HMR_8721" - name: "" - metabolites: !!omap - m02833c: -1 - m02833s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8723 + - id: "HMR_8723" - name: "" - metabolites: !!omap - m01737c: -1 - m01737s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8730 + - id: "HMR_8730" - name: "" - metabolites: !!omap - m01285c: 1 @@ -200927,15 +200927,15 @@ - m02842s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101276 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000101276" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 2 - !!omap - - id: HMR_8732 + - id: "HMR_8732" - name: "" - metabolites: !!omap - m02519c: 3 @@ -200944,15 +200944,15 @@ - m02885s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000081800 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000081800" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8733 + - id: "HMR_8733" - name: "" - metabolites: !!omap - m01744c: -1 @@ -200961,15 +200961,15 @@ - m01975s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130876 and ENSG00000168003 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000130876 and ENSG00000168003" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8734 + - id: "HMR_8734" - name: "" - metabolites: !!omap - m01744c: -1 @@ -200978,15 +200978,15 @@ - m01986s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130876 and ENSG00000168003 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000130876 and ENSG00000168003" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8735 + - id: "HMR_8735" - name: "" - metabolites: !!omap - m02039c: -1 @@ -200997,15 +200997,15 @@ - m02896s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000017483 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000017483" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8736 + - id: "HMR_8736" - name: "" - metabolites: !!omap - m02661c: -1 @@ -201014,75 +201014,75 @@ - m02946s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000225697 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000225697" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8760 + - id: "HMR_8760" - name: "" - metabolites: !!omap - m01745c: 1 - m01745s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8797 + - id: "HMR_8797" - name: "" - metabolites: !!omap - m02722c: -1 - m02722s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8798 + - id: "HMR_8798" - name: "" - metabolites: !!omap - m02723c: -1 - m02723s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8846 + - id: "HMR_8846" - name: "" - metabolites: !!omap - m01655c: -1 - m01655s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000059804 or ENSG00000117394 or ENSG00000181856 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000059804 or ENSG00000117394 or ENSG00000181856" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8847 + - id: "HMR_8847" - name: "" - metabolites: !!omap - m01659c: 1 @@ -201091,30 +201091,30 @@ - m02046s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 or ENSG00000111700 or ENSG00000134538 or ENSG00000137491 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000084453 or ENSG00000111700 or ENSG00000134538 or ENSG00000137491" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8849 + - id: "HMR_8849" - name: "" - metabolites: !!omap - m00734c: -1 - m00734s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8850 + - id: "HMR_8850" - name: "" - metabolites: !!omap - m01285c: 1 @@ -201126,30 +201126,30 @@ - m02967s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103222 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000103222" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8852 + - id: "HMR_8852" - name: "" - metabolites: !!omap - m02969c: -1 - m02969s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8853 + - id: "HMR_8853" - name: "" - metabolites: !!omap - m02519c: 3 @@ -201158,30 +201158,30 @@ - m02991s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000081800 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000081800" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8854 + - id: "HMR_8854" - name: "" - metabolites: !!omap - m02994c: -1 - m02994s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8861 + - id: "HMR_8861" - name: "" - metabolites: !!omap - m02040c: -1 @@ -201190,120 +201190,120 @@ - m03121s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000132874 or ENSG00000141469 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000132874 or ENSG00000141469" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8863 + - id: "HMR_8863" - name: "" - metabolites: !!omap - m00325c: -1 - m00325s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8864 + - id: "HMR_8864" - name: "" - metabolites: !!omap - m00371c: -1 - m00371s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8865 + - id: "HMR_8865" - name: "" - metabolites: !!omap - m00403c: -1 - m00403s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8866 + - id: "HMR_8866" - name: "" - metabolites: !!omap - m00432c: -1 - m00432s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8867 + - id: "HMR_8867" - name: "" - metabolites: !!omap - m01758c: -1 - m01758s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000059804 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000059804" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8869 + - id: "HMR_8869" - name: "" - metabolites: !!omap - m01298c: -1 - m01298s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8870 + - id: "HMR_8870" - name: "" - metabolites: !!omap - m01787c: -1 - m01787s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8872 + - id: "HMR_8872" - name: "" - metabolites: !!omap - m01840c: 1 @@ -201312,30 +201312,30 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117834 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000117834" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8873 + - id: "HMR_8873" - name: "" - metabolites: !!omap - m02199c: -1 - m02199s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8876 + - id: "HMR_8876" - name: "" - metabolites: !!omap - m01910c: 1 @@ -201344,15 +201344,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117834 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000117834" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8877 + - id: "HMR_8877" - name: "" - metabolites: !!omap - m01910c: 1 @@ -201361,30 +201361,30 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100170 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000100170" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8878 + - id: "HMR_8878" - name: "" - metabolites: !!omap - m01959c: -1 - m01959s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8879 + - id: "HMR_8879" - name: "" - metabolites: !!omap - m01988c: 1 @@ -201393,45 +201393,45 @@ - m02046s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 or ENSG00000111700 or ENSG00000134538 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000084453 or ENSG00000111700 or ENSG00000134538" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8881 + - id: "HMR_8881" - name: "" - metabolites: !!omap - m01944c: -1 - m01944s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8883 + - id: "HMR_8883" - name: "" - metabolites: !!omap - m01945c: -1 - m01945s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8884 + - id: "HMR_8884" - name: "" - metabolites: !!omap - m01965c: 1 @@ -201440,15 +201440,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100170 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000100170" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8889 + - id: "HMR_8889" - name: "" - metabolites: !!omap - m01393c: 1 @@ -201457,15 +201457,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111181 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000111181" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8892 + - id: "HMR_8892" - name: "" - metabolites: !!omap - m01285c: 1 @@ -201477,135 +201477,135 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000105675 and ENSG00000186009) or (ENSG00000075673 and ENSG00000186009) - - rxnFrom: HMRdatabase - - eccodes: 3.6.3.10 - - references: + - gene_reaction_rule: "(ENSG00000105675 and ENSG00000186009) or (ENSG00000075673 and ENSG00000186009)" + - rxnFrom: "HMRdatabase" + - eccodes: "3.6.3.10" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8893 + - id: "HMR_8893" - name: "" - metabolites: !!omap - m01982c: -1 - m01982s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8896 + - id: "HMR_8896" - name: "" - metabolites: !!omap - m02019c: -1 - m02019s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8898 + - id: "HMR_8898" - name: "" - metabolites: !!omap - m02018c: -1 - m02018s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8899 + - id: "HMR_8899" - name: "" - metabolites: !!omap - m02024c: -1 - m02024s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8901 + - id: "HMR_8901" - name: "" - metabolites: !!omap - m02023c: -1 - m02023s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8903 + - id: "HMR_8903" - name: "" - metabolites: !!omap - m02028c: -1 - m02028s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8905 + - id: "HMR_8905" - name: "" - metabolites: !!omap - m00986c: -1 - m00986s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8907 + - id: "HMR_8907" - name: "" - metabolites: !!omap - m01003c: -1 - m01003s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8911 + - id: "HMR_8911" - name: "" - metabolites: !!omap - m02171c: 1 @@ -201614,15 +201614,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000198743 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000198743" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8912 + - id: "HMR_8912" - name: "" - metabolites: !!omap - m02171c: 1 @@ -201631,30 +201631,30 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000158865 or ENSG00000198743 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000158865 or ENSG00000198743" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8913 + - id: "HMR_8913" - name: "" - metabolites: !!omap - m02332c: 1 - m02332g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8917 + - id: "HMR_8917" - name: "" - metabolites: !!omap - m02426c: 1 @@ -201663,15 +201663,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 or ENSG00000268104 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375 or ENSG00000268104" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8922 + - id: "HMR_8922" - name: "" - metabolites: !!omap - m01285c: 2 @@ -201683,15 +201683,15 @@ - m02751c: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8923 + - id: "HMR_8923" - name: "" - metabolites: !!omap - m01285c: 1 @@ -201703,15 +201703,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8924 + - id: "HMR_8924" - name: "" - metabolites: !!omap - m02174c: 1 @@ -201720,15 +201720,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105641 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000105641" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8925 + - id: "HMR_8925" - name: "" - metabolites: !!omap - m02519c: 1 @@ -201737,30 +201737,30 @@ - m02578s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066230 or ENSG00000090020 or ENSG00000115616 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000066230 or ENSG00000090020 or ENSG00000115616" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8927 + - id: "HMR_8927" - name: "" - metabolites: !!omap - m00032c: -1 - m00032s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8929 + - id: "HMR_8929" - name: "" - metabolites: !!omap - m01742c: 1 @@ -201769,15 +201769,15 @@ - m02039s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123643 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000123643" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8930 + - id: "HMR_8930" - name: "" - metabolites: !!omap - m01285c: 1 @@ -201791,30 +201791,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138074 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000138074" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8931 + - id: "HMR_8931" - name: "" - metabolites: !!omap - m02769c: -1 - m02769s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8932 + - id: "HMR_8932" - name: "" - metabolites: !!omap - m02046c: -1 @@ -201823,15 +201823,15 @@ - m02783s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174640 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000174640" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8933 + - id: "HMR_8933" - name: "" - metabolites: !!omap - m02046c: -1 @@ -201840,15 +201840,15 @@ - m02785s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174640 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000174640" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8934 + - id: "HMR_8934" - name: "" - metabolites: !!omap - m01285c: 1 @@ -201860,15 +201860,15 @@ - m02785s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125257 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000125257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8935 + - id: "HMR_8935" - name: "" - metabolites: !!omap - m01285c: 1 @@ -201880,15 +201880,15 @@ - m02786s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125257 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000125257" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8936 + - id: "HMR_8936" - name: "" - metabolites: !!omap - m02046c: -1 @@ -201897,15 +201897,15 @@ - m02794s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174640 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000174640" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8937 + - id: "HMR_8937" - name: "" - metabolites: !!omap - m02046c: -1 @@ -201914,15 +201914,15 @@ - m02795s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8938 + - id: "HMR_8938" - name: "" - metabolites: !!omap - m02519c: 2 @@ -201931,15 +201931,15 @@ - m02770s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011083 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000011083" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8939 + - id: "HMR_8939" - name: "" - metabolites: !!omap - m02519c: 1 @@ -201948,15 +201948,15 @@ - m02674s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000130304 or ENSG00000143554 or ENSG00000167114 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.- - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000130304 or ENSG00000143554 or ENSG00000167114" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.-" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8940 + - id: "HMR_8940" - name: "" - metabolites: !!omap - m02519c: 1 @@ -201965,15 +201965,15 @@ - m02646s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000130304 or ENSG00000143554 or ENSG00000167114 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.- - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000130304 or ENSG00000143554 or ENSG00000167114" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.-" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8941 + - id: "HMR_8941" - name: "" - metabolites: !!omap - m02519c: 1 @@ -201982,15 +201982,15 @@ - m02938s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000130304 or ENSG00000143554 or ENSG00000167114 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.- - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000130304 or ENSG00000143554 or ENSG00000167114" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.-" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8942 + - id: "HMR_8942" - name: "" - metabolites: !!omap - m01771c: 1 @@ -201999,15 +201999,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000130304 or ENSG00000143554 or ENSG00000167114 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.- - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000130304 or ENSG00000143554 or ENSG00000167114" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.-" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8943 + - id: "HMR_8943" - name: "" - metabolites: !!omap - m01362c: 1 @@ -202016,15 +202016,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000130304 or ENSG00000143554 or ENSG00000167114 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.- - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000130304 or ENSG00000143554 or ENSG00000167114" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.-" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8944 + - id: "HMR_8944" - name: "" - metabolites: !!omap - m01291c: 1 @@ -202033,15 +202033,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000130304 or ENSG00000143554 or ENSG00000167114 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.- - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000130304 or ENSG00000143554 or ENSG00000167114" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.-" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8945 + - id: "HMR_8945" - name: "" - metabolites: !!omap - m01689c: 1 @@ -202050,15 +202050,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000130304 or ENSG00000143554 or ENSG00000167114 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.- - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000130304 or ENSG00000143554 or ENSG00000167114" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.-" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8946 + - id: "HMR_8946" - name: "" - metabolites: !!omap - m02385c: 1 @@ -202067,15 +202067,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000130304 or ENSG00000143554 or ENSG00000167114 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.- - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000130304 or ENSG00000143554 or ENSG00000167114" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.-" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8947 + - id: "HMR_8947" - name: "" - metabolites: !!omap - m02519c: 1 @@ -202084,315 +202084,315 @@ - m02564s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113396 or ENSG00000130304 or ENSG00000143554 or ENSG00000167114 - - rxnFrom: HMRdatabase - - eccodes: 6.2.1.- - - references: + - gene_reaction_rule: "ENSG00000113396 or ENSG00000130304 or ENSG00000143554 or ENSG00000167114" + - rxnFrom: "HMRdatabase" + - eccodes: "6.2.1.-" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9173 + - id: "HMR_9173" - name: "" - metabolites: !!omap - m03154c: -1 - m03154s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9175 + - id: "HMR_9175" - name: "" - metabolites: !!omap - m02191c: -1 - m02191s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9176 + - id: "HMR_9176" - name: "" - metabolites: !!omap - m01788c: -1 - m01788s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9178 + - id: "HMR_9178" - name: "" - metabolites: !!omap - m01800c: -1 - m01800s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9180 + - id: "HMR_9180" - name: "" - metabolites: !!omap - m01740c: -1 - m01740s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9182 + - id: "HMR_9182" - name: "" - metabolites: !!omap - m01640c: -1 - m01640s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9183 + - id: "HMR_9183" - name: "" - metabolites: !!omap - m01286c: -1 - m01286s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9184 + - id: "HMR_9184" - name: "" - metabolites: !!omap - m01287c: -1 - m01287s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9185 + - id: "HMR_9185" - name: "" - metabolites: !!omap - m01743c: -1 - m01743s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9187 + - id: "HMR_9187" - name: "" - metabolites: !!omap - m01966c: -1 - m01966s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9188 + - id: "HMR_9188" - name: "" - metabolites: !!omap - m02155c: -1 - m02155s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9189 + - id: "HMR_9189" - name: "" - metabolites: !!omap - m01989c: -1 - m01989s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9190 + - id: "HMR_9190" - name: "" - metabolites: !!omap - m01638c: 1 - m01638s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130876 and ENSG00000168003 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000130876 and ENSG00000168003" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9191 + - id: "HMR_9191" - name: "" - metabolites: !!omap - m01744c: 1 - m01744s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130876 and ENSG00000168003 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000130876 and ENSG00000168003" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9192 + - id: "HMR_9192" - name: "" - metabolites: !!omap - m01290c: -1 - m01290s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112499 or ENSG00000164638 or ENSG00000175003 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000112499 or ENSG00000164638 or ENSG00000175003" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9193 + - id: "HMR_9193" - name: "" - metabolites: !!omap - m01303c: -1 - m01303s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112499 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000112499" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9195 + - id: "HMR_9195" - name: "" - metabolites: !!omap - m01621c: -1 - m01621s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112499 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000112499" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9196 + - id: "HMR_9196" - name: "" - metabolites: !!omap - m01822c: 1 - m01822s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000089472 or ENSG00000138449 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000089472 or ENSG00000138449" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9197 + - id: "HMR_9197" - name: "" - metabolites: !!omap - m01821c: -1 - m01821s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138449 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000138449" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9198 + - id: "HMR_9198" - name: "" - metabolites: !!omap - m03120c: 1 - m03120s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109667 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000109667" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9590 + - id: "HMR_9590" - name: "" - metabolites: !!omap - m02039c: 2 @@ -202401,15 +202401,15 @@ - m02946s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000145217 or ENSG00000155850 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000145217 or ENSG00000155850" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9591 + - id: "HMR_9591" - name: "" - metabolites: !!omap - m01307c: 1 @@ -202420,15 +202420,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000196517 or ENSG00000268104 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000196517 or ENSG00000268104" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9592 + - id: "HMR_9592" - name: "" - metabolites: !!omap - m01365c: 1 @@ -202439,15 +202439,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000196517 or ENSG00000268104 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000196517 or ENSG00000268104" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9593 + - id: "HMR_9593" - name: "" - metabolites: !!omap - m01442c: 1 @@ -202458,15 +202458,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000196517 or ENSG00000268104 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000196517 or ENSG00000268104" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9594 + - id: "HMR_9594" - name: "" - metabolites: !!omap - m01442c: 1 @@ -202477,15 +202477,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000196517 or ENSG00000268104 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000196517 or ENSG00000268104" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9595 + - id: "HMR_9595" - name: "" - metabolites: !!omap - m01442c: 1 @@ -202496,15 +202496,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000196517 or ENSG00000268104 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000196517 or ENSG00000268104" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9596 + - id: "HMR_9596" - name: "" - metabolites: !!omap - m01442c: 1 @@ -202515,15 +202515,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000196517 or ENSG00000268104 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000196517 or ENSG00000268104" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9597 + - id: "HMR_9597" - name: "" - metabolites: !!omap - m01442c: 1 @@ -202534,15 +202534,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000196517 or ENSG00000268104 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000196517 or ENSG00000268104" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9598 + - id: "HMR_9598" - name: "" - metabolites: !!omap - m01442c: 1 @@ -202553,15 +202553,15 @@ - m03135s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000196517 or ENSG00000268104 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000196517 or ENSG00000268104" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9599 + - id: "HMR_9599" - name: "" - metabolites: !!omap - m01442c: 1 @@ -202572,15 +202572,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000196517 or ENSG00000268104 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000196517 or ENSG00000268104" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9600 + - id: "HMR_9600" - name: "" - metabolites: !!omap - m01442c: 1 @@ -202591,15 +202591,15 @@ - m02896s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000196517 or ENSG00000268104 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000196517 or ENSG00000268104" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9601 + - id: "HMR_9601" - name: "" - metabolites: !!omap - m01383c: 1 @@ -202610,15 +202610,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000131389 or ENSG00000196517 or ENSG00000268104 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000131389 or ENSG00000196517 or ENSG00000268104" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9602 + - id: "HMR_9602" - name: "" - metabolites: !!omap - m01383c: 1 @@ -202629,15 +202629,15 @@ - m02519s: -3 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111181 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000111181" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9603 + - id: "HMR_9603" - name: "" - metabolites: !!omap - m01393c: 1 @@ -202648,15 +202648,15 @@ - m02519s: -3 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111181 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000111181" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9604 + - id: "HMR_9604" - name: "" - metabolites: !!omap - m00970c: 1 @@ -202667,15 +202667,15 @@ - m02519s: -3 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111181 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000111181" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9605 + - id: "HMR_9605" - name: "" - metabolites: !!omap - m01307c: 1 @@ -202686,15 +202686,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000017483 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000017483" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9606 + - id: "HMR_9606" - name: "" - metabolites: !!omap - m01986c: 1 @@ -202705,15 +202705,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000017483 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000017483" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9607 + - id: "HMR_9607" - name: "" - metabolites: !!omap - m02519c: 2 @@ -202722,15 +202722,15 @@ - m02680s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138074 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000138074" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9608 + - id: "HMR_9608" - name: "" - metabolites: !!omap - m02394c: 1 @@ -202739,15 +202739,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138074 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000138074" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9609 + - id: "HMR_9609" - name: "" - metabolites: !!omap - m01401c: 1 @@ -202756,15 +202756,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138074 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000138074" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9610 + - id: "HMR_9610" - name: "" - metabolites: !!omap - m02519c: 1 @@ -202773,15 +202773,15 @@ - m02943s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000007216 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000007216" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9611 + - id: "HMR_9611" - name: "" - metabolites: !!omap - m02039c: 1 @@ -202790,15 +202790,15 @@ - m02171s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151229 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000151229" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9612 + - id: "HMR_9612" - name: "" - metabolites: !!omap - m02519c: 1 @@ -202807,15 +202807,15 @@ - m02897s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9613 + - id: "HMR_9613" - name: "" - metabolites: !!omap - m00970c: 1 @@ -202826,15 +202826,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000010379 or ENSG00000132164 or ENSG00000157103 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000010379 or ENSG00000132164 or ENSG00000157103" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9614 + - id: "HMR_9614" - name: "" - metabolites: !!omap - m01736c: 1 @@ -202843,15 +202843,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000142319 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000142319" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9615 + - id: "HMR_9615" - name: "" - metabolites: !!omap - m02519c: 1 @@ -202860,15 +202860,15 @@ - m02617s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103546 or ENSG00000142319 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000103546 or ENSG00000142319" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9616 + - id: "HMR_9616" - name: "" - metabolites: !!omap - m01442c: 1 @@ -202879,15 +202879,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165970 or ENSG00000196517 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165970 or ENSG00000196517" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9617 + - id: "HMR_9617" - name: "" - metabolites: !!omap - m01442c: 1 @@ -202898,30 +202898,30 @@ - m02770s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011083 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000011083" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9618 + - id: "HMR_9618" - name: "" - metabolites: !!omap - m00536c: -1 - m00536s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112499 or ENSG00000175003 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000112499 or ENSG00000175003" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9619 + - id: "HMR_9619" - name: "" - metabolites: !!omap - m01621c: 1 @@ -202930,15 +202930,15 @@ - m02039s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000142494 or ENSG00000180638 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000142494 or ENSG00000180638" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9620 + - id: "HMR_9620" - name: "" - metabolites: !!omap - m01442c: 1 @@ -202949,15 +202949,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115665 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000115665" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9621 + - id: "HMR_9621" - name: "" - metabolites: !!omap - m02519c: 1 @@ -202966,15 +202966,15 @@ - m02952s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000145283 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000145283" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9622 + - id: "HMR_9622" - name: "" - metabolites: !!omap - m02403c: -1 @@ -202983,15 +202983,15 @@ - m03120s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197891 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197891" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9623 + - id: "HMR_9623" - name: "" - metabolites: !!omap - m01306c: -1 @@ -203000,15 +203000,15 @@ - m01659s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137204 or ENSG00000168065 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000137204 or ENSG00000168065" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9624 + - id: "HMR_9624" - name: "" - metabolites: !!omap - m01306c: -1 @@ -203017,570 +203017,570 @@ - m01789s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137204 or ENSG00000168065 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000137204 or ENSG00000168065" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9635 + - id: "HMR_9635" - name: "" - metabolites: !!omap - m02022c: -1 - m02022s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9636 + - id: "HMR_9636" - name: "" - metabolites: !!omap - m02384c: -1 - m02384s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9637 + - id: "HMR_9637" - name: "" - metabolites: !!omap - m01098c: -1 - m01098s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9638 + - id: "HMR_9638" - name: "" - metabolites: !!omap - m00969c: -1 - m00969s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9639 + - id: "HMR_9639" - name: "" - metabolites: !!omap - m01315c: -1 - m01315s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9640 + - id: "HMR_9640" - name: "" - metabolites: !!omap - m02328c: -1 - m02328s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9641 + - id: "HMR_9641" - name: "" - metabolites: !!omap - m02929c: -1 - m02929s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9642 + - id: "HMR_9642" - name: "" - metabolites: !!omap - m01289c: -1 - m01289s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9643 + - id: "HMR_9643" - name: "" - metabolites: !!omap - m01874c: -1 - m01874s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9644 + - id: "HMR_9644" - name: "" - metabolites: !!omap - m01881c: -1 - m01881s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9645 + - id: "HMR_9645" - name: "" - metabolites: !!omap - m01883c: -1 - m01883s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9646 + - id: "HMR_9646" - name: "" - metabolites: !!omap - m01884c: -1 - m01884s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9647 + - id: "HMR_9647" - name: "" - metabolites: !!omap - m03131c: -1 - m03131s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9648 + - id: "HMR_9648" - name: "" - metabolites: !!omap - m02516c: -1 - m02516s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9649 + - id: "HMR_9649" - name: "" - metabolites: !!omap - m01603c: -1 - m01603s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9650 + - id: "HMR_9650" - name: "" - metabolites: !!omap - m01604c: -1 - m01604s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9651 + - id: "HMR_9651" - name: "" - metabolites: !!omap - m01887c: -1 - m01887s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9652 + - id: "HMR_9652" - name: "" - metabolites: !!omap - m02137c: -1 - m02137s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9653 + - id: "HMR_9653" - name: "" - metabolites: !!omap - m01687c: -1 - m01687s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9654 + - id: "HMR_9654" - name: "" - metabolites: !!omap - m01665c: -1 - m01665s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9655 + - id: "HMR_9655" - name: "" - metabolites: !!omap - m01955c: -1 - m01955s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9656 + - id: "HMR_9656" - name: "" - metabolites: !!omap - m01006c: -1 - m01006s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9657 + - id: "HMR_9657" - name: "" - metabolites: !!omap - m00771c: -1 - m00771s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9658 + - id: "HMR_9658" - name: "" - metabolites: !!omap - m02434c: -1 - m02434s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9659 + - id: "HMR_9659" - name: "" - metabolites: !!omap - m02458c: -1 - m02458s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9660 + - id: "HMR_9660" - name: "" - metabolites: !!omap - m01610c: -1 - m01610s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9661 + - id: "HMR_9661" - name: "" - metabolites: !!omap - m01612c: -1 - m01612s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9662 + - id: "HMR_9662" - name: "" - metabolites: !!omap - m01613c: -1 - m01613s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9663 + - id: "HMR_9663" - name: "" - metabolites: !!omap - m02462c: -1 - m02462s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9720 + - id: "HMR_9720" - name: "" - metabolites: !!omap - m01730c: -1 - m01730s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9728 + - id: "HMR_9728" - name: "" - metabolites: !!omap - m03161c: -1 - m03161s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9731 + - id: "HMR_9731" - name: "" - metabolites: !!omap - m02001c: -1 - m02001s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9737 + - id: "HMR_9737" - name: "" - metabolites: !!omap - m01370c: -1 - m01370s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8071 + - id: "HMR_8071" - name: "" - metabolites: !!omap - m00179c: -1 - m00179s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4312 + - id: "HMR_4312" - name: "" - metabolites: !!omap - m01682c: -1 - m01682s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095139 or ENSG00000105669 or ENSG00000122218 or ENSG00000129083 or ENSG00000158623 or ENSG00000181789 or ENSG00000184432 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000095139 or ENSG00000105669 or ENSG00000122218 or ENSG00000129083 or ENSG00000158623 or ENSG00000181789 or ENSG00000184432" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8428 + - id: "HMR_8428" - name: "" - metabolites: !!omap - m01619c: -1 - m01619m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8430 + - id: "HMR_8430" - name: "" - metabolites: !!omap - m01620c: 1 - m01620m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8022 + - id: "HMR_8022" - name: "" - metabolites: !!omap - m01306c: -1 @@ -203589,90 +203589,90 @@ - m02322m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000183032 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000183032" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8070 + - id: "HMR_8070" - name: "" - metabolites: !!omap - m00179c: 1 - m00179m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9015 + - id: "HMR_9015" - name: "" - metabolites: !!omap - m02877c: -1 - m02877m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000144741 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14674884 + - gene_reaction_rule: "ENSG00000144741" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14674884" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9019 + - id: "HMR_9019" - name: "" - metabolites: !!omap - m01424c: -1 - m01424m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9020 + - id: "HMR_9020" - name: "" - metabolites: !!omap - m01802c: -1 - m01802m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000164933 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:32166001 + - gene_reaction_rule: "ENSG00000164933" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:32166001" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0157 + - id: "HMR_0157" - name: "" - metabolites: !!omap - m01412c: -1 - m01412m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0158 + - id: "HMR_0158" - name: "" - metabolites: !!omap - m01412c: 1 @@ -203681,465 +203681,465 @@ - m02348m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000026652 or ENSG00000100344 or ENSG00000102125 or ENSG00000111684 or ENSG00000123684 or ENSG00000125505 or ENSG00000141446 or ENSG00000143797 or ENSG00000146648 or ENSG00000151093 or ENSG00000160216 or ENSG00000169359 or ENSG00000170522 or ENSG00000171320 or ENSG00000176454 or ENSG00000186792 or ENSG00000197977 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172;PMID:6361812;PMID:8132483 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000026652 or ENSG00000100344 or ENSG00000102125 or ENSG00000111684 or ENSG00000123684 or ENSG00000125505 or ENSG00000141446 or ENSG00000143797 or ENSG00000146648 or ENSG00000151093 or ENSG00000160216 or ENSG00000169359 or ENSG00000170522 or ENSG00000171320 or ENSG00000176454 or ENSG00000186792 or ENSG00000197977" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172;PMID:6361812;PMID:8132483" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0166 + - id: "HMR_0166" - name: "" - metabolites: !!omap - m02694c: -1 - m02694m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0169 + - id: "HMR_0169" - name: "" - metabolites: !!omap - m02122c: -1 - m02122m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000155368 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000155368" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0172 + - id: "HMR_0172" - name: "" - metabolites: !!omap - m02107c: -1 - m02107m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0175 + - id: "HMR_0175" - name: "" - metabolites: !!omap - m02644c: -1 - m02644m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0178 + - id: "HMR_0178" - name: "" - metabolites: !!omap - m02616c: -1 - m02616m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0182 + - id: "HMR_0182" - name: "" - metabolites: !!omap - m01650c: -1 - m01650m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0185 + - id: "HMR_0185" - name: "" - metabolites: !!omap - m03116c: -1 - m03116m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0446 + - id: "HMR_0446" - name: "" - metabolites: !!omap - m01983c: -1 - m01983m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:9124577 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:9124577" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0578 + - id: "HMR_0578" - name: "" - metabolites: !!omap - m10007c: -1 - m10007m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:1550861 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:1550861" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0587 + - id: "HMR_0587" - name: "" - metabolites: !!omap - m01589c: -1 - m01589m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0962 + - id: "HMR_0962" - name: "" - metabolites: !!omap - m01042c: -1 - m01042m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1145 + - id: "HMR_1145" - name: "" - metabolites: !!omap - m01124c: -1 - m01124m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1173 + - id: "HMR_1173" - name: "" - metabolites: !!omap - m00835c: -1 - m00835m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1187 + - id: "HMR_1187" - name: "" - metabolites: !!omap - m01118c: -1 - m01118m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1215 + - id: "HMR_1215" - name: "" - metabolites: !!omap - m00837c: -1 - m00837m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1243 + - id: "HMR_1243" - name: "" - metabolites: !!omap - m00583c: -1 - m00583m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1267 + - id: "HMR_1267" - name: "" - metabolites: !!omap - m00258c: -1 - m00258m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1284 + - id: "HMR_1284" - name: "" - metabolites: !!omap - m00252c: -1 - m00252m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1572 + - id: "HMR_1572" - name: "" - metabolites: !!omap - m02131c: -1 - m02131m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1602 + - id: "HMR_1602" - name: "" - metabolites: !!omap - m01078c: -1 - m01078m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12543708 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12543708" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1915 + - id: "HMR_1915" - name: "" - metabolites: !!omap - m01450c: -1 - m01450m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1925 + - id: "HMR_1925" - name: "" - metabolites: !!omap - m01511c: -1 - m01511m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1930 + - id: "HMR_1930" - name: "" - metabolites: !!omap - m02182c: 1 - m02182m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1936 + - id: "HMR_1936" - name: "" - metabolites: !!omap - m02763c: -1 - m02763m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1994 + - id: "HMR_1994" - name: "" - metabolites: !!omap - m00295c: -1 - m00295m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:15583024 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:15583024" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1997 + - id: "HMR_1997" - name: "" - metabolites: !!omap - m01615c: -1 - m01615m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_2008 + - id: "HMR_2008" - name: "" - metabolites: !!omap - m00294c: -1 - m00294m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:15583024 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:15583024" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_2012 + - id: "HMR_2012" - name: "" - metabolites: !!omap - m01309c: 1 - m01309m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_2065 + - id: "HMR_2065" - name: "" - metabolites: !!omap - m01791c: -1 - m01791m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_2080 + - id: "HMR_2080" - name: "" - metabolites: !!omap - m01793c: -1 - m01793m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_2094 + - id: "HMR_2094" - name: "" - metabolites: !!omap - m00412c: -1 @@ -204148,30 +204148,30 @@ - m02039m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_2105 + - id: "HMR_2105" - name: "" - metabolites: !!omap - m00410c: -1 - m00410m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_2116 + - id: "HMR_2116" - name: "" - metabolites: !!omap - m02039i: -1 @@ -204180,30 +204180,30 @@ - m03142m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000175592 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000175592" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_2127 + - id: "HMR_2127" - name: "" - metabolites: !!omap - m01417c: -1 - m01417m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_2141 + - id: "HMR_2141" - name: "" - metabolites: !!omap - m01416m: 1 @@ -204215,90 +204215,90 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000019186 - - rxnFrom: HMRdatabase - - eccodes: 1.14.13.126 - - references: + - gene_reaction_rule: "ENSG00000019186" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.13.126" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_2590 + - id: "HMR_2590" - name: "" - metabolites: !!omap - m02348c: -1 - m02348m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 or ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10460205;PMID:1296165;PMID:16288981;PMID:17466261;PMID:2199597;PMID:6219439;PMID:6361812;PMID:8353366 + - gene_reaction_rule: "ENSG00000178537 or ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10460205;PMID:1296165;PMID:16288981;PMID:17466261;PMID:2199597;PMID:6219439;PMID:6361812;PMID:8353366" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3746 + - id: "HMR_3746" - name: "" - metabolites: !!omap - m00824c: -1 - m00824m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3762 + - id: "HMR_3762" - name: "" - metabolites: !!omap - m00661c: -1 - m00661m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3789 + - id: "HMR_3789" - name: "" - metabolites: !!omap - m02479c: -1 - m02479m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3818 + - id: "HMR_3818" - name: "" - metabolites: !!omap - m02374c: -1 - m02374m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3825 + - id: "HMR_3825" - name: "" - metabolites: !!omap - m01370c: 1 @@ -204309,15 +204309,15 @@ - m02039m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000004864 or ENSG00000115840 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172;PMID:18406340 + - gene_reaction_rule: "ENSG00000004864 or ENSG00000115840" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172;PMID:18406340" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3863 + - id: "HMR_3863" - name: "" - metabolites: !!omap - m00918c: -1 @@ -204326,15 +204326,15 @@ - m01370m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000004864 or ENSG00000115840 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000004864 or ENSG00000115840" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3864 + - id: "HMR_3864" - name: "" - metabolites: !!omap - m00918c: 1 @@ -204345,45 +204345,45 @@ - m02039m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000004864 or ENSG00000115840 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000004864 or ENSG00000115840" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3921 + - id: "HMR_3921" - name: "" - metabolites: !!omap - m02349c: -1 - m02349m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3946 + - id: "HMR_3946" - name: "" - metabolites: !!omap - m02041c: -1 - m02041m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3949 + - id: "HMR_3949" - name: "" - metabolites: !!omap - m02439c: 1 @@ -204392,60 +204392,60 @@ - m02633m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3950 + - id: "HMR_3950" - name: "" - metabolites: !!omap - m01045c: -1 - m01045m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3952 + - id: "HMR_3952" - name: "" - metabolites: !!omap - m02980c: -1 - m02980m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3954 + - id: "HMR_3954" - name: "" - metabolites: !!omap - m01332c: 1 - m01332m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3971 + - id: "HMR_3971" - name: "" - metabolites: !!omap - m01862c: -1 @@ -204454,15 +204454,15 @@ - m02751m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000183048 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000183048" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4184 + - id: "HMR_4184" - name: "" - metabolites: !!omap - m01824m: -2 @@ -204473,15 +204473,15 @@ - m02949c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000139531 - - rxnFrom: HMRdatabase - - eccodes: 1.8.2.1 - - references: PMID:17459792 + - gene_reaction_rule: "ENSG00000139531" + - rxnFrom: "HMRdatabase" + - eccodes: "1.8.2.1" + - references: "PMID:17459792" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4205 + - id: "HMR_4205" - name: "" - metabolites: !!omap - m02039i: -1 @@ -204490,15 +204490,15 @@ - m02984m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4237 + - id: "HMR_4237" - name: "" - metabolites: !!omap - m00670c: -1 @@ -204507,45 +204507,45 @@ - m01306m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000183032 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000183032" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4266 + - id: "HMR_4266" - name: "" - metabolites: !!omap - m02581c: -1 - m02581m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4367 + - id: "HMR_4367" - name: "" - metabolites: !!omap - m00913c: -1 - m00913m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:4358819 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:4358819" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4684 + - id: "HMR_4684" - name: "" - metabolites: !!omap - m02039i: -1 @@ -204554,60 +204554,60 @@ - m02719m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4692 + - id: "HMR_4692" - name: "" - metabolites: !!omap - m00970c: -1 - m00970m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4720 + - id: "HMR_4720" - name: "" - metabolites: !!omap - m02679c: -1 - m02679m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4729 + - id: "HMR_4729" - name: "" - metabolites: !!omap - m02623c: -1 - m02623m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4738 + - id: "HMR_4738" - name: "" - metabolites: !!omap - m00631c: -1 @@ -204616,75 +204616,75 @@ - m02322m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4743 + - id: "HMR_4743" - name: "" - metabolites: !!omap - m01074c: -1 - m01074m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4754 + - id: "HMR_4754" - name: "" - metabolites: !!omap - m02804c: -1 - m02804m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115657 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000115657" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4756 + - id: "HMR_4756" - name: "" - metabolites: !!omap - m02803c: -1 - m02803m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115657 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000115657" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4760 + - id: "HMR_4760" - name: "" - metabolites: !!omap - m02049c: -1 - m02049m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115657 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:17785948 + - gene_reaction_rule: "ENSG00000115657" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:17785948" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4843 + - id: "HMR_4843" - name: "" - metabolites: !!omap - m01948c: -1 @@ -204693,30 +204693,30 @@ - m02034m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108602 or ENSG00000132746 or ENSG00000184254 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11078702 + - gene_reaction_rule: "ENSG00000108602 or ENSG00000132746 or ENSG00000184254" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11078702" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4850 + - id: "HMR_4850" - name: "" - metabolites: !!omap - m01755c: 1 - m01755m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12657464;PMID:14519855;PMID:16194150 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12657464;PMID:14519855;PMID:16194150" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4851 + - id: "HMR_4851" - name: "" - metabolites: !!omap - m01306c: -1 @@ -204725,15 +204725,15 @@ - m02943m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000183048 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172;PMID:17173541;PMID:18406340;PMID:10585886;PMID:4424886;PMID:4441366;PMID:5099217;PMID:8329439 + - gene_reaction_rule: "ENSG00000183048" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172;PMID:17173541;PMID:18406340;PMID:10585886;PMID:4424886;PMID:4441366;PMID:5099217;PMID:8329439" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4852 + - id: "HMR_4852" - name: "" - metabolites: !!omap - m01306c: -1 @@ -204742,15 +204742,15 @@ - m02439m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108528 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172;PMID:17173541;PMID:18406340;PMID:10585886;PMID:4424886;PMID:4441366;PMID:5099217;PMID:8329439 + - gene_reaction_rule: "ENSG00000108528" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172;PMID:17173541;PMID:18406340;PMID:10585886;PMID:4424886;PMID:4441366;PMID:5099217;PMID:8329439" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4854 + - id: "HMR_4854" - name: "" - metabolites: !!omap - m01862c: -1 @@ -204759,15 +204759,15 @@ - m02943m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000183048 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172;PMID:17173541;PMID:18406340;PMID:10585886;PMID:4424886;PMID:4441366;PMID:5099217;PMID:8329439 + - gene_reaction_rule: "ENSG00000183048" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172;PMID:17173541;PMID:18406340;PMID:10585886;PMID:4424886;PMID:4441366;PMID:5099217;PMID:8329439" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4855 + - id: "HMR_4855" - name: "" - metabolites: !!omap - m01862c: -1 @@ -204776,15 +204776,15 @@ - m02439m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108528 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172;PMID:17173541;PMID:18406340;PMID:10585886;PMID:4424886;PMID:4441366;PMID:5099217;PMID:8329439 + - gene_reaction_rule: "ENSG00000108528" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172;PMID:17173541;PMID:18406340;PMID:10585886;PMID:4424886;PMID:4441366;PMID:5099217;PMID:8329439" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4862 + - id: "HMR_4862" - name: "" - metabolites: !!omap - m02751c: 1 @@ -204793,15 +204793,15 @@ - m02943m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000183048 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172;PMID:10585886;PMID:4424886;PMID:4441366;PMID:5099217;PMID:8329439 + - gene_reaction_rule: "ENSG00000183048" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172;PMID:10585886;PMID:4424886;PMID:4441366;PMID:5099217;PMID:8329439" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4863 + - id: "HMR_4863" - name: "" - metabolites: !!omap - m02943c: -1 @@ -204810,15 +204810,15 @@ - m02946m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000183048 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172;PMID:10585886;PMID:4424886;PMID:4441366;PMID:5099217;PMID:8329439 + - gene_reaction_rule: "ENSG00000183048" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172;PMID:10585886;PMID:4424886;PMID:4441366;PMID:5099217;PMID:8329439" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4864 + - id: "HMR_4864" - name: "" - metabolites: !!omap - m02943c: -1 @@ -204827,15 +204827,15 @@ - m02949m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000183048 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172;PMID:10585886;PMID:4424886;PMID:4441366;PMID:5099217;PMID:8329439 + - gene_reaction_rule: "ENSG00000183048" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172;PMID:10585886;PMID:4424886;PMID:4441366;PMID:5099217;PMID:8329439" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4865 + - id: "HMR_4865" - name: "" - metabolites: !!omap - m02439c: -1 @@ -204844,15 +204844,15 @@ - m02751m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000183048 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172;PMID:10585886;PMID:4424886;PMID:4441366;PMID:5099217;PMID:8329439 + - gene_reaction_rule: "ENSG00000183048" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172;PMID:10585886;PMID:4424886;PMID:4441366;PMID:5099217;PMID:8329439" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4867 + - id: "HMR_4867" - name: "" - metabolites: !!omap - m02439c: -1 @@ -204861,15 +204861,15 @@ - m02946m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000183048 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172;PMID:10585886;PMID:4424886;PMID:4441366;PMID:5099217;PMID:8329439 + - gene_reaction_rule: "ENSG00000183048" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172;PMID:10585886;PMID:4424886;PMID:4441366;PMID:5099217;PMID:8329439" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4868 + - id: "HMR_4868" - name: "" - metabolites: !!omap - m02439c: -1 @@ -204878,15 +204878,15 @@ - m02949m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000183048 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172;PMID:10585886;PMID:4424886;PMID:4441366;PMID:5099217;PMID:8329439 + - gene_reaction_rule: "ENSG00000183048" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172;PMID:10585886;PMID:4424886;PMID:4441366;PMID:5099217;PMID:8329439" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4870 + - id: "HMR_4870" - name: "" - metabolites: !!omap - m02440c: -1 @@ -204895,15 +204895,15 @@ - m02751m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000183048 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172;PMID:10585886;PMID:4424886;PMID:4441366;PMID:5099217;PMID:8329439 + - gene_reaction_rule: "ENSG00000183048" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172;PMID:10585886;PMID:4424886;PMID:4441366;PMID:5099217;PMID:8329439" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4871 + - id: "HMR_4871" - name: "" - metabolites: !!omap - m02440c: -1 @@ -204912,15 +204912,15 @@ - m02946m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000183048 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172;PMID:10585886;PMID:4424886;PMID:4441366;PMID:5099217;PMID:8329439 + - gene_reaction_rule: "ENSG00000183048" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172;PMID:10585886;PMID:4424886;PMID:4441366;PMID:5099217;PMID:8329439" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4872 + - id: "HMR_4872" - name: "" - metabolites: !!omap - m02440c: -1 @@ -204929,60 +204929,60 @@ - m02949m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000183048 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172;PMID:10585886;PMID:4424886;PMID:4441366;PMID:5099217;PMID:8329439 + - gene_reaction_rule: "ENSG00000183048" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172;PMID:10585886;PMID:4424886;PMID:4441366;PMID:5099217;PMID:8329439" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4874 + - id: "HMR_4874" - name: "" - metabolites: !!omap - m02578c: -1 - m02578m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:3888072 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:3888072" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4888 + - id: "HMR_4888" - name: "" - metabolites: !!omap - m02040c: -1 - m02040m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103375 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:3888072;PMID:4684694 + - gene_reaction_rule: "ENSG00000103375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:3888072;PMID:4684694" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4898 + - id: "HMR_4898" - name: "" - metabolites: !!omap - m02630c: -1 - m02630m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4905 + - id: "HMR_4905" - name: "" - metabolites: !!omap - m01371c: -1 @@ -204991,45 +204991,45 @@ - m02751m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:8132483 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:8132483" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4914 + - id: "HMR_4914" - name: "" - metabolites: !!omap - m01597c: -1 - m01597m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000122912 or ENSG00000181035 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172;PMID:19429682 + - gene_reaction_rule: "ENSG00000122912 or ENSG00000181035" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172;PMID:19429682" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4922 + - id: "HMR_4922" - name: "" - metabolites: !!omap - m01596c: -1 - m01596m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:3888072;PMID:911815 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:3888072;PMID:911815" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4926 + - id: "HMR_4926" - name: "" - metabolites: !!omap - m02039c: -1 @@ -205038,15 +205038,15 @@ - m02819m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060762 or ENSG00000143158 or ENSG00000238205 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169;PMID:18305372 + - gene_reaction_rule: "ENSG00000060762 or ENSG00000143158 or ENSG00000238205" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169;PMID:18305372" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4940 + - id: "HMR_4940" - name: "" - metabolites: !!omap - m02026c: -1 @@ -205055,75 +205055,75 @@ - m02751m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000183048 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:15845418;PMID:16600197;PMID:9639574 + - gene_reaction_rule: "ENSG00000183048" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:15845418;PMID:16600197;PMID:9639574" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4944 + - id: "HMR_4944" - name: "" - metabolites: !!omap - m01833c: -1 - m01833m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000173638 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11300510;PMID:16171773;PMID:18288723;PMID:3768436;PMID:911815 + - gene_reaction_rule: "ENSG00000173638" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11300510;PMID:16171773;PMID:18288723;PMID:3768436;PMID:911815" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4951 + - id: "HMR_4951" - name: "" - metabolites: !!omap - m03121c: -1 - m03121m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103569 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10505683;PMID:10747366;PMID:11546670;PMID:12571750;PMID:12856182;PMID:8514890;PMID:9124577 + - gene_reaction_rule: "ENSG00000103569" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10505683;PMID:10747366;PMID:11546670;PMID:12571750;PMID:12856182;PMID:8514890;PMID:9124577" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4953 + - id: "HMR_4953" - name: "" - metabolites: !!omap - m01383c: -1 - m01383m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10721894;PMID:11787643;PMID:12269802;PMID:12504794;PMID:16955229;PMID:17401668;PMID:18599538;PMID:3132542;PMID:487087;PMID:551321;PMID:6418146;PMID:7731061;PMID:8010975;PMID:8382624;PMID:8654117;PMID:8899554;PMID:911815;PMID:917262 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10721894;PMID:11787643;PMID:12269802;PMID:12504794;PMID:16955229;PMID:17401668;PMID:18599538;PMID:3132542;PMID:487087;PMID:551321;PMID:6418146;PMID:7731061;PMID:8010975;PMID:8382624;PMID:8654117;PMID:8899554;PMID:911815;PMID:917262" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4959 + - id: "HMR_4959" - name: "" - metabolites: !!omap - m02812c: -1 - m02812m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:1526979 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:1526979" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4963 + - id: "HMR_4963" - name: "" - metabolites: !!omap - m01974c: 1 @@ -205132,15 +205132,15 @@ - m02770m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11004451;PMID:8898903 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11004451;PMID:8898903" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4964 + - id: "HMR_4964" - name: "" - metabolites: !!omap - m01587c: 1 @@ -205151,15 +205151,15 @@ - m02439m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100075 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172;PMID:;PMID:18406340;PMID:8132483;PMID:16919238;PMID:17173541 + - gene_reaction_rule: "ENSG00000100075" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172;PMID:;PMID:18406340;PMID:8132483;PMID:16919238;PMID:17173541" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4971 + - id: "HMR_4971" - name: "" - metabolites: !!omap - m01587c: 1 @@ -205168,15 +205168,15 @@ - m02696m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100075 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000100075" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4972 + - id: "HMR_4972" - name: "" - metabolites: !!omap - m01587c: -1 @@ -205185,30 +205185,30 @@ - m02183m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100075 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000100075" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4957 + - id: "HMR_4957" - name: "" - metabolites: !!omap - m01587c: 1 - m01587m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4977 + - id: "HMR_4977" - name: "" - metabolites: !!omap - m01253c: -1 @@ -205217,90 +205217,90 @@ - m02039m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000155380 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169;PMID:18305372 + - gene_reaction_rule: "ENSG00000155380" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169;PMID:18305372" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4979 + - id: "HMR_4979" - name: "" - metabolites: !!omap - m02997c: -1 - m02997m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12838422;PMID:168203;PMID:3728675;PMID:8438778;PMID:12006583;PMID:14747464;PMID:16595656;PMID:17187757;PMID:17279066;PMID:6778226;PMID:7479738;PMID:7419607;PMID:1260500 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12838422;PMID:168203;PMID:3728675;PMID:8438778;PMID:12006583;PMID:14747464;PMID:16595656;PMID:17187757;PMID:17279066;PMID:6778226;PMID:7479738;PMID:7419607;PMID:1260500" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4997 + - id: "HMR_4997" - name: "" - metabolites: !!omap - m01669c: -1 - m01669m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112759 or ENSG00000174669 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12006583;PMID:16595656;PMID:17187757;PMID:3566277 + - gene_reaction_rule: "ENSG00000112759 or ENSG00000174669" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12006583;PMID:16595656;PMID:17187757;PMID:3566277" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4998 + - id: "HMR_4998" - name: "" - metabolites: !!omap - m01686c: 1 - m01686m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5006 + - id: "HMR_5006" - name: "" - metabolites: !!omap - m01830c: -1 - m01830m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14739191;PMID:14977409;PMID:14998787;PMID:16109384;PMID:16171773;PMID:16750224 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14739191;PMID:14977409;PMID:14998787;PMID:16109384;PMID:16171773;PMID:16750224" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5014 + - id: "HMR_5014" - name: "" - metabolites: !!omap - m01705c: 1 - m01705m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:1260500 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:1260500" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5015 + - id: "HMR_5015" - name: "" - metabolites: !!omap - m00157c: 1 @@ -205309,15 +205309,15 @@ - m02039m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5016 + - id: "HMR_5016" - name: "" - metabolites: !!omap - m00157c: -1 @@ -205326,75 +205326,75 @@ - m02039m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000155380 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169;PMID:18305372 + - gene_reaction_rule: "ENSG00000155380" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169;PMID:18305372" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5022 + - id: "HMR_5022" - name: "" - metabolites: !!omap - m02579c: -1 - m02579m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112077 or ENSG00000132677 or ENSG00000140519 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000112077 or ENSG00000132677 or ENSG00000140519" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5031 + - id: "HMR_5031" - name: "" - metabolites: !!omap - m01280c: -1 - m01280m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112759 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12838422;PMID:12006583;PMID:14747464;PMID:16595656;PMID:17187757;PMID:17279066;PMID:7479738 + - gene_reaction_rule: "ENSG00000112759" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12838422;PMID:12006583;PMID:14747464;PMID:16595656;PMID:17187757;PMID:17279066;PMID:7479738" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5033 + - id: "HMR_5033" - name: "" - metabolites: !!omap - m02996c: -1 - m02996m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112759 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12838422;PMID:12006583;PMID:14747464;PMID:16595656;PMID:17187757;PMID:17279066;PMID:7479738 + - gene_reaction_rule: "ENSG00000112759" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12838422;PMID:12006583;PMID:14747464;PMID:16595656;PMID:17187757;PMID:17279066;PMID:7479738" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5036 + - id: "HMR_5036" - name: "" - metabolites: !!omap - m02038c: 1 - m02038m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112759 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12838422;PMID:12006583;PMID:14747464;PMID:16595656;PMID:17187757;PMID:17279066;PMID:7479738 + - gene_reaction_rule: "ENSG00000112759" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12838422;PMID:12006583;PMID:14747464;PMID:16595656;PMID:17187757;PMID:17279066;PMID:7479738" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5043 + - id: "HMR_5043" - name: "" - metabolites: !!omap - m02039i: -1 @@ -205403,45 +205403,45 @@ - m02751m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000075415 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172;PMID:18406340;PMID:2670944;PMID:8132483 + - gene_reaction_rule: "ENSG00000075415" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172;PMID:18406340;PMID:2670944;PMID:8132483" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5046 + - id: "HMR_5046" - name: "" - metabolites: !!omap - m01450l: -1 - m01450m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000131748 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000131748" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5096 + - id: "HMR_5096" - name: "" - metabolites: !!omap - m01369c: -1 - m01369m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11452978 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11452978" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5099 + - id: "HMR_5099" - name: "" - metabolites: !!omap - m02039i: -1 @@ -205450,15 +205450,15 @@ - m03101m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12930836;UNIPROT:O75387;PMID:16288981;PMID:911815;PMID:10049700;PMID:10574970;PMID:11389679;PMID:11557028;PMID:11564694;PMID:12824232;PMID:14574404 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12930836;UNIPROT:O75387;PMID:16288981;PMID:911815;PMID:10049700;PMID:10574970;PMID:11389679;PMID:11557028;PMID:11564694;PMID:12824232;PMID:14574404" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5101 + - id: "HMR_5101" - name: "" - metabolites: !!omap - m01975c: -1 @@ -205467,15 +205467,15 @@ - m02039m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11004451;PMID:2015813 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11004451;PMID:2015813" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5102 + - id: "HMR_5102" - name: "" - metabolites: !!omap - m01975c: 1 @@ -205484,15 +205484,15 @@ - m02039m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5105 + - id: "HMR_5105" - name: "" - metabolites: !!omap - m02039c: -1 @@ -205501,15 +205501,15 @@ - m02658m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000102743 or ENSG00000120329 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172;PMID:8132483 + - gene_reaction_rule: "ENSG00000102743 or ENSG00000120329" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172;PMID:8132483" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5107 + - id: "HMR_5107" - name: "" - metabolites: !!omap - m02039i: -1 @@ -205518,15 +205518,15 @@ - m02184m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5109 + - id: "HMR_5109" - name: "" - metabolites: !!omap - m02039i: -1 @@ -205535,60 +205535,60 @@ - m02360m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5112 + - id: "HMR_5112" - name: "" - metabolites: !!omap - m02471c: -1 - m02471m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:911815;PMID:12930836;UNIPROT:O75387;PMID:16288981 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:911815;PMID:12930836;UNIPROT:O75387;PMID:16288981" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5113 + - id: "HMR_5113" - name: "" - metabolites: !!omap - m01307c: -1 - m01307m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000164466 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:30442778 + - gene_reaction_rule: "ENSG00000164466" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:30442778" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 2 - !!omap - - id: HMR_5114 + - id: "HMR_5114" - name: "" - metabolites: !!omap - m02896c: -1 - m02896m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000164466 or ENSG00000107819 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:30442778 + - gene_reaction_rule: "ENSG00000164466 or ENSG00000107819" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:30442778" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 4 - !!omap - - id: HMR_5115 + - id: "HMR_5115" - name: "" - metabolites: !!omap - m02039i: -1 @@ -205597,15 +205597,15 @@ - m02724m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5116 + - id: "HMR_5116" - name: "" - metabolites: !!omap - m02039i: -1 @@ -205614,30 +205614,30 @@ - m02724m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5117 + - id: "HMR_5117" - name: "" - metabolites: !!omap - m02993c: -1 - m02993m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:911815;PMID:12930836;UNIPROT:O75387;PMID:16288981 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:911815;PMID:12930836;UNIPROT:O75387;PMID:16288981" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5118 + - id: "HMR_5118" - name: "" - metabolites: !!omap - m02039i: -1 @@ -205646,30 +205646,30 @@ - m03135m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5121 + - id: "HMR_5121" - name: "" - metabolites: !!omap - m01628c: -1 - m01628m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:911815;PMID:12930836;UNIPROT:O75387;PMID:16288981 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:911815;PMID:12930836;UNIPROT:O75387;PMID:16288981" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5122 + - id: "HMR_5122" - name: "" - metabolites: !!omap - m01974c: -1 @@ -205678,30 +205678,30 @@ - m02039m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000177542 or ENSG00000182902 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172;PMID:8132483 + - gene_reaction_rule: "ENSG00000177542 or ENSG00000182902" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172;PMID:8132483" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5124 + - id: "HMR_5124" - name: "" - metabolites: !!omap - m01986c: -1 - m01986m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000144659 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:27476175 + - gene_reaction_rule: "ENSG00000144659" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:27476175" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5125 + - id: "HMR_5125" - name: "" - metabolites: !!omap - m02039i: -1 @@ -205710,15 +205710,15 @@ - m02770m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11004451 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11004451" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5126 + - id: "HMR_5126" - name: "" - metabolites: !!omap - m02039i: -1 @@ -205727,105 +205727,105 @@ - m02770m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5222 + - id: "HMR_5222" - name: "" - metabolites: !!omap - m02485c: -1 - m02485m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5223 + - id: "HMR_5223" - name: "" - metabolites: !!omap - m02487c: -1 - m02487m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5225 + - id: "HMR_5225" - name: "" - metabolites: !!omap - m02935c: 1 - m02935m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5227 + - id: "HMR_5227" - name: "" - metabolites: !!omap - m01358c: -1 - m01358m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5292 + - id: "HMR_5292" - name: "" - metabolites: !!omap - m01252c: -1 - m01252m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000152779 or ENSG00000165449 or ENSG00000174327 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11004451;PMID:911815 + - gene_reaction_rule: "ENSG00000152779 or ENSG00000165449 or ENSG00000174327" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11004451;PMID:911815" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5304 + - id: "HMR_5304" - name: "" - metabolites: !!omap - m01752c: -1 - m01752m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:17124168 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:17124168" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5348 + - id: "HMR_5348" - name: "" - metabolites: !!omap - m00671c: -1 @@ -205834,15 +205834,15 @@ - m02039m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12107270;PMID:12739169;PMID:12829793;PMID:17245649;PMID:18375207;PMID:8476015;PMID:8557697;PMID:9786900 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12107270;PMID:12739169;PMID:12829793;PMID:17245649;PMID:18375207;PMID:8476015;PMID:8557697;PMID:9786900" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5349 + - id: "HMR_5349" - name: "" - metabolites: !!omap - m00671c: 1 @@ -205851,30 +205851,30 @@ - m02039m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:17603022;PMID:6240978;PMID:7876265 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:17603022;PMID:6240978;PMID:7876265" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5361 + - id: "HMR_5361" - name: "" - metabolites: !!omap - m02774c: -1 - m02774m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5411 + - id: "HMR_5411" - name: "" - metabolites: !!omap - m02039c: -1 @@ -205883,30 +205883,30 @@ - m02403m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000155380 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12811560;PMID:18305372 + - gene_reaction_rule: "ENSG00000155380" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12811560;PMID:18305372" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5420 + - id: "HMR_5420" - name: "" - metabolites: !!omap - m01821c: -1 - m01821m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147454 or ENSG00000155287 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000147454 or ENSG00000155287" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5426 + - id: "HMR_5426" - name: "" - metabolites: !!omap - m01253c: -1 @@ -205915,15 +205915,15 @@ - m02819m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6276 + - id: "HMR_6276" - name: "" - metabolites: !!omap - m01580c: -1 @@ -205932,15 +205932,15 @@ - m01587m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100075 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000100075" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6277 + - id: "HMR_6277" - name: "" - metabolites: !!omap - m01580c: -1 @@ -205949,15 +205949,15 @@ - m02183m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100075 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000100075" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6286 + - id: "HMR_6286" - name: "" - metabolites: !!omap - m01306c: 1 @@ -205968,15 +205968,15 @@ - m02039m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100075 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000100075" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6287 + - id: "HMR_6287" - name: "" - metabolites: !!omap - m01587c: -1 @@ -205987,15 +205987,15 @@ - m02943m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100075 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000100075" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6288 + - id: "HMR_6288" - name: "" - metabolites: !!omap - m01587c: -1 @@ -206006,15 +206006,15 @@ - m02661m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100075 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000100075" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6289 + - id: "HMR_6289" - name: "" - metabolites: !!omap - m01306c: 1 @@ -206025,15 +206025,15 @@ - m02183m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100075 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000100075" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6290 + - id: "HMR_6290" - name: "" - metabolites: !!omap - m02039c: -1 @@ -206044,15 +206044,15 @@ - m02943m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100075 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000100075" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6291 + - id: "HMR_6291" - name: "" - metabolites: !!omap - m02039c: -1 @@ -206063,15 +206063,15 @@ - m02439m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100075 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000100075" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6292 + - id: "HMR_6292" - name: "" - metabolites: !!omap - m02039c: -1 @@ -206082,15 +206082,15 @@ - m02661m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100075 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000100075" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6293 + - id: "HMR_6293" - name: "" - metabolites: !!omap - m01306c: 1 @@ -206101,15 +206101,15 @@ - m02039m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100075 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000100075" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6294 + - id: "HMR_6294" - name: "" - metabolites: !!omap - m01580c: -1 @@ -206120,15 +206120,15 @@ - m02943m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100075 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000100075" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6295 + - id: "HMR_6295" - name: "" - metabolites: !!omap - m01580c: -1 @@ -206139,15 +206139,15 @@ - m02439m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100075 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000100075" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6296 + - id: "HMR_6296" - name: "" - metabolites: !!omap - m01580c: -1 @@ -206158,15 +206158,15 @@ - m02661m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100075 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000100075" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6297 + - id: "HMR_6297" - name: "" - metabolites: !!omap - m02183c: 1 @@ -206175,15 +206175,15 @@ - m02696m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100075 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000100075" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6298 + - id: "HMR_6298" - name: "" - metabolites: !!omap - m01580c: 1 @@ -206192,15 +206192,15 @@ - m02696m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100075 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000100075" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6299 + - id: "HMR_6299" - name: "" - metabolites: !!omap - m01365c: -1 @@ -206211,15 +206211,15 @@ - m02426m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120329 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000120329" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6300 + - id: "HMR_6300" - name: "" - metabolites: !!omap - m01365c: 1 @@ -206230,15 +206230,15 @@ - m02426m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120329 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000120329" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6301 + - id: "HMR_6301" - name: "" - metabolites: !!omap - m02039i: -1 @@ -206249,15 +206249,15 @@ - m02658m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000102743 or ENSG00000120329 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000102743 or ENSG00000120329" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6302 + - id: "HMR_6302" - name: "" - metabolites: !!omap - m02039i: -1 @@ -206268,15 +206268,15 @@ - m02658m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000102743 or ENSG00000120329 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000102743 or ENSG00000120329" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6303 + - id: "HMR_6303" - name: "" - metabolites: !!omap - m02039c: -1 @@ -206287,15 +206287,15 @@ - m02426m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120329 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000120329" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6304 + - id: "HMR_6304" - name: "" - metabolites: !!omap - m02039i: -1 @@ -206306,15 +206306,15 @@ - m02426m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120329 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000120329" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6305 + - id: "HMR_6305" - name: "" - metabolites: !!omap - m01588c: -1 @@ -206325,15 +206325,15 @@ - m02426m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120329 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000120329" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6306 + - id: "HMR_6306" - name: "" - metabolites: !!omap - m01588c: 1 @@ -206344,15 +206344,15 @@ - m02426m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120329 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000120329" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6307 + - id: "HMR_6307" - name: "" - metabolites: !!omap - m01365c: 1 @@ -206363,15 +206363,15 @@ - m02658m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000102743 or ENSG00000120329 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000102743 or ENSG00000120329" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6308 + - id: "HMR_6308" - name: "" - metabolites: !!omap - m01365c: -1 @@ -206382,15 +206382,15 @@ - m02658m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000102743 or ENSG00000120329 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000102743 or ENSG00000120329" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6309 + - id: "HMR_6309" - name: "" - metabolites: !!omap - m01365c: 1 @@ -206401,15 +206401,15 @@ - m02125m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120329 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000120329" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6310 + - id: "HMR_6310" - name: "" - metabolites: !!omap - m01365c: -1 @@ -206420,15 +206420,15 @@ - m02125m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120329 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000120329" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6311 + - id: "HMR_6311" - name: "" - metabolites: !!omap - m01365c: 1 @@ -206439,15 +206439,15 @@ - m02039m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120329 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000120329" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6312 + - id: "HMR_6312" - name: "" - metabolites: !!omap - m01365c: -1 @@ -206458,15 +206458,15 @@ - m02039m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120329 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000120329" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6313 + - id: "HMR_6313" - name: "" - metabolites: !!omap - m02039c: -1 @@ -206477,15 +206477,15 @@ - m02658m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000102743 or ENSG00000120329 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000102743 or ENSG00000120329" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6314 + - id: "HMR_6314" - name: "" - metabolites: !!omap - m02039i: -1 @@ -206496,15 +206496,15 @@ - m02658m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000102743 or ENSG00000120329 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000102743 or ENSG00000120329" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6315 + - id: "HMR_6315" - name: "" - metabolites: !!omap - m01588c: -1 @@ -206515,15 +206515,15 @@ - m02125m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120329 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000120329" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6316 + - id: "HMR_6316" - name: "" - metabolites: !!omap - m01588c: 1 @@ -206534,15 +206534,15 @@ - m02125m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120329 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000120329" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6317 + - id: "HMR_6317" - name: "" - metabolites: !!omap - m01588c: 1 @@ -206553,15 +206553,15 @@ - m02658m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000102743 or ENSG00000120329 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000102743 or ENSG00000120329" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6318 + - id: "HMR_6318" - name: "" - metabolites: !!omap - m01588c: -1 @@ -206572,15 +206572,15 @@ - m02658m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000102743 or ENSG00000120329 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000102743 or ENSG00000120329" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6321 + - id: "HMR_6321" - name: "" - metabolites: !!omap - m02039c: -1 @@ -206589,15 +206589,15 @@ - m02426m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000102743 or ENSG00000120329 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172;PMID:8132483 + - gene_reaction_rule: "ENSG00000102743 or ENSG00000120329" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172;PMID:8132483" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6323 + - id: "HMR_6323" - name: "" - metabolites: !!omap - m01365c: -1 @@ -206606,15 +206606,15 @@ - m02039m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000102743 or ENSG00000120329 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172;PMID:18406340 + - gene_reaction_rule: "ENSG00000102743 or ENSG00000120329" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172;PMID:18406340" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6324 + - id: "HMR_6324" - name: "" - metabolites: !!omap - m01365c: 1 @@ -206623,15 +206623,15 @@ - m02039m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000102743 or ENSG00000120329 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172;PMID:8132483 + - gene_reaction_rule: "ENSG00000102743 or ENSG00000120329" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172;PMID:8132483" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6325 + - id: "HMR_6325" - name: "" - metabolites: !!omap - m02039i: -1 @@ -206640,15 +206640,15 @@ - m02125m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120329 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000120329" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6326 + - id: "HMR_6326" - name: "" - metabolites: !!omap - m02039i: -1 @@ -206657,15 +206657,15 @@ - m02125m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120329 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172;PMID:8132483 + - gene_reaction_rule: "ENSG00000120329" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172;PMID:8132483" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6327 + - id: "HMR_6327" - name: "" - metabolites: !!omap - m01588c: 1 @@ -206674,15 +206674,15 @@ - m02039m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000102743 or ENSG00000120329 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172;PMID:8132483 + - gene_reaction_rule: "ENSG00000102743 or ENSG00000120329" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172;PMID:8132483" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6328 + - id: "HMR_6328" - name: "" - metabolites: !!omap - m01285c: -1 @@ -206691,15 +206691,15 @@ - m01371m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005022 or ENSG00000151729 or ENSG00000169100 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:1459;PMID:18406340;PMID:8132483;PMID:14598172 + - gene_reaction_rule: "ENSG00000005022 or ENSG00000151729 or ENSG00000169100" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:1459;PMID:18406340;PMID:8132483;PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6330 + - id: "HMR_6330" - name: "" - metabolites: !!omap - m01306c: -1 @@ -206708,15 +206708,15 @@ - m02751m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000183048 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172;PMID:10585886;PMID:4424886;PMID:4441366;PMID:5099217;PMID:8329439 + - gene_reaction_rule: "ENSG00000183048" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172;PMID:10585886;PMID:4424886;PMID:4441366;PMID:5099217;PMID:8329439" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6331 + - id: "HMR_6331" - name: "" - metabolites: !!omap - m02661c: -1 @@ -206725,15 +206725,15 @@ - m02751m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000183048 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172;PMID:10585886;PMID:4424886;PMID:4441366;PMID:5099217;PMID:8329439 + - gene_reaction_rule: "ENSG00000183048" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172;PMID:10585886;PMID:4424886;PMID:4441366;PMID:5099217;PMID:8329439" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6332 + - id: "HMR_6332" - name: "" - metabolites: !!omap - m01371c: 1 @@ -206742,15 +206742,15 @@ - m01637m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6333 + - id: "HMR_6333" - name: "" - metabolites: !!omap - m01371c: 1 @@ -206759,15 +206759,15 @@ - m01680m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6334 + - id: "HMR_6334" - name: "" - metabolites: !!omap - m01371c: 1 @@ -206776,15 +206776,15 @@ - m01754m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6335 + - id: "HMR_6335" - name: "" - metabolites: !!omap - m01285c: 1 @@ -206793,15 +206793,15 @@ - m01637m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6336 + - id: "HMR_6336" - name: "" - metabolites: !!omap - m01285c: 1 @@ -206810,15 +206810,15 @@ - m01680m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6337 + - id: "HMR_6337" - name: "" - metabolites: !!omap - m01285c: 1 @@ -206827,15 +206827,15 @@ - m01754m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6338 + - id: "HMR_6338" - name: "" - metabolites: !!omap - m01371c: 1 @@ -206844,15 +206844,15 @@ - m01642m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6339 + - id: "HMR_6339" - name: "" - metabolites: !!omap - m01371c: 1 @@ -206861,15 +206861,15 @@ - m01688m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6340 + - id: "HMR_6340" - name: "" - metabolites: !!omap - m01371c: 1 @@ -206878,15 +206878,15 @@ - m01756m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6341 + - id: "HMR_6341" - name: "" - metabolites: !!omap - m01285c: 1 @@ -206895,15 +206895,15 @@ - m01642m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6342 + - id: "HMR_6342" - name: "" - metabolites: !!omap - m01285c: 1 @@ -206912,15 +206912,15 @@ - m01688m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6343 + - id: "HMR_6343" - name: "" - metabolites: !!omap - m01285c: 1 @@ -206929,15 +206929,15 @@ - m01756m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6389 + - id: "HMR_6389" - name: "" - metabolites: !!omap - m02751c: 1 @@ -206946,15 +206946,15 @@ - m02914m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12811562 + - gene_reaction_rule: "ENSG00000160190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12811562" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6391 + - id: "HMR_6391" - name: "" - metabolites: !!omap - m01306c: -1 @@ -206963,15 +206963,15 @@ - m02026m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108528 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:15845418 + - gene_reaction_rule: "ENSG00000108528" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:15845418" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6408 + - id: "HMR_6408" - name: "" - metabolites: !!omap - m01701c: -1 @@ -206980,75 +206980,75 @@ - m02039m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6431 + - id: "HMR_6431" - name: "" - metabolites: !!omap - m00345c: -1 - m00345m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6438 + - id: "HMR_6438" - name: "" - metabolites: !!omap - m00766c: -1 - m00766m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6446 + - id: "HMR_6446" - name: "" - metabolites: !!omap - m00347c: -1 - m00347m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6454 + - id: "HMR_6454" - name: "" - metabolites: !!omap - m01923c: 1 - m01923m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6455 + - id: "HMR_6455" - name: "" - metabolites: !!omap - m01097c: 1 @@ -207057,45 +207057,45 @@ - m02039m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6469 + - id: "HMR_6469" - name: "" - metabolites: !!omap - m00346c: -1 - m00346m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6481 + - id: "HMR_6481" - name: "" - metabolites: !!omap - m00344c: -1 - m00344m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6513 + - id: "HMR_6513" - name: "" - metabolites: !!omap - m01802c: 1 @@ -207104,30 +207104,30 @@ - m01803m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6517 + - id: "HMR_6517" - name: "" - metabolites: !!omap - m02145c: -1 - m02145m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6521 + - id: "HMR_6521" - name: "" - metabolites: !!omap - m01862c: -1 @@ -207136,15 +207136,15 @@ - m02991m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000183048 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000183048" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6522 + - id: "HMR_6522" - name: "" - metabolites: !!omap - m02439c: -1 @@ -207153,15 +207153,15 @@ - m02991m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000183048 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000183048" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6618 + - id: "HMR_6618" - name: "" - metabolites: !!omap - m02039i: -1 @@ -207170,15 +207170,15 @@ - m02990m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6620 + - id: "HMR_6620" - name: "" - metabolites: !!omap - m02039i: -1 @@ -207187,15 +207187,15 @@ - m02666m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6781 + - id: "HMR_6781" - name: "" - metabolites: !!omap - m01005c: -1 @@ -207204,105 +207204,105 @@ - m02039m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6890 + - id: "HMR_6890" - name: "" - metabolites: !!omap - m00995c: -1 - m00995m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6902 + - id: "HMR_6902" - name: "" - metabolites: !!omap - m01316c: -1 - m01316m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7638 + - id: "HMR_7638" - name: "" - metabolites: !!omap - m02039c: -1 - m02039m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000102078 or ENSG00000109424 or ENSG00000153291 or ENSG00000175564 or ENSG00000175567 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000102078 or ENSG00000109424 or ENSG00000153291 or ENSG00000175564 or ENSG00000175567" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7708 + - id: "HMR_7708" - name: "" - metabolites: !!omap - m02007c: -1 - m02007m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7719 + - id: "HMR_7719" - name: "" - metabolites: !!omap - m03123c: -1 - m03123m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112759 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000112759" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7723 + - id: "HMR_7723" - name: "" - metabolites: !!omap - m01630c: -1 - m01630m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112759 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000112759" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7757 + - id: "HMR_7757" - name: "" - metabolites: !!omap - m02039i: -1 @@ -207311,15 +207311,15 @@ - m02944m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000155368 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000155368" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7758 + - id: "HMR_7758" - name: "" - metabolites: !!omap - m01514c: -1 @@ -207328,15 +207328,15 @@ - m02039m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000155368 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000155368" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7760 + - id: "HMR_7760" - name: "" - metabolites: !!omap - m01736c: -1 @@ -207345,15 +207345,15 @@ - m02039m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000164638 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000164638" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7769 + - id: "HMR_7769" - name: "" - metabolites: !!omap - m02871c: -1 @@ -207362,15 +207362,15 @@ - m02877m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000144741 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14674884 + - gene_reaction_rule: "ENSG00000144741" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14674884" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7804 + - id: "HMR_7804" - name: "" - metabolites: !!omap - m01637c: 1 @@ -207379,15 +207379,15 @@ - m01643m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7806 + - id: "HMR_7806" - name: "" - metabolites: !!omap - m01637c: 1 @@ -207396,15 +207396,15 @@ - m01680m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7808 + - id: "HMR_7808" - name: "" - metabolites: !!omap - m01747c: -1 @@ -207413,15 +207413,15 @@ - m01754m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7810 + - id: "HMR_7810" - name: "" - metabolites: !!omap - m01680c: -1 @@ -207430,15 +207430,15 @@ - m01754m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7812 + - id: "HMR_7812" - name: "" - metabolites: !!omap - m01637c: -1 @@ -207447,15 +207447,15 @@ - m01754m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7814 + - id: "HMR_7814" - name: "" - metabolites: !!omap - m01643c: -1 @@ -207464,15 +207464,15 @@ - m01754m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7815 + - id: "HMR_7815" - name: "" - metabolites: !!omap - m01371c: 1 @@ -207481,15 +207481,15 @@ - m01747m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7816 + - id: "HMR_7816" - name: "" - metabolites: !!omap - m01285c: 1 @@ -207498,15 +207498,15 @@ - m01747m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7818 + - id: "HMR_7818" - name: "" - metabolites: !!omap - m01680c: -1 @@ -207515,15 +207515,15 @@ - m01747m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7820 + - id: "HMR_7820" - name: "" - metabolites: !!omap - m01637c: -1 @@ -207532,15 +207532,15 @@ - m01747m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7822 + - id: "HMR_7822" - name: "" - metabolites: !!omap - m01643c: -1 @@ -207549,15 +207549,15 @@ - m01747m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7824 + - id: "HMR_7824" - name: "" - metabolites: !!omap - m01643c: 1 @@ -207566,15 +207566,15 @@ - m01680m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7825 + - id: "HMR_7825" - name: "" - metabolites: !!omap - m01285c: 1 @@ -207583,15 +207583,15 @@ - m01643m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7826 + - id: "HMR_7826" - name: "" - metabolites: !!omap - m01371c: 1 @@ -207600,15 +207600,15 @@ - m01643m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7827 + - id: "HMR_7827" - name: "" - metabolites: !!omap - m01747c: 1 @@ -207617,15 +207617,15 @@ - m01756m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7828 + - id: "HMR_7828" - name: "" - metabolites: !!omap - m01754c: 1 @@ -207634,15 +207634,15 @@ - m01756m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7829 + - id: "HMR_7829" - name: "" - metabolites: !!omap - m01680c: 1 @@ -207651,15 +207651,15 @@ - m01756m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7830 + - id: "HMR_7830" - name: "" - metabolites: !!omap - m01642c: -1 @@ -207668,15 +207668,15 @@ - m01643m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7831 + - id: "HMR_7831" - name: "" - metabolites: !!omap - m01637c: 1 @@ -207685,15 +207685,15 @@ - m01756m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7832 + - id: "HMR_7832" - name: "" - metabolites: !!omap - m01643c: 1 @@ -207702,15 +207702,15 @@ - m01756m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7833 + - id: "HMR_7833" - name: "" - metabolites: !!omap - m01371c: 1 @@ -207719,15 +207719,15 @@ - m01753m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7834 + - id: "HMR_7834" - name: "" - metabolites: !!omap - m01285c: 1 @@ -207736,15 +207736,15 @@ - m01753m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7835 + - id: "HMR_7835" - name: "" - metabolites: !!omap - m01753c: -1 @@ -207753,15 +207753,15 @@ - m01754m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7836 + - id: "HMR_7836" - name: "" - metabolites: !!omap - m01747c: 1 @@ -207770,15 +207770,15 @@ - m01753m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7837 + - id: "HMR_7837" - name: "" - metabolites: !!omap - m01680c: 1 @@ -207787,15 +207787,15 @@ - m01753m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7838 + - id: "HMR_7838" - name: "" - metabolites: !!omap - m01637c: 1 @@ -207804,15 +207804,15 @@ - m01753m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7839 + - id: "HMR_7839" - name: "" - metabolites: !!omap - m01642c: -1 @@ -207821,15 +207821,15 @@ - m01754m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7840 + - id: "HMR_7840" - name: "" - metabolites: !!omap - m01643c: 1 @@ -207838,15 +207838,15 @@ - m01753m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7841 + - id: "HMR_7841" - name: "" - metabolites: !!omap - m01643c: 1 @@ -207855,15 +207855,15 @@ - m01645m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7842 + - id: "HMR_7842" - name: "" - metabolites: !!omap - m01645c: -1 @@ -207872,15 +207872,15 @@ - m01754m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7843 + - id: "HMR_7843" - name: "" - metabolites: !!omap - m01645c: -1 @@ -207889,15 +207889,15 @@ - m01680m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7844 + - id: "HMR_7844" - name: "" - metabolites: !!omap - m01637c: 1 @@ -207906,15 +207906,15 @@ - m01645m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7845 + - id: "HMR_7845" - name: "" - metabolites: !!omap - m01285c: 1 @@ -207923,15 +207923,15 @@ - m01645m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7846 + - id: "HMR_7846" - name: "" - metabolites: !!omap - m01371c: 1 @@ -207940,15 +207940,15 @@ - m01645m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7847 + - id: "HMR_7847" - name: "" - metabolites: !!omap - m01637c: 1 @@ -207957,15 +207957,15 @@ - m01688m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7848 + - id: "HMR_7848" - name: "" - metabolites: !!omap - m01642c: -1 @@ -207974,15 +207974,15 @@ - m01747m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7849 + - id: "HMR_7849" - name: "" - metabolites: !!omap - m01688c: -1 @@ -207991,15 +207991,15 @@ - m01754m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7850 + - id: "HMR_7850" - name: "" - metabolites: !!omap - m01688c: -1 @@ -208008,15 +208008,15 @@ - m01747m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7851 + - id: "HMR_7851" - name: "" - metabolites: !!omap - m01680c: 1 @@ -208025,15 +208025,15 @@ - m01688m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7852 + - id: "HMR_7852" - name: "" - metabolites: !!omap - m01643c: 1 @@ -208042,15 +208042,15 @@ - m01688m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7853 + - id: "HMR_7853" - name: "" - metabolites: !!omap - m01642c: -1 @@ -208059,15 +208059,15 @@ - m01680m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7854 + - id: "HMR_7854" - name: "" - metabolites: !!omap - m01637c: 1 @@ -208076,180 +208076,180 @@ - m01642m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7897 + - id: "HMR_7897" - name: "" - metabolites: !!omap - m02193c: -1 - m02193m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7899 + - id: "HMR_7899" - name: "" - metabolites: !!omap - m01714c: -1 - m01714m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7914 + - id: "HMR_7914" - name: "" - metabolites: !!omap - m00267c: 1 - m00267m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7917 + - id: "HMR_7917" - name: "" - metabolites: !!omap - m00268c: 1 - m00268m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7923 + - id: "HMR_7923" - name: "" - metabolites: !!omap - m00269c: 1 - m00269m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7995 + - id: "HMR_7995" - name: "" - metabolites: !!omap - m03141c: -1 - m03141m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7998 + - id: "HMR_7998" - name: "" - metabolites: !!omap - m00620c: -1 - m00620m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8000 + - id: "HMR_8000" - name: "" - metabolites: !!omap - m00035c: 1 - m00035m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8001 + - id: "HMR_8001" - name: "" - metabolites: !!omap - m00613c: 1 - m00613m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8009 + - id: "HMR_8009" - name: "" - metabolites: !!omap - m01415c: -1 - m01415m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8089 + - id: "HMR_8089" - name: "" - metabolites: !!omap - m02325c: 1 - m02325m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000183044 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000183044" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8093 + - id: "HMR_8093" - name: "" - metabolites: !!omap - m00669c: -1 @@ -208258,15 +208258,15 @@ - m02039m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8099 + - id: "HMR_8099" - name: "" - metabolites: !!omap - m01013c: -1 @@ -208275,105 +208275,105 @@ - m02039m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8120 + - id: "HMR_8120" - name: "" - metabolites: !!omap - m02692c: 1 - m02692m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8122 + - id: "HMR_8122" - name: "" - metabolites: !!omap - m02118c: 1 - m02118m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8124 + - id: "HMR_8124" - name: "" - metabolites: !!omap - m02119c: 1 - m02119m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8126 + - id: "HMR_8126" - name: "" - metabolites: !!omap - m02104c: 1 - m02104m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8128 + - id: "HMR_8128" - name: "" - metabolites: !!omap - m02105c: 1 - m02105m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8356 + - id: "HMR_8356" - name: "" - metabolites: !!omap - m01249c: -1 - m01249m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8365 + - id: "HMR_8365" - name: "" - metabolites: !!omap - m01256c: -1 @@ -208382,90 +208382,90 @@ - m02039m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000155380 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000155380" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8411 + - id: "HMR_8411" - name: "" - metabolites: !!omap - m02631c: -1 - m02631m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8438 + - id: "HMR_8438" - name: "" - metabolites: !!omap - m01708c: -1 - m01708m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8475 + - id: "HMR_8475" - name: "" - metabolites: !!omap - m01668c: -1 - m01668m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112759 or ENSG00000174669 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12838422;PMID:12006583;PMID:14747464;PMID:16595656;PMID:17187757;PMID:17279066;PMID:7479738 + - gene_reaction_rule: "ENSG00000112759 or ENSG00000174669" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12838422;PMID:12006583;PMID:14747464;PMID:16595656;PMID:17187757;PMID:17279066;PMID:7479738" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8505 + - id: "HMR_8505" - name: "" - metabolites: !!omap - m02329c: -1 - m02329m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8510 + - id: "HMR_8510" - name: "" - metabolites: !!omap - m00168c: -1 - m00168m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8513 + - id: "HMR_8513" - name: "" - metabolites: !!omap - m01716c: -1 @@ -208474,150 +208474,150 @@ - m02039m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000155380 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000155380" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8528 + - id: "HMR_8528" - name: "" - metabolites: !!omap - m02685c: -1 - m02685m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8532 + - id: "HMR_8532" - name: "" - metabolites: !!omap - m01831c: -1 - m01831m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8562 + - id: "HMR_8562" - name: "" - metabolites: !!omap - m02168c: -1 - m02168m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8614 + - id: "HMR_8614" - name: "" - metabolites: !!omap - m01599c: -1 - m01599m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151611 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000151611" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8627 + - id: "HMR_8627" - name: "" - metabolites: !!omap - m02532c: 1 - m02532m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8655 + - id: "HMR_8655" - name: "" - metabolites: !!omap - m01418c: 1 - m01418m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8657 + - id: "HMR_8657" - name: "" - metabolites: !!omap - m01513c: -1 - m01513m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8680 + - id: "HMR_8680" - name: "" - metabolites: !!omap - m01614c: -1 - m01614m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8731 + - id: "HMR_8731" - name: "" - metabolites: !!omap - m02880c: -1 - m02880m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8741 + - id: "HMR_8741" - name: "" - metabolites: !!omap - m01862c: -1 @@ -208626,15 +208626,15 @@ - m02949m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000183048 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000183048" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8742 + - id: "HMR_8742" - name: "" - metabolites: !!omap - m01862c: -1 @@ -208643,15 +208643,15 @@ - m02946m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000183048 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000183048" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8745 + - id: "HMR_8745" - name: "" - metabolites: !!omap - m02147c: -1 @@ -208660,15 +208660,15 @@ - m02983m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8747 + - id: "HMR_8747" - name: "" - metabolites: !!omap - m02147c: 2 @@ -208677,210 +208677,210 @@ - m02984m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8776 + - id: "HMR_8776" - name: "" - metabolites: !!omap - m02154c: -1 - m02154m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8785 + - id: "HMR_8785" - name: "" - metabolites: !!omap - m02165c: -1 - m02165m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8848 + - id: "HMR_8848" - name: "" - metabolites: !!omap - m02986c: 1 - m02986m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8890 + - id: "HMR_8890" - name: "" - metabolites: !!omap - m01393c: -1 - m01393m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8891 + - id: "HMR_8891" - name: "" - metabolites: !!omap - m02914c: -1 - m02914m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8910 + - id: "HMR_8910" - name: "" - metabolites: !!omap - m02170c: -1 - m02170m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112759 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000112759" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9174 + - id: "HMR_9174" - name: "" - metabolites: !!omap - m02191c: -1 - m02191m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9194 + - id: "HMR_9194" - name: "" - metabolites: !!omap - m01303c: -1 - m01303m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9675 + - id: "HMR_9675" - name: "" - metabolites: !!omap - m01998c: 1 - m01998m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9676 + - id: "HMR_9676" - name: "" - metabolites: !!omap - m02169c: 1 - m02169m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9677 + - id: "HMR_9677" - name: "" - metabolites: !!omap - m02320c: 1 - m02320m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9014 + - id: "HMR_9014" - name: "" - metabolites: !!omap - m02026c: -1 - m02026p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0707 + - id: "HMR_0707" - name: "" - metabolites: !!omap - m02017c: 1 - m02017p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11275267 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11275267" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0713 + - id: "HMR_0713" - name: "" - metabolites: !!omap - m01306c: -1 @@ -208889,300 +208889,300 @@ - m02183p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100644 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16919238;PMID:14598172;PMID:;PMID:18406340;PMID:8132483;PMID:16919238;PMID:17173541 + - gene_reaction_rule: "ENSG00000100644" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16919238;PMID:14598172;PMID:;PMID:18406340;PMID:8132483;PMID:16919238;PMID:17173541" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1104 + - id: "HMR_1104" - name: "" - metabolites: !!omap - m02364c: -1 - m02364p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1135 + - id: "HMR_1135" - name: "" - metabolites: !!omap - m00585c: -1 - m00585p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1144 + - id: "HMR_1144" - name: "" - metabolites: !!omap - m01124c: -1 - m01124p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1172 + - id: "HMR_1172" - name: "" - metabolites: !!omap - m00835c: -1 - m00835p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1188 + - id: "HMR_1188" - name: "" - metabolites: !!omap - m01118c: -1 - m01118p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1214 + - id: "HMR_1214" - name: "" - metabolites: !!omap - m00837c: -1 - m00837p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1242 + - id: "HMR_1242" - name: "" - metabolites: !!omap - m00583c: -1 - m00583p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1268 + - id: "HMR_1268" - name: "" - metabolites: !!omap - m00258c: -1 - m00258p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1283 + - id: "HMR_1283" - name: "" - metabolites: !!omap - m00252c: -1 - m00252p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1286 + - id: "HMR_1286" - name: "" - metabolites: !!omap - m02369c: -1 - m02369p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1443 + - id: "HMR_1443" - name: "" - metabolites: !!omap - m00167c: -1 - m00167p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000155380 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:17180682 + - gene_reaction_rule: "ENSG00000155380" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:17180682" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_2067 + - id: "HMR_2067" - name: "" - metabolites: !!omap - m01791c: -1 - m01791p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_2082 + - id: "HMR_2082" - name: "" - metabolites: !!omap - m01793c: -1 - m01793p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_2093 + - id: "HMR_2093" - name: "" - metabolites: !!omap - m00412c: -1 - m00412p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_2104 + - id: "HMR_2104" - name: "" - metabolites: !!omap - m00410c: -1 - m00410p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_2407 + - id: "HMR_2407" - name: "" - metabolites: !!omap - m00110c: -1 - m00110p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101986 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000101986" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_2509 + - id: "HMR_2509" - name: "" - metabolites: !!omap - m00113c: -1 - m00113p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101986 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000101986" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_2547 + - id: "HMR_2547" - name: "" - metabolites: !!omap - m01125c: -1 - m01125p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_2575 + - id: "HMR_2575" - name: "" - metabolites: !!omap - m01784c: -1 - m01784p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3007 + - id: "HMR_3007" - name: "" - metabolites: !!omap - m02039c: -1 @@ -209191,15 +209191,15 @@ - m02403p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000155380 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169;PMID:18305372 + - gene_reaction_rule: "ENSG00000155380" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169;PMID:18305372" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3008 + - id: "HMR_3008" - name: "" - metabolites: !!omap - m01285c: 1 @@ -209211,15 +209211,15 @@ - m02774p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000067829 or ENSG00000067840 or ENSG00000101986 or ENSG00000130821 or ENSG00000130822 or ENSG00000130829 or ENSG00000180879 or ENSG00000184343 or ENSG00000185825 or ENSG00000198753 or ENSG00000198910 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:18619829 + - gene_reaction_rule: "ENSG00000067829 or ENSG00000067840 or ENSG00000101986 or ENSG00000130821 or ENSG00000130822 or ENSG00000130829 or ENSG00000180879 or ENSG00000184343 or ENSG00000185825 or ENSG00000198753 or ENSG00000198910" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:18619829" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3011 + - id: "HMR_3011" - name: "" - metabolites: !!omap - m01285c: 1 @@ -209231,15 +209231,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000067829 or ENSG00000067840 or ENSG00000101986 or ENSG00000130821 or ENSG00000130822 or ENSG00000130829 or ENSG00000180879 or ENSG00000184343 or ENSG00000185825 or ENSG00000198753 or ENSG00000198910 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:18619829 + - gene_reaction_rule: "ENSG00000067829 or ENSG00000067840 or ENSG00000101986 or ENSG00000130821 or ENSG00000130822 or ENSG00000130829 or ENSG00000180879 or ENSG00000184343 or ENSG00000185825 or ENSG00000198753 or ENSG00000198910" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:18619829" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3013 + - id: "HMR_3013" - name: "" - metabolites: !!omap - m01285c: 1 @@ -209251,15 +209251,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000067829 or ENSG00000067840 or ENSG00000101986 or ENSG00000130821 or ENSG00000130822 or ENSG00000130829 or ENSG00000180879 or ENSG00000184343 or ENSG00000185825 or ENSG00000198753 or ENSG00000198910 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:18619829 + - gene_reaction_rule: "ENSG00000067829 or ENSG00000067840 or ENSG00000101986 or ENSG00000130821 or ENSG00000130822 or ENSG00000130829 or ENSG00000180879 or ENSG00000184343 or ENSG00000185825 or ENSG00000198753 or ENSG00000198910" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:18619829" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3014 + - id: "HMR_3014" - name: "" - metabolites: !!omap - m01285c: 1 @@ -209271,15 +209271,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000067829 or ENSG00000067840 or ENSG00000101986 or ENSG00000130821 or ENSG00000130822 or ENSG00000130829 or ENSG00000180879 or ENSG00000184343 or ENSG00000185825 or ENSG00000198753 or ENSG00000198910 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:18619829 + - gene_reaction_rule: "ENSG00000067829 or ENSG00000067840 or ENSG00000101986 or ENSG00000130821 or ENSG00000130822 or ENSG00000130829 or ENSG00000180879 or ENSG00000184343 or ENSG00000185825 or ENSG00000198753 or ENSG00000198910" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:18619829" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3017 + - id: "HMR_3017" - name: "" - metabolites: !!omap - m00018c: -1 @@ -209291,150 +209291,150 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000067829 or ENSG00000067840 or ENSG00000101986 or ENSG00000130821 or ENSG00000130822 or ENSG00000130829 or ENSG00000180879 or ENSG00000184343 or ENSG00000185825 or ENSG00000198753 or ENSG00000198910 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:18619829 + - gene_reaction_rule: "ENSG00000067829 or ENSG00000067840 or ENSG00000101986 or ENSG00000130821 or ENSG00000130822 or ENSG00000130829 or ENSG00000180879 or ENSG00000184343 or ENSG00000185825 or ENSG00000198753 or ENSG00000198910" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:18619829" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3018 + - id: "HMR_3018" - name: "" - metabolites: !!omap - m03047c: -1 - m03047p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101986 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000101986" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3019 + - id: "HMR_3019" - name: "" - metabolites: !!omap - m02971c: -1 - m02971p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101986 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000101986" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3020 + - id: "HMR_3020" - name: "" - metabolites: !!omap - m00025c: -1 - m00025p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101986 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000101986" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3021 + - id: "HMR_3021" - name: "" - metabolites: !!omap - m00317c: -1 - m00317p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101986 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000101986" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3022 + - id: "HMR_3022" - name: "" - metabolites: !!omap - m02110c: -1 - m02110p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101986 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:18757502 + - gene_reaction_rule: "ENSG00000101986" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:18757502" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3023 + - id: "HMR_3023" - name: "" - metabolites: !!omap - m02112c: -1 - m02112p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101986 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000101986" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3024 + - id: "HMR_3024" - name: "" - metabolites: !!omap - m00134c: -1 - m00134p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101986 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000101986" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3025 + - id: "HMR_3025" - name: "" - metabolites: !!omap - m00131c: -1 - m00131p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101986 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000101986" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3026 + - id: "HMR_3026" - name: "" - metabolites: !!omap - m02348c: -1 - m02348p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10460205;PMID:1296165;PMID:16288981;PMID:17466261;PMID:2199597;PMID:6219439;PMID:6361812;PMID:8353366 + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10460205;PMID:1296165;PMID:16288981;PMID:17466261;PMID:2199597;PMID:6219439;PMID:6361812;PMID:8353366" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3473 + - id: "HMR_3473" - name: "" - metabolites: !!omap - m01334c: 1 @@ -209443,195 +209443,195 @@ - m01371p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100372 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16756494;PMID:9874197;PMID:12445829;PMID:14598172;PMID:18406340;PMID:9759482 + - gene_reaction_rule: "ENSG00000100372" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16756494;PMID:9874197;PMID:12445829;PMID:14598172;PMID:18406340;PMID:9759482" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3848 + - id: "HMR_3848" - name: "" - metabolites: !!omap - m01986c: -1 - m01986p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3850 + - id: "HMR_3850" - name: "" - metabolites: !!omap - m02880c: -1 - m02880p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3867 + - id: "HMR_3867" - name: "" - metabolites: !!omap - m01831c: -1 - m01831p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3947 + - id: "HMR_3947" - name: "" - metabolites: !!omap - m02041c: -1 - m02041p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3948 + - id: "HMR_3948" - name: "" - metabolites: !!omap - m02187c: -1 - m02187p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4393 + - id: "HMR_4393" - name: "" - metabolites: !!omap - m01690c: -1 - m01690p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:17045662 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:17045662" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4468 + - id: "HMR_4468" - name: "" - metabolites: !!omap - m02896c: -1 - m02896p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4469 + - id: "HMR_4469" - name: "" - metabolites: !!omap - m02154c: -1 - m02154p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4647 + - id: "HMR_4647" - name: "" - metabolites: !!omap - m03148c: -1 - m03148p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4790 + - id: "HMR_4790" - name: "" - metabolites: !!omap - m01307c: -1 - m01307p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4890 + - id: "HMR_4890" - name: "" - metabolites: !!omap - m02040c: -1 - m02040p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:3888072;PMID:4684694 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:3888072;PMID:4684694" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4900 + - id: "HMR_4900" - name: "" - metabolites: !!omap - m02630c: -1 - m02630p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4908 + - id: "HMR_4908" - name: "" - metabolites: !!omap - m01285c: -1 @@ -209640,45 +209640,45 @@ - m01371p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000155085 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:1459;PMID:18406340;PMID:8132483;PMID:14598172 + - gene_reaction_rule: "ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000155085 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:1459;PMID:18406340;PMID:8132483;PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4915 + - id: "HMR_4915" - name: "" - metabolites: !!omap - m01597c: -1 - m01597p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4924 + - id: "HMR_4924" - name: "" - metabolites: !!omap - m01596c: -1 - m01596p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:3888072;PMID:911815 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:3888072;PMID:911815" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4930 + - id: "HMR_4930" - name: "" - metabolites: !!omap - m02039c: -1 @@ -209687,45 +209687,45 @@ - m02819p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12739169;PMID:18305372 + - gene_reaction_rule: "ENSG00000100156 or ENSG00000108932 or ENSG00000118596 or ENSG00000141526 or ENSG00000155380 or ENSG00000168679 or ENSG00000170190" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12739169;PMID:18305372" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4945 + - id: "HMR_4945" - name: "" - metabolites: !!omap - m01836c: -1 - m01836p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11300510;PMID:16171773;PMID:18288723;PMID:3768436;PMID:911815 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11300510;PMID:16171773;PMID:18288723;PMID:3768436;PMID:911815" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4986 + - id: "HMR_4986" - name: "" - metabolites: !!omap - m02961c: -1 - m02961p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000131389 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000131389" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5344 + - id: "HMR_5344" - name: "" - metabolites: !!omap - m02039c: -1 @@ -209734,60 +209734,60 @@ - m02751p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:8691743 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:8691743" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5346 + - id: "HMR_5346" - name: "" - metabolites: !!omap - m02759c: -1 - m02759p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:3031070;PMID:6253473 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:3031070;PMID:6253473" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5362 + - id: "HMR_5362" - name: "" - metabolites: !!omap - m02774c: -1 - m02774p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5414 + - id: "HMR_5414" - name: "" - metabolites: !!omap - m02914c: -1 - m02914p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:17045662 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:17045662" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5452 + - id: "HMR_5452" - name: "" - metabolites: !!omap - m02519c: -1 @@ -209796,630 +209796,630 @@ - m02961p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000131389 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000131389" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5453 + - id: "HMR_5453" - name: "" - metabolites: !!omap - m02519c: -1 - m02519p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6928 + - id: "HMR_6928" - name: "" - metabolites: !!omap - m02926c: -1 - m02926p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6937 + - id: "HMR_6937" - name: "" - metabolites: !!omap - m02923c: -1 - m02923p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6986 + - id: "HMR_6986" - name: "" - metabolites: !!omap - m02183c: -1 - m02183p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6987 + - id: "HMR_6987" - name: "" - metabolites: !!omap - m02943c: -1 - m02943p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7590 + - id: "HMR_7590" - name: "" - metabolites: !!omap - m01278c: -1 - m01278p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7596 + - id: "HMR_7596" - name: "" - metabolites: !!omap - m01311c: -1 - m01311p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7640 + - id: "HMR_7640" - name: "" - metabolites: !!omap - m01641c: -1 - m01641p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7646 + - id: "HMR_7646" - name: "" - metabolites: !!omap - m01638c: -1 - m01638p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123643 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000123643" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7705 + - id: "HMR_7705" - name: "" - metabolites: !!omap - m01998c: -1 - m01998p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7707 + - id: "HMR_7707" - name: "" - metabolites: !!omap - m02007c: -1 - m02007p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7771 + - id: "HMR_7771" - name: "" - metabolites: !!omap - m02552c: 1 - m02552p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7775 + - id: "HMR_7775" - name: "" - metabolites: !!omap - m02553c: -1 - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7777 + - id: "HMR_7777" - name: "" - metabolites: !!omap - m02554c: 1 - m02554p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7779 + - id: "HMR_7779" - name: "" - metabolites: !!omap - m02555c: -1 - m02555p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7782 + - id: "HMR_7782" - name: "" - metabolites: !!omap - m01285c: -1 - m01285p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7783 + - id: "HMR_7783" - name: "" - metabolites: !!omap - m01334c: -1 - m01334p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7785 + - id: "HMR_7785" - name: "" - metabolites: !!omap - m01371c: -1 - m01371p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7788 + - id: "HMR_7788" - name: "" - metabolites: !!omap - m01803c: -1 - m01803p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7790 + - id: "HMR_7790" - name: "" - metabolites: !!omap - m01802c: -1 - m01802p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7797 + - id: "HMR_7797" - name: "" - metabolites: !!omap - m01306c: -1 - m01306p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8016 + - id: "HMR_8016" - name: "" - metabolites: !!omap - m02426c: -1 - m02426p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8020 + - id: "HMR_8020" - name: "" - metabolites: !!omap - m00556c: -1 - m00556p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8359 + - id: "HMR_8359" - name: "" - metabolites: !!omap - m01249c: -1 - m01249p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8414 + - id: "HMR_8414" - name: "" - metabolites: !!omap - m02631c: -1 - m02631p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8754 + - id: "HMR_8754" - name: "" - metabolites: !!omap - m02159c: -1 - m02159p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8756 + - id: "HMR_8756" - name: "" - metabolites: !!omap - m01796c: -1 - m01796p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8860 + - id: "HMR_8860" - name: "" - metabolites: !!omap - m03120c: 1 - m03120p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8926 + - id: "HMR_8926" - name: "" - metabolites: !!omap - m02578c: -1 - m02578p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9179 + - id: "HMR_9179" - name: "" - metabolites: !!omap - m01740c: -1 - m01740p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9181 + - id: "HMR_9181" - name: "" - metabolites: !!omap - m01640c: -1 - m01640p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9678 + - id: "HMR_9678" - name: "" - metabolites: !!omap - m02674c: 1 - m02674p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9679 + - id: "HMR_9679" - name: "" - metabolites: !!omap - m01252c: 1 - m01252p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9680 + - id: "HMR_9680" - name: "" - metabolites: !!omap - m02633c: 1 - m02633p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9017 + - id: "HMR_9017" - name: "" - metabolites: !!omap - m02555c: -1 - m02555n: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0984 + - id: "HMR_0984" - name: "" - metabolites: !!omap - m01362c: -1 - m01362n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1089 + - id: "HMR_1089" - name: "" - metabolites: !!omap - m02369c: -1 - m02369n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1090 + - id: "HMR_1090" - name: "" - metabolites: !!omap - m01261c: -1 - m01261n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1094 + - id: "HMR_1094" - name: "" - metabolites: !!omap - m02362c: -1 - m02362n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1095 + - id: "HMR_1095" - name: "" - metabolites: !!omap - m02039c: -1 - m02039n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_2564 + - id: "HMR_2564" - name: "" - metabolites: !!omap - m01784c: -1 - m01784n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_2585 + - id: "HMR_2585" - name: "" - metabolites: !!omap - m00028c: 1 @@ -210431,1275 +210431,1275 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073756 or ENSG00000095303 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.1 - - references: + - gene_reaction_rule: "ENSG00000073756 or ENSG00000095303" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.1" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4274 + - id: "HMR_4274" - name: "" - metabolites: !!omap - m01646c: -1 - m01646n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4275 + - id: "HMR_4275" - name: "" - metabolites: !!omap - m02585c: -1 - m02585n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4277 + - id: "HMR_4277" - name: "" - metabolites: !!omap - m02578c: -1 - m02578n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4535 + - id: "HMR_4535" - name: "" - metabolites: !!omap - m01592c: -1 - m01592n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000164414 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000164414" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4538 + - id: "HMR_4538" - name: "" - metabolites: !!omap - m00965c: -1 - m00965n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4893 + - id: "HMR_4893" - name: "" - metabolites: !!omap - m02040c: -1 - m02040n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4904 + - id: "HMR_4904" - name: "" - metabolites: !!omap - m02630c: -1 - m02630n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4916 + - id: "HMR_4916" - name: "" - metabolites: !!omap - m01597c: -1 - m01597n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5422 + - id: "HMR_5422" - name: "" - metabolites: !!omap - m02759c: -1 - m02759n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5423 + - id: "HMR_5423" - name: "" - metabolites: !!omap - m01623c: -1 - m01623n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5424 + - id: "HMR_5424" - name: "" - metabolites: !!omap - m02543c: -1 - m02543n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6617 + - id: "HMR_6617" - name: "" - metabolites: !!omap - m02990c: -1 - m02990n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6619 + - id: "HMR_6619" - name: "" - metabolites: !!omap - m02666c: -1 - m02666n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7653 + - id: "HMR_7653" - name: "" - metabolites: !!omap - m01133c: -1 - m01133n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7664 + - id: "HMR_7664" - name: "" - metabolites: !!omap - m01400c: -1 - m01400n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7665 + - id: "HMR_7665" - name: "" - metabolites: !!omap - m01401c: -1 - m01401n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7712 + - id: "HMR_7712" - name: "" - metabolites: !!omap - m01334c: -1 - m01334n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7763 + - id: "HMR_7763" - name: "" - metabolites: !!omap - m02041c: -1 - m02041n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7764 + - id: "HMR_7764" - name: "" - metabolites: !!omap - m02751c: -1 - m02751n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7765 + - id: "HMR_7765" - name: "" - metabolites: !!omap - m02877c: -1 - m02877n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7767 + - id: "HMR_7767" - name: "" - metabolites: !!omap - m02871c: -1 - m02871n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7773 + - id: "HMR_7773" - name: "" - metabolites: !!omap - m02552c: -1 - m02552n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7786 + - id: "HMR_7786" - name: "" - metabolites: !!omap - m01371c: -1 - m01371n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7792 + - id: "HMR_7792" - name: "" - metabolites: !!omap - m02034c: -1 - m02034n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7795 + - id: "HMR_7795" - name: "" - metabolites: !!omap - m02193c: -1 - m02193n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7796 + - id: "HMR_7796" - name: "" - metabolites: !!omap - m03130c: -1 - m03130n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000030066 and ENSG00000069248 and ENSG00000075188 and ENSG00000110713 and ENSG00000111581 and ENSG00000120253 and ENSG00000125450) or ENSG00000093000 or ENSG00000095319 or ENSG00000102900 or ENSG00000108559 or ENSG00000113569 or ENSG00000124789 or ENSG00000126883 or ENSG00000132182 or ENSG00000136243 or ENSG00000138750 or ENSG00000139496 or ENSG00000143552 or ENSG00000153201 or ENSG00000155561 or ENSG00000163002 or ENSG00000198088 or ENSG00000213024 or ENSG00000275183 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "(ENSG00000030066 and ENSG00000069248 and ENSG00000075188 and ENSG00000110713 and ENSG00000111581 and ENSG00000120253 and ENSG00000125450) or ENSG00000093000 or ENSG00000095319 or ENSG00000102900 or ENSG00000108559 or ENSG00000113569 or ENSG00000124789 or ENSG00000126883 or ENSG00000132182 or ENSG00000136243 or ENSG00000138750 or ENSG00000139496 or ENSG00000143552 or ENSG00000153201 or ENSG00000155561 or ENSG00000163002 or ENSG00000198088 or ENSG00000213024 or ENSG00000275183" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7855 + - id: "HMR_7855" - name: "" - metabolites: !!omap - m01714c: -1 - m01714n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7856 + - id: "HMR_7856" - name: "" - metabolites: !!omap - m01747c: -1 - m01747n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7857 + - id: "HMR_7857" - name: "" - metabolites: !!omap - m01753c: -1 - m01753n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7858 + - id: "HMR_7858" - name: "" - metabolites: !!omap - m01754c: -1 - m01754n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7859 + - id: "HMR_7859" - name: "" - metabolites: !!omap - m01755c: -1 - m01755n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7860 + - id: "HMR_7860" - name: "" - metabolites: !!omap - m01645c: -1 - m01645n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7861 + - id: "HMR_7861" - name: "" - metabolites: !!omap - m01642c: -1 - m01642n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7862 + - id: "HMR_7862" - name: "" - metabolites: !!omap - m01688c: -1 - m01688n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7877 + - id: "HMR_7877" - name: "" - metabolites: !!omap - m01693c: -1 - m01693n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8024 + - id: "HMR_8024" - name: "" - metabolites: !!omap - m00204c: -1 - m00204n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8028 + - id: "HMR_8028" - name: "" - metabolites: !!omap - m00211n: -1 - m00211r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8082 + - id: "HMR_8082" - name: "" - metabolites: !!omap - m01433c: -1 - m01433n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8361 + - id: "HMR_8361" - name: "" - metabolites: !!omap - m01513c: -1 - m01513n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8363 + - id: "HMR_8363" - name: "" - metabolites: !!omap - m01260c: -1 - m01260n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8412 + - id: "HMR_8412" - name: "" - metabolites: !!omap - m02631c: -1 - m02631n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8447 + - id: "HMR_8447" - name: "" - metabolites: !!omap - m01630c: -1 - m01630n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8476 + - id: "HMR_8476" - name: "" - metabolites: !!omap - m01668c: -1 - m01668n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112759 or ENSG00000174669 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12838422;PMID:12006583;PMID:14747464;PMID:16595656;PMID:17187757;PMID:17279066;PMID:7479738 + - gene_reaction_rule: "ENSG00000112759 or ENSG00000174669" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12838422;PMID:12006583;PMID:14747464;PMID:16595656;PMID:17187757;PMID:17279066;PMID:7479738" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8639 + - id: "HMR_8639" - name: "" - metabolites: !!omap - m01721c: -1 - m01721n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000030066 and ENSG00000047410 and ENSG00000058804 and ENSG00000069248 and ENSG00000075188 and ENSG00000085415 and ENSG00000093000 and ENSG00000094914 and ENSG00000095319 and ENSG00000101146 and ENSG00000102900 and ENSG00000108559 and ENSG00000110713 and ENSG00000111581 and ENSG00000113569 and ENSG00000119392 and ENSG00000120253 and ENSG00000124789 and ENSG00000125450 and ENSG00000126883 and ENSG00000132182 and ENSG00000136243 and ENSG00000138750 and ENSG00000139496 and ENSG00000153201 and ENSG00000153207 and ENSG00000155561 and ENSG00000157020 and ENSG00000157349 and ENSG00000163002 and ENSG00000196313 and ENSG00000213024 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000030066 and ENSG00000047410 and ENSG00000058804 and ENSG00000069248 and ENSG00000075188 and ENSG00000085415 and ENSG00000093000 and ENSG00000094914 and ENSG00000095319 and ENSG00000101146 and ENSG00000102900 and ENSG00000108559 and ENSG00000110713 and ENSG00000111581 and ENSG00000113569 and ENSG00000119392 and ENSG00000120253 and ENSG00000124789 and ENSG00000125450 and ENSG00000126883 and ENSG00000132182 and ENSG00000136243 and ENSG00000138750 and ENSG00000139496 and ENSG00000153201 and ENSG00000153207 and ENSG00000155561 and ENSG00000157020 and ENSG00000157349 and ENSG00000163002 and ENSG00000196313 and ENSG00000213024" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 2 - !!omap - - id: HMR_8789 + - id: "HMR_8789" - name: "" - metabolites: !!omap - m02581c: -1 - m02581n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8828 + - id: "HMR_8828" - name: "" - metabolites: !!omap - m02750c: -1 - m02750n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8837 + - id: "HMR_8837" - name: "" - metabolites: !!omap - m02736c: -1 - m02736n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8838 + - id: "HMR_8838" - name: "" - metabolites: !!omap - m00553c: -1 - m00553n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8839 + - id: "HMR_8839" - name: "" - metabolites: !!omap - m00521c: -1 - m00521n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8840 + - id: "HMR_8840" - name: "" - metabolites: !!omap - m00523c: -1 - m00523n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8841 + - id: "HMR_8841" - name: "" - metabolites: !!omap - m00526c: -1 - m00526n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8842 + - id: "HMR_8842" - name: "" - metabolites: !!omap - m02173c: -1 - m02173n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8843 + - id: "HMR_8843" - name: "" - metabolites: !!omap - m02492c: -1 - m02492n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8844 + - id: "HMR_8844" - name: "" - metabolites: !!omap - m00531c: -1 - m00531n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8845 + - id: "HMR_8845" - name: "" - metabolites: !!omap - m03057c: -1 - m03057n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8862 + - id: "HMR_8862" - name: "" - metabolites: !!omap - m03123c: -1 - m03123n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8868 + - id: "HMR_8868" - name: "" - metabolites: !!omap - m01673c: -1 - m01673n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8871 + - id: "HMR_8871" - name: "" - metabolites: !!omap - m01833c: -1 - m01833n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8894 + - id: "HMR_8894" - name: "" - metabolites: !!omap - m02016c: -1 - m02016n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8909 + - id: "HMR_8909" - name: "" - metabolites: !!omap - m02161c: -1 - m02161n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8918 + - id: "HMR_8918" - name: "" - metabolites: !!omap - m02426c: -1 - m02426n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9673 + - id: "HMR_9673" - name: "" - metabolites: !!omap - m02978c: 1 - m02978n: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9674 + - id: "HMR_9674" - name: "" - metabolites: !!omap - m00240c: 1 - m00240n: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8638 + - id: "HMR_8638" - name: "" - metabolites: !!omap - m02882c: -1 - m02882n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8642 + - id: "HMR_8642" - name: "" - metabolites: !!omap - m02881c: -1 - m02881n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4314 + - id: "HMR_4314" - name: "" - metabolites: !!omap - m01682c: -1 - m01682l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095139 or ENSG00000105669 or ENSG00000122218 or ENSG00000129083 or ENSG00000158623 or ENSG00000181789 or ENSG00000184432 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000095139 or ENSG00000105669 or ENSG00000122218 or ENSG00000129083 or ENSG00000158623 or ENSG00000181789 or ENSG00000184432" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9016 + - id: "HMR_9016" - name: "" - metabolites: !!omap - m02555c: -1 - m02555l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9018 + - id: "HMR_9018" - name: "" - metabolites: !!omap - m01285c: -1 - m01285l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0769 + - id: "HMR_0769" - name: "" - metabolites: !!omap - m01972c: -1 - m01972l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0791 + - id: "HMR_0791" - name: "" - metabolites: !!omap - m01679c: -1 - m01679l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0796 + - id: "HMR_0796" - name: "" - metabolites: !!omap - m02908c: -1 - m02908l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0798 + - id: "HMR_0798" - name: "" - metabolites: !!omap - m02929c: -1 - m02929l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0802 + - id: "HMR_0802" - name: "" - metabolites: !!omap - m01960c: -1 - m01960l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0831 + - id: "HMR_0831" - name: "" - metabolites: !!omap - m02008c: -1 - m02008l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0913 + - id: "HMR_0913" - name: "" - metabolites: !!omap - m02810c: -1 - m02810l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0929 + - id: "HMR_0929" - name: "" - metabolites: !!omap - m02682c: -1 - m02682l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1917 + - id: "HMR_1917" - name: "" - metabolites: !!omap - m01450c: -1 - m01450l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115677 or ENSG00000141458 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000115677 or ENSG00000141458" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_2040 + - id: "HMR_2040" - name: "" - metabolites: !!omap - m01790c: -1 - m01790l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_2087 + - id: "HMR_2087" - name: "" - metabolites: !!omap - m00986c: -1 - m00986l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_2090 + - id: "HMR_2090" - name: "" - metabolites: !!omap - m00413c: -1 - m00413l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_2101 + - id: "HMR_2101" - name: "" - metabolites: !!omap - m00411c: -1 - m00411l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3987 + - id: "HMR_3987" - name: "" - metabolites: !!omap - m01439l: 1 - m01439s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:17267599 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:17267599" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4887 + - id: "HMR_4887" - name: "" - metabolites: !!omap - m02040c: -1 - m02040l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:3888072;PMID:4684694 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:3888072;PMID:4684694" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4903 + - id: "HMR_4903" - name: "" - metabolites: !!omap - m02630c: -1 - m02630l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4907 + - id: "HMR_4907" - name: "" - metabolites: !!omap - m01285c: 1 @@ -211708,540 +211708,540 @@ - m01371l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000155085 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:1459;PMID:18406340;PMID:8132483;PMID:14598172 + - gene_reaction_rule: "ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000155085 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:1459;PMID:18406340;PMID:8132483;PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4962 + - id: "HMR_4962" - name: "" - metabolites: !!omap - m02527c: 1 - m02527l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:3988731;PMID:6706970;PMID:7050120 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:3988731;PMID:6706970;PMID:7050120" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5047 + - id: "HMR_5047" - name: "" - metabolites: !!omap - m02751c: 1 - m02751l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125454 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:8691743 + - gene_reaction_rule: "ENSG00000125454" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:8691743" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5048 + - id: "HMR_5048" - name: "" - metabolites: !!omap - m01365c: 1 - m01365l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123643 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:17466261;PMID:7718542;PMID:10049700;PMID:10072483;PMID:10391915;PMID:10574970;PMID:11004451;PMID:11311135;PMID:11389679;PMID:11557028;PMID:11564694;PMID:11742812;PMID:11827462;PMID:12117417;PMID:12824232;PMID:14574404;PMID:14770310;PMID:7690540;PMID:9751058;PMID:9759917;PMID:12883891;PMID:16288981;PMID:1904693;PMID:4424190;PMID:6432599;PMID:9868191;PMID:15465786;PMID:16082501 + - gene_reaction_rule: "ENSG00000123643" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:17466261;PMID:7718542;PMID:10049700;PMID:10072483;PMID:10391915;PMID:10574970;PMID:11004451;PMID:11311135;PMID:11389679;PMID:11557028;PMID:11564694;PMID:11742812;PMID:11827462;PMID:12117417;PMID:12824232;PMID:14574404;PMID:14770310;PMID:7690540;PMID:9751058;PMID:9759917;PMID:12883891;PMID:16288981;PMID:1904693;PMID:4424190;PMID:6432599;PMID:9868191;PMID:15465786;PMID:16082501" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5049 + - id: "HMR_5049" - name: "" - metabolites: !!omap - m01369c: 1 - m01369l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123643 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11452978 + - gene_reaction_rule: "ENSG00000123643" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11452978" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5050 + - id: "HMR_5050" - name: "" - metabolites: !!omap - m01370c: 1 - m01370l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123643 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000123643" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5051 + - id: "HMR_5051" - name: "" - metabolites: !!omap - m01628c: 1 - m01628l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123643 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:911815 + - gene_reaction_rule: "ENSG00000123643" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:911815" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5052 + - id: "HMR_5052" - name: "" - metabolites: !!omap - m01975c: 1 - m01975l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123643 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11311135;PMID:11742806;PMID:15280038;PMID:16785209;PMID:9829974 + - gene_reaction_rule: "ENSG00000123643" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11311135;PMID:11742806;PMID:15280038;PMID:16785209;PMID:9829974" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5053 + - id: "HMR_5053" - name: "" - metabolites: !!omap - m01986c: 1 - m01986l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123643 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16171773;PMID:911815 + - gene_reaction_rule: "ENSG00000123643" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16171773;PMID:911815" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5054 + - id: "HMR_5054" - name: "" - metabolites: !!omap - m02125c: 1 - m02125l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123643 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14770310;PMID:11004451;PMID:15465786;PMID:16082501;PMID:17466261;PMID:7718542;PMID:10049700;PMID:10072483;PMID:10391915;PMID:10574970;PMID:11311135;PMID:11389679;PMID:11557028;PMID:11564694;PMID:11742812;PMID:11827462;PMID:12117417;PMID:12824232;PMID:14574404;PMID:7690540;PMID:9751058;PMID:9759917;PMID:12883891;PMID:16288981;PMID:1904693;PMID:4424190;PMID:6432599;PMID:9868191 + - gene_reaction_rule: "ENSG00000123643" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14770310;PMID:11004451;PMID:15465786;PMID:16082501;PMID:17466261;PMID:7718542;PMID:10049700;PMID:10072483;PMID:10391915;PMID:10574970;PMID:11311135;PMID:11389679;PMID:11557028;PMID:11564694;PMID:11742812;PMID:11827462;PMID:12117417;PMID:12824232;PMID:14574404;PMID:7690540;PMID:9751058;PMID:9759917;PMID:12883891;PMID:16288981;PMID:1904693;PMID:4424190;PMID:6432599;PMID:9868191" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5055 + - id: "HMR_5055" - name: "" - metabolites: !!omap - m02360c: 1 - m02360l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123643 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:911815;PMID:12930836;UNIPROT:O75387;PMID:16288981 + - gene_reaction_rule: "ENSG00000123643" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:911815;PMID:12930836;UNIPROT:O75387;PMID:16288981" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5056 + - id: "HMR_5056" - name: "" - metabolites: !!omap - m02426c: 1 - m02426l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123643 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:17466261;PMID:7718542;PMID:10049700;PMID:10072483;PMID:10391915;PMID:10574970;PMID:11004451;PMID:11311135;PMID:11389679;PMID:11557028;PMID:11564694;PMID:11742812;PMID:11827462;PMID:12117417;PMID:12824232;PMID:14574404;PMID:14770310;PMID:7690540;PMID:9751058;PMID:9759917;PMID:12883891;PMID:16288981;PMID:1904693;PMID:4424190;PMID:6432599;PMID:9868191;PMID:15465786;PMID:16082501 + - gene_reaction_rule: "ENSG00000123643" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:17466261;PMID:7718542;PMID:10049700;PMID:10072483;PMID:10391915;PMID:10574970;PMID:11004451;PMID:11311135;PMID:11389679;PMID:11557028;PMID:11564694;PMID:11742812;PMID:11827462;PMID:12117417;PMID:12824232;PMID:14574404;PMID:14770310;PMID:7690540;PMID:9751058;PMID:9759917;PMID:12883891;PMID:16288981;PMID:1904693;PMID:4424190;PMID:6432599;PMID:9868191;PMID:15465786;PMID:16082501" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5057 + - id: "HMR_5057" - name: "" - metabolites: !!omap - m02471c: 1 - m02471l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123643 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12930836;UNIPROT:O75387;PMID:16288981;PMID:911815;PMID:10049700;PMID:10574970;PMID:11389679;PMID:11557028;PMID:11564694;PMID:12824232;PMID:14574404 + - gene_reaction_rule: "ENSG00000123643" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12930836;UNIPROT:O75387;PMID:16288981;PMID:911815;PMID:10049700;PMID:10574970;PMID:11389679;PMID:11557028;PMID:11564694;PMID:12824232;PMID:14574404" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5058 + - id: "HMR_5058" - name: "" - metabolites: !!omap - m02724c: 1 - m02724l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123643 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10049700;PMID:10574970;PMID:11389679;PMID:11557028;PMID:11564694;PMID:12824232;PMID:14574404 + - gene_reaction_rule: "ENSG00000123643" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10049700;PMID:10574970;PMID:11389679;PMID:11557028;PMID:11564694;PMID:12824232;PMID:14574404" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5059 + - id: "HMR_5059" - name: "" - metabolites: !!omap - m02770c: 1 - m02770l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123643 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11004451;PMID:911815 + - gene_reaction_rule: "ENSG00000123643" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11004451;PMID:911815" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5060 + - id: "HMR_5060" - name: "" - metabolites: !!omap - m02896c: 1 - m02896l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123643 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11004451;PMID:911815 + - gene_reaction_rule: "ENSG00000123643" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11004451;PMID:911815" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5061 + - id: "HMR_5061" - name: "" - metabolites: !!omap - m03089c: 1 - m03089l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123643 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000123643" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5062 + - id: "HMR_5062" - name: "" - metabolites: !!omap - m03101c: 1 - m03101l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104044 or ENSG00000123643 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12930836;UNIPROT:O75387;PMID:16288981;PMID:911815;PMID:10049700;PMID:10574970;PMID:11389679;PMID:11557028;PMID:11564694;PMID:12824232;PMID:14574404 + - gene_reaction_rule: "ENSG00000104044 or ENSG00000123643" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12930836;UNIPROT:O75387;PMID:16288981;PMID:911815;PMID:10049700;PMID:10574970;PMID:11389679;PMID:11557028;PMID:11564694;PMID:12824232;PMID:14574404" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5063 + - id: "HMR_5063" - name: "" - metabolites: !!omap - m03135c: 1 - m03135l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123643 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000123643" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5064 + - id: "HMR_5064" - name: "" - metabolites: !!omap - m01307c: 1 - m01307l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123643 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:4684694;PMID:911815 + - gene_reaction_rule: "ENSG00000123643" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:4684694;PMID:911815" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5065 + - id: "HMR_5065" - name: "" - metabolites: !!omap - m02184c: 1 - m02184l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123643 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11004451;PMID:11078698;PMID:11311135;PMID:11742806;PMID:16785209;PMID:911815 + - gene_reaction_rule: "ENSG00000123643" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11004451;PMID:11078698;PMID:11311135;PMID:11742806;PMID:16785209;PMID:911815" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5066 + - id: "HMR_5066" - name: "" - metabolites: !!omap - m02993c: 1 - m02993l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123643 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:911815 + - gene_reaction_rule: "ENSG00000123643" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:911815" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5067 + - id: "HMR_5067" - name: "" - metabolites: !!omap - m01974c: 1 - m01974l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123643 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000123643" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5197 + - id: "HMR_5197" - name: "" - metabolites: !!omap - m01308l: 1 - m01308s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:15843442;PMID:2396980;PMID:3578517;PMID:9160046 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:15843442;PMID:2396980;PMID:3578517;PMID:9160046" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5199 + - id: "HMR_5199" - name: "" - metabolites: !!omap - m01343l: 1 - m01343s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5201 + - id: "HMR_5201" - name: "" - metabolites: !!omap - m01345l: 1 - m01345s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12023832;PMID:15843442;PMID:2396980;PMID:3578517;PMID:7544533;PMID:9160046 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12023832;PMID:15843442;PMID:2396980;PMID:3578517;PMID:7544533;PMID:9160046" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5204 + - id: "HMR_5204" - name: "" - metabolites: !!omap - m01350l: 1 - m01350s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12006608 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12006608" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5212 + - id: "HMR_5212" - name: "" - metabolites: !!omap - m01827l: 1 - m01827s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10766195;PMID:11460506;PMID:18676163;PMID:2695254 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10766195;PMID:11460506;PMID:18676163;PMID:2695254" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5214 + - id: "HMR_5214" - name: "" - metabolites: !!omap - m02044l: 1 - m02044s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5217 + - id: "HMR_5217" - name: "" - metabolites: !!omap - m02753l: 1 - m02753s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5218 + - id: "HMR_5218" - name: "" - metabolites: !!omap - m02802l: 1 - m02802s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5220 + - id: "HMR_5220" - name: "" - metabolites: !!omap - m00186l: 1 - m00186s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5224 + - id: "HMR_5224" - name: "" - metabolites: !!omap - m02935c: -1 - m02935l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5226 + - id: "HMR_5226" - name: "" - metabolites: !!omap - m02012c: -1 - m02012l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5228 + - id: "HMR_5228" - name: "" - metabolites: !!omap - m01358c: -1 - m01358l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5230 + - id: "HMR_5230" - name: "" - metabolites: !!omap - m02414c: -1 - m02414l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7196 + - id: "HMR_7196" - name: "" - metabolites: !!omap - m02039c: -1 @@ -212250,495 +212250,495 @@ - m02543l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119899 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000119899" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7199 + - id: "HMR_7199" - name: "" - metabolites: !!omap - m00205c: -1 - m00205l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7224 + - id: "HMR_7224" - name: "" - metabolites: !!omap - m02054l: 1 - m02054s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7252 + - id: "HMR_7252" - name: "" - metabolites: !!omap - m01758c: 1 - m01758l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7283 + - id: "HMR_7283" - name: "" - metabolites: !!omap - m00198c: -1 - m00198l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7374 + - id: "HMR_7374" - name: "" - metabolites: !!omap - m02278l: 1 - m02278s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7430 + - id: "HMR_7430" - name: "" - metabolites: !!omap - m02453c: 1 - m02453l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7454 + - id: "HMR_7454" - name: "" - metabolites: !!omap - m02288l: 1 - m02288s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7470 + - id: "HMR_7470" - name: "" - metabolites: !!omap - m03110c: -1 - m03110l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7483 + - id: "HMR_7483" - name: "" - metabolites: !!omap - m02303l: 1 - m02303s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7500 + - id: "HMR_7500" - name: "" - metabolites: !!omap - m01517l: 1 - m01517s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7512 + - id: "HMR_7512" - name: "" - metabolites: !!omap - m01525l: 1 - m01525s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7524 + - id: "HMR_7524" - name: "" - metabolites: !!omap - m01533l: 1 - m01533s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7540 + - id: "HMR_7540" - name: "" - metabolites: !!omap - m01543l: 1 - m01543s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7556 + - id: "HMR_7556" - name: "" - metabolites: !!omap - m01554l: 1 - m01554s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7570 + - id: "HMR_7570" - name: "" - metabolites: !!omap - m02141l: 1 - m02141s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7581 + - id: "HMR_7581" - name: "" - metabolites: !!omap - m02672l: 1 - m02672s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7584 + - id: "HMR_7584" - name: "" - metabolites: !!omap - m02510l: 1 - m02510s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7710 + - id: "HMR_7710" - name: "" - metabolites: !!omap - m01279c: -1 - m01279l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000198246 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000198246" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7711 + - id: "HMR_7711" - name: "" - metabolites: !!omap - m01334c: -1 - m01334l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7714 + - id: "HMR_7714" - name: "" - metabolites: !!omap - m01280c: -1 - m01280l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000198246 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000198246" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7715 + - id: "HMR_7715" - name: "" - metabolites: !!omap - m03114c: -1 - m03114l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7718 + - id: "HMR_7718" - name: "" - metabolites: !!omap - m03123c: -1 - m03123l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000198246 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000198246" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7720 + - id: "HMR_7720" - name: "" - metabolites: !!omap - m01590c: -1 - m01590l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7722 + - id: "HMR_7722" - name: "" - metabolites: !!omap - m01630c: -1 - m01630l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000198246 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000198246" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7724 + - id: "HMR_7724" - name: "" - metabolites: !!omap - m01752c: -1 - m01752l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7726 + - id: "HMR_7726" - name: "" - metabolites: !!omap - m02996c: -1 - m02996l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000198246 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000198246" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7727 + - id: "HMR_7727" - name: "" - metabolites: !!omap - m02016c: -1 - m02016l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7729 + - id: "HMR_7729" - name: "" - metabolites: !!omap - m02038c: -1 - m02038l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000198246 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000198246" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7730 + - id: "HMR_7730" - name: "" - metabolites: !!omap - m01597c: -1 - m01597l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7732 + - id: "HMR_7732" - name: "" - metabolites: !!omap - m01674c: -1 - m01674l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7762 + - id: "HMR_7762" - name: "" - metabolites: !!omap - m02041c: -1 - m02041l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7770 + - id: "HMR_7770" - name: "" - metabolites: !!omap - m02946c: -1 - m02946l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7799 + - id: "HMR_7799" - name: "" - metabolites: !!omap - m01285c: 1 @@ -212749,315 +212749,315 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000033627 or ENSG00000047249 or ENSG00000071553 or ENSG00000105929 or ENSG00000110719 or ENSG00000117410 or ENSG00000147614 or ENSG00000159720 or ENSG00000185344 or ENSG00000185883 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000033627 or ENSG00000047249 or ENSG00000071553 or ENSG00000105929 or ENSG00000110719 or ENSG00000117410 or ENSG00000147614 or ENSG00000159720 or ENSG00000185344 or ENSG00000185883" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7907 + - id: "HMR_7907" - name: "" - metabolites: !!omap - m01652l: 1 - m01652s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7915 + - id: "HMR_7915" - name: "" - metabolites: !!omap - m00267c: -1 - m00267l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7918 + - id: "HMR_7918" - name: "" - metabolites: !!omap - m00268c: -1 - m00268l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7924 + - id: "HMR_7924" - name: "" - metabolites: !!omap - m00269c: -1 - m00269l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7927 + - id: "HMR_7927" - name: "" - metabolites: !!omap - m00266c: -1 - m00266l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8118 + - id: "HMR_8118" - name: "" - metabolites: !!omap - m02691c: -1 - m02691l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8119 + - id: "HMR_8119" - name: "" - metabolites: !!omap - m02692c: -1 - m02692l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8121 + - id: "HMR_8121" - name: "" - metabolites: !!omap - m02118c: -1 - m02118l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8123 + - id: "HMR_8123" - name: "" - metabolites: !!omap - m02119c: -1 - m02119l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8125 + - id: "HMR_8125" - name: "" - metabolites: !!omap - m02104c: -1 - m02104l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8127 + - id: "HMR_8127" - name: "" - metabolites: !!omap - m02105c: -1 - m02105l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8131 + - id: "HMR_8131" - name: "" - metabolites: !!omap - m01700c: -1 - m01700l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8134 + - id: "HMR_8134" - name: "" - metabolites: !!omap - m02980c: -1 - m02980l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8196 + - id: "HMR_8196" - name: "" - metabolites: !!omap - m01391c: -1 - m01391l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8200 + - id: "HMR_8200" - name: "" - metabolites: !!omap - m01324c: -1 - m01324l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8202 + - id: "HMR_8202" - name: "" - metabolites: !!omap - m02328c: -1 - m02328l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8203 + - id: "HMR_8203" - name: "" - metabolites: !!omap - m01959c: -1 - m01959l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8208 + - id: "HMR_8208" - name: "" - metabolites: !!omap - m02947c: -1 - m02947l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8216 + - id: "HMR_8216" - name: "" - metabolites: !!omap - m01694c: -1 - m01694l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8244 + - id: "HMR_8244" - name: "" - metabolites: !!omap - m02738c: -1 - m02738l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8355 + - id: "HMR_8355" - name: "" - metabolites: !!omap - m00970c: -1 @@ -213066,120 +213066,120 @@ - m02039l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123643 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000123643" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8370 + - id: "HMR_8370" - name: "" - metabolites: !!omap - m02525c: 1 - m02525l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8490 + - id: "HMR_8490" - name: "" - metabolites: !!omap - m01644c: -1 - m01644l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8491 + - id: "HMR_8491" - name: "" - metabolites: !!omap - m01639c: -1 - m01639l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8492 + - id: "HMR_8492" - name: "" - metabolites: !!omap - m01686c: -1 - m01686l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8531 + - id: "HMR_8531" - name: "" - metabolites: !!omap - m01831c: -1 - m01831l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8588 + - id: "HMR_8588" - name: "" - metabolites: !!omap - m02450c: -1 - m02450l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8590 + - id: "HMR_8590" - name: "" - metabolites: !!omap - m02452c: -1 - m02452l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8688 + - id: "HMR_8688" - name: "" - metabolites: !!omap - m01638c: -1 @@ -213188,105 +213188,105 @@ - m02039l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123643 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000123643" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8753 + - id: "HMR_8753" - name: "" - metabolites: !!omap - m02470c: -1 - m02470l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8763 + - id: "HMR_8763" - name: "" - metabolites: !!omap - m02332c: -1 - m02332l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8765 + - id: "HMR_8765" - name: "" - metabolites: !!omap - m01910c: 1 - m01910l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8858 + - id: "HMR_8858" - name: "" - metabolites: !!omap - m03106c: -1 - m03106l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8875 + - id: "HMR_8875" - name: "" - metabolites: !!omap - m01159c: 1 - m01159l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8885 + - id: "HMR_8885" - name: "" - metabolites: !!omap - m01965c: 1 - m01965l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8887 + - id: "HMR_8887" - name: "" - metabolites: !!omap - m01973c: -1 @@ -213295,15 +213295,15 @@ - m02039l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119899 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000119899" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8908 + - id: "HMR_8908" - name: "" - metabolites: !!omap - m02039c: -1 @@ -213312,15 +213312,15 @@ - m02384l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119899 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000119899" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8928 + - id: "HMR_8928" - name: "" - metabolites: !!omap - m01742c: -1 @@ -213329,1200 +213329,1200 @@ - m02039l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123643 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000123643" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9672 + - id: "HMR_9672" - name: "" - metabolites: !!omap - m10005c: 1 - m10005l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0612 + - id: "HMR_0612" - name: "" - metabolites: !!omap - m01427l: -1 - m01427r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3597 + - id: "HMR_3597" - name: "" - metabolites: !!omap - m01451l: -1 - m01451r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4961 + - id: "HMR_4961" - name: "" - metabolites: !!omap - m02527l: -1 - m02527r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:3988731;PMID:6706970;PMID:7050120 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:3988731;PMID:6706970;PMID:7050120" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5045 + - id: "HMR_5045" - name: "" - metabolites: !!omap - m01450l: -1 - m01450r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5248 + - id: "HMR_5248" - name: "" - metabolites: !!omap - m02958l: -1 - m02958r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5249 + - id: "HMR_5249" - name: "" - metabolites: !!omap - m02908l: -1 - m02908r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5250 + - id: "HMR_5250" - name: "" - metabolites: !!omap - m02750l: -1 - m02750r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5251 + - id: "HMR_5251" - name: "" - metabolites: !!omap - m02684l: -1 - m02684r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5252 + - id: "HMR_5252" - name: "" - metabolites: !!omap - m02685l: -1 - m02685r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5253 + - id: "HMR_5253" - name: "" - metabolites: !!omap - m02808l: -1 - m02808r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5255 + - id: "HMR_5255" - name: "" - metabolites: !!omap - m00656l: -1 - m00656r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7198 + - id: "HMR_7198" - name: "" - metabolites: !!omap - m00205l: -1 - m00205r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7284 + - id: "HMR_7284" - name: "" - metabolites: !!omap - m00198l: -1 - m00198r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9738 + - id: "HMR_9738" - name: "" - metabolites: !!omap - m00003c: 1 - m00003l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9739 + - id: "HMR_9739" - name: "" - metabolites: !!omap - m00008c: 1 - m00008l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9740 + - id: "HMR_9740" - name: "" - metabolites: !!omap - m00010c: 1 - m00010l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9741 + - id: "HMR_9741" - name: "" - metabolites: !!omap - m00017c: 1 - m00017l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9742 + - id: "HMR_9742" - name: "" - metabolites: !!omap - m00019c: 1 - m00019l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9743 + - id: "HMR_9743" - name: "" - metabolites: !!omap - m00021c: 1 - m00021l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9744 + - id: "HMR_9744" - name: "" - metabolites: !!omap - m00094c: 1 - m00094l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9745 + - id: "HMR_9745" - name: "" - metabolites: !!omap - m00104c: 1 - m00104l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9746 + - id: "HMR_9746" - name: "" - metabolites: !!omap - m00111c: 1 - m00111l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9747 + - id: "HMR_9747" - name: "" - metabolites: !!omap - m00114c: 1 - m00114l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9748 + - id: "HMR_9748" - name: "" - metabolites: !!omap - m00115c: 1 - m00115l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9749 + - id: "HMR_9749" - name: "" - metabolites: !!omap - m00117c: 1 - m00117l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9750 + - id: "HMR_9750" - name: "" - metabolites: !!omap - m00128c: 1 - m00128l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9751 + - id: "HMR_9751" - name: "" - metabolites: !!omap - m00132c: 1 - m00132l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9752 + - id: "HMR_9752" - name: "" - metabolites: !!omap - m00135c: 1 - m00135l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9753 + - id: "HMR_9753" - name: "" - metabolites: !!omap - m00260c: 1 - m00260l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9754 + - id: "HMR_9754" - name: "" - metabolites: !!omap - m00265c: 1 - m00265l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9755 + - id: "HMR_9755" - name: "" - metabolites: !!omap - m00315c: 1 - m00315l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9756 + - id: "HMR_9756" - name: "" - metabolites: !!omap - m00341c: 1 - m00341l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9757 + - id: "HMR_9757" - name: "" - metabolites: !!omap - m01197c: 1 - m01197l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9758 + - id: "HMR_9758" - name: "" - metabolites: !!omap - m01207c: 1 - m01207l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9759 + - id: "HMR_9759" - name: "" - metabolites: !!omap - m01235c: 1 - m01235l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9760 + - id: "HMR_9760" - name: "" - metabolites: !!omap - m01238c: 1 - m01238l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9761 + - id: "HMR_9761" - name: "" - metabolites: !!omap - m01291c: 1 - m01291l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9762 + - id: "HMR_9762" - name: "" - metabolites: !!omap - m01362c: 1 - m01362l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9763 + - id: "HMR_9763" - name: "" - metabolites: !!omap - m01373c: 1 - m01373l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9764 + - id: "HMR_9764" - name: "" - metabolites: !!omap - m01432c: 1 - m01432l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9765 + - id: "HMR_9765" - name: "" - metabolites: !!omap - m01582c: 1 - m01582l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9766 + - id: "HMR_9766" - name: "" - metabolites: !!omap - m01583c: 1 - m01583l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9767 + - id: "HMR_9767" - name: "" - metabolites: !!omap - m01584c: 1 - m01584l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9768 + - id: "HMR_9768" - name: "" - metabolites: !!omap - m01585c: 1 - m01585l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9769 + - id: "HMR_9769" - name: "" - metabolites: !!omap - m01689c: 1 - m01689l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9770 + - id: "HMR_9770" - name: "" - metabolites: !!omap - m01696c: 1 - m01696l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9771 + - id: "HMR_9771" - name: "" - metabolites: !!omap - m01741c: 1 - m01741l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9772 + - id: "HMR_9772" - name: "" - metabolites: !!omap - m01771c: 1 - m01771l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9773 + - id: "HMR_9773" - name: "" - metabolites: !!omap - m01778c: 1 - m01778l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9774 + - id: "HMR_9774" - name: "" - metabolites: !!omap - m01784c: 1 - m01784l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9775 + - id: "HMR_9775" - name: "" - metabolites: !!omap - m01932c: 1 - m01932l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9776 + - id: "HMR_9776" - name: "" - metabolites: !!omap - m02053c: 1 - m02053l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9777 + - id: "HMR_9777" - name: "" - metabolites: !!omap - m02344c: 1 - m02344l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9778 + - id: "HMR_9778" - name: "" - metabolites: !!omap - m02385c: 1 - m02385l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9779 + - id: "HMR_9779" - name: "" - metabolites: !!omap - m02387c: 1 - m02387l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9780 + - id: "HMR_9780" - name: "" - metabolites: !!omap - m02389c: 1 - m02389l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9781 + - id: "HMR_9781" - name: "" - metabolites: !!omap - m02456c: 1 - m02456l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9782 + - id: "HMR_9782" - name: "" - metabolites: !!omap - m02457c: 1 - m02457l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9783 + - id: "HMR_9783" - name: "" - metabolites: !!omap - m02494c: 1 - m02494l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9784 + - id: "HMR_9784" - name: "" - metabolites: !!omap - m02564c: 1 - m02564l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9785 + - id: "HMR_9785" - name: "" - metabolites: !!omap - m02613c: 1 - m02613l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9786 + - id: "HMR_9786" - name: "" - metabolites: !!omap - m02646c: 1 - m02646l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9787 + - id: "HMR_9787" - name: "" - metabolites: !!omap - m02648c: 1 - m02648l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9788 + - id: "HMR_9788" - name: "" - metabolites: !!omap - m02674c: 1 - m02674l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9789 + - id: "HMR_9789" - name: "" - metabolites: !!omap - m02675c: 1 - m02675l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9790 + - id: "HMR_9790" - name: "" - metabolites: !!omap - m02690c: 1 - m02690l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9791 + - id: "HMR_9791" - name: "" - metabolites: !!omap - m02745c: 1 - m02745l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9792 + - id: "HMR_9792" - name: "" - metabolites: !!omap - m02938c: 1 - m02938l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9793 + - id: "HMR_9793" - name: "" - metabolites: !!omap - m02939c: 1 - m02939l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000083807 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000083807" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9794 + - id: "HMR_9794" - name: "" - metabolites: !!omap - m03045c: 1 - m03045l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9795 + - id: "HMR_9795" - name: "" - metabolites: !!omap - m03051c: 1 - m03051l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9796 + - id: "HMR_9796" - name: "" - metabolites: !!omap - m03153c: 1 - m03153l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0652 + - id: "HMR_0652" - name: "" - metabolites: !!omap - m01428c: -1 - m01428g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0717 + - id: "HMR_0717" - name: "" - metabolites: !!omap - m01590c: -1 - m01590g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0731 + - id: "HMR_0731" - name: "" - metabolites: !!omap - m01430c: -1 - m01430g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113163 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113163" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0732 + - id: "HMR_0732" - name: "" - metabolites: !!omap - m01597c: -1 - m01597g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0734 + - id: "HMR_0734" - name: "" - metabolites: !!omap - m02684c: -1 - m02684g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0917 + - id: "HMR_0917" - name: "" - metabolites: !!omap - m03114c: -1 - m03114g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0918 + - id: "HMR_0918" - name: "" - metabolites: !!omap - m03107c: -1 @@ -214531,30 +214531,30 @@ - m03114g: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117620 or ENSG00000130958 or ENSG00000205060 or ENSG00000285269 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000117620 or ENSG00000130958 or ENSG00000205060 or ENSG00000285269" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1916 + - id: "HMR_1916" - name: "" - metabolites: !!omap - m01450c: -1 - m01450g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115677 or ENSG00000141458 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000115677 or ENSG00000141458" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4125 + - id: "HMR_4125" - name: "" - metabolites: !!omap - m03112c: -1 @@ -214563,105 +214563,105 @@ - m03114g: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000205060 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000205060" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4892 + - id: "HMR_4892" - name: "" - metabolites: !!omap - m02040c: -1 - m02040g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4902 + - id: "HMR_4902" - name: "" - metabolites: !!omap - m02630c: -1 - m02630g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4955 + - id: "HMR_4955" - name: "" - metabolites: !!omap - m01712c: 1 - m01712g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6577 + - id: "HMR_6577" - name: "" - metabolites: !!omap - m02750c: -1 - m02750g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6578 + - id: "HMR_6578" - name: "" - metabolites: !!omap - m01371c: -1 - m01371g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095139 or ENSG00000105669 or ENSG00000122218 or ENSG00000129083 or ENSG00000158623 or ENSG00000181789 or ENSG00000184432 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000095139 or ENSG00000105669 or ENSG00000122218 or ENSG00000129083 or ENSG00000158623 or ENSG00000181789 or ENSG00000184432" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7201 + - id: "HMR_7201" - name: "" - metabolites: !!omap - m03156g: 1 - m03156r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7204 + - id: "HMR_7204" - name: "" - metabolites: !!omap - m03109c: -1 @@ -214670,45 +214670,45 @@ - m03114g: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7331 + - id: "HMR_7331" - name: "" - metabolites: !!omap - m02016c: -1 - m02016g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7431 + - id: "HMR_7431" - name: "" - metabolites: !!omap - m00205c: -1 - m00205g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7433 + - id: "HMR_7433" - name: "" - metabolites: !!omap - m03110c: -1 @@ -214717,15 +214717,15 @@ - m03114g: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000102100 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000102100" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7434 + - id: "HMR_7434" - name: "" - metabolites: !!omap - m03111c: -1 @@ -214734,60 +214734,60 @@ - m03114g: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130958 or ENSG00000285269 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000130958 or ENSG00000285269" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7435 + - id: "HMR_7435" - name: "" - metabolites: !!omap - m03111c: -1 - m03111g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7437 + - id: "HMR_7437" - name: "" - metabolites: !!omap - m02907c: 1 - m02907g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7675 + - id: "HMR_7675" - name: "" - metabolites: !!omap - m01965c: -1 - m01965g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117394 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000117394" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7693 + - id: "HMR_7693" - name: "" - metabolites: !!omap - m01590c: 1 @@ -214796,15 +214796,15 @@ - m01592g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000164414 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000164414" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7694 + - id: "HMR_7694" - name: "" - metabolites: !!omap - m02039c: -1 @@ -214813,15 +214813,15 @@ - m02200g: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000065923 or ENSG00000197818 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000065923 or ENSG00000197818" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7695 + - id: "HMR_7695" - name: "" - metabolites: !!omap - m02039c: -1 @@ -214830,15 +214830,15 @@ - m02519g: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000065923 or ENSG00000197818 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000065923 or ENSG00000197818" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7733 + - id: "HMR_7733" - name: "" - metabolites: !!omap - m01950c: -1 @@ -214847,30 +214847,30 @@ - m02016g: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000181830 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000181830" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7740 + - id: "HMR_7740" - name: "" - metabolites: !!omap - m02682c: -1 - m02682g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157593 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000157593" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7743 + - id: "HMR_7743" - name: "" - metabolites: !!omap - m01948c: -1 @@ -214879,675 +214879,675 @@ - m02039g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000025800 or ENSG00000130227 or ENSG00000169180 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000025800 or ENSG00000130227 or ENSG00000169180" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7759 + - id: "HMR_7759" - name: "" - metabolites: !!omap - m01588c: -1 - m01588g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107819 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000107819" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7761 + - id: "HMR_7761" - name: "" - metabolites: !!omap - m01736c: -1 - m01736g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000164638 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000164638" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7793 + - id: "HMR_7793" - name: "" - metabolites: !!omap - m02039c: -1 - m02039g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8084 + - id: "HMR_8084" - name: "" - metabolites: !!omap - m01433c: -1 - m01433g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8086 + - id: "HMR_8086" - name: "" - metabolites: !!omap - m01419c: -1 - m01419g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8145 + - id: "HMR_8145" - name: "" - metabolites: !!omap - m02328c: -1 - m02328g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8146 + - id: "HMR_8146" - name: "" - metabolites: !!omap - m01972c: -1 - m01972g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113163 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113163" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8153 + - id: "HMR_8153" - name: "" - metabolites: !!omap - m01919c: -1 - m01919g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8157 + - id: "HMR_8157" - name: "" - metabolites: !!omap - m02902c: -1 - m02902g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8160 + - id: "HMR_8160" - name: "" - metabolites: !!omap - m02903c: -1 - m02903g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8163 + - id: "HMR_8163" - name: "" - metabolites: !!omap - m01711c: -1 - m01711g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8193 + - id: "HMR_8193" - name: "" - metabolites: !!omap - m02525c: -1 - m02525g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8195 + - id: "HMR_8195" - name: "" - metabolites: !!omap - m01391c: -1 - m01391g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8199 + - id: "HMR_8199" - name: "" - metabolites: !!omap - m01324c: -1 - m01324g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8205 + - id: "HMR_8205" - name: "" - metabolites: !!omap - m01679c: -1 - m01679g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8207 + - id: "HMR_8207" - name: "" - metabolites: !!omap - m02947c: -1 - m02947g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8213 + - id: "HMR_8213" - name: "" - metabolites: !!omap - m01695c: -1 - m01695g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8215 + - id: "HMR_8215" - name: "" - metabolites: !!omap - m01694c: -1 - m01694g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8222 + - id: "HMR_8222" - name: "" - metabolites: !!omap - m01861c: -1 - m01861g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8230 + - id: "HMR_8230" - name: "" - metabolites: !!omap - m01244c: -1 - m01244g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8232 + - id: "HMR_8232" - name: "" - metabolites: !!omap - m01245c: -1 - m01245g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8241 + - id: "HMR_8241" - name: "" - metabolites: !!omap - m02908c: -1 - m02908g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8243 + - id: "HMR_8243" - name: "" - metabolites: !!omap - m02738c: -1 - m02738g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8252 + - id: "HMR_8252" - name: "" - metabolites: !!omap - m01917c: -1 - m01917g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8259 + - id: "HMR_8259" - name: "" - metabolites: !!omap - m01801g: -1 - m01801l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8265 + - id: "HMR_8265" - name: "" - metabolites: !!omap - m01850c: -1 - m01850g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8269 + - id: "HMR_8269" - name: "" - metabolites: !!omap - m01859c: -1 - m01859g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8272 + - id: "HMR_8272" - name: "" - metabolites: !!omap - m01999c: -1 - m01999g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8282 + - id: "HMR_8282" - name: "" - metabolites: !!omap - m01914c: -1 - m01914g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8289 + - id: "HMR_8289" - name: "" - metabolites: !!omap - m03096c: -1 - m03096g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8296 + - id: "HMR_8296" - name: "" - metabolites: !!omap - m03098c: -1 - m03098g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8299 + - id: "HMR_8299" - name: "" - metabolites: !!omap - m01915c: -1 - m01915g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8303 + - id: "HMR_8303" - name: "" - metabolites: !!omap - m01916c: -1 - m01916g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8310 + - id: "HMR_8310" - name: "" - metabolites: !!omap - m01852c: -1 - m01852g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8312 + - id: "HMR_8312" - name: "" - metabolites: !!omap - m01851c: -1 - m01851g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8314 + - id: "HMR_8314" - name: "" - metabolites: !!omap - m01853c: -1 - m01853g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8320 + - id: "HMR_8320" - name: "" - metabolites: !!omap - m02198c: -1 - m02198g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8323 + - id: "HMR_8323" - name: "" - metabolites: !!omap - m02331c: -1 - m02331g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8328 + - id: "HMR_8328" - name: "" - metabolites: !!omap - m00744c: -1 - m00744g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8335 + - id: "HMR_8335" - name: "" - metabolites: !!omap - m02164c: -1 - m02164g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8338 + - id: "HMR_8338" - name: "" - metabolites: !!omap - m03138c: -1 - m03138g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8496 + - id: "HMR_8496" - name: "" - metabolites: !!omap - m01252c: -1 - m01252g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000152779 or ENSG00000165449 or ENSG00000174327 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000152779 or ENSG00000165449 or ENSG00000174327" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8524 + - id: "HMR_8524" - name: "" - metabolites: !!omap - m01513c: -1 - m01513g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8527 + - id: "HMR_8527" - name: "" - metabolites: !!omap - m02685c: -1 - m02685g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8661 + - id: "HMR_8661" - name: "" - metabolites: !!omap - m01285c: 1 @@ -215559,75 +215559,75 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8673 + - id: "HMR_8673" - name: "" - metabolites: !!omap - m01596c: -1 - m01596g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8793 + - id: "HMR_8793" - name: "" - metabolites: !!omap - m02681c: 1 - m02681g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8834 + - id: "HMR_8834" - name: "" - metabolites: !!omap - m02751c: 1 - m02751g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8856 + - id: "HMR_8856" - name: "" - metabolites: !!omap - m03107c: -1 - m03107g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8857 + - id: "HMR_8857" - name: "" - metabolites: !!omap - m03108c: -1 @@ -215636,705 +215636,705 @@ - m03114g: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117620 or ENSG00000130958 or ENSG00000205060 or ENSG00000285269 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000117620 or ENSG00000130958 or ENSG00000205060 or ENSG00000285269" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8874 + - id: "HMR_8874" - name: "" - metabolites: !!omap - m02199c: -1 - m02199g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8880 + - id: "HMR_8880" - name: "" - metabolites: !!omap - m01944c: -1 - m01944g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8882 + - id: "HMR_8882" - name: "" - metabolites: !!omap - m01945c: -1 - m01945g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8895 + - id: "HMR_8895" - name: "" - metabolites: !!omap - m02019c: -1 - m02019g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8897 + - id: "HMR_8897" - name: "" - metabolites: !!omap - m02018c: -1 - m02018g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8900 + - id: "HMR_8900" - name: "" - metabolites: !!omap - m02024c: -1 - m02024g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8902 + - id: "HMR_8902" - name: "" - metabolites: !!omap - m02023c: -1 - m02023g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8904 + - id: "HMR_8904" - name: "" - metabolites: !!omap - m02028c: -1 - m02028g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8920 + - id: "HMR_8920" - name: "" - metabolites: !!omap - m02453c: 1 - m02453g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9199 + - id: "HMR_9199" - name: "" - metabolites: !!omap - m03157c: -1 - m03157g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000152683 or ENSG00000162695 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000152683 or ENSG00000162695" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9664 + - id: "HMR_9664" - name: "" - metabolites: !!omap - m00240c: 1 - m00240g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9665 + - id: "HMR_9665" - name: "" - metabolites: !!omap - m01334c: 1 - m01334g: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9666 + - id: "HMR_9666" - name: "" - metabolites: !!omap - m02728c: 1 - m02728g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9667 + - id: "HMR_9667" - name: "" - metabolites: !!omap - m02516c: 1 - m02516g: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9668 + - id: "HMR_9668" - name: "" - metabolites: !!omap - m01955c: 1 - m01955g: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9669 + - id: "HMR_9669" - name: "" - metabolites: !!omap - m01610c: 1 - m01610g: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9670 + - id: "HMR_9670" - name: "" - metabolites: !!omap - m01612c: 1 - m01612g: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9671 + - id: "HMR_9671" - name: "" - metabolites: !!omap - m01613c: 1 - m01613g: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7182 + - id: "HMR_7182" - name: "" - metabolites: !!omap - m01872g: -1 - m01872s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7330 + - id: "HMR_7330" - name: "" - metabolites: !!omap - m01870g: -1 - m01870s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7432 + - id: "HMR_7432" - name: "" - metabolites: !!omap - m00205g: -1 - m00205l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4313 + - id: "HMR_4313" - name: "" - metabolites: !!omap - m01682c: -1 - m01682g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000095139 or ENSG00000105669 or ENSG00000122218 or ENSG00000129083 or ENSG00000158623 or ENSG00000181789 or ENSG00000184432 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000095139 or ENSG00000105669 or ENSG00000122218 or ENSG00000129083 or ENSG00000158623 or ENSG00000181789 or ENSG00000184432" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7307 + - id: "HMR_7307" - name: "" - metabolites: !!omap - m00153g: 1 - m00153r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1809 + - id: "HMR_1809" - name: "" - metabolites: !!omap - m01078c: -1 - m01078r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0020 + - id: "HMR_0020" - name: "" - metabolites: !!omap - m01451c: -1 - m01451r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0461 + - id: "HMR_0461" - name: "" - metabolites: !!omap - m02684c: -1 - m02684r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000141179 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000141179" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0462 + - id: "HMR_0462" - name: "" - metabolites: !!omap - m00656c: -1 - m00656r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0464 + - id: "HMR_0464" - name: "" - metabolites: !!omap - m02685c: -1 - m02685r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0466 + - id: "HMR_0466" - name: "" - metabolites: !!omap - m02808c: -1 - m02808r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0467 + - id: "HMR_0467" - name: "" - metabolites: !!omap - m02750c: -1 - m02750r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0664 + - id: "HMR_0664" - name: "" - metabolites: !!omap - m02958c: -1 - m02958r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134780 or ENSG00000164535 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10856719 + - gene_reaction_rule: "ENSG00000134780 or ENSG00000164535" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0730 + - id: "HMR_0730" - name: "" - metabolites: !!omap - m01430c: -1 - m01430r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101558 or ENSG00000113163 or ENSG00000124164 or ENSG00000133275 or ENSG00000163590 or ENSG00000184304 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10856719 + - gene_reaction_rule: "ENSG00000101558 or ENSG00000113163 or ENSG00000124164 or ENSG00000133275 or ENSG00000163590 or ENSG00000184304" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0768 + - id: "HMR_0768" - name: "" - metabolites: !!omap - m01972c: -1 - m01972r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113163 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10856719 + - gene_reaction_rule: "ENSG00000113163" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0771 + - id: "HMR_0771" - name: "" - metabolites: !!omap - m02908c: -1 - m02908r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_0966 + - id: "HMR_0966" - name: "" - metabolites: !!omap - m01040c: -1 - m01040r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1035 + - id: "HMR_1035" - name: "" - metabolites: !!omap - m02026c: -1 - m02026r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1143 + - id: "HMR_1143" - name: "" - metabolites: !!omap - m01124c: -1 - m01124r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1189 + - id: "HMR_1189" - name: "" - metabolites: !!omap - m01118c: -1 - m01118r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1240 + - id: "HMR_1240" - name: "" - metabolites: !!omap - m00256c: 1 - m00256r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1252 + - id: "HMR_1252" - name: "" - metabolites: !!omap - m00582c: -1 - m00582r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1269 + - id: "HMR_1269" - name: "" - metabolites: !!omap - m00258c: -1 - m00258r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1306 + - id: "HMR_1306" - name: "" - metabolites: !!omap - m02792c: -1 - m02792r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1309 + - id: "HMR_1309" - name: "" - metabolites: !!omap - m02795c: -1 - m02795r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1311 + - id: "HMR_1311" - name: "" - metabolites: !!omap - m02794c: -1 - m02794r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1316 + - id: "HMR_1316" - name: "" - metabolites: !!omap - m02995c: -1 - m02995r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1331 + - id: "HMR_1331" - name: "" - metabolites: !!omap - m02783c: -1 - m02783r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1392 + - id: "HMR_1392" - name: "" - metabolites: !!omap - m02039c: -2 @@ -216343,225 +216343,225 @@ - m02793c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073756 or ENSG00000095303 - - rxnFrom: HMRdatabase - - eccodes: 1.14.99.1 - - references: + - gene_reaction_rule: "ENSG00000073756 or ENSG00000095303" + - rxnFrom: "HMRdatabase" + - eccodes: "1.14.99.1" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1530 + - id: "HMR_1530" - name: "" - metabolites: !!omap - m01450c: -1 - m01450r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1672 + - id: "HMR_1672" - name: "" - metabolites: !!omap - m01182c: -1 - m01182r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12543708 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12543708" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1937 + - id: "HMR_1937" - name: "" - metabolites: !!omap - m02763c: -1 - m02763r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_1998 + - id: "HMR_1998" - name: "" - metabolites: !!omap - m01615c: -1 - m01615r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_2039 + - id: "HMR_2039" - name: "" - metabolites: !!omap - m01790c: -1 - m01790r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_2066 + - id: "HMR_2066" - name: "" - metabolites: !!omap - m01791c: -1 - m01791r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_2081 + - id: "HMR_2081" - name: "" - metabolites: !!omap - m01793c: -1 - m01793r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_2092 + - id: "HMR_2092" - name: "" - metabolites: !!omap - m00412c: -1 - m00412r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_2103 + - id: "HMR_2103" - name: "" - metabolites: !!omap - m00410c: -1 - m00410r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_2554 + - id: "HMR_2554" - name: "" - metabolites: !!omap - m02365c: -1 - m02365r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_2569 + - id: "HMR_2569" - name: "" - metabolites: !!omap - m01784c: -1 - m01784r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_2777 + - id: "HMR_2777" - name: "" - metabolites: !!omap - m02348c: -1 - m02348r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10460205;PMID:1296165;PMID:16288981;PMID:17466261;PMID:2199597;PMID:6219439;PMID:6361812;PMID:8353366 + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10460205;PMID:1296165;PMID:16288981;PMID:17466261;PMID:2199597;PMID:6219439;PMID:6361812;PMID:8353366" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_3953 + - id: "HMR_3953" - name: "" - metabolites: !!omap - m01169c: -1 - m01169r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4123 + - id: "HMR_4123" - name: "" - metabolites: !!omap - m03109c: -1 - m03109r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16611737;PMID:18307097 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16611737;PMID:18307097" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4126 + - id: "HMR_4126" - name: "" - metabolites: !!omap - m03112c: 1 @@ -216570,30 +216570,30 @@ - m03114r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:9759482 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:9759482" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4765 + - id: "HMR_4765" - name: "" - metabolites: !!omap - m01396c: -1 - m01396r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4846 + - id: "HMR_4846" - name: "" - metabolites: !!omap - m01334c: -1 @@ -216602,90 +216602,90 @@ - m01371r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172;PMID:18406340;PMID:9759482 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172;PMID:18406340;PMID:9759482" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4856 + - id: "HMR_4856" - name: "" - metabolites: !!omap - m01968c: -1 - m01968r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105220 or ENSG00000137700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11879177;PMID:12062448 + - gene_reaction_rule: "ENSG00000105220 or ENSG00000137700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11879177;PMID:12062448" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4860 + - id: "HMR_4860" - name: "" - metabolites: !!omap - m02171c: -1 - m02171r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:10785372;PMID:1313850;PMID:1992775;PMID:3085711;PMID:7822436;PMID:8240303 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:10785372;PMID:1313850;PMID:1992775;PMID:3085711;PMID:7822436;PMID:8240303" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4876 + - id: "HMR_4876" - name: "" - metabolites: !!omap - m02845c: -1 - m02845r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4877 + - id: "HMR_4877" - name: "" - metabolites: !!omap - m02846c: -1 - m02846r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:16756494 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:16756494" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4878 + - id: "HMR_4878" - name: "" - metabolites: !!omap - m03108c: -1 - m03108r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:7050120 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:7050120" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4879 + - id: "HMR_4879" - name: "" - metabolites: !!omap - m03108c: -1 @@ -216694,15 +216694,15 @@ - m03114r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:9759482 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:9759482" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4880 + - id: "HMR_4880" - name: "" - metabolites: !!omap - m03109c: -1 @@ -216711,15 +216711,15 @@ - m03114r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116704 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:9759482 + - gene_reaction_rule: "ENSG00000116704" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:9759482" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4881 + - id: "HMR_4881" - name: "" - metabolites: !!omap - m03111c: -1 @@ -216728,45 +216728,45 @@ - m03114r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130958 or ENSG00000285269 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12759756;PMID:17466261;PMID:9759482 + - gene_reaction_rule: "ENSG00000130958 or ENSG00000285269" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12759756;PMID:17466261;PMID:9759482" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4883 + - id: "HMR_4883" - name: "" - metabolites: !!omap - m02040c: -1 - m02040r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:3888072;PMID:4684694 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:3888072;PMID:4684694" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4894 + - id: "HMR_4894" - name: "" - metabolites: !!omap - m02630c: -1 - m02630r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4906 + - id: "HMR_4906" - name: "" - metabolites: !!omap - m01285c: 1 @@ -216775,90 +216775,90 @@ - m01371r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000155085 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:1459;PMID:18406340;PMID:8132483;PMID:14598172 + - gene_reaction_rule: "ENSG00000011052 or ENSG00000103024 or ENSG00000103202 or ENSG00000112981 or ENSG00000143156 or ENSG00000155085 or ENSG00000172113 or ENSG00000239672 or ENSG00000243678" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:1459;PMID:18406340;PMID:8132483;PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4913 + - id: "HMR_4913" - name: "" - metabolites: !!omap - m01597c: -1 - m01597r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4917 + - id: "HMR_4917" - name: "" - metabolites: !!omap - m01596c: -1 - m01596r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:3888072;PMID:911815 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:3888072;PMID:911815" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4941 + - id: "HMR_4941" - name: "" - metabolites: !!omap - m01590c: -1 - m01590r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:7325681 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:7325681" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4942 + - id: "HMR_4942" - name: "" - metabolites: !!omap - m01833c: -1 - m01833r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000173638 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11300510;PMID:16171773;PMID:18288723;PMID:3768436;PMID:911815 + - gene_reaction_rule: "ENSG00000173638" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11300510;PMID:16171773;PMID:18288723;PMID:3768436;PMID:911815" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_4960 + - id: "HMR_4960" - name: "" - metabolites: !!omap - m02527c: -1 - m02527r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:3988731;PMID:6706970;PMID:7050120 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:3988731;PMID:6706970;PMID:7050120" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5004 + - id: "HMR_5004" - name: "" - metabolites: !!omap - m01396c: -1 @@ -216867,150 +216867,150 @@ - m02519r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000047457 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:8725559 + - gene_reaction_rule: "ENSG00000047457" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:8725559" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5012 + - id: "HMR_5012" - name: "" - metabolites: !!omap - m02524r: -1 - m02524s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5027 + - id: "HMR_5027" - name: "" - metabolites: !!omap - m01965c: -1 - m01965r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117394 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:11780753;PMID:11780754;PMID:11882499;PMID:16314530;PMID:16669350;PMID:9770484 + - gene_reaction_rule: "ENSG00000117394" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:11780753;PMID:11780754;PMID:11882499;PMID:16314530;PMID:16669350;PMID:9770484" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5203 + - id: "HMR_5203" - name: "" - metabolites: !!omap - m01351c: -1 - m01351r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12006608 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12006608" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5205 + - id: "HMR_5205" - name: "" - metabolites: !!omap - m01350c: -1 - m01350r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12006608 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12006608" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5207 + - id: "HMR_5207" - name: "" - metabolites: !!omap - m01353c: -1 - m01353r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12006608 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12006608" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5209 + - id: "HMR_5209" - name: "" - metabolites: !!omap - m01354c: -1 - m01354r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12006608 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12006608" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5210 + - id: "HMR_5210" - name: "" - metabolites: !!omap - m01355c: -1 - m01355r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12006608 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12006608" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5211 + - id: "HMR_5211" - name: "" - metabolites: !!omap - m01359c: -1 - m01359r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12006608 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12006608" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5245 + - id: "HMR_5245" - name: "" - metabolites: !!omap - m03147r: -1 - m03147s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5342 + - id: "HMR_5342" - name: "" - metabolites: !!omap - m02039c: -1 @@ -217019,45 +217019,45 @@ - m02751r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104888 or ENSG00000124564 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:8691743 + - gene_reaction_rule: "ENSG00000104888 or ENSG00000124564" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:8691743" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5347 + - id: "HMR_5347" - name: "" - metabolites: !!omap - m02759c: -1 - m02759r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:3031070;PMID:6253473 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:3031070;PMID:6253473" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_5354 + - id: "HMR_5354" - name: "" - metabolites: !!omap - m01425c: -1 - m01425r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6385 + - id: "HMR_6385" - name: "" - metabolites: !!omap - m03107c: -1 @@ -217066,15 +217066,15 @@ - m03114r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000102100 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12759756 + - gene_reaction_rule: "ENSG00000102100" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12759756" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6386 + - id: "HMR_6386" - name: "" - metabolites: !!omap - m01968c: -1 @@ -217083,15 +217083,15 @@ - m02751r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137700 - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12811562 + - gene_reaction_rule: "ENSG00000137700" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12811562" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6387 + - id: "HMR_6387" - name: "" - metabolites: !!omap - m02519c: -1 @@ -217100,15 +217100,15 @@ - m02751r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:17466261 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:17466261" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6388 + - id: "HMR_6388" - name: "" - metabolites: !!omap - m02751c: 1 @@ -217117,780 +217117,780 @@ - m02759r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:8691743 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:8691743" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6425 + - id: "HMR_6425" - name: "" - metabolites: !!omap - m01330c: -1 - m01330r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6430 + - id: "HMR_6430" - name: "" - metabolites: !!omap - m00345c: 1 - m00345r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6440 + - id: "HMR_6440" - name: "" - metabolites: !!omap - m01938c: -1 - m01938r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6445 + - id: "HMR_6445" - name: "" - metabolites: !!omap - m00347c: 1 - m00347r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6463 + - id: "HMR_6463" - name: "" - metabolites: !!omap - m01935c: -1 - m01935r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6468 + - id: "HMR_6468" - name: "" - metabolites: !!omap - m00346c: -1 - m00346r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6475 + - id: "HMR_6475" - name: "" - metabolites: !!omap - m01327c: -1 - m01327r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6480 + - id: "HMR_6480" - name: "" - metabolites: !!omap - m00344c: 1 - m00344r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6629 + - id: "HMR_6629" - name: "" - metabolites: !!omap - m02834c: -1 - m02834r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6797 + - id: "HMR_6797" - name: "" - metabolites: !!omap - m03052c: -1 - m03052r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_6990 + - id: "HMR_6990" - name: "" - metabolites: !!omap - m02174c: -1 - m02174r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7257 + - id: "HMR_7257" - name: "" - metabolites: !!omap - m01733c: 1 - m01733r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7262 + - id: "HMR_7262" - name: "" - metabolites: !!omap - m01730c: -1 - m01730r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7272 + - id: "HMR_7272" - name: "" - metabolites: !!omap - m01734c: -1 - m01734r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7273 + - id: "HMR_7273" - name: "" - metabolites: !!omap - m01866c: -1 - m01866r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7649 + - id: "HMR_7649" - name: "" - metabolites: !!omap - m01786c: -1 - m01786r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 or ENSG00000101187 or ENSG00000111700 or ENSG00000134538 or ENSG00000139155 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000084453 or ENSG00000101187 or ENSG00000111700 or ENSG00000134538 or ENSG00000139155" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7766 + - id: "HMR_7766" - name: "" - metabolites: !!omap - m02877c: -1 - m02877r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7768 + - id: "HMR_7768" - name: "" - metabolites: !!omap - m02871c: -1 - m02871r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7772 + - id: "HMR_7772" - name: "" - metabolites: !!omap - m02552c: 1 - m02552r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7776 + - id: "HMR_7776" - name: "" - metabolites: !!omap - m02553c: -1 - m02553r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7778 + - id: "HMR_7778" - name: "" - metabolites: !!omap - m02554c: 1 - m02554r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7780 + - id: "HMR_7780" - name: "" - metabolites: !!omap - m02555c: -1 - m02555r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7784 + - id: "HMR_7784" - name: "" - metabolites: !!omap - m01334c: -1 - m01334r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7789 + - id: "HMR_7789" - name: "" - metabolites: !!omap - m01803c: -1 - m01803r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7791 + - id: "HMR_7791" - name: "" - metabolites: !!omap - m01802c: 1 - m01802r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7929 + - id: "HMR_7929" - name: "" - metabolites: !!omap - m00295c: -1 - m00295r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7933 + - id: "HMR_7933" - name: "" - metabolites: !!omap - m00294c: -1 - m00294r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7944 + - id: "HMR_7944" - name: "" - metabolites: !!omap - m01789c: -1 - m01789r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7947 + - id: "HMR_7947" - name: "" - metabolites: !!omap - m02762c: -1 - m02762r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7949 + - id: "HMR_7949" - name: "" - metabolites: !!omap - m01512c: -1 - m01512r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7953 + - id: "HMR_7953" - name: "" - metabolites: !!omap - m01660c: -1 - m01660r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7956 + - id: "HMR_7956" - name: "" - metabolites: !!omap - m02969c: -1 - m02969r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7960 + - id: "HMR_7960" - name: "" - metabolites: !!omap - m01158c: -1 - m01158r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7963 + - id: "HMR_7963" - name: "" - metabolites: !!omap - m01795c: -1 - m01795r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7966 + - id: "HMR_7966" - name: "" - metabolites: !!omap - m01339c: -1 - m01339r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7969 + - id: "HMR_7969" - name: "" - metabolites: !!omap - m01787c: -1 - m01787r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7981 + - id: "HMR_7981" - name: "" - metabolites: !!omap - m01799c: -1 - m01799r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7983 + - id: "HMR_7983" - name: "" - metabolites: !!omap - m01788c: -1 - m01788r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7985 + - id: "HMR_7985" - name: "" - metabolites: !!omap - m00402c: -1 - m00402r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7988 + - id: "HMR_7988" - name: "" - metabolites: !!omap - m01069c: -1 - m01069r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7989 + - id: "HMR_7989" - name: "" - metabolites: !!omap - m01070c: -1 - m01070r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8030 + - id: "HMR_8030" - name: "" - metabolites: !!omap - m02517c: 1 - m02517r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8058 + - id: "HMR_8058" - name: "" - metabolites: !!omap - m01765c: -1 - m01765r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8060 + - id: "HMR_8060" - name: "" - metabolites: !!omap - m02150c: -1 - m02150r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8234 + - id: "HMR_8234" - name: "" - metabolites: !!omap - m02930c: -1 - m02930r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8236 + - id: "HMR_8236" - name: "" - metabolites: !!omap - m02929c: -1 - m02929r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8239 + - id: "HMR_8239" - name: "" - metabolites: !!omap - m02928c: -1 - m02928r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8347 + - id: "HMR_8347" - name: "" - metabolites: !!omap - m02379c: -1 - m02379r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8350 + - id: "HMR_8350" - name: "" - metabolites: !!omap - m01685c: -1 - m01685r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8351 + - id: "HMR_8351" - name: "" - metabolites: !!omap - m02378c: 1 - m02378r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8358 + - id: "HMR_8358" - name: "" - metabolites: !!omap - m01249c: -1 - m01249r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8369 + - id: "HMR_8369" - name: "" - metabolites: !!omap - m03110c: -1 @@ -217899,75 +217899,75 @@ - m03114r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116704 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000116704" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8382 + - id: "HMR_8382" - name: "" - metabolites: !!omap - m01964c: -1 - m01964r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8526 + - id: "HMR_8526" - name: "" - metabolites: !!omap - m01513c: -1 - m01513r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8553 + - id: "HMR_8553" - name: "" - metabolites: !!omap - m02418c: -1 - m02418r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8594 + - id: "HMR_8594" - name: "" - metabolites: !!omap - m01338c: -1 - m01338r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8651 + - id: "HMR_8651" - name: "" - metabolites: !!omap - m01420c: -1 @@ -217978,7290 +217978,7290 @@ - m02759r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8681 + - id: "HMR_8681" - name: "" - metabolites: !!omap - m01614c: -1 - m01614r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8715 + - id: "HMR_8715" - name: "" - metabolites: !!omap - m02836c: 1 - m02836r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8716 + - id: "HMR_8716" - name: "" - metabolites: !!omap - m00350c: -1 - m00350r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8719 + - id: "HMR_8719" - name: "" - metabolites: !!omap - m00353c: 1 - m00353r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8722 + - id: "HMR_8722" - name: "" - metabolites: !!omap - m02833c: -1 - m02833r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8737 + - id: "HMR_8737" - name: "" - metabolites: !!omap - m02927c: -1 - m02927r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8851 + - id: "HMR_8851" - name: "" - metabolites: !!omap - m02967c: -1 - m02967r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8855 + - id: "HMR_8855" - name: "" - metabolites: !!omap - m02994c: -1 - m02994r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8859 + - id: "HMR_8859" - name: "" - metabolites: !!omap - m03114c: -1 - m03114r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8886 + - id: "HMR_8886" - name: "" - metabolites: !!omap - m01973c: -1 - m01973r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8888 + - id: "HMR_8888" - name: "" - metabolites: !!omap - m01974c: -1 - m01974r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8906 + - id: "HMR_8906" - name: "" - metabolites: !!omap - m00986c: -1 - m00986r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8914 + - id: "HMR_8914" - name: "" - metabolites: !!omap - m02362c: -1 - m02362r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8915 + - id: "HMR_8915" - name: "" - metabolites: !!omap - m02364c: -1 - m02364r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8919 + - id: "HMR_8919" - name: "" - metabolites: !!omap - m02453c: 1 - m02453r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_8921 + - id: "HMR_8921" - name: "" - metabolites: !!omap - m02470c: -1 - m02470r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9177 + - id: "HMR_9177" - name: "" - metabolites: !!omap - m01800c: -1 - m01800r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9200 + - id: "HMR_9200" - name: "" - metabolites: !!omap - m03157c: -1 - m03157r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112473 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000112473" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9625 + - id: "HMR_9625" - name: "" - metabolites: !!omap - m00236c: 1 - m00236r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9626 + - id: "HMR_9626" - name: "" - metabolites: !!omap - m02946c: 1 - m02946r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9627 + - id: "HMR_9627" - name: "" - metabolites: !!omap - m02328c: 1 - m02328r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9628 + - id: "HMR_9628" - name: "" - metabolites: !!omap - m02027c: 1 - m02027r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9629 + - id: "HMR_9629" - name: "" - metabolites: !!omap - m02022c: 1 - m02022r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9630 + - id: "HMR_9630" - name: "" - metabolites: !!omap - m02434c: 1 - m02434r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9631 + - id: "HMR_9631" - name: "" - metabolites: !!omap - m02462c: 1 - m02462r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9632 + - id: "HMR_9632" - name: "" - metabolites: !!omap - m01665c: 1 - m01665r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9633 + - id: "HMR_9633" - name: "" - metabolites: !!omap - m01687c: 1 - m01687r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9634 + - id: "HMR_9634" - name: "" - metabolites: !!omap - m01798c: 1 - m01798r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9716 + - id: "HMR_9716" - name: "" - metabolites: !!omap - m01667c: 1 - m01667r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9724 + - id: "HMR_9724" - name: "" - metabolites: !!omap - m02728c: 1 - m02728r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_9732 + - id: "HMR_9732" - name: "" - metabolites: !!omap - m02001c: 1 - m02001r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_7108 + - id: "HMR_7108" - name: "" - metabolites: !!omap - m01374s: -1 - m01374x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_7110 + - id: "HMR_7110" - name: "" - metabolites: !!omap - m02556s: -1 - m02556x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_7112 + - id: "HMR_7112" - name: "" - metabolites: !!omap - m01296s: -1 - m01296x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_7114 + - id: "HMR_7114" - name: "" - metabolites: !!omap - m03044s: -1 - m03044x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_7116 + - id: "HMR_7116" - name: "" - metabolites: !!omap - m01403s: -1 - m01403x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_7118 + - id: "HMR_7118" - name: "" - metabolites: !!omap - m01174s: -1 - m01174x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_7120 + - id: "HMR_7120" - name: "" - metabolites: !!omap - m00932s: -1 - m00932x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_7122 + - id: "HMR_7122" - name: "" - metabolites: !!omap - m00545s: -1 - m00545x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_7124 + - id: "HMR_7124" - name: "" - metabolites: !!omap - m00228s: -1 - m00228x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_7126 + - id: "HMR_7126" - name: "" - metabolites: !!omap - m00242s: -1 - m00242x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9023 + - id: "HMR_9023" - name: "" - metabolites: !!omap - m02957s: -1 - m02957x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9024 + - id: "HMR_9024" - name: "" - metabolites: !!omap - m01570s: -1 - m01570x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9032 + - id: "HMR_9032" - name: "" - metabolites: !!omap - m02909s: -1 - m02909x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9808 + - id: "HMR_9808" - name: "" - metabolites: !!omap - m02772s: -1 - m02772x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9809 + - id: "HMR_9809" - name: "" - metabolites: !!omap - m01410s: -1 - m01410x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9810 + - id: "HMR_9810" - name: "" - metabolites: !!omap - m03134s: -1 - m03134x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9811 + - id: "HMR_9811" - name: "" - metabolites: !!omap - m02120s: -1 - m02120x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9812 + - id: "HMR_9812" - name: "" - metabolites: !!omap - m02108s: -1 - m02108x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9813 + - id: "HMR_9813" - name: "" - metabolites: !!omap - m02642s: -1 - m02642x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9814 + - id: "HMR_9814" - name: "" - metabolites: !!omap - m02614s: -1 - m02614x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9815 + - id: "HMR_9815" - name: "" - metabolites: !!omap - m01648s: -1 - m01648x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9816 + - id: "HMR_9816" - name: "" - metabolites: !!omap - m03117s: -1 - m03117x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9033 + - id: "HMR_9033" - name: "" - metabolites: !!omap - m02560s: -1 - m02560x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9034 + - id: "HMR_9034" - name: "" - metabolites: !!omap - m01965s: -1 - m01965x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9035 + - id: "HMR_9035" - name: "" - metabolites: !!omap - m02387s: -1 - m02387x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9036 + - id: "HMR_9036" - name: "" - metabolites: !!omap - m02389s: -1 - m02389x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9037 + - id: "HMR_9037" - name: "" - metabolites: !!omap - m02746s: -1 - m02746x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9038 + - id: "HMR_9038" - name: "" - metabolites: !!omap - m02125s: -1 - m02125x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9039 + - id: "HMR_9039" - name: "" - metabolites: !!omap - m02184s: -1 - m02184x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9040 + - id: "HMR_9040" - name: "" - metabolites: !!omap - m02360s: -1 - m02360x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9041 + - id: "HMR_9041" - name: "" - metabolites: !!omap - m02426s: -1 - m02426x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9042 + - id: "HMR_9042" - name: "" - metabolites: !!omap - m02471s: -1 - m02471x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9043 + - id: "HMR_9043" - name: "" - metabolites: !!omap - m02724s: -1 - m02724x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9044 + - id: "HMR_9044" - name: "" - metabolites: !!omap - m02993s: -1 - m02993x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9045 + - id: "HMR_9045" - name: "" - metabolites: !!omap - m03089s: -1 - m03089x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9046 + - id: "HMR_9046" - name: "" - metabolites: !!omap - m03135s: -1 - m03135x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9047 + - id: "HMR_9047" - name: "" - metabolites: !!omap - m02040s: -1 - m02040x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9048 + - id: "HMR_9048" - name: "" - metabolites: !!omap - m02630s: -1 - m02630x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9049 + - id: "HMR_9049" - name: "" - metabolites: !!omap - m03147s: -1 - m03147x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9050 + - id: "HMR_9050" - name: "" - metabolites: !!omap - m02048s: -1 - m02048x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9051 + - id: "HMR_9051" - name: "" - metabolites: !!omap - m02353s: -1 - m02353x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9052 + - id: "HMR_9052" - name: "" - metabolites: !!omap - m01569s: -1 - m01569x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9053 + - id: "HMR_9053" - name: "" - metabolites: !!omap - m03146s: -1 - m03146x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9054 + - id: "HMR_9054" - name: "" - metabolites: !!omap - m02047s: -1 - m02047x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9055 + - id: "HMR_9055" - name: "" - metabolites: !!omap - m02352s: -1 - m02352x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9056 + - id: "HMR_9056" - name: "" - metabolites: !!omap - m02561s: -1 - m02561x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9058 + - id: "HMR_9058" - name: "" - metabolites: !!omap - m01596s: -1 - m01596x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9061 + - id: "HMR_9061" - name: "" - metabolites: !!omap - m01307s: -1 - m01307x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9062 + - id: "HMR_9062" - name: "" - metabolites: !!omap - m01369s: -1 - m01369x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9063 + - id: "HMR_9063" - name: "" - metabolites: !!omap - m01975s: -1 - m01975x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9064 + - id: "HMR_9064" - name: "" - metabolites: !!omap - m03101s: -1 - m03101x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9065 + - id: "HMR_9065" - name: "" - metabolites: !!omap - m01628s: -1 - m01628x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9066 + - id: "HMR_9066" - name: "" - metabolites: !!omap - m01365s: -1 - m01365x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9067 + - id: "HMR_9067" - name: "" - metabolites: !!omap - m01986s: -1 - m01986x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9068 + - id: "HMR_9068" - name: "" - metabolites: !!omap - m02770s: -1 - m02770x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9069 + - id: "HMR_9069" - name: "" - metabolites: !!omap - m02896s: -1 - m02896x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9070 + - id: "HMR_9070" - name: "" - metabolites: !!omap - m01370s: -1 - m01370x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9071 + - id: "HMR_9071" - name: "" - metabolites: !!omap - m01974s: -1 - m01974x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9072 + - id: "HMR_9072" - name: "" - metabolites: !!omap - m02751s: -1 - m02751x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9073 + - id: "HMR_9073" - name: "" - metabolites: !!omap - m02578s: -1 - m02578x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9074 + - id: "HMR_9074" - name: "" - metabolites: !!omap - m02946s: -1 - m02946x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9075 + - id: "HMR_9075" - name: "" - metabolites: !!omap - m03120s: -1 - m03120x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9076 + - id: "HMR_9076" - name: "" - metabolites: !!omap - m01821s: -1 - m01821x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9077 + - id: "HMR_9077" - name: "" - metabolites: !!omap - m02519s: -1 - m02519x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9078 + - id: "HMR_9078" - name: "" - metabolites: !!omap - m02046s: -1 - m02046x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9079 + - id: "HMR_9079" - name: "" - metabolites: !!omap - m02039s: -1 - m02039x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9080 + - id: "HMR_9080" - name: "" - metabolites: !!omap - m03157s: -1 - m03157x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9081 + - id: "HMR_9081" - name: "" - metabolites: !!omap - m02200s: -1 - m02200x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: DOI:10.1002/9780470691861 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "DOI:10.1002/9780470691861" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9082 + - id: "HMR_9082" - name: "" - metabolites: !!omap - m01413s: -1 - m01413x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9083 + - id: "HMR_9083" - name: "" - metabolites: !!omap - m01513s: -1 - m01513x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9084 + - id: "HMR_9084" - name: "" - metabolites: !!omap - m01797s: -1 - m01797x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9085 + - id: "HMR_9085" - name: "" - metabolites: !!omap - m01983s: -1 - m01983x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9086 + - id: "HMR_9086" - name: "" - metabolites: !!omap - m01252s: -1 - m01252x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9087 + - id: "HMR_9087" - name: "" - metabolites: !!omap - m02658s: -1 - m02658x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9088 + - id: "HMR_9088" - name: "" - metabolites: !!omap - m02949s: -1 - m02949x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9089 + - id: "HMR_9089" - name: "" - metabolites: !!omap - m02740s: -1 - m02740x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9090 + - id: "HMR_9090" - name: "" - metabolites: !!omap - m02477s: -1 - m02477x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9091 + - id: "HMR_9091" - name: "" - metabolites: !!omap - m00970s: -1 - m00970x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9092 + - id: "HMR_9092" - name: "" - metabolites: !!omap - m01736s: -1 - m01736x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9093 + - id: "HMR_9093" - name: "" - metabolites: !!omap - m02617s: -1 - m02617x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9094 + - id: "HMR_9094" - name: "" - metabolites: !!omap - m01107s: -1 - m01107x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9095 + - id: "HMR_9095" - name: "" - metabolites: !!omap - m01290s: -1 - m01290x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9096 + - id: "HMR_9096" - name: "" - metabolites: !!omap - m01822s: -1 - m01822x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9097 + - id: "HMR_9097" - name: "" - metabolites: !!omap - m01641s: -1 - m01641x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9098 + - id: "HMR_9098" - name: "" - metabolites: !!omap - m01638s: -1 - m01638x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9099 + - id: "HMR_9099" - name: "" - metabolites: !!omap - m01796s: -1 - m01796x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9100 + - id: "HMR_9100" - name: "" - metabolites: !!omap - m01100s: -1 - m01100x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9101 + - id: "HMR_9101" - name: "" - metabolites: !!omap - m02754s: -1 - m02754x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9102 + - id: "HMR_9102" - name: "" - metabolites: !!omap - m02332s: -1 - m02332x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9103 + - id: "HMR_9103" - name: "" - metabolites: !!omap - m02042s: -1 - m02042x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9104 + - id: "HMR_9104" - name: "" - metabolites: !!omap - m00536s: -1 - m00536x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9105 + - id: "HMR_9105" - name: "" - metabolites: !!omap - m02983s: -1 - m02983x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9106 + - id: "HMR_9106" - name: "" - metabolites: !!omap - m02985s: -1 - m02985x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9107 + - id: "HMR_9107" - name: "" - metabolites: !!omap - m02049s: -1 - m02049x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9108 + - id: "HMR_9108" - name: "" - metabolites: !!omap - m01704s: -1 - m01704x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9109 + - id: "HMR_9109" - name: "" - metabolites: !!omap - m01401s: -1 - m01401x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9110 + - id: "HMR_9110" - name: "" - metabolites: !!omap - m01400s: -1 - m01400x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9111 + - id: "HMR_9111" - name: "" - metabolites: !!omap - m02054s: -1 - m02054x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9113 + - id: "HMR_9113" - name: "" - metabolites: !!omap - m02278s: -1 - m02278x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9114 + - id: "HMR_9114" - name: "" - metabolites: !!omap - m02237s: -1 - m02237x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9115 + - id: "HMR_9115" - name: "" - metabolites: !!omap - m02288s: -1 - m02288x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9116 + - id: "HMR_9116" - name: "" - metabolites: !!omap - m02303s: -1 - m02303x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9117 + - id: "HMR_9117" - name: "" - metabolites: !!omap - m01517s: -1 - m01517x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9118 + - id: "HMR_9118" - name: "" - metabolites: !!omap - m01525s: -1 - m01525x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9119 + - id: "HMR_9119" - name: "" - metabolites: !!omap - m01533s: -1 - m01533x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9120 + - id: "HMR_9120" - name: "" - metabolites: !!omap - m01543s: -1 - m01543x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9121 + - id: "HMR_9121" - name: "" - metabolites: !!omap - m01554s: -1 - m01554x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9122 + - id: "HMR_9122" - name: "" - metabolites: !!omap - m02141s: -1 - m02141x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9123 + - id: "HMR_9123" - name: "" - metabolites: !!omap - m02139s: -1 - m02139x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9124 + - id: "HMR_9124" - name: "" - metabolites: !!omap - m01652s: -1 - m01652x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9125 + - id: "HMR_9125" - name: "" - metabolites: !!omap - m02672s: -1 - m02672x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9126 + - id: "HMR_9126" - name: "" - metabolites: !!omap - m02510s: -1 - m02510x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9127 + - id: "HMR_9127" - name: "" - metabolites: !!omap - m02907s: -1 - m02907x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9128 + - id: "HMR_9128" - name: "" - metabolites: !!omap - m01712s: -1 - m01712x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9129 + - id: "HMR_9129" - name: "" - metabolites: !!omap - m01786s: -1 - m01786x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9130 + - id: "HMR_9130" - name: "" - metabolites: !!omap - m02414s: -1 - m02414x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9131 + - id: "HMR_9131" - name: "" - metabolites: !!omap - m02880s: -1 - m02880x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9132 + - id: "HMR_9132" - name: "" - metabolites: !!omap - m01253s: -1 - m01253x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9133 + - id: "HMR_9133" - name: "" - metabolites: !!omap - m02819s: -1 - m02819x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9134 + - id: "HMR_9134" - name: "" - metabolites: !!omap - m00157s: -1 - m00157x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9135 + - id: "HMR_9135" - name: "" - metabolites: !!omap - m02403s: -1 - m02403x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9136 + - id: "HMR_9136" - name: "" - metabolites: !!omap - m01716s: -1 - m01716x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9137 + - id: "HMR_9137" - name: "" - metabolites: !!omap - m02453s: -1 - m02453x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9138 + - id: "HMR_9138" - name: "" - metabolites: !!omap - m03155s: -1 - m03155x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9139 + - id: "HMR_9139" - name: "" - metabolites: !!omap - m01840s: -1 - m01840x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:9686924 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:9686924" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9140 + - id: "HMR_9140" - name: "" - metabolites: !!omap - m01910s: -1 - m01910x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9141 + - id: "HMR_9141" - name: "" - metabolites: !!omap - m01288s: -1 - m01288x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9142 + - id: "HMR_9142" - name: "" - metabolites: !!omap - m02586s: -1 - m02586x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9143 + - id: "HMR_9143" - name: "" - metabolites: !!omap - m02842s: -1 - m02842x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9144 + - id: "HMR_9144" - name: "" - metabolites: !!omap - m02817s: -1 - m02817x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9145 + - id: "HMR_9145" - name: "" - metabolites: !!omap - m02680s: -1 - m02680x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9146 + - id: "HMR_9146" - name: "" - metabolites: !!omap - m01830s: -1 - m01830x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:14739191;PMID:14977409;PMID:14998787;PMID:16109384;PMID:16171773;PMID:16750224 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:14739191;PMID:14977409;PMID:14998787;PMID:16109384;PMID:16171773;PMID:16750224" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9147 + - id: "HMR_9147" - name: "" - metabolites: !!omap - m02834s: -1 - m02834x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9148 + - id: "HMR_9148" - name: "" - metabolites: !!omap - m02174s: -1 - m02174x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9149 + - id: "HMR_9149" - name: "" - metabolites: !!omap - m02588s: -1 - m02588x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9150 + - id: "HMR_9150" - name: "" - metabolites: !!omap - m01442s: -1 - m01442x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9151 + - id: "HMR_9151" - name: "" - metabolites: !!omap - m01327s: -1 - m01327x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9152 + - id: "HMR_9152" - name: "" - metabolites: !!omap - m01330s: -1 - m01330x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9153 + - id: "HMR_9153" - name: "" - metabolites: !!omap - m01935s: -1 - m01935x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9154 + - id: "HMR_9154" - name: "" - metabolites: !!omap - m01938s: -1 - m01938x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9155 + - id: "HMR_9155" - name: "" - metabolites: !!omap - m02193s: -1 - m02193x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9156 + - id: "HMR_9156" - name: "" - metabolites: !!omap - m01714s: -1 - m01714x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9157 + - id: "HMR_9157" - name: "" - metabolites: !!omap - m02050s: -1 - m02050x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12883891;PMID:12856180;PMID:11023036;PMID:1554704;PMID:18021224;PMID:4553030;PMID:793184;PMID:8725559;PMID:8781017;PMID:12739169" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9158 + - id: "HMR_9158" - name: "" - metabolites: !!omap - m01368s: -1 - m01368x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9159 + - id: "HMR_9159" - name: "" - metabolites: !!omap - m02982s: -1 - m02982x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12488043;PMID:14977409 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12488043;PMID:14977409" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9160 + - id: "HMR_9160" - name: "" - metabolites: !!omap - m02145s: -1 - m02145x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9161 + - id: "HMR_9161" - name: "" - metabolites: !!omap - m02136s: -1 - m02136x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12930836;UNIPROT:O75387;PMID:16288981;PMID:911815;PMID:10049700;PMID:10574970;PMID:11389679;PMID:11557028;PMID:11564694;PMID:12824232;PMID:14574404 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12930836;UNIPROT:O75387;PMID:16288981;PMID:911815;PMID:10049700;PMID:10574970;PMID:11389679;PMID:11557028;PMID:11564694;PMID:12824232;PMID:14574404" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9162 + - id: "HMR_9162" - name: "" - metabolites: !!omap - m02357s: -1 - m02357x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9163 + - id: "HMR_9163" - name: "" - metabolites: !!omap - m02370s: -1 - m02370x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9164 + - id: "HMR_9164" - name: "" - metabolites: !!omap - m02440s: -1 - m02440x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9165 + - id: "HMR_9165" - name: "" - metabolites: !!omap - m02661s: -1 - m02661x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9166 + - id: "HMR_9166" - name: "" - metabolites: !!omap - m01438s: -1 - m01438x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:17267599 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:17267599" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9167 + - id: "HMR_9167" - name: "" - metabolites: !!omap - m02394s: -1 - m02394x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9168 + - id: "HMR_9168" - name: "" - metabolites: !!omap - m01962s: -1 - m01962x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: PMID:12750891 + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "PMID:12750891" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9169 + - id: "HMR_9169" - name: "" - metabolites: !!omap - m02885s: -1 - m02885x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9171 + - id: "HMR_9171" - name: "" - metabolites: !!omap - m00626s: -1 - m00626x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9172 + - id: "HMR_9172" - name: "" - metabolites: !!omap - m00549s: -1 - m00549x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9201 + - id: "HMR_9201" - name: "" - metabolites: !!omap - m01588s: -1 - m01588x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9202 + - id: "HMR_9202" - name: "" - metabolites: !!omap - m01356s: -1 - m01356x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9203 + - id: "HMR_9203" - name: "" - metabolites: !!omap - m01758s: -1 - m01758x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9204 + - id: "HMR_9204" - name: "" - metabolites: !!omap - m02001s: -1 - m02001x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9205 + - id: "HMR_9205" - name: "" - metabolites: !!omap - m00266s: -1 - m00266x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9206 + - id: "HMR_9206" - name: "" - metabolites: !!omap - m00267s: -1 - m00267x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9207 + - id: "HMR_9207" - name: "" - metabolites: !!omap - m00268s: -1 - m00268x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9208 + - id: "HMR_9208" - name: "" - metabolites: !!omap - m00269s: -1 - m00269x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9209 + - id: "HMR_9209" - name: "" - metabolites: !!omap - m10005s: -1 - m10005x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9210 + - id: "HMR_9210" - name: "" - metabolites: !!omap - m00353s: -1 - m00353x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9211 + - id: "HMR_9211" - name: "" - metabolites: !!omap - m00613s: -1 - m00613x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9212 + - id: "HMR_9212" - name: "" - metabolites: !!omap - m00035s: -1 - m00035x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9213 + - id: "HMR_9213" - name: "" - metabolites: !!omap - m01019s: -1 - m01019x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9214 + - id: "HMR_9214" - name: "" - metabolites: !!omap - m00620s: -1 - m00620x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9215 + - id: "HMR_9215" - name: "" - metabolites: !!omap - m01415s: -1 - m01415x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9216 + - id: "HMR_9216" - name: "" - metabolites: !!omap - m00648s: -1 - m00648x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9217 + - id: "HMR_9217" - name: "" - metabolites: !!omap - m00665s: -1 - m00665x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9218 + - id: "HMR_9218" - name: "" - metabolites: !!omap - m00730s: -1 - m00730x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9219 + - id: "HMR_9219" - name: "" - metabolites: !!omap - m02354s: -1 - m02354x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9220 + - id: "HMR_9220" - name: "" - metabolites: !!omap - m01433s: -1 - m01433x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9221 + - id: "HMR_9221" - name: "" - metabolites: !!omap - m02325s: -1 - m02325x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9222 + - id: "HMR_9222" - name: "" - metabolites: !!omap - m01633s: -1 - m01633x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9223 + - id: "HMR_9223" - name: "" - metabolites: !!omap - m00998s: -1 - m00998x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9224 + - id: "HMR_9224" - name: "" - metabolites: !!omap - m01003s: -1 - m01003x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9225 + - id: "HMR_9225" - name: "" - metabolites: !!omap - m02182s: -1 - m02182x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9226 + - id: "HMR_9226" - name: "" - metabolites: !!omap - m01007s: -1 - m01007x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9227 + - id: "HMR_9227" - name: "" - metabolites: !!omap - m01021s: -1 - m01021x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9228 + - id: "HMR_9228" - name: "" - metabolites: !!omap - m01033s: -1 - m01033x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9229 + - id: "HMR_9229" - name: "" - metabolites: !!omap - m01069s: -1 - m01069x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9230 + - id: "HMR_9230" - name: "" - metabolites: !!omap - m01070s: -1 - m01070x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9231 + - id: "HMR_9231" - name: "" - metabolites: !!omap - m01071s: -1 - m01071x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9232 + - id: "HMR_9232" - name: "" - metabolites: !!omap - m02691s: -1 - m02691x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9233 + - id: "HMR_9233" - name: "" - metabolites: !!omap - m01109s: -1 - m01109x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9234 + - id: "HMR_9234" - name: "" - metabolites: !!omap - m01115s: -1 - m01115x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9235 + - id: "HMR_9235" - name: "" - metabolites: !!omap - m02692s: -1 - m02692x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9236 + - id: "HMR_9236" - name: "" - metabolites: !!omap - m02118s: -1 - m02118x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9237 + - id: "HMR_9237" - name: "" - metabolites: !!omap - m01158s: -1 - m01158x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9238 + - id: "HMR_9238" - name: "" - metabolites: !!omap - m02119s: -1 - m02119x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9239 + - id: "HMR_9239" - name: "" - metabolites: !!omap - m02104s: -1 - m02104x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9240 + - id: "HMR_9240" - name: "" - metabolites: !!omap - m02105s: -1 - m02105x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9241 + - id: "HMR_9241" - name: "" - metabolites: !!omap - m02338s: -1 - m02338x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9242 + - id: "HMR_9242" - name: "" - metabolites: !!omap - m01249s: -1 - m01249x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9243 + - id: "HMR_9243" - name: "" - metabolites: !!omap - m01256s: -1 - m01256x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9244 + - id: "HMR_9244" - name: "" - metabolites: !!omap - m03096s: -1 - m03096x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9245 + - id: "HMR_9245" - name: "" - metabolites: !!omap - m03098s: -1 - m03098x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9246 + - id: "HMR_9246" - name: "" - metabolites: !!omap - m02527s: -1 - m02527x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9247 + - id: "HMR_9247" - name: "" - metabolites: !!omap - m01260s: -1 - m01260x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9248 + - id: "HMR_9248" - name: "" - metabolites: !!omap - m02902s: -1 - m02902x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9249 + - id: "HMR_9249" - name: "" - metabolites: !!omap - m02903s: -1 - m02903x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9250 + - id: "HMR_9250" - name: "" - metabolites: !!omap - m00744s: -1 - m00744x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9251 + - id: "HMR_9251" - name: "" - metabolites: !!omap - m01711s: -1 - m01711x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9252 + - id: "HMR_9252" - name: "" - metabolites: !!omap - m03138s: -1 - m03138x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9253 + - id: "HMR_9253" - name: "" - metabolites: !!omap - m01279s: -1 - m01279x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9254 + - id: "HMR_9254" - name: "" - metabolites: !!omap - m01280s: -1 - m01280x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9255 + - id: "HMR_9255" - name: "" - metabolites: !!omap - m01285s: -1 - m01285x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9256 + - id: "HMR_9256" - name: "" - metabolites: !!omap - m01289s: -1 - m01289x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9257 + - id: "HMR_9257" - name: "" - metabolites: !!omap - m01799s: -1 - m01799x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9258 + - id: "HMR_9258" - name: "" - metabolites: !!omap - m00516s: -1 - m00516x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9259 + - id: "HMR_9259" - name: "" - metabolites: !!omap - m01306s: -1 - m01306x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9260 + - id: "HMR_9260" - name: "" - metabolites: !!omap - m01383s: -1 - m01383x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9261 + - id: "HMR_9261" - name: "" - metabolites: !!omap - m01309s: -1 - m01309x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9262 + - id: "HMR_9262" - name: "" - metabolites: !!omap - m01334s: -1 - m01334x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9263 + - id: "HMR_9263" - name: "" - metabolites: !!omap - m01338s: -1 - m01338x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9264 + - id: "HMR_9264" - name: "" - metabolites: !!omap - m01339s: -1 - m01339x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9265 + - id: "HMR_9265" - name: "" - metabolites: !!omap - m01344s: -1 - m01344x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9266 + - id: "HMR_9266" - name: "" - metabolites: !!omap - m01326s: -1 - m01326x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9267 + - id: "HMR_9267" - name: "" - metabolites: !!omap - m00002s: -1 - m00002x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9268 + - id: "HMR_9268" - name: "" - metabolites: !!omap - m00580s: -1 - m00580x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9269 + - id: "HMR_9269" - name: "" - metabolites: !!omap - m01361s: -1 - m01361x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9270 + - id: "HMR_9270" - name: "" - metabolites: !!omap - m02337s: -1 - m02337x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9271 + - id: "HMR_9271" - name: "" - metabolites: !!omap - m01397s: -1 - m01397x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9272 + - id: "HMR_9272" - name: "" - metabolites: !!omap - m01398s: -1 - m01398x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9273 + - id: "HMR_9273" - name: "" - metabolites: !!omap - m01396s: -1 - m01396x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9275 + - id: "HMR_9275" - name: "" - metabolites: !!omap - m01419s: -1 - m01419x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9276 + - id: "HMR_9276" - name: "" - metabolites: !!omap - m01385s: -1 - m01385x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9277 + - id: "HMR_9277" - name: "" - metabolites: !!omap - m00001s: -1 - m00001x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9278 + - id: "HMR_9278" - name: "" - metabolites: !!omap - m01418s: -1 - m01418x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9279 + - id: "HMR_9279" - name: "" - metabolites: !!omap - m01626s: -1 - m01626x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9280 + - id: "HMR_9280" - name: "" - metabolites: !!omap - m01445s: -1 - m01445x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9281 + - id: "HMR_9281" - name: "" - metabolites: !!omap - m01988s: -1 - m01988x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9282 + - id: "HMR_9282" - name: "" - metabolites: !!omap - m02963s: -1 - m02963x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9283 + - id: "HMR_9283" - name: "" - metabolites: !!omap - m01987s: -1 - m01987x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9284 + - id: "HMR_9284" - name: "" - metabolites: !!omap - m02962s: -1 - m02962x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9285 + - id: "HMR_9285" - name: "" - metabolites: !!omap - m01450s: -1 - m01450x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9286 + - id: "HMR_9286" - name: "" - metabolites: !!omap - m01587s: -1 - m01587x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9287 + - id: "HMR_9287" - name: "" - metabolites: !!omap - m01590s: -1 - m01590x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9288 + - id: "HMR_9288" - name: "" - metabolites: !!omap - m01595s: -1 - m01595x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9289 + - id: "HMR_9289" - name: "" - metabolites: !!omap - m01617s: -1 - m01617x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9290 + - id: "HMR_9290" - name: "" - metabolites: !!omap - m01619s: -1 - m01619x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9291 + - id: "HMR_9291" - name: "" - metabolites: !!omap - m01632s: -1 - m01632x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9292 + - id: "HMR_9292" - name: "" - metabolites: !!omap - m02348s: -1 - m02348x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9293 + - id: "HMR_9293" - name: "" - metabolites: !!omap - m01615s: -1 - m01615x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9294 + - id: "HMR_9294" - name: "" - metabolites: !!omap - m01614s: -1 - m01614x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9295 + - id: "HMR_9295" - name: "" - metabolites: !!omap - m01630s: -1 - m01630x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9296 + - id: "HMR_9296" - name: "" - metabolites: !!omap - m01668s: -1 - m01668x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9297 + - id: "HMR_9297" - name: "" - metabolites: !!omap - m01666s: -1 - m01666x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9298 + - id: "HMR_9298" - name: "" - metabolites: !!omap - m01098s: -1 - m01098x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9299 + - id: "HMR_9299" - name: "" - metabolites: !!omap - m01647s: -1 - m01647x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9300 + - id: "HMR_9300" - name: "" - metabolites: !!omap - m01669s: -1 - m01669x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9301 + - id: "HMR_9301" - name: "" - metabolites: !!omap - m01655s: -1 - m01655x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9302 + - id: "HMR_9302" - name: "" - metabolites: !!omap - m01659s: -1 - m01659x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9303 + - id: "HMR_9303" - name: "" - metabolites: !!omap - m01700s: -1 - m01700x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9304 + - id: "HMR_9304" - name: "" - metabolites: !!omap - m01695s: -1 - m01695x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9305 + - id: "HMR_9305" - name: "" - metabolites: !!omap - m01671s: -1 - m01671x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9306 + - id: "HMR_9306" - name: "" - metabolites: !!omap - m01768s: -1 - m01768x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9307 + - id: "HMR_9307" - name: "" - metabolites: !!omap - m00577s: -1 - m00577x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9308 + - id: "HMR_9308" - name: "" - metabolites: !!omap - m01737s: -1 - m01737x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9309 + - id: "HMR_9309" - name: "" - metabolites: !!omap - m01672s: -1 - m01672x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9310 + - id: "HMR_9310" - name: "" - metabolites: !!omap - m01673s: -1 - m01673x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9311 + - id: "HMR_9311" - name: "" - metabolites: !!omap - m01298s: -1 - m01298x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9312 + - id: "HMR_9312" - name: "" - metabolites: !!omap - m01765s: -1 - m01765x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9313 + - id: "HMR_9313" - name: "" - metabolites: !!omap - m02150s: -1 - m02150x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9314 + - id: "HMR_9314" - name: "" - metabolites: !!omap - m01787s: -1 - m01787x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9315 + - id: "HMR_9315" - name: "" - metabolites: !!omap - m00402s: -1 - m00402x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9316 + - id: "HMR_9316" - name: "" - metabolites: !!omap - m01795s: -1 - m01795x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9317 + - id: "HMR_9317" - name: "" - metabolites: !!omap - m01789s: -1 - m01789x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9318 + - id: "HMR_9318" - name: "" - metabolites: !!omap - m01833s: -1 - m01833x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9319 + - id: "HMR_9319" - name: "" - metabolites: !!omap - m02164s: -1 - m02164x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9320 + - id: "HMR_9320" - name: "" - metabolites: !!omap - m01999s: -1 - m01999x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9321 + - id: "HMR_9321" - name: "" - metabolites: !!omap - m01850s: -1 - m01850x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9322 + - id: "HMR_9322" - name: "" - metabolites: !!omap - m02199s: -1 - m02199x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9323 + - id: "HMR_9323" - name: "" - metabolites: !!omap - m02198s: -1 - m02198x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9324 + - id: "HMR_9324" - name: "" - metabolites: !!omap - m01851s: -1 - m01851x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9325 + - id: "HMR_9325" - name: "" - metabolites: !!omap - m01852s: -1 - m01852x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9326 + - id: "HMR_9326" - name: "" - metabolites: !!omap - m01853s: -1 - m01853x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9327 + - id: "HMR_9327" - name: "" - metabolites: !!omap - m02331s: -1 - m02331x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9328 + - id: "HMR_9328" - name: "" - metabolites: !!omap - m01859s: -1 - m01859x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9329 + - id: "HMR_9329" - name: "" - metabolites: !!omap - m01861s: -1 - m01861x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9330 + - id: "HMR_9330" - name: "" - metabolites: !!omap - m01159s: -1 - m01159x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9331 + - id: "HMR_9331" - name: "" - metabolites: !!omap - m01919s: -1 - m01919x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9332 + - id: "HMR_9332" - name: "" - metabolites: !!omap - m01914s: -1 - m01914x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9333 + - id: "HMR_9333" - name: "" - metabolites: !!omap - m01915s: -1 - m01915x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9334 + - id: "HMR_9334" - name: "" - metabolites: !!omap - m01916s: -1 - m01916x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9335 + - id: "HMR_9335" - name: "" - metabolites: !!omap - m01917s: -1 - m01917x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9336 + - id: "HMR_9336" - name: "" - metabolites: !!omap - m01959s: -1 - m01959x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9337 + - id: "HMR_9337" - name: "" - metabolites: !!omap - m01944s: -1 - m01944x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9338 + - id: "HMR_9338" - name: "" - metabolites: !!omap - m00097s: -1 - m00097x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9339 + - id: "HMR_9339" - name: "" - metabolites: !!omap - m01945s: -1 - m01945x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9340 + - id: "HMR_9340" - name: "" - metabolites: !!omap - m01948s: -1 - m01948x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9341 + - id: "HMR_9341" - name: "" - metabolites: !!omap - m01393s: -1 - m01393x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9342 + - id: "HMR_9342" - name: "" - metabolites: !!omap - m01982s: -1 - m01982x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9343 + - id: "HMR_9343" - name: "" - metabolites: !!omap - m02016s: -1 - m02016x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9344 + - id: "HMR_9344" - name: "" - metabolites: !!omap - m02018s: -1 - m02018x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9345 + - id: "HMR_9345" - name: "" - metabolites: !!omap - m02019s: -1 - m02019x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9346 + - id: "HMR_9346" - name: "" - metabolites: !!omap - m02023s: -1 - m02023x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9347 + - id: "HMR_9347" - name: "" - metabolites: !!omap - m02024s: -1 - m02024x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9348 + - id: "HMR_9348" - name: "" - metabolites: !!omap - m02038s: -1 - m02038x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9349 + - id: "HMR_9349" - name: "" - metabolites: !!omap - m02028s: -1 - m02028x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9350 + - id: "HMR_9350" - name: "" - metabolites: !!omap - m02027s: -1 - m02027x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9351 + - id: "HMR_9351" - name: "" - metabolites: !!omap - m02026s: -1 - m02026x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9352 + - id: "HMR_9352" - name: "" - metabolites: !!omap - m02034s: -1 - m02034x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9353 + - id: "HMR_9353" - name: "" - metabolites: !!omap - m02037s: -1 - m02037x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9354 + - id: "HMR_9354" - name: "" - metabolites: !!omap - m02041s: -1 - m02041x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9355 + - id: "HMR_9355" - name: "" - metabolites: !!omap - m00986s: -1 - m00986x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9356 + - id: "HMR_9356" - name: "" - metabolites: !!omap - m03113s: -1 - m03113x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9357 + - id: "HMR_9357" - name: "" - metabolites: !!omap - m01163s: -1 - m01163x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9358 + - id: "HMR_9358" - name: "" - metabolites: !!omap - m02159s: -1 - m02159x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9359 + - id: "HMR_9359" - name: "" - metabolites: !!omap - m02161s: -1 - m02161x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9360 + - id: "HMR_9360" - name: "" - metabolites: !!omap - m02167s: -1 - m02167x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9361 + - id: "HMR_9361" - name: "" - metabolites: !!omap - m02171s: -1 - m02171x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9362 + - id: "HMR_9362" - name: "" - metabolites: !!omap - m02170s: -1 - m02170x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9363 + - id: "HMR_9363" - name: "" - metabolites: !!omap - m01629s: -1 - m01629x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9364 + - id: "HMR_9364" - name: "" - metabolites: !!omap - m02362s: -1 - m02362x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9365 + - id: "HMR_9365" - name: "" - metabolites: !!omap - m02364s: -1 - m02364x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9366 + - id: "HMR_9366" - name: "" - metabolites: !!omap - m02366s: -1 - m02366x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9367 + - id: "HMR_9367" - name: "" - metabolites: !!omap - m02418s: -1 - m02418x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9368 + - id: "HMR_9368" - name: "" - metabolites: !!omap - m02369s: -1 - m02369x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9369 + - id: "HMR_9369" - name: "" - metabolites: !!omap - m02386s: -1 - m02386x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9370 + - id: "HMR_9370" - name: "" - metabolites: !!omap - m02450s: -1 - m02450x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9371 + - id: "HMR_9371" - name: "" - metabolites: !!omap - m02452s: -1 - m02452x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9372 + - id: "HMR_9372" - name: "" - metabolites: !!omap - m02470s: -1 - m02470x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9373 + - id: "HMR_9373" - name: "" - metabolites: !!omap - m02407s: -1 - m02407x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9374 + - id: "HMR_9374" - name: "" - metabolites: !!omap - m00816s: -1 - m00816x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9375 + - id: "HMR_9375" - name: "" - metabolites: !!omap - m02475s: -1 - m02475x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9376 + - id: "HMR_9376" - name: "" - metabolites: !!omap - m02552s: -1 - m02552x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9377 + - id: "HMR_9377" - name: "" - metabolites: !!omap - m02554s: -1 - m02554x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9378 + - id: "HMR_9378" - name: "" - metabolites: !!omap - m02583s: -1 - m02583x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9379 + - id: "HMR_9379" - name: "" - metabolites: !!omap - m02587s: -1 - m02587x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9380 + - id: "HMR_9380" - name: "" - metabolites: !!omap - m02153s: -1 - m02153x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9381 + - id: "HMR_9381" - name: "" - metabolites: !!omap - m02609s: -1 - m02609x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9382 + - id: "HMR_9382" - name: "" - metabolites: !!omap - m02620s: -1 - m02620x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9383 + - id: "HMR_9383" - name: "" - metabolites: !!omap - m02631s: -1 - m02631x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9384 + - id: "HMR_9384" - name: "" - metabolites: !!omap - m01244s: -1 - m01244x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9385 + - id: "HMR_9385" - name: "" - metabolites: !!omap - m01245s: -1 - m01245x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9386 + - id: "HMR_9386" - name: "" - metabolites: !!omap - m02147s: -1 - m02147x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9387 + - id: "HMR_9387" - name: "" - metabolites: !!omap - m02653s: -1 - m02653x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9388 + - id: "HMR_9388" - name: "" - metabolites: !!omap - m00032s: -1 - m00032x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9389 + - id: "HMR_9389" - name: "" - metabolites: !!omap - m00204s: -1 - m00204x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9390 + - id: "HMR_9390" - name: "" - metabolites: !!omap - m02712s: -1 - m02712x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9391 + - id: "HMR_9391" - name: "" - metabolites: !!omap - m02722s: -1 - m02722x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9392 + - id: "HMR_9392" - name: "" - metabolites: !!omap - m02744s: -1 - m02744x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9393 + - id: "HMR_9393" - name: "" - metabolites: !!omap - m02769s: -1 - m02769x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9394 + - id: "HMR_9394" - name: "" - metabolites: !!omap - m01742s: -1 - m01742x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9395 + - id: "HMR_9395" - name: "" - metabolites: !!omap - m02783s: -1 - m02783x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9396 + - id: "HMR_9396" - name: "" - metabolites: !!omap - m02785s: -1 - m02785x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9397 + - id: "HMR_9397" - name: "" - metabolites: !!omap - m02786s: -1 - m02786x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9398 + - id: "HMR_9398" - name: "" - metabolites: !!omap - m02789s: -1 - m02789x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9399 + - id: "HMR_9399" - name: "" - metabolites: !!omap - m02815s: -1 - m02815x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9400 + - id: "HMR_9400" - name: "" - metabolites: !!omap - m02813s: -1 - m02813x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9401 + - id: "HMR_9401" - name: "" - metabolites: !!omap - m02841s: -1 - m02841x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9404 + - id: "HMR_9404" - name: "" - metabolites: !!omap - m02833s: -1 - m02833x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9405 + - id: "HMR_9405" - name: "" - metabolites: !!omap - m02836s: -1 - m02836x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9406 + - id: "HMR_9406" - name: "" - metabolites: !!omap - m02843s: -1 - m02843x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9407 + - id: "HMR_9407" - name: "" - metabolites: !!omap - m01744s: -1 - m01744x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9408 + - id: "HMR_9408" - name: "" - metabolites: !!omap - m00179s: -1 - m00179x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9409 + - id: "HMR_9409" - name: "" - metabolites: !!omap - m02931s: -1 - m02931x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9410 + - id: "HMR_9410" - name: "" - metabolites: !!omap - m02928s: -1 - m02928x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9411 + - id: "HMR_9411" - name: "" - metabolites: !!omap - m02930s: -1 - m02930x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9412 + - id: "HMR_9412" - name: "" - metabolites: !!omap - m02897s: -1 - m02897x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9413 + - id: "HMR_9413" - name: "" - metabolites: !!omap - m02936s: -1 - m02936x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9414 + - id: "HMR_9414" - name: "" - metabolites: !!omap - m02937s: -1 - m02937x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9415 + - id: "HMR_9415" - name: "" - metabolites: !!omap - m02943s: -1 - m02943x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9416 + - id: "HMR_9416" - name: "" - metabolites: !!omap - m02945s: -1 - m02945x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9417 + - id: "HMR_9417" - name: "" - metabolites: !!omap - m01745s: -1 - m01745x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9418 + - id: "HMR_9418" - name: "" - metabolites: !!omap - m02961s: -1 - m02961x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9419 + - id: "HMR_9419" - name: "" - metabolites: !!omap - m02673s: -1 - m02673x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9420 + - id: "HMR_9420" - name: "" - metabolites: !!omap - m02986s: -1 - m02986x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9421 + - id: "HMR_9421" - name: "" - metabolites: !!omap - m02980s: -1 - m02980x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9422 + - id: "HMR_9422" - name: "" - metabolites: !!omap - m02997s: -1 - m02997x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9423 + - id: "HMR_9423" - name: "" - metabolites: !!omap - m02996s: -1 - m02996x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9424 + - id: "HMR_9424" - name: "" - metabolites: !!omap - m02998s: -1 - m02998x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9425 + - id: "HMR_9425" - name: "" - metabolites: !!omap - m03001s: -1 - m03001x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9426 + - id: "HMR_9426" - name: "" - metabolites: !!omap - m03039s: -1 - m03039x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9427 + - id: "HMR_9427" - name: "" - metabolites: !!omap - m03052s: -1 - m03052x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9428 + - id: "HMR_9428" - name: "" - metabolites: !!omap - m00734s: -1 - m00734x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9429 + - id: "HMR_9429" - name: "" - metabolites: !!omap - m02969s: -1 - m02969x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9430 + - id: "HMR_9430" - name: "" - metabolites: !!omap - m02967s: -1 - m02967x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9431 + - id: "HMR_9431" - name: "" - metabolites: !!omap - m02968s: -1 - m02968x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9432 + - id: "HMR_9432" - name: "" - metabolites: !!omap - m02991s: -1 - m02991x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9433 + - id: "HMR_9433" - name: "" - metabolites: !!omap - m02994s: -1 - m02994x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9434 + - id: "HMR_9434" - name: "" - metabolites: !!omap - m03100s: -1 - m03100x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9435 + - id: "HMR_9435" - name: "" - metabolites: !!omap - m03106s: -1 - m03106x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9436 + - id: "HMR_9436" - name: "" - metabolites: !!omap - m03114s: -1 - m03114x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9437 + - id: "HMR_9437" - name: "" - metabolites: !!omap - m03118s: -1 - m03118x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9438 + - id: "HMR_9438" - name: "" - metabolites: !!omap - m03121s: -1 - m03121x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9439 + - id: "HMR_9439" - name: "" - metabolites: !!omap - m03123s: -1 - m03123x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9440 + - id: "HMR_9440" - name: "" - metabolites: !!omap - m03130s: -1 - m03130x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9441 + - id: "HMR_9441" - name: "" - metabolites: !!omap - m03141s: -1 - m03141x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9442 + - id: "HMR_9442" - name: "" - metabolites: !!omap - m03142s: -1 - m03142x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9443 + - id: "HMR_9443" - name: "" - metabolites: !!omap - m00325s: -1 - m00325x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9444 + - id: "HMR_9444" - name: "" - metabolites: !!omap - m00371s: -1 - m00371x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9445 + - id: "HMR_9445" - name: "" - metabolites: !!omap - m00403s: -1 - m00403x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9446 + - id: "HMR_9446" - name: "" - metabolites: !!omap - m00432s: -1 - m00432x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9447 + - id: "HMR_9447" - name: "" - metabolites: !!omap - m01913s: -1 - m01913x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9448 + - id: "HMR_9448" - name: "" - metabolites: !!omap - m02445s: -1 - m02445x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9449 + - id: "HMR_9449" - name: "" - metabolites: !!omap - m02723s: -1 - m02723x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9450 + - id: "HMR_9450" - name: "" - metabolites: !!omap - m03154s: -1 - m03154x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9451 + - id: "HMR_9451" - name: "" - metabolites: !!omap - m02191s: -1 - m02191x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9452 + - id: "HMR_9452" - name: "" - metabolites: !!omap - m01788s: -1 - m01788x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9453 + - id: "HMR_9453" - name: "" - metabolites: !!omap - m01800s: -1 - m01800x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9454 + - id: "HMR_9454" - name: "" - metabolites: !!omap - m01740s: -1 - m01740x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9455 + - id: "HMR_9455" - name: "" - metabolites: !!omap - m01640s: -1 - m01640x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9456 + - id: "HMR_9456" - name: "" - metabolites: !!omap - m01286s: -1 - m01286x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9457 + - id: "HMR_9457" - name: "" - metabolites: !!omap - m01287s: -1 - m01287x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9458 + - id: "HMR_9458" - name: "" - metabolites: !!omap - m01743s: -1 - m01743x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9460 + - id: "HMR_9460" - name: "" - metabolites: !!omap - m01621s: -1 - m01621x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9461 + - id: "HMR_9461" - name: "" - metabolites: !!omap - m01966s: -1 - m01966x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9462 + - id: "HMR_9462" - name: "" - metabolites: !!omap - m02155s: -1 - m02155x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9463 + - id: "HMR_9463" - name: "" - metabolites: !!omap - m01989s: -1 - m01989x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9681 + - id: "HMR_9681" - name: "" - metabolites: !!omap - m02384s: -1 - m02384x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9682 + - id: "HMR_9682" - name: "" - metabolites: !!omap - m01020s: -1 - m01020x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9683 + - id: "HMR_9683" - name: "" - metabolites: !!omap - m01111s: -1 - m01111x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9684 + - id: "HMR_9684" - name: "" - metabolites: !!omap - m01303s: -1 - m01303x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9685 + - id: "HMR_9685" - name: "" - metabolites: !!omap - m01682s: -1 - m01682x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9686 + - id: "HMR_9686" - name: "" - metabolites: !!omap - m01870s: -1 - m01870x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9687 + - id: "HMR_9687" - name: "" - metabolites: !!omap - m01872s: -1 - m01872x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9688 + - id: "HMR_9688" - name: "" - metabolites: !!omap - m01887s: -1 - m01887x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9689 + - id: "HMR_9689" - name: "" - metabolites: !!omap - m02524s: -1 - m02524x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9690 + - id: "HMR_9690" - name: "" - metabolites: !!omap - m02659s: -1 - m02659x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9691 + - id: "HMR_9691" - name: "" - metabolites: !!omap - m02814s: -1 - m02814x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9692 + - id: "HMR_9692" - name: "" - metabolites: !!omap - m02924s: -1 - m02924x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9693 + - id: "HMR_9693" - name: "" - metabolites: !!omap - m03151s: -1 - m03151x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9694 + - id: "HMR_9694" - name: "" - metabolites: !!omap - m02137s: -1 - m02137x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9695 + - id: "HMR_9695" - name: "" - metabolites: !!omap - m01874s: -1 - m01874x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9696 + - id: "HMR_9696" - name: "" - metabolites: !!omap - m01881s: -1 - m01881x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9697 + - id: "HMR_9697" - name: "" - metabolites: !!omap - m01883s: -1 - m01883x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9698 + - id: "HMR_9698" - name: "" - metabolites: !!omap - m01884s: -1 - m01884x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9699 + - id: "HMR_9699" - name: "" - metabolites: !!omap - m03131s: -1 - m03131x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9700 + - id: "HMR_9700" - name: "" - metabolites: !!omap - m02516s: -1 - m02516x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9701 + - id: "HMR_9701" - name: "" - metabolites: !!omap - m01603s: -1 - m01603x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9702 + - id: "HMR_9702" - name: "" - metabolites: !!omap - m01604s: -1 - m01604x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9703 + - id: "HMR_9703" - name: "" - metabolites: !!omap - m02022s: -1 - m02022x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9704 + - id: "HMR_9704" - name: "" - metabolites: !!omap - m01687s: -1 - m01687x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9705 + - id: "HMR_9705" - name: "" - metabolites: !!omap - m01665s: -1 - m01665x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9706 + - id: "HMR_9706" - name: "" - metabolites: !!omap - m01955s: -1 - m01955x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9707 + - id: "HMR_9707" - name: "" - metabolites: !!omap - m00771s: -1 - m00771x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9708 + - id: "HMR_9708" - name: "" - metabolites: !!omap - m02458s: -1 - m02458x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9709 + - id: "HMR_9709" - name: "" - metabolites: !!omap - m01610s: -1 - m01610x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9710 + - id: "HMR_9710" - name: "" - metabolites: !!omap - m01612s: -1 - m01612x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9711 + - id: "HMR_9711" - name: "" - metabolites: !!omap - m01613s: -1 - m01613x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9712 + - id: "HMR_9712" - name: "" - metabolites: !!omap - m02462s: -1 - m02462x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9713 + - id: "HMR_9713" - name: "" - metabolites: !!omap - m01006s: -1 - m01006x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9714 + - id: "HMR_9714" - name: "" - metabolites: !!omap - m02434s: -1 - m02434x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9715 + - id: "HMR_9715" - name: "" - metabolites: !!omap - m02926s: -1 - m02926x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9721 + - id: "HMR_9721" - name: "" - metabolites: !!omap - m01730s: -1 - m01730x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9729 + - id: "HMR_9729" - name: "" - metabolites: !!omap - m03161s: -1 - m03161x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9730 + - id: "HMR_9730" - name: "" - metabolites: !!omap - m01308s: -1 - m01308x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_9725 + - id: "HMR_9725" - name: "" - metabolites: !!omap - m02554c: -1 @@ -225270,15 +225270,15 @@ - m02555n: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Artificial reactions + - "Artificial reactions" - confidence_score: 0 - !!omap - - id: HMR_0031 + - id: "HMR_0031" - name: "" - metabolites: !!omap - m00240c: -0.19 @@ -225298,15 +225298,15 @@ - m10005c: -0.005 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105355 or ENSG00000139914 or ENSG00000147872 or ENSG00000166819 or ENSG00000167676 or ENSG00000168000 or ENSG00000176194 or ENSG00000197296 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000105355 or ENSG00000139914 or ENSG00000147872 or ENSG00000166819 or ENSG00000167676 or ENSG00000168000 or ENSG00000176194 or ENSG00000197296" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_0032 + - id: "HMR_0032" - name: "" - metabolites: !!omap - m00240c: 0.19 @@ -225326,15 +225326,15 @@ - m10005c: 0.005 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072062 or ENSG00000142875 or ENSG00000165059 or ENSG00000170323 or ENSG00000172531 or ENSG00000186298 or ENSG00000213639 - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000072062 or ENSG00000142875 or ENSG00000165059 or ENSG00000170323 or ENSG00000172531 or ENSG00000186298 or ENSG00000213639" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: biomass_components + - id: "biomass_components" - name: "" - metabolites: !!omap - m01307c: -1 @@ -225372,15 +225372,15 @@ - temp001c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Artificial reactions + - "Artificial reactions" - confidence_score: 0 - !!omap - - id: cofactors_vitamins + - id: "cofactors_vitamins" - name: "" - metabolites: !!omap - m00209c: -1 @@ -225402,15 +225402,15 @@ - m03143c: -0.1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Artificial reactions + - "Artificial reactions" - confidence_score: 0 - !!omap - - id: vitaminA + - id: "vitaminA" - name: "" - metabolites: !!omap - m00291c: -1 @@ -225436,15 +225436,15 @@ - m03139c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Artificial reactions + - "Artificial reactions" - confidence_score: 0 - !!omap - - id: vitaminD + - id: "vitaminD" - name: "" - metabolites: !!omap - m00611c: -1 @@ -225454,15 +225454,15 @@ - m03140c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Artificial reactions + - "Artificial reactions" - confidence_score: 0 - !!omap - - id: vitaminE + - id: "vitaminE" - name: "" - metabolites: !!omap - m00766c: -1 @@ -225470,15 +225470,15 @@ - m03143c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Artificial reactions + - "Artificial reactions" - confidence_score: 0 - !!omap - - id: xenobiotics + - id: "xenobiotics" - name: "" - metabolites: !!omap - m00030c: -1 @@ -225527,15 +225527,15 @@ - m10002s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Artificial reactions + - "Artificial reactions" - confidence_score: 0 - !!omap - - id: arachidonates + - id: "arachidonates" - name: "" - metabolites: !!omap - m00005c: -1 @@ -225688,15 +225688,15 @@ - m10003s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Artificial reactions + - "Artificial reactions" - confidence_score: 0 - !!omap - - id: steroids + - id: "steroids" - name: "" - metabolites: !!omap - m00400c: -1 @@ -225753,15 +225753,15 @@ - m10001s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Artificial reactions + - "Artificial reactions" - confidence_score: 0 - !!omap - - id: others + - id: "others" - name: "" - metabolites: !!omap - m00231c: -1 @@ -225822,30 +225822,30 @@ - m10000s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: HMRdatabase - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "HMRdatabase" + - eccodes: "" + - references: "" - subsystem: - - Artificial reactions + - "Artificial reactions" - confidence_score: 0 - !!omap - - id: 10FTHFtm + - id: "10FTHFtm" - name: "10-Formyltetrahydrofolate Mitochondrial Transport via Diffusion" - metabolites: !!omap - m00266c: -1 - m00266m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11375437 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11375437" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 13DAMPPOX + - id: "13DAMPPOX" - name: "1, 3-Diaminopropane:Oxygen Oxidoreductase (Deaminating)" - metabolites: !!omap - m00248c: -1 @@ -225856,15 +225856,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000002726 or ENSG00000131471 or ENSG00000131480 - - rxnFrom: Recon3D - - eccodes: 1.4.3.6 - - references: PMID:15035803,PMID:8920635,PMID:9653080 + - gene_reaction_rule: "ENSG00000002726 or ENSG00000131471 or ENSG00000131480" + - rxnFrom: "Recon3D" + - eccodes: "1.4.3.6" + - references: "PMID:15035803,PMID:8920635,PMID:9653080" - subsystem: - - Beta-alanine metabolism + - "Beta-alanine metabolism" - confidence_score: 0 - !!omap - - id: 34HPLFM + - id: "34HPLFM" - name: "3- (4-Hydroxyphenyl-)Lactate Formation" - metabolites: !!omap - m01004m: 1 @@ -225874,15 +225874,15 @@ - m02553m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11583838,PMID:12232327 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11583838,PMID:12232327" - subsystem: - - Ubiquinone synthesis + - "Ubiquinone synthesis" - confidence_score: 0 - !!omap - - id: 3DPHBH1 + - id: "3DPHBH1" - name: "Hydroxylation of 3-Decaprenyl-4-Hydroxybenzoate (NADH)" - metabolites: !!omap - m00725m: 1 @@ -225894,15 +225894,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11051212 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11051212" - subsystem: - - Ubiquinone synthesis + - "Ubiquinone synthesis" - confidence_score: 0 - !!omap - - id: 3HBCOAHLm + - id: "3HBCOAHLm" - name: "3-Hydroxyisobutyryl Coenzyme A Hydrolase, Mitochondrial" - metabolites: !!omap - 3hibutcoa_m: -1 @@ -225912,15 +225912,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.2.4 - - references: PMID:8824301 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.2.4" + - references: "PMID:8824301" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: 3HPCOAHYD + - id: "3HPCOAHYD" - name: "3-Hydroxyisobutyryl-Coenzyme A Hydrolase" - metabolites: !!omap - m00799c: -1 @@ -225930,15 +225930,15 @@ - m02142c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000198130 - - rxnFrom: Recon3D - - eccodes: 3.1.2.4 - - references: PMID:8824301 + - gene_reaction_rule: "ENSG00000198130" + - rxnFrom: "Recon3D" + - eccodes: "3.1.2.4" + - references: "PMID:8824301" - subsystem: - - Beta-alanine metabolism + - "Beta-alanine metabolism" - confidence_score: 0 - !!omap - - id: 3HPPD + - id: "3HPPD" - name: "3-Hydroxypropionate Dehydrogenase" - metabolites: !!omap - m00900c: 1 @@ -225948,15 +225948,15 @@ - m02553c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.1.1.59 - - references: PMID:4507604 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.59" + - references: "PMID:4507604" - subsystem: - - Propanoate metabolism + - "Propanoate metabolism" - confidence_score: 0 - !!omap - - id: 3MOBt2im + - id: "3MOBt2im" - name: "3-Methyl-2-Oxobutanoate Mitochondrial Transport via Proton Symport" - metabolites: !!omap - m00824c: -1 @@ -225965,15 +225965,15 @@ - m02039m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:8428987 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:8428987" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3NTD7l + - id: "3NTD7l" - name: "3'-Nucleotidase (AMP), Lysosomal" - metabolites: !!omap - 3amp_l: -1 @@ -225982,15 +225982,15 @@ - m02751l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000014257 or ENSG00000102575 or ENSG00000134575 or ENSG00000162836 - - rxnFrom: Recon3D - - eccodes: 3.1.3.2 - - references: + - gene_reaction_rule: "ENSG00000014257 or ENSG00000102575 or ENSG00000134575 or ENSG00000162836" + - rxnFrom: "Recon3D" + - eccodes: "3.1.3.2" + - references: "" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: 4HBZCOAFm + - id: "4HBZCOAFm" - name: "4-Hydroxybenzoyl Coenzyme A Formation" - metabolites: !!omap - m00982m: -1 @@ -226003,15 +226003,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11583838,PMID:12232327 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11583838,PMID:12232327" - subsystem: - - Ubiquinone synthesis + - "Ubiquinone synthesis" - confidence_score: 0 - !!omap - - id: 4HBZFm + - id: "4HBZFm" - name: "4-Hydroxybenzoate Formation" - metabolites: !!omap - m00995m: 1 @@ -226021,30 +226021,30 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11583838,PMID:12232327 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11583838,PMID:12232327" - subsystem: - - Ubiquinone synthesis + - "Ubiquinone synthesis" - confidence_score: 0 - !!omap - - id: 4MPTNLtr + - id: "4MPTNLtr" - name: "4-Methylpentanal Transport, Endoplasmatic Reticulum" - metabolites: !!omap - m02182c: -1 - m02182r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:8428987 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:8428987" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 5FTHFt2 + - id: "5FTHFt2" - name: "5-Formyltetrahydrofolate Transport via Anion Exchange" - metabolites: !!omap - m01100c: 1 @@ -226053,15 +226053,15 @@ - m02040s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000173638 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11375437,PMID:14770311 + - gene_reaction_rule: "ENSG00000173638" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11375437,PMID:14770311" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 5HOXINDACTOXm + - id: "5HOXINDACTOXm" - name: "5-Hydroxyindoleacetaldehyde:NAD+ Oxidoreductase, Mitochondrial" - metabolites: !!omap - m01102m: -1 @@ -226072,15 +226072,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111275 or ENSG00000137124 or ENSG00000159423 - - rxnFrom: Recon3D - - eccodes: 1.5.1.12 - - references: PMID:11306106 + - gene_reaction_rule: "ENSG00000111275 or ENSG00000137124 or ENSG00000159423" + - rxnFrom: "Recon3D" + - eccodes: "1.5.1.12" + - references: "PMID:11306106" - subsystem: - - Tryptophan metabolism + - "Tryptophan metabolism" - confidence_score: 0 - !!omap - - id: 5HTRPVESSEC + - id: "5HTRPVESSEC" - name: "5-Hydroxy-L-Tryptophan Secretion via Secretory Vesicle (ATP Driven)" - metabolites: !!omap - m01107c: -1 @@ -226092,15 +226092,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000036565 or ENSG00000165646 - - rxnFrom: Recon3D - - eccodes: 1.13.11.52 - - references: PMID:12827358,PMID:15383652 + - gene_reaction_rule: "ENSG00000036565 or ENSG00000165646" + - rxnFrom: "Recon3D" + - eccodes: "1.13.11.52" + - references: "PMID:12827358,PMID:15383652" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 5MTHFt2 + - id: "5MTHFt2" - name: "5-Methyltetrahydrofolate Transport via Anion Exchange" - metabolites: !!omap - m01115c: 1 @@ -226109,30 +226109,30 @@ - m02040s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000173638 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11375437,PMID:14770311 + - gene_reaction_rule: "ENSG00000173638" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11375437,PMID:14770311" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 7DHCHSTEROLtr + - id: "7DHCHSTEROLtr" - name: "Cholesterol Precursor Intracellular Transport" - metabolites: !!omap - m02805c: 1 - m02805r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: A_MANASE + - id: "A_MANASE" - name: "Alpha-Mannosidase" - metabolites: !!omap - m00141c: -1 @@ -226141,45 +226141,45 @@ - m02453c: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000140400 - - rxnFrom: Recon3D - - eccodes: 3.2.1.24 - - references: + - gene_reaction_rule: "ENSG00000140400" + - rxnFrom: "Recon3D" + - eccodes: "3.2.1.24" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: ACACtx + - id: "ACACtx" - name: "Acetoacetate Intracellular Transport Unknown Mechanism" - metabolites: !!omap - m01253c: -1 - m01253p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.3.1.16 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.16" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ACCOAtr + - id: "ACCOAtr" - name: "Acetyl Coenzyme A Transport" - metabolites: !!omap - m01261c: -1 - m01261r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169359 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000169359" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ACHVESSEC + - id: "ACHVESSEC" - name: "Acetylcholine Secretion via Secretory Vesicle (ATP Driven)" - metabolites: !!omap - m01260c: -1 @@ -226191,15 +226191,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000187714 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:12827358,PMID:15383652 + - gene_reaction_rule: "ENSG00000187714" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:12827358,PMID:15383652" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ACOX22x + - id: "ACOX22x" - name: "Acyl-Coenzyme A Oxidase 2, Branched Chain" - metabolites: !!omap - m00037p: 1 @@ -226209,30 +226209,30 @@ - m02630p: -0.5 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000168306 - - rxnFrom: Recon3D - - eccodes: 1.3.3.6 - - references: PMID:11181649 + - gene_reaction_rule: "ENSG00000168306" + - rxnFrom: "Recon3D" + - eccodes: "1.3.3.6" + - references: "PMID:11181649" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: ACRNtm + - id: "ACRNtm" - name: "O-Acetylcarnintine Transport into Mitochondria via Diffusion" - metabolites: !!omap - m02634c: -1 - m02634m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: Recon3D - - eccodes: 3.1.3.2 - - references: PMID:14598172,PMID:977593 + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "Recon3D" + - eccodes: "3.1.3.2" + - references: "PMID:14598172,PMID:977593" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ACt2m + - id: "ACt2m" - name: "Acetate Mitochondrial Transport via Proton Symport" - metabolites: !!omap - m01252c: -1 @@ -226241,15 +226241,15 @@ - m02039m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.1.1.4 - - references: PMID:10198029,PMID:15755952 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.1.1.4" + - references: "PMID:10198029,PMID:15755952" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ADPRDPm + - id: "ADPRDPm" - name: "ADPribose Diphosphatase, Mitochondrial" - metabolites: !!omap - m01288m: -1 @@ -226259,45 +226259,45 @@ - m02845m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000170502 - - rxnFrom: Recon3D - - eccodes: 3.6.1.13 - - references: PMID:12427752,PMID:12948489,PMID:15347676 + - gene_reaction_rule: "ENSG00000170502" + - rxnFrom: "Recon3D" + - eccodes: "3.6.1.13" + - references: "PMID:12427752,PMID:12948489,PMID:15347676" - subsystem: - - Nucleotide metabolism + - "Nucleotide metabolism" - confidence_score: 0 - !!omap - - id: ADRNCOAtx + - id: "ADRNCOAtx" - name: "Fatty Acid Intracellular Transport" - metabolites: !!omap - m00119c: -1 - m00119p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ADRNCRNt + - id: "ADRNCRNt" - name: "Transport into the Mitochondria (Carnitine)" - metabolites: !!omap - m02636c: -1 - m02636m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: ADRNLPVESSEC + - id: "ADRNLPVESSEC" - name: "Adrenaline Secretion via Secretory Vesicle (ATP Driven)" - metabolites: !!omap - m01285c: 1 @@ -226309,15 +226309,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000036565 or ENSG00000165646 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:12827358,PMID:15383652 + - gene_reaction_rule: "ENSG00000036565 or ENSG00000165646" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:12827358,PMID:15383652" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: AGLPT + - id: "AGLPT" - name: "Alkyl Glycerol Phosphate Acyltransferase" - metabolites: !!omap - Rtotal2_c: -1 @@ -226327,15 +226327,15 @@ - m02040c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: AGPAT1 + - id: "AGPAT1" - name: "1-Acylglycerol-3-Phosphate O-Acyltransferase 1" - metabolites: !!omap - Rtotal2coa_c: -1 @@ -226345,15 +226345,15 @@ - m02733c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000026652 or ENSG00000143797 or ENSG00000155189 or ENSG00000158669 or ENSG00000160216 or ENSG00000169692 or ENSG00000204310 - - rxnFrom: Recon3D - - eccodes: 2.3.1.51 - - references: + - gene_reaction_rule: "ENSG00000026652 or ENSG00000143797 or ENSG00000155189 or ENSG00000158669 or ENSG00000160216 or ENSG00000169692 or ENSG00000204310" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.51" + - references: "" - subsystem: - - Triacylglycerol synthesis + - "Triacylglycerol synthesis" - confidence_score: 0 - !!omap - - id: AGPSx + - id: "AGPSx" - name: "Alkylglycerone Phosphate Synthase" - metabolites: !!omap - Rtotal_p: 1 @@ -226363,15 +226363,15 @@ - m02039p: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000018510 - - rxnFrom: Recon3D - - eccodes: 2.5.1.26 - - references: + - gene_reaction_rule: "ENSG00000018510" + - rxnFrom: "Recon3D" + - eccodes: "2.5.1.26" + - references: "" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: ALAt2rL + - id: "ALAt2rL" - name: "L-Alanine Reversible Transport via Proton Symport, Lysosomal" - metabolites: !!omap - m01307c: 1 @@ -226380,15 +226380,15 @@ - m02039l: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123643 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11390972,PMID:11959859 + - gene_reaction_rule: "ENSG00000123643" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11390972,PMID:11959859" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ALDD21 + - id: "ALDD21" - name: "Aldehyde Dehydrogenase (Pristanal, NAD)" - metabolites: !!omap - m00564c: -1 @@ -226399,15 +226399,15 @@ - m02766c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072210 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11591435,PMID:8528251 + - gene_reaction_rule: "ENSG00000072210" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11591435,PMID:8528251" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: ALKP + - id: "ALKP" - name: "Alkaline Phosphatase" - metabolites: !!omap - m01690c: -1 @@ -226416,15 +226416,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162551 or ENSG00000163283 or ENSG00000163286 or ENSG00000163295 - - rxnFrom: Recon3D - - eccodes: 3.1.3.1 - - references: PMID:3042787 + - gene_reaction_rule: "ENSG00000162551 or ENSG00000163283 or ENSG00000163286 or ENSG00000163295" + - rxnFrom: "Recon3D" + - eccodes: "3.1.3.1" + - references: "PMID:3042787" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: AMACR2p + - id: "AMACR2p" - name: "Alpha-Methylacyl Coenzyme A Racemase (Reductase)" - metabolites: !!omap - m00614p: -1 @@ -226433,15 +226433,15 @@ - m02630p: -0.5 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000242110 - - rxnFrom: Recon3D - - eccodes: 5.1.99.4 - - references: + - gene_reaction_rule: "ENSG00000242110" + - rxnFrom: "Recon3D" + - eccodes: "5.1.99.4" + - references: "" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: AMACR2r + - id: "AMACR2r" - name: "Alpha-Methylacyl Coenzyme A Racemase (Reductase)" - metabolites: !!omap - m00614r: -1 @@ -226450,30 +226450,30 @@ - m02630r: -0.5 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000242110 - - rxnFrom: Recon3D - - eccodes: 5.1.99.4 - - references: + - gene_reaction_rule: "ENSG00000242110" + - rxnFrom: "Recon3D" + - eccodes: "5.1.99.4" + - references: "" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: AMACRr + - id: "AMACRr" - name: "Alpha-Methylacyl Coenzyme A Racemase" - metabolites: !!omap - m00616r: -1 - m00618r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000242110 - - rxnFrom: Recon3D - - eccodes: 5.1.99.4 - - references: + - gene_reaction_rule: "ENSG00000242110" + - rxnFrom: "Recon3D" + - eccodes: "5.1.99.4" + - references: "" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: AMY2e + - id: "AMY2e" - name: "Alpha-Amylase, Extracellular (Glygn2 -> Glygn4)" - metabolites: !!omap - glygn4_s: 1 @@ -226482,15 +226482,15 @@ - m02040s: -8 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000021488 and ENSG00000138079) or ENSG00000168003 or ENSG00000174876 or ENSG00000187733 or ENSG00000237763 or ENSG00000240038 or ENSG00000243480 - - rxnFrom: Recon3D - - eccodes: 3.2.1.1 - - references: + - gene_reaction_rule: "(ENSG00000021488 and ENSG00000138079) or ENSG00000168003 or ENSG00000174876 or ENSG00000187733 or ENSG00000237763 or ENSG00000240038 or ENSG00000243480" + - rxnFrom: "Recon3D" + - eccodes: "3.2.1.1" + - references: "" - subsystem: - - Starch and sucrose metabolism + - "Starch and sucrose metabolism" - confidence_score: 0 - !!omap - - id: APOCFm + - id: "APOCFm" - name: "Apocarboxylase Formation, Mitochondrial" - metabolites: !!omap - m00185m: -1 @@ -226500,15 +226500,15 @@ - m02426m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Biotin metabolism + - "Biotin metabolism" - confidence_score: 0 - !!omap - - id: APOC_LYS_BTNPm + - id: "APOC_LYS_BTNPm" - name: "Proteolysis of ApoC-Lys-Biotin, Mitochondrial" - metabolites: !!omap - m00185m: 1 @@ -226517,75 +226517,75 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Biotin metabolism + - "Biotin metabolism" - confidence_score: 0 - !!omap - - id: ARACHCOAtx + - id: "ARACHCOAtx" - name: "Fatty Acid Intracellular Transport" - metabolites: !!omap - m01773c: -1 - m01773p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ARACHCRNt + - id: "ARACHCRNt" - name: "Transport into the Mitochondria (Carnitine)" - metabolites: !!omap - m01772c: -1 - m01772m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: ARACHDCOAtx + - id: "ARACHDCOAtx" - name: "Fatty Acid Intracellular Transport" - metabolites: !!omap - m01364c: -1 - m01364p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ARACHDtr + - id: "ARACHDtr" - name: "Intracellular Transport" - metabolites: !!omap - m01362c: -1 - m01362r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ARGtm + - id: "ARGtm" - name: "Arginine Mitochondrial Transport via Ornithine Carrier" - metabolites: !!omap - m01365c: -1 @@ -226594,15 +226594,15 @@ - m02039m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000102743 or ENSG00000120329 - - rxnFrom: Recon3D - - eccodes: 4.3.2.1 - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000102743 or ENSG00000120329" + - rxnFrom: "Recon3D" + - eccodes: "4.3.2.1" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ARTCOAL1 + - id: "ARTCOAL1" - name: "R Group Coenzyme A Ligase" - metabolites: !!omap - Rtotal_c: 1 @@ -226612,15 +226612,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: ARTCOAL2 + - id: "ARTCOAL2" - name: "R Group Coenzyme A Ligase" - metabolites: !!omap - Rtotal2_c: 1 @@ -226630,15 +226630,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: ARTCOAL3 + - id: "ARTCOAL3" - name: "R Group Coenzyme A Ligase" - metabolites: !!omap - Rtotal3_c: 1 @@ -226648,15 +226648,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: R_group_phosphotase_1 + - id: "R_group_phosphotase_1" - name: "R Group Phosphotase 1" - metabolites: !!omap - Rtotal_c: -1 @@ -226667,15 +226667,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.6.8 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.6.8" + - references: "" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: R_group_phosphotase_2 + - id: "R_group_phosphotase_2" - name: "R Group Phosphotase 2" - metabolites: !!omap - Rtotal2_c: -1 @@ -226686,15 +226686,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: R_group_phosphotase_3 + - id: "R_group_phosphotase_3" - name: "R Group Phosphotase 3" - metabolites: !!omap - Rtotal3_c: -1 @@ -226705,30 +226705,30 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: ARTFR11 + - id: "ARTFR11" - name: "R Group Artificial Flux" - metabolites: !!omap - R1coa_hs_c: 1 - m02678c: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: ARTFR12 + - id: "ARTFR12" - name: "R Group Artificial Flux (C16:1)" - metabolites: !!omap - R1coa_hs_c: 1 @@ -226738,30 +226738,30 @@ - m02677c: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: ARTFR13 + - id: "ARTFR13" - name: "R Group Artificial Flux" - metabolites: !!omap - R1coa_hs_c: 0.875 - m02495c: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: ARTFR202 + - id: "ARTFR202" - name: "R Group Artificial Flux (C18:3, N-3)" - metabolites: !!omap - R2coa_hs_c: 1.125 @@ -226773,15 +226773,15 @@ - m02555m: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: ARTFR203 + - id: "ARTFR203" - name: "R Group Artificial Flux" - metabolites: !!omap - R2coa_hs_c: 1.125 @@ -226793,15 +226793,15 @@ - m02555m: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: ARTFR204 + - id: "ARTFR204" - name: "R Group Artificial Flux" - metabolites: !!omap - R2coa_hs_c: 1.125 @@ -226813,15 +226813,15 @@ - m02555m: -2 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: ARTFR205 + - id: "ARTFR205" - name: "R Group Artificial Flux" - metabolites: !!omap - R2coa_hs_c: 1.25 @@ -226833,15 +226833,15 @@ - m02555m: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: ARTFR206 + - id: "ARTFR206" - name: "R Group Artificial Flux" - metabolites: !!omap - R2coa_hs_c: 1.25 @@ -226853,30 +226853,30 @@ - m02555m: -2 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: ARTFR207 + - id: "ARTFR207" - name: "R Group Artificial Flux" - metabolites: !!omap - R2coa_hs_c: 1.25 - m01773c: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: ARTFR208 + - id: "ARTFR208" - name: "R Group Artificial Flux" - metabolites: !!omap - R2coa_hs_c: 1.25 @@ -226888,15 +226888,15 @@ - m02555m: -2 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: ARTFR209 + - id: "ARTFR209" - name: "R Group Artificial Flux" - metabolites: !!omap - R2coa_hs_c: 1.375 @@ -226908,15 +226908,15 @@ - m02555m: -2 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: ARTFR210 + - id: "ARTFR210" - name: "R Group Artificial Flux" - metabolites: !!omap - R2coa_hs_c: 1.125 @@ -226928,15 +226928,15 @@ - m02555m: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: ARTFR211 + - id: "ARTFR211" - name: "R Group Artificial Flux" - metabolites: !!omap - R2coa_hs_c: 1.375 @@ -226948,15 +226948,15 @@ - m02555m: -2 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: ARTFR212 + - id: "ARTFR212" - name: "R Group Artificial Flux" - metabolites: !!omap - R2coa_hs_c: 1.375 @@ -226968,15 +226968,15 @@ - m02555m: -2 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: ARTFR213 + - id: "ARTFR213" - name: "R Group Artificial Flux" - metabolites: !!omap - R2coa_hs_c: 1.375 @@ -226988,30 +226988,30 @@ - m02555m: -3 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: ARTFR31 + - id: "ARTFR31" - name: "R Group Artificial Flux" - metabolites: !!omap - R3coa_hs_c: 1.125 - m02941c: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: ARTFR32 + - id: "ARTFR32" - name: "R Group Artificial Flux" - metabolites: !!omap - R3coa_hs_c: 1.125 @@ -227021,15 +227021,15 @@ - m02647c: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: ARTFR33 + - id: "ARTFR33" - name: "R Group Artificial Flux" - metabolites: !!omap - R3coa_hs_c: 1.125 @@ -227039,15 +227039,15 @@ - octd11ecoa_c: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: ARTFR34 + - id: "ARTFR34" - name: "R Group Artificial Flux" - metabolites: !!omap - R3coa_hs_c: 1.125 @@ -227057,15 +227057,15 @@ - m02555m: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: ARTFR41 + - id: "ARTFR41" - name: "R Group Artificial Flux" - metabolites: !!omap - R4coa_hs_c: 1 @@ -227075,15 +227075,15 @@ - m02677c: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: ARTFR42 + - id: "ARTFR42" - name: "R Group Artificial Flux" - metabolites: !!omap - R4coa_hs_c: 1.125 @@ -227093,15 +227093,15 @@ - m02647c: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: ARTFR43 + - id: "ARTFR43" - name: "R Group Artificial Flux" - metabolites: !!omap - R4coa_hs_c: 1.125 @@ -227111,15 +227111,15 @@ - octd11ecoa_c: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: ARTFR44 + - id: "ARTFR44" - name: "R Group Artificial Flux" - metabolites: !!omap - R4coa_hs_c: 1.125 @@ -227129,15 +227129,15 @@ - m02555m: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: ARTFR45 + - id: "ARTFR45" - name: "R Group Artificial Flux" - metabolites: !!omap - R4coa_hs_c: 1.5 @@ -227147,15 +227147,15 @@ - m02555m: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: ARTFR46 + - id: "ARTFR46" - name: "R Group Artificial Flux" - metabolites: !!omap - R4coa_hs_c: 1.125 @@ -227165,45 +227165,45 @@ - m02555m: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: ARTFR51 + - id: "ARTFR51" - name: "R Group Artificial Flux" - metabolites: !!omap - R5coa_hs_c: 1.5 - m02971c: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: ARTFR52 + - id: "ARTFR52" - name: "R Group Artificial Flux" - metabolites: !!omap - R5coa_hs_c: 1.625 - m02110c: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: ARTFR53 + - id: "ARTFR53" - name: "R Group Artificial Flux" - metabolites: !!omap - R5coa_hs_c: 1.25 @@ -227215,15 +227215,15 @@ - m02555m: -2 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: ARTFR54 + - id: "ARTFR54" - name: "R Group Artificial Flux" - metabolites: !!omap - R5coa_hs_c: 1.5 @@ -227235,15 +227235,15 @@ - m02555m: -2 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: ARTFR55 + - id: "ARTFR55" - name: "R Group Artificial Flux" - metabolites: !!omap - R5coa_hs_c: 1.5 @@ -227255,15 +227255,15 @@ - m02555m: -2 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: ARTFR56 + - id: "ARTFR56" - name: "R Group Artificial Flux" - metabolites: !!omap - R5coa_hs_c: 1.5 @@ -227275,15 +227275,15 @@ - m02555m: -2 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: ARTFR57 + - id: "ARTFR57" - name: "R Group Artificial Flux" - metabolites: !!omap - R5coa_hs_c: 1.5 @@ -227295,15 +227295,15 @@ - m02555m: -3 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: ARTFR61 + - id: "ARTFR61" - name: "R Group Artificial Flux" - metabolites: !!omap - R6coa_hs_c: 1 @@ -227313,105 +227313,105 @@ - m02555m: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: ARTPLM1 + - id: "ARTPLM1" - name: "R Group to Palmitate Conversion" - metabolites: !!omap - Rtotalcoa_c: -1 - m02678c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: ARTPLM1m + - id: "ARTPLM1m" - name: "R Group to Palmitate Conversion" - metabolites: !!omap - Rtotalcoa_m: -1 - m02678m: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: ARTPLM2 + - id: "ARTPLM2" - name: "R Group to Palmitate Conversion" - metabolites: !!omap - Rtotal2coa_c: -1 - m02678c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: ARTPLM2m + - id: "ARTPLM2m" - name: "R Group to Palmitate Conversion" - metabolites: !!omap - Rtotal2coa_m: -1 - m02678m: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: ARTPLM3 + - id: "ARTPLM3" - name: "R Group to Palmitate Conversion" - metabolites: !!omap - Rtotal3coa_c: -1 - m02678c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: ARTPLM3m + - id: "ARTPLM3m" - name: "R Group to Palmitate Conversion" - metabolites: !!omap - Rtotal3coa_m: -1 - m02678m: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: ASAH1 + - id: "ASAH1" - name: "N-Acylsphingosine Amidohydrolase" - metabolites: !!omap - Rtotal_l: 1 @@ -227420,15 +227420,15 @@ - m02929l: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000104763 - - rxnFrom: Recon3D - - eccodes: 3.5.1.23 - - references: PMID:8955159 + - gene_reaction_rule: "ENSG00000104763" + - rxnFrom: "Recon3D" + - eccodes: "3.5.1.23" + - references: "PMID:8955159" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: ATPasel + - id: "ATPasel" - name: "V-Type ATPase, H+ Transporting, Lysosomal" - metabolites: !!omap - m01285c: 1 @@ -227438,15 +227438,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ((ENSG00000105929 and ENSG00000113732 and ENSG00000117410 and ENSG00000147614 and ENSG00000185883) or (ENSG00000113732 and ENSG00000117410 and ENSG00000147614 and ENSG00000185344 and ENSG00000185883) or (ENSG00000105929 and ENSG00000113732 and ENSG00000117410 and ENSG00000159720 and ENSG00000185883) or (ENSG00000033627 and ENSG00000113732 and ENSG00000117410 and ENSG00000147614 and ENSG00000185883) or (ENSG00000033627 and ENSG00000113732 and ENSG00000117410 and ENSG00000159720 and ENSG00000185883) or (ENSG00000110719 and ENSG00000113732 and ENSG00000117410 and ENSG00000159720 and ENSG00000185883) or (ENSG00000113732 and ENSG00000117410 and ENSG00000159720 and ENSG00000185344 and ENSG00000185883) or (ENSG00000110719 and ENSG00000113732 and ENSG00000117410 and ENSG00000147614 and ENSG00000185883)) and ((ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000128524 and ENSG00000136888 and ENSG00000147416 and ENSG00000155097 and ENSG00000250565) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000116039 and ENSG00000128524 and ENSG00000136888 and ENSG00000155097 and ENSG00000250565) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000128524 and ENSG00000136888 and ENSG00000143882 and ENSG00000147416 and ENSG00000250565) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000128524 and ENSG00000131100 and ENSG00000136888 and ENSG00000147416 and ENSG00000155097) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000116039 and ENSG00000128524 and ENSG00000131100 and ENSG00000136888 and ENSG00000155097) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000128524 and ENSG00000147416 and ENSG00000155097 and ENSG00000213760 and ENSG00000250565) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000128524 and ENSG00000143882 and ENSG00000147416 and ENSG00000213760 and ENSG00000250565) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000128524 and ENSG00000131100 and ENSG00000147416 and ENSG00000155097 and ENSG00000213760) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000116039 and ENSG00000128524 and ENSG00000131100 and ENSG00000151418 and ENSG00000155097) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000128524 and ENSG00000143882 and ENSG00000147416 and ENSG00000151418 and ENSG00000250565) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000116039 and ENSG00000128524 and ENSG00000131100 and ENSG00000143882 and ENSG00000213760) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000116039 and ENSG00000128524 and ENSG00000143882 and ENSG00000213760 and ENSG00000250565) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000116039 and ENSG00000128524 and ENSG00000131100 and ENSG00000155097 and ENSG00000213760) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000128524 and ENSG00000147416 and ENSG00000151418 and ENSG00000155097 and ENSG00000250565) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000128524 and ENSG00000131100 and ENSG00000147416 and ENSG00000151418 and ENSG00000155097) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000116039 and ENSG00000128524 and ENSG00000155097 and ENSG00000213760 and ENSG00000250565) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000116039 and ENSG00000128524 and ENSG00000151418 and ENSG00000155097 and ENSG00000250565) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000128524 and ENSG00000131100 and ENSG00000143882 and ENSG00000147416 and ENSG00000151418) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000128524 and ENSG00000131100 and ENSG00000143882 and ENSG00000147416 and ENSG00000213760) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000116039 and ENSG00000128524 and ENSG00000131100 and ENSG00000143882 and ENSG00000151418) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000116039 and ENSG00000128524 and ENSG00000143882 and ENSG00000151418 and ENSG00000250565) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000116039 and ENSG00000128524 and ENSG00000136888 and ENSG00000143882 and ENSG00000250565) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000116039 and ENSG00000128524 and ENSG00000131100 and ENSG00000136888 and ENSG00000143882) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000128524 and ENSG00000131100 and ENSG00000136888 and ENSG00000143882 and ENSG00000147416)) - - rxnFrom: Recon3D - - eccodes: 3.6.3.14 - - references: PMID:10224039,PMID:12628346 + - gene_reaction_rule: "((ENSG00000105929 and ENSG00000113732 and ENSG00000117410 and ENSG00000147614 and ENSG00000185883) or (ENSG00000113732 and ENSG00000117410 and ENSG00000147614 and ENSG00000185344 and ENSG00000185883) or (ENSG00000105929 and ENSG00000113732 and ENSG00000117410 and ENSG00000159720 and ENSG00000185883) or (ENSG00000033627 and ENSG00000113732 and ENSG00000117410 and ENSG00000147614 and ENSG00000185883) or (ENSG00000033627 and ENSG00000113732 and ENSG00000117410 and ENSG00000159720 and ENSG00000185883) or (ENSG00000110719 and ENSG00000113732 and ENSG00000117410 and ENSG00000159720 and ENSG00000185883) or (ENSG00000113732 and ENSG00000117410 and ENSG00000159720 and ENSG00000185344 and ENSG00000185883) or (ENSG00000110719 and ENSG00000113732 and ENSG00000117410 and ENSG00000147614 and ENSG00000185883)) and ((ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000128524 and ENSG00000136888 and ENSG00000147416 and ENSG00000155097 and ENSG00000250565) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000116039 and ENSG00000128524 and ENSG00000136888 and ENSG00000155097 and ENSG00000250565) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000128524 and ENSG00000136888 and ENSG00000143882 and ENSG00000147416 and ENSG00000250565) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000128524 and ENSG00000131100 and ENSG00000136888 and ENSG00000147416 and ENSG00000155097) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000116039 and ENSG00000128524 and ENSG00000131100 and ENSG00000136888 and ENSG00000155097) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000128524 and ENSG00000147416 and ENSG00000155097 and ENSG00000213760 and ENSG00000250565) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000128524 and ENSG00000143882 and ENSG00000147416 and ENSG00000213760 and ENSG00000250565) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000128524 and ENSG00000131100 and ENSG00000147416 and ENSG00000155097 and ENSG00000213760) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000116039 and ENSG00000128524 and ENSG00000131100 and ENSG00000151418 and ENSG00000155097) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000128524 and ENSG00000143882 and ENSG00000147416 and ENSG00000151418 and ENSG00000250565) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000116039 and ENSG00000128524 and ENSG00000131100 and ENSG00000143882 and ENSG00000213760) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000116039 and ENSG00000128524 and ENSG00000143882 and ENSG00000213760 and ENSG00000250565) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000116039 and ENSG00000128524 and ENSG00000131100 and ENSG00000155097 and ENSG00000213760) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000128524 and ENSG00000147416 and ENSG00000151418 and ENSG00000155097 and ENSG00000250565) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000128524 and ENSG00000131100 and ENSG00000147416 and ENSG00000151418 and ENSG00000155097) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000116039 and ENSG00000128524 and ENSG00000155097 and ENSG00000213760 and ENSG00000250565) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000116039 and ENSG00000128524 and ENSG00000151418 and ENSG00000155097 and ENSG00000250565) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000128524 and ENSG00000131100 and ENSG00000143882 and ENSG00000147416 and ENSG00000151418) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000128524 and ENSG00000131100 and ENSG00000143882 and ENSG00000147416 and ENSG00000213760) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000116039 and ENSG00000128524 and ENSG00000131100 and ENSG00000143882 and ENSG00000151418) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000116039 and ENSG00000128524 and ENSG00000143882 and ENSG00000151418 and ENSG00000250565) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000116039 and ENSG00000128524 and ENSG00000136888 and ENSG00000143882 and ENSG00000250565) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000116039 and ENSG00000128524 and ENSG00000131100 and ENSG00000136888 and ENSG00000143882) or (ENSG00000047249 and ENSG00000100554 and ENSG00000114573 and ENSG00000128524 and ENSG00000131100 and ENSG00000136888 and ENSG00000143882 and ENSG00000147416))" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.14" + - references: "PMID:10224039,PMID:12628346" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: B3GNT312g + - id: "B3GNT312g" - name: "UDP-GlcNac:Betagal Beta-1, 3-N-Acetylglucosaminyltransferase 3, Golgi Apparatus" - metabolites: !!omap - m02039g: 1 @@ -227456,15 +227456,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000179913 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10072769 + - gene_reaction_rule: "ENSG00000179913" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10072769" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: B3GNT314g + - id: "B3GNT314g" - name: "UDP-GlcNac:Betagal Beta-1, 3-N-Acetylglucosaminyltransferase 3, Golgi Apparatus" - metabolites: !!omap - galacglcgalacglcgal14acglcgalgluside_hs_g: 1 @@ -227474,15 +227474,15 @@ - m03107g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000179913 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10072769 + - gene_reaction_rule: "ENSG00000179913" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10072769" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: BAAT1x + - id: "BAAT1x" - name: "Bile Acid Coenzyme A: Amino Acid N-Acyltransferase" - metabolites: !!omap - m01514p: -1 @@ -227491,15 +227491,15 @@ - m01988p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136881 - - rxnFrom: Recon3D - - eccodes: 2.3.1.65 - - references: + - gene_reaction_rule: "ENSG00000136881" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.65" + - references: "" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: BAAT3x + - id: "BAAT3x" - name: "Bile Acid Coenzyme A: Amino Acid N-Acyltransferase" - metabolites: !!omap - dgcholcoa_p: -1 @@ -227508,15 +227508,15 @@ - m01987p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136881 - - rxnFrom: Recon3D - - eccodes: 2.3.1.65 - - references: + - gene_reaction_rule: "ENSG00000136881" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.65" + - references: "" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: BAAT4x + - id: "BAAT4x" - name: "Bile Acid Coenzyme A: Amino Acid N-Acyltransferase" - metabolites: !!omap - m01434p: -1 @@ -227525,15 +227525,15 @@ - m01987p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136881 - - rxnFrom: Recon3D - - eccodes: 2.3.1.65 - - references: + - gene_reaction_rule: "ENSG00000136881" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.65" + - references: "" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: BACCLm + - id: "BACCLm" - name: "Biotin-[Acetyl Coenzyme A-Carboxylase] Ligase, Mitochondrial" - metabolites: !!omap - m01371m: -1 @@ -227543,15 +227543,15 @@ - m02759m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000159267 - - rxnFrom: Recon3D - - eccodes: 6.3.4.15 - - references: PMID:12459313,PMID:7842009 + - gene_reaction_rule: "ENSG00000159267" + - rxnFrom: "Recon3D" + - eccodes: "6.3.4.15" + - references: "PMID:12459313,PMID:7842009" - subsystem: - - Biotin metabolism + - "Biotin metabolism" - confidence_score: 0 - !!omap - - id: BALAVECSEC + - id: "BALAVECSEC" - name: "B-Alanine Secretion via Secretory Vesicle (ATP Driven)" - metabolites: !!omap - m01285c: 1 @@ -227563,15 +227563,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101438 - - rxnFrom: Recon3D - - eccodes: 2.3.1.65 - - references: PMID:12750892,PMID:15383652 + - gene_reaction_rule: "ENSG00000101438" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.65" + - references: "PMID:12750892,PMID:15383652" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: BAMPPALDOXm + - id: "BAMPPALDOXm" - name: "Beta-Aminopropion Aldehyde:NAD+ Oxidoreductase, Mitochondrial" - metabolites: !!omap - m00760m: -1 @@ -227582,45 +227582,45 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111275 or ENSG00000137124 or ENSG00000159423 - - rxnFrom: Recon3D - - eccodes: 1.5.1.12 - - references: + - gene_reaction_rule: "ENSG00000111275 or ENSG00000137124 or ENSG00000159423" + - rxnFrom: "Recon3D" + - eccodes: "1.5.1.12" + - references: "" - subsystem: - - Beta-alanine metabolism + - "Beta-alanine metabolism" - confidence_score: 0 - !!omap - - id: BILDGLCURtr + - id: "BILDGLCURtr" - name: "Glucuronidated Compound Transport" - metabolites: !!omap - m01397c: -1 - m01397r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: BILGLCURtr + - id: "BILGLCURtr" - name: "Glucuronidated Compound Transport" - metabolites: !!omap - m01398c: -1 - m01398r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: BTNDm + - id: "BTNDm" - name: "Biotinidase (Biotin), Mitochondrial" - metabolites: !!omap - m01400m: -1 @@ -227629,15 +227629,15 @@ - m02426m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169814 - - rxnFrom: Recon3D - - eccodes: 3.5.1.12 - - references: PMID:12459313,PMID:15059618 + - gene_reaction_rule: "ENSG00000169814" + - rxnFrom: "Recon3D" + - eccodes: "3.5.1.12" + - references: "PMID:12459313,PMID:15059618" - subsystem: - - Biotin metabolism + - "Biotin metabolism" - confidence_score: 0 - !!omap - - id: BTNPLm + - id: "BTNPLm" - name: "Holocarboxylase Synthestase (Biotin Protein Ligase), Mitochondrial" - metabolites: !!omap - m01334m: 1 @@ -227647,15 +227647,15 @@ - m02039m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000159267 - - rxnFrom: Recon3D - - eccodes: 3.5.1.12 - - references: + - gene_reaction_rule: "ENSG00000159267" + - rxnFrom: "Recon3D" + - eccodes: "3.5.1.12" + - references: "" - subsystem: - - Biotin metabolism + - "Biotin metabolism" - confidence_score: 0 - !!omap - - id: BTNt2m + - id: "BTNt2m" - name: "Biotin Reversible Transport via Proton Symport, Mitochondria" - metabolites: !!omap - m01401c: -1 @@ -227664,15 +227664,15 @@ - m02039m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000155380 - - rxnFrom: Recon3D - - eccodes: 3.5.1.12 - - references: PMID:12949353,PMID:15121743,PMID:16011464 + - gene_reaction_rule: "ENSG00000155380" + - rxnFrom: "Recon3D" + - eccodes: "3.5.1.12" + - references: "PMID:12949353,PMID:15121743,PMID:16011464" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: BTNt3i + - id: "BTNt3i" - name: "Biotin Transport via Sodium Symport" - metabolites: !!omap - m01285c: 1 @@ -227686,15 +227686,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138074 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10329687,PMID:10334869,PMID:12646417,PMID:15561972,PMID:9516450 + - gene_reaction_rule: "ENSG00000138074" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10329687,PMID:10334869,PMID:12646417,PMID:15561972,PMID:9516450" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: BTNt4i + - id: "BTNt4i" - name: "Biotin Uptake (Antiport)" - metabolites: !!omap - m01401c: 1 @@ -227703,15 +227703,15 @@ - m02039s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135917 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:14770311,PMID:15623830 + - gene_reaction_rule: "ENSG00000135917" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:14770311,PMID:15623830" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: BUP2 + - id: "BUP2" - name: "Beta-Ureidopropionase (D-3-Amino-Isobutanoate Forming)" - metabolites: !!omap - m00922c: -1 @@ -227722,15 +227722,15 @@ - m02579c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100024 - - rxnFrom: Recon3D - - eccodes: 3.5.1.6 - - references: PMID:11508704,PMID:5773299 + - gene_reaction_rule: "ENSG00000100024" + - rxnFrom: "Recon3D" + - eccodes: "3.5.1.6" + - references: "PMID:11508704,PMID:5773299" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: BUTt2m + - id: "BUTt2m" - name: "Butyrate Mitochondrial Transport via Proton Symport, Reversible" - metabolites: !!omap - m01410c: -1 @@ -227739,60 +227739,60 @@ - m02039m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000155380 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000155380" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: BVITEt + - id: "BVITEt" - name: "Beta-Tocopherol (Vit. E) Transport" - metabolites: !!omap - bvite_c: 1 - bvite_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: BZt + - id: "BZt" - name: "Benzoate Transport (Diffusion)" - metabolites: !!omap - m01380c: 1 - m01380s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.5.1.6 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.5.1.6" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: BZtr + - id: "BZtr" - name: "Benzene Transporter, Endoplasmic Reticulum" - metabolites: !!omap - m01380c: -1 - m01380r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C14STRr + - id: "C14STRr" - name: "C-14 Sterol Reductase" - metabolites: !!omap - m00367r: 1 @@ -227802,30 +227802,30 @@ - m02555r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149809 - - rxnFrom: Recon3D - - eccodes: 1.3.1.70 - - references: PMID:16784888 + - gene_reaction_rule: "ENSG00000149809" + - rxnFrom: "Recon3D" + - eccodes: "1.3.1.70" + - references: "PMID:16784888" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: C160CRNt + - id: "C160CRNt" - name: "C160 Transport into the Mitochondria" - metabolites: !!omap - m02411c: -1 - m02411m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C161CPT12 + - id: "C161CPT12" - name: "Carnitine O-Palmitoyltransferase" - metabolites: !!omap - m00051c: -1 @@ -227834,15 +227834,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: Recon3D - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C161CPT22 + - id: "C161CPT22" - name: "C161 Transport into the Mitochondria" - metabolites: !!omap - m00051m: 1 @@ -227851,60 +227851,60 @@ - m02348m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157184 - - rxnFrom: Recon3D - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000157184" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C161CRN2t + - id: "C161CRN2t" - name: "C161 Transport into the Mitochondria" - metabolites: !!omap - m02117c: -1 - m02117m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: Recon3D - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C161CRNt + - id: "C161CRNt" - name: "C161 Transport into the Mitochondria" - metabolites: !!omap - m02676c: -1 - m02676m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: Recon3D - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C180CRNt + - id: "C180CRNt" - name: "C180 Transport into the Mitochondria" - metabolites: !!omap - m02940c: -1 - m02940m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C181CPT1 + - id: "C181CPT1" - name: "Transport of Octadecenoyl Coenzyme A into Mitochondrial Matrix" - metabolites: !!omap - m01597c: 1 @@ -227913,15 +227913,15 @@ - m02647c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: Recon3D - - eccodes: 2.3.1.21 - - references: PMID:1988962 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.21" + - references: "PMID:1988962" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C181CPT2 + - id: "C181CPT2" - name: "Transport of Octadecenoyl Coenzyme A into Mitochondrial Matrix" - metabolites: !!omap - m01597m: -1 @@ -227930,60 +227930,60 @@ - m02647m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157184 - - rxnFrom: Recon3D - - eccodes: 2.3.1.21 - - references: PMID:1528846,PMID:1988962 + - gene_reaction_rule: "ENSG00000157184" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.21" + - references: "PMID:1528846,PMID:1988962" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C181CRNt + - id: "C181CRNt" - name: "C181 Transport into the Mitochondria" - metabolites: !!omap - m02639c: -1 - m02639m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: Recon3D - - eccodes: 2.3.1.21 - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.21" + - references: "PMID:14598172" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C204CRNt + - id: "C204CRNt" - name: "Arachidonic Acid Transport into the Mitochondria" - metabolites: !!omap - m01363c: -1 - m01363m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C226CRNt + - id: "C226CRNt" - name: "C226 Transport into the Mitochondria" - metabolites: !!omap - m01723c: -1 - m01723m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C3STDH1Pr + - id: "C3STDH1Pr" - name: "C-3 Sterol Dehydrogenase (4-Methylzymosterol)" - metabolites: !!omap - m00809r: 1 @@ -227994,15 +227994,15 @@ - m02555r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147383 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10710235,PMID:14506130 + - gene_reaction_rule: "ENSG00000147383" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10710235,PMID:14506130" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: C3STDH1r + - id: "C3STDH1r" - name: "C-3 Sterol Dehydrogenase (4-Methylzymosterol)" - metabolites: !!omap - m00809r: 1 @@ -228013,15 +228013,15 @@ - m02553r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147383 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:12829805 + - gene_reaction_rule: "ENSG00000147383" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:12829805" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: C3STKR2r + - id: "C3STKR2r" - name: "C-3 Sterol Keto Reductase (Zymosterol)" - metabolites: !!omap - m02039r: -1 @@ -228031,15 +228031,15 @@ - zym_int2_r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000133835 - - rxnFrom: Recon3D - - eccodes: 4.2.1.17 - - references: PMID:12829805 + - gene_reaction_rule: "ENSG00000133835" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.17" + - references: "PMID:12829805" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: C4STMO1r + - id: "C4STMO1r" - name: "C-4 Sterol Methyl Oxidase (4, 4-Dimethylzymosterol)" - metabolites: !!omap - m00367r: -1 @@ -228051,15 +228051,15 @@ - m02630r: -3 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000052802 - - rxnFrom: Recon3D - - eccodes: 4.2.1.17 - - references: + - gene_reaction_rule: "ENSG00000052802" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.17" + - references: "" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: C4STMO2Pr + - id: "C4STMO2Pr" - name: "C-4 Methyl Sterol Oxidase" - metabolites: !!omap - m00809r: -1 @@ -228071,15 +228071,15 @@ - zym_int2_r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147383 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000147383" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: C4STMO2r + - id: "C4STMO2r" - name: "C-4 Methyl Sterol Oxidase" - metabolites: !!omap - m00809r: -1 @@ -228091,15 +228091,15 @@ - zym_int2_r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000052802 or ENSG00000147383 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000052802 or ENSG00000147383" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: CAATPS + - id: "CAATPS" - name: "Ca ATPase" - metabolites: !!omap - m01285c: 1 @@ -228111,30 +228111,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000058668 or ENSG00000067842 or ENSG00000070961 or ENSG00000157087 - - rxnFrom: Recon3D - - eccodes: 3.6.3.6 - - references: PMID:7876199,PMID:8396145 + - gene_reaction_rule: "ENSG00000058668 or ENSG00000067842 or ENSG00000070961 or ENSG00000157087" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.6" + - references: "PMID:7876199,PMID:8396145" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CDPDAGtm + - id: "CDPDAGtm" - name: "Intracellular Transport" - metabolites: !!omap - m01427c: -1 - m01427m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.1.1.197 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.197" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CDS + - id: "CDS" - name: "Phosphatidate Cytidylyltransferase" - metabolites: !!omap - m01427c: 1 @@ -228144,15 +228144,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101290 or ENSG00000163624 - - rxnFrom: Recon3D - - eccodes: 2.7.7.41 - - references: + - gene_reaction_rule: "ENSG00000101290 or ENSG00000163624" + - rxnFrom: "Recon3D" + - eccodes: "2.7.7.41" + - references: "" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: CDSm + - id: "CDSm" - name: "Phosphatidate Cytidylyltransferase" - metabolites: !!omap - m01427m: 1 @@ -228162,45 +228162,45 @@ - m02759m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101290 or ENSG00000163624 - - rxnFrom: Recon3D - - eccodes: 2.7.7.41 - - references: + - gene_reaction_rule: "ENSG00000101290 or ENSG00000163624" + - rxnFrom: "Recon3D" + - eccodes: "2.7.7.41" + - references: "" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: CHSTEROLt2 + - id: "CHSTEROLt2" - name: "Cholesterol Intracellular Transport" - metabolites: !!omap - m01450m: 1 - m01450r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:12370263,PMID:12770731 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:12370263,PMID:12770731" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CITRtm + - id: "CITRtm" - name: "Citrulline Mitochondrial Transport via Proton Antiport" - metabolites: !!omap - m01588c: 1 - m01588m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000102743 or ENSG00000120329 - - rxnFrom: Recon3D - - eccodes: 3.2.1.14 - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000102743 or ENSG00000120329" + - rxnFrom: "Recon3D" + - eccodes: "3.2.1.14" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CITtam + - id: "CITtam" - name: "Citrate Transport, Mitochondrial" - metabolites: !!omap - m01587c: -1 @@ -228209,15 +228209,15 @@ - m02439m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100075 - - rxnFrom: Recon3D - - eccodes: 4.2.1.56 - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000100075" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.56" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CLOHtex2 + - id: "CLOHtex2" - name: "Chloride Transport via Hydroxide Antiport (2:1)" - metabolites: !!omap - m01442c: 2 @@ -228226,45 +228226,45 @@ - m02040s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000225697 - - rxnFrom: Recon3D - - eccodes: 2.7.3.2 - - references: PMID:12759755 + - gene_reaction_rule: "ENSG00000225697" + - rxnFrom: "Recon3D" + - eccodes: "2.7.3.2" + - references: "PMID:12759755" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CLPNDCOAtx + - id: "CLPNDCOAtx" - name: "Fatty Acid Intracellular Transport" - metabolites: !!omap - m00121c: -1 - m00121p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CLPNDCRNt + - id: "CLPNDCRNt" - name: "Transport into the Mitochondria (Carnitine)" - metabolites: !!omap - m00120c: -1 - m00120m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: CLS_hs + - id: "CLS_hs" - name: "Cardiolipin Synthase (Homo Sapiens)" - metabolites: !!omap - m01426c: -1 @@ -228274,30 +228274,30 @@ - m02715c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088766 - - rxnFrom: Recon3D - - eccodes: 2.3.1.21 - - references: PMID:10799718 + - gene_reaction_rule: "ENSG00000088766" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.21" + - references: "PMID:10799718" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: CO2tn + - id: "CO2tn" - name: "CO2 Nuclear Transport via Diffusion" - metabolites: !!omap - m01596c: 1 - m01596n: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: COQ3m + - id: "COQ3m" - name: "Methyltransferase Coq3" - metabolites: !!omap - 2dpmhobq_m: -1 @@ -228307,15 +228307,15 @@ - m03103m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000132423 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10777520,PMID:11051212,PMID:1965190,PMID:7380842 + - gene_reaction_rule: "ENSG00000132423" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10777520,PMID:11051212,PMID:1965190,PMID:7380842" - subsystem: - - Ubiquinone synthesis + - "Ubiquinone synthesis" - confidence_score: 0 - !!omap - - id: COQ5m + - id: "COQ5m" - name: "Ubiquinone Biosynthesis Methyltransferase Coq5" - metabolites: !!omap - 2dp6mobq_m: -1 @@ -228325,15 +228325,15 @@ - m02877m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10777520,PMID:1965190,PMID:7380842 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10777520,PMID:1965190,PMID:7380842" - subsystem: - - Ubiquinone synthesis + - "Ubiquinone synthesis" - confidence_score: 0 - !!omap - - id: COQ6m + - id: "COQ6m" - name: "Ubiquinone Biosynthesis Monooxgenase Coq6" - metabolites: !!omap - 2dp6mobq_m: 1 @@ -228342,15 +228342,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119723 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11051212,PMID:1965190,PMID:7380842 + - gene_reaction_rule: "ENSG00000119723" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11051212,PMID:1965190,PMID:7380842" - subsystem: - - Ubiquinone synthesis + - "Ubiquinone synthesis" - confidence_score: 0 - !!omap - - id: COQ7m + - id: "COQ7m" - name: "Ubiquinone Biosynthesis Coq7" - metabolites: !!omap - 2dp6mobq_me_m: -1 @@ -228362,15 +228362,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167186 - - rxnFrom: Recon3D - - eccodes: 3.1.1.1 - - references: PMID:11051212,PMID:1965190,PMID:7380842 + - gene_reaction_rule: "ENSG00000167186" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.1" + - references: "PMID:11051212,PMID:1965190,PMID:7380842" - subsystem: - - Ubiquinone synthesis + - "Ubiquinone synthesis" - confidence_score: 0 - !!omap - - id: COUCOAFm + - id: "COUCOAFm" - name: "P-Coumaroyl Coenzyme A Formation" - metabolites: !!omap - m00981m: -1 @@ -228381,30 +228381,30 @@ - m02759m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 6.2.1.12 - - references: PMID:11583838,PMID:12232327 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.12" + - references: "PMID:11583838,PMID:12232327" - subsystem: - - Ubiquinone synthesis + - "Ubiquinone synthesis" - confidence_score: 0 - !!omap - - id: CRMPte + - id: "CRMPte" - name: "Crmp Hs Transport" - metabolites: !!omap - m01431c: -1 - m01431s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.7.7.15 - - references: PMID:15585321 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.7.7.15" + - references: "PMID:15585321" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CRNtHa + - id: "CRNtHa" - name: "L-Carnitine Outward Transport (H+ Antiport)" - metabolites: !!omap - m02039c: 1 @@ -228413,30 +228413,30 @@ - m02348s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197208 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:12883891 + - gene_reaction_rule: "ENSG00000197208" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:12883891" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CRNtx + - id: "CRNtx" - name: "Carnitine Transport Peroxisome to Mitochondria" - metabolites: !!omap - m00950m: 1 - m00950p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:12814641,PMID:15464416 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:12814641,PMID:15464416" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CSNAT2x + - id: "CSNAT2x" - name: "Carnitine Dimethyl Nonanoyl Transferase, Revsible, Peroxisomal" - metabolites: !!omap - dmnoncoa_p: -1 @@ -228445,30 +228445,30 @@ - m02348p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005469 or ENSG00000095321 - - rxnFrom: Recon3D - - eccodes: 2.3.1.7 - - references: PMID:15464416,PMID:7829107 + - gene_reaction_rule: "ENSG00000005469 or ENSG00000095321" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.7" + - references: "PMID:15464416,PMID:7829107" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: DAG_HSter + - id: "DAG_HSter" - name: "Transport of Diacylglycerol, Endoplasmatic Reticulum" - metabolites: !!omap - m00240c: 1 - m00240r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.5.4.4 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.5.4.4" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: DAGKn_hs + - id: "DAGKn_hs" - name: "Diacylglycerol Phosphate Kinase (Homo Sapiens)" - metabolites: !!omap - m00240n: -1 @@ -228478,45 +228478,45 @@ - m02733n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149091 or ENSG00000157680 - - rxnFrom: Recon3D - - eccodes: 2.7.1.107 - - references: + - gene_reaction_rule: "ENSG00000149091 or ENSG00000157680" + - rxnFrom: "Recon3D" + - eccodes: "2.7.1.107" + - references: "" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: DAGt + - id: "DAGt" - name: "Diacylglycerol Transport" - metabolites: !!omap - m00240c: 1 - m00240s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.7.1.107 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.7.1.107" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: DCSPTN1CRNt + - id: "DCSPTN1CRNt" - name: "Transport into the Mitochondria (Carnitine)" - metabolites: !!omap - m00092c: -1 - m00092m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: Recon3D - - eccodes: 3.5.4.12 - - references: + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "Recon3D" + - eccodes: "3.5.4.12" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: DESAT16_2 + - id: "DESAT16_2" - name: "Palmitoyl Coenzyme A Desaturase (N-C16:0CoA -> N-C16:1CoA)" - metabolites: !!omap - m02039c: -1 @@ -228528,15 +228528,15 @@ - m02678c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099194 - - rxnFrom: Recon3D - - eccodes: 1.14.19.1 - - references: PMID:14967823 + - gene_reaction_rule: "ENSG00000099194" + - rxnFrom: "Recon3D" + - eccodes: "1.14.19.1" + - references: "PMID:14967823" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: DESAT18_10 + - id: "DESAT18_10" - name: "Fatty Acyl Coenzyme A Desaturase (N-C18:2CoA -> N-C18:3CoA)" - metabolites: !!omap - m00108c: 1 @@ -228548,15 +228548,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134824 - - rxnFrom: Recon3D - - eccodes: 1.14.19.1 - - references: + - gene_reaction_rule: "ENSG00000134824" + - rxnFrom: "Recon3D" + - eccodes: "1.14.19.1" + - references: "" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: DESAT18_3 + - id: "DESAT18_3" - name: "Stearoyl Coenzyme A Desaturase (N-C18:0CoA -> N-C18:1CoA)" - metabolites: !!omap - m02039c: -1 @@ -228568,15 +228568,15 @@ - m02941c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099194 - - rxnFrom: Recon3D - - eccodes: 1.14.19.1 - - references: PMID:14967823 + - gene_reaction_rule: "ENSG00000099194" + - rxnFrom: "Recon3D" + - eccodes: "1.14.19.1" + - references: "PMID:14967823" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: DESAT18_4 + - id: "DESAT18_4" - name: "Stearoyl Coenzyme A Desaturase (N-C18:0CoA -> N-C18:1CoA)" - metabolites: !!omap - m02039c: -1 @@ -228588,15 +228588,15 @@ - octd11ecoa_c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099194 - - rxnFrom: Recon3D - - eccodes: 1.14.19.1 - - references: PMID:14967823 + - gene_reaction_rule: "ENSG00000099194" + - rxnFrom: "Recon3D" + - eccodes: "1.14.19.1" + - references: "PMID:14967823" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: DESAT18_5 + - id: "DESAT18_5" - name: "Stearoyl Coenzyme A Desaturase (N-C18:0CoA -> N-C18:1CoA)" - metabolites: !!omap - m00057c: 1 @@ -228608,15 +228608,15 @@ - m02941c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099194 - - rxnFrom: Recon3D - - eccodes: 1.14.19.1 - - references: PMID:14967823 + - gene_reaction_rule: "ENSG00000099194" + - rxnFrom: "Recon3D" + - eccodes: "1.14.19.1" + - references: "PMID:14967823" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: DESAT18_6 + - id: "DESAT18_6" - name: "Fatty Acyl Coenzyme A Desaturase (N-C18:1CoA -> N-C18:2CoA)" - metabolites: !!omap - m00106c: 1 @@ -228628,15 +228628,15 @@ - m02647c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134824 - - rxnFrom: Recon3D - - eccodes: 1.14.99.25 - - references: + - gene_reaction_rule: "ENSG00000134824" + - rxnFrom: "Recon3D" + - eccodes: "1.14.99.25" + - references: "" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: DESAT18_7 + - id: "DESAT18_7" - name: "Fatty Acyl Coenzyme A Desaturase (N-C18:1CoA -> N-C18:2CoA)" - metabolites: !!omap - m00106c: 1 @@ -228648,15 +228648,15 @@ - octd11ecoa_c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134824 - - rxnFrom: Recon3D - - eccodes: 1.14.19.1 - - references: + - gene_reaction_rule: "ENSG00000134824" + - rxnFrom: "Recon3D" + - eccodes: "1.14.19.1" + - references: "" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: DESAT18_8 + - id: "DESAT18_8" - name: "Fatty Acyl Coenzyme A Desaturase (N-C18:1CoA -> N-C18:2CoA)" - metabolites: !!omap - m00057c: -1 @@ -228668,15 +228668,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134824 - - rxnFrom: Recon3D - - eccodes: 1.14.99.25 - - references: + - gene_reaction_rule: "ENSG00000134824" + - rxnFrom: "Recon3D" + - eccodes: "1.14.99.25" + - references: "" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: DESAT18_9 + - id: "DESAT18_9" - name: "Fatty Acyl Coenzyme A Desaturase (N-C18:2CoA -> N-C18:3CoA)" - metabolites: !!omap - m01934c: 1 @@ -228688,15 +228688,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134824 or ENSG00000149485 - - rxnFrom: Recon3D - - eccodes: 1.14.99.25 - - references: + - gene_reaction_rule: "ENSG00000134824 or ENSG00000149485" + - rxnFrom: "Recon3D" + - eccodes: "1.14.99.25" + - references: "" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: DESAT20_1 + - id: "DESAT20_1" - name: "Fatty Acyl Coenzyme A Desaturase (N-C20:3CoA -> N-C20:4CoA)" - metabolites: !!omap - m01364c: 1 @@ -228708,15 +228708,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149485 - - rxnFrom: Recon3D - - eccodes: 1.14.19.1 - - references: + - gene_reaction_rule: "ENSG00000149485" + - rxnFrom: "Recon3D" + - eccodes: "1.14.19.1" + - references: "" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: DESAT20_2 + - id: "DESAT20_2" - name: "Fatty Acyl Coenzyme A Desaturase (N-C20:4CoA -> N-C20:5CoA)" - metabolites: !!omap - m00103c: 1 @@ -228728,15 +228728,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149485 - - rxnFrom: Recon3D - - eccodes: 1.14.19.1 - - references: + - gene_reaction_rule: "ENSG00000149485" + - rxnFrom: "Recon3D" + - eccodes: "1.14.19.1" + - references: "" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: DESAT22_1p + - id: "DESAT22_1p" - name: "Fatty Acyl Coenzyme A Desaturase (N-C22:4CoA -> N-C22:5CoA)" - metabolites: !!omap - m00093p: 1 @@ -228748,15 +228748,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.14.19.1 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.14.19.1" + - references: "" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: DESAT22_2p + - id: "DESAT22_2p" - name: "Fatty Acyl Coenzyme A Desaturase (N-C22:5CoA -> N-C22:6CoA)" - metabolites: !!omap - m00095p: 1 @@ -228768,15 +228768,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.14.19.1 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.14.19.1" + - references: "" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: DGAT + - id: "DGAT" - name: "Diacylglycerol Acyltransferase" - metabolites: !!omap - Rtotal3coa_c: -1 @@ -228785,45 +228785,45 @@ - m02959c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000062282 or ENSG00000185000 - - rxnFrom: Recon3D - - eccodes: 1.14.19.1 - - references: PMID:11481335 + - gene_reaction_rule: "ENSG00000062282 or ENSG00000185000" + - rxnFrom: "Recon3D" + - eccodes: "1.14.19.1" + - references: "PMID:11481335" - subsystem: - - Triacylglycerol synthesis + - "Triacylglycerol synthesis" - confidence_score: 0 - !!omap - - id: DGCHOLte + - id: "DGCHOLte" - name: "Bile Acid Intracellular Transport" - metabolites: !!omap - m01987c: 1 - m01987s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.14.19.1 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.14.19.1" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: DGCHOLtx + - id: "DGCHOLtx" - name: "Bile Acid Intracellular Transport" - metabolites: !!omap - m01987c: 1 - m01987p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.14.19.1 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.14.19.1" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: DHAPA + - id: "DHAPA" - name: "Dihydroxyacetone Phosphate Acyltransferase" - metabolites: !!omap - Rtotalcoa_c: -1 @@ -228832,15 +228832,15 @@ - m01690c: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000116906 - - rxnFrom: Recon3D - - eccodes: 2.3.1.42 - - references: PMID:9459311 + - gene_reaction_rule: "ENSG00000116906" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.42" + - references: "PMID:9459311" - subsystem: - - Triacylglycerol synthesis + - "Triacylglycerol synthesis" - confidence_score: 0 - !!omap - - id: DHAPAx + - id: "DHAPAx" - name: "Dihydroxyacetone Phosphate Acyltransferase" - metabolites: !!omap - Rtotalcoa_p: -1 @@ -228849,30 +228849,30 @@ - m01690p: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000116906 - - rxnFrom: Recon3D - - eccodes: 2.3.1.42 - - references: PMID:9459311 + - gene_reaction_rule: "ENSG00000116906" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.42" + - references: "PMID:9459311" - subsystem: - - Triacylglycerol synthesis + - "Triacylglycerol synthesis" - confidence_score: 0 - !!omap - - id: DHCHOLESTANATEtm + - id: "DHCHOLESTANATEtm" - name: "Lipid, Flip-Flop Intracellular Transport" - metabolites: !!omap - m00758m: -1 - m00758p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 4.1.1.34 - - references: PMID:12840657 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "4.1.1.34" + - references: "PMID:12840657" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: DHCR241r + - id: "DHCR241r" - name: "24-Dehydrocholesterol Reductase [Precursor]" - metabolites: !!omap - m01449r: 1 @@ -228881,15 +228881,15 @@ - m03158r: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000116133 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:17984220,PMID:19520779,PMID:19520780 + - gene_reaction_rule: "ENSG00000116133" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:17984220,PMID:19520779,PMID:19520780" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: DHCR242r + - id: "DHCR242r" - name: "24-Dehydrocholesterol Reductase [Precursor]" - metabolites: !!omap - m01066r: -1 @@ -228898,15 +228898,15 @@ - m02343r: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000116133 or ENSG00000167910 - - rxnFrom: Recon3D - - eccodes: 2.3.1.42 - - references: PMID:17984220,PMID:19520779,PMID:19520780 + - gene_reaction_rule: "ENSG00000116133 or ENSG00000167910" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.42" + - references: "PMID:17984220,PMID:19520779,PMID:19520780" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: DHCR243r + - id: "DHCR243r" - name: "24-Dehydrocholesterol Reductase [Precursor]" - metabolites: !!omap - m01450r: 1 @@ -228915,15 +228915,15 @@ - m01803r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116133 - - rxnFrom: Recon3D - - eccodes: 2.3.1.42 - - references: PMID:17984220,PMID:19520779,PMID:19520780 + - gene_reaction_rule: "ENSG00000116133" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.42" + - references: "PMID:17984220,PMID:19520779,PMID:19520780" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: DHCR71r + - id: "DHCR71r" - name: "7-Dehydrocholesterol Reductase" - metabolites: !!omap - m01189r: -1 @@ -228933,15 +228933,15 @@ - m02555r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000172893 - - rxnFrom: Recon3D - - eccodes: 1.3.1.21 - - references: PMID:9465114 + - gene_reaction_rule: "ENSG00000172893" + - rxnFrom: "Recon3D" + - eccodes: "1.3.1.21" + - references: "PMID:9465114" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: DHCR72r + - id: "DHCR72r" - name: "7-Dehydrocholesterol Reductase" - metabolites: !!omap - m01450r: 1 @@ -228951,30 +228951,30 @@ - m02805r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000172893 - - rxnFrom: Recon3D - - eccodes: 1.3.1.21 - - references: PMID:15670717 + - gene_reaction_rule: "ENSG00000172893" + - rxnFrom: "Recon3D" + - eccodes: "1.3.1.21" + - references: "PMID:15670717" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: DHFtm + - id: "DHFtm" - name: "Dihydrofolate Reversible Mitochondrial Transport" - metabolites: !!omap - m01700c: -1 - m01700m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.8.2.2 - - references: PMID:11375437 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.8.2.2" + - references: "PMID:11375437" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: DKMPPD + - id: "DKMPPD" - name: " 2, 3-Diketo-5-Methylthio-1-Phosphopentane Degradation Reaction" - metabolites: !!omap - m00572c: -1 @@ -228986,30 +228986,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:2543672 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:2543672" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: DLNLCGCRNt + - id: "DLNLCGCRNt" - name: "Transport into the Mitochondria (Carnitine)" - metabolites: !!omap - m01774c: -1 - m01774m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: DMATTx + - id: "DMATTx" - name: "Dimethylallyltranstransferase" - metabolites: !!omap - m01706p: -1 @@ -229018,75 +229018,75 @@ - m02759p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160752 - - rxnFrom: Recon3D - - eccodes: 2.5.1.1 - - references: PMID:8188698 + - gene_reaction_rule: "ENSG00000160752" + - rxnFrom: "Recon3D" + - eccodes: "2.5.1.1" + - references: "PMID:8188698" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: DMHPTCRNt + - id: "DMHPTCRNt" - name: "Transport of 2, 6 Dimethylheptanoyl Carnitine, Mitochondrial" - metabolites: !!omap - m00577c: -1 - m00577m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.5.1.1 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.5.1.1" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: DMNONCRNt + - id: "DMNONCRNt" - name: "4, 8 Dimethylnonanoyl Carnitine Transport, Mitochondrial" - metabolites: !!omap - m00950c: -1 - m00950m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.3.1.21 - - references: PMID:9299016,PMID:9819701 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.21" + - references: "PMID:9299016,PMID:9819701" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: DOLGLCP_Lter + - id: "DOLGLCP_Lter" - name: "Dolichyl Beta-D-Glucosyl Phosphate Flippase (Liver)" - metabolites: !!omap - m01731c: -1 - m01731r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:12137737 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:12137737" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: DOLICHOL_Uter + - id: "DOLICHOL_Uter" - name: "Dolichol Diffusion, Human (Uterus)" - metabolites: !!omap - m01730c: 1 - m01730r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.6.1.43 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.6.1.43" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: DOPAVESSEC + - id: "DOPAVESSEC" - name: "Secretion of Dopamine via Secretory Vesicle (ATP Driven)" - metabolites: !!omap - m01285c: 1 @@ -229098,15 +229098,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000036565 or ENSG00000165646 - - rxnFrom: Recon3D - - eccodes: 2.1.1.6 - - references: PMID:12827358,PMID:15383652 + - gene_reaction_rule: "ENSG00000036565 or ENSG00000165646" + - rxnFrom: "Recon3D" + - eccodes: "2.1.1.6" + - references: "PMID:12827358,PMID:15383652" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: DPMVDx + - id: "DPMVDx" - name: "Diphosphomevalonate Decarboxylase" - metabolites: !!omap - m00164p: -1 @@ -229117,15 +229117,15 @@ - m02751p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167508 - - rxnFrom: Recon3D - - eccodes: 4.1.1.33 - - references: PMID:8188698 + - gene_reaction_rule: "ENSG00000167508" + - rxnFrom: "Recon3D" + - eccodes: "4.1.1.33" + - references: "PMID:8188698" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: DPROOp + - id: "DPROOp" - name: "D-Proline Oxidase, Perixosomal" - metabolites: !!omap - m00558p: 1 @@ -229135,15 +229135,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110887 - - rxnFrom: Recon3D - - eccodes: 1.4.3.3 - - references: PMID:16141519 + - gene_reaction_rule: "ENSG00000110887" + - rxnFrom: "Recon3D" + - eccodes: "1.4.3.3" + - references: "PMID:16141519" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: DSAT + - id: "DSAT" - name: "Dihydrosphingosine N-Acyltransferase" - metabolites: !!omap - Rtotalcoa_c: -1 @@ -229153,75 +229153,75 @@ - m02927c: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 4.1.1.33 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "4.1.1.33" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: EBP1r + - id: "EBP1r" - name: "3-Beta-Hydroxysteroid-Delta (8), Delta (7)-Isomerase" - metabolites: !!omap - m01066r: 1 - m03158r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147155 - - rxnFrom: Recon3D - - eccodes: 5.3.3.5 - - references: PMID:10391219 + - gene_reaction_rule: "ENSG00000147155" + - rxnFrom: "Recon3D" + - eccodes: "5.3.3.5" + - references: "PMID:10391219" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: EBP2r + - id: "EBP2r" - name: "3-Beta-Hydroxysteroid-Delta (8), Delta (7)-Isomerase" - metabolites: !!omap - m01449r: -1 - m02343r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147155 - - rxnFrom: Recon3D - - eccodes: 5.3.3.5 - - references: PMID:10391219 + - gene_reaction_rule: "ENSG00000147155" + - rxnFrom: "Recon3D" + - eccodes: "5.3.3.5" + - references: "PMID:10391219" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: ECGISOr + - id: "ECGISOr" - name: "Ecgonine Isomerase, Endoplasmatic Reticulum" - metabolites: !!omap - m01766r: -1 - pecgon_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:8572717 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:8572717" - subsystem: - - Alkaloids Biosynthesis + - "Alkaloids Biosynthesis" - confidence_score: 0 - !!omap - - id: EICOSTETCRNt + - id: "EICOSTETCRNt" - name: "Transport of 8Z,11Z,14Z,17Z-Eicosatetraenoylcarnitine, Mitochondrial" - metabolites: !!omap - m00124c: -1 - m00124m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: ELAIDCPT1 + - id: "ELAIDCPT1" - name: "Carnitine O-Palmitoyltransferase" - metabolites: !!omap - m00057c: -1 @@ -229230,15 +229230,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: Recon3D - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: ELAIDCPT2 + - id: "ELAIDCPT2" - name: "Carnitine Transferase" - metabolites: !!omap - m00057m: 1 @@ -229247,30 +229247,30 @@ - m02348m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157184 - - rxnFrom: Recon3D - - eccodes: 2.6.1.1 - - references: + - gene_reaction_rule: "ENSG00000157184" + - rxnFrom: "Recon3D" + - eccodes: "2.6.1.1" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: ELAIDCRNt + - id: "ELAIDCRNt" - name: "Transport of (9E)-Octadecenoylcarnitine, Mitochondrial" - metabolites: !!omap - m00126c: -1 - m00126m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: Recon3D - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: ENGASE + - id: "ENGASE" - name: "Endo-Beta-N-Acetylglucosaminidase" - metabolites: !!omap - m01651c: -1 @@ -229279,15 +229279,15 @@ - m02527c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167280 - - rxnFrom: Recon3D - - eccodes: 3.2.1.96 - - references: PMID:12114544 + - gene_reaction_rule: "ENSG00000167280" + - rxnFrom: "Recon3D" + - eccodes: "3.2.1.96" + - references: "PMID:12114544" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: ENGASE2 + - id: "ENGASE2" - name: "Endo-Beta-N-Acetylglucosaminidase" - metabolites: !!omap - m02040c: -1 @@ -229296,15 +229296,15 @@ - m02527c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167280 - - rxnFrom: Recon3D - - eccodes: 3.2.1.96 - - references: PMID:12114544 + - gene_reaction_rule: "ENSG00000167280" + - rxnFrom: "Recon3D" + - eccodes: "3.2.1.96" + - references: "PMID:12114544" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: ENMAN1g + - id: "ENMAN1g" - name: "Endomannosidase (Glc1Man-Producing), Golgi Apparatus" - metabolites: !!omap - glc1man_g: 1 @@ -229313,15 +229313,15 @@ - m02040g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11007802,PMID:12770767 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11007802,PMID:12770767" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: ENMAN2g + - id: "ENMAN2g" - name: "Endomannosidase (Glc2Man-Producing), Golgi Apparatus" - metabolites: !!omap - glc2man_g: 1 @@ -229330,15 +229330,15 @@ - m02040g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.2.1.96 - - references: PMID:11007802,PMID:12770767 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.2.1.96" + - references: "PMID:11007802,PMID:12770767" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: ENMAN3g + - id: "ENMAN3g" - name: "Endomannosidase (Glc3Man-Producing), Golgi Apparatus" - metabolites: !!omap - glc3man_g: 1 @@ -229347,15 +229347,15 @@ - m02040g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.2.1.96 - - references: PMID:11007802,PMID:12770767 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.2.1.96" + - references: "PMID:11007802,PMID:12770767" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: ENMAN4g + - id: "ENMAN4g" - name: "Endomannosidase (M6Masnc-Producing), Golgi Apparatus" - metabolites: !!omap - glc1man_g: 1 @@ -229364,15 +229364,15 @@ - m02040g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.2.1.96 - - references: PMID:11007802 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.2.1.96" + - references: "PMID:11007802" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: ENMAN5g + - id: "ENMAN5g" - name: "Endomannosidase (M6Masnb2-Producing), Golgi Apparatus" - metabolites: !!omap - glc1man_g: 1 @@ -229381,15 +229381,15 @@ - m02040g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.2.1.96 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.2.1.96" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: ENMAN6g + - id: "ENMAN6g" - name: "Endomannosidase (M5Masnb1-Producing), Golgi Apparatus" - metabolites: !!omap - glc1man_g: 1 @@ -229398,15 +229398,15 @@ - m02040g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.2.1.96 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.2.1.96" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: ETF + - id: "ETF" - name: "Electron Transfer Flavoprotein" - metabolites: !!omap - etfox_m: -1 @@ -229415,15 +229415,15 @@ - m01803m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105379 and ENSG00000140374 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:3170610,PMID:7601336 + - gene_reaction_rule: "ENSG00000105379 and ENSG00000140374" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:3170610,PMID:7601336" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: ETFQO + - id: "ETFQO" - name: "Electron Transfer Flavoprotein-Ubiquinone Oxidoreductase" - metabolites: !!omap - etfox_m: 1 @@ -229432,930 +229432,930 @@ - m03103m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171503 - - rxnFrom: Recon3D - - eccodes: 1.5.5.1 - - references: PMID:10444348,PMID:12049629 + - gene_reaction_rule: "ENSG00000171503" + - rxnFrom: "Recon3D" + - eccodes: "1.5.5.1" + - references: "PMID:10444348,PMID:12049629" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: EX_1glyc_hs[e] + - id: "EX_1glyc_hs[e]" - name: "Exchange of 1 Acyl Phosphoglycerol " - metabolites: !!omap - 1glyc_hs_s: -1 - 1glyc_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_9_cis_retfa[e] + - id: "EX_9_cis_retfa[e]" - name: "Exchange of Fatty Acid 9-Cis-Retinol " - metabolites: !!omap - 9_cis_retfa_s: -1 - 9_cis_retfa_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_adrn[e] + - id: "EX_adrn[e]" - name: "Exchange of Adrenic Acid " - metabolites: !!omap - m01291s: -1 - m01291x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_arach[e] + - id: "EX_arach[e]" - name: "Exchange of Arachidate" - metabolites: !!omap - m01771s: -1 - m01771x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_arachd[e] + - id: "EX_arachd[e]" - name: "Exchange of Nc20:4 " - metabolites: !!omap - m01362s: -1 - m01362x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_atp[e] + - id: "EX_atp[e]" - name: "Exchange of ATP " - metabolites: !!omap - m01371s: -1 - m01371x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_bvite[e] + - id: "EX_bvite[e]" - name: "Exchange of Beta-Tocopherol " - metabolites: !!omap - bvite_s: -1 - bvite_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_clpnd[e] + - id: "EX_clpnd[e]" - name: "Exchange of Clupanodonic Acid (Docosapentaenoic (N-3)) " - metabolites: !!omap - m01741s: -1 - m01741x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_crmp_hs[e] + - id: "EX_crmp_hs[e]" - name: "Exchange of Ceramide 1-Phosphate " - metabolites: !!omap - m01431s: -1 - m01431x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_crvnc[e] + - id: "EX_crvnc[e]" - name: "Exchange of Nc22:6 " - metabolites: !!omap - m01689s: -1 - m01689x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_dag_hs[e] + - id: "EX_dag_hs[e]" - name: "Exchange of Diglyceride" - metabolites: !!omap - m00240s: -1 - m00240x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_dcsptn1[e] + - id: "EX_dcsptn1[e]" - name: "Exchange of Docosa-4, 7, 10, 13, 16-Pentaenoic Acid (N-6) " - metabolites: !!omap - m00094s: -1 - m00094x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_dlnlcg[e] + - id: "EX_dlnlcg[e]" - name: "Exchange of Dihomo-Gamma-Linolenic Acid (N-6) " - metabolites: !!omap - m01696s: -1 - m01696x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_eicostet[e] + - id: "EX_eicostet[e]" - name: "Exchange of Eicosatetranoic Acid " - metabolites: !!omap - m02648s: -1 - m02648x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_elaid[e] + - id: "EX_elaid[e]" - name: "Exchange of Elaidic Acid " - metabolites: !!omap - m01778s: -1 - m01778x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_fucfuc12gal14acglcgalgluside_hs[e] + - id: "EX_fucfuc12gal14acglcgalgluside_hs[e]" - name: "Exchange of Ley Glycolipid " - metabolites: !!omap - fucfuc12gal14acglcgalgluside_hs_s: -1 - fucfuc12gal14acglcgalgluside_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_fucfucgalacglcgalgluside_hs[e] + - id: "EX_fucfucgalacglcgalgluside_hs[e]" - name: "Exchange of Leb Glycolipid " - metabolites: !!omap - fucfucgalacglcgalgluside_hs_s: -1 - fucfucgalacglcgalgluside_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_glyc_S[e] + - id: "EX_glyc_S[e]" - name: "Exchange of (S)-Glycerate " - metabolites: !!omap - glyc_S_s: -1 - glyc_S_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_glygn2[e] + - id: "EX_glygn2[e]" - name: "Exchange of Glycogen, Structure 2 (Glycogenin-1, 6-{7[1, 4-Glc], 4[1, 4-Glc]}) " - metabolites: !!omap - m01992s: -1 - m01992x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_glygn4[e] + - id: "EX_glygn4[e]" - name: "Exchange of Glycogen, Structure 4 (Glycogenin-1, 6-{2[1, 4-Glc], [1, 4-Glc]})" - metabolites: !!omap - glygn4_s: -1 - glygn4_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_glygn5[e] + - id: "EX_glygn5[e]" - name: "Exchange of Glycogen, Structure 5 (Glycogenin-2[1, 4-Glc])" - metabolites: !!omap - glygn5_s: -1 - glygn5_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_hdca[e] + - id: "EX_hdca[e]" - name: "Exchange of Hexadecanoate (N-C16:0) " - metabolites: !!omap - m02674s: -1 - m02674x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_hdcea[e] + - id: "EX_hdcea[e]" - name: "Exchange of Hexadecenoate (N-C16:1)" - metabolites: !!omap - m02675s: -1 - m02675x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_hexc[e] + - id: "EX_hexc[e]" - name: "Exchange of Hexacosanoate (N-C26:0) " - metabolites: !!omap - m01432s: -1 - m01432x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_hista[e] + - id: "EX_hista[e]" - name: "Exchange of Histamine " - metabolites: !!omap - m02124s: -1 - m02124x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_hpdca[e] + - id: "EX_hpdca[e]" - name: "Exchange of Heptadecanoate " - metabolites: !!omap - m02456s: -1 - m02456x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_lgnc[e] + - id: "EX_lgnc[e]" - name: "Exchange of Lignoceric Acid " - metabolites: !!omap - m02385s: -1 - m02385x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_lneldc[e] + - id: "EX_lneldc[e]" - name: "Exchange of Linoelaidic Acid " - metabolites: !!omap - m00104s: -1 - m00104x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_lnlncg[e] + - id: "EX_lnlncg[e]" - name: "Exchange of Gamma-Linolenic Acid " - metabolites: !!omap - m01932s: -1 - m01932x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_lpchol_hs[e] + - id: "EX_lpchol_hs[e]" - name: "Exchange of Lysophosphatidylcholine" - metabolites: !!omap - m00656s: -1 - m00656x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_mag_hs[e] + - id: "EX_mag_hs[e]" - name: "Exchange of Monoacylglycerol 2 (Homo Sapiens) " - metabolites: !!omap - m10006s: -1 - m10006x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_nrvnc[e] + - id: "EX_nrvnc[e]" - name: "Exchange of Nervonic Acid " - metabolites: !!omap - m02564s: -1 - m02564x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_ocdca[e] + - id: "EX_ocdca[e]" - name: "Exchange of Octadecanoate (N-C18:0)" - metabolites: !!omap - m02938s: -1 - m02938x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_ocdcea[e] + - id: "EX_ocdcea[e]" - name: "Exchange of Octadecenoate (N-C18:1) " - metabolites: !!omap - m02646s: -1 - m02646x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pchol_hs[e] + - id: "EX_pchol_hs[e]" - name: "Exchange of Phosphatidylcholine (Homo Sapiens) " - metabolites: !!omap - m02684s: -1 - m02684x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pe_hs[e] + - id: "EX_pe_hs[e]" - name: "Exchange of Phosphatidylethanolamine" - metabolites: !!omap - m02685s: -1 - m02685x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pglyc_hs[e] + - id: "EX_pglyc_hs[e]" - name: "Exchange of Phosphatidylglycerol (Homo Sapiens) " - metabolites: !!omap - m02715s: -1 - m02715x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_phyt[e] + - id: "EX_phyt[e]" - name: "Exchange of Phytanic Acid " - metabolites: !!omap - phyt_s: -1 - phyt_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_ps_hs[e] + - id: "EX_ps_hs[e]" - name: "Exchange of Phosphatidylserine (Homo Sapiens) " - metabolites: !!omap - m02808s: -1 - m02808x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_ptdca[e] + - id: "EX_ptdca[e]" - name: "Exchange of Pentadecanoate " - metabolites: !!omap - m02690s: -1 - m02690x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_retfa[e] + - id: "EX_retfa[e]" - name: "Exchange of Fatty Acid Retinol " - metabolites: !!omap - m02838s: -1 - m02838x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_retinol_9_cis[e] + - id: "EX_retinol_9_cis[e]" - name: "Exchange of 9-Cis-Retinol " - metabolites: !!omap - m01232s: -1 - m01232x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_retinol_cis_11[e] + - id: "EX_retinol_cis_11[e]" - name: "Exchange of Cis-11-Retinol " - metabolites: !!omap - m00291s: -1 - m00291x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_Rtotal[e] + - id: "EX_Rtotal[e]" - name: "Exchange of R Total " - metabolites: !!omap - Rtotal_s: -1 - Rtotal_x: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_Rtotal2[e] + - id: "EX_Rtotal2[e]" - name: "Exchange of R Total 2 Position " - metabolites: !!omap - Rtotal2_s: -1 - Rtotal2_x: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_Rtotal3[e] + - id: "EX_Rtotal3[e]" - name: "Exchange of R Total 3 Position " - metabolites: !!omap - Rtotal3_s: -1 - Rtotal3_x: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_strdnc[e] + - id: "EX_strdnc[e]" - name: "Exchange of Stearidonic Acid " - metabolites: !!omap - m02939s: -1 - m02939x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_tag_hs[e] + - id: "EX_tag_hs[e]" - name: "Exchange of Triacylglycerol (Homo Sapiens) " - metabolites: !!omap - m02959s: -1 - m02959x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_tethex3[e] + - id: "EX_tethex3[e]" - name: "Exchange of Tetracosahexaenoic Acid, N-3 " - metabolites: !!omap - m00114s: -1 - m00114x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_tetpent3[e] + - id: "EX_tetpent3[e]" - name: "Exchange of Tetracosapentaenoic Acid, N-3 " - metabolites: !!omap - m00135s: -1 - m00135x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_tetpent6[e] + - id: "EX_tetpent6[e]" - name: "Exchange of Tetracosapentaenoic Acid, N-6 " - metabolites: !!omap - m00111s: -1 - m00111x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_tettet6[e] + - id: "EX_tettet6[e]" - name: "Exchange of Tetracosatetraenoic Acid N-6 " - metabolites: !!omap - m00132s: -1 - m00132x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_tmndnc[e] + - id: "EX_tmndnc[e]" - name: "Exchange of Timnodonic Acid " - metabolites: !!omap - m01784s: -1 - m01784x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_ttdca[e] + - id: "EX_ttdca[e]" - name: "Exchange of Tetradecanoate (N-C14:0)" - metabolites: !!omap - m02494s: -1 - m02494x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_Tyr_ggn[e] + - id: "EX_Tyr_ggn[e]" - name: "Exchange of Tyr-194 of Apo-Glycogenin Protein (Primer for Glycogen Synthesis) " - metabolites: !!omap - Tyr_ggn_s: -1 - Tyr_ggn_x: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_vacc[e] + - id: "EX_vacc[e]" - name: "Exchange of Vaccenic Acid " - metabolites: !!omap - m01585s: -1 - m01585x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_xolest_hs[e] + - id: "EX_xolest_hs[e]" - name: "Exchange of Cholesterol Ester " - metabolites: !!omap - xolest_hs_s: -1 - xolest_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_xolest2_hs[e] + - id: "EX_xolest2_hs[e]" - name: "Exchange of Cholesterol Ester (from FullR2) " - metabolites: !!omap - m01451s: -1 - m01451x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_xoltri24[e] + - id: "EX_xoltri24[e]" - name: "Exchange of 7-Alpha, 24(S)-Dihydroxycholesterol " - metabolites: !!omap - m01446s: -1 - m01446x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_xoltri25[e] + - id: "EX_xoltri25[e]" - name: "Exchange of 7-Alpha, 25-Dihydroxycholesterol " - metabolites: !!omap - m01447s: -1 - m01447x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_xoltri27[e] + - id: "EX_xoltri27[e]" - name: "Exchange of 7-Alpha, 27-Dihydroxycholesterol " - metabolites: !!omap - m01448s: -1 - m01448x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: FA141ACPH + - id: "FA141ACPH" - name: "Fatty-Acyl-Acp Hydrolase" - metabolites: !!omap - m00128c: 1 @@ -230365,15 +230365,15 @@ - tdeACP_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000152463 - - rxnFrom: Recon3D - - eccodes: 3.1.2.14 - - references: PMID:9159116 + - gene_reaction_rule: "ENSG00000152463" + - rxnFrom: "Recon3D" + - eccodes: "3.1.2.14" + - references: "PMID:9159116" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FA161ACPH + - id: "FA161ACPH" - name: "Fatty-Acyl-Acp Hydrolase" - metabolites: !!omap - hdeACP_c: -1 @@ -230383,15 +230383,15 @@ - m02675c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000152463 - - rxnFrom: Recon3D - - eccodes: 3.1.2.14 - - references: PMID:9159116 + - gene_reaction_rule: "ENSG00000152463" + - rxnFrom: "Recon3D" + - eccodes: "3.1.2.14" + - references: "PMID:9159116" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FA180ACPH + - id: "FA180ACPH" - name: "Fatty-Acyl-Acp Hydrolase" - metabolites: !!omap - m00184c: 1 @@ -230401,15 +230401,15 @@ - ocdcaACP_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000152463 - - rxnFrom: Recon3D - - eccodes: 3.1.2.14 - - references: PMID:9159116 + - gene_reaction_rule: "ENSG00000152463" + - rxnFrom: "Recon3D" + - eccodes: "3.1.2.14" + - references: "PMID:9159116" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FA181ACPH + - id: "FA181ACPH" - name: "Fatty-Acyl-Acp Hydrolase" - metabolites: !!omap - m00184c: 1 @@ -230419,15 +230419,15 @@ - octeACP_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000152463 - - rxnFrom: Recon3D - - eccodes: 3.1.2.14 - - references: PMID:9159116 + - gene_reaction_rule: "ENSG00000152463" + - rxnFrom: "Recon3D" + - eccodes: "3.1.2.14" + - references: "PMID:9159116" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FA1821ACPH + - id: "FA1821ACPH" - name: "Fatty-Acyl-Acp Hydrolase" - metabolites: !!omap - lnlcACP_c: -1 @@ -230437,15 +230437,15 @@ - m02387c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.2.14 - - references: PMID:9159116 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.2.14" + - references: "PMID:9159116" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FA1822ACPH + - id: "FA1822ACPH" - name: "Fatty-Acyl-Acp Hydrolase" - metabolites: !!omap - lneldcACP_c: -1 @@ -230455,15 +230455,15 @@ - m02040c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.2.14 - - references: PMID:9159116 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.2.14" + - references: "PMID:9159116" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FA182ACPH + - id: "FA182ACPH" - name: "Fatty-Acyl-Acp Hydrolase" - metabolites: !!omap - m00184c: 1 @@ -230473,15 +230473,15 @@ - ocdcya_c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000152463 - - rxnFrom: Recon3D - - eccodes: 3.1.2.14 - - references: PMID:9159116 + - gene_reaction_rule: "ENSG00000152463" + - rxnFrom: "Recon3D" + - eccodes: "3.1.2.14" + - references: "PMID:9159116" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FACOAL1813 + - id: "FACOAL1813" - name: "Fatty-Acid- Coenzyme A Ligase" - metabolites: !!omap - m00057c: 1 @@ -230492,15 +230492,15 @@ - m02759c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151726 - - rxnFrom: Recon3D - - eccodes: 6.2.1.3 - - references: PMID:15292367 + - gene_reaction_rule: "ENSG00000151726" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.3" + - references: "PMID:15292367" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FACOAL191 + - id: "FACOAL191" - name: "Fatty-Acid- Coenzyme A Ligase" - metabolites: !!omap - m01334c: 1 @@ -230511,15 +230511,15 @@ - pristcoa_c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000140284 - - rxnFrom: Recon3D - - eccodes: 6.2.1.3 - - references: PMID:11591435 + - gene_reaction_rule: "ENSG00000140284" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.3" + - references: "PMID:11591435" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FACOAL206 + - id: "FACOAL206" - name: "Fatty-Acid- Coenzyme A Ligase" - metabolites: !!omap - m01334c: 1 @@ -230530,15 +230530,15 @@ - phyt_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000140284 - - rxnFrom: Recon3D - - eccodes: 6.2.1.3 - - references: + - gene_reaction_rule: "ENSG00000140284" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.3" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FACOAL40im + - id: "FACOAL40im" - name: "Fatty-Acid- Coenzyme A Ligase (Butanoate), Mitochondrial" - metabolites: !!omap - m01334m: 1 @@ -230549,15 +230549,15 @@ - m02759m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000166743 - - rxnFrom: Recon3D - - eccodes: 6.2.1.2 - - references: PMID:11470804,PMID:3297476 + - gene_reaction_rule: "ENSG00000166743" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.2" + - references: "PMID:11470804,PMID:3297476" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAEL183 + - id: "FAEL183" - name: "Fatty-Acyl Coenzyme A Elongation (N-C18:3CoA)" - metabolites: !!omap - m01596c: 1 @@ -230572,15 +230572,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000118402 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: Recon3D - - eccodes: 2.3.1.86 - - references: PMID:11138005,PMID:15189125 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000118402 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.86" + - references: "PMID:11138005,PMID:15189125" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: FAEL184 + - id: "FAEL184" - name: "Fatty-Acyl Coenzyme A Elongation (N-C20:4CoA)" - metabolites: !!omap - m00108c: -1 @@ -230595,15 +230595,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000118402 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: Recon3D - - eccodes: 2.3.1.86 - - references: PMID:11138005,PMID:15189125 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000118402 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.86" + - references: "PMID:11138005,PMID:15189125" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: FAEL204 + - id: "FAEL204" - name: "Fatty-Acyl Coenzyme A Elongation (N-C20:4CoA)" - metabolites: !!omap - m00119c: 1 @@ -230618,15 +230618,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000118402 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: Recon3D - - eccodes: 2.3.1.86 - - references: PMID:11138005,PMID:15189125 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000118402 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.86" + - references: "PMID:11138005,PMID:15189125" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: FAEL205 + - id: "FAEL205" - name: "Fatty-Acyl Coenzyme A Elongation (N-C20:5CoA)" - metabolites: !!omap - m00103c: -1 @@ -230641,15 +230641,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000118402 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: Recon3D - - eccodes: 2.3.1.86 - - references: PMID:11138005,PMID:15189125 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000118402 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.86" + - references: "PMID:11138005,PMID:15189125" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: FAOXC11 + - id: "FAOXC11" - name: "Beta Oxidation of Long Chain Fatty Acid" - metabolites: !!omap - dmhptcoa_m: 1 @@ -230662,15 +230662,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117054 - - rxnFrom: Recon3D - - eccodes: 1.3.99.3 - - references: PMID:9819701 + - gene_reaction_rule: "ENSG00000117054" + - rxnFrom: "Recon3D" + - eccodes: "1.3.99.3" + - references: "PMID:9819701" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC140 + - id: "FAOXC140" - name: "Beta Oxidation of Long Chain Fatty Acid" - metabolites: !!omap - m01261m: 7 @@ -230684,15 +230684,15 @@ - m02553m: 6 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117054 or ENSG00000122971 - - rxnFrom: Recon3D - - eccodes: 1.3.99.3 - - references: PMID:2565344 + - gene_reaction_rule: "ENSG00000117054 or ENSG00000122971" + - rxnFrom: "Recon3D" + - eccodes: "1.3.99.3" + - references: "PMID:2565344" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC150m + - id: "FAOXC150m" - name: "Beta Oxidation of Long Chain Fatty Acid (Odd Chain)" - metabolites: !!omap - m01261m: 6 @@ -230707,15 +230707,15 @@ - m02774m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117054 or ENSG00000122971 - - rxnFrom: Recon3D - - eccodes: 1.3.99.3 - - references: PMID:2565344 + - gene_reaction_rule: "ENSG00000117054 or ENSG00000122971" + - rxnFrom: "Recon3D" + - eccodes: "1.3.99.3" + - references: "PMID:2565344" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC160 + - id: "FAOXC160" - name: "Beta Oxidation of Long Chain Fatty Acid" - metabolites: !!omap - m01261m: 8 @@ -230729,15 +230729,15 @@ - m02678m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117054 or ENSG00000122971 - - rxnFrom: Recon3D - - eccodes: 1.3.99.3 - - references: PMID:2565344,PMID:3035565 + - gene_reaction_rule: "ENSG00000117054 or ENSG00000122971" + - rxnFrom: "Recon3D" + - eccodes: "1.3.99.3" + - references: "PMID:2565344,PMID:3035565" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC16080m + - id: "FAOXC16080m" - name: "Beta Oxidation of Long Chain Fatty Acid" - metabolites: !!omap - m01261m: 4 @@ -230752,15 +230752,15 @@ - m02678m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117054 or ENSG00000122971 - - rxnFrom: Recon3D - - eccodes: 4.2.1.74 - - references: + - gene_reaction_rule: "ENSG00000117054 or ENSG00000122971" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.74" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC16080x + - id: "FAOXC16080x" - name: "Beta Oxidation of Long Chain Fatty Acid" - metabolites: !!omap - m01261p: 4 @@ -230775,15 +230775,15 @@ - m02678p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000060971 and ENSG00000133835 and ENSG00000161533) or (ENSG00000060971 and ENSG00000113790 and ENSG00000161533) - - rxnFrom: Recon3D - - eccodes: 4.2.1.74 - - references: + - gene_reaction_rule: "(ENSG00000060971 and ENSG00000133835 and ENSG00000161533) or (ENSG00000060971 and ENSG00000113790 and ENSG00000161533)" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.74" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC161802m + - id: "FAOXC161802m" - name: "Beta Oxidation Fatty Acid" - metabolites: !!omap - m00051m: -1 @@ -230798,15 +230798,15 @@ - m02644m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117054 or ENSG00000122971 - - rxnFrom: Recon3D - - eccodes: 4.2.1.74 - - references: + - gene_reaction_rule: "ENSG00000117054 or ENSG00000122971" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.74" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC16180m + - id: "FAOXC16180m" - name: "Beta Oxidation Fatty Acid" - metabolites: !!omap - m01261m: 4 @@ -230821,15 +230821,15 @@ - m02677m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117054 or ENSG00000122971 - - rxnFrom: Recon3D - - eccodes: 4.2.1.74 - - references: + - gene_reaction_rule: "ENSG00000117054 or ENSG00000122971" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.74" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC170m + - id: "FAOXC170m" - name: "Beta Oxidation of Long Chain Fatty Acid (Odd Chain)" - metabolites: !!omap - m01261m: 7 @@ -230844,15 +230844,15 @@ - m02774m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117054 - - rxnFrom: Recon3D - - eccodes: 1.3.99.3 - - references: PMID:2565344 + - gene_reaction_rule: "ENSG00000117054" + - rxnFrom: "Recon3D" + - eccodes: "1.3.99.3" + - references: "PMID:2565344" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC180 + - id: "FAOXC180" - name: "Beta Oxidation of Long Chain Fatty Acid" - metabolites: !!omap - m01261m: 1 @@ -230867,15 +230867,15 @@ - m02941m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117054 or ENSG00000122971 - - rxnFrom: Recon3D - - eccodes: 1.3.99.3 - - references: PMID:2565344,PMID:3035565 + - gene_reaction_rule: "ENSG00000117054 or ENSG00000122971" + - rxnFrom: "Recon3D" + - eccodes: "1.3.99.3" + - references: "PMID:2565344,PMID:3035565" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC180x + - id: "FAOXC180x" - name: "Beta Oxidation of Long Chain Fatty Acid" - metabolites: !!omap - m01261p: 1 @@ -230890,15 +230890,15 @@ - m02941p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000060971 and ENSG00000133835 and ENSG00000161533) or (ENSG00000060971 and ENSG00000113790 and ENSG00000161533) - - rxnFrom: Recon3D - - eccodes: 2.3.1.16 - - references: + - gene_reaction_rule: "(ENSG00000060971 and ENSG00000133835 and ENSG00000161533) or (ENSG00000060971 and ENSG00000113790 and ENSG00000161533)" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.16" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC1811601m + - id: "FAOXC1811601m" - name: "Beta Oxidation Fatty Acid" - metabolites: !!omap - m00057m: -1 @@ -230913,15 +230913,15 @@ - m02644m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117054 or ENSG00000122971 - - rxnFrom: Recon3D - - eccodes: 4.2.1.74 - - references: + - gene_reaction_rule: "ENSG00000117054 or ENSG00000122971" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.74" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC1811602m + - id: "FAOXC1811602m" - name: "Beta Oxidation Fatty Acid" - metabolites: !!omap - m01261m: 5 @@ -230936,15 +230936,15 @@ - octd11ecoa_m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117054 or ENSG00000122971 - - rxnFrom: Recon3D - - eccodes: 4.2.1.74 - - references: + - gene_reaction_rule: "ENSG00000117054 or ENSG00000122971" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.74" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC1811603m + - id: "FAOXC1811603m" - name: "Beta Oxidation Fatty Acid" - metabolites: !!omap - m01261m: 5 @@ -230959,15 +230959,15 @@ - m02647m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117054 or ENSG00000122971 - - rxnFrom: Recon3D - - eccodes: 4.2.1.74 - - references: + - gene_reaction_rule: "ENSG00000117054 or ENSG00000122971" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.74" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC182806m + - id: "FAOXC182806m" - name: "Beta Oxidation of Fatty Acid" - metabolites: !!omap - m01261m: 5 @@ -230982,15 +230982,15 @@ - m02644m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117054 or ENSG00000122971 - - rxnFrom: Recon3D - - eccodes: 4.2.1.74 - - references: + - gene_reaction_rule: "ENSG00000117054 or ENSG00000122971" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.74" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC18280m + - id: "FAOXC18280m" - name: "Beta Oxidation of Fatty Acid" - metabolites: !!omap - m00106m: -1 @@ -231005,15 +231005,15 @@ - m02644m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117054 or ENSG00000122971 - - rxnFrom: Recon3D - - eccodes: 4.2.1.74 - - references: + - gene_reaction_rule: "ENSG00000117054 or ENSG00000122971" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.74" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC183803m + - id: "FAOXC183803m" - name: "Beta Oxidation of Fatty Acid" - metabolites: !!omap - m01261m: 5 @@ -231028,15 +231028,15 @@ - m02644m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117054 or ENSG00000122971 - - rxnFrom: Recon3D - - eccodes: 4.2.1.74 - - references: + - gene_reaction_rule: "ENSG00000117054 or ENSG00000122971" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.74" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC183806m + - id: "FAOXC183806m" - name: "Beta Oxidation of Fatty Acid" - metabolites: !!omap - m01261m: 5 @@ -231051,15 +231051,15 @@ - m02644m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117054 or ENSG00000122971 - - rxnFrom: Recon3D - - eccodes: 4.2.1.74 - - references: + - gene_reaction_rule: "ENSG00000117054 or ENSG00000122971" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.74" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC183806x + - id: "FAOXC183806x" - name: "Beta Oxidation of Long Chain Fatty Acid" - metabolites: !!omap - m01261p: 5 @@ -231074,15 +231074,15 @@ - m02644p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000060971 and ENSG00000133835 and ENSG00000161533) or (ENSG00000060971 and ENSG00000113790 and ENSG00000161533) - - rxnFrom: Recon3D - - eccodes: 4.2.1.74 - - references: + - gene_reaction_rule: "(ENSG00000060971 and ENSG00000133835 and ENSG00000161533) or (ENSG00000060971 and ENSG00000113790 and ENSG00000161533)" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.74" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC18480m + - id: "FAOXC18480m" - name: "Beta Oxidation of Fatty Acid" - metabolites: !!omap - m00108m: -1 @@ -231097,15 +231097,15 @@ - m02644m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117054 or ENSG00000122971 - - rxnFrom: Recon3D - - eccodes: 4.2.1.74 - - references: + - gene_reaction_rule: "ENSG00000117054 or ENSG00000122971" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.74" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC18480x + - id: "FAOXC18480x" - name: "Beta Oxidation of Long Chain Fatty Acid" - metabolites: !!omap - m00108p: -1 @@ -231120,15 +231120,15 @@ - m02644p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000060971 and ENSG00000133835 and ENSG00000161533) or (ENSG00000060971 and ENSG00000113790 and ENSG00000161533) - - rxnFrom: Recon3D - - eccodes: 4.2.1.74 - - references: + - gene_reaction_rule: "(ENSG00000060971 and ENSG00000133835 and ENSG00000161533) or (ENSG00000060971 and ENSG00000113790 and ENSG00000161533)" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.74" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC200180m + - id: "FAOXC200180m" - name: "Beta Oxidation of Long Chain Fatty Acid" - metabolites: !!omap - m01261m: 1 @@ -231143,15 +231143,15 @@ - m02941m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117054 or ENSG00000122971 - - rxnFrom: Recon3D - - eccodes: 4.2.1.74 - - references: + - gene_reaction_rule: "ENSG00000117054 or ENSG00000122971" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.74" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC200180x + - id: "FAOXC200180x" - name: "Beta Oxidation of Long Chain Fatty Acid" - metabolites: !!omap - m01261p: 1 @@ -231166,15 +231166,15 @@ - m02941p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000060971 and ENSG00000133835 and ENSG00000161533) or (ENSG00000060971 and ENSG00000113790 and ENSG00000161533) - - rxnFrom: Recon3D - - eccodes: 4.2.1.74 - - references: + - gene_reaction_rule: "(ENSG00000060971 and ENSG00000133835 and ENSG00000161533) or (ENSG00000060971 and ENSG00000113790 and ENSG00000161533)" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.74" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC2031836m + - id: "FAOXC2031836m" - name: "Beta Oxidation of Fatty Acid" - metabolites: !!omap - m01261m: 1 @@ -231189,15 +231189,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117054 or ENSG00000122971 - - rxnFrom: Recon3D - - eccodes: 4.2.1.74 - - references: + - gene_reaction_rule: "ENSG00000117054 or ENSG00000122971" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.74" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC204 + - id: "FAOXC204" - name: "Beta Oxidation of Long Chain Fatty Acid" - metabolites: !!omap - m01261m: 10 @@ -231211,15 +231211,15 @@ - m02553m: 9 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117054 or ENSG00000122971 - - rxnFrom: Recon3D - - eccodes: 1.3.99.3 - - references: PMID:2565344,PMID:3035565 + - gene_reaction_rule: "ENSG00000117054 or ENSG00000122971" + - rxnFrom: "Recon3D" + - eccodes: "1.3.99.3" + - references: "PMID:2565344,PMID:3035565" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC204184m + - id: "FAOXC204184m" - name: "Beta Oxidation Fatty Acid" - metabolites: !!omap - m00108m: 1 @@ -231234,15 +231234,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117054 or ENSG00000122971 - - rxnFrom: Recon3D - - eccodes: 4.2.1.74 - - references: + - gene_reaction_rule: "ENSG00000117054 or ENSG00000122971" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.74" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC2051843m + - id: "FAOXC2051843m" - name: "Beta Oxidation of Fatty Acid" - metabolites: !!omap - m00103m: -1 @@ -231255,15 +231255,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117054 or ENSG00000122971 - - rxnFrom: Recon3D - - eccodes: 4.2.1.74 - - references: + - gene_reaction_rule: "ENSG00000117054 or ENSG00000122971" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.74" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC2051843x + - id: "FAOXC2051843x" - name: "Beta Oxidation of Long Chain Fatty Acid" - metabolites: !!omap - m00103p: -1 @@ -231276,15 +231276,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000060971 and ENSG00000113790 and ENSG00000161533) or (ENSG00000060971 and ENSG00000133835 and ENSG00000161533) - - rxnFrom: Recon3D - - eccodes: 4.2.1.74 - - references: + - gene_reaction_rule: "(ENSG00000060971 and ENSG00000113790 and ENSG00000161533) or (ENSG00000060971 and ENSG00000133835 and ENSG00000161533)" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.74" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC2242046m + - id: "FAOXC2242046m" - name: "Beta Oxidation of Long Chain Fatty Acid" - metabolites: !!omap - m00119m: -1 @@ -231299,15 +231299,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117054 or ENSG00000122971 - - rxnFrom: Recon3D - - eccodes: 4.2.1.74 - - references: + - gene_reaction_rule: "ENSG00000117054 or ENSG00000122971" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.74" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC2242046x + - id: "FAOXC2242046x" - name: "Beta Oxidation of Long Chain Fatty Acid" - metabolites: !!omap - m00119p: -1 @@ -231322,15 +231322,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000060971 and ENSG00000133835 and ENSG00000161533) or (ENSG00000060971 and ENSG00000113790 and ENSG00000161533) - - rxnFrom: Recon3D - - eccodes: 4.2.1.74 - - references: + - gene_reaction_rule: "(ENSG00000060971 and ENSG00000133835 and ENSG00000161533) or (ENSG00000060971 and ENSG00000113790 and ENSG00000161533)" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.74" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC2251836m + - id: "FAOXC2251836m" - name: "Beta Oxidation of Fatty Acid" - metabolites: !!omap - m00093m: -1 @@ -231343,15 +231343,15 @@ - m02553m: 2 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000117054 or ENSG00000122971 - - rxnFrom: Recon3D - - eccodes: 4.2.1.74 - - references: + - gene_reaction_rule: "ENSG00000117054 or ENSG00000122971" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.74" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC2251836x + - id: "FAOXC2251836x" - name: "Beta Oxidation of Long Chain Fatty Acid" - metabolites: !!omap - m00093p: -1 @@ -231364,15 +231364,15 @@ - m02553p: 2 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: (ENSG00000060971 and ENSG00000133835 and ENSG00000161533) or (ENSG00000060971 and ENSG00000113790 and ENSG00000161533) - - rxnFrom: Recon3D - - eccodes: 4.2.1.74 - - references: + - gene_reaction_rule: "(ENSG00000060971 and ENSG00000133835 and ENSG00000161533) or (ENSG00000060971 and ENSG00000113790 and ENSG00000161533)" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.74" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC2252053m + - id: "FAOXC2252053m" - name: "Beta Oxidation of Long Chain Fatty Acid" - metabolites: !!omap - m00093m: -1 @@ -231387,15 +231387,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117054 or ENSG00000122971 - - rxnFrom: Recon3D - - eccodes: 4.2.1.74 - - references: + - gene_reaction_rule: "ENSG00000117054 or ENSG00000122971" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.74" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC2252053x + - id: "FAOXC2252053x" - name: "Beta Oxidation of Long Chain Fatty Acid" - metabolites: !!omap - m00093p: -1 @@ -231410,15 +231410,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000060971 and ENSG00000133835 and ENSG00000161533) or (ENSG00000060971 and ENSG00000113790 and ENSG00000161533) - - rxnFrom: Recon3D - - eccodes: 4.2.1.74 - - references: + - gene_reaction_rule: "(ENSG00000060971 and ENSG00000133835 and ENSG00000161533) or (ENSG00000060971 and ENSG00000113790 and ENSG00000161533)" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.74" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC226205m + - id: "FAOXC226205m" - name: "Beta Oxidation of Long Chain Fatty Acid" - metabolites: !!omap - m00095m: -1 @@ -231431,15 +231431,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117054 or ENSG00000122971 - - rxnFrom: Recon3D - - eccodes: 4.2.1.74 - - references: PMID:2565344,PMID:3035565 + - gene_reaction_rule: "ENSG00000117054 or ENSG00000122971" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.74" + - references: "PMID:2565344,PMID:3035565" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC226205x + - id: "FAOXC226205x" - name: "Beta Oxidation of Long Chain Fatty Acid" - metabolites: !!omap - m00095p: -1 @@ -231452,15 +231452,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000060971 and ENSG00000133835 and ENSG00000161533) or (ENSG00000060971 and ENSG00000113790 and ENSG00000161533) - - rxnFrom: Recon3D - - eccodes: 4.2.1.74 - - references: + - gene_reaction_rule: "(ENSG00000060971 and ENSG00000133835 and ENSG00000161533) or (ENSG00000060971 and ENSG00000113790 and ENSG00000161533)" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.74" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC240200x + - id: "FAOXC240200x" - name: "Beta Oxidation of Long Chain Fatty Acid" - metabolites: !!omap - m01261p: 2 @@ -231475,15 +231475,15 @@ - m02971p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000060971 and ENSG00000133835 and ENSG00000161533) or (ENSG00000060971 and ENSG00000113790 and ENSG00000161533) - - rxnFrom: Recon3D - - eccodes: 4.2.1.74 - - references: + - gene_reaction_rule: "(ENSG00000060971 and ENSG00000133835 and ENSG00000161533) or (ENSG00000060971 and ENSG00000113790 and ENSG00000161533)" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.74" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC241181x + - id: "FAOXC241181x" - name: "Beta Oxidation of Long Chain Fatty Acid" - metabolites: !!omap - m00025p: -1 @@ -231498,15 +231498,15 @@ - m02647p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000060971 and ENSG00000133835 and ENSG00000161533) or (ENSG00000060971 and ENSG00000113790 and ENSG00000161533) - - rxnFrom: Recon3D - - eccodes: 4.2.1.74 - - references: + - gene_reaction_rule: "(ENSG00000060971 and ENSG00000133835 and ENSG00000161533) or (ENSG00000060971 and ENSG00000113790 and ENSG00000161533)" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.74" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC2442246x + - id: "FAOXC2442246x" - name: "Beta Oxidation of Long Chain Fatty Acid" - metabolites: !!omap - m00119p: 1 @@ -231521,15 +231521,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000060971 and ENSG00000133835 and ENSG00000161533) or (ENSG00000060971 and ENSG00000113790 and ENSG00000161533) - - rxnFrom: Recon3D - - eccodes: 4.2.1.74 - - references: + - gene_reaction_rule: "(ENSG00000060971 and ENSG00000133835 and ENSG00000161533) or (ENSG00000060971 and ENSG00000113790 and ENSG00000161533)" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.74" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC2452253x + - id: "FAOXC2452253x" - name: "Beta Oxidation of Long Chain Fatty Acid" - metabolites: !!omap - m00121p: 1 @@ -231544,15 +231544,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000060971 and ENSG00000133835 and ENSG00000161533) or (ENSG00000060971 and ENSG00000113790 and ENSG00000161533) - - rxnFrom: Recon3D - - eccodes: 4.2.1.74 - - references: + - gene_reaction_rule: "(ENSG00000060971 and ENSG00000133835 and ENSG00000161533) or (ENSG00000060971 and ENSG00000113790 and ENSG00000161533)" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.74" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC2452256x + - id: "FAOXC2452256x" - name: "Beta Oxidation of Long Chain Fatty Acid" - metabolites: !!omap - m00093p: 1 @@ -231567,15 +231567,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000060971 and ENSG00000133835 and ENSG00000161533) or (ENSG00000060971 and ENSG00000113790 and ENSG00000161533) - - rxnFrom: Recon3D - - eccodes: 4.2.1.74 - - references: + - gene_reaction_rule: "(ENSG00000060971 and ENSG00000133835 and ENSG00000161533) or (ENSG00000060971 and ENSG00000113790 and ENSG00000161533)" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.74" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC246226x + - id: "FAOXC246226x" - name: "Beta Oxidation of Long Chain Fatty Acid" - metabolites: !!omap - m00095p: 1 @@ -231590,15 +231590,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000060971 and ENSG00000133835 and ENSG00000161533) or (ENSG00000060971 and ENSG00000113790 and ENSG00000161533) - - rxnFrom: Recon3D - - eccodes: 4.2.1.74 - - references: + - gene_reaction_rule: "(ENSG00000060971 and ENSG00000133835 and ENSG00000161533) or (ENSG00000060971 and ENSG00000113790 and ENSG00000161533)" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.74" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC260240x + - id: "FAOXC260240x" - name: "Beta Oxidation of Long Chain Fatty Acid" - metabolites: !!omap - m01261p: 1 @@ -231613,15 +231613,15 @@ - m02971p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000060971 and ENSG00000133835 and ENSG00000161533) or (ENSG00000060971 and ENSG00000113790 and ENSG00000161533) - - rxnFrom: Recon3D - - eccodes: 4.2.1.74 - - references: + - gene_reaction_rule: "(ENSG00000060971 and ENSG00000133835 and ENSG00000161533) or (ENSG00000060971 and ENSG00000113790 and ENSG00000161533)" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.74" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC80 + - id: "FAOXC80" - name: "Beta Oxidation of Med/Long Chain Fatty Acid" - metabolites: !!omap - m01261m: 4 @@ -231635,15 +231635,15 @@ - m02644m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117054 or ENSG00000122971 - - rxnFrom: Recon3D - - eccodes: 1.3.99.3 - - references: PMID:2565344,PMID:3035565 + - gene_reaction_rule: "ENSG00000117054 or ENSG00000122971" + - rxnFrom: "Recon3D" + - eccodes: "1.3.99.3" + - references: "PMID:2565344,PMID:3035565" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAS100COA + - id: "FAS100COA" - name: "Fatty Acyl Coenzyme A Synthase (N-C10:0CoA)" - metabolites: !!omap - m01596c: 1 @@ -231657,15 +231657,15 @@ - m02644c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.3.1.86 - - references: PMID:11756679,PMID:15507492,PMID:2669958 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.86" + - references: "PMID:11756679,PMID:15507492,PMID:2669958" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: FAS120COA + - id: "FAS120COA" - name: "Fatty-Acyl Coenzyme A Synthase (N-C12:0CoA)" - metabolites: !!omap - m01596c: 1 @@ -231679,15 +231679,15 @@ - m02555c: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.3.1.86 - - references: PMID:11756679,PMID:15507492 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.86" + - references: "PMID:11756679,PMID:15507492" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: FAS140COA + - id: "FAS140COA" - name: "Fatty-Acyl Coenzyme A Synthase (N-C14:0CoA)" - metabolites: !!omap - m01596c: 1 @@ -231701,15 +231701,15 @@ - m02555c: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.3.1.86 - - references: PMID:11756679,PMID:15507492,PMID:2669958 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.86" + - references: "PMID:11756679,PMID:15507492,PMID:2669958" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: FAS160COA + - id: "FAS160COA" - name: "Fatty-Acyl Coenzyme A Synthase (N-C16:0CoA)" - metabolites: !!omap - m01596c: 1 @@ -231723,15 +231723,15 @@ - m02678c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.3.1.86 - - references: PMID:11756679,PMID:15507492,PMID:2669958 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.86" + - references: "PMID:11756679,PMID:15507492,PMID:2669958" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: FAS180COA + - id: "FAS180COA" - name: "Fatty-Acyl Coenzyme A Synthase (N-C18:0CoA)" - metabolites: !!omap - m01596c: 1 @@ -231745,15 +231745,15 @@ - m02941c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.3.1.86 - - references: PMID:11756679,PMID:15507492,PMID:2669958 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.86" + - references: "PMID:11756679,PMID:15507492,PMID:2669958" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: FAS80COA_L + - id: "FAS80COA_L" - name: "Fatty Acyl Coenzyme A Synthase (N-C8:0CoA), Lumped Reaction" - metabolites: !!omap - m01261c: -1 @@ -231767,15 +231767,15 @@ - m02644c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: Recon3D - - eccodes: 2.3.1.86 - - references: PMID:11756679,PMID:15507492,PMID:2669958 + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.86" + - references: "PMID:11756679,PMID:15507492,PMID:2669958" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: FBA5 + - id: "FBA5" - name: "D-Tagatose 1-Phosphate D-Glyceraldehyde-3-Phosphate-Lyase" - metabolites: !!omap - m01690c: 1 @@ -231783,15 +231783,15 @@ - tag1p_D_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136872 - - rxnFrom: Recon3D - - eccodes: 4.1.2.13 - - references: PMID:2996495,PMID:6284103,PMID:6298387 + - gene_reaction_rule: "ENSG00000136872" + - rxnFrom: "Recon3D" + - eccodes: "4.1.2.13" + - references: "PMID:2996495,PMID:6284103,PMID:6298387" - subsystem: - - Galactose metabolism + - "Galactose metabolism" - confidence_score: 0 - !!omap - - id: FCLTm + - id: "FCLTm" - name: "Ferrochelatase, Mitochondrial" - metabolites: !!omap - m01821m: -1 @@ -231800,15 +231800,15 @@ - m02803m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066926 - - rxnFrom: Recon3D - - eccodes: 4.99.1.1 - - references: PMID:7983009 + - gene_reaction_rule: "ENSG00000066926" + - rxnFrom: "Recon3D" + - eccodes: "4.99.1.1" + - references: "PMID:7983009" - subsystem: - - Heme synthesis + - "Heme synthesis" - confidence_score: 0 - !!omap - - id: FE2tm + - id: "FE2tm" - name: "Transport of Iron (Fe2+), Mitochondrial" - metabolites: !!omap - m01821c: -1 @@ -231817,15 +231817,15 @@ - m02039m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10383398,PMID:12755454 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10383398,PMID:12755454" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: FOLt2 + - id: "FOLt2" - name: "Folate Transport via Anion Antiport" - metabolites: !!omap - m01830c: 1 @@ -231834,105 +231834,105 @@ - m02040s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000173638 - - rxnFrom: Recon3D - - eccodes: 3.1.3.11 - - references: PMID:11375437,PMID:14770311 + - gene_reaction_rule: "ENSG00000173638" + - rxnFrom: "Recon3D" + - eccodes: "3.1.3.11" + - references: "PMID:11375437,PMID:14770311" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: FRDPtc + - id: "FRDPtc" - name: "Lipid, Flip-Flop Intracellular Transport" - metabolites: !!omap - m01806c: 1 - m01806p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 6.3.2.17 - - references: PMID:12840657 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "6.3.2.17" + - references: "PMID:12840657" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: FRDPtr + - id: "FRDPtr" - name: "Lipid, Flip-Flop Intracellular Transport" - metabolites: !!omap - m01806p: -1 - m01806r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 6.3.2.17 - - references: PMID:12121718,PMID:12840657,PMID:14713247 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "6.3.2.17" + - references: "PMID:12121718,PMID:12840657,PMID:14713247" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: FUCFUC12GAL14ACGLCGALGLUSIDEte + - id: "FUCFUC12GAL14ACGLCGALGLUSIDEte" - name: "Blood Group Intracellular Transport" - metabolites: !!omap - fucfuc12gal14acglcgalgluside_hs_c: 1 - fucfuc12gal14acglcgalgluside_hs_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: FUCFUC12GAL14ACGLCGALGLUSIDEtg + - id: "FUCFUC12GAL14ACGLCGALGLUSIDEtg" - name: "Blood Group Intracellular Transport" - metabolites: !!omap - fucfuc12gal14acglcgalgluside_hs_c: 1 - fucfuc12gal14acglcgalgluside_hs_g: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: FUCFUCGALACGLCGALGLUSIDEte + - id: "FUCFUCGALACGLCGALGLUSIDEte" - name: "Blood Group Intracellular Transport" - metabolites: !!omap - fucfucgalacglcgalgluside_hs_c: 1 - fucfucgalacglcgalgluside_hs_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: FUCFUCGALACGLCGALGLUSIDEtg + - id: "FUCFUCGALACGLCGALGLUSIDEtg" - name: "Blood Group Intracellular Transport" - metabolites: !!omap - fucfucgalacglcgalgluside_hs_c: 1 - fucfucgalacglcgalgluside_hs_g: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.2.1.51 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.2.1.51" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: FUT18g + - id: "FUT18g" - name: "Galactoside 2-Alpha-L-Fucosyltransferase 1" - metabolites: !!omap - galacglcgalacglcgal14acglcgalgluside_hs_g: -1 @@ -231942,15 +231942,15 @@ - m02039g: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174951 - - rxnFrom: Recon3D - - eccodes: 2.4.1.69 - - references: PMID:2118655 + - gene_reaction_rule: "ENSG00000174951" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.69" + - references: "PMID:2118655" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: FUT34g + - id: "FUT34g" - name: "Fucosyltransferase 3 (Galactoside 3 (4)-L-Fucosyltransferase, Lewis Blood Group Included) 1" - metabolites: !!omap - fucfucgalacglcgalgluside_hs_g: 1 @@ -231960,15 +231960,15 @@ - m03092g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171124 - - rxnFrom: Recon3D - - eccodes: 2.4.1.65 - - references: PMID:12424536,PMID:12493760,PMID:1977660 + - gene_reaction_rule: "ENSG00000171124" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.65" + - references: "PMID:12424536,PMID:12493760,PMID:1977660" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: FUT93g + - id: "FUT93g" - name: "Alpha- (1, 3)-Fucosyltransferase" - metabolites: !!omap - fucfuc12gal14acglcgalgluside_hs_g: 1 @@ -231978,15 +231978,15 @@ - m03095g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000172461 - - rxnFrom: Recon3D - - eccodes: 2.4.1.152 - - references: PMID:10386598 + - gene_reaction_rule: "ENSG00000172461" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.152" + - references: "PMID:10386598" - subsystem: - - Blood group biosynthesis + - "Blood group biosynthesis" - confidence_score: 0 - !!omap - - id: G3PD2m + - id: "G3PD2m" - name: "Glycerol-3-Phosphate Dehydrogenase (FAD), Mitochondrial" - metabolites: !!omap - m01690c: 1 @@ -231995,15 +231995,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115159 - - rxnFrom: Recon3D - - eccodes: 1.1.99.5 - - references: PMID:11385633,PMID:8549872 + - gene_reaction_rule: "ENSG00000115159" + - rxnFrom: "Recon3D" + - eccodes: "1.1.99.5" + - references: "PMID:11385633,PMID:8549872" - subsystem: - - Glycolysis / Gluconeogenesis + - "Glycolysis / Gluconeogenesis" - confidence_score: 0 - !!omap - - id: GABAVESSEC + - id: "GABAVESSEC" - name: "GABA Secretion via Secretory Vesicle (ATP Driven)" - metabolites: !!omap - m00970c: -1 @@ -232015,60 +232015,60 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101438 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:12750892,PMID:15383652 + - gene_reaction_rule: "ENSG00000101438" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:12750892,PMID:15383652" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GALFUCGALACGLCGAL14ACGLCGALGLUSIDEtg + - id: "GALFUCGALACGLCGAL14ACGLCGALGLUSIDEtg" - name: "Blood Group Intracellular Transport" - metabolites: !!omap - m01884c: 1 - m01915g: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.2.1.23 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.2.1.23" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GALGLUSIDEtg + - id: "GALGLUSIDEtg" - name: "Transport of Galactosyl Glucosyl Ceramide " - metabolites: !!omap - galgluside_hs_c: -1 - galgluside_hs_g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.2.1.23 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.2.1.23" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GALGLUSIDEtl + - id: "GALGLUSIDEtl" - name: "Transport of Galactosyl Glucosyl Ceramide " - metabolites: !!omap - galgluside_hs_c: -1 - galgluside_hs_l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.2.1.23 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.2.1.23" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GALGT1 + - id: "GALGT1" - name: "Beta-1, 4 N-Acetylgalactosaminyltransferase" - metabolites: !!omap - galgluside_hs_g: -1 @@ -232078,15 +232078,15 @@ - m03110g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135454 - - rxnFrom: Recon3D - - eccodes: 2.4.1.92 - - references: PMID:1601877,PMID:8702839 + - gene_reaction_rule: "ENSG00000135454" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.92" + - references: "PMID:1601877,PMID:8702839" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: GALNTg + - id: "GALNTg" - name: "Galnac Transferase, Golgi Apparatus" - metabolites: !!omap - Ser_Thr_g: -1 @@ -232096,15 +232096,15 @@ - m03110g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109586 or ENSG00000115339 or ENSG00000119514 or ENSG00000130035 or ENSG00000131386 or ENSG00000136542 or ENSG00000139629 or ENSG00000141429 or ENSG00000143641 or ENSG00000144278 or ENSG00000158089 or ENSG00000164574 or ENSG00000178234 or ENSG00000182870 or ENSG00000257594 - - rxnFrom: Recon3D - - eccodes: 2.4.1.41 - - references: PMID:10767557,PMID:12417297,PMID:12507512,PMID:12634319,PMID:15147861,PMID:9765313 + - gene_reaction_rule: "ENSG00000109586 or ENSG00000115339 or ENSG00000119514 or ENSG00000130035 or ENSG00000131386 or ENSG00000136542 or ENSG00000139629 or ENSG00000141429 or ENSG00000143641 or ENSG00000144278 or ENSG00000158089 or ENSG00000164574 or ENSG00000178234 or ENSG00000182870 or ENSG00000257594" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.41" + - references: "PMID:10767557,PMID:12417297,PMID:12507512,PMID:12634319,PMID:15147861,PMID:9765313" - subsystem: - - O-glycan metabolism + - "O-glycan metabolism" - confidence_score: 0 - !!omap - - id: GAMYe + - id: "GAMYe" - name: "Glucoamylase, Extracellular (Glygn5 -> Malt)" - metabolites: !!omap - Tyr_ggn_s: 1 @@ -232113,60 +232113,60 @@ - m02450s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000257335 - - rxnFrom: Recon3D - - eccodes: 3.2.1.3 - - references: PMID:3143729 + - gene_reaction_rule: "ENSG00000257335" + - rxnFrom: "Recon3D" + - eccodes: "3.2.1.3" + - references: "PMID:3143729" - subsystem: - - Starch and sucrose metabolism + - "Starch and sucrose metabolism" - confidence_score: 0 - !!omap - - id: GCHOLAte + - id: "GCHOLAte" - name: "Bile Acid Intracellular Transport" - metabolites: !!omap - m01988c: 1 - m01988s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.4.1.88 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.88" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GCHOLAtx + - id: "GCHOLAtx" - name: "Bile Acid Intracellular Transport" - metabolites: !!omap - m01988c: 1 - m01988p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GDPtg + - id: "GDPtg" - name: "Transport of Guanosine-5'-Diphosphate " - metabolites: !!omap - m01948c: -1 - m01948g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.1.2.10 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.1.2.10" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GHMT3m + - id: "GHMT3m" - name: "Glycine Hydroxymethyltransferase, Mitochondrial" - metabolites: !!omap - m00789m: -1 @@ -232175,15 +232175,15 @@ - m02039m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000182199 - - rxnFrom: Recon3D - - eccodes: 2.1.2.1 - - references: PMID:627563 + - gene_reaction_rule: "ENSG00000182199" + - rxnFrom: "Recon3D" + - eccodes: "2.1.2.1" + - references: "PMID:627563" - subsystem: - - Lysine metabolism + - "Lysine metabolism" - confidence_score: 0 - !!omap - - id: GLACOm + - id: "GLACOm" - name: "D-Glucuronolactone:NAD+ Oxidoreductase, Mitochondrial" - metabolites: !!omap - m01681m: 1 @@ -232194,30 +232194,30 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111275 or ENSG00000137124 or ENSG00000159423 - - rxnFrom: Recon3D - - eccodes: 1.5.1.12 - - references: PMID:3779687 + - gene_reaction_rule: "ENSG00000111275 or ENSG00000137124 or ENSG00000159423" + - rxnFrom: "Recon3D" + - eccodes: "1.5.1.12" + - references: "PMID:3779687" - subsystem: - - Vitamin C metabolism + - "Vitamin C metabolism" - confidence_score: 0 - !!omap - - id: GLCMter + - id: "GLCMter" - name: "Glucose Transport via Membrane Vesicle" - metabolites: !!omap - m01965r: -1 - m01965s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.2.1.31 - - references: PMID:11882499 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.2.1.31" + - references: "PMID:11882499" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLCt2_2 + - id: "GLCt2_2" - name: "Transport of D-Glucose via Proton Symport" - metabolites: !!omap - m01965c: 1 @@ -232226,15 +232226,15 @@ - m02039s: -2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100170 - - rxnFrom: Recon3D - - eccodes: 3.2.1.50 - - references: PMID:11024018,PMID:11034615,PMID:12748858,PMID:2490366,PMID:8063771 + - gene_reaction_rule: "ENSG00000100170" + - rxnFrom: "Recon3D" + - eccodes: "3.2.1.50" + - references: "PMID:11024018,PMID:11034615,PMID:12748858,PMID:2490366,PMID:8063771" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLDBRAN + - id: "GLDBRAN" - name: "Glycogen Debranching Enzyme" - metabolites: !!omap - m01965c: 1 @@ -232243,30 +232243,30 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162688 - - rxnFrom: Recon3D - - eccodes: 3.2.1.33 - - references: PMID:1374391 + - gene_reaction_rule: "ENSG00000162688" + - rxnFrom: "Recon3D" + - eccodes: "3.2.1.33" + - references: "PMID:1374391" - subsystem: - - Starch and sucrose metabolism + - "Starch and sucrose metabolism" - confidence_score: 0 - !!omap - - id: GLNtm + - id: "GLNtm" - name: "L-Glutamine Transport via Electroneutral Transporter" - metabolites: !!omap - m01975c: -1 - m01975m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLPASE2 + - id: "GLPASE2" - name: "Glycogen Phosphorylase (Amyls -> Glc-D)" - metabolites: !!omap - Tyr_ggn_c: 1 @@ -232275,30 +232275,30 @@ - m02040c: -7 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000068976 or ENSG00000100504 or ENSG00000100994 - - rxnFrom: Recon3D - - eccodes: 2.4.1.1 - - references: PMID:3346228 + - gene_reaction_rule: "ENSG00000068976 or ENSG00000100504 or ENSG00000100994" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.1" + - references: "PMID:3346228" - subsystem: - - Starch and sucrose metabolism + - "Starch and sucrose metabolism" - confidence_score: 0 - !!omap - - id: GLYC_St + - id: "GLYC_St" - name: "Secretion of L-Glycerate" - metabolites: !!omap - glyc_S_c: -1 - glyc_S_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.2.3.5 - - references: PMID:9604805 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.2.3.5" + - references: "PMID:9604805" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLYt2rL + - id: "GLYt2rL" - name: "Transport of Glycine via Proton Symport, Reversible, Lysosomal" - metabolites: !!omap - m01986c: 1 @@ -232307,15 +232307,15 @@ - m02039l: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123643 - - rxnFrom: Recon3D - - eccodes: 2.7.1.31 - - references: PMID:11390972,PMID:11959859 + - gene_reaction_rule: "ENSG00000123643" + - rxnFrom: "Recon3D" + - eccodes: "2.7.1.31" + - references: "PMID:11390972,PMID:11959859" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLYVESSEC + - id: "GLYVESSEC" - name: "Secretion of Glycine via Secretory Vesicle (ATP Driven)" - metabolites: !!omap - m01285c: 1 @@ -232327,15 +232327,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101438 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:12750892,PMID:15383652 + - gene_reaction_rule: "ENSG00000101438" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:12750892,PMID:15383652" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GPAM_hs + - id: "GPAM_hs" - name: "Glycerol-3-Phosphate Acyltransferase" - metabolites: !!omap - Rtotalcoa_c: -1 @@ -232345,15 +232345,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000119927 or ENSG00000143797 - - rxnFrom: Recon3D - - eccodes: 2.3.1.15 - - references: + - gene_reaction_rule: "ENSG00000119927 or ENSG00000143797" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.15" + - references: "" - subsystem: - - Triacylglycerol synthesis + - "Triacylglycerol synthesis" - confidence_score: 0 - !!omap - - id: GPAMm_hs + - id: "GPAMm_hs" - name: "Glycerol-3-Phosphate Acyltransferase" - metabolites: !!omap - Rtotalcoa_m: -1 @@ -232363,15 +232363,15 @@ - m02914m: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281 - - rxnFrom: Recon3D - - eccodes: 2.3.1.15 - - references: + - gene_reaction_rule: "ENSG00000119927 or ENSG00000138678 or ENSG00000158669 or ENSG00000186281" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.15" + - references: "" - subsystem: - - Triacylglycerol synthesis + - "Triacylglycerol synthesis" - confidence_score: 0 - !!omap - - id: GRTTx + - id: "GRTTx" - name: "Geranyltranstransferase" - metabolites: !!omap - m01806p: 1 @@ -232380,15 +232380,15 @@ - m02759p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160752 - - rxnFrom: Recon3D - - eccodes: 2.5.1.10 - - references: PMID:8188698 + - gene_reaction_rule: "ENSG00000160752" + - rxnFrom: "Recon3D" + - eccodes: "2.5.1.10" + - references: "PMID:8188698" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: H8MTer_L + - id: "H8MTer_L" - name: "H8 Mannosyltransferase, Endoplasmic Reticulum" - metabolites: !!omap - m01733r: 1 @@ -232398,15 +232398,15 @@ - m_em_3gacpail_r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119227 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:15208306 + - gene_reaction_rule: "ENSG00000119227" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:15208306" - subsystem: - - Phosphatidylinositol phosphate metabolism + - "Phosphatidylinositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: H8MTer_U + - id: "H8MTer_U" - name: "H8 Mannosyltransferase, Endoplasmic Reticulum" - metabolites: !!omap - m01733r: 1 @@ -232416,45 +232416,45 @@ - m_em_3gacpail_hs_r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119227 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:15208306 + - gene_reaction_rule: "ENSG00000119227" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:15208306" - subsystem: - - Phosphatidylinositol phosphate metabolism + - "Phosphatidylinositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HDCAter + - id: "HDCAter" - name: "Palmitate Er Export" - metabolites: !!omap - m02674c: 1 - m02674r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HDD2COAtx + - id: "HDD2COAtx" - name: "Transport of Trans-Hexadec-2-Enoyl Coenzyme A " - metabolites: !!omap - m00051c: -1 - m00051p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HEXCCPT2 + - id: "HEXCCPT2" - name: "Carnitine Transferase" - metabolites: !!omap - m01597m: -1 @@ -232463,30 +232463,30 @@ - m02348m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157184 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000157184" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: HEXCCRNt + - id: "HEXCCRNt" - name: "Transport into the Mitochondria (Carnitine)" - metabolites: !!omap - m02109c: -1 - m02109m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: HISTAVESSEC + - id: "HISTAVESSEC" - name: "Histamine Secretion via Secretory Vesicle (ATP Driven)" - metabolites: !!omap - m01285c: 1 @@ -232498,15 +232498,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000036565 or ENSG00000165646 - - rxnFrom: Recon3D - - eccodes: 2.7.1.1 - - references: PMID:12827358,PMID:15383652 + - gene_reaction_rule: "ENSG00000036565 or ENSG00000165646" + - rxnFrom: "Recon3D" + - eccodes: "2.7.1.1" + - references: "PMID:12827358,PMID:15383652" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HKt + - id: "HKt" - name: "H+/K+ Gastric/Non-Gastric P-ATPase And ABC ATPase" - metabolites: !!omap - m01285c: 1 @@ -232518,15 +232518,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105675 and ENSG00000186009 - - rxnFrom: Recon3D - - eccodes: 3.6.3.10 - - references: PMID:2160952,PMID:7900835 + - gene_reaction_rule: "ENSG00000105675 and ENSG00000186009" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.10" + - references: "PMID:2160952,PMID:7900835" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMGCOARr + - id: "HMGCOARr" - name: "Hydroxymethylglutaryl Coenzyme A Reductase (Ir)" - metabolites: !!omap - m00167r: 1 @@ -232537,30 +232537,30 @@ - m02555r: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113161 - - rxnFrom: Recon3D - - eccodes: 1.1.1.88 - - references: PMID:2991281 + - gene_reaction_rule: "ENSG00000113161" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.88" + - references: "PMID:2991281" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: HMGCOAtx + - id: "HMGCOAtx" - name: "Hydroxymethylglutaryl Coenzyme A Reversible Peroxisomal Transport" - metabolites: !!omap - m02131c: -1 - m02131p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:14713247 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:14713247" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMGLx + - id: "HMGLx" - name: "Hydroxymethylglutaryl Coenzyme A Lyase" - metabolites: !!omap - m01253p: 1 @@ -232568,15 +232568,15 @@ - m02131p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117305 - - rxnFrom: Recon3D - - eccodes: 4.1.3.4 - - references: PMID:11111079 + - gene_reaction_rule: "ENSG00000117305" + - rxnFrom: "Recon3D" + - eccodes: "4.1.3.4" + - references: "PMID:11111079" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: HOXG + - id: "HOXG" - name: "Heme Oxygenase 1" - metabolites: !!omap - m01399c: 1 @@ -232590,30 +232590,30 @@ - m02630c: -3 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100292 or ENSG00000103415 - - rxnFrom: Recon3D - - eccodes: 1.14.99.3 - - references: PMID:16356137 + - gene_reaction_rule: "ENSG00000100292 or ENSG00000103415" + - rxnFrom: "Recon3D" + - eccodes: "1.14.99.3" + - references: "PMID:16356137" - subsystem: - - Heme degradation + - "Heme degradation" - confidence_score: 0 - !!omap - - id: HPDCACRNt + - id: "HPDCACRNt" - name: "Heptadecanoate Transport into the Mitochondria" - metabolites: !!omap - m02100c: -1 - m02100m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: Recon3D - - eccodes: 1.1.1.88 - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.88" + - references: "PMID:14598172" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: HPYRR2x + - id: "HPYRR2x" - name: "Hydroxypyruvate Reductase (NADH)" - metabolites: !!omap - glyc_S_c: 2 @@ -232623,30 +232623,30 @@ - m02553c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000111716 and ENSG00000134333) or ENSG00000111716 or ENSG00000134333 or ENSG00000166796 or ENSG00000166800 or ENSG00000166816 or ENSG00000171989 - - rxnFrom: Recon3D - - eccodes: 1.1.1.27 - - references: PMID:14635115,PMID:5635456 + - gene_reaction_rule: "(ENSG00000111716 and ENSG00000134333) or ENSG00000111716 or ENSG00000134333 or ENSG00000166796 or ENSG00000166800 or ENSG00000166816 or ENSG00000171989" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.27" + - references: "PMID:14635115,PMID:5635456" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: HRETNtn + - id: "HRETNtn" - name: "4-Hydroxyretinoic Acid Transport, Nuclear" - metabolites: !!omap - m01006c: -1 - m01006n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:1503811 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:1503811" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HSD17B42x + - id: "HSD17B42x" - name: "Hydroxysteroid (17-Beta) Dehydrogenase 4" - metabolites: !!omap - m00037p: -1 @@ -232658,15 +232658,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000133835 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000133835" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HSD17B4x + - id: "HSD17B4x" - name: "Hydroxysteroid (17-Beta) Dehydrogenase 4" - metabolites: !!omap - m00748p: 1 @@ -232678,15 +232678,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000133835 - - rxnFrom: Recon3D - - eccodes: 3.10.1.1 - - references: + - gene_reaction_rule: "ENSG00000133835" + - rxnFrom: "Recon3D" + - eccodes: "3.10.1.1" + - references: "" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HSD17B7r + - id: "HSD17B7r" - name: "Testicular 17-Beta-Hydroxysteroid Dehydrogenase" - metabolites: !!omap - m01787r: 1 @@ -232696,120 +232696,120 @@ - m02555r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000132196 - - rxnFrom: Recon3D - - eccodes: 1.1.1.62 - - references: PMID:12732193 + - gene_reaction_rule: "ENSG00000132196" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.62" + - references: "PMID:12732193" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: Htr + - id: "Htr" - name: "H Transporter, Endoplasmic Reticulum" - metabolites: !!omap - m02039c: -1 - m02039r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: Htx + - id: "Htx" - name: "H Transporter, Peroxisome" - metabolites: !!omap - m02039c: -1 - m02039p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HXANtl + - id: "HXANtl" - name: "Hypoxanthine Faciliated Transport from Lysosome" - metabolites: !!omap - m02159c: 1 - m02159l: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000198246 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:12838422,PMID:15701636,PMID:2925670 + - gene_reaction_rule: "ENSG00000198246" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:12838422,PMID:15701636,PMID:2925670" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ILEt5m + - id: "ILEt5m" - name: "Transport of Isoleucine, Mitochondrial " - metabolites: !!omap - m02184c: -1 - m02184m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.1.1.42 - - references: PMID:11004451 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.42" + - references: "PMID:11004451" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: INStl + - id: "INStl" - name: "Transport of Inosine, Faciliated, Lysosomal" - metabolites: !!omap - m02170c: 1 - m02170l: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000198246 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:12838422,PMID:15701636,PMID:2925670 + - gene_reaction_rule: "ENSG00000198246" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:12838422,PMID:15701636,PMID:2925670" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: IPDDIx + - id: "IPDDIx" - name: "Isopentenyl-Diphosphate D-Isomerase" - metabolites: !!omap - m01706p: 1 - m02187p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000067064 or ENSG00000148377 - - rxnFrom: Recon3D - - eccodes: 5.3.3.2 - - references: PMID:11111079 + - gene_reaction_rule: "ENSG00000067064 or ENSG00000148377" + - rxnFrom: "Recon3D" + - eccodes: "5.3.3.2" + - references: "PMID:11111079" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: IPDPtr + - id: "IPDPtr" - name: "Isopentenyl Diphosphate Transport, Endoplasmatic Reticulum" - metabolites: !!omap - m02187c: 1 - m02187r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 5.3.3.2 - - references: PMID:11111079 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "5.3.3.2" + - references: "PMID:11111079" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: KAS8 + - id: "KAS8" - name: "B-Ketoacyl Synthetase (Palmitate, N-C16:0)" - metabolites: !!omap - m01261c: -1 @@ -232823,15 +232823,15 @@ - m02674c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.3.1.85 - - references: PMID:11756679,PMID:15507492,PMID:2669958 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.85" + - references: "PMID:11756679,PMID:15507492,PMID:2669958" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: KHK3 + - id: "KHK3" - name: "Ketohexokinase (D-Tagatose)" - metabolites: !!omap - m01285c: 1 @@ -232841,15 +232841,15 @@ - tag1p_D_c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138030 - - rxnFrom: Recon3D - - eccodes: 2.7.1.3 - - references: PMID:2996495,PMID:6284103,PMID:6298387 + - gene_reaction_rule: "ENSG00000138030" + - rxnFrom: "Recon3D" + - eccodes: "2.7.1.3" + - references: "PMID:2996495,PMID:6284103,PMID:6298387" - subsystem: - - Galactose metabolism + - "Galactose metabolism" - confidence_score: 0 - !!omap - - id: LCADi_Dm + - id: "LCADi_Dm" - name: "Lactaldehyde Dehydrogenase, Mitochondrial" - metabolites: !!omap - m01715m: -1 @@ -232860,15 +232860,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000059573 or ENSG00000111275 or ENSG00000112294 or ENSG00000119711 or ENSG00000137124 or ENSG00000159423 - - rxnFrom: Recon3D - - eccodes: 1.2.1.3 - - references: PMID:15987839,PMID:2296157,PMID:6487654 + - gene_reaction_rule: "ENSG00000059573 or ENSG00000111275 or ENSG00000112294 or ENSG00000119711 or ENSG00000137124 or ENSG00000159423" + - rxnFrom: "Recon3D" + - eccodes: "1.2.1.3" + - references: "PMID:15987839,PMID:2296157,PMID:6487654" - subsystem: - - Pyruvate metabolism + - "Pyruvate metabolism" - confidence_score: 0 - !!omap - - id: LCAT1e + - id: "LCAT1e" - name: "Lecithin-Cholesterol Acyltransferase" - metabolites: !!omap - m00656s: 1 @@ -232877,45 +232877,45 @@ - m02684s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID:11435418,PMID:11966470 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID:11435418,PMID:11966470" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: LCTStg + - id: "LCTStg" - name: "Lactose Transport from Golgi to Extracellular (Via Vesicle)" - metabolites: !!omap - m02332g: -1 - m02332s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.14.13.9 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.9" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LEUt5m + - id: "LEUt5m" - name: "Transport of L-Leucine, Mitochondrial" - metabolites: !!omap - m02360c: -1 - m02360m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.1.1.28 - - references: PMID:11004451 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.28" + - references: "PMID:11004451" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LGNCCPT2 + - id: "LGNCCPT2" - name: "Transport into the Mitochondria (Carnitine)" - metabolites: !!omap - m01597m: -1 @@ -232924,30 +232924,30 @@ - m02971m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157184 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000157184" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: LGNCCRNt + - id: "LGNCCRNt" - name: "Transport into the Mitochondria (Carnitine)" - metabolites: !!omap - m02970c: -1 - m02970m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: LIPOti + - id: "LIPOti" - name: "Transport of Lipoate via Sodium Symport" - metabolites: !!omap - m01285c: 1 @@ -232961,60 +232961,60 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138074 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10329687,PMID:10334869,PMID:12646417,PMID:15561972,PMID:9516450 + - gene_reaction_rule: "ENSG00000138074" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10329687,PMID:10334869,PMID:12646417,PMID:15561972,PMID:9516450" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: L_LACtcm + - id: "L_LACtcm" - name: "Transport of L-Lactate via Diffusion, Mitochondrial" - metabolites: !!omap - m02403c: -1 - m02403m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103569 - - rxnFrom: Recon3D - - eccodes: 2.3.1.21 - - references: PMID:12096044,PMID:16126913,PMID:9733774 + - gene_reaction_rule: "ENSG00000103569" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.21" + - references: "PMID:12096044,PMID:16126913,PMID:9733774" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LNELDCCRNt + - id: "LNELDCCRNt" - name: "Transport into the Mitochondria (Carnitine)" - metabolites: !!omap - m00105c: -1 - m00105m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: Recon3D - - eccodes: 4.4.1.5 - - references: + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "Recon3D" + - eccodes: "4.4.1.5" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: LNLCCRNt + - id: "LNLCCRNt" - name: "Transport into the Mitochondria (Carnitine)" - metabolites: !!omap - m02388c: -1 - m02388m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: LNLNCACPT1 + - id: "LNLNCACPT1" - name: "Carnitine O-Palmitoyltransferase" - metabolites: !!omap - lnlncacrn_c: 1 @@ -233023,15 +233023,15 @@ - m02390c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: Recon3D - - eccodes: 2.3.1.21 - - references: + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.21" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: LNLNCACPT2 + - id: "LNLNCACPT2" - name: "Carnitine Transferase" - metabolites: !!omap - lnlncacrn_m: -1 @@ -233040,45 +233040,45 @@ - m02390m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157184 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000157184" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: LNLNCACRNt + - id: "LNLNCACRNt" - name: "Transport into the Mitochondria (Carnitine)" - metabolites: !!omap - lnlncacrn_c: -1 - lnlncacrn_m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: LNLNCGCRNt + - id: "LNLNCGCRNt" - name: "Transport into the Mitochondria (Carnitine)" - metabolites: !!omap - m01933c: -1 - m01933m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: LNS14DM + - id: "LNS14DM" - name: "Cytochrome P450 Lanosterol 14-Alpha-Demethylase (NADP)" - metabolites: !!omap - m00941c: 1 @@ -233091,30 +233091,30 @@ - m02630c: -3 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000186526 - - rxnFrom: Recon3D - - eccodes: 1.14.14.1 - - references: PMID:10405341 + - gene_reaction_rule: "ENSG00000186526" + - rxnFrom: "Recon3D" + - eccodes: "1.14.14.1" + - references: "PMID:10405341" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LNSTLSr + - id: "LNSTLSr" - name: "Lanosterol Synthase" - metabolites: !!omap - m02336r: 1 - m02932r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160285 - - rxnFrom: Recon3D - - eccodes: 5.4.99.7 - - references: PMID:17925399,PMID:17925400,PMID:18830876,PMID:18830877 + - gene_reaction_rule: "ENSG00000160285" + - rxnFrom: "Recon3D" + - eccodes: "5.4.99.7" + - references: "PMID:17925399,PMID:17925400,PMID:18830876,PMID:18830877" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LPASE + - id: "LPASE" - name: "Lysophospholipase" - metabolites: !!omap - Rtotal_c: 1 @@ -233124,30 +233124,30 @@ - m02912c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000105198 or ENSG00000105205 or ENSG00000116711 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:9430701 + - gene_reaction_rule: "ENSG00000105198 or ENSG00000105205 or ENSG00000116711" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:9430701" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: LPCHOLt + - id: "LPCHOLt" - name: "Lysophosphatidylcholine Transport" - metabolites: !!omap - m00656c: 1 - m00656s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:9430701 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:9430701" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LPS + - id: "LPS" - name: "Lipase" - metabolites: !!omap - Rtotal3_c: 1 @@ -233157,15 +233157,15 @@ - m02959c: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100344 or ENSG00000166035 or ENSG00000170835 or ENSG00000175445 - - rxnFrom: Recon3D - - eccodes: 3.1.1.3 - - references: PMID:1969408 + - gene_reaction_rule: "ENSG00000100344 or ENSG00000166035 or ENSG00000170835 or ENSG00000175445" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.3" + - references: "PMID:1969408" - subsystem: - - Triacylglycerol synthesis + - "Triacylglycerol synthesis" - confidence_score: 0 - !!omap - - id: LPS2 + - id: "LPS2" - name: "Lipase" - metabolites: !!omap - Rtotal_c: 1 @@ -233175,15 +233175,15 @@ - m10006c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000170835 or ENSG00000175445 - - rxnFrom: Recon3D - - eccodes: 3.1.1.3 - - references: PMID:1969408 + - gene_reaction_rule: "ENSG00000170835 or ENSG00000175445" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.3" + - references: "PMID:1969408" - subsystem: - - Triacylglycerol synthesis + - "Triacylglycerol synthesis" - confidence_score: 0 - !!omap - - id: LPS2e + - id: "LPS2e" - name: "Lipase, Extracellular" - metabolites: !!omap - Rtotal_s: 1 @@ -233193,15 +233193,15 @@ - m10006s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000166035 - - rxnFrom: Recon3D - - eccodes: 3.1.1.3 - - references: PMID:14630921 + - gene_reaction_rule: "ENSG00000166035" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.3" + - references: "PMID:14630921" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: LPS3 + - id: "LPS3" - name: "Lipase" - metabolites: !!omap - Rtotal2_c: 1 @@ -233211,15 +233211,15 @@ - m10006c: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000074416 - - rxnFrom: Recon3D - - eccodes: 3.1.1.23 - - references: PMID:9495531 + - gene_reaction_rule: "ENSG00000074416" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.23" + - references: "PMID:9495531" - subsystem: - - Triacylglycerol synthesis + - "Triacylglycerol synthesis" - confidence_score: 0 - !!omap - - id: LPS3e + - id: "LPS3e" - name: "Lipase, Extracellular" - metabolites: !!omap - Rtotal2_s: 1 @@ -233229,15 +233229,15 @@ - m10006s: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000166035 - - rxnFrom: Recon3D - - eccodes: 3.1.1.23 - - references: PMID:14630921 + - gene_reaction_rule: "ENSG00000166035" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.23" + - references: "PMID:14630921" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: LPS4e + - id: "LPS4e" - name: "Phospholipase" - metabolites: !!omap - 1glyc_hs_s: 1 @@ -233247,15 +233247,15 @@ - m02715s: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 - - rxnFrom: Recon3D - - eccodes: 2.3.1.21 - - references: PMID:10713052 + - gene_reaction_rule: "ENSG00000100078" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.21" + - references: "PMID:10713052" - subsystem: - - Triacylglycerol synthesis + - "Triacylglycerol synthesis" - confidence_score: 0 - !!omap - - id: LPSe + - id: "LPSe" - name: "Lipase" - metabolites: !!omap - Rtotal3_s: 1 @@ -233265,15 +233265,15 @@ - m02959s: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000101670 or ENSG00000166035 or ENSG00000175445 or ENSG00000175535 or ENSG00000182333 or ENSG00000187021 or ENSG00000266200 - - rxnFrom: Recon3D - - eccodes: 3.1.1.3 - - references: PMID:10318835,PMID:1379598,PMID:1783385,PMID:2753032,PMID:3304425 + - gene_reaction_rule: "ENSG00000101670 or ENSG00000166035 or ENSG00000175445 or ENSG00000175535 or ENSG00000182333 or ENSG00000187021 or ENSG00000266200" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.3" + - references: "PMID:10318835,PMID:1379598,PMID:1783385,PMID:2753032,PMID:3304425" - subsystem: - - Triacylglycerol synthesis + - "Triacylglycerol synthesis" - confidence_score: 0 - !!omap - - id: LRAT + - id: "LRAT" - name: "Lecithin Retinol Acyltransferase" - metabolites: !!omap - m00656c: 1 @@ -233282,15 +233282,15 @@ - m02838c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000121207 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:14596594,PMID:1503811,PMID:15474300 + - gene_reaction_rule: "ENSG00000121207" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:14596594,PMID:1503811,PMID:15474300" - subsystem: - - Vitamin A metabolism + - "Vitamin A metabolism" - confidence_score: 0 - !!omap - - id: LRAT1 + - id: "LRAT1" - name: "Lecithin Retinol Acyltransferase (11-Cis)" - metabolites: !!omap - m00291c: -1 @@ -233299,15 +233299,15 @@ - m02838c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.14.14.1 - - references: PMID:1503811 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.14.14.1" + - references: "PMID:1503811" - subsystem: - - Vitamin A metabolism + - "Vitamin A metabolism" - confidence_score: 0 - !!omap - - id: LRAT2 + - id: "LRAT2" - name: "Lecithin Retinol Acyltransferase (9-Cis)" - metabolites: !!omap - 9_cis_retfa_c: 1 @@ -233316,15 +233316,15 @@ - m02684c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 5.4.99.7 - - references: PMID:1503811 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "5.4.99.7" + - references: "PMID:1503811" - subsystem: - - Vitamin A metabolism + - "Vitamin A metabolism" - confidence_score: 0 - !!omap - - id: LSTO1r + - id: "LSTO1r" - name: "Lathosterol Oxidase" - metabolites: !!omap - m01066r: -1 @@ -233336,15 +233336,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109929 - - rxnFrom: Recon3D - - eccodes: 1.3.3.2 - - references: PMID:10344195 + - gene_reaction_rule: "ENSG00000109929" + - rxnFrom: "Recon3D" + - eccodes: "1.3.3.2" + - references: "PMID:10344195" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LSTO2r + - id: "LSTO2r" - name: "Lathosterol Oxidase" - metabolites: !!omap - m02039r: -1 @@ -233356,15 +233356,15 @@ - m02805r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109929 or ENSG00000167910 - - rxnFrom: Recon3D - - eccodes: 1.3.3.2 - - references: PMID:10344195 + - gene_reaction_rule: "ENSG00000109929 or ENSG00000167910" + - rxnFrom: "Recon3D" + - eccodes: "1.3.3.2" + - references: "PMID:10344195" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: M4ATAer + - id: "M4ATAer" - name: "M4A Transamidase, Endoplasmic Reticulum" - metabolites: !!omap - m02001r: -1 @@ -233373,15 +233373,15 @@ - m_em_3gacpail_prot_hs_r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087111 and ENSG00000101464 and ENSG00000142892 and ENSG00000197858 - - rxnFrom: Recon3D - - eccodes: 1.4.3.14 - - references: PMID:10727241,PMID:11483512,PMID:12802054,PMID:15208306,PMID:9356492,PMID:9468317 + - gene_reaction_rule: "ENSG00000087111 and ENSG00000101464 and ENSG00000142892 and ENSG00000197858" + - rxnFrom: "Recon3D" + - eccodes: "1.4.3.14" + - references: "PMID:10727241,PMID:11483512,PMID:12802054,PMID:15208306,PMID:9356492,PMID:9468317" - subsystem: - - Phosphatidylinositol phosphate metabolism + - "Phosphatidylinositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: M4BET2er + - id: "M4BET2er" - name: "M4B Phosphoethanolaminyl Transferase, Endoplasmic Reticulum" - metabolites: !!omap - m00236r: 1 @@ -233390,30 +233390,30 @@ - m_em_3gacpail_hs_r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151665 and ENSG00000174227 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:15208306,PMID:15632136 + - gene_reaction_rule: "ENSG00000151665 and ENSG00000174227" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:15208306,PMID:15632136" - subsystem: - - Phosphatidylinositol phosphate metabolism + - "Phosphatidylinositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: MAGt + - id: "MAGt" - name: "Monoacylglycerol 2 Transport" - metabolites: !!omap - m10006c: 1 - m10006s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.2.1.5 - - references: PMID:10344773 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.2.1.5" + - references: "PMID:10344773" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: MAOX + - id: "MAOX" - name: "Methylamine Oxidase" - metabolites: !!omap - m01831c: 1 @@ -233424,15 +233424,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000002726 or ENSG00000131471 or ENSG00000131480 - - rxnFrom: Recon3D - - eccodes: 1.4.3.6 - - references: PMID:11136547,PMID:14715500,PMID:9131641 + - gene_reaction_rule: "ENSG00000002726 or ENSG00000131471 or ENSG00000131480" + - rxnFrom: "Recon3D" + - eccodes: "1.4.3.6" + - references: "PMID:11136547,PMID:14715500,PMID:9131641" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: MCOATAm + - id: "MCOATAm" - name: "Malonyl Coenzyme A-Acp Transacylase, Mitochondrial" - metabolites: !!omap - m00184m: -1 @@ -233441,15 +233441,15 @@ - m02444m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100294 - - rxnFrom: Recon3D - - eccodes: 2.3.1.39 - - references: PMID:12882974 + - gene_reaction_rule: "ENSG00000100294" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.39" + - references: "PMID:12882974" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: MEPIVESSte + - id: "MEPIVESSte" - name: "Metanephrine Secretion via Secretory Vesicle (ATP Driven)" - metabolites: !!omap - m01285c: 1 @@ -233461,15 +233461,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.1.1.37 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.37" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: MEVK1x + - id: "MEVK1x" - name: "Mevalonate Kinase (ATP)" - metabolites: !!omap - m00165p: 1 @@ -233479,15 +233479,15 @@ - m02039p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110921 - - rxnFrom: Recon3D - - eccodes: 2.7.1.36 - - references: PMID:11111079 + - gene_reaction_rule: "ENSG00000110921" + - rxnFrom: "Recon3D" + - eccodes: "2.7.1.36" + - references: "PMID:11111079" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: MMCD + - id: "MMCD" - name: "Methylmalonyl Coenzyme A Decarboxylase" - metabolites: !!omap - m01596c: 1 @@ -233496,15 +233496,15 @@ - m02774c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103150 - - rxnFrom: Recon3D - - eccodes: 4.1.1.9 - - references: PMID:12123667,PMID:12955715 + - gene_reaction_rule: "ENSG00000103150" + - rxnFrom: "Recon3D" + - eccodes: "4.1.1.9" + - references: "PMID:12123667,PMID:12955715" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: MMCDp + - id: "MMCDp" - name: "Methylmalonyl Coenzyme A Decarboxylase, Peroxisomal" - metabolites: !!omap - m01596p: 1 @@ -233513,15 +233513,15 @@ - m02774p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103150 - - rxnFrom: Recon3D - - eccodes: 4.1.1.9 - - references: PMID:12123667,PMID:12955715 + - gene_reaction_rule: "ENSG00000103150" + - rxnFrom: "Recon3D" + - eccodes: "4.1.1.9" + - references: "PMID:12123667,PMID:12955715" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: MOGAT + - id: "MOGAT" - name: "Monoacylglycerol Acyltransferase" - metabolites: !!omap - Rtotalcoa_c: -1 @@ -233530,15 +233530,15 @@ - m10006c: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000124003 or ENSG00000166391 - - rxnFrom: Recon3D - - eccodes: 3.2.1.113 - - references: + - gene_reaction_rule: "ENSG00000124003 or ENSG00000166391" + - rxnFrom: "Recon3D" + - eccodes: "3.2.1.113" + - references: "" - subsystem: - - Triacylglycerol synthesis + - "Triacylglycerol synthesis" - confidence_score: 0 - !!omap - - id: NABTNOm + - id: "NABTNOm" - name: "N4-Acetylaminobutanal:NAD+ Oxidoreductase, Mitochondrial" - metabolites: !!omap - m00952m: 1 @@ -233549,15 +233549,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111275 or ENSG00000137124 or ENSG00000159423 - - rxnFrom: Recon3D - - eccodes: 1.5.1.12 - - references: + - gene_reaction_rule: "ENSG00000111275 or ENSG00000137124 or ENSG00000159423" + - rxnFrom: "Recon3D" + - eccodes: "1.5.1.12" + - references: "" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: NAGA2ly + - id: "NAGA2ly" - name: "N-Acetylgalactosaminidase, Alpha-" - metabolites: !!omap - Ser_Thr_l: 1 @@ -233567,15 +233567,15 @@ - m03110l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000198951 - - rxnFrom: Recon3D - - eccodes: 3.2.1.49 - - references: PMID:2174888,PMID:2551294 + - gene_reaction_rule: "ENSG00000198951" + - rxnFrom: "Recon3D" + - eccodes: "3.2.1.49" + - references: "PMID:2174888,PMID:2551294" - subsystem: - - Keratan sulfate degradation + - "Keratan sulfate degradation" - confidence_score: 0 - !!omap - - id: NAHCO3_HCLt + - id: "NAHCO3_HCLt" - name: "Bicarbonate Transport (HCl/ (Hcl/NaHCO3 Exchange)" - metabolites: !!omap - m01442c: -1 @@ -233588,30 +233588,30 @@ - m02519s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000050438 or ENSG00000144290 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:14722772 + - gene_reaction_rule: "ENSG00000050438 or ENSG00000144290" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:14722772" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: NAt + - id: "NAt" - name: "Sodium Transport (Uniport)" - metabolites: !!omap - m02519c: 1 - m02519s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100170 or ENSG00000105641 or ENSG00000198743 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10893432,PMID:11024018,PMID:11034615,PMID:12679487,PMID:12748858,PMID:1372904,PMID:15546855,PMID:2490366,PMID:7537337,PMID:7789985,PMID:8063771,PMID:8559252,PMID:8806637,PMID:9341168 + - gene_reaction_rule: "ENSG00000100170 or ENSG00000105641 or ENSG00000198743" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10893432,PMID:11024018,PMID:11034615,PMID:12679487,PMID:12748858,PMID:1372904,PMID:15546855,PMID:2490366,PMID:7537337,PMID:7789985,PMID:8063771,PMID:8559252,PMID:8806637,PMID:9341168" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: NAt5 + - id: "NAt5" - name: "Sodium/Ammonium Proton Antiporter" - metabolites: !!omap - m02519c: -1 @@ -233620,15 +233620,15 @@ - m02579s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066230 or ENSG00000090020 or ENSG00000115616 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10444453,PMID:12845533,PMID:2536298,PMID:2581505,PMID:7631746,PMID:8199403,PMID:8595899 + - gene_reaction_rule: "ENSG00000066230 or ENSG00000090020 or ENSG00000115616" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10444453,PMID:12845533,PMID:2536298,PMID:2581505,PMID:7631746,PMID:8199403,PMID:8595899" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: NCNt + - id: "NCNt" - name: "Na+/Ca2+-NH4+ Antiport" - metabolites: !!omap - m01413c: 1 @@ -233639,15 +233639,15 @@ - m02579s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000074621 or ENSG00000155886 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10484410,PMID:10662833,PMID:11294880,PMID:12379639,PMID:14770312,PMID:9478004 + - gene_reaction_rule: "ENSG00000074621 or ENSG00000155886" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10484410,PMID:10662833,PMID:11294880,PMID:12379639,PMID:14770312,PMID:9478004" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: NH4t3r + - id: "NH4t3r" - name: "Transport of Ammonium ion via Proton Antiport" - metabolites: !!omap - m02039c: 1 @@ -233656,45 +233656,45 @@ - m02579s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112077 or ENSG00000132677 - - rxnFrom: Recon3D - - eccodes: 2.7.4.6 - - references: PMID:10444453,PMID:11024028,PMID:12920597,PMID:1417776,PMID:14966114,PMID:15284342,PMID:8595899 + - gene_reaction_rule: "ENSG00000112077 or ENSG00000132677" + - rxnFrom: "Recon3D" + - eccodes: "2.7.4.6" + - references: "PMID:10444453,PMID:11024028,PMID:12920597,PMID:1417776,PMID:14966114,PMID:15284342,PMID:8595899" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: NH4tn + - id: "NH4tn" - name: "Transport of Ammonium ion, Nuclear " - metabolites: !!omap - m02579c: -1 - m02579n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: NH4tp + - id: "NH4tp" - name: "Transport of Ammonium ion, Peroxisomal " - metabolites: !!omap - m02579c: -1 - m02579p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.7.4.6 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.7.4.6" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: NMNATr + - id: "NMNATr" - name: "Nicotinamide-Nucleotide Adenylyltransferase" - metabolites: !!omap - m01371c: -1 @@ -233704,15 +233704,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157064 or ENSG00000163864 - - rxnFrom: Recon3D - - eccodes: 2.7.4.6 - - references: + - gene_reaction_rule: "ENSG00000157064 or ENSG00000163864" + - rxnFrom: "Recon3D" + - eccodes: "2.7.4.6" + - references: "" - subsystem: - - Nicotinate and nicotinamide metabolism + - "Nicotinate and nicotinamide metabolism" - confidence_score: 0 - !!omap - - id: NNATm + - id: "NNATm" - name: "Nicotinate-Nucleotide Adenylyltransferase, Mitochondrial" - metabolites: !!omap - m01371m: -1 @@ -233722,15 +233722,15 @@ - m02759m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000163864 - - rxnFrom: Recon3D - - eccodes: 2.7.7.18 - - references: PMID:12574164 + - gene_reaction_rule: "ENSG00000163864" + - rxnFrom: "Recon3D" + - eccodes: "2.7.7.18" + - references: "PMID:12574164" - subsystem: - - Nicotinate and nicotinamide metabolism + - "Nicotinate and nicotinamide metabolism" - confidence_score: 0 - !!omap - - id: NRPPHRVESSEC + - id: "NRPPHRVESSEC" - name: "Secretion of Noradrenaline via Secretory Vesicle (ATP Driven)" - metabolites: !!omap - m01285c: 1 @@ -233742,15 +233742,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000036565 or ENSG00000165646 - - rxnFrom: Recon3D - - eccodes: 2.7.7.18 - - references: PMID:12827358,PMID:15383652 + - gene_reaction_rule: "ENSG00000036565 or ENSG00000165646" + - rxnFrom: "Recon3D" + - eccodes: "2.7.7.18" + - references: "PMID:12827358,PMID:15383652" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: NRVNCCPT2 + - id: "NRVNCCPT2" - name: "Carnitine Transferase" - metabolites: !!omap - m00024m: -1 @@ -233759,30 +233759,30 @@ - m02348m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157184 - - rxnFrom: Recon3D - - eccodes: 2.1.1.28 - - references: + - gene_reaction_rule: "ENSG00000157184" + - rxnFrom: "Recon3D" + - eccodes: "2.1.1.28" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: NRVNCCRNt + - id: "NRVNCCRNt" - name: "Transport into the Mitochondria (Carnitine)" - metabolites: !!omap - m00024c: -1 - m00024m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: Recon3D - - eccodes: 1.14.13.39 - - references: + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.39" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: O16G1e + - id: "O16G1e" - name: "Oligo-1, 6-Glucosidase (Glygn4 -> Glygn5), Extracellular" - metabolites: !!omap - glygn4_s: -1 @@ -233791,90 +233791,90 @@ - m02040s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000090402 - - rxnFrom: Recon3D - - eccodes: 3.2.1.10 - - references: + - gene_reaction_rule: "ENSG00000090402" + - rxnFrom: "Recon3D" + - eccodes: "3.2.1.10" + - references: "" - subsystem: - - Starch and sucrose metabolism + - "Starch and sucrose metabolism" - confidence_score: 0 - !!omap - - id: OCCOAtx + - id: "OCCOAtx" - name: "Fatty Acid Intracellular Transport" - metabolites: !!omap - m02644c: -1 - m02644p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ODECOAtx + - id: "ODECOAtx" - name: "Fatty Acid Intracellular Transport" - metabolites: !!omap - m02647c: -1 - m02647p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ORETNtn + - id: "ORETNtn" - name: "4-Oxo-Retinoic Acid Transport, Nuclear" - metabolites: !!omap - m01026c: -1 - m01026n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:1503811 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:1503811" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ORETNtn2 + - id: "ORETNtn2" - name: "13-Cis-4-Oxo-Retinoic Acid Transport, Nuclear" - metabolites: !!omap - m00348c: -1 - m00348n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:1503811 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:1503811" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: OXAtp + - id: "OXAtp" - name: "Oxalate Transport Out of Peroxisome" - metabolites: !!omap - m02661c: 1 - m02661p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 4.1.1.23 - - references: PMID:15240345 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "4.1.1.23" + - references: "PMID:15240345" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: P45027A15m + - id: "P45027A15m" - name: "5-Beta-Cytochrome P450, Family 27, Subfamily A, Polypeptide 1" - metabolites: !!omap - m00756m: 1 @@ -233886,15 +233886,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135929 - - rxnFrom: Recon3D - - eccodes: 1.14.13.15 - - references: + - gene_reaction_rule: "ENSG00000135929" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.15" + - references: "" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: P45039A1r + - id: "P45039A1r" - name: "Oxysterol 7-Alpha-Hydroxylase" - metabolites: !!omap - m00610r: -1 @@ -233906,15 +233906,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000146233 - - rxnFrom: Recon3D - - eccodes: 1.14.13.15 - - references: + - gene_reaction_rule: "ENSG00000146233" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.15" + - references: "" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: P45046A1r + - id: "P45046A1r" - name: "Cytochrome P450, Family 46, Subfamily A, Polypeptide 1" - metabolites: !!omap - m00610r: 1 @@ -233926,15 +233926,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000036530 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000036530" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: P4507B12r + - id: "P4507B12r" - name: "Oxysterol 7Alpha-Hydroxylase" - metabolites: !!omap - m00623r: -1 @@ -233946,15 +233946,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000172817 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000172817" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: P450LTB4r + - id: "P450LTB4r" - name: "Cytochrome P450 Leukotriene B4" - metabolites: !!omap - m00585r: 1 @@ -233965,15 +233965,15 @@ - m02630r: -1.5 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11160764,PMID:2172735,PMID:3001504 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11160764,PMID:2172735,PMID:3001504" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: P450SCC1m + - id: "P450SCC1m" - name: "Cholesterol Monooxygenase" - metabolites: !!omap - m00592m: 1 @@ -233985,60 +233985,60 @@ - m02630m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:1525048 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:1525048" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: PA_HSter + - id: "PA_HSter" - name: "Phosphatidate Scramblase" - metabolites: !!omap - m02733c: -1 - m02733r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10856717 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10856717" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PA_HStg + - id: "PA_HStg" - name: "Phosphatidate Scramblase" - metabolites: !!omap - m02733c: -1 - m02733g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10856717 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10856717" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PA_HStn + - id: "PA_HStn" - name: "Phosphatidate Transport, Nuclear" - metabolites: !!omap - m02733c: -1 - m02733n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCFLOPm + - id: "PCFLOPm" - name: "Phosphatidylcholine Flippase" - metabolites: !!omap - m01285c: 1 @@ -234050,15 +234050,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000206190 - - rxnFrom: Recon3D - - eccodes: 3.6.3.1 - - references: PMID:10856717,PMID:11353404 + - gene_reaction_rule: "ENSG00000206190" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.1" + - references: "PMID:10856717,PMID:11353404" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLPm_hs + - id: "PCHOLPm_hs" - name: "Choline Phosphatase" - metabolites: !!omap - m01513m: 1 @@ -234068,45 +234068,45 @@ - m02728m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000075651 - - rxnFrom: Recon3D - - eccodes: 3.1.4.4 - - references: PMID:11481335,PMID:8530346 + - gene_reaction_rule: "ENSG00000075651" + - rxnFrom: "Recon3D" + - eccodes: "3.1.4.4" + - references: "PMID:11481335,PMID:8530346" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PCRNtc + - id: "PCRNtc" - name: "Transport into the Cytosol from Peroxisome (Carnitine)" - metabolites: !!omap - m02657c: 1 - m02657p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:7654220 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:7654220" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: PCRNtm + - id: "PCRNtm" - name: "Transport into the Mitochondria from Cytosol (Carnitine)" - metabolites: !!omap - m02657c: -1 - m02657m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:7654220 + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:7654220" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: PECGONCOATr + - id: "PECGONCOATr" - name: "Pseudoecgonine Coenzyme A Transferase, Endoplasmatic Reticulum" - metabolites: !!omap - m01334r: 1 @@ -234118,15 +234118,15 @@ - pecgoncoa_r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:8572717 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:8572717" - subsystem: - - Alkaloids Biosynthesis + - "Alkaloids Biosynthesis" - confidence_score: 0 - !!omap - - id: PEFLIP + - id: "PEFLIP" - name: "Phosphatidylethanolamine Flippase" - metabolites: !!omap - m01285c: 1 @@ -234138,15 +234138,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005471 or ENSG00000124406 or ENSG00000206190 - - rxnFrom: Recon3D - - eccodes: 3.6.3.1 - - references: PMID:10198212,PMID:10856717,PMID:11353404 + - gene_reaction_rule: "ENSG00000005471 or ENSG00000124406 or ENSG00000206190" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.1" + - references: "PMID:10198212,PMID:10856717,PMID:11353404" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PEFLIPm + - id: "PEFLIPm" - name: "Phosphatidylethanolamine Flippase" - metabolites: !!omap - m01285c: 1 @@ -234158,30 +234158,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000124406 or ENSG00000206190 - - rxnFrom: Recon3D - - eccodes: 3.6.3.1 - - references: PMID:10198212,PMID:10856717,PMID:11353404 + - gene_reaction_rule: "ENSG00000124406 or ENSG00000206190" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.1" + - references: "PMID:10198212,PMID:10856717,PMID:11353404" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PEPLYStn + - id: "PEPLYStn" - name: "Peptide (Lysine) Nuclear Transport via Diffusion" - metabolites: !!omap - m00204n: 1 - m00204s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.4.17 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.4.17" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PEROXx + - id: "PEROXx" - name: "Peroxisomal Lumped Long Chain Fatty Acid Oxidation" - metabolites: !!omap - dmnoncoa_p: 1 @@ -234197,30 +234197,30 @@ - pristcoa_p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000087008 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: Recon3D - - eccodes: 3.1.4.17 - - references: PMID:11591435,PMID:12814641,PMID:15599942,PMID:1679347,PMID:7487879,PMID:8188243 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000087008 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "Recon3D" + - eccodes: "3.1.4.17" + - references: "PMID:11591435,PMID:12814641,PMID:15599942,PMID:1679347,PMID:7487879,PMID:8188243" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: PEt + - id: "PEt" - name: "Phosphatidylethanolamine Transport" - metabolites: !!omap - m02685c: 1 - m02685s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.3.1.12 - - references: PMID:11591435,PMID:12814641,PMID:15599942,PMID:1679347,PMID:7487879,PMID:8188243 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.12" + - references: "PMID:11591435,PMID:12814641,PMID:15599942,PMID:1679347,PMID:7487879,PMID:8188243" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PETOHMm_hs + - id: "PETOHMm_hs" - name: "Phosphatidylethanolamine N-Methyltransferase" - metabolites: !!omap - m02039m: 3 @@ -234230,15 +234230,15 @@ - m02877m: -3 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000133027 - - rxnFrom: Recon3D - - eccodes: 2.1.1.17 - - references: PMID:9989271 + - gene_reaction_rule: "ENSG00000133027" + - rxnFrom: "Recon3D" + - eccodes: "2.1.1.17" + - references: "PMID:9989271" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PETOHMr_hs + - id: "PETOHMr_hs" - name: "Phosphatidylethanolamine N-Methyltransferase" - metabolites: !!omap - m02039r: 3 @@ -234248,30 +234248,30 @@ - m02877r: -3 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000133027 - - rxnFrom: Recon3D - - eccodes: 2.1.1.17 - - references: PMID:9989271 + - gene_reaction_rule: "ENSG00000133027" + - rxnFrom: "Recon3D" + - eccodes: "2.1.1.17" + - references: "PMID:9989271" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PGLYCt + - id: "PGLYCt" - name: "Phosphatidylglycerol Transport" - metabolites: !!omap - m02715c: 1 - m02715s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.3.18 - - references: PMID:2164460,PMID:6290284 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.3.18" + - references: "PMID:2164460,PMID:6290284" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PGPP_hs + - id: "PGPP_hs" - name: "Phosphatidylglycerol Phosphate Phosphatase (Homo Sapiens)" - metabolites: !!omap - m02040c: -1 @@ -234280,15 +234280,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110536 - - rxnFrom: Recon3D - - eccodes: 3.1.3.27 - - references: PMID:10799718 + - gene_reaction_rule: "ENSG00000110536" + - rxnFrom: "Recon3D" + - eccodes: "3.1.3.27" + - references: "PMID:10799718" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PGPPT + - id: "PGPPT" - name: "Phosphatidyl-CMP: Glycerophosphate Phosphatidyltransferase" - metabolites: !!omap - m01426c: -1 @@ -234298,15 +234298,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087157 - - rxnFrom: Recon3D - - eccodes: 2.7.8.11 - - references: PMID:10799718 + - gene_reaction_rule: "ENSG00000087157" + - rxnFrom: "Recon3D" + - eccodes: "2.7.8.11" + - references: "PMID:10799718" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PHETA1m + - id: "PHETA1m" - name: "Phenylalanine Transaminase, Mitochondrial" - metabolites: !!omap - m01306m: -1 @@ -234315,30 +234315,30 @@ - m02725m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125166 or ENSG00000198650 - - rxnFrom: Recon3D - - eccodes: 2.6.1.58 - - references: + - gene_reaction_rule: "ENSG00000125166 or ENSG00000198650" + - rxnFrom: "Recon3D" + - eccodes: "2.6.1.58" + - references: "" - subsystem: - - Phenylalanine metabolism + - "Phenylalanine metabolism" - confidence_score: 0 - !!omap - - id: PHYTt + - id: "PHYTt" - name: "Fatty Acid Transport via Diffusion" - metabolites: !!omap - phyt_c: 1 - phyt_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.14.99.1 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.14.99.1" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PI4P3Ker + - id: "PI4P3Ker" - name: "Phosphatidylinositol 4-Phosphate 3-Kinase, Endoplasmic Reticulum" - metabolites: !!omap - m00551r: 1 @@ -234348,45 +234348,45 @@ - m02039r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000133056 - - rxnFrom: Recon3D - - eccodes: 2.7.1.68 - - references: PMID:9830063 + - gene_reaction_rule: "ENSG00000133056" + - rxnFrom: "Recon3D" + - eccodes: "2.7.1.68" + - references: "PMID:9830063" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: PIter + - id: "PIter" - name: "Phosphate Transport, Endoplasmic Reticulum" - metabolites: !!omap - m02751c: 1 - m02751r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137700 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11879177 + - gene_reaction_rule: "ENSG00000137700" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11879177" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PItx + - id: "PItx" - name: "Phosphate Transporter, Peroxisome" - metabolites: !!omap - m02751c: -1 - m02751p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.4.1.198 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.198" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PLA2 + - id: "PLA2" - name: "Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -234396,15 +234396,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.7.1.137 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.7.1.137" + - references: "" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PLA2_2 + - id: "PLA2_2" - name: "Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -234414,15 +234414,15 @@ - m02684c: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID:9272153,PMID:9417066 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID:9272153,PMID:9417066" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PLA2_2e + - id: "PLA2_2e" - name: "Phospholipase A2" - metabolites: !!omap - Rtotal2_s: 1 @@ -234432,15 +234432,15 @@ - m02684s: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000069764 or ENSG00000117215 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000170890 or ENSG00000188257 or ENSG00000188784 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID:10455175,PMID:10681567,PMID:11031251,PMID:11112443,PMID:8300559,PMID:9188469,PMID:9272153,PMID:9886417 + - gene_reaction_rule: "ENSG00000069764 or ENSG00000117215 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000170890 or ENSG00000188257 or ENSG00000188784" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID:10455175,PMID:10681567,PMID:11031251,PMID:11112443,PMID:8300559,PMID:9188469,PMID:9272153,PMID:9886417" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PMEVKx + - id: "PMEVKx" - name: "Phosphomevalonate Kinase" - metabolites: !!omap - m00164p: 1 @@ -234449,30 +234449,30 @@ - m01371p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000163344 - - rxnFrom: Recon3D - - eccodes: 2.7.4.2 - - references: PMID:11111079 + - gene_reaction_rule: "ENSG00000163344" + - rxnFrom: "Recon3D" + - eccodes: "2.7.4.2" + - references: "PMID:11111079" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: PMTCOAtx + - id: "PMTCOAtx" - name: "Fatty Acid Intracellular Transport" - metabolites: !!omap - m02678c: -1 - m02678p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PNTKm + - id: "PNTKm" - name: "Pantothenate Kinase, Mitochondrial" - metabolites: !!omap - m01285m: 1 @@ -234482,15 +234482,15 @@ - m02680m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125779 - - rxnFrom: Recon3D - - eccodes: 2.7.1.33 - - references: PMID:11479594,PMID:11923312,PMID:12554685 + - gene_reaction_rule: "ENSG00000125779" + - rxnFrom: "Recon3D" + - eccodes: "2.7.1.33" + - references: "PMID:11479594,PMID:11923312,PMID:12554685" - subsystem: - - CoA synthesis + - "CoA synthesis" - confidence_score: 0 - !!omap - - id: PNTOt5 + - id: "PNTOt5" - name: "Pantothenate Sodium Symporter Ii" - metabolites: !!omap - m01285c: 1 @@ -234504,45 +234504,45 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138074 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10329687,PMID:10334869,PMID:12646417,PMID:15561972,PMID:9516450 + - gene_reaction_rule: "ENSG00000138074" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10329687,PMID:10334869,PMID:12646417,PMID:15561972,PMID:9516450" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PPAt + - id: "PPAt" - name: "Propionate Transport, Diffusion" - metabolites: !!omap - m02772c: 1 - m02772s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:8135845 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:8135845" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PPAtm + - id: "PPAtm" - name: "Propionate Transport, Diffusion" - metabolites: !!omap - m02772c: -1 - m02772m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:8135845 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:8135845" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PPPGOm + - id: "PPPGOm" - name: "Protoporphyrinogen Oxidase, Mitochondrial" - metabolites: !!omap - m02040m: 6 @@ -234551,60 +234551,60 @@ - m02804m: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000143224 - - rxnFrom: Recon3D - - eccodes: 1.3.3.4 - - references: PMID:8771201 + - gene_reaction_rule: "ENSG00000143224" + - rxnFrom: "Recon3D" + - eccodes: "1.3.3.4" + - references: "PMID:8771201" - subsystem: - - Heme synthesis + - "Heme synthesis" - confidence_score: 0 - !!omap - - id: PRISTANALtx + - id: "PRISTANALtx" - name: "Transport of Pristanal, Peroxisomal" - metabolites: !!omap - m00564c: 1 - m00564p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PRISTCOAtx + - id: "PRISTCOAtx" - name: "Transport of Pristanoyl Coenzyme A, Peroxisomal" - metabolites: !!omap - pristcoa_c: 1 - pristcoa_p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PRISTtx + - id: "PRISTtx" - name: "Transport of Pristanic Acid, Peroxisomal" - metabolites: !!omap - m02766c: 1 - m02766p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.13.11.27 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.13.11.27" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PROAKGOX1r + - id: "PROAKGOX1r" - name: "L-Proline, 2-Oxoglutarate:Oxygen Oxidoreductase (4-Hydroxylating), Endoplasmatic Reticulum" - metabolites: !!omap - m01306r: -1 @@ -234615,15 +234615,15 @@ - m03037r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000122884 and ENSG00000185624) or (ENSG00000072682 and ENSG00000185624) - - rxnFrom: Recon3D - - eccodes: 1.14.11.2 - - references: PMID:12714038,PMID:2543975,PMID:3034602 + - gene_reaction_rule: "(ENSG00000122884 and ENSG00000185624) or (ENSG00000072682 and ENSG00000185624)" + - rxnFrom: "Recon3D" + - eccodes: "1.14.11.2" + - references: "PMID:12714038,PMID:2543975,PMID:3034602" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: PROt2rL + - id: "PROt2rL" - name: "Transport of L-Proline via Proton Symport, Reversible, Lysosomal" - metabolites: !!omap - m02039c: 1 @@ -234632,30 +234632,30 @@ - m02770l: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123643 - - rxnFrom: Recon3D - - eccodes: 1.14.11.2 - - references: PMID:11390972,PMID:11959859 + - gene_reaction_rule: "ENSG00000123643" + - rxnFrom: "Recon3D" + - eccodes: "1.14.11.2" + - references: "PMID:11390972,PMID:11959859" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PROtm + - id: "PROtm" - name: "Transport of L-Proline, Mitochondrial" - metabolites: !!omap - m02770c: -1 - m02770m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.5.99.8 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.5.99.8" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PRPNCOAHYDx + - id: "PRPNCOAHYDx" - name: "Propenoyl Coenzyme A Hydrolase, Peroxisomal" - metabolites: !!omap - m00799p: 1 @@ -234663,30 +234663,30 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113790 - - rxnFrom: Recon3D - - eccodes: 4.2.1.17 - - references: PMID:8188243 + - gene_reaction_rule: "ENSG00000113790" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.17" + - references: "PMID:8188243" - subsystem: - - Beta-alanine metabolism + - "Beta-alanine metabolism" - confidence_score: 0 - !!omap - - id: PS_HStg + - id: "PS_HStg" - name: "Phosphatidylserine Scramblase" - metabolites: !!omap - m02808c: -1 - m02808g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10856717 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10856717" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PSDm_hs + - id: "PSDm_hs" - name: "Phosphatidylserine Decarboxylase" - metabolites: !!omap - m01596m: 1 @@ -234695,15 +234695,15 @@ - m02808m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000241878 - - rxnFrom: Recon3D - - eccodes: 4.1.1.65 - - references: PMID:15052331,PMID:9370338 + - gene_reaction_rule: "ENSG00000241878" + - rxnFrom: "Recon3D" + - eccodes: "4.1.1.65" + - references: "PMID:15052331,PMID:9370338" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PSFLIP + - id: "PSFLIP" - name: "Phosphatidylserine Flippase" - metabolites: !!omap - m01285c: 1 @@ -234715,15 +234715,15 @@ - m02808s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000124406 or ENSG00000206190 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10198212,PMID:10856717,PMID:11353404 + - gene_reaction_rule: "ENSG00000124406 or ENSG00000206190" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10198212,PMID:10856717,PMID:11353404" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PSFLIPm + - id: "PSFLIPm" - name: "Phosphatidylserine Flippase" - metabolites: !!omap - m01285c: 1 @@ -234735,45 +234735,45 @@ - m02808m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000124406 or ENSG00000206190 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10198212,PMID:10856717,PMID:11353404 + - gene_reaction_rule: "ENSG00000124406 or ENSG00000206190" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10198212,PMID:10856717,PMID:11353404" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PSt3 + - id: "PSt3" - name: "Transport of Phosphatidylserine " - metabolites: !!omap - m02808c: 1 - m02808s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.7.8.8 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.7.8.8" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PTDCACRNt + - id: "PTDCACRNt" - name: "Pentadecanoate Transport into the Mitochondria" - metabolites: !!omap - m02688c: -1 - m02688m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: Recon3D - - eccodes: 4.2.1.17 - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.17" + - references: "PMID:14598172" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: PTE3x + - id: "PTE3x" - name: "Peroxisomal Acyl Coenzyme A Thioesterase" - metabolites: !!omap - m01597p: 1 @@ -234783,15 +234783,15 @@ - pristcoa_p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119673 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10944470 + - gene_reaction_rule: "ENSG00000119673" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10944470" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: PTE4x + - id: "PTE4x" - name: "Peroxisomal Acyl Coenzyme A Thioesterase" - metabolites: !!omap - m01597p: 1 @@ -234801,15 +234801,15 @@ - phyt_p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119673 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10944470 + - gene_reaction_rule: "ENSG00000119673" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10944470" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: PTE5x + - id: "PTE5x" - name: "Peroxisomal Acyl Coenzyme A Thioesterase" - metabolites: !!omap - m00119p: -1 @@ -234819,75 +234819,75 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000119673 - - rxnFrom: Recon3D - - eccodes: 4.1.1.65 - - references: PMID:10944470 + - gene_reaction_rule: "ENSG00000119673" + - rxnFrom: "Recon3D" + - eccodes: "4.1.1.65" + - references: "PMID:10944470" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: PYAM5Ptm + - id: "PYAM5Ptm" - name: "Pyridoxamine 5'-Phosphate Transport via Diffusion, Mitochondrial" - metabolites: !!omap - m02816c: -1 - m02816m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:6263901,PMID:7174673 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:6263901,PMID:7174673" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PYDX5Ptm + - id: "PYDX5Ptm" - name: "Pyridoxal 5'-Phosphate Transport via Diffusion, Mitochondrial" - metabolites: !!omap - m02814c: -1 - m02814m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:6263901,PMID:7174673 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:6263901,PMID:7174673" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: RAtn + - id: "RAtn" - name: "Retinoate Transport, Nuclear" - metabolites: !!omap - m02833c: -1 - m02833n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.5.1.12 - - references: PMID:1503811 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.5.1.12" + - references: "PMID:1503811" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: RAtn3 + - id: "RAtn3" - name: "13-Cis-Retinoic Acid Transport, Nuclear" - metabolites: !!omap - m00350c: -1 - m00350n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.4.2.2 - - references: PMID:1503811 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.4.2.2" + - references: "PMID:1503811" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: RDH2a + - id: "RDH2a" - name: "Retinol Dehydrogenase (9-Cis, NADPH)" - metabolites: !!omap - m01230c: 1 @@ -234897,15 +234897,15 @@ - m02555c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072042 or ENSG00000080511 or ENSG00000139988 or ENSG00000160439 or ENSG00000170786 or ENSG00000240857 - - rxnFrom: Recon3D - - eccodes: 1.1.1.105 - - references: PMID:12226107,PMID:12372410,PMID:12435598,PMID:1503811,PMID:15258582,PMID:15322982 + - gene_reaction_rule: "ENSG00000072042 or ENSG00000080511 or ENSG00000139988 or ENSG00000160439 or ENSG00000170786 or ENSG00000240857" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.105" + - references: "PMID:12226107,PMID:12372410,PMID:12435598,PMID:1503811,PMID:15258582,PMID:15322982" - subsystem: - - Vitamin A metabolism + - "Vitamin A metabolism" - confidence_score: 0 - !!omap - - id: RETFA + - id: "RETFA" - name: "Retinol Acyltransferase" - metabolites: !!omap - Rtotal2coa_c: -1 @@ -234914,45 +234914,45 @@ - m02838c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.3.1.76 - - references: PMID:1503811 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.76" + - references: "PMID:1503811" - subsystem: - - Vitamin A metabolism + - "Vitamin A metabolism" - confidence_score: 0 - !!omap - - id: RETFAt + - id: "RETFAt" - name: "Fatty Acid Retinol Efflux" - metabolites: !!omap - m02838c: -1 - m02838s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:1503811 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:1503811" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: RETFAt1 + - id: "RETFAt1" - name: "Fatty Acid Retinol Efflux (9-Cis)" - metabolites: !!omap - 9_cis_retfa_c: -1 - 9_cis_retfa_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:1503811 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:1503811" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: RETH + - id: "RETH" - name: "Retinyl Ester Hydrolase" - metabolites: !!omap - Rtotal2_c: 1 @@ -234962,15 +234962,15 @@ - m02838c: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000006757 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:1503811,PMID:15955102 + - gene_reaction_rule: "ENSG00000006757" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:1503811,PMID:15955102" - subsystem: - - Vitamin A metabolism + - "Vitamin A metabolism" - confidence_score: 0 - !!omap - - id: RETH1 + - id: "RETH1" - name: "Retinyl Ester Hydrolase (9-Cis)" - metabolites: !!omap - 9_cis_retfa_c: -1 @@ -234980,15 +234980,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:1503811 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:1503811" - subsystem: - - Vitamin A metabolism + - "Vitamin A metabolism" - confidence_score: 0 - !!omap - - id: RETH1e + - id: "RETH1e" - name: "Retinyl Ester Hydrolase (9-Cis), Extracellular" - metabolites: !!omap - 9_cis_retfa_s: -1 @@ -234998,15 +234998,15 @@ - m02040s: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.7.1.47 - - references: PMID:1503811 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.7.1.47" + - references: "PMID:1503811" - subsystem: - - Vitamin A metabolism + - "Vitamin A metabolism" - confidence_score: 0 - !!omap - - id: RETH2 + - id: "RETH2" - name: "Retinyl Ester Hydrolase (11-Cis)" - metabolites: !!omap - Rtotal2_c: 1 @@ -235016,15 +235016,15 @@ - m02838c: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:1503811 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:1503811" - subsystem: - - Vitamin A metabolism + - "Vitamin A metabolism" - confidence_score: 0 - !!omap - - id: RETH2e + - id: "RETH2e" - name: "Retinyl Ester Hydrolase (11-Cis), Extracellular" - metabolites: !!omap - Rtotal2_s: 1 @@ -235034,15 +235034,15 @@ - m02838s: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.1.1.105 - - references: PMID:1503811 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.105" + - references: "PMID:1503811" - subsystem: - - Vitamin A metabolism + - "Vitamin A metabolism" - confidence_score: 0 - !!omap - - id: RETHe + - id: "RETHe" - name: "Retinyl Ester Hydrolase, Extracellular" - metabolites: !!omap - Rtotal2_s: 1 @@ -235052,15 +235052,15 @@ - m02838s: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.1.1.105 - - references: PMID:1503811 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.105" + - references: "PMID:1503811" - subsystem: - - Vitamin A metabolism + - "Vitamin A metabolism" - confidence_score: 0 - !!omap - - id: RIBt2 + - id: "RIBt2" - name: "Ribose Transport in via Proton Symporter" - metabolites: !!omap - m02039c: 1 @@ -235069,15 +235069,15 @@ - m02843s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:15234337 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:15234337" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: RTOT_2 + - id: "RTOT_2" - name: "R Total Flux 2 Position" - metabolites: !!omap - R2coa_hs_c: -1 @@ -235085,15 +235085,15 @@ - Rtotal2coa_c: 2 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: RTOT_3 + - id: "RTOT_3" - name: "R Total Flux 3 Position" - metabolites: !!omap - R1coa_hs_c: -1 @@ -235101,105 +235101,105 @@ - Rtotal3coa_c: 2 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: RTOT1 + - id: "RTOT1" - name: "R Total Flux" - metabolites: !!omap - R1coa_hs_c: -1 - Rtotalcoa_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: RTOT2 + - id: "RTOT2" - name: "R Total Flux" - metabolites: !!omap - R2coa_hs_c: -1 - Rtotalcoa_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: RTOT3 + - id: "RTOT3" - name: "R Total Flux" - metabolites: !!omap - R3coa_hs_c: -1 - Rtotalcoa_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: RTOT4 + - id: "RTOT4" - name: "R Total Flux" - metabolites: !!omap - R4coa_hs_c: -1 - Rtotalcoa_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: RTOT5 + - id: "RTOT5" - name: "R Total Flux" - metabolites: !!omap - R5coa_hs_c: -1 - Rtotalcoa_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: RTOT6 + - id: "RTOT6" - name: "R Total Flux" - metabolites: !!omap - R6coa_hs_c: -1 - Rtotalcoa_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - R group synthesis + - "R group synthesis" - confidence_score: 0 - !!omap - - id: RTOTAL2CRNCPT1 + - id: "RTOTAL2CRNCPT1" - name: "Carnitine Fatty-Acyl Transferase" - metabolites: !!omap - Rtotal2coa_c: -1 @@ -235208,15 +235208,15 @@ - m02348c: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: Recon3D - - eccodes: 2.3.1.21 - - references: PMID:1988962 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.21" + - references: "PMID:1988962" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RTOTAL2CRNCPT2 + - id: "RTOTAL2CRNCPT2" - name: "R Group Transport into the Mitochondria" - metabolites: !!omap - Rtotal2coa_m: 1 @@ -235225,45 +235225,45 @@ - m02348m: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000157184 - - rxnFrom: Recon3D - - eccodes: 1.7.14.1 - - references: PMID:11274214,PMID:1528846,PMID:1988962 + - gene_reaction_rule: "ENSG00000157184" + - rxnFrom: "Recon3D" + - eccodes: "1.7.14.1" + - references: "PMID:11274214,PMID:1528846,PMID:1988962" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RTOTAL2CRNt + - id: "RTOTAL2CRNt" - name: "R Group Transport into the Mitochondria" - metabolites: !!omap - Rtotal2crn_c: -1 - Rtotal2crn_m: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: Recon3D - - eccodes: 1.7.14.1 - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "Recon3D" + - eccodes: "1.7.14.1" + - references: "PMID:14598172" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RTOTAL2t + - id: "RTOTAL2t" - name: "Rtotal2 Transport" - metabolites: !!omap - Rtotal2_c: 1 - Rtotal2_s: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.7.14.1 - - references: PMID:14598172 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.7.14.1" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: RTOTAL3CRNCPT1 + - id: "RTOTAL3CRNCPT1" - name: "Carnitine Fatty-Acyl Transferase" - metabolites: !!omap - Rtotal3coa_c: -1 @@ -235272,15 +235272,15 @@ - m02348c: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: Recon3D - - eccodes: 2.3.1.21 - - references: PMID:1988962 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.21" + - references: "PMID:1988962" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RTOTAL3CRNCPT2 + - id: "RTOTAL3CRNCPT2" - name: "R Group Transport into the Mitochondria" - metabolites: !!omap - Rtotal3coa_m: 1 @@ -235289,45 +235289,45 @@ - m02348m: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000157184 - - rxnFrom: Recon3D - - eccodes: 5.1.3.1 - - references: PMID:11274214,PMID:1528846,PMID:1988962 + - gene_reaction_rule: "ENSG00000157184" + - rxnFrom: "Recon3D" + - eccodes: "5.1.3.1" + - references: "PMID:11274214,PMID:1528846,PMID:1988962" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RTOTAL3CRNt + - id: "RTOTAL3CRNt" - name: "R Group Transport into the Mitochondria" - metabolites: !!omap - Rtotal3crn_c: -1 - Rtotal3crn_m: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: Recon3D - - eccodes: 5.3.1.6 - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "Recon3D" + - eccodes: "5.3.1.6" + - references: "PMID:14598172" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RTOTAL3t + - id: "RTOTAL3t" - name: "Rtotal3 Transport" - metabolites: !!omap - Rtotal3_c: 1 - Rtotal3_s: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: RTOTALCRNCPT1 + - id: "RTOTALCRNCPT1" - name: "Carnitine Fatty-Acyl Transferase" - metabolites: !!omap - Rtotalcoa_c: -1 @@ -235336,15 +235336,15 @@ - m02348c: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: Recon3D - - eccodes: 2.3.1.21 - - references: PMID:1988962 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.21" + - references: "PMID:1988962" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RTOTALCRNCPT2 + - id: "RTOTALCRNCPT2" - name: "R Group Transport into the Mitochondria" - metabolites: !!omap - Rtotalcoa_m: 1 @@ -235353,90 +235353,90 @@ - m02348m: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000157184 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11274214,PMID:1528846,PMID:1988962 + - gene_reaction_rule: "ENSG00000157184" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11274214,PMID:1528846,PMID:1988962" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RTOTALCRNt + - id: "RTOTALCRNt" - name: "R Group Transport into the Mitochondria" - metabolites: !!omap - Rtotalcrn_c: -1 - Rtotalcrn_m: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RTOTALt + - id: "RTOTALt" - name: "Rtotal Transport" - metabolites: !!omap - Rtotal_c: 1 - Rtotal_s: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:14598172 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:14598172" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: Rtotaltl + - id: "Rtotaltl" - name: "Fatty Acid Intracellular Transport" - metabolites: !!omap - Rtotal_c: -1 - Rtotal_l: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: Rtotaltp + - id: "Rtotaltp" - name: "Fatty Acid Intracellular Transport" - metabolites: !!omap - Rtotal_c: -1 - Rtotal_p: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SCP22x + - id: "SCP22x" - name: "Sterol Carrier Protein 2" - metabolites: !!omap - dmnoncoa_c: -1 - dmnoncoa_p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116171 - - rxnFrom: Recon3D - - eccodes: 1.5.1.10 - - references: PMID:1703300 + - gene_reaction_rule: "ENSG00000116171" + - rxnFrom: "Recon3D" + - eccodes: "1.5.1.10" + - references: "PMID:1703300" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SCP2x + - id: "SCP2x" - name: "Peroxisomal Thiolase 2" - metabolites: !!omap - dgcholcoa_p: 7 @@ -235447,30 +235447,30 @@ - m02774p: 8 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116171 - - rxnFrom: Recon3D - - eccodes: 2.7.7.4 - - references: PMID:1703300 + - gene_reaction_rule: "ENSG00000116171" + - rxnFrom: "Recon3D" + - eccodes: "2.7.7.4" + - references: "PMID:1703300" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: Ser_Thrtg + - id: "Ser_Thrtg" - name: "Ser/Thr Transport (from Golgi to Lysosome)" - metabolites: !!omap - Ser_Thr_g: -1 - Ser_Thr_l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10811962,PMID:11161786 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10811962,PMID:11161786" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SIAASE + - id: "SIAASE" - name: "Sialidase" - metabolites: !!omap - m01653c: -1 @@ -235479,15 +235479,15 @@ - m02543c: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115488 or ENSG00000204099 - - rxnFrom: Recon3D - - eccodes: 3.2.1.18 - - references: PMID:10191093 + - gene_reaction_rule: "ENSG00000115488 or ENSG00000204099" + - rxnFrom: "Recon3D" + - eccodes: "3.2.1.18" + - references: "PMID:10191093" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: SOAT11 + - id: "SOAT11" - name: "Sterol O-Acyltransferase (Acyl-Coenzyme A: Cholesterol Acyltransferase) 1" - metabolites: !!omap - R1coa_hs_c: -1 @@ -235496,15 +235496,15 @@ - xolest_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000057252 - - rxnFrom: Recon3D - - eccodes: 2.4.99.9 - - references: PMID:15850387,PMID:8407899 + - gene_reaction_rule: "ENSG00000057252" + - rxnFrom: "Recon3D" + - eccodes: "2.4.99.9" + - references: "PMID:15850387,PMID:8407899" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: SOAT11r + - id: "SOAT11r" - name: "Sterol O-Acyltransferase (Acyl-Coenzyme A: Cholesterol Acyltransferase) 1" - metabolites: !!omap - R1coa_hs_r: -1 @@ -235513,15 +235513,15 @@ - xolest_hs_r: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000057252 - - rxnFrom: Recon3D - - eccodes: 2.4.99.9 - - references: PMID:15850387,PMID:8407899 + - gene_reaction_rule: "ENSG00000057252" + - rxnFrom: "Recon3D" + - eccodes: "2.4.99.9" + - references: "PMID:15850387,PMID:8407899" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: SOAT12 + - id: "SOAT12" - name: "Sterol O-Acyltransferase (Acyl-Coenzyme A: Cholesterol Acyltransferase) 1" - metabolites: !!omap - R2coa_hs_c: -1 @@ -235530,15 +235530,15 @@ - xolest_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000057252 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:15850387,PMID:8407899 + - gene_reaction_rule: "ENSG00000057252" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:15850387,PMID:8407899" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: SOAT12r + - id: "SOAT12r" - name: "Sterol O-Acyltransferase (Acyl-Coenzyme A: Cholesterol Acyltransferase) 1" - metabolites: !!omap - R2coa_hs_r: -1 @@ -235547,15 +235547,15 @@ - xolest_hs_r: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000057252 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:15850387,PMID:8407899 + - gene_reaction_rule: "ENSG00000057252" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:15850387,PMID:8407899" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: SPHMDAc + - id: "SPHMDAc" - name: "Sphingomyelin Deacylase" - metabolites: !!omap - Rtotal_c: 1 @@ -235564,15 +235564,15 @@ - m02931c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:12069827 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:12069827" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: SQLEr + - id: "SQLEr" - name: "Squalene Epoxidase, Endoplasmic Reticular (NADP)" - metabolites: !!omap - m02039r: -1 @@ -235584,15 +235584,15 @@ - m02933r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104549 - - rxnFrom: Recon3D - - eccodes: 1.14.99.7 - - references: PMID:1964954 + - gene_reaction_rule: "ENSG00000104549" + - rxnFrom: "Recon3D" + - eccodes: "1.14.99.7" + - references: "PMID:1964954" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: SQLSr + - id: "SQLSr" - name: "Squalene Synthase" - metabolites: !!omap - m01806r: -2 @@ -235603,45 +235603,45 @@ - m02933r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000079459 - - rxnFrom: Recon3D - - eccodes: 2.5.1.21 - - references: PMID:1318747 + - gene_reaction_rule: "ENSG00000079459" + - rxnFrom: "Recon3D" + - eccodes: "2.5.1.21" + - references: "PMID:1318747" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: STCOAtx + - id: "STCOAtx" - name: "Fatty Acid Intracellular Transport" - metabolites: !!omap - m02941c: -1 - m02941p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.4.99.7 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.4.99.7" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: STRDNCCRNt + - id: "STRDNCCRNt" - name: "Transport into the Mitochondria (Carnitine)" - metabolites: !!omap - m00107c: -1 - m00107m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: Recon3D - - eccodes: 2.4.99.7 - - references: + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "Recon3D" + - eccodes: "2.4.99.7" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: T4HCINNMFM + - id: "T4HCINNMFM" - name: "4-Hydroxycinnamate Formation" - metabolites: !!omap - m00981m: 1 @@ -235649,90 +235649,90 @@ - m02040m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11583838,PMID:12232327 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11583838,PMID:12232327" - subsystem: - - Ubiquinone synthesis + - "Ubiquinone synthesis" - confidence_score: 0 - !!omap - - id: TAGt + - id: "TAGt" - name: "Triacylglycerol Transport" - metabolites: !!omap - m02959c: 1 - m02959s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.6.2 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.6.2" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TCHOLAte + - id: "TCHOLAte" - name: "Bile Acid Intracellular Transport" - metabolites: !!omap - m02963c: 1 - m02963s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 6.2.1.5 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.5" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TCHOLAtx + - id: "TCHOLAtx" - name: "Bile Acid Intracellular Transport" - metabolites: !!omap - m02963c: 1 - m02963p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.2.1.26 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.2.1.26" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TDCHOLAte + - id: "TDCHOLAte" - name: "Bile Acid Intracellular Transport" - metabolites: !!omap - m02962c: 1 - m02962s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 4.2.1.17 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.17" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TDCHOLAtx + - id: "TDCHOLAtx" - name: "Bile Acid Intracellular Transport" - metabolites: !!omap - m02962c: 1 - m02962p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TETPENT3CPT2 + - id: "TETPENT3CPT2" - name: "Carnitine Transferase" - metabolites: !!omap - m00133m: -1 @@ -235741,30 +235741,30 @@ - m02348m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157184 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000157184" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: TETPENT3CRNt + - id: "TETPENT3CRNt" - name: "Transport into the Mitochondria (Carnitine)" - metabolites: !!omap - m00133c: -1 - m00133m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: TETPENT6CPT2 + - id: "TETPENT6CPT2" - name: "Carnitine Transferase" - metabolites: !!omap - m00109m: -1 @@ -235773,30 +235773,30 @@ - m02348m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157184 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000157184" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: TETPENT6CRNt + - id: "TETPENT6CRNt" - name: "Transport into the Mitochondria (Carnitine)" - metabolites: !!omap - m00109c: -1 - m00109m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: Recon3D - - eccodes: 3.6.1.15 - - references: + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "Recon3D" + - eccodes: "3.6.1.15" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: TETTET6CPT2 + - id: "TETTET6CPT2" - name: "Carnitine Transferase" - metabolites: !!omap - m00130m: -1 @@ -235805,45 +235805,45 @@ - m02348m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157184 - - rxnFrom: Recon3D - - eccodes: 3.6.1.15 - - references: + - gene_reaction_rule: "ENSG00000157184" + - rxnFrom: "Recon3D" + - eccodes: "3.6.1.15" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: TETTET6CRNt + - id: "TETTET6CRNt" - name: "Transport into the Mitochondria (Carnitine)" - metabolites: !!omap - m00130c: -1 - m00130m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: THCHOLSTOICtm + - id: "THCHOLSTOICtm" - name: "Lipid, Flip-Flop Intracellular Transport" - metabolites: !!omap - m00752m: -1 - m00752p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.3.1.21 - - references: PMID:12840657 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.21" + - references: "PMID:12840657" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: THFt2 + - id: "THFt2" - name: "Tetrahydrofolate Transport via Anion Antiport" - metabolites: !!omap - m02040c: -1 @@ -235852,15 +235852,15 @@ - m02980s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000173638 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11375437,PMID:14770311 + - gene_reaction_rule: "ENSG00000173638" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11375437,PMID:14770311" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: THMMPt4 + - id: "THMMPt4" - name: "Thiamine Monophosphate Transport in via Anion Antiport" - metabolites: !!omap - m02040c: -1 @@ -235869,15 +235869,15 @@ - m02983s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000173638 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10542220,PMID:14770311 + - gene_reaction_rule: "ENSG00000173638" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10542220,PMID:14770311" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: THMMPtm + - id: "THMMPtm" - name: "Thiamine Monophosphate Transport, Mitochondrial" - metabolites: !!omap - m02040c: 1 @@ -235886,15 +235886,15 @@ - m02983m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:12014993,PMID:9755848 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:12014993,PMID:9755848" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: THMPPtm + - id: "THMPPtm" - name: "Thiamine Diphosphate Transport in via Anion Antiport, Mitochondria" - metabolites: !!omap - m02040c: 2 @@ -235903,15 +235903,15 @@ - m02984m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:12014993 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:12014993" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: THMt2m + - id: "THMt2m" - name: "Thiamine Transport in via Proton Symport, Mitochondrial" - metabolites: !!omap - m02039i: -1 @@ -235920,15 +235920,15 @@ - m02982m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.3.1.21 - - references: PMID:12014993 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.21" + - references: "PMID:12014993" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: THMTPt + - id: "THMTPt" - name: "Thiamine Triphosphate Transport in via Anion Antiport" - metabolites: !!omap - m02040c: 3 @@ -235937,45 +235937,45 @@ - m02985s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000173638 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10542220,PMID:14770311 + - gene_reaction_rule: "ENSG00000173638" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10542220,PMID:14770311" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TMNDNCCOAtx + - id: "TMNDNCCOAtx" - name: "Fatty Acid Intracellular Transport" - metabolites: !!omap - m00103c: -1 - m00103p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TMNDNCCRNt + - id: "TMNDNCCRNt" - name: "Transport into the Mitochondria (Carnitine)" - metabolites: !!omap - m00102c: -1 - m00102m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: Recon3D - - eccodes: 1.11.1.7 - - references: + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "Recon3D" + - eccodes: "1.11.1.7" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: TRDR2 + - id: "TRDR2" - name: "Thioredoxin (Ubiquinone 10) Reductase (NADPH)" - metabolites: !!omap - m02039c: -1 @@ -235985,15 +235985,15 @@ - m03103c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000198431 - - rxnFrom: Recon3D - - eccodes: 1.8.1.9 - - references: PMID:12435734,PMID:8577704,PMID:8999974 + - gene_reaction_rule: "ENSG00000198431" + - rxnFrom: "Recon3D" + - eccodes: "1.8.1.9" + - references: "PMID:12435734,PMID:8577704,PMID:8999974" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: TRDR3 + - id: "TRDR3" - name: "Thioredoxin (Ubiquinone 10) Reductase (NADH)" - metabolites: !!omap - m02039c: -1 @@ -236003,15 +236003,15 @@ - m03103c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000198431 - - rxnFrom: Recon3D - - eccodes: 1.8.1.9 - - references: PMID:12435734,PMID:8577704,PMID:8999974 + - gene_reaction_rule: "ENSG00000198431" + - rxnFrom: "Recon3D" + - eccodes: "1.8.1.9" + - references: "PMID:12435734,PMID:8577704,PMID:8999974" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: TREH + - id: "TREH" - name: "Alpha, Alpha-Trehalase" - metabolites: !!omap - m01965c: 2 @@ -236019,45 +236019,45 @@ - m03039c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000118094 or ENSG00000142102 - - rxnFrom: Recon3D - - eccodes: 3.2.1.28 - - references: + - gene_reaction_rule: "ENSG00000118094 or ENSG00000142102" + - rxnFrom: "Recon3D" + - eccodes: "3.2.1.28" + - references: "" - subsystem: - - Starch and sucrose metabolism + - "Starch and sucrose metabolism" - confidence_score: 0 - !!omap - - id: TTDCRNt + - id: "TTDCRNt" - name: "Transport into the Mitochondria (Carnitine)" - metabolites: !!omap - m02974c: -1 - m02974m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: Recon3D - - eccodes: 2.7.1.28 - - references: + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "Recon3D" + - eccodes: "2.7.1.28" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: TYRASE + - id: "TYRASE" - name: "Tyrosinase" - metabolites: !!omap - m01053c: -1 - melanin_c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107165 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:9434945 + - gene_reaction_rule: "ENSG00000107165" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:9434945" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: UDPDOLPT_L + - id: "UDPDOLPT_L" - name: "UDPglucose:Dolichyl-Phosphate Beta-D-Glucosyltransferase (Liver)" - metabolites: !!omap - m01731c: 1 @@ -236066,15 +236066,15 @@ - m03108c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120697 - - rxnFrom: Recon3D - - eccodes: 2.4.1.117 - - references: PMID:8280060 + - gene_reaction_rule: "ENSG00000120697" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.117" + - references: "PMID:8280060" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: UGT1A10r + - id: "UGT1A10r" - name: "UDP-Glucuronosyltransferase 1-10 Precursor, Microsomal" - metabolites: !!omap - m01396r: -1 @@ -236083,585 +236083,585 @@ - m03109r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000242366 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID:7945246 + - gene_reaction_rule: "ENSG00000242366" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID:7945246" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: VALt5m + - id: "VALt5m" - name: "Valine Reversible Mitochondrial Transport" - metabolites: !!omap - m03135c: -1 - m03135m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11004451 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11004451" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: VITD3tm + - id: "VITD3tm" - name: "Vitamin D3 Transport from Mitochondria" - metabolites: !!omap - m03142c: 1 - m03142m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: VITD3tm3 + - id: "VITD3tm3" - name: "Vitamin D3 Transport in Mitochondria" - metabolites: !!omap - m03142c: -1 - m03142m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: XOL27OHtm + - id: "XOL27OHtm" - name: "27 Hydroxy Cholesterol Transport" - metabolites: !!omap - m00623m: 1 - m00623r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: XOL7AH2tr + - id: "XOL7AH2tr" - name: "Lipid, Flip-Flop Intracellular Transport" - metabolites: !!omap - m01095c: -1 - m01095r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:12840657 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:12840657" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: XOLDIOLONEtm + - id: "XOLDIOLONEtm" - name: "Lipid, Flip-Flop Intracellular Transport" - metabolites: !!omap - m01178m: -1 - m01178r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:12840657 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:12840657" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: XOLEST2te + - id: "XOLEST2te" - name: "Cholesterol Ester Transporter" - metabolites: !!omap - m01451c: 1 - m01451s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:12840657 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:12840657" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: XOLESTte + - id: "XOLESTte" - name: "Cholesterol Ester Transporter" - metabolites: !!omap - xolest_hs_c: 1 - xolest_hs_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:12840657 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:12840657" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: XOLTRI24tc + - id: "XOLTRI24tc" - name: "24 Trihydroxy Cholesterol Transport" - metabolites: !!omap - m01446c: 1 - m01446r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 6.2.1.7 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.7" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: XOLTRI24te + - id: "XOLTRI24te" - name: "24 Trihydroxy Cholesterol Transport" - metabolites: !!omap - m01446c: -1 - m01446s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 6.2.1.7 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.7" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: XOLTRI25tc + - id: "XOLTRI25tc" - name: "25 Trihydroxy Cholesterol Transport" - metabolites: !!omap - m01447c: 1 - m01447r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 6.2.1.7 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.7" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: XOLTRI25te + - id: "XOLTRI25te" - name: "25 Trihydroxy Cholesterol Transport" - metabolites: !!omap - m01447c: -1 - m01447s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 6.2.1.7 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.7" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: XOLTRI27tc + - id: "XOLTRI27tc" - name: "27 Trihydroxy Cholesterol Transport" - metabolites: !!omap - m01448c: 1 - m01448r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: XOLTRI27te + - id: "XOLTRI27te" - name: "27 Trihydroxy Cholesterol Transport" - metabolites: !!omap - m01448c: -1 - m01448s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_4abutn[e] + - id: "EX_4abutn[e]" - name: "Exchange of 4-Ammoniobutanal" - metabolites: !!omap - m00969s: -1 - m00969x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_ahdt[e] + - id: "EX_ahdt[e]" - name: "Exchange of 7, 8-Dihydroneopterin 3-Triphosphate" - metabolites: !!omap - m01155s: -1 - m01155x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_ctp[e] + - id: "EX_ctp[e]" - name: "Exchange of CTP" - metabolites: !!omap - m01623s: -1 - m01623x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_dgmp[e] + - id: "EX_dgmp[e]" - name: "Exchange of dGMP" - metabolites: !!omap - m01686s: -1 - m01686x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_dgtp[e] + - id: "EX_dgtp[e]" - name: "Exchange of dGTP" - metabolites: !!omap - m01688s: -1 - m01688x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_dha[e] + - id: "EX_dha[e]" - name: "Exchange of Glycerone" - metabolites: !!omap - m01984s: -1 - m01984x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_dhap[e] + - id: "EX_dhap[e]" - name: "Exchange of Glycerone Phosphate" - metabolites: !!omap - m01690s: -1 - m01690x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_dtmp[e] + - id: "EX_dtmp[e]" - name: "Exchange of dTMP" - metabolites: !!omap - m01752s: -1 - m01752x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_dttp[e] + - id: "EX_dttp[e]" - name: "Exchange of dTTP" - metabolites: !!omap - m01753s: -1 - m01753x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_fad[e] + - id: "EX_fad[e]" - name: "Exchange of Flavin Adenine Dinucleotide Oxidized" - metabolites: !!omap - m01802s: -1 - m01802x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_fald[e] + - id: "EX_fald[e]" - name: "Exchange of Formaldehyde" - metabolites: !!omap - m01831s: -1 - m01831x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_g1p[e] + - id: "EX_g1p[e]" - name: "Exchange of Alpha-D-Glucose 1-Phosphate" - metabolites: !!omap - m01967s: -1 - m01967x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC00229[e] + - id: "EX_HC00229[e]" - name: "Exchange of Isomaltose" - metabolites: !!omap - m02185s: -1 - m02185x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC01440[e] + - id: "EX_HC01440[e]" - name: "Exchange of 3-Keto-Beta-D-Galactose" - metabolites: !!omap - m00810s: -1 - m00810x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC01441[e] + - id: "EX_HC01441[e]" - name: "Exchange of Lactose-6P" - metabolites: !!omap - m02333s: -1 - m02333x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC01446[e] + - id: "EX_HC01446[e]" - name: "Exchange of 3-Ketolactose" - metabolites: !!omap - m00812s: -1 - m00812x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC01577[e] + - id: "EX_HC01577[e]" - name: "Exchange of Gamma-Glutamyl-Beta-Cyanoalanine" - metabolites: !!omap - m01926s: -1 - m01926x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC01609[e] + - id: "EX_HC01609[e]" - name: "Exchange of Uroporphyrinogeni" - metabolites: !!omap - m03127s: -1 - m03127x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC01610[e] + - id: "EX_HC01610[e]" - name: "Exchange of Coproporphyrinogeni" - metabolites: !!omap - m01605s: -1 - m01605x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC01700[e] + - id: "EX_HC01700[e]" - name: "Exchange of Gamma-Glutamyl-3-Aminopropiononitrile" - metabolites: !!omap - m01925s: -1 - m01925x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC02160[e] + - id: "EX_HC02160[e]" - name: "Exchange of Gm2-Pool" - metabolites: !!omap - m02011s: -1 - m02011x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC02161[e] + - id: "EX_HC02161[e]" - name: "Exchange of Gm1-Pool" - metabolites: !!omap - m02008s: -1 - m02008x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_prpp[e] + - id: "EX_prpp[e]" - name: "Exchange of 5-O-Phosphonato-Alpha-D-Ribofuranosyl Diphosphate" - metabolites: !!omap - m02806s: -1 - m02806x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_udpg[e] + - id: "EX_udpg[e]" - name: "Exchange of [ (2R, 3S, 4R, 5R)-5- (2, 4-Dioxo-1, 2, 3, 4-Tetrahydropyrimidin-1-Yl)-3, 4-Dihydroxyoxolan-2-Yl]Methyl {[ (3R, 4S, 5S, 6R)-3, 4, 5-Trihydroxy-6- (Hydroxymethyl)Oxan-2-Yl Phosphonato]Oxy}Phosphonate" - metabolites: !!omap - m03108s: -1 - m03108x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: r0001 + - id: "r0001" - name: "Virtual Reaction/Potential Definition" - metabolites: !!omap - HC02119_c: 1 @@ -236669,15 +236669,15 @@ - m02870c: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: r0034 + - id: "r0034" - name: "Carbon-Dioxide:Ammonia Ligase (ADP-Forming, Carbamate-Phosphorylating) " - metabolites: !!omap - m01285m: 2 @@ -236690,15 +236690,15 @@ - m02751m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021826 - - rxnFrom: Recon3D - - eccodes: 6.3.4.16 - - references: PMID:15897806,PMID:175068,PMID:2893372,PMID:3886433,PMID:4347313,PMID:7248316 + - gene_reaction_rule: "ENSG00000021826" + - rxnFrom: "Recon3D" + - eccodes: "6.3.4.16" + - references: "PMID:15897806,PMID:175068,PMID:2893372,PMID:3886433,PMID:4347313,PMID:7248316" - subsystem: - - Urea cycle + - "Urea cycle" - confidence_score: 0 - !!omap - - id: r0093 + - id: "r0093" - name: "UDPglucose Pyrophosphohydrolase" - metabolites: !!omap - m01967s: 1 @@ -236708,15 +236708,15 @@ - m03114s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000154269 or ENSG00000197594 - - rxnFrom: Recon3D - - eccodes: 3.6.1.45 - - references: PMID:11579996,PMID:11946484,PMID:12429023,PMID:12846830,PMID:1315502,PMID:2822037,PMID:2848456,PMID:3001038,PMID:4403504,PMID:7532398,PMID:7860751,PMID:8001561 + - gene_reaction_rule: "ENSG00000154269 or ENSG00000197594" + - rxnFrom: "Recon3D" + - eccodes: "3.6.1.45" + - references: "PMID:11579996,PMID:11946484,PMID:12429023,PMID:12846830,PMID:1315502,PMID:2822037,PMID:2848456,PMID:3001038,PMID:4403504,PMID:7532398,PMID:7860751,PMID:8001561" - subsystem: - - Starch and sucrose metabolism + - "Starch and sucrose metabolism" - confidence_score: 0 - !!omap - - id: r0145 + - id: "r0145" - name: "L-Arginine, NADPH:Oxygen Oxidoreductase (Nitric-Oxide-Forming)" - metabolites: !!omap - m01365c: -1 @@ -236728,15 +236728,15 @@ - m02630c: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000007171 or ENSG00000089250 or ENSG00000164867 - - rxnFrom: Recon3D - - eccodes: 1.14.13.39 - - references: PMID:11125020,PMID:7515853 + - gene_reaction_rule: "ENSG00000007171 or ENSG00000089250 or ENSG00000164867" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.39" + - references: "PMID:11125020,PMID:7515853" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: r0170 + - id: "r0170" - name: "Farnesyl-Diphosphate:Farnesyl-Diphosphate Farnesyltransferase" - metabolites: !!omap - m01806r: -2 @@ -236744,15 +236744,15 @@ - m02764r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000079459 - - rxnFrom: Recon3D - - eccodes: 2.5.1.21 - - references: PMID:11108725,PMID:1527001,PMID:17180682,PMID:7864626,PMID:8509416 + - gene_reaction_rule: "ENSG00000079459" + - rxnFrom: "Recon3D" + - eccodes: "2.5.1.21" + - references: "PMID:11108725,PMID:1527001,PMID:17180682,PMID:7864626,PMID:8509416" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: r0193 + - id: "r0193" - name: "L-Cysteine L-Homocysteine-Lyase (Deaminating)" - metabolites: !!omap - m01628c: -1 @@ -236763,15 +236763,15 @@ - m02819c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116761 - - rxnFrom: Recon3D - - eccodes: 4.4.1.1 - - references: PMID:10212249,PMID:629532 + - gene_reaction_rule: "ENSG00000116761" + - rxnFrom: "Recon3D" + - eccodes: "4.4.1.1" + - references: "PMID:10212249,PMID:629532" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: r0309 + - id: "r0309" - name: "Trans-Hexadec-2-Enoyl Coenzyme A Reductase" - metabolites: !!omap - m00051m: 1 @@ -236781,15 +236781,15 @@ - m02678m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115425 or ENSG00000116353 - - rxnFrom: Recon3D - - eccodes: 1.3.1.38 - - references: PMID:12654921 + - gene_reaction_rule: "ENSG00000115425 or ENSG00000116353" + - rxnFrom: "Recon3D" + - eccodes: "1.3.1.38" + - references: "PMID:12654921" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: r0310 + - id: "r0310" - name: "Palmitoyl Coenzyme A:Oxygen 2-Oxidoreductase" - metabolites: !!omap - m00051m: 1 @@ -236798,15 +236798,15 @@ - m03103m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 or ENSG00000087008 or ENSG00000115361 or ENSG00000117054 or ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: 1.3.99.3 - - references: PMID:17603022,PMID:1774065,PMID:3597357,PMID:6240978,PMID:7876265 + - gene_reaction_rule: "ENSG00000072778 or ENSG00000087008 or ENSG00000115361 or ENSG00000117054 or ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "1.3.99.3" + - references: "PMID:17603022,PMID:1774065,PMID:3597357,PMID:6240978,PMID:7876265" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: r0403 + - id: "r0403" - name: "L-Tryptophan, Tetrahydrobiopterin:Oxygen Oxidoreductase (5-Hydroxylating)" - metabolites: !!omap - m01107c: 1 @@ -236817,15 +236817,15 @@ - m03089c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000129167 or ENSG00000139287 - - rxnFrom: Recon3D - - eccodes: 1.14.16.4 - - references: + - gene_reaction_rule: "ENSG00000129167 or ENSG00000139287" + - rxnFrom: "Recon3D" + - eccodes: "1.14.16.4" + - references: "" - subsystem: - - Biopterin metabolism + - "Biopterin metabolism" - confidence_score: 0 - !!omap - - id: r0410 + - id: "r0410" - name: "2-Deoxyguanosine 5-Triphosphate Pyrophosphohydrolase" - metabolites: !!omap - m01686s: 1 @@ -236835,15 +236835,15 @@ - m02759s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125877 - - rxnFrom: Recon3D - - eccodes: 3.6.1.19 - - references: PMID:15652174,PMID:16752921,PMID:17095758 + - gene_reaction_rule: "ENSG00000125877" + - rxnFrom: "Recon3D" + - eccodes: "3.6.1.19" + - references: "PMID:15652174,PMID:16752921,PMID:17095758" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: r0437 + - id: "r0437" - name: "Palmitoyl Coenzyme A:L-Carnitine O-Palmitoyltransferase" - metabolites: !!omap - m01597p: 1 @@ -236852,15 +236852,15 @@ - m02678p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 and ENSG00000157184 - - rxnFrom: Recon3D - - eccodes: 2.3.1.21 - - references: PMID:1735445,PMID:1988962,PMID:2355017,PMID:6361812,PMID:7892212 + - gene_reaction_rule: "ENSG00000110090 and ENSG00000157184" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.21" + - references: "PMID:1735445,PMID:1988962,PMID:2355017,PMID:6361812,PMID:7892212" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: r0440 + - id: "r0440" - name: "Palmitoyl Coenzyme A:L-Carnitine O-Palmitoyltransferase" - metabolites: !!omap - m01597p: 1 @@ -236869,15 +236869,15 @@ - m02391p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 and ENSG00000157184 - - rxnFrom: Recon3D - - eccodes: 2.3.1.21 - - references: PMID:1735445,PMID:1988962,PMID:2355017,PMID:6361812,PMID:7892212 + - gene_reaction_rule: "ENSG00000110090 and ENSG00000157184" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.21" + - references: "PMID:1735445,PMID:1988962,PMID:2355017,PMID:6361812,PMID:7892212" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: r0443 + - id: "r0443" - name: "Palmitoyl Coenzyme A:L-Carnitine O-Palmitoyltransferase" - metabolites: !!omap - m01363p: 1 @@ -236886,15 +236886,15 @@ - m02348p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 and ENSG00000157184 - - rxnFrom: Recon3D - - eccodes: 2.3.1.21 - - references: PMID:1735445,PMID:1988962,PMID:2355017,PMID:6361812,PMID:7892212 + - gene_reaction_rule: "ENSG00000110090 and ENSG00000157184" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.21" + - references: "PMID:1735445,PMID:1988962,PMID:2355017,PMID:6361812,PMID:7892212" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: r0494 + - id: "r0494" - name: "DTDP Diphosphohydrolase" - metabolites: !!omap - m01747s: -1 @@ -236904,15 +236904,15 @@ - m02751s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138185 or ENSG00000168032 or ENSG00000188833 - - rxnFrom: Recon3D - - eccodes: 3.6.1.5 - - references: PMID:15652174,PMID:16752921,PMID:17095758 + - gene_reaction_rule: "ENSG00000138185 or ENSG00000168032 or ENSG00000188833" + - rxnFrom: "Recon3D" + - eccodes: "3.6.1.5" + - references: "PMID:15652174,PMID:16752921,PMID:17095758" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: r0497 + - id: "r0497" - name: "DTTP Nucleotidohydrolase" - metabolites: !!omap - m01747s: 1 @@ -236922,15 +236922,15 @@ - m02751s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138185 or ENSG00000168032 or ENSG00000188833 - - rxnFrom: Recon3D - - eccodes: 3.6.1.39 - - references: PMID:1320895,PMID:6097526,PMID:6297538 + - gene_reaction_rule: "ENSG00000138185 or ENSG00000168032 or ENSG00000188833" + - rxnFrom: "Recon3D" + - eccodes: "3.6.1.39" + - references: "PMID:1320895,PMID:6097526,PMID:6297538" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: r0510 + - id: "r0510" - name: "Steroyl Coenzyme A, Hydrogen-Donor:Oxygen Oxidoreductase Polyunsaturated Fatty Acid Biosynthesis" - metabolites: !!omap - m01823c: 2 @@ -236942,15 +236942,15 @@ - m02678c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099194 or ENSG00000145284 - - rxnFrom: Recon3D - - eccodes: 1.14.19.1 - - references: PMID:15907797,PMID:17530838,PMID:18286258 + - gene_reaction_rule: "ENSG00000099194 or ENSG00000145284" + - rxnFrom: "Recon3D" + - eccodes: "1.14.19.1" + - references: "PMID:15907797,PMID:17530838,PMID:18286258" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: r0511 + - id: "r0511" - name: "Steroyl Coenzyme A, Hydrogen-Donor:Oxygen Oxidoreductase Polyunsaturated Fatty Acid Biosynthesis" - metabolites: !!omap - m01823c: 2 @@ -236962,15 +236962,15 @@ - m02941c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099194 or ENSG00000145284 - - rxnFrom: Recon3D - - eccodes: 1.14.19.1 - - references: PMID:15907797,PMID:17530838,PMID:18286258 + - gene_reaction_rule: "ENSG00000099194 or ENSG00000145284" + - rxnFrom: "Recon3D" + - eccodes: "1.14.19.1" + - references: "PMID:15907797,PMID:17530838,PMID:18286258" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: r0571 + - id: "r0571" - name: "(S)-Methylmalonyl Coenzyme A Hydrolase" - metabolites: !!omap - m01597m: 1 @@ -236980,15 +236980,15 @@ - m02480m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.2.17 - - references: PMID:3071714,PMID:6885824 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.2.17" + - references: "PMID:3071714,PMID:6885824" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: r0575 + - id: "r0575" - name: "Presqualene Diphosphate:Farnesyl-Diphosphate Farnesyltransferase" - metabolites: !!omap - m02039r: -1 @@ -236999,15 +236999,15 @@ - m02933r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000079459 - - rxnFrom: Recon3D - - eccodes: 2.5.1.21 - - references: PMID:10449533,PMID:1527001,PMID:7864626,PMID:8509416 + - gene_reaction_rule: "ENSG00000079459" + - rxnFrom: "Recon3D" + - eccodes: "2.5.1.21" + - references: "PMID:10449533,PMID:1527001,PMID:7864626,PMID:8509416" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: r0626 + - id: "r0626" - name: "5Beta-Cholestane-3Alpha, 7Alpha, 12Alpha, 26-Tetraol:NAD+ 26-Oxidoreductase Bile Acid Biosynthesis" - metabolites: !!omap - m00750c: 1 @@ -237016,15 +237016,15 @@ - m02553c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.1.1.161 - - references: PMID:1591235,PMID:6338006 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.161" + - references: "PMID:1591235,PMID:6338006" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: r0633 + - id: "r0633" - name: "Trans-Oct-2-Enoyl Coenzyme A Reductase" - metabolites: !!omap - m00059m: 1 @@ -237034,15 +237034,15 @@ - m02644m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115425 or ENSG00000116353 - - rxnFrom: Recon3D - - eccodes: 1.3.1.38 - - references: PMID:12654921 + - gene_reaction_rule: "ENSG00000115425 or ENSG00000116353" + - rxnFrom: "Recon3D" + - eccodes: "1.3.1.38" + - references: "PMID:12654921" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: r0638 + - id: "r0638" - name: "Trans-Dodec-2-Enoyl Coenzyme A Reductase" - metabolites: !!omap - m00042m: 1 @@ -237052,15 +237052,15 @@ - m02555m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115425 or ENSG00000116353 - - rxnFrom: Recon3D - - eccodes: 1.3.1.38 - - references: PMID:12654921 + - gene_reaction_rule: "ENSG00000115425 or ENSG00000116353" + - rxnFrom: "Recon3D" + - eccodes: "1.3.1.38" + - references: "PMID:12654921" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: r0652 + - id: "r0652" - name: "Trans-Tetradec-2-Enoyl Coenzyme A Reductase" - metabolites: !!omap - m00066m: 1 @@ -237070,15 +237070,15 @@ - m02555m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115425 or ENSG00000116353 - - rxnFrom: Recon3D - - eccodes: 1.3.1.38 - - references: PMID:12654921 + - gene_reaction_rule: "ENSG00000115425 or ENSG00000116353" + - rxnFrom: "Recon3D" + - eccodes: "1.3.1.38" + - references: "PMID:12654921" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: r0672 + - id: "r0672" - name: "Cholest-5-Ene-3Beta, 7Alpha-Diol:NAD+ 3-Oxidoreductase Bile Acid Biosynthesis" - metabolites: !!omap - m00619r: -1 @@ -237088,15 +237088,15 @@ - m02555r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099377 - - rxnFrom: Recon3D - - eccodes: 1.1.1.181 - - references: PMID:12679481 + - gene_reaction_rule: "ENSG00000099377" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.181" + - references: "PMID:12679481" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: r0698 + - id: "r0698" - name: "Propanoyl Coenzyme A:Acetyl Coenzyme A C-Acyltransferase Bile Acid Biosynthesis" - metabolites: !!omap - m00614p: 1 @@ -237107,15 +237107,15 @@ - m02774p: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: (ENSG00000138029 and ENSG00000167315) or (ENSG00000060971 and ENSG00000138029) - - rxnFrom: Recon3D - - eccodes: 2.3.1.16 - - references: PMID:1121274,PMID:12543708,PMID:3746130,PMID:6378901 + - gene_reaction_rule: "(ENSG00000138029 and ENSG00000167315) or (ENSG00000060971 and ENSG00000138029)" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.16" + - references: "PMID:1121274,PMID:12543708,PMID:3746130,PMID:6378901" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: r0701 + - id: "r0701" - name: " (3R)-3-Hydroxytetradecanoyl-[Acyl-Carrier-Protein]:NADP+ Oxidoreductase Fatty Acid Biosynthesis" - metabolites: !!omap - m00905c: 1 @@ -237125,15 +237125,15 @@ - m02555c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: Recon3D - - eccodes: 2.3.1.85 - - references: PMID:11750882,PMID:4452359,PMID:6137188,PMID:7567999,PMID:7834997,PMID:8962082 + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.85" + - references: "PMID:11750882,PMID:4452359,PMID:6137188,PMID:7567999,PMID:7834997,PMID:8962082" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: r0707 + - id: "r0707" - name: "2-Amino-4-Hydroxy-6- (Erythro-1, 2, 3-Trihydroxypropyl) Dihydropteridine Triphosphate Phosphohydrolase (Alkaline Optimum)" - metabolites: !!omap - m01155s: -1 @@ -237143,15 +237143,15 @@ - m02751s: 3 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162551 - - rxnFrom: Recon3D - - eccodes: 3.1.3.1 - - references: PMID:1730777 + - gene_reaction_rule: "ENSG00000162551" + - rxnFrom: "Recon3D" + - eccodes: "3.1.3.1" + - references: "PMID:1730777" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: r0735 + - id: "r0735" - name: "Trans-Dec-2-Enoyl Coenzyme A Reductase" - metabolites: !!omap - m00039m: 1 @@ -237161,15 +237161,15 @@ - m02555m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115425 or ENSG00000116353 - - rxnFrom: Recon3D - - eccodes: 1.3.1.38 - - references: PMID:12654921 + - gene_reaction_rule: "ENSG00000115425 or ENSG00000116353" + - rxnFrom: "Recon3D" + - eccodes: "1.3.1.38" + - references: "PMID:12654921" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: r0752 + - id: "r0752" - name: "3, 4-Dihydroxymandelaldehyde:NAD+ Oxidoreductase Tyrosine Metabolism" - metabolites: !!omap - m00726m: -1 @@ -237180,15 +237180,15 @@ - m02553m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254 - - rxnFrom: Recon3D - - eccodes: 1.2.1.5 - - references: PMID:10424772,PMID:11958479,PMID:3466164 + - gene_reaction_rule: "ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254" + - rxnFrom: "Recon3D" + - eccodes: "1.2.1.5" + - references: "PMID:10424772,PMID:11958479,PMID:3466164" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: r0753 + - id: "r0753" - name: "3, 4-Dihydroxymandelaldehyde:NADP+ Oxidoreductase Tyrosine Metabolism" - metabolites: !!omap - m00726m: -1 @@ -237199,15 +237199,15 @@ - m02555m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254 - - rxnFrom: Recon3D - - eccodes: 1.2.1.5 - - references: PMID:11790142,PMID:12604221 + - gene_reaction_rule: "ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254" + - rxnFrom: "Recon3D" + - eccodes: "1.2.1.5" + - references: "PMID:11790142,PMID:12604221" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: r0754 + - id: "r0754" - name: "3-Methoxy-4-Hydroxyphenylacetaldehyde:NAD+ Oxidoreductase Tyrosine Metabolism" - metabolites: !!omap - m00818m: -1 @@ -237218,15 +237218,15 @@ - m02553m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254 - - rxnFrom: Recon3D - - eccodes: 1.2.1.5 - - references: PMID:17379813,PMID:18621017 + - gene_reaction_rule: "ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254" + - rxnFrom: "Recon3D" + - eccodes: "1.2.1.5" + - references: "PMID:17379813,PMID:18621017" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: r0755 + - id: "r0755" - name: "3-Methoxy-4-Hydroxyphenylacetaldehyde:NADP+ Oxidoreductase Tyrosine Metabolism" - metabolites: !!omap - m00818m: -1 @@ -237237,15 +237237,15 @@ - m02555m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254 - - rxnFrom: Recon3D - - eccodes: 1.2.1.5 - - references: PMID:1898068 + - gene_reaction_rule: "ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254" + - rxnFrom: "Recon3D" + - eccodes: "1.2.1.5" + - references: "PMID:1898068" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: r0756 + - id: "r0756" - name: "3-Methoxy-4-Hydroxyphenylglycolaldehyde:NAD+ Oxidoreductase Tyrosine Metabolism" - metabolites: !!omap - m00820m: -1 @@ -237256,15 +237256,15 @@ - m03136m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254 - - rxnFrom: Recon3D - - eccodes: 1.2.1.5 - - references: PMID:17379813,PMID:18621017 + - gene_reaction_rule: "ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254" + - rxnFrom: "Recon3D" + - eccodes: "1.2.1.5" + - references: "PMID:17379813,PMID:18621017" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: r0757 + - id: "r0757" - name: "3-Methoxy-4-Hydroxyphenylglycolaldehyde:NADP+ Oxidoreductase Tyrosine Metabolism" - metabolites: !!omap - m00820m: -1 @@ -237275,15 +237275,15 @@ - m03136m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254 - - rxnFrom: Recon3D - - eccodes: 1.2.1.5 - - references: PMID:17379813,PMID:18621017 + - gene_reaction_rule: "ENSG00000006534 or ENSG00000108602 or ENSG00000132746 or ENSG00000184254" + - rxnFrom: "Recon3D" + - eccodes: "1.2.1.5" + - references: "PMID:17379813,PMID:18621017" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: r0774 + - id: "r0774" - name: "Uroporphyrinogen I Carboxy-Lyase" - metabolites: !!omap - m01596s: 4 @@ -237292,15 +237292,15 @@ - m03127s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000126088 - - rxnFrom: Recon3D - - eccodes: 4.1.1.37 - - references: PMID:17360334 + - gene_reaction_rule: "ENSG00000126088" + - rxnFrom: "Recon3D" + - eccodes: "4.1.1.37" + - references: "PMID:17360334" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: r0780 + - id: "r0780" - name: "4, 4-Dimethyl-5A-Cholesta-8, 24-Dien-3B-Ol:NADP+ D14-Oxidoreductase" - metabolites: !!omap - m00367r: -1 @@ -237310,15 +237310,15 @@ - m02555r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149809 - - rxnFrom: Recon3D - - eccodes: 1.3.1.70 - - references: PMID:11969204,PMID:7946524 + - gene_reaction_rule: "ENSG00000149809" + - rxnFrom: "Recon3D" + - eccodes: "1.3.1.70" + - references: "PMID:11969204,PMID:7946524" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: r0781 + - id: "r0781" - name: "Lanosterol, NADPH:Oxygen Oxidoreductase (14-Methyl Cleaving)" - metabolites: !!omap - m00941r: 1 @@ -237331,15 +237331,15 @@ - m02630r: -3 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000001630 - - rxnFrom: Recon3D - - eccodes: 1.14.13.70 - - references: PMID:11969204,PMID:7946524 + - gene_reaction_rule: "ENSG00000001630" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.70" + - references: "PMID:11969204,PMID:7946524" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: r0783 + - id: "r0783" - name: "Lanosterol D24-Reductase" - metabolites: !!omap - m01066r: 1 @@ -237349,15 +237349,15 @@ - m02555r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116133 - - rxnFrom: Recon3D - - eccodes: 1.3.1.72 - - references: PMID:7946524 + - gene_reaction_rule: "ENSG00000116133" + - rxnFrom: "Recon3D" + - eccodes: "1.3.1.72" + - references: "PMID:7946524" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: r0791 + - id: "r0791" - name: "Trans-Hex-2-Enoyl Coenzyme A Reductase" - metabolites: !!omap - m00053m: -1 @@ -237367,15 +237367,15 @@ - m02555m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115425 or ENSG00000116353 - - rxnFrom: Recon3D - - eccodes: 1.3.1.38 - - references: PMID:12654921 + - gene_reaction_rule: "ENSG00000115425 or ENSG00000116353" + - rxnFrom: "Recon3D" + - eccodes: "1.3.1.38" + - references: "PMID:12654921" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: r0913 + - id: "r0913" - name: "Mitochondrial Carrier (Mc) Tcdb:2.A.29.7.2" - metabolites: !!omap - m02183c: 1 @@ -237384,15 +237384,15 @@ - m02439m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100075 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:14598172,PMID:16919238,PMID:17173541,PMID:18406340,PMID:8132483 + - gene_reaction_rule: "ENSG00000100075" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:14598172,PMID:16919238,PMID:17173541,PMID:18406340,PMID:8132483" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r0915 + - id: "r0915" - name: "Mitochondrial Carrier (Mc) Tcdb:2.A.29.7.2" - metabolites: !!omap - m01587c: -1 @@ -237401,15 +237401,15 @@ - m02943m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100075 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:14598172,PMID:16919238,PMID:17173541,PMID:18406340,PMID:8132483 + - gene_reaction_rule: "ENSG00000100075" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:14598172,PMID:16919238,PMID:17173541,PMID:18406340,PMID:8132483" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r0924 + - id: "r0924" - name: "ATP-Binding Cassette (ABC) Tcdb:3.A.1.204.5" - metabolites: !!omap - m01285r: 1 @@ -237421,75 +237421,75 @@ - m02751r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138075 and ENSG00000143921 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:15209530 + - gene_reaction_rule: "ENSG00000138075 and ENSG00000143921" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:15209530" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r0927 + - id: "r0927" - name: "Free Diffusion" - metabolites: !!omap - m01256m: -1 - m01256s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:4358819 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:4358819" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r0931 + - id: "r0931" - name: "Transport Reaction" - metabolites: !!omap - m01362l: -1 - m01362r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11023036,PMID:12739169,PMID:12856180,PMID:12883891,PMID:1554704,PMID:18021224,PMID:4553030,PMID:793184,PMID:8725559,PMID:8781017 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11023036,PMID:12739169,PMID:12856180,PMID:12883891,PMID:1554704,PMID:18021224,PMID:4553030,PMID:793184,PMID:8725559,PMID:8781017" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r0936 + - id: "r0936" - name: "Transport Reaction" - metabolites: !!omap - m02674l: -1 - m02674r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11023036,PMID:12739169,PMID:12856180,PMID:12883891,PMID:1554704,PMID:18021224,PMID:4553030,PMID:793184,PMID:8725559,PMID:8781017 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11023036,PMID:12739169,PMID:12856180,PMID:12883891,PMID:1554704,PMID:18021224,PMID:4553030,PMID:793184,PMID:8725559,PMID:8781017" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r0941 + - id: "r0941" - name: "Free Diffusion" - metabolites: !!omap - m02046c: -1 - m02046m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:911815 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:911815" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r0946 + - id: "r0946" - name: "Amino Acid-Polyamine-Organocation (Apc) Tcdb:2.A.3.8.15" - metabolites: !!omap - m01588c: -1 @@ -237498,15 +237498,15 @@ - m02658s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:14770309,PMID:14770310 + - gene_reaction_rule: "ENSG00000021488" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:14770309,PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r0947 + - id: "r0947" - name: "Mitochondrial Carrier (Mc) Tcdb:2.A.29.19.1" - metabolites: !!omap - m01588c: -1 @@ -237515,75 +237515,75 @@ - m02658m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120329 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:14770309,PMID:14770310 + - gene_reaction_rule: "ENSG00000120329" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:14770309,PMID:14770310" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r0983 + - id: "r0983" - name: "Solute Carrier Family 27 (Fatty Acid Transporter), Member 5 Tcdb:4.C.1.1.5 Tcdb:4.C.1.1.8" - metabolites: !!omap - m02939l: -1 - m02939r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000083807 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11023036,PMID:12739169,PMID:12856180,PMID:12883891,PMID:1554704,PMID:18021224,PMID:4553030,PMID:793184,PMID:8725559,PMID:8781017 + - gene_reaction_rule: "ENSG00000083807" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11023036,PMID:12739169,PMID:12856180,PMID:12883891,PMID:1554704,PMID:18021224,PMID:4553030,PMID:793184,PMID:8725559,PMID:8781017" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r0986 + - id: "r0986" - name: "Vesicular Transport" - metabolites: !!omap - m02387l: -1 - m02387r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11023036,PMID:12739169,PMID:12856180,PMID:12883891,PMID:1554704,PMID:18021224,PMID:4553030,PMID:793184,PMID:8725559,PMID:8781017 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11023036,PMID:12739169,PMID:12856180,PMID:12883891,PMID:1554704,PMID:18021224,PMID:4553030,PMID:793184,PMID:8725559,PMID:8781017" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r0988 + - id: "r0988" - name: "Postulated Transport Reaction" - metabolites: !!omap - m02336p: 1 - m02336r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11023036,PMID:12739169,PMID:12856180,PMID:12883891,PMID:1554704,PMID:18021224,PMID:4553030,PMID:793184,PMID:8725559,PMID:8781017 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11023036,PMID:12739169,PMID:12856180,PMID:12883891,PMID:1554704,PMID:18021224,PMID:4553030,PMID:793184,PMID:8725559,PMID:8781017" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r0989 + - id: "r0989" - name: "Postulated Transport Reaction" - metabolites: !!omap - m01514c: 1 - m01514r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10884298,PMID:6469982 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10884298,PMID:6469982" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r0993 + - id: "r0993" - name: "ATP-Binding Cassette (ABC) Tcdb:3.A.1.208.2" - metabolites: !!omap - C02528_c: -1 @@ -237595,30 +237595,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:14716480,PMID:15209530,PMID:15297262 + - gene_reaction_rule: "ENSG00000023839" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:14716480,PMID:15209530,PMID:15297262" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r0994 + - id: "r0994" - name: "Facilitated Diffusion" - metabolites: !!omap - C02528_c: -1 - C02528_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:15975683 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:15975683" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r0999 + - id: "r0999" - name: "Facilitated Diffusion" - metabolites: !!omap - m02348c: -1 @@ -237627,15 +237627,15 @@ - m02411p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:14598172,PMID:1735445,PMID:18406340,PMID:1988962,PMID:2351134,PMID:2355017,PMID:6361812,PMID:7892212,PMID:8132483 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:14598172,PMID:1735445,PMID:18406340,PMID:1988962,PMID:2351134,PMID:2355017,PMID:6361812,PMID:7892212,PMID:8132483" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r1003 + - id: "r1003" - name: "Facilitated Diffusion" - metabolites: !!omap - m02348c: -1 @@ -237644,15 +237644,15 @@ - m02388p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:14598172,PMID:1735445,PMID:18406340,PMID:1988962,PMID:2351134,PMID:2355017,PMID:6361812,PMID:7892212,PMID:8132483 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:14598172,PMID:1735445,PMID:18406340,PMID:1988962,PMID:2351134,PMID:2355017,PMID:6361812,PMID:7892212,PMID:8132483" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r1008 + - id: "r1008" - name: "Facilitated Diffusion" - metabolites: !!omap - m01363c: 1 @@ -237661,15 +237661,15 @@ - m02348p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:14598172,PMID:1735445,PMID:18406340,PMID:1988962,PMID:2351134,PMID:2355017,PMID:6361812,PMID:7892212,PMID:8132483 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:14598172,PMID:1735445,PMID:18406340,PMID:1988962,PMID:2351134,PMID:2355017,PMID:6361812,PMID:7892212,PMID:8132483" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r1012 + - id: "r1012" - name: "Postulated Transport Reaction" - metabolites: !!omap - m00614p: 1 @@ -237681,15 +237681,15 @@ - m02751r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:12543708,PMID:17034878 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:12543708,PMID:17034878" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r1014 + - id: "r1014" - name: "Postulated Transport Reaction" - metabolites: !!omap - m00616p: 1 @@ -237701,15 +237701,15 @@ - m02751r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:12543708,PMID:17034878 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:12543708,PMID:17034878" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r1017 + - id: "r1017" - name: "Vesicular Transport" - metabolites: !!omap - m01285p: 1 @@ -237721,30 +237721,30 @@ - m02963s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:12663868,PMID:14716480,PMID:15209530,PMID:15297262,PMID:1599411,PMID:17416343,PMID:9068608 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:12663868,PMID:14716480,PMID:15209530,PMID:15297262,PMID:1599411,PMID:17416343,PMID:9068608" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r1021 + - id: "r1021" - name: "Postulated Transport Reaction" - metabolites: !!omap - m00755c: 1 - m00755m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10884298,PMID:6469982 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10884298,PMID:6469982" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r1024 + - id: "r1024" - name: "Active Transport" - metabolites: !!omap - m01182c: 1 @@ -237756,15 +237756,15 @@ - m02751r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:12543708 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:12543708" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r1029 + - id: "r1029" - name: "Vesicular Transport" - metabolites: !!omap - m01285p: 1 @@ -237776,30 +237776,30 @@ - m02962s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:15297262,PMID:17416343 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:15297262,PMID:17416343" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r1078 + - id: "r1078" - name: "Vesicular Transport" - metabolites: !!omap - m03101c: -1 - m03101m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10049700,PMID:10574970,PMID:11389679,PMID:11557028,PMID:11564694,PMID:12824232,PMID:12930836,PMID:14574404,PMID:16288981,PMID:911815 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10049700,PMID:10574970,PMID:11389679,PMID:11557028,PMID:11564694,PMID:12824232,PMID:12930836,PMID:14574404,PMID:16288981,PMID:911815" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r1134 + - id: "r1134" - name: "Methylsterol Monooxygenase" - metabolites: !!omap - m00367r: -1 @@ -237811,15 +237811,15 @@ - m02630r: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.14.13.72 - - references: PMID:14653780,PMID:6299366,PMID:7430141 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.72" + - references: "PMID:14653780,PMID:6299366,PMID:7430141" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: r1135 + - id: "r1135" - name: "Hydroxysteroid (17-Beta) Dehydrogenase 7" - metabolites: !!omap - m00809r: -1 @@ -237829,15 +237829,15 @@ - m02555r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000132196 - - rxnFrom: Recon3D - - eccodes: 1.1.1.270 - - references: PMID:10544267,PMID:12732193,PMID:12829805 + - gene_reaction_rule: "ENSG00000132196" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.270" + - references: "PMID:10544267,PMID:12732193,PMID:12829805" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: r1146 + - id: "r1146" - name: "Biosynthesis of Steroids Enzyme Catalyzed" - metabolites: !!omap - m00968r: -1 @@ -237847,15 +237847,15 @@ - m03158r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11108725 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11108725" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: r1147 + - id: "r1147" - name: "Mitochondrial Carrier (Mc) Tcdb:2.A.29.7.2" - metabolites: !!omap - m01306c: -1 @@ -237864,15 +237864,15 @@ - m02183m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100075 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:14598172,PMID:16919238,PMID:17173541,PMID:18406340,PMID:8132483 + - gene_reaction_rule: "ENSG00000100075" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:14598172,PMID:16919238,PMID:17173541,PMID:18406340,PMID:8132483" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r1162 + - id: "r1162" - name: "Active Transport" - metabolites: !!omap - m01285c: 1 @@ -237884,15 +237884,15 @@ - m02946s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 4.1.3.6 - - references: PMID:15297262 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "4.1.3.6" + - references: "PMID:15297262" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r1165 + - id: "r1165" - name: "Sterol O-Acyltransferase" - metabolites: !!omap - m00051r: -1 @@ -237901,15 +237901,15 @@ - m01597r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: Recon3D - - eccodes: 2.3.1.26 - - references: PMID:2760547,PMID:7822296,PMID:9242919 + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.26" + - references: "PMID:2760547,PMID:7822296,PMID:9242919" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: r1169 + - id: "r1169" - name: "Sterol O-Acyltransferase" - metabolites: !!omap - m01450r: -1 @@ -237918,15 +237918,15 @@ - m01934r: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: Recon3D - - eccodes: 2.3.1.26 - - references: PMID:2760547,PMID:7822296,PMID:9242919 + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.26" + - references: "PMID:2760547,PMID:7822296,PMID:9242919" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: r1186 + - id: "r1186" - name: "Glycerol-3-Phosphate 1-O-Acyltransferase" - metabolites: !!omap - m00051c: -1 @@ -237935,15 +237935,15 @@ - m02914c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138678 or ENSG00000158669 - - rxnFrom: Recon3D - - eccodes: 2.3.1.15 - - references: PMID:12573444,PMID:17170135,PMID:17389595 + - gene_reaction_rule: "ENSG00000138678 or ENSG00000158669" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.15" + - references: "PMID:12573444,PMID:17170135,PMID:17389595" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: r1251 + - id: "r1251" - name: "Long-Chain-Fatty-Acid---Coa Ligase" - metabolites: !!omap - m00051r: 1 @@ -237954,15 +237954,15 @@ - m02759r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 - - rxnFrom: Recon3D - - eccodes: 6.2.1.3 - - references: PMID:8584017 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.3" + - references: "PMID:8584017" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: r1252 + - id: "r1252" - name: "Long-Chain-Fatty-Acid---Coa Ligase" - metabolites: !!omap - m00051c: 1 @@ -237973,15 +237973,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 - - rxnFrom: Recon3D - - eccodes: 6.2.1.3 - - references: PMID:8584017 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.3" + - references: "PMID:8584017" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: r1253 + - id: "r1253" - name: "Long-Chain-Fatty-Acid---Coa Ligase" - metabolites: !!omap - m01334r: 1 @@ -237993,15 +237993,15 @@ - m02941r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 - - rxnFrom: Recon3D - - eccodes: 6.2.1.3 - - references: PMID:8584017 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.3" + - references: "PMID:8584017" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: r1254 + - id: "r1254" - name: "Long-Chain-Fatty-Acid---Coa Ligase" - metabolites: !!omap - m01334c: 1 @@ -238012,15 +238012,15 @@ - m02941c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000068366 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 - - rxnFrom: Recon3D - - eccodes: 6.2.1.3 - - references: PMID:8584017 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.3" + - references: "PMID:8584017" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: r1259 + - id: "r1259" - name: "Long-Chain-Fatty-Acid---Coa Ligase" - metabolites: !!omap - m01334r: 1 @@ -238031,60 +238031,60 @@ - m02759r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 - - rxnFrom: Recon3D - - eccodes: 6.2.1.3 - - references: PMID:8584017 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000123983 or ENSG00000130377 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.3" + - references: "PMID:8584017" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: r1298 + - id: "r1298" - name: "Vesicular Transport" - metabolites: !!omap - m01932l: -1 - m01932r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.13 - - references: PMID:11023036,PMID:12739169,PMID:12856180,PMID:12883891,PMID:1554704,PMID:18021224,PMID:4553030,PMID:793184,PMID:8725559,PMID:8781017 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.13" + - references: "PMID:11023036,PMID:12739169,PMID:12856180,PMID:12883891,PMID:1554704,PMID:18021224,PMID:4553030,PMID:793184,PMID:8725559,PMID:8781017" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r1301 + - id: "r1301" - name: "Vesicular Transport" - metabolites: !!omap - m02646l: -1 - m02646r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.13 - - references: PMID:11023036,PMID:12739169,PMID:12856180,PMID:12883891,PMID:1554704,PMID:18021224,PMID:4553030,PMID:793184,PMID:8725559,PMID:8781017 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.13" + - references: "PMID:11023036,PMID:12739169,PMID:12856180,PMID:12883891,PMID:1554704,PMID:18021224,PMID:4553030,PMID:793184,PMID:8725559,PMID:8781017" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r1303 + - id: "r1303" - name: "Vesicular Transport" - metabolites: !!omap - m02675l: -1 - m02675r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.13 - - references: PMID:11023036,PMID:12739169,PMID:12856180,PMID:12883891,PMID:1554704,PMID:18021224,PMID:4553030,PMID:793184,PMID:8725559,PMID:8781017 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.13" + - references: "PMID:11023036,PMID:12739169,PMID:12856180,PMID:12883891,PMID:1554704,PMID:18021224,PMID:4553030,PMID:793184,PMID:8725559,PMID:8781017" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r1313 + - id: "r1313" - name: "3-Oxoacyl-Acp Synthase, Mitochondrial Polyunsaturated Fatty Acid Biosynthesis" - metabolites: !!omap - HC02097_c: 1 @@ -238095,15 +238095,15 @@ - m02442c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151093 - - rxnFrom: Recon3D - - eccodes: 2.3.1.85 - - references: PMID:11750882,PMID:4452359,PMID:6137188,PMID:7567999,PMID:7834997,PMID:8962082 + - gene_reaction_rule: "ENSG00000151093" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.85" + - references: "PMID:11750882,PMID:4452359,PMID:6137188,PMID:7567999,PMID:7834997,PMID:8962082" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: r1314 + - id: "r1314" - name: "Fatty Acid Synthase Polyunsaturated Fatty Acid Biosynthesis" - metabolites: !!omap - HC02097_c: -1 @@ -238113,15 +238113,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: Recon3D - - eccodes: 2.3.1.85 - - references: PMID:11750882,PMID:4452359,PMID:6137188,PMID:7567999,PMID:7834997,PMID:8962082 + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.85" + - references: "PMID:11750882,PMID:4452359,PMID:6137188,PMID:7567999,PMID:7834997,PMID:8962082" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: r1315 + - id: "r1315" - name: "Fatty Acid Synthase Polyunsaturated Fatty Acid Biosynthesis" - metabolites: !!omap - HC02098_c: -1 @@ -238129,15 +238129,15 @@ - m02040c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: Recon3D - - eccodes: 2.3.1.85 - - references: PMID:7567999 + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.85" + - references: "PMID:7567999" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: r1316 + - id: "r1316" - name: "Fatty Acid Synthase Polyunsaturated Fatty Acid Biosynthesis" - metabolites: !!omap - HC01988_c: 1 @@ -238147,15 +238147,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169710 - - rxnFrom: Recon3D - - eccodes: 2.3.1.85 - - references: PMID:7567999 + - gene_reaction_rule: "ENSG00000169710" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.85" + - references: "PMID:7567999" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: r1317 + - id: "r1317" - name: "Oleoyl-Acp Hydrolase" - metabolites: !!omap - HC01988_c: -1 @@ -238165,30 +238165,30 @@ - m02938c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000152463 - - rxnFrom: Recon3D - - eccodes: 2.3.1.85 - - references: PMID:7567999 + - gene_reaction_rule: "ENSG00000152463" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.85" + - references: "PMID:7567999" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: r1318 + - id: "r1318" - name: "Transport Reaction" - metabolites: !!omap - m02391c: -1 - m02391r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.3.1.15 - - references: PMID:17466261 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.15" + - references: "PMID:17466261" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r1319 + - id: "r1319" - name: "Virtual ReactionPotential Definition" - metabolites: !!omap - HC02111_c: 1 @@ -238198,15 +238198,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 6.2.1.3 - - references: PMID:17466261 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.3" + - references: "PMID:17466261" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: r1320 + - id: "r1320" - name: "Virtual ReactionPotential Definition" - metabolites: !!omap - HC02111_m: 1 @@ -238216,15 +238216,15 @@ - m02751m: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 6.2.1.3 - - references: PMID:17466261 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.3" + - references: "PMID:17466261" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: r1321 + - id: "r1321" - name: "Virtual ReactionPotential Definition" - metabolites: !!omap - HC02112_r: 1 @@ -238232,15 +238232,15 @@ - m02553r: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 6.2.1.3 - - references: PMID:17466261 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.3" + - references: "PMID:17466261" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: r1322 + - id: "r1322" - name: "Virtual ReactionPotential Definition" - metabolites: !!omap - HC02112_c: 1 @@ -238248,15 +238248,15 @@ - m02553c: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 6.2.1.3 - - references: PMID:17466261 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.3" + - references: "PMID:17466261" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: r1323 + - id: "r1323" - name: "Virtual ReactionPotential Definition" - metabolites: !!omap - HC02112_m: 1 @@ -238264,15 +238264,15 @@ - m02553m: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 6.2.1.3 - - references: PMID:17466261 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.3" + - references: "PMID:17466261" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: r1324 + - id: "r1324" - name: "Virtual ReactionPotential Definition" - metabolites: !!omap - HC02112_p: 1 @@ -238280,15 +238280,15 @@ - m02553p: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 6.2.1.3 - - references: PMID:17466261 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.3" + - references: "PMID:17466261" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: r1325 + - id: "r1325" - name: "Virtual ReactionPotential Definition" - metabolites: !!omap - HC02113_r: 1 @@ -238296,15 +238296,15 @@ - m02555r: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 6.2.1.3 - - references: PMID:17466261 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.3" + - references: "PMID:17466261" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: r1326 + - id: "r1326" - name: "Virtual ReactionPotential Definition" - metabolites: !!omap - HC02113_c: 1 @@ -238312,15 +238312,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 6.2.1.3 - - references: PMID:17466261 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.3" + - references: "PMID:17466261" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: r1327 + - id: "r1327" - name: "Virtual ReactionPotential Definition" - metabolites: !!omap - HC02113_m: 1 @@ -238328,15 +238328,15 @@ - m02555m: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 6.2.1.3 - - references: PMID:17466261 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.3" + - references: "PMID:17466261" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: r1328 + - id: "r1328" - name: "Virtual ReactionPotential Definition" - metabolites: !!omap - HC02113_p: 1 @@ -238344,15 +238344,15 @@ - m02555p: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 6.2.1.3 - - references: PMID:17466261 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.3" + - references: "PMID:17466261" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: r1329 + - id: "r1329" - name: "Virtual ReactionPotential Definition" - metabolites: !!omap - HC02114_c: 1 @@ -238360,15 +238360,15 @@ - m01803c: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 6.2.1.3 - - references: PMID:17466261 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.3" + - references: "PMID:17466261" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: r1330 + - id: "r1330" - name: "Virtual ReactionPotential Definition" - metabolites: !!omap - HC02115_m: 1 @@ -238376,15 +238376,15 @@ - m02039m: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 6.2.1.3 - - references: PMID:17466261 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.3" + - references: "PMID:17466261" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: r1331 + - id: "r1331" - name: "Virtual ReactionPotential Definition" - metabolites: !!omap - HC02115_c: 1 @@ -238392,45 +238392,45 @@ - m02039s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:17466261 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:17466261" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: r1364 + - id: "r1364" - name: "Vesicular Transport" - metabolites: !!omap - m02389l: -1 - m02389r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11023036,PMID:12739169,PMID:12856180,PMID:12883891,PMID:1554704,PMID:18021224,PMID:4553030,PMID:793184,PMID:8725559,PMID:8781017 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11023036,PMID:12739169,PMID:12856180,PMID:12883891,PMID:1554704,PMID:18021224,PMID:4553030,PMID:793184,PMID:8725559,PMID:8781017" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r1367 + - id: "r1367" - name: "Vesicular Transport" - metabolites: !!omap - m01696l: -1 - m01696r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11023036,PMID:12739169,PMID:12856180,PMID:12883891,PMID:1554704,PMID:18021224,PMID:4553030,PMID:793184,PMID:8725559,PMID:8781017 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11023036,PMID:12739169,PMID:12856180,PMID:12883891,PMID:1554704,PMID:18021224,PMID:4553030,PMID:793184,PMID:8725559,PMID:8781017" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r1380 + - id: "r1380" - name: "Delta24-Sterol Reductase" - metabolites: !!omap - m01449r: 1 @@ -238440,45 +238440,45 @@ - m03158r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116133 - - rxnFrom: Recon3D - - eccodes: 1.3.1.72 - - references: PMID:12162789,PMID:9291139,PMID:9638657 + - gene_reaction_rule: "ENSG00000116133" + - rxnFrom: "Recon3D" + - eccodes: "1.3.1.72" + - references: "PMID:12162789,PMID:9291139,PMID:9638657" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: r1381 + - id: "r1381" - name: "5Alpha-Cholest-7-En-3Beta-Ol Delta7-Delta8-Isomerase" - metabolites: !!omap - m01449r: 1 - m02343r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147155 - - rxnFrom: Recon3D - - eccodes: 5.3.3.5 - - references: PMID:12133002,PMID:4475632,PMID:5810070 + - gene_reaction_rule: "ENSG00000147155" + - rxnFrom: "Recon3D" + - eccodes: "5.3.3.5" + - references: "PMID:12133002,PMID:4475632,PMID:5810070" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: r1386 + - id: "r1386" - name: "Virtual ReactionPotential Definition" - metabolites: !!omap - m02426c: -1 - m02768c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.5.4.15 - - references: PMID:10348987,PMID:14725335 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.5.4.15" + - references: "PMID:10348987,PMID:14725335" - subsystem: - - Lysine metabolism + - "Lysine metabolism" - confidence_score: 0 - !!omap - - id: r1400 + - id: "r1400" - name: "Active Transport" - metabolites: !!omap - m02348c: 1 @@ -238487,15 +238487,15 @@ - m02774m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:12133002,PMID:4475632,PMID:5810070 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:12133002,PMID:4475632,PMID:5810070" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: r1411 + - id: "r1411" - name: "D-Galactosyl-N-Acetyl-D-Galactosaminyl- (N-Acetylneuraminyl)-D- Galactosyl-D-Glucosylceramide Galactohydrolase" - metabolites: !!omap - m01910s: 1 @@ -238504,45 +238504,45 @@ - m02040s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000170266 - - rxnFrom: Recon3D - - eccodes: 3.2.1.23 - - references: PMID:12133002,PMID:4475632,PMID:5810070 + - gene_reaction_rule: "ENSG00000170266" + - rxnFrom: "Recon3D" + - eccodes: "3.2.1.23" + - references: "PMID:12133002,PMID:4475632,PMID:5810070" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: r1421 + - id: "r1421" - name: "Free Diffusion" - metabolites: !!omap - m01831c: 1 - m01831s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 4.2.1.1 - - references: PMID:10938543,PMID:11493685,PMID:12713833,PMID:12747791,PMID:14640555,PMID:17259996,PMID:17504134,PMID:17826101,PMID:7011879,PMID:7672338 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.1" + - references: "PMID:10938543,PMID:11493685,PMID:12713833,PMID:12747791,PMID:14640555,PMID:17259996,PMID:17504134,PMID:17826101,PMID:7011879,PMID:7672338" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r1423 + - id: "r1423" - name: "Facilitated Diffusion" - metabolites: !!omap - m02751c: -1 - m02751s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 4.2.1.1 - - references: PMID:10938543,PMID:11493685,PMID:12713833,PMID:12747791,PMID:14640555,PMID:17259996,PMID:17504134,PMID:17826101,PMID:7011879,PMID:7672338 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.1" + - references: "PMID:10938543,PMID:11493685,PMID:12713833,PMID:12747791,PMID:14640555,PMID:17259996,PMID:17504134,PMID:17826101,PMID:7011879,PMID:7672338" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r1431 + - id: "r1431" - name: "2-Deoxyuridine 5-Diphosphate:Oxidized-Thioredoxin 2-Oxidoreductase" - metabolites: !!omap - m01285m: 1 @@ -238552,15 +238552,15 @@ - m02990m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000048392 and ENSG00000100348 and ENSG00000167325 and ENSG00000171848) or (ENSG00000048392 and ENSG00000136810 and ENSG00000167325 and ENSG00000171848) - - rxnFrom: Recon3D - - eccodes: 1.17.4.1 - - references: PMID:5553404,PMID:5671058 + - gene_reaction_rule: "(ENSG00000048392 and ENSG00000100348 and ENSG00000167325 and ENSG00000171848) or (ENSG00000048392 and ENSG00000136810 and ENSG00000167325 and ENSG00000171848)" + - rxnFrom: "Recon3D" + - eccodes: "1.17.4.1" + - references: "PMID:5553404,PMID:5671058" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: r1432 + - id: "r1432" - name: "2-Deoxyuridine 5-Diphosphate:Oxidized-Thioredoxin 2-Oxidoreductase" - metabolites: !!omap - m01680m: -1 @@ -238570,15 +238570,15 @@ - m02990m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000048392 and ENSG00000100348 and ENSG00000167325 and ENSG00000171848) or (ENSG00000048392 and ENSG00000136810 and ENSG00000167325 and ENSG00000171848) - - rxnFrom: Recon3D - - eccodes: 1.17.4.1 - - references: PMID:5553404,PMID:5671058 + - gene_reaction_rule: "(ENSG00000048392 and ENSG00000100348 and ENSG00000167325 and ENSG00000171848) or (ENSG00000048392 and ENSG00000136810 and ENSG00000167325 and ENSG00000171848)" + - rxnFrom: "Recon3D" + - eccodes: "1.17.4.1" + - references: "PMID:5553404,PMID:5671058" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: r1433 + - id: "r1433" - name: "NADPH:Oxidized-Thioredoxin Oxidoreductase" - metabolites: !!omap - m02039m: 1 @@ -238588,30 +238588,30 @@ - m02990m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000184470 or ENSG00000198431 - - rxnFrom: Recon3D - - eccodes: 1.8.1.9 - - references: PMID:5553404,PMID:5671058 + - gene_reaction_rule: "ENSG00000184470 or ENSG00000198431" + - rxnFrom: "Recon3D" + - eccodes: "1.8.1.9" + - references: "PMID:5553404,PMID:5671058" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: r1441 + - id: "r1441" - name: "Active Transport" - metabolites: !!omap - m02990c: -1 - m02990m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.4.19.9 - - references: PMID:12930836,PMID:16288981,PMID:911815 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.4.19.9" + - references: "PMID:12930836,PMID:16288981,PMID:911815" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r1446 + - id: "r1446" - name: "Acyl-CoA Oxidase" - metabolites: !!omap - m01412m: -1 @@ -238620,15 +238620,15 @@ - m03103m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: 1.3.3.6 - - references: PMID:17603022,PMID:1774065,PMID:3597357,PMID:6240978,PMID:7876265 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "1.3.3.6" + - references: "PMID:17603022,PMID:1774065,PMID:3597357,PMID:6240978,PMID:7876265" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: r1447 + - id: "r1447" - name: "Acyl-CoA Oxidase" - metabolites: !!omap - m00042m: 1 @@ -238637,15 +238637,15 @@ - m03103m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: 1.3.3.6 - - references: PMID:17603022,PMID:1774065,PMID:3597357,PMID:6240978,PMID:7876265 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "1.3.3.6" + - references: "PMID:17603022,PMID:1774065,PMID:3597357,PMID:6240978,PMID:7876265" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: r1448 + - id: "r1448" - name: "Acyl-CoA Oxidase" - metabolites: !!omap - m00059m: 1 @@ -238654,15 +238654,15 @@ - m03103m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: 1.3.3.6 - - references: PMID:17603022,PMID:1774065,PMID:3597357,PMID:6240978,PMID:7876265 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "1.3.3.6" + - references: "PMID:17603022,PMID:1774065,PMID:3597357,PMID:6240978,PMID:7876265" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: r1449 + - id: "r1449" - name: "Acyl-CoA Oxidase" - metabolites: !!omap - m00066m: 1 @@ -238671,15 +238671,15 @@ - m03103m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: 1.3.3.6 - - references: PMID:17603022,PMID:1774065,PMID:3597357,PMID:6240978,PMID:7876265 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "1.3.3.6" + - references: "PMID:17603022,PMID:1774065,PMID:3597357,PMID:6240978,PMID:7876265" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: r1450 + - id: "r1450" - name: "Acyl-CoA Oxidase" - metabolites: !!omap - m00053m: 1 @@ -238688,15 +238688,15 @@ - m03103m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: 1.3.3.6 - - references: PMID:17603022,PMID:1774065,PMID:3597357,PMID:6240978,PMID:7876265 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "1.3.3.6" + - references: "PMID:17603022,PMID:1774065,PMID:3597357,PMID:6240978,PMID:7876265" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: r1451 + - id: "r1451" - name: "Acyl-CoA Oxidase" - metabolites: !!omap - m00039m: 1 @@ -238705,15 +238705,15 @@ - m03103m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: 1.3.3.6 - - references: PMID:17603022,PMID:1774065,PMID:3597357,PMID:6240978,PMID:7876265 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "1.3.3.6" + - references: "PMID:17603022,PMID:1774065,PMID:3597357,PMID:6240978,PMID:7876265" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: r1453 + - id: "r1453" - name: "L-Proline: (Acceptor) Oxidoreductase" - metabolites: !!omap - m00559m: 1 @@ -238723,15 +238723,15 @@ - m03103m: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100033 - - rxnFrom: Recon3D - - eccodes: 2.3.1.21 - - references: PMID:18506409 + - gene_reaction_rule: "ENSG00000100033" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.21" + - references: "PMID:18506409" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: r1466 + - id: "r1466" - name: "Long-Chain-Acyl Coenzyme A Dehydrogenase" - metabolites: !!omap - m01596r: 4 @@ -238746,45 +238746,45 @@ - m02630r: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.3.1.86 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.86" + - references: "" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: r1467 + - id: "r1467" - name: "Postulated Transport Reaction" - metabolites: !!omap - m02647c: -1 - m02647m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.3.1.86 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.86" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r1468 + - id: "r1468" - name: "Postulated Transport Reaction" - metabolites: !!omap - m02677c: -1 - m02677m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.3.1.86 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.86" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r1479 + - id: "r1479" - name: "Long-Chain-Acyl Coenzyme A Dehydrogenase" - metabolites: !!omap - CE0692_m: -1 @@ -238793,15 +238793,15 @@ - m01597m: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: (ENSG00000138029 and ENSG00000167315) or (ENSG00000060971 and ENSG00000138029) - - rxnFrom: Recon3D - - eccodes: 2.3.1.86 - - references: + - gene_reaction_rule: "(ENSG00000138029 and ENSG00000167315) or (ENSG00000060971 and ENSG00000138029)" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.86" + - references: "" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: r1481 + - id: "r1481" - name: "Long-Chain-Acyl Coenzyme A Dehydrogenase" - metabolites: !!omap - m00893m: -1 @@ -238810,30 +238810,30 @@ - m02677m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000138029 and ENSG00000167315) or (ENSG00000060971 and ENSG00000138029) - - rxnFrom: Recon3D - - eccodes: 2.3.1.86 - - references: + - gene_reaction_rule: "(ENSG00000138029 and ENSG00000167315) or (ENSG00000060971 and ENSG00000138029)" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.86" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: r1493 + - id: "r1493" - name: "Utilized Transport" - metabolites: !!omap - m02026c: -1 - m02026s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.8.1.9 - - references: PMID:15845416 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.8.1.9" + - references: "PMID:15845416" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r1495 + - id: "r1495" - name: "Glycoside-Pentoside-Hexuronide (Gph):Cation Symporter Tcdb:2.A.28.1.1" - metabolites: !!omap - C02528_c: 1 @@ -238842,15 +238842,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100652 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11076396,PMID:11819755,PMID:17404808,PMID:6384004 + - gene_reaction_rule: "ENSG00000100652" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11076396,PMID:11819755,PMID:17404808,PMID:6384004" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r1526 + - id: "r1526" - name: "ATP-Binding Cassette (ABC) Tcdb:3.A.1.211.1" - metabolites: !!omap - HC02154_c: -1 @@ -238862,15 +238862,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: Recon3D - - eccodes: 1.3.1.27 - - references: PMID:16858612 + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "Recon3D" + - eccodes: "1.3.1.27" + - references: "PMID:16858612" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r1527 + - id: "r1527" - name: "ATP-Binding Cassette (ABC) Tcdb:3.A.1.211.1" - metabolites: !!omap - m01285c: 1 @@ -238882,15 +238882,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: Recon3D - - eccodes: 1.3.1.27 - - references: PMID:16858612 + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "Recon3D" + - eccodes: "1.3.1.27" + - references: "PMID:16858612" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r1540 + - id: "r1540" - name: "Neurotransmitter:Sodium Symporter (Nss) Tcdb:2.A.22.3.3" - metabolites: !!omap - m01442c: 1 @@ -238901,15 +238901,15 @@ - m02961s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000131389 - - rxnFrom: Recon3D - - eccodes: 2.3.1.86 - - references: PMID:12719981 + - gene_reaction_rule: "ENSG00000131389" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.86" + - references: "PMID:12719981" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r2157 + - id: "r2157" - name: "Resistance-Nodulation-Cell Division (Rnd) Tcdb:2.A.60.1.14" - metabolites: !!omap - C02528_c: 1 @@ -238920,15 +238920,15 @@ - m02046s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11076394,PMID:11076396,PMID:14579113 + - gene_reaction_rule: "ENSG00000084453" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11076394,PMID:11076396,PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r2158 + - id: "r2158" - name: "Resistance-Nodulation-Cell Division (Rnd) Tcdb:2.A.60.1.14" - metabolites: !!omap - C02528_c: 1 @@ -238939,15 +238939,15 @@ - m02900s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11076394,PMID:11076396,PMID:14579113 + - gene_reaction_rule: "ENSG00000084453" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11076394,PMID:11076396,PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r2159 + - id: "r2159" - name: "Resistance-Nodulation-Cell Division (Rnd) Tcdb:2.A.60.1.14" - metabolites: !!omap - C02528_c: 1 @@ -238958,15 +238958,15 @@ - m02901s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11076394,PMID:11076396,PMID:14579113 + - gene_reaction_rule: "ENSG00000084453" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11076394,PMID:11076396,PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r2236 + - id: "r2236" - name: "Resistance-Nodulation-Cell Division (Rnd) Tcdb:2.A.60.1.5" - metabolites: !!omap - m00270c: 1 @@ -238977,15 +238977,15 @@ - m02046s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11076396,PMID:14579113 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11076396,PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r2237 + - id: "r2237" - name: "Resistance-Nodulation-Cell Division (Rnd) Tcdb:2.A.60.1.5" - metabolites: !!omap - m00270c: 1 @@ -238996,15 +238996,15 @@ - m02900s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11076396,PMID:14579113 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11076396,PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r2238 + - id: "r2238" - name: "Resistance-Nodulation-Cell Division (Rnd) Tcdb:2.A.60.1.5" - metabolites: !!omap - m00270c: 1 @@ -239015,15 +239015,15 @@ - m02901s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11076396,PMID:14579113 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11076396,PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r2315 + - id: "r2315" - name: "Resistance-Nodulation-Cell Division (Rnd) Tcdb:2.A.60.1.2" - metabolites: !!omap - m00270c: 1 @@ -239034,30 +239034,30 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000174640 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11076394,PMID:11076396,PMID:14579113 + - gene_reaction_rule: "ENSG00000174640" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11076394,PMID:11076396,PMID:14579113" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r2346 + - id: "r2346" - name: "Organic Anion Transporter 5 Utilized Transport" - metabolites: !!omap - m00270c: 1 - m00270s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000184999 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11023036,PMID:12739169,PMID:12856180,PMID:12883891,PMID:1554704,PMID:18021224,PMID:4553030,PMID:793184,PMID:8725559,PMID:8781017 + - gene_reaction_rule: "ENSG00000184999" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11023036,PMID:12739169,PMID:12856180,PMID:12883891,PMID:1554704,PMID:18021224,PMID:4553030,PMID:793184,PMID:8725559,PMID:8781017" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r2373 + - id: "r2373" - name: "Mitochondrial Carrier (Mc) Tcdb:2.A.29.7.2" - metabolites: !!omap - m01306c: -1 @@ -239066,15 +239066,15 @@ - m01587m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100075 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:14598172,PMID:16919238,PMID:17173541,PMID:18406340,PMID:8132483 + - gene_reaction_rule: "ENSG00000100075" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:14598172,PMID:16919238,PMID:17173541,PMID:18406340,PMID:8132483" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r2374 + - id: "r2374" - name: "Mitochondrial Carrier (Mc) Tcdb:2.A.29.7.2" - metabolites: !!omap - m01587c: 1 @@ -239083,15 +239083,15 @@ - m02661m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100075 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:14598172,PMID:16919238,PMID:17173541,PMID:18406340,PMID:8132483 + - gene_reaction_rule: "ENSG00000100075" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:14598172,PMID:16919238,PMID:17173541,PMID:18406340,PMID:8132483" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r2375 + - id: "r2375" - name: "Mitochondrial Carrier (Mc) Tcdb:2.A.29.7.2" - metabolites: !!omap - m02183c: 1 @@ -239100,15 +239100,15 @@ - m02943m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100075 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:14598172,PMID:16919238,PMID:17173541,PMID:18406340,PMID:8132483 + - gene_reaction_rule: "ENSG00000100075" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:14598172,PMID:16919238,PMID:17173541,PMID:18406340,PMID:8132483" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r2376 + - id: "r2376" - name: "Mitochondrial Carrier (Mc) Tcdb:2.A.29.7.2" - metabolites: !!omap - m02183c: 1 @@ -239117,15 +239117,15 @@ - m02661m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100075 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:14598172,PMID:16919238,PMID:17173541,PMID:18406340,PMID:8132483 + - gene_reaction_rule: "ENSG00000100075" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:14598172,PMID:16919238,PMID:17173541,PMID:18406340,PMID:8132483" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r2377 + - id: "r2377" - name: "Mitochondrial Carrier (Mc) Tcdb:2.A.29.7.2" - metabolites: !!omap - m01306c: -1 @@ -239134,15 +239134,15 @@ - m01580m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100075 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:14598172,PMID:16919238,PMID:17173541,PMID:18406340,PMID:8132483 + - gene_reaction_rule: "ENSG00000100075" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:14598172,PMID:16919238,PMID:17173541,PMID:18406340,PMID:8132483" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r2378 + - id: "r2378" - name: "Mitochondrial Carrier (Mc) Tcdb:2.A.29.7.2" - metabolites: !!omap - m01580c: 1 @@ -239151,15 +239151,15 @@ - m02943m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100075 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:14598172,PMID:16919238,PMID:17173541,PMID:18406340,PMID:8132483 + - gene_reaction_rule: "ENSG00000100075" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:14598172,PMID:16919238,PMID:17173541,PMID:18406340,PMID:8132483" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r2379 + - id: "r2379" - name: "Mitochondrial Carrier (Mc) Tcdb:2.A.29.7.2" - metabolites: !!omap - m01580c: 1 @@ -239168,15 +239168,15 @@ - m02439m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100075 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:14598172,PMID:16919238,PMID:17173541,PMID:18406340,PMID:8132483 + - gene_reaction_rule: "ENSG00000100075" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:14598172,PMID:16919238,PMID:17173541,PMID:18406340,PMID:8132483" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r2380 + - id: "r2380" - name: "Mitochondrial Carrier (Mc) Tcdb:2.A.29.7.2" - metabolites: !!omap - m01580c: 1 @@ -239185,15 +239185,15 @@ - m02661m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100075 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:14598172,PMID:16919238,PMID:17173541,PMID:18406340,PMID:8132483 + - gene_reaction_rule: "ENSG00000100075" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:14598172,PMID:16919238,PMID:17173541,PMID:18406340,PMID:8132483" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r2497 + - id: "r2497" - name: "ATP-Binding Cassette (ABC) Tcdb:3.A.1.203.3" - metabolites: !!omap - m01285c: 1 @@ -239205,15 +239205,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101986 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:18619829 + - gene_reaction_rule: "ENSG00000101986" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:18619829" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r2498 + - id: "r2498" - name: "ATP-Binding Cassette (ABC) Tcdb:3.A.1.203.3" - metabolites: !!omap - m01285c: 1 @@ -239225,15 +239225,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101986 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:18619829 + - gene_reaction_rule: "ENSG00000101986" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:18619829" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r2507 + - id: "r2507" - name: "Utilized Transport" - metabolites: !!omap - m01362c: -1 @@ -239242,15 +239242,15 @@ - m02348r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:17466261 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:17466261" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r2508 + - id: "r2508" - name: "Utilized Transport" - metabolites: !!omap - m02348c: 1 @@ -239259,15 +239259,15 @@ - m02674r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:17466261 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:17466261" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r2509 + - id: "r2509" - name: "Utilized Transport" - metabolites: !!omap - m02348c: 1 @@ -239276,15 +239276,15 @@ - m02646r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:17466261 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:17466261" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r2510 + - id: "r2510" - name: "Utilized Transport" - metabolites: !!omap - m02348c: 1 @@ -239293,15 +239293,15 @@ - m02939r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:17466261 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:17466261" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r2511 + - id: "r2511" - name: "Utilized Transport" - metabolites: !!omap - m02348c: 1 @@ -239310,15 +239310,15 @@ - m02387r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:17466261 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:17466261" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r2512 + - id: "r2512" - name: "Utilized Transport" - metabolites: !!omap - m01932c: 1 @@ -239327,15 +239327,15 @@ - m02348r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:17466261 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:17466261" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r2513 + - id: "r2513" - name: "Utilized Transport" - metabolites: !!omap - m02348c: -1 @@ -239344,15 +239344,15 @@ - m02389r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:17466261 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:17466261" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r2514 + - id: "r2514" - name: "Utilized Transport" - metabolites: !!omap - m02348c: 1 @@ -239361,15 +239361,15 @@ - m02675r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:17466261 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:17466261" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r2515 + - id: "r2515" - name: "Utilized Transport" - metabolites: !!omap - m01696c: 1 @@ -239378,45 +239378,45 @@ - m02348r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:17466261 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:17466261" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r2537 + - id: "r2537" - name: "Utilized Transport" - metabolites: !!omap - m01934c: -1 - m01934r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10049700,PMID:10574970,PMID:11389679,PMID:11557028,PMID:11564694,PMID:12824232,PMID:12930836,PMID:14574404,PMID:16288981,PMID:911815 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10049700,PMID:10574970,PMID:11389679,PMID:11557028,PMID:11564694,PMID:12824232,PMID:12930836,PMID:14574404,PMID:16288981,PMID:911815" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r2538 + - id: "r2538" - name: "Utilized Transport" - metabolites: !!omap - m01697c: -1 - m01697r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10049700,PMID:10574970,PMID:11389679,PMID:11557028,PMID:11564694,PMID:12824232,PMID:12930836,PMID:14574404,PMID:16288981,PMID:911815 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10049700,PMID:10574970,PMID:11389679,PMID:11557028,PMID:11564694,PMID:12824232,PMID:12930836,PMID:14574404,PMID:16288981,PMID:911815" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: RE0066M + - id: "RE0066M" - name: "Phosphatidylethanolamine N-Methyltransferase" - metabolites: !!omap - C01241_m: -1 @@ -239426,15 +239426,15 @@ - m02877m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000133027 - - rxnFrom: Recon3D - - eccodes: 2.1.1.17 - - references: PMID:12431977 + - gene_reaction_rule: "ENSG00000133027" + - rxnFrom: "Recon3D" + - eccodes: "2.1.1.17" + - references: "PMID:12431977" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: RE0066R + - id: "RE0066R" - name: "Phosphatidylethanolamine N-Methyltransferase" - metabolites: !!omap - C01241_r: -1 @@ -239444,15 +239444,15 @@ - m02877r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000133027 - - rxnFrom: Recon3D - - eccodes: 2.1.1.17 - - references: PMID:12431977 + - gene_reaction_rule: "ENSG00000133027" + - rxnFrom: "Recon3D" + - eccodes: "2.1.1.17" + - references: "PMID:12431977" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: RE0344M + - id: "RE0344M" - name: "Palmitoyl Coenzyme A Hydrolase" - metabolites: !!omap - m01597m: 1 @@ -239462,15 +239462,15 @@ - m02941m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 - - rxnFrom: Recon3D - - eccodes: 3.1.2.2 - - references: PMID:10092594,PMID:10578051,PMID:16103133,PMID:16940157,PMID:9153233 + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673" + - rxnFrom: "Recon3D" + - eccodes: "3.1.2.2" + - references: "PMID:10092594,PMID:10578051,PMID:16103133,PMID:16940157,PMID:9153233" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE0344X + - id: "RE0344X" - name: "Palmitoyl Coenzyme A Hydrolase" - metabolites: !!omap - m01597p: 1 @@ -239480,15 +239480,15 @@ - m02941p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101473 or ENSG00000136881 or ENSG00000177465 - - rxnFrom: Recon3D - - eccodes: 3.1.2.2 - - references: PMID:10092594,PMID:10578051,PMID:16103133,PMID:16940157,PMID:9153233 + - gene_reaction_rule: "ENSG00000101473 or ENSG00000136881 or ENSG00000177465" + - rxnFrom: "Recon3D" + - eccodes: "3.1.2.2" + - references: "PMID:10092594,PMID:10578051,PMID:16103133,PMID:16940157,PMID:9153233" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE0456M + - id: "RE0456M" - name: "Ribonucleoside-Diphosphate Reductase" - metabolites: !!omap - m01756m: 1 @@ -239498,15 +239498,15 @@ - m03130m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.17.4.1 - - references: PMID:6997299,PMID:8483833 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.17.4.1" + - references: "PMID:6997299,PMID:8483833" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: RE0512C + - id: "RE0512C" - name: "3-Hydroxyacyl Coenzyme A Dehydrogenase" - metabolites: !!omap - m00083c: -1 @@ -239516,15 +239516,15 @@ - m02553c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.1.1.35 - - references: PMID:7846063 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.35" + - references: "PMID:7846063" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE0569E + - id: "RE0569E" - name: "RE0569E" - metabolites: !!omap - m00866s: 1 @@ -239535,15 +239535,15 @@ - m02444s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134013 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10479480 + - gene_reaction_rule: "ENSG00000134013" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10479480" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE0572N + - id: "RE0572N" - name: "RE0572N" - metabolites: !!omap - m00040n: -1 @@ -239553,15 +239553,15 @@ - m02555n: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100865 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10479480 + - gene_reaction_rule: "ENSG00000100865" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10479480" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE0573N + - id: "RE0573N" - name: "RE0573N" - metabolites: !!omap - m00904n: 1 @@ -239572,15 +239572,15 @@ - m02444n: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149929 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10479480 + - gene_reaction_rule: "ENSG00000149929" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10479480" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE0577M + - id: "RE0577M" - name: "Palmitoyl Coenzyme A Hydrolase" - metabolites: !!omap - m01597m: 1 @@ -239590,15 +239590,15 @@ - m02040m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 - - rxnFrom: Recon3D - - eccodes: 3.1.2.2 - - references: PMID:10092594,PMID:10578051,PMID:16103133,PMID:16940157,PMID:9153233 + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673" + - rxnFrom: "Recon3D" + - eccodes: "3.1.2.2" + - references: "PMID:10092594,PMID:10578051,PMID:16103133,PMID:16940157,PMID:9153233" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE0577X + - id: "RE0577X" - name: "Palmitoyl Coenzyme A Hydrolase" - metabolites: !!omap - m01597p: 1 @@ -239608,15 +239608,15 @@ - m02040p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101473 or ENSG00000136881 or ENSG00000177465 - - rxnFrom: Recon3D - - eccodes: 3.1.2.2 - - references: PMID:10092594,PMID:10578051,PMID:16103133,PMID:16940157,PMID:9153233 + - gene_reaction_rule: "ENSG00000101473 or ENSG00000136881 or ENSG00000177465" + - rxnFrom: "Recon3D" + - eccodes: "3.1.2.2" + - references: "PMID:10092594,PMID:10578051,PMID:16103133,PMID:16940157,PMID:9153233" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE0578M + - id: "RE0578M" - name: "Palmitoyl Coenzyme A Hydrolase" - metabolites: !!omap - m01373m: 1 @@ -239626,15 +239626,15 @@ - m02040m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 - - rxnFrom: Recon3D - - eccodes: 3.1.2.2 - - references: PMID:10092594,PMID:10578051,PMID:16103133,PMID:16940157,PMID:9153233 + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673" + - rxnFrom: "Recon3D" + - eccodes: "3.1.2.2" + - references: "PMID:10092594,PMID:10578051,PMID:16103133,PMID:16940157,PMID:9153233" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE0578X + - id: "RE0578X" - name: "Palmitoyl Coenzyme A Hydrolase" - metabolites: !!omap - m01373p: 1 @@ -239644,15 +239644,15 @@ - m02040p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101473 or ENSG00000136881 or ENSG00000177465 - - rxnFrom: Recon3D - - eccodes: 3.1.2.2 - - references: PMID:10092594,PMID:10578051,PMID:16103133,PMID:16940157,PMID:9153233 + - gene_reaction_rule: "ENSG00000101473 or ENSG00000136881 or ENSG00000177465" + - rxnFrom: "Recon3D" + - eccodes: "3.1.2.2" + - references: "PMID:10092594,PMID:10578051,PMID:16103133,PMID:16940157,PMID:9153233" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE0579M + - id: "RE0579M" - name: "Palmitoyl Coenzyme A Hydrolase" - metabolites: !!omap - m01597m: 1 @@ -239662,15 +239662,15 @@ - m02971m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 - - rxnFrom: Recon3D - - eccodes: 3.1.2.2 - - references: PMID:10092594,PMID:10578051,PMID:16103133,PMID:16940157,PMID:9153233 + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673" + - rxnFrom: "Recon3D" + - eccodes: "3.1.2.2" + - references: "PMID:10092594,PMID:10578051,PMID:16103133,PMID:16940157,PMID:9153233" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE0579X + - id: "RE0579X" - name: "Palmitoyl Coenzyme A Hydrolase" - metabolites: !!omap - m01597p: 1 @@ -239680,15 +239680,15 @@ - m02971p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101473 or ENSG00000136881 or ENSG00000177465 - - rxnFrom: Recon3D - - eccodes: 3.1.2.2 - - references: PMID:10092594,PMID:10578051,PMID:16103133,PMID:16940157,PMID:9153233 + - gene_reaction_rule: "ENSG00000101473 or ENSG00000136881 or ENSG00000177465" + - rxnFrom: "Recon3D" + - eccodes: "3.1.2.2" + - references: "PMID:10092594,PMID:10578051,PMID:16103133,PMID:16940157,PMID:9153233" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE0580L + - id: "RE0580L" - name: "RE0580L" - metabolites: !!omap - m00890l: 1 @@ -239699,15 +239699,15 @@ - m02678l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 - - rxnFrom: Recon3D - - eccodes: 3.1.2.2 - - references: PMID:10479480 + - gene_reaction_rule: "ENSG00000064601" + - rxnFrom: "Recon3D" + - eccodes: "3.1.2.2" + - references: "PMID:10479480" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE0580R + - id: "RE0580R" - name: "RE0580R" - metabolites: !!omap - m00890r: 1 @@ -239718,15 +239718,15 @@ - m02678r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000066322 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: Recon3D - - eccodes: 3.1.2.2 - - references: PMID:10479480 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000066322 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "Recon3D" + - eccodes: "3.1.2.2" + - references: "PMID:10479480" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE0581R + - id: "RE0581R" - name: "RE0581R" - metabolites: !!omap - m00793r: 1 @@ -239736,15 +239736,15 @@ - m02555r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066322 - - rxnFrom: Recon3D - - eccodes: 2.7.4.9 - - references: PMID:10479480 + - gene_reaction_rule: "ENSG00000066322" + - rxnFrom: "Recon3D" + - eccodes: "2.7.4.9" + - references: "PMID:10479480" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE0582N + - id: "RE0582N" - name: "RE0582N" - metabolites: !!omap - m00057n: 1 @@ -239752,15 +239752,15 @@ - m02040n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149929 - - rxnFrom: Recon3D - - eccodes: 2.7.4.9 - - references: PMID:10479480 + - gene_reaction_rule: "ENSG00000149929" + - rxnFrom: "Recon3D" + - eccodes: "2.7.4.9" + - references: "PMID:10479480" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE0583N + - id: "RE0583N" - name: "RE0583N" - metabolites: !!omap - m00057n: -1 @@ -239770,15 +239770,15 @@ - m02941n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000141552 - - rxnFrom: Recon3D - - eccodes: 2.7.4.6 - - references: PMID:10479480 + - gene_reaction_rule: "ENSG00000141552" + - rxnFrom: "Recon3D" + - eccodes: "2.7.4.6" + - references: "PMID:10479480" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE0691C + - id: "RE0691C" - name: "RE0691C" - metabolites: !!omap - m00557c: 1 @@ -239786,15 +239786,15 @@ - m02040c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10047787,PMID:7040832 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10047787,PMID:7040832" - subsystem: - - Urea cycle + - "Urea cycle" - confidence_score: 0 - !!omap - - id: RE0702E + - id: "RE0702E" - name: "Dihydrolipoyl Dehydrogenase" - metabolites: !!omap - m02039s: -1 @@ -239804,15 +239804,15 @@ - m02986s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167419 - - rxnFrom: Recon3D - - eccodes: 1.8.1.4 - - references: PMID:11013238,PMID:9665099 + - gene_reaction_rule: "ENSG00000167419" + - rxnFrom: "Recon3D" + - eccodes: "1.8.1.4" + - references: "PMID:11013238,PMID:9665099" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: RE0702L + - id: "RE0702L" - name: "Dihydrolipoyl Dehydrogenase" - metabolites: !!omap - m02039l: -1 @@ -239822,15 +239822,15 @@ - m02986l: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005381 or ENSG00000117592 - - rxnFrom: Recon3D - - eccodes: 1.8.1.4 - - references: PMID:11013238,PMID:9665099 + - gene_reaction_rule: "ENSG00000005381 or ENSG00000117592" + - rxnFrom: "Recon3D" + - eccodes: "1.8.1.4" + - references: "PMID:11013238,PMID:9665099" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: RE0702M + - id: "RE0702M" - name: "Dihydrolipoyl Dehydrogenase" - metabolites: !!omap - m02039m: -1 @@ -239840,15 +239840,15 @@ - m02986m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000083123 or ENSG00000091140 or ENSG00000248098 - - rxnFrom: Recon3D - - eccodes: 1.8.1.4 - - references: PMID:11013238,PMID:9665099 + - gene_reaction_rule: "ENSG00000083123 or ENSG00000091140 or ENSG00000248098" + - rxnFrom: "Recon3D" + - eccodes: "1.8.1.4" + - references: "PMID:11013238,PMID:9665099" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: RE0702N + - id: "RE0702N" - name: "Dihydrolipoyl Dehydrogenase" - metabolites: !!omap - m02039n: -1 @@ -239858,15 +239858,15 @@ - m02986n: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005381 - - rxnFrom: Recon3D - - eccodes: 1.8.1.4 - - references: PMID:11013238,PMID:9665099 + - gene_reaction_rule: "ENSG00000005381" + - rxnFrom: "Recon3D" + - eccodes: "1.8.1.4" + - references: "PMID:11013238,PMID:9665099" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: RE0908G + - id: "RE0908G" - name: "Steryl-Sulfatase" - metabolites: !!omap - m00720g: 1 @@ -239876,15 +239876,15 @@ - m02946g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101846 - - rxnFrom: Recon3D - - eccodes: 3.1.6.2 - - references: PMID:11861502,PMID:2765556,PMID:3988241,PMID:7263841,PMID:8767510 + - gene_reaction_rule: "ENSG00000101846" + - rxnFrom: "Recon3D" + - eccodes: "3.1.6.2" + - references: "PMID:11861502,PMID:2765556,PMID:3988241,PMID:7263841,PMID:8767510" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: RE0908R + - id: "RE0908R" - name: "Steryl-Sulfatase" - metabolites: !!omap - m00720r: 1 @@ -239894,15 +239894,15 @@ - m02946r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101846 - - rxnFrom: Recon3D - - eccodes: 3.1.6.2 - - references: PMID:11861502,PMID:2765556,PMID:3988241,PMID:7263841,PMID:8767510 + - gene_reaction_rule: "ENSG00000101846" + - rxnFrom: "Recon3D" + - eccodes: "3.1.6.2" + - references: "PMID:11861502,PMID:2765556,PMID:3988241,PMID:7263841,PMID:8767510" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: RE0916G + - id: "RE0916G" - name: "Steryl-Sulfatase" - metabolites: !!omap - m00736g: 1 @@ -239912,15 +239912,15 @@ - m02946g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101846 - - rxnFrom: Recon3D - - eccodes: 3.1.6.2 - - references: PMID:11861502,PMID:2765556,PMID:3988241,PMID:7263841,PMID:8767510 + - gene_reaction_rule: "ENSG00000101846" + - rxnFrom: "Recon3D" + - eccodes: "3.1.6.2" + - references: "PMID:11861502,PMID:2765556,PMID:3988241,PMID:7263841,PMID:8767510" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: RE0916R + - id: "RE0916R" - name: "Steryl-Sulfatase" - metabolites: !!omap - m00736r: 1 @@ -239930,15 +239930,15 @@ - m02946r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101846 - - rxnFrom: Recon3D - - eccodes: 3.1.6.2 - - references: PMID:11861502,PMID:2765556,PMID:3988241,PMID:7263841,PMID:8767510 + - gene_reaction_rule: "ENSG00000101846" + - rxnFrom: "Recon3D" + - eccodes: "3.1.6.2" + - references: "PMID:11861502,PMID:2765556,PMID:3988241,PMID:7263841,PMID:8767510" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: RE0918G + - id: "RE0918G" - name: "Steryl-Sulfatase" - metabolites: !!omap - m00828g: 1 @@ -239948,15 +239948,15 @@ - m02946g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101846 - - rxnFrom: Recon3D - - eccodes: 3.1.6.2 - - references: PMID:11861502,PMID:2765556,PMID:3988241,PMID:7263841,PMID:8767510 + - gene_reaction_rule: "ENSG00000101846" + - rxnFrom: "Recon3D" + - eccodes: "3.1.6.2" + - references: "PMID:11861502,PMID:2765556,PMID:3988241,PMID:7263841,PMID:8767510" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: RE0918R + - id: "RE0918R" - name: "Steryl-Sulfatase" - metabolites: !!omap - m00828r: 1 @@ -239966,15 +239966,15 @@ - m02946r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101846 - - rxnFrom: Recon3D - - eccodes: 3.1.6.2 - - references: PMID:11861502,PMID:2765556,PMID:3988241,PMID:7263841,PMID:8767510 + - gene_reaction_rule: "ENSG00000101846" + - rxnFrom: "Recon3D" + - eccodes: "3.1.6.2" + - references: "PMID:11861502,PMID:2765556,PMID:3988241,PMID:7263841,PMID:8767510" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: RE0924C + - id: "RE0924C" - name: "Glucuronosyltransferase" - metabolites: !!omap - CE2881_c: -1 @@ -239984,15 +239984,15 @@ - m03109c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000241635 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID:3090812,PMID:7364927,PMID:8070342,PMID:9633995 + - gene_reaction_rule: "ENSG00000241635" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID:3090812,PMID:7364927,PMID:8070342,PMID:9633995" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: RE0924R + - id: "RE0924R" - name: "Glucuronosyltransferase" - metabolites: !!omap - CE2881_r: -1 @@ -240002,15 +240002,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109181 or ENSG00000135226 or ENSG00000156096 or ENSG00000167165 or ENSG00000171234 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID:3090812,PMID:7364927,PMID:8070342,PMID:9633995 + - gene_reaction_rule: "ENSG00000109181 or ENSG00000135226 or ENSG00000156096 or ENSG00000167165 or ENSG00000171234 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID:3090812,PMID:7364927,PMID:8070342,PMID:9633995" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: RE0925C + - id: "RE0925C" - name: "Glucuronosyltransferase" - metabolites: !!omap - CE2882_c: -1 @@ -240020,15 +240020,15 @@ - m03109c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000241635 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID:2229315,PMID:8070342,PMID:9633995 + - gene_reaction_rule: "ENSG00000241635" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID:2229315,PMID:8070342,PMID:9633995" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: RE0925R + - id: "RE0925R" - name: "Glucuronosyltransferase" - metabolites: !!omap - CE2882_r: -1 @@ -240038,15 +240038,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109181 or ENSG00000135226 or ENSG00000156096 or ENSG00000167165 or ENSG00000171234 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID:2229315,PMID:8070342,PMID:9633995 + - gene_reaction_rule: "ENSG00000109181 or ENSG00000135226 or ENSG00000156096 or ENSG00000167165 or ENSG00000171234 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID:2229315,PMID:8070342,PMID:9633995" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: RE0927C + - id: "RE0927C" - name: "Glucuronosyltransferase" - metabolites: !!omap - CE2883_c: -1 @@ -240056,15 +240056,15 @@ - m03109c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000241635 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID:2229315,PMID:8070342,PMID:9633995 + - gene_reaction_rule: "ENSG00000241635" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID:2229315,PMID:8070342,PMID:9633995" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: RE0927R + - id: "RE0927R" - name: "Glucuronosyltransferase" - metabolites: !!omap - CE2883_r: -1 @@ -240074,15 +240074,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109181 or ENSG00000135226 or ENSG00000156096 or ENSG00000167165 or ENSG00000171234 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID:2229315,PMID:8070342,PMID:9633995 + - gene_reaction_rule: "ENSG00000109181 or ENSG00000135226 or ENSG00000156096 or ENSG00000167165 or ENSG00000171234 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID:2229315,PMID:8070342,PMID:9633995" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: RE0928C + - id: "RE0928C" - name: "Glucuronosyltransferase" - metabolites: !!omap - CE2884_c: -1 @@ -240092,15 +240092,15 @@ - m03109c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000241635 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID:2627761,PMID:7410532,PMID:8070342,PMID:9633995 + - gene_reaction_rule: "ENSG00000241635" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID:2627761,PMID:7410532,PMID:8070342,PMID:9633995" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: RE0928R + - id: "RE0928R" - name: "Glucuronosyltransferase" - metabolites: !!omap - CE2884_r: -1 @@ -240110,15 +240110,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109181 or ENSG00000135226 or ENSG00000156096 or ENSG00000167165 or ENSG00000171234 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID:2627761,PMID:7410532,PMID:8070342,PMID:9633995 + - gene_reaction_rule: "ENSG00000109181 or ENSG00000135226 or ENSG00000156096 or ENSG00000167165 or ENSG00000171234 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID:2627761,PMID:7410532,PMID:8070342,PMID:9633995" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: RE0936E + - id: "RE0936E" - name: "RE0936E" - metabolites: !!omap - m01386s: 1 @@ -240127,15 +240127,15 @@ - m02184s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130234 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10969042,PMID:11815627 + - gene_reaction_rule: "ENSG00000130234" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10969042,PMID:11815627" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: RE0937E + - id: "RE0937E" - name: "RE0937E" - metabolites: !!omap - m02040s: -1 @@ -240144,15 +240144,15 @@ - m02563s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130234 - - rxnFrom: Recon3D - - eccodes: 3.1.6.2 - - references: PMID:10969042,PMID:11815627 + - gene_reaction_rule: "ENSG00000130234" + - rxnFrom: "Recon3D" + - eccodes: "3.1.6.2" + - references: "PMID:10969042,PMID:11815627" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: RE0938E + - id: "RE0938E" - name: "RE0938E" - metabolites: !!omap - m01347s: 1 @@ -240161,15 +240161,15 @@ - m02724s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130234 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10969042,PMID:11384769,PMID:11815627 + - gene_reaction_rule: "ENSG00000130234" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10969042,PMID:11384769,PMID:11815627" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: RE1050C + - id: "RE1050C" - name: "Peroxidase" - metabolites: !!omap - CE1950_c: -2 @@ -240180,15 +240180,15 @@ - m02949c: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115705 or ENSG00000117592 - - rxnFrom: Recon3D - - eccodes: 1.11.1.7 - - references: PMID:11013238 + - gene_reaction_rule: "ENSG00000115705 or ENSG00000117592" + - rxnFrom: "Recon3D" + - eccodes: "1.11.1.7" + - references: "PMID:11013238" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: RE1050E + - id: "RE1050E" - name: "Peroxidase" - metabolites: !!omap - CE1950_s: -2 @@ -240199,15 +240199,15 @@ - m02949s: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167419 - - rxnFrom: Recon3D - - eccodes: 1.11.1.7 - - references: PMID:11013238 + - gene_reaction_rule: "ENSG00000167419" + - rxnFrom: "Recon3D" + - eccodes: "1.11.1.7" + - references: "PMID:11013238" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: RE1050L + - id: "RE1050L" - name: "Peroxidase" - metabolites: !!omap - CE1950_l: -2 @@ -240218,15 +240218,15 @@ - m02949l: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005381 or ENSG00000117592 - - rxnFrom: Recon3D - - eccodes: 1.11.1.7 - - references: PMID:11013238 + - gene_reaction_rule: "ENSG00000005381 or ENSG00000117592" + - rxnFrom: "Recon3D" + - eccodes: "1.11.1.7" + - references: "PMID:11013238" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: RE1050N + - id: "RE1050N" - name: "Peroxidase" - metabolites: !!omap - CE1950_n: -2 @@ -240237,15 +240237,15 @@ - m02949n: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005381 - - rxnFrom: Recon3D - - eccodes: 1.11.1.7 - - references: PMID:11013238 + - gene_reaction_rule: "ENSG00000005381" + - rxnFrom: "Recon3D" + - eccodes: "1.11.1.7" + - references: "PMID:11013238" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: RE1062M + - id: "RE1062M" - name: "Neurolysin" - metabolites: !!omap - m02040m: -1 @@ -240254,15 +240254,15 @@ - m02573m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123213 - - rxnFrom: Recon3D - - eccodes: 3.4.24.16 - - references: PMID:11284698,PMID:8869556,PMID:9257187 + - gene_reaction_rule: "ENSG00000123213" + - rxnFrom: "Recon3D" + - eccodes: "3.4.24.16" + - references: "PMID:11284698,PMID:8869556,PMID:9257187" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: RE1064C + - id: "RE1064C" - name: "Thimet Oligopeptidase" - metabolites: !!omap - CE2891_c: -1 @@ -240272,15 +240272,15 @@ - m02040c: -2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.4.24.15 - - references: PMID:11284698,PMID:8373360 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.4.24.15" + - references: "PMID:11284698,PMID:8373360" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: RE1096M + - id: "RE1096M" - name: "RE1096M" - metabolites: !!omap - m00409m: -1 @@ -240292,15 +240292,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000148795 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID:10049998,PMID:7578007 + - gene_reaction_rule: "ENSG00000148795" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID:10049998,PMID:7578007" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: RE1099G + - id: "RE1099G" - name: "Steryl-Sulfatase" - metabolites: !!omap - m00407g: -1 @@ -240310,15 +240310,15 @@ - m02946g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101846 - - rxnFrom: Recon3D - - eccodes: 3.1.6.2 - - references: PMID:10049998,PMID:1606923 + - gene_reaction_rule: "ENSG00000101846" + - rxnFrom: "Recon3D" + - eccodes: "3.1.6.2" + - references: "PMID:10049998,PMID:1606923" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: RE1099L + - id: "RE1099L" - name: "Steryl-Sulfatase" - metabolites: !!omap - m00407l: -1 @@ -240328,15 +240328,15 @@ - m02946l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101846 - - rxnFrom: Recon3D - - eccodes: 3.1.6.2 - - references: PMID:10049998,PMID:1606923 + - gene_reaction_rule: "ENSG00000101846" + - rxnFrom: "Recon3D" + - eccodes: "3.1.6.2" + - references: "PMID:10049998,PMID:1606923" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: RE1099R + - id: "RE1099R" - name: "Steryl-Sulfatase" - metabolites: !!omap - m00407r: -1 @@ -240346,15 +240346,15 @@ - m02946r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101846 - - rxnFrom: Recon3D - - eccodes: 3.1.6.2 - - references: PMID:10049998,PMID:1606923 + - gene_reaction_rule: "ENSG00000101846" + - rxnFrom: "Recon3D" + - eccodes: "3.1.6.2" + - references: "PMID:10049998,PMID:1606923" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: RE1100G + - id: "RE1100G" - name: "Steryl-Sulfatase" - metabolites: !!omap - m01450g: 1 @@ -240364,15 +240364,15 @@ - m02946g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101846 - - rxnFrom: Recon3D - - eccodes: 3.1.6.2 - - references: PMID:10049998,PMID:1606923 + - gene_reaction_rule: "ENSG00000101846" + - rxnFrom: "Recon3D" + - eccodes: "3.1.6.2" + - references: "PMID:10049998,PMID:1606923" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: RE1100L + - id: "RE1100L" - name: "Steryl-Sulfatase" - metabolites: !!omap - m01450l: 1 @@ -240382,15 +240382,15 @@ - m02946l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101846 - - rxnFrom: Recon3D - - eccodes: 3.1.6.2 - - references: PMID:10049998,PMID:1606923 + - gene_reaction_rule: "ENSG00000101846" + - rxnFrom: "Recon3D" + - eccodes: "3.1.6.2" + - references: "PMID:10049998,PMID:1606923" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: RE1134M + - id: "RE1134M" - name: "RE1134M" - metabolites: !!omap - m00408m: -1 @@ -240402,15 +240402,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000148795 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID:10049998,PMID:7578007 + - gene_reaction_rule: "ENSG00000148795" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID:10049998,PMID:7578007" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: RE1135G + - id: "RE1135G" - name: "Steryl-Sulfatase" - metabolites: !!omap - m02039g: 1 @@ -240420,15 +240420,15 @@ - m02946g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101846 - - rxnFrom: Recon3D - - eccodes: 3.1.6.2 - - references: PMID:10049998,PMID:1606923 + - gene_reaction_rule: "ENSG00000101846" + - rxnFrom: "Recon3D" + - eccodes: "3.1.6.2" + - references: "PMID:10049998,PMID:1606923" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: RE1135L + - id: "RE1135L" - name: "Steryl-Sulfatase" - metabolites: !!omap - m02039l: 1 @@ -240438,15 +240438,15 @@ - m02946l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101846 - - rxnFrom: Recon3D - - eccodes: 3.1.6.2 - - references: PMID:10049998,PMID:1606923 + - gene_reaction_rule: "ENSG00000101846" + - rxnFrom: "Recon3D" + - eccodes: "3.1.6.2" + - references: "PMID:10049998,PMID:1606923" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: RE1233M + - id: "RE1233M" - name: "Kynurenine-Oxoglutarate Transaminase" - metabolites: !!omap - m00990m: 1 @@ -240456,15 +240456,15 @@ - m02319m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109576 or ENSG00000137944 - - rxnFrom: Recon3D - - eccodes: 2.6.1.7 - - references: PMID:10756023 + - gene_reaction_rule: "ENSG00000109576 or ENSG00000137944" + - rxnFrom: "Recon3D" + - eccodes: "2.6.1.7" + - references: "PMID:10756023" - subsystem: - - Tryptophan metabolism + - "Tryptophan metabolism" - confidence_score: 0 - !!omap - - id: RE1309M + - id: "RE1309M" - name: "RE1309M" - metabolites: !!omap - m00035m: -1 @@ -240476,15 +240476,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000019186 - - rxnFrom: Recon3D - - eccodes: 3.4.24.16 - - references: PMID:11012668 + - gene_reaction_rule: "ENSG00000019186" + - rxnFrom: "Recon3D" + - eccodes: "3.4.24.16" + - references: "PMID:11012668" - subsystem: - - Vitamin D metabolism + - "Vitamin D metabolism" - confidence_score: 0 - !!omap - - id: RE1342C + - id: "RE1342C" - name: "Aldehyde Reductase" - metabolites: !!omap - m01682c: -1 @@ -240494,15 +240494,15 @@ - m02553c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.1.1.21 - - references: PMID:9537432 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.21" + - references: "PMID:9537432" - subsystem: - - Fructose and mannose metabolism + - "Fructose and mannose metabolism" - confidence_score: 0 - !!omap - - id: RE1447M + - id: "RE1447M" - name: "Phosphatidylinositol-3,4-Bisphosphate 4-Phosphatase" - metabolites: !!omap - m00554m: 1 @@ -240511,15 +240511,15 @@ - m02751m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151093 - - rxnFrom: Recon3D - - eccodes: 3.1.3.66 - - references: PMID:11756679,PMID:7556092,PMID:7567999,PMID:9295334,PMID:9356448 + - gene_reaction_rule: "ENSG00000151093" + - rxnFrom: "Recon3D" + - eccodes: "3.1.3.66" + - references: "PMID:11756679,PMID:7556092,PMID:7567999,PMID:9295334,PMID:9356448" - subsystem: - - Phosphatidylinositol phosphate metabolism + - "Phosphatidylinositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: RE1447N + - id: "RE1447N" - name: "Phosphatidylinositol-3,4-Bisphosphate 4-Phosphatase" - metabolites: !!omap - m00554n: 1 @@ -240528,15 +240528,15 @@ - m02751n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.3.66 - - references: PMID:11756679,PMID:7556092,PMID:7567999,PMID:9295334,PMID:9356448 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.3.66" + - references: "PMID:11756679,PMID:7556092,PMID:7567999,PMID:9295334,PMID:9356448" - subsystem: - - Phosphatidylinositol phosphate metabolism + - "Phosphatidylinositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: RE1448N + - id: "RE1448N" - name: "Phosphatidylinositol-3,4,5-Trisphosphate 3-Phosphatase" - metabolites: !!omap - m00554n: -1 @@ -240545,15 +240545,15 @@ - m02751n: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.3.67 - - references: PMID:7556092,PMID:9367831 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.3.67" + - references: "PMID:7556092,PMID:9367831" - subsystem: - - Phosphatidylinositol phosphate metabolism + - "Phosphatidylinositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: RE1514M + - id: "RE1514M" - name: "Long-Chain-Fatty-Acid- Coenzyme A Ligase" - metabolites: !!omap - m01334m: 1 @@ -240564,15 +240564,15 @@ - m02759m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000123983 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 - - rxnFrom: Recon3D - - eccodes: 6.2.1.3 - - references: PMID:10479480,PMID:10675551,PMID:11707336,PMID:9784915 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000123983 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.3" + - references: "PMID:10479480,PMID:10675551,PMID:11707336,PMID:9784915" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE1514X + - id: "RE1514X" - name: "Long-Chain-Fatty-Acid- Coenzyme A Ligase" - metabolites: !!omap - m01334p: 1 @@ -240583,15 +240583,15 @@ - m02759p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000123983 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 - - rxnFrom: Recon3D - - eccodes: 6.2.1.3 - - references: PMID:10479480,PMID:10675551,PMID:11707336,PMID:9784915 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000123983 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.3" + - references: "PMID:10479480,PMID:10675551,PMID:11707336,PMID:9784915" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE1516X + - id: "RE1516X" - name: "RE1516X" - metabolites: !!omap - m01802p: -1 @@ -240600,15 +240600,15 @@ - m03010p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: 1.3.99.13 - - references: PMID:10407780,PMID:11356167,PMID:8973539 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "1.3.99.13" + - references: "PMID:10407780,PMID:11356167,PMID:8973539" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE1517X + - id: "RE1517X" - name: "RE1517X" - metabolites: !!omap - m01577p: -1 @@ -240617,15 +240617,15 @@ - m03009p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: 1.3.99.13 - - references: PMID:10407780,PMID:11356167,PMID:8973539 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "1.3.99.13" + - references: "PMID:10407780,PMID:11356167,PMID:8973539" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE1518X + - id: "RE1518X" - name: "RE1518X" - metabolites: !!omap - m01576p: -1 @@ -240634,15 +240634,15 @@ - m03030p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: 1.3.99.13 - - references: PMID:10407780,PMID:11356167,PMID:8973539 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "1.3.99.13" + - references: "PMID:10407780,PMID:11356167,PMID:8973539" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE1519X + - id: "RE1519X" - name: "RE1519X" - metabolites: !!omap - m00678p: 1 @@ -240651,15 +240651,15 @@ - m01803p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: 1.3.99.13 - - references: PMID:10407780,PMID:11356167,PMID:8973539 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "1.3.99.13" + - references: "PMID:10407780,PMID:11356167,PMID:8973539" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE1525C + - id: "RE1525C" - name: "3-Hydroxyacyl Coenzyme A Dehydrogenase" - metabolites: !!omap - m00081c: -1 @@ -240669,15 +240669,15 @@ - m02553c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.1.1.35 - - references: PMID:10407780,PMID:7775433 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.35" + - references: "PMID:10407780,PMID:7775433" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE1526C + - id: "RE1526C" - name: "3-Hydroxyacyl Coenzyme A Dehydrogenase" - metabolites: !!omap - m00696c: -1 @@ -240687,15 +240687,15 @@ - m02553c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.1.1.35 - - references: PMID:11451959 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.35" + - references: "PMID:11451959" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE1527C + - id: "RE1527C" - name: "3-Hydroxyacyl Coenzyme A Dehydrogenase" - metabolites: !!omap - m00082c: -1 @@ -240705,15 +240705,15 @@ - m02553c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.1.1.35 - - references: PMID:11451959 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.35" + - references: "PMID:11451959" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE1711M + - id: "RE1711M" - name: "Alcohol Dehydrogenase" - metabolites: !!omap - m01102m: 1 @@ -240723,15 +240723,15 @@ - m02555m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147576 - - rxnFrom: Recon3D - - eccodes: 1.1.1.1 - - references: PMID:10336614 + - gene_reaction_rule: "ENSG00000147576" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.1" + - references: "PMID:10336614" - subsystem: - - Tryptophan metabolism + - "Tryptophan metabolism" - confidence_score: 0 - !!omap - - id: RE1796C + - id: "RE1796C" - name: "Steroid Delta-Isomerase" - metabolites: !!omap - m01182c: 1 @@ -240741,15 +240741,15 @@ - m02553c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 5.3.3.1 - - references: PMID:10599696,PMID:11067870,PMID:11454857,PMID:1401999 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "5.3.3.1" + - references: "PMID:10599696,PMID:11067870,PMID:11454857,PMID:1401999" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE1796M + - id: "RE1796M" - name: "Steroid Delta-Isomerase" - metabolites: !!omap - m00592m: -1 @@ -240759,15 +240759,15 @@ - m02553m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000203857 or ENSG00000203859 - - rxnFrom: Recon3D - - eccodes: 5.3.3.1 - - references: PMID:10599696,PMID:11067870,PMID:11454857,PMID:1401999 + - gene_reaction_rule: "ENSG00000203857 or ENSG00000203859" + - rxnFrom: "Recon3D" + - eccodes: "5.3.3.1" + - references: "PMID:10599696,PMID:11067870,PMID:11454857,PMID:1401999" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE1804C + - id: "RE1804C" - name: "RE1804C" - metabolites: !!omap - CE0233_c: -1 @@ -240777,15 +240777,15 @@ - m02553c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.5.3.11 - - references: PMID:9660774 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.5.3.11" + - references: "PMID:9660774" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE1804M + - id: "RE1804M" - name: "RE1804M" - metabolites: !!omap - m00756m: 1 @@ -240795,15 +240795,15 @@ - m02553m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135929 - - rxnFrom: Recon3D - - eccodes: 1.5.3.11 - - references: PMID:9660774 + - gene_reaction_rule: "ENSG00000135929" + - rxnFrom: "Recon3D" + - eccodes: "1.5.3.11" + - references: "PMID:9660774" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE1806C + - id: "RE1806C" - name: "Quinine 3-Monooxygenase" - metabolites: !!omap - m01078c: -1 @@ -240815,15 +240815,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.14.13.67 - - references: PMID:10706592,PMID:11454857,PMID:9931427 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.67" + - references: "PMID:10706592,PMID:11454857,PMID:9931427" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE1807C + - id: "RE1807C" - name: "RE1807C" - metabolites: !!omap - m00756c: -1 @@ -240834,15 +240834,15 @@ - m02555c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 5.3.3.8 - - references: PMID:9660774 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "5.3.3.8" + - references: "PMID:9660774" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE1807M + - id: "RE1807M" - name: "RE1807M" - metabolites: !!omap - m00756m: -1 @@ -240853,15 +240853,15 @@ - m02555m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135929 - - rxnFrom: Recon3D - - eccodes: 1.14.13.67 - - references: PMID:9660774 + - gene_reaction_rule: "ENSG00000135929" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.67" + - references: "PMID:9660774" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE1809C + - id: "RE1809C" - name: "Quinine 3-Monooxygenase" - metabolites: !!omap - m01085c: 1 @@ -240873,15 +240873,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.14.13.67 - - references: PMID:10706592,PMID:11454857,PMID:9931427 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.67" + - references: "PMID:10706592,PMID:11454857,PMID:9931427" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE1810M + - id: "RE1810M" - name: "3Alpha-Hydroxysteroid 3-Dehydrogenase (Si-Specific)" - metabolites: !!omap - m01095m: -1 @@ -240891,15 +240891,15 @@ - m02555m: 2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.1.1.50 - - references: PMID:11454857 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.50" + - references: "PMID:11454857" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE1811C + - id: "RE1811C" - name: "Quinine 3-Monooxygenase" - metabolites: !!omap - m01086c: 1 @@ -240911,15 +240911,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.14.13.67 - - references: PMID:10706592,PMID:11454857,PMID:9931427 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.67" + - references: "PMID:10706592,PMID:11454857,PMID:9931427" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE1812C + - id: "RE1812C" - name: "Quinine 3-Monooxygenase" - metabolites: !!omap - m01088c: 1 @@ -240931,15 +240931,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.14.13.67 - - references: PMID:10706592,PMID:11454857,PMID:9931427 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.67" + - references: "PMID:10706592,PMID:11454857,PMID:9931427" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE1826C + - id: "RE1826C" - name: "RE1826C" - metabolites: !!omap - CE0233_c: 1 @@ -240951,15 +240951,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.1.1.1 - - references: PMID:11454857 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.1" + - references: "PMID:11454857" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE1826M + - id: "RE1826M" - name: "RE1826M" - metabolites: !!omap - CE0233_m: 1 @@ -240971,15 +240971,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135929 - - rxnFrom: Recon3D - - eccodes: 5.3.3.1 - - references: PMID:11454857 + - gene_reaction_rule: "ENSG00000135929" + - rxnFrom: "Recon3D" + - eccodes: "5.3.3.1" + - references: "PMID:11454857" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE1827C + - id: "RE1827C" - name: "RE1827C" - metabolites: !!omap - m00623c: -1 @@ -240989,15 +240989,15 @@ - m02555c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 5.3.3.1 - - references: PMID:9660774 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "5.3.3.1" + - references: "PMID:9660774" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE1828C + - id: "RE1828C" - name: "RE1828C" - metabolites: !!omap - m00761c: 1 @@ -241009,15 +241009,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:9660774 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:9660774" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE1829C + - id: "RE1829C" - name: "RE1829C" - metabolites: !!omap - m00761c: -1 @@ -241027,15 +241027,15 @@ - m02555c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:9660774 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:9660774" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE1830C + - id: "RE1830C" - name: "RE1830C" - metabolites: !!omap - m00763c: -1 @@ -241046,15 +241046,15 @@ - m02555c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.14.13.67 - - references: PMID:9660774 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.67" + - references: "PMID:9660774" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE1835M + - id: "RE1835M" - name: "Palmitoyl Coenzyme A Hydrolase" - metabolites: !!omap - C02528_m: 1 @@ -241064,15 +241064,15 @@ - m02040m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000119673 - - rxnFrom: Recon3D - - eccodes: 3.1.2.2 - - references: PMID:10817395,PMID:10944470,PMID:11454857,PMID:11673457 + - gene_reaction_rule: "ENSG00000097021 or ENSG00000119673" + - rxnFrom: "Recon3D" + - eccodes: "3.1.2.2" + - references: "PMID:10817395,PMID:10944470,PMID:11454857,PMID:11673457" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE1836C + - id: "RE1836C" - name: "Propionyl Coenzyme A C2-Trimethyltridecanoyltransferase" - metabolites: !!omap - m00614c: -1 @@ -241083,15 +241083,15 @@ - m02774c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.3.1.154 - - references: PMID:10706581 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.154" + - references: "PMID:10706581" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE1836M + - id: "RE1836M" - name: "Propionyl Coenzyme A C2-Trimethyltridecanoyltransferase" - metabolites: !!omap - m00614m: -1 @@ -241102,15 +241102,15 @@ - m02774m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116171 - - rxnFrom: Recon3D - - eccodes: 2.3.1.154 - - references: PMID:10706581 + - gene_reaction_rule: "ENSG00000116171" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.154" + - references: "PMID:10706581" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE1836X + - id: "RE1836X" - name: "Propionyl Coenzyme A C2-Trimethyltridecanoyltransferase" - metabolites: !!omap - m00614p: -1 @@ -241121,15 +241121,15 @@ - m02774p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116171 - - rxnFrom: Recon3D - - eccodes: 2.3.1.154 - - references: PMID:10706581 + - gene_reaction_rule: "ENSG00000116171" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.154" + - references: "PMID:10706581" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE1860E + - id: "RE1860E" - name: "2',3'-Cyclic-Nucleotide 3'-Phosphodiesterase" - metabolites: !!omap - m00570s: -1 @@ -241138,15 +241138,15 @@ - m02040s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000173786 - - rxnFrom: Recon3D - - eccodes: 3.1.4.37 - - references: PMID:12225906 + - gene_reaction_rule: "ENSG00000173786" + - rxnFrom: "Recon3D" + - eccodes: "3.1.4.37" + - references: "PMID:12225906" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: RE1905C + - id: "RE1905C" - name: "RE1905C" - metabolites: !!omap - m00290c: -1 @@ -241158,15 +241158,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.5.1.18 - - references: PMID:9647871 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.5.1.18" + - references: "PMID:9647871" - subsystem: - - Vitamin A metabolism + - "Vitamin A metabolism" - confidence_score: 0 - !!omap - - id: RE1906C + - id: "RE1906C" - name: "RE1906C" - metabolites: !!omap - m01024c: 1 @@ -241178,15 +241178,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.5.1.18 - - references: PMID:9647871 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.5.1.18" + - references: "PMID:9647871" - subsystem: - - Vitamin A metabolism + - "Vitamin A metabolism" - confidence_score: 0 - !!omap - - id: RE1916X + - id: "RE1916X" - name: "Glutathione Transferase" - metabolites: !!omap - m01139p: 1 @@ -241194,15 +241194,15 @@ - m02356p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197448 - - rxnFrom: Recon3D - - eccodes: 2.5.1.18 - - references: PMID:10903891 + - gene_reaction_rule: "ENSG00000197448" + - rxnFrom: "Recon3D" + - eccodes: "2.5.1.18" + - references: "PMID:10903891" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: RE1957G + - id: "RE1957G" - name: "1-Phosphatidylinositol-4-Phosphate 5-Kinase" - metabolites: !!omap - m01285g: 1 @@ -241212,15 +241212,15 @@ - m02735g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107242 or ENSG00000143398 or ENSG00000186111 - - rxnFrom: Recon3D - - eccodes: 2.7.1.68 - - references: PMID:10231032,PMID:10358929,PMID:11493657,PMID:9211928 + - gene_reaction_rule: "ENSG00000107242 or ENSG00000143398 or ENSG00000186111" + - rxnFrom: "Recon3D" + - eccodes: "2.7.1.68" + - references: "PMID:10231032,PMID:10358929,PMID:11493657,PMID:9211928" - subsystem: - - Phosphatidylinositol phosphate metabolism + - "Phosphatidylinositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: RE1957R + - id: "RE1957R" - name: "1-Phosphatidylinositol-4-Phosphate 5-Kinase" - metabolites: !!omap - m01285r: 1 @@ -241230,15 +241230,15 @@ - m02735r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000150867 or ENSG00000166908 or ENSG00000276293 - - rxnFrom: Recon3D - - eccodes: 2.7.1.68 - - references: PMID:10231032,PMID:10358929,PMID:11493657,PMID:9211928 + - gene_reaction_rule: "ENSG00000150867 or ENSG00000166908 or ENSG00000276293" + - rxnFrom: "Recon3D" + - eccodes: "2.7.1.68" + - references: "PMID:10231032,PMID:10358929,PMID:11493657,PMID:9211928" - subsystem: - - Phosphatidylinositol phosphate metabolism + - "Phosphatidylinositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: RE2048N + - id: "RE2048N" - name: "Arachidonate 5-Lipoxygenase" - metabolites: !!omap - m00098n: 1 @@ -241247,15 +241247,15 @@ - m02630n: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012779 - - rxnFrom: Recon3D - - eccodes: 1.13.11.34 - - references: PMID:11323741,PMID:9870464 + - gene_reaction_rule: "ENSG00000012779" + - rxnFrom: "Recon3D" + - eccodes: "1.13.11.34" + - references: "PMID:11323741,PMID:9870464" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: RE2050R + - id: "RE2050R" - name: "Prostaglandin-Endoperoxide Synthase" - metabolites: !!omap - m00322r: 1 @@ -241263,15 +241263,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073756 or ENSG00000095303 - - rxnFrom: Recon3D - - eccodes: 1.14.99.1 - - references: PMID:12244105 + - gene_reaction_rule: "ENSG00000073756 or ENSG00000095303" + - rxnFrom: "Recon3D" + - eccodes: "1.14.99.1" + - references: "PMID:12244105" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: RE2051G + - id: "RE2051G" - name: "Phosphatidate Phosphatase" - metabolites: !!omap - m00534g: -1 @@ -241280,15 +241280,15 @@ - m02751g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162407 - - rxnFrom: Recon3D - - eccodes: 3.1.3.4 - - references: PMID:11641243 + - gene_reaction_rule: "ENSG00000162407" + - rxnFrom: "Recon3D" + - eccodes: "3.1.3.4" + - references: "PMID:11641243" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: RE2051R + - id: "RE2051R" - name: "Phosphatidate Phosphatase" - metabolites: !!omap - m00534r: -1 @@ -241297,15 +241297,15 @@ - m02751r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162407 - - rxnFrom: Recon3D - - eccodes: 3.1.3.4 - - references: PMID:11641243 + - gene_reaction_rule: "ENSG00000162407" + - rxnFrom: "Recon3D" + - eccodes: "3.1.3.4" + - references: "PMID:11641243" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: RE2078M + - id: "RE2078M" - name: "RE2078M" - metabolites: !!omap - m02040m: 1 @@ -241313,15 +241313,15 @@ - m02786m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10200320,PMID:234423 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10200320,PMID:234423" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: RE2146C + - id: "RE2146C" - name: "Glucuronosyltransferase" - metabolites: !!omap - CE2953_c: -1 @@ -241330,15 +241330,15 @@ - m03109c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000241635 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID:10702251 + - gene_reaction_rule: "ENSG00000241635" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID:10702251" - subsystem: - - Vitamin A metabolism + - "Vitamin A metabolism" - confidence_score: 0 - !!omap - - id: RE2152C + - id: "RE2152C" - name: "RE2152C" - metabolites: !!omap - CE1162_c: -1 @@ -241349,15 +241349,15 @@ - m02553c: 2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.14.99.1 - - references: PMID:9647871 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.14.99.1" + - references: "PMID:9647871" - subsystem: - - Vitamin A metabolism + - "Vitamin A metabolism" - confidence_score: 0 - !!omap - - id: RE2155R + - id: "RE2155R" - name: "Steroid 21-Monooxygenase" - metabolites: !!omap - m00604r: 1 @@ -241369,45 +241369,45 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000231852 - - rxnFrom: Recon3D - - eccodes: 1.14.99.10 - - references: PMID:12376740 + - gene_reaction_rule: "ENSG00000231852" + - rxnFrom: "Recon3D" + - eccodes: "1.14.99.10" + - references: "PMID:12376740" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: RE2202C + - id: "RE2202C" - name: "RE2202C" - metabolites: !!omap - CE5775_c: 1 - m02624c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10852960,PMID:11756445 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10852960,PMID:11756445" - subsystem: - - Vitamin A metabolism + - "Vitamin A metabolism" - confidence_score: 0 - !!omap - - id: RE2203C + - id: "RE2203C" - name: "RE2203C" - metabolites: !!omap - CE5776_c: 1 - m02624c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10852960,PMID:11756445 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10852960,PMID:11756445" - subsystem: - - Vitamin A metabolism + - "Vitamin A metabolism" - confidence_score: 0 - !!omap - - id: RE2221C + - id: "RE2221C" - name: "RE2221C" - metabolites: !!omap - CE1294_c: 1 @@ -241419,15 +241419,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11254748,PMID:12581873 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11254748,PMID:12581873" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: RE2221M + - id: "RE2221M" - name: "RE2221M" - metabolites: !!omap - CE1294_m: 1 @@ -241439,30 +241439,30 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135929 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11254748,PMID:12581873 + - gene_reaction_rule: "ENSG00000135929" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11254748,PMID:12581873" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: RE2250C + - id: "RE2250C" - name: "RE2250C" - metabolites: !!omap - CE5013_c: 1 - CE5932_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.1.1.6 - - references: PMID:9647871 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.1.1.6" + - references: "PMID:9647871" - subsystem: - - Vitamin A metabolism + - "Vitamin A metabolism" - confidence_score: 0 - !!omap - - id: RE2269E + - id: "RE2269E" - name: "Chymase" - metabolites: !!omap - m02040s: -2 @@ -241472,15 +241472,15 @@ - m02724s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000092009 - - rxnFrom: Recon3D - - eccodes: 3.4.21.39 - - references: PMID:1800960 + - gene_reaction_rule: "ENSG00000092009" + - rxnFrom: "Recon3D" + - eccodes: "3.4.21.39" + - references: "PMID:1800960" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: RE2270E + - id: "RE2270E" - name: "Carboxypeptidase A" - metabolites: !!omap - m02040s: -1 @@ -241489,15 +241489,15 @@ - m02360s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000091704 or ENSG00000158516 or ENSG00000158525 or ENSG00000165078 - - rxnFrom: Recon3D - - eccodes: 3.4.17.1 - - references: PMID:1800960 + - gene_reaction_rule: "ENSG00000091704 or ENSG00000158516 or ENSG00000158525 or ENSG00000165078" + - rxnFrom: "Recon3D" + - eccodes: "3.4.17.1" + - references: "PMID:1800960" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: RE2272L + - id: "RE2272L" - name: "Tripeptidyl-Peptidase I" - metabolites: !!omap - m02040l: -1 @@ -241506,15 +241506,15 @@ - m02568l: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000166340 - - rxnFrom: Recon3D - - eccodes: 3.4.14.9 - - references: PMID:12038963 + - gene_reaction_rule: "ENSG00000166340" + - rxnFrom: "Recon3D" + - eccodes: "3.4.14.9" + - references: "PMID:12038963" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: RE2273E + - id: "RE2273E" - name: "Carboxypeptidase A" - metabolites: !!omap - m02040s: -1 @@ -241523,15 +241523,15 @@ - m02570s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000091704 or ENSG00000158516 or ENSG00000158525 or ENSG00000165078 - - rxnFrom: Recon3D - - eccodes: 3.4.17.1 - - references: PMID:1309362 + - gene_reaction_rule: "ENSG00000091704 or ENSG00000158516 or ENSG00000158525 or ENSG00000165078" + - rxnFrom: "Recon3D" + - eccodes: "3.4.17.1" + - references: "PMID:1309362" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: RE2296X + - id: "RE2296X" - name: "Glutathione Transferase" - metabolites: !!omap - m01138p: 1 @@ -241539,15 +241539,15 @@ - m02026p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197448 - - rxnFrom: Recon3D - - eccodes: 2.5.1.18 - - references: PMID:10903891,PMID:9164836 + - gene_reaction_rule: "ENSG00000197448" + - rxnFrom: "Recon3D" + - eccodes: "2.5.1.18" + - references: "PMID:10903891,PMID:9164836" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: RE2327C + - id: "RE2327C" - name: "RE2327C" - metabolites: !!omap - m01328c: -1 @@ -241556,15 +241556,15 @@ - m03103c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.14.99.10 - - references: PMID:9223282 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.14.99.10" + - references: "PMID:9223282" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: RE2349M + - id: "RE2349M" - name: "Kynurenine-Oxoglutarate Transaminase" - metabolites: !!omap - m00788m: -1 @@ -241574,15 +241574,15 @@ - m03151m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109576 - - rxnFrom: Recon3D - - eccodes: 2.6.1.7 - - references: PMID:10559215,PMID:8908429 + - gene_reaction_rule: "ENSG00000109576" + - rxnFrom: "Recon3D" + - eccodes: "2.6.1.7" + - references: "PMID:10559215,PMID:8908429" - subsystem: - - Tryptophan metabolism + - "Tryptophan metabolism" - confidence_score: 0 - !!omap - - id: RE2375C + - id: "RE2375C" - name: "RE2375C" - metabolites: !!omap - CE5837_c: -1 @@ -241591,15 +241591,15 @@ - m02041c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.14.14.1 - - references: PMID:10385606 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.14.14.1" + - references: "PMID:10385606" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: RE2377C + - id: "RE2377C" - name: "RE2377C" - metabolites: !!omap - CE5839_c: -1 @@ -241608,15 +241608,15 @@ - m02041c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10385606 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10385606" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: RE2404R + - id: "RE2404R" - name: "Glucuronosyltransferase" - metabolites: !!omap - m00766r: -1 @@ -241625,15 +241625,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109181 or ENSG00000135226 or ENSG00000156096 or ENSG00000167165 or ENSG00000171234 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID:10191290 + - gene_reaction_rule: "ENSG00000109181 or ENSG00000135226 or ENSG00000156096 or ENSG00000167165 or ENSG00000171234 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID:10191290" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: RE2405R + - id: "RE2405R" - name: "Glucuronosyltransferase" - metabolites: !!omap - m01923r: -1 @@ -241642,15 +241642,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109181 or ENSG00000135226 or ENSG00000156096 or ENSG00000167165 or ENSG00000171234 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID:10191290 + - gene_reaction_rule: "ENSG00000109181 or ENSG00000135226 or ENSG00000156096 or ENSG00000167165 or ENSG00000171234 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID:10191290" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: RE2410N + - id: "RE2410N" - name: "7-Dehydrocholesterol Reductase" - metabolites: !!omap - m01189n: -1 @@ -241660,15 +241660,15 @@ - m02555n: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000172893 - - rxnFrom: Recon3D - - eccodes: 1.3.1.21 - - references: PMID:11111101 + - gene_reaction_rule: "ENSG00000172893" + - rxnFrom: "Recon3D" + - eccodes: "1.3.1.21" + - references: "PMID:11111101" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: RE2426C + - id: "RE2426C" - name: "RE2426C" - metabolites: !!omap - m01161c: 1 @@ -241677,15 +241677,15 @@ - m02460c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.4.21.59 - - references: PMID:12044950 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.4.21.59" + - references: "PMID:12044950" - subsystem: - - Tryptophan metabolism + - "Tryptophan metabolism" - confidence_score: 0 - !!omap - - id: RE2439C + - id: "RE2439C" - name: "RE2439C" - metabolites: !!omap - m01839c: 3 @@ -241695,15 +241695,15 @@ - m02631c: -4 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.5.1.18 - - references: PMID:12044950 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.5.1.18" + - references: "PMID:12044950" - subsystem: - - Tryptophan metabolism + - "Tryptophan metabolism" - confidence_score: 0 - !!omap - - id: RE2443M + - id: "RE2443M" - name: "Glutathione Transferase" - metabolites: !!omap - m00787m: -1 @@ -241712,15 +241712,15 @@ - m02040m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000100577 or ENSG00000197448 - - rxnFrom: Recon3D - - eccodes: 2.5.1.18 - - references: PMID:10409626 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000100577 or ENSG00000197448" + - rxnFrom: "Recon3D" + - eccodes: "2.5.1.18" + - references: "PMID:10409626" - subsystem: - - Tryptophan metabolism + - "Tryptophan metabolism" - confidence_score: 0 - !!omap - - id: RE2444C + - id: "RE2444C" - name: "RE2444C" - metabolites: !!omap - CE5829_c: -1 @@ -241729,15 +241729,15 @@ - m02040c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.5.1.18 - - references: PMID:10440096 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.5.1.18" + - references: "PMID:10440096" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: RE2445E + - id: "RE2445E" - name: "Peptidyl-Dipeptidase A" - metabolites: !!omap - m02040s: -1 @@ -241746,15 +241746,15 @@ - m02551s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130234 or ENSG00000159640 - - rxnFrom: Recon3D - - eccodes: 3.4.15.1 - - references: PMID:11244003 + - gene_reaction_rule: "ENSG00000130234 or ENSG00000159640" + - rxnFrom: "Recon3D" + - eccodes: "3.4.15.1" + - references: "PMID:11244003" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: RE2452C + - id: "RE2452C" - name: "RE2452C" - metabolites: !!omap - CE5016_c: 1 @@ -241762,15 +241762,15 @@ - m02040c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:7642543 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:7642543" - subsystem: - - Vitamin A metabolism + - "Vitamin A metabolism" - confidence_score: 0 - !!omap - - id: RE2474C + - id: "RE2474C" - name: "Quinine 3-Monooxygenase" - metabolites: !!omap - C06948_c: -1 @@ -241783,15 +241783,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.14.13.67 - - references: PMID:9586962 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.67" + - references: "PMID:9586962" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: RE2474R + - id: "RE2474R" - name: "Quinine 3-Monooxygenase" - metabolites: !!omap - C06948_r: -1 @@ -241804,15 +241804,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.13.67 - - references: PMID:9586962 + - gene_reaction_rule: "ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.67" + - references: "PMID:9586962" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: RE2493C + - id: "RE2493C" - name: "Methionine Synthase" - metabolites: !!omap - C06453_c: 1 @@ -241821,15 +241821,15 @@ - m02877c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.1.1.13 - - references: PMID:10377254 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.1.1.13" + - references: "PMID:10377254" - subsystem: - - Vitamin B12 metabolism + - "Vitamin B12 metabolism" - confidence_score: 0 - !!omap - - id: RE2513E + - id: "RE2513E" - name: "Peroxidase" - metabolites: !!omap - m01442s: -1 @@ -241839,15 +241839,15 @@ - m02156s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167419 - - rxnFrom: Recon3D - - eccodes: 1.11.1.7 - - references: PMID:10753880 + - gene_reaction_rule: "ENSG00000167419" + - rxnFrom: "Recon3D" + - eccodes: "1.11.1.7" + - references: "PMID:10753880" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: RE2513L + - id: "RE2513L" - name: "Peroxidase" - metabolites: !!omap - m01442l: -1 @@ -241857,15 +241857,15 @@ - m02156l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005381 or ENSG00000117592 - - rxnFrom: Recon3D - - eccodes: 1.11.1.7 - - references: PMID:10753880 + - gene_reaction_rule: "ENSG00000005381 or ENSG00000117592" + - rxnFrom: "Recon3D" + - eccodes: "1.11.1.7" + - references: "PMID:10753880" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: RE2513N + - id: "RE2513N" - name: "Peroxidase" - metabolites: !!omap - m01442n: -1 @@ -241875,15 +241875,15 @@ - m02156n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005381 - - rxnFrom: Recon3D - - eccodes: 1.11.1.7 - - references: PMID:10753880 + - gene_reaction_rule: "ENSG00000005381" + - rxnFrom: "Recon3D" + - eccodes: "1.11.1.7" + - references: "PMID:10753880" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: RE2514E + - id: "RE2514E" - name: "Peroxidase" - metabolites: !!omap - m02039s: -1 @@ -241893,15 +241893,15 @@ - m02591s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167419 - - rxnFrom: Recon3D - - eccodes: 1.11.1.7 - - references: PMID:9450756 + - gene_reaction_rule: "ENSG00000167419" + - rxnFrom: "Recon3D" + - eccodes: "1.11.1.7" + - references: "PMID:9450756" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: RE2514L + - id: "RE2514L" - name: "Peroxidase" - metabolites: !!omap - m02039l: -1 @@ -241911,15 +241911,15 @@ - m02591l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005381 or ENSG00000117592 - - rxnFrom: Recon3D - - eccodes: 1.11.1.7 - - references: PMID:9450756 + - gene_reaction_rule: "ENSG00000005381 or ENSG00000117592" + - rxnFrom: "Recon3D" + - eccodes: "1.11.1.7" + - references: "PMID:9450756" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: RE2514N + - id: "RE2514N" - name: "Peroxidase" - metabolites: !!omap - m02039n: -1 @@ -241929,15 +241929,15 @@ - m02591n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005381 - - rxnFrom: Recon3D - - eccodes: 1.11.1.7 - - references: PMID:9450756 + - gene_reaction_rule: "ENSG00000005381" + - rxnFrom: "Recon3D" + - eccodes: "1.11.1.7" + - references: "PMID:9450756" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: RE2522X + - id: "RE2522X" - name: "Glutathione Transferase" - metabolites: !!omap - m01135p: 1 @@ -241945,15 +241945,15 @@ - m02026p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197448 - - rxnFrom: Recon3D - - eccodes: 2.5.1.18 - - references: PMID:9038184,PMID:9164836 + - gene_reaction_rule: "ENSG00000197448" + - rxnFrom: "Recon3D" + - eccodes: "2.5.1.18" + - references: "PMID:9038184,PMID:9164836" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: RE2523X + - id: "RE2523X" - name: "Glutathione Transferase" - metabolites: !!omap - m01140p: 1 @@ -241961,15 +241961,15 @@ - m02618p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197448 - - rxnFrom: Recon3D - - eccodes: 2.5.1.18 - - references: PMID:9038184,PMID:9164836 + - gene_reaction_rule: "ENSG00000197448" + - rxnFrom: "Recon3D" + - eccodes: "2.5.1.18" + - references: "PMID:9038184,PMID:9164836" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: RE2524X + - id: "RE2524X" - name: "Glutathione Transferase" - metabolites: !!omap - m01137p: 1 @@ -241977,15 +241977,15 @@ - m02355p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197448 - - rxnFrom: Recon3D - - eccodes: 2.5.1.18 - - references: PMID:10903891 + - gene_reaction_rule: "ENSG00000197448" + - rxnFrom: "Recon3D" + - eccodes: "2.5.1.18" + - references: "PMID:10903891" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: RE2525X + - id: "RE2525X" - name: "Glutathione Transferase" - metabolites: !!omap - m01136p: 1 @@ -241993,15 +241993,15 @@ - m02026p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197448 - - rxnFrom: Recon3D - - eccodes: 2.5.1.18 - - references: PMID:10783391,PMID:12042665,PMID:12618591,PMID:12720545,PMID:14742434,PMID:1885604,PMID:2034681,PMID:2345169,PMID:7587384,PMID:7789971,PMID:8276420,PMID:8307579,PMID:8473333,PMID:8617495,PMID:8703034,PMID:9278457,PMID:9396740,PMID:9417084,PMID:9480897,PMID:9503014 + - gene_reaction_rule: "ENSG00000197448" + - rxnFrom: "Recon3D" + - eccodes: "2.5.1.18" + - references: "PMID:10783391,PMID:12042665,PMID:12618591,PMID:12720545,PMID:14742434,PMID:1885604,PMID:2034681,PMID:2345169,PMID:7587384,PMID:7789971,PMID:8276420,PMID:8307579,PMID:8473333,PMID:8617495,PMID:8703034,PMID:9278457,PMID:9396740,PMID:9417084,PMID:9480897,PMID:9503014" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: RE2541E + - id: "RE2541E" - name: "Beta-Glucuronidase" - metabolites: !!omap - m01923s: 1 @@ -242011,15 +242011,15 @@ - m02040s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000133116 - - rxnFrom: Recon3D - - eccodes: 3.2.1.31 - - references: PMID:10191290 + - gene_reaction_rule: "ENSG00000133116" + - rxnFrom: "Recon3D" + - eccodes: "3.2.1.31" + - references: "PMID:10191290" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: RE2541L + - id: "RE2541L" - name: "Beta-Glucuronidase" - metabolites: !!omap - m01923l: 1 @@ -242029,15 +242029,15 @@ - m02040l: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169919 - - rxnFrom: Recon3D - - eccodes: 3.2.1.31 - - references: PMID:10191290 + - gene_reaction_rule: "ENSG00000169919" + - rxnFrom: "Recon3D" + - eccodes: "3.2.1.31" + - references: "PMID:10191290" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: RE2591C + - id: "RE2591C" - name: "RE2591C" - metabolites: !!omap - m02039c: 1 @@ -242045,15 +242045,15 @@ - m03120c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.5.1.18 - - references: PMID:8325534 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.5.1.18" + - references: "PMID:8325534" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: RE2601C + - id: "RE2601C" - name: "RE2601C" - metabolites: !!omap - m02039c: 1 @@ -242062,15 +242062,15 @@ - m02460c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.4.15.1 - - references: PMID:12044950 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.4.15.1" + - references: "PMID:12044950" - subsystem: - - Tryptophan metabolism + - "Tryptophan metabolism" - confidence_score: 0 - !!omap - - id: RE2622C + - id: "RE2622C" - name: "Glucuronosyltransferase" - metabolites: !!omap - CE2615_c: -1 @@ -242080,15 +242080,15 @@ - m03109c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000241635 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID:10537291 + - gene_reaction_rule: "ENSG00000241635" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID:10537291" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: RE2622R + - id: "RE2622R" - name: "Glucuronosyltransferase" - metabolites: !!omap - CE2615_r: -1 @@ -242098,15 +242098,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109181 or ENSG00000135226 or ENSG00000156096 or ENSG00000167165 or ENSG00000171234 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID:10537291 + - gene_reaction_rule: "ENSG00000109181 or ENSG00000135226 or ENSG00000156096 or ENSG00000167165 or ENSG00000171234 or ENSG00000196620 or ENSG00000197888 or ENSG00000213759 or ENSG00000240224 or ENSG00000241119 or ENSG00000241635 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID:10537291" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: RE2625M + - id: "RE2625M" - name: "RE2625M" - metabolites: !!omap - m00751m: 1 @@ -242116,15 +242116,15 @@ - m02553m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135929 - - rxnFrom: Recon3D - - eccodes: 1.14.13.67 - - references: PMID:9660774 + - gene_reaction_rule: "ENSG00000135929" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.67" + - references: "PMID:9660774" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE2626C + - id: "RE2626C" - name: "RE2626C" - metabolites: !!omap - m00751c: -1 @@ -242135,15 +242135,15 @@ - m02555c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:9210654,PMID:9660774 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:9210654,PMID:9660774" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE2626M + - id: "RE2626M" - name: "RE2626M" - metabolites: !!omap - m00751m: -1 @@ -242154,15 +242154,15 @@ - m02555m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135929 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:9210654,PMID:9660774 + - gene_reaction_rule: "ENSG00000135929" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:9210654,PMID:9660774" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE2632C + - id: "RE2632C" - name: "RE2632C" - metabolites: !!omap - m00761c: 1 @@ -242174,15 +242174,15 @@ - m02630c: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.1.1.13 - - references: PMID:9660774 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.1.1.13" + - references: "PMID:9660774" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE2633C + - id: "RE2633C" - name: "RE2633C" - metabolites: !!omap - m00747c: 1 @@ -242192,15 +242192,15 @@ - m02555c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.11.1.7 - - references: PMID:10706592,PMID:9931427 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.11.1.7" + - references: "PMID:10706592,PMID:9931427" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE2675C + - id: "RE2675C" - name: "RE2675C" - metabolites: !!omap - m01430c: 1 @@ -242212,15 +242212,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10722759,PMID:10880336,PMID:11937514,PMID:8449895 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10722759,PMID:10880336,PMID:11937514,PMID:8449895" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: RE2677E + - id: "RE2677E" - name: "N-Acylsphingosine Galactosyltransferase" - metabolites: !!omap - m01430s: -1 @@ -242230,15 +242230,15 @@ - m03107s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.4.1.47 - - references: PMID:423891,PMID:9125199 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.47" + - references: "PMID:423891,PMID:9125199" - subsystem: - - Glycosphingolipid metabolism + - "Glycosphingolipid metabolism" - confidence_score: 0 - !!omap - - id: RE2677N + - id: "RE2677N" - name: "N-Acylsphingosine Galactosyltransferase" - metabolites: !!omap - m01430n: -1 @@ -242248,15 +242248,15 @@ - m03107n: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.4.1.47 - - references: PMID:423891,PMID:9125199 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.47" + - references: "PMID:423891,PMID:9125199" - subsystem: - - Glycosphingolipid metabolism + - "Glycosphingolipid metabolism" - confidence_score: 0 - !!omap - - id: RE2718G + - id: "RE2718G" - name: "Galactosylceramide Sulfotransferase" - metabolites: !!omap - m02039g: 1 @@ -242266,15 +242266,15 @@ - m02810g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000128242 - - rxnFrom: Recon3D - - eccodes: 2.8.2.11 - - references: PMID:1330860 + - gene_reaction_rule: "ENSG00000128242" + - rxnFrom: "Recon3D" + - eccodes: "2.8.2.11" + - references: "PMID:1330860" - subsystem: - - Glycosphingolipid metabolism + - "Glycosphingolipid metabolism" - confidence_score: 0 - !!omap - - id: RE2722G + - id: "RE2722G" - name: "Galactosylceramide Sulfotransferase" - metabolites: !!omap - galgluside_hs_g: -1 @@ -242283,15 +242283,15 @@ - m02682g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000128242 - - rxnFrom: Recon3D - - eccodes: 2.8.2.11 - - references: PMID:1330860 + - gene_reaction_rule: "ENSG00000128242" + - rxnFrom: "Recon3D" + - eccodes: "2.8.2.11" + - references: "PMID:1330860" - subsystem: - - Glycosphingolipid metabolism + - "Glycosphingolipid metabolism" - confidence_score: 0 - !!omap - - id: RE2746C + - id: "RE2746C" - name: "RE2746C" - metabolites: !!omap - m01625c: 1 @@ -242299,15 +242299,15 @@ - m02459c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:12044950 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:12044950" - subsystem: - - Tryptophan metabolism + - "Tryptophan metabolism" - confidence_score: 0 - !!omap - - id: RE2768R + - id: "RE2768R" - name: "RE2768R" - metabolites: !!omap - m00284r: 1 @@ -242319,15 +242319,15 @@ - m02555r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000148795 - - rxnFrom: Recon3D - - eccodes: 2.3.1.65 - - references: PMID:10049998 + - gene_reaction_rule: "ENSG00000148795" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.65" + - references: "PMID:10049998" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: RE2814M + - id: "RE2814M" - name: "RE2814M" - metabolites: !!omap - m00623m: -1 @@ -242337,15 +242337,15 @@ - m02553m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.5.1.14 - - references: PMID:0 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.5.1.14" + - references: "PMID:0" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE2852C + - id: "RE2852C" - name: "RE2852C" - metabolites: !!omap - m00275c: 3 @@ -242355,15 +242355,15 @@ - m02631c: -5 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10694406 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10694406" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: RE2888N + - id: "RE2888N" - name: "Peroxidase" - metabolites: !!omap - m01315n: 1 @@ -242373,15 +242373,15 @@ - m03121n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005381 - - rxnFrom: Recon3D - - eccodes: 1.11.1.7 - - references: PMID:10600166 + - gene_reaction_rule: "ENSG00000005381" + - rxnFrom: "Recon3D" + - eccodes: "1.11.1.7" + - references: "PMID:10600166" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: RE2898C + - id: "RE2898C" - name: "RE2898C" - metabolites: !!omap - m01655c: 1 @@ -242389,15 +242389,15 @@ - m02489c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.1.1.188 - - references: PMID:11160563 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.188" + - references: "PMID:11160563" - subsystem: - - Vitamin C metabolism + - "Vitamin C metabolism" - confidence_score: 0 - !!omap - - id: RE2908C + - id: "RE2908C" - name: "3-Hydroxyacyl Coenzyme A Dehydrogenase" - metabolites: !!omap - m00177c: -1 @@ -242407,15 +242407,15 @@ - m02553c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.1.1.35 - - references: PMID:11427448,PMID:7923814,PMID:8319713,PMID:9920399 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.35" + - references: "PMID:11427448,PMID:7923814,PMID:8319713,PMID:9920399" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE2909C + - id: "RE2909C" - name: "3-Hydroxyacyl Coenzyme A Dehydrogenase" - metabolites: !!omap - m00886c: 1 @@ -242425,15 +242425,15 @@ - m02553c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.1.1.35 - - references: PMID:11427448,PMID:7923814,PMID:8319713,PMID:9920399 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.35" + - references: "PMID:11427448,PMID:7923814,PMID:8319713,PMID:9920399" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE2910C + - id: "RE2910C" - name: "3-Hydroxyacyl Coenzyme A Dehydrogenase" - metabolites: !!omap - CE0692_c: 1 @@ -242443,15 +242443,15 @@ - m02553c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.1.1.35 - - references: PMID:11427448 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.35" + - references: "PMID:11427448" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE2910M + - id: "RE2910M" - name: "3-Hydroxyacyl Coenzyme A Dehydrogenase" - metabolites: !!omap - CE0692_m: 1 @@ -242461,15 +242461,15 @@ - m02553m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 or ENSG00000084754 or ENSG00000113790 or ENSG00000133835 or ENSG00000138029 or ENSG00000138796 - - rxnFrom: Recon3D - - eccodes: 1.1.1.35 - - references: PMID:11427448 + - gene_reaction_rule: "ENSG00000072506 or ENSG00000084754 or ENSG00000113790 or ENSG00000133835 or ENSG00000138029 or ENSG00000138796" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.35" + - references: "PMID:11427448" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE2910X + - id: "RE2910X" - name: "3-Hydroxyacyl Coenzyme A Dehydrogenase" - metabolites: !!omap - CE0692_p: 1 @@ -242479,15 +242479,15 @@ - m02553p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113790 or ENSG00000133835 - - rxnFrom: Recon3D - - eccodes: 1.1.1.35 - - references: PMID:11427448 + - gene_reaction_rule: "ENSG00000113790 or ENSG00000133835" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.35" + - references: "PMID:11427448" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE2911C + - id: "RE2911C" - name: "Alcohol Dehydrogenase (NADP+)" - metabolites: !!omap - C03372_c: -1 @@ -242497,15 +242497,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117448 - - rxnFrom: Recon3D - - eccodes: 1.1.1.2 - - references: PMID:7669785 + - gene_reaction_rule: "ENSG00000117448" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.2" + - references: "PMID:7669785" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: RE2912M + - id: "RE2912M" - name: "Long-Chain-Fatty-Acid- Coenzyme A Ligase" - metabolites: !!omap - m01334m: 1 @@ -242516,15 +242516,15 @@ - m02759m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000123983 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 - - rxnFrom: Recon3D - - eccodes: 6.2.1.3 - - references: PMID:10479480,PMID:9784915 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000123983 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.3" + - references: "PMID:10479480,PMID:9784915" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE2912X + - id: "RE2912X" - name: "Long-Chain-Fatty-Acid- Coenzyme A Ligase" - metabolites: !!omap - m01334p: 1 @@ -242535,15 +242535,15 @@ - m02759p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000123983 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 - - rxnFrom: Recon3D - - eccodes: 6.2.1.3 - - references: PMID:10479480,PMID:9784915 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000123983 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.3" + - references: "PMID:10479480,PMID:9784915" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE2913X + - id: "RE2913X" - name: "RE2913X" - metabolites: !!omap - m01802p: -1 @@ -242552,15 +242552,15 @@ - m03020p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: 1.3.99.3 - - references: PMID:1047780,PMID:11135616,PMID:8973539 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "1.3.99.3" + - references: "PMID:1047780,PMID:11135616,PMID:8973539" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE2914X + - id: "RE2914X" - name: "RE2914X" - metabolites: !!omap - m00118p: -1 @@ -242569,15 +242569,15 @@ - m03023p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: 1.3.99.3 - - references: PMID:1047780,PMID:11135616,PMID:8973539 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "1.3.99.3" + - references: "PMID:1047780,PMID:11135616,PMID:8973539" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE2915M + - id: "RE2915M" - name: "RE2915M" - metabolites: !!omap - CE2596_m: -1 @@ -242586,15 +242586,15 @@ - m01803m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115361 or ENSG00000117054 or ENSG00000161533 or ENSG00000196177 - - rxnFrom: Recon3D - - eccodes: 1.3.99.3 - - references: PMID:1047780,PMID:11135616,PMID:8973539 + - gene_reaction_rule: "ENSG00000115361 or ENSG00000117054 or ENSG00000161533 or ENSG00000196177" + - rxnFrom: "Recon3D" + - eccodes: "1.3.99.3" + - references: "PMID:1047780,PMID:11135616,PMID:8973539" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE2915X + - id: "RE2915X" - name: "RE2915X" - metabolites: !!omap - CE2596_p: -1 @@ -242603,15 +242603,15 @@ - m01803p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: 1.3.99.3 - - references: PMID:1047780,PMID:11135616,PMID:8973539 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "1.3.99.3" + - references: "PMID:1047780,PMID:11135616,PMID:8973539" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE2921M + - id: "RE2921M" - name: "Enoyl Coenzyme A Hydratase" - metabolites: !!omap - CE2596_m: -1 @@ -242619,15 +242619,15 @@ - m02040m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 or ENSG00000113790 or ENSG00000127884 or ENSG00000138029 - - rxnFrom: Recon3D - - eccodes: 4.2.1.17 - - references: PMID:10407780,PMID:7923814,PMID:9568246,PMID:9920399 + - gene_reaction_rule: "ENSG00000084754 or ENSG00000113790 or ENSG00000127884 or ENSG00000138029" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.17" + - references: "PMID:10407780,PMID:7923814,PMID:9568246,PMID:9920399" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE2921X + - id: "RE2921X" - name: "Enoyl Coenzyme A Hydratase" - metabolites: !!omap - CE2596_p: -1 @@ -242635,15 +242635,15 @@ - m02040p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113790 - - rxnFrom: Recon3D - - eccodes: 4.2.1.17 - - references: PMID:10407780,PMID:7923814,PMID:9568246,PMID:9920399 + - gene_reaction_rule: "ENSG00000113790" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.17" + - references: "PMID:10407780,PMID:7923814,PMID:9568246,PMID:9920399" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE2972G + - id: "RE2972G" - name: "1-Phosphatidylinositol 4-Kinase" - metabolites: !!omap - m00554g: -1 @@ -242653,15 +242653,15 @@ - m02736g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000143393 or ENSG00000241973 - - rxnFrom: Recon3D - - eccodes: 2.7.1.67 - - references: PMID:10358929,PMID:11493657,PMID:7961848,PMID:9211928 + - gene_reaction_rule: "ENSG00000143393 or ENSG00000241973" + - rxnFrom: "Recon3D" + - eccodes: "2.7.1.67" + - references: "PMID:10358929,PMID:11493657,PMID:7961848,PMID:9211928" - subsystem: - - Phosphatidylinositol phosphate metabolism + - "Phosphatidylinositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: RE2972M + - id: "RE2972M" - name: "1-Phosphatidylinositol 4-Kinase" - metabolites: !!omap - m00554m: -1 @@ -242671,15 +242671,15 @@ - m02736m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000143393 or ENSG00000241973 - - rxnFrom: Recon3D - - eccodes: 2.7.1.67 - - references: PMID:10358929,PMID:11493657,PMID:7961848,PMID:9211928 + - gene_reaction_rule: "ENSG00000143393 or ENSG00000241973" + - rxnFrom: "Recon3D" + - eccodes: "2.7.1.67" + - references: "PMID:10358929,PMID:11493657,PMID:7961848,PMID:9211928" - subsystem: - - Phosphatidylinositol phosphate metabolism + - "Phosphatidylinositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: RE2972R + - id: "RE2972R" - name: "Phosphatidylinositol 3-Kinase" - metabolites: !!omap - m00554r: -1 @@ -242689,15 +242689,15 @@ - m02736r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000143393 or ENSG00000241973 - - rxnFrom: Recon3D - - eccodes: 2.7.1.137 - - references: PMID:10358929,PMID:11493657,PMID:9043658,PMID:9211928 + - gene_reaction_rule: "ENSG00000143393 or ENSG00000241973" + - rxnFrom: "Recon3D" + - eccodes: "2.7.1.137" + - references: "PMID:10358929,PMID:11493657,PMID:9043658,PMID:9211928" - subsystem: - - Phosphatidylinositol phosphate metabolism + - "Phosphatidylinositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: RE2973N + - id: "RE2973N" - name: "Phosphatidylinositol 3-Kinase" - metabolites: !!omap - m00554n: -1 @@ -242707,15 +242707,15 @@ - m02735n: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000011405 and ENSG00000133056) or ENSG00000139144 - - rxnFrom: Recon3D - - eccodes: 2.7.1.137 - - references: PMID:10358929,PMID:11493657,PMID:9043658,PMID:9211928 + - gene_reaction_rule: "(ENSG00000011405 and ENSG00000133056) or ENSG00000139144" + - rxnFrom: "Recon3D" + - eccodes: "2.7.1.137" + - references: "PMID:10358929,PMID:11493657,PMID:9043658,PMID:9211928" - subsystem: - - Phosphatidylinositol phosphate metabolism + - "Phosphatidylinositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: RE2974G + - id: "RE2974G" - name: "1-Phosphatidylinositol-4-Phosphate 5-Kinase" - metabolites: !!omap - m00552g: -1 @@ -242725,15 +242725,15 @@ - m02735g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107242 or ENSG00000143398 or ENSG00000186111 - - rxnFrom: Recon3D - - eccodes: 2.7.1.68 - - references: PMID:10231032,PMID:10358929,PMID:11493657,PMID:9211928 + - gene_reaction_rule: "ENSG00000107242 or ENSG00000143398 or ENSG00000186111" + - rxnFrom: "Recon3D" + - eccodes: "2.7.1.68" + - references: "PMID:10231032,PMID:10358929,PMID:11493657,PMID:9211928" - subsystem: - - Phosphatidylinositol phosphate metabolism + - "Phosphatidylinositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: RE2974N + - id: "RE2974N" - name: "1-Phosphatidylinositol-4-Phosphate 5-Kinase" - metabolites: !!omap - m00552n: -1 @@ -242743,15 +242743,15 @@ - m02735n: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.7.1.68 - - references: PMID:10231032,PMID:10358929,PMID:11493657,PMID:9211928 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.7.1.68" + - references: "PMID:10231032,PMID:10358929,PMID:11493657,PMID:9211928" - subsystem: - - Phosphatidylinositol phosphate metabolism + - "Phosphatidylinositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: RE2974R + - id: "RE2974R" - name: "1-Phosphatidylinositol-4-Phosphate 5-Kinase" - metabolites: !!omap - m00552r: -1 @@ -242761,15 +242761,15 @@ - m02735r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000150867 or ENSG00000166908 or ENSG00000276293 - - rxnFrom: Recon3D - - eccodes: 2.7.1.68 - - references: PMID:10231032,PMID:10358929,PMID:11493657,PMID:9211928 + - gene_reaction_rule: "ENSG00000150867 or ENSG00000166908 or ENSG00000276293" + - rxnFrom: "Recon3D" + - eccodes: "2.7.1.68" + - references: "PMID:10231032,PMID:10358929,PMID:11493657,PMID:9211928" - subsystem: - - Phosphatidylinositol phosphate metabolism + - "Phosphatidylinositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: RE2977C + - id: "RE2977C" - name: "Alcohol Dehydrogenase (NADP+)" - metabolites: !!omap - C03968_c: 1 @@ -242779,15 +242779,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117448 - - rxnFrom: Recon3D - - eccodes: 1.1.1.2 - - references: PMID:3615425 + - gene_reaction_rule: "ENSG00000117448" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.2" + - references: "PMID:3615425" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: RE2985M + - id: "RE2985M" - name: "Acyl Coenzyme A Oxidase" - metabolites: !!omap - m00682m: 1 @@ -242796,15 +242796,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: 1.3.3.6 - - references: PMID:10407780,PMID:7775433 + - gene_reaction_rule: "ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "1.3.3.6" + - references: "PMID:10407780,PMID:7775433" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE2998M + - id: "RE2998M" - name: "Acyl Coenzyme A Oxidase" - metabolites: !!omap - m01576m: -1 @@ -242813,45 +242813,45 @@ - m03030m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: 1.3.3.6 - - references: PMID:10407780,PMID:7775433 + - gene_reaction_rule: "ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "1.3.3.6" + - references: "PMID:10407780,PMID:7775433" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE2999M + - id: "RE2999M" - name: "Dodecenoyl Coenzyme A Isomerase" - metabolites: !!omap - CE5117_m: 1 - m03030m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113790 or ENSG00000167969 or ENSG00000198721 - - rxnFrom: Recon3D - - eccodes: 5.3.3.8 - - references: PMID:10407780,PMID:7775433 + - gene_reaction_rule: "ENSG00000113790 or ENSG00000167969 or ENSG00000198721" + - rxnFrom: "Recon3D" + - eccodes: "5.3.3.8" + - references: "PMID:10407780,PMID:7775433" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3000M + - id: "RE3000M" - name: "RE3000M" - metabolites: !!omap - CE5117_m: -1 - CE5118_m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104823 - - rxnFrom: Recon3D - - eccodes: 2.3.1.16 - - references: PMID:10407780,PMID:7775433 + - gene_reaction_rule: "ENSG00000104823" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.16" + - references: "PMID:10407780,PMID:7775433" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3001M + - id: "RE3001M" - name: "2,4-Dienoyl Coenzyme A Reductase (NADPH)" - metabolites: !!omap - CE5118_m: -1 @@ -242861,30 +242861,30 @@ - m02555m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104325 - - rxnFrom: Recon3D - - eccodes: 1.3.1.34 - - references: PMID:10407780,PMID:7775433 + - gene_reaction_rule: "ENSG00000104325" + - rxnFrom: "Recon3D" + - eccodes: "1.3.1.34" + - references: "PMID:10407780,PMID:7775433" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3003M + - id: "RE3003M" - name: "Dodecenoyl Coenzyme A Isomerase" - metabolites: !!omap - CE5119_m: 1 - CE5120_m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113790 or ENSG00000167969 or ENSG00000198721 - - rxnFrom: Recon3D - - eccodes: 5.3.3.8 - - references: PMID:10407780,PMID:7775433 + - gene_reaction_rule: "ENSG00000113790 or ENSG00000167969 or ENSG00000198721" + - rxnFrom: "Recon3D" + - eccodes: "5.3.3.8" + - references: "PMID:10407780,PMID:7775433" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3004M + - id: "RE3004M" - name: "Enoyl Coenzyme A Hydratase" - metabolites: !!omap - CE4790_m: 1 @@ -242892,15 +242892,15 @@ - m02040m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 or ENSG00000113790 or ENSG00000127884 or ENSG00000138029 - - rxnFrom: Recon3D - - eccodes: 4.2.1.17 - - references: PMID:10407780,PMID:7775433 + - gene_reaction_rule: "ENSG00000084754 or ENSG00000113790 or ENSG00000127884 or ENSG00000138029" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.17" + - references: "PMID:10407780,PMID:7775433" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3005M + - id: "RE3005M" - name: "3-Hydroxyacyl Coenzyme A Dehydrogenase" - metabolites: !!omap - CE4790_m: -1 @@ -242910,15 +242910,15 @@ - m02553m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 or ENSG00000113790 or ENSG00000133835 or ENSG00000138796 - - rxnFrom: Recon3D - - eccodes: 1.1.1.35 - - references: PMID:10407780,PMID:7775433 + - gene_reaction_rule: "ENSG00000072506 or ENSG00000113790 or ENSG00000133835 or ENSG00000138796" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.35" + - references: "PMID:10407780,PMID:7775433" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3006M + - id: "RE3006M" - name: "Acetyl Coenzyme A C-Acyltransferase" - metabolites: !!omap - CE4792_m: -1 @@ -242927,15 +242927,15 @@ - m01597m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 or ENSG00000138029 or ENSG00000167315 - - rxnFrom: Recon3D - - eccodes: 2.3.1.16 - - references: PMID:10407780,PMID:7775433 + - gene_reaction_rule: "ENSG00000084754 or ENSG00000138029 or ENSG00000167315" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.16" + - references: "PMID:10407780,PMID:7775433" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3039C + - id: "RE3039C" - name: "RE3039C" - metabolites: !!omap - C01264_c: 1 @@ -242944,15 +242944,15 @@ - m01597c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:0 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:0" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: RE3045C + - id: "RE3045C" - name: "Alkylacetylglycerophosphatase" - metabolites: !!omap - C01264_c: -1 @@ -242961,15 +242961,15 @@ - m02751c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.3.59 - - references: PMID:8786821 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.3.59" + - references: "PMID:8786821" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: RE3066X + - id: "RE3066X" - name: "Phytanoyl Coenzyme A Dioxygenase" - metabolites: !!omap - CE5122_p: -1 @@ -242980,15 +242980,15 @@ - m02943p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107537 - - rxnFrom: Recon3D - - eccodes: 1.14.11.18 - - references: PMID:8954107 + - gene_reaction_rule: "ENSG00000107537" + - rxnFrom: "Recon3D" + - eccodes: "1.14.11.18" + - references: "PMID:8954107" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3072X + - id: "RE3072X" - name: "RE3072X" - metabolites: !!omap - CE5123_p: -1 @@ -242996,15 +242996,15 @@ - m01836p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000131373 - - rxnFrom: Recon3D - - eccodes: 1.2.1.3 - - references: PMID:10468558 + - gene_reaction_rule: "ENSG00000131373" + - rxnFrom: "Recon3D" + - eccodes: "1.2.1.3" + - references: "PMID:10468558" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3073X + - id: "RE3073X" - name: "Long-Chain-Aldehyde Dehydrogenase" - metabolites: !!omap - m00564p: -1 @@ -243015,15 +243015,15 @@ - m02766p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.2.1.48 - - references: PMID:11356164,PMID:9662422 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.2.1.48" + - references: "PMID:11356164,PMID:9662422" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3074X + - id: "RE3074X" - name: "Long-Chain-Fatty-Acid- Coenzyme A Ligase" - metabolites: !!omap - m00078p: 1 @@ -243034,15 +243034,15 @@ - m02766p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000123983 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 - - rxnFrom: Recon3D - - eccodes: 6.2.1.3 - - references: PMID:11060359,PMID:11356164 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000123983 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.3" + - references: "PMID:11060359,PMID:11356164" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3075C + - id: "RE3075C" - name: "Phytanate- Coenzyme A Ligase" - metabolites: !!omap - CE5122_c: 1 @@ -243053,15 +243053,15 @@ - m02759c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 6.2.1.24 - - references: PMID:11356164 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.24" + - references: "PMID:11356164" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3075X + - id: "RE3075X" - name: "Phytanate- Coenzyme A Ligase" - metabolites: !!omap - CE5122_p: 1 @@ -243072,15 +243072,15 @@ - m02759p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000140284 - - rxnFrom: Recon3D - - eccodes: 6.2.1.24 - - references: PMID:11356164 + - gene_reaction_rule: "ENSG00000140284" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.24" + - references: "PMID:11356164" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3079C + - id: "RE3079C" - name: "RE3079C" - metabolites: !!omap - m00075c: 1 @@ -243091,15 +243091,15 @@ - m02766c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.14.13.30 - - references: PMID:11356164 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.30" + - references: "PMID:11356164" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3095L + - id: "RE3095L" - name: "Peroxidase" - metabolites: !!omap - m01736l: -1 @@ -243108,15 +243108,15 @@ - m02041l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005381 or ENSG00000117592 - - rxnFrom: Recon3D - - eccodes: 1.11.1.7 - - references: PMID:9164836 + - gene_reaction_rule: "ENSG00000005381 or ENSG00000117592" + - rxnFrom: "Recon3D" + - eccodes: "1.11.1.7" + - references: "PMID:9164836" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: RE3095X + - id: "RE3095X" - name: "Peroxidase" - metabolites: !!omap - m01736p: -1 @@ -243125,15 +243125,15 @@ - m02041p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.11.1.7 - - references: PMID:9164836 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.11.1.7" + - references: "PMID:9164836" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: RE3103R + - id: "RE3103R" - name: "RE3103R" - metabolites: !!omap - m00859r: 1 @@ -243144,15 +243144,15 @@ - m02444r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000066322 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: Recon3D - - eccodes: 3.3.2.9 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000066322 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "Recon3D" + - eccodes: "3.3.2.9" + - references: "PMID:10970790" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3104R + - id: "RE3104R" - name: "RE3104R" - metabolites: !!omap - m01697r: 1 @@ -243162,15 +243162,15 @@ - m03029r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066322 - - rxnFrom: Recon3D - - eccodes: 3.3.2.9 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000066322" + - rxnFrom: "Recon3D" + - eccodes: "3.3.2.9" + - references: "PMID:10970790" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3106R + - id: "RE3106R" - name: "RE3106R" - metabolites: !!omap - m00125r: 1 @@ -243180,15 +243180,15 @@ - m02555r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066322 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000066322" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10970790" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3110R + - id: "RE3110R" - name: "RE3110R" - metabolites: !!omap - m00108r: -1 @@ -243199,15 +243199,15 @@ - m02444r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000066322 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: Recon3D - - eccodes: 3.3.2.9 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000066322 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "Recon3D" + - eccodes: "3.3.2.9" + - references: "PMID:10970790" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3111M + - id: "RE3111M" - name: "3Beta-Hydroxy-Delta5-Steroid Dehydrogenase" - metabolites: !!omap - m01069m: 1 @@ -243217,15 +243217,15 @@ - m02553m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000203857 or ENSG00000203859 - - rxnFrom: Recon3D - - eccodes: 1.1.1.145 - - references: PMID:10487690,PMID:11134149 + - gene_reaction_rule: "ENSG00000203857 or ENSG00000203859" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.145" + - references: "PMID:10487690,PMID:11134149" - subsystem: - - Androgen metabolism + - "Androgen metabolism" - confidence_score: 0 - !!omap - - id: RE3112R + - id: "RE3112R" - name: "RE3112R" - metabolites: !!omap - m00708r: 1 @@ -243235,15 +243235,15 @@ - m02555r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066322 - - rxnFrom: Recon3D - - eccodes: 3.1.3.59 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000066322" + - rxnFrom: "Recon3D" + - eccodes: "3.1.3.59" + - references: "PMID:10970790" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3113R + - id: "RE3113R" - name: "RE3113R" - metabolites: !!omap - m00708r: -1 @@ -243251,15 +243251,15 @@ - m02040r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066322 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000066322" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10970790" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3119R + - id: "RE3119R" - name: "RE3119R" - metabolites: !!omap - m00121r: 1 @@ -243269,15 +243269,15 @@ - m02555r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066322 - - rxnFrom: Recon3D - - eccodes: 1.14.11.18 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000066322" + - rxnFrom: "Recon3D" + - eccodes: "1.14.11.18" + - references: "PMID:10970790" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3120R + - id: "RE3120R" - name: "RE3120R" - metabolites: !!omap - m00103r: -1 @@ -243288,15 +243288,15 @@ - m02444r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000066322 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: Recon3D - - eccodes: 1.2.1.48 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000066322 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "Recon3D" + - eccodes: "1.2.1.48" + - references: "PMID:10970790" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3121R + - id: "RE3121R" - name: "RE3121R" - metabolites: !!omap - m00713r: 1 @@ -243306,15 +243306,15 @@ - m02555r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066322 - - rxnFrom: Recon3D - - eccodes: 6.2.1.24 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000066322" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.24" + - references: "PMID:10970790" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3122R + - id: "RE3122R" - name: "RE3122R" - metabolites: !!omap - m00679r: 1 @@ -243322,15 +243322,15 @@ - m02040r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066322 - - rxnFrom: Recon3D - - eccodes: 1.2.1.48 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000066322" + - rxnFrom: "Recon3D" + - eccodes: "1.2.1.48" + - references: "PMID:10970790" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3123R + - id: "RE3123R" - name: "RE3123R" - metabolites: !!omap - CE4824_r: 1 @@ -243340,15 +243340,15 @@ - m02555r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066322 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000066322" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10970790" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3124R + - id: "RE3124R" - name: "RE3124R" - metabolites: !!omap - m00121r: -1 @@ -243359,15 +243359,15 @@ - m02444r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000066322 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: Recon3D - - eccodes: 1.1.1.35 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000066322 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.35" + - references: "PMID:10970790" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3125R + - id: "RE3125R" - name: "RE3125R" - metabolites: !!omap - m00718r: 1 @@ -243377,15 +243377,15 @@ - m02555r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066322 - - rxnFrom: Recon3D - - eccodes: 1.3.3.6 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000066322" + - rxnFrom: "Recon3D" + - eccodes: "1.3.3.6" + - references: "PMID:10970790" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3126R + - id: "RE3126R" - name: "RE3126R" - metabolites: !!omap - m00680r: 1 @@ -243393,15 +243393,15 @@ - m02040r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066322 - - rxnFrom: Recon3D - - eccodes: 4.2.1.17 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000066322" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.17" + - references: "PMID:10970790" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3129N + - id: "RE3129N" - name: "RE3129N" - metabolites: !!omap - m01450n: 1 @@ -243411,15 +243411,15 @@ - m02555n: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.1.1.35 - - references: PMID:11111101 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.35" + - references: "PMID:11111101" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: RE3134C + - id: "RE3134C" - name: "Delta14-Sterol Reductase" - metabolites: !!omap - CE2313_c: -1 @@ -243429,15 +243429,15 @@ - m02555c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149809 - - rxnFrom: Recon3D - - eccodes: 1.3.1.70 - - references: PMID:11111101 + - gene_reaction_rule: "ENSG00000149809" + - rxnFrom: "Recon3D" + - eccodes: "1.3.1.70" + - references: "PMID:11111101" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: RE3134R + - id: "RE3134R" - name: "Delta14-Sterol Reductase" - metabolites: !!omap - CE2313_r: -1 @@ -243447,15 +243447,15 @@ - m02555r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149809 - - rxnFrom: Recon3D - - eccodes: 1.3.1.70 - - references: PMID:11111101 + - gene_reaction_rule: "ENSG00000149809" + - rxnFrom: "Recon3D" + - eccodes: "1.3.1.70" + - references: "PMID:11111101" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: RE3144C + - id: "RE3144C" - name: "RE3144C" - metabolites: !!omap - CE6027_c: -1 @@ -243466,15 +243466,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.3.1.16 - - references: PMID:11012668 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.16" + - references: "PMID:11012668" - subsystem: - - Vitamin D metabolism + - "Vitamin D metabolism" - confidence_score: 0 - !!omap - - id: RE3144M + - id: "RE3144M" - name: "RE3144M" - metabolites: !!omap - CE6027_m: -1 @@ -243485,15 +243485,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000019186 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11012668 + - gene_reaction_rule: "ENSG00000019186" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11012668" - subsystem: - - Vitamin D metabolism + - "Vitamin D metabolism" - confidence_score: 0 - !!omap - - id: RE3147C + - id: "RE3147C" - name: "RE3147C" - metabolites: !!omap - m00095c: -1 @@ -243503,15 +243503,15 @@ - m02555c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10970790 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10970790" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3147R + - id: "RE3147R" - name: "RE3147R" - metabolites: !!omap - m00095r: -1 @@ -243521,15 +243521,15 @@ - m02555r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066322 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000066322" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10970790" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3148C + - id: "RE3148C" - name: "RE3148C" - metabolites: !!omap - m00119c: -1 @@ -243540,15 +243540,15 @@ - m02444c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000118402 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000118402 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10970790" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3148R + - id: "RE3148R" - name: "RE3148R" - metabolites: !!omap - m00119r: -1 @@ -243559,15 +243559,15 @@ - m02444r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000066322 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: Recon3D - - eccodes: 1.1.1.50 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000066322 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.50" + - references: "PMID:10970790" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3150C + - id: "RE3150C" - name: "RE3150C" - metabolites: !!omap - CE4837_c: 1 @@ -243577,15 +243577,15 @@ - m02555c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10970790 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10970790" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3150R + - id: "RE3150R" - name: "RE3150R" - metabolites: !!omap - CE4837_r: 1 @@ -243595,15 +243595,15 @@ - m02555r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066322 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000066322" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10970790" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3151R + - id: "RE3151R" - name: "RE3151R" - metabolites: !!omap - m00864r: 1 @@ -243614,15 +243614,15 @@ - m02444r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000066322 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: Recon3D - - eccodes: 1.1.1.145 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000066322 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.145" + - references: "PMID:10970790" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3152R + - id: "RE3152R" - name: "RE3152R" - metabolites: !!omap - m00714r: 1 @@ -243632,15 +243632,15 @@ - m02555r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066322 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000066322" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10970790" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3153R + - id: "RE3153R" - name: "RE3153R" - metabolites: !!omap - m00074r: 1 @@ -243648,15 +243648,15 @@ - m02040r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066322 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000066322" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10970790" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3154R + - id: "RE3154R" - name: "RE3154R" - metabolites: !!omap - m00716r: 1 @@ -243666,15 +243666,15 @@ - m02555r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066322 - - rxnFrom: Recon3D - - eccodes: 6.2.1.3 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000066322" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.3" + - references: "PMID:10970790" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3155R + - id: "RE3155R" - name: "RE3155R" - metabolites: !!omap - m00681r: 1 @@ -243682,15 +243682,15 @@ - m02040r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066322 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000066322" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10970790" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3158X + - id: "RE3158X" - name: "Acetyl Coenzyme A C-Acyltransferase" - metabolites: !!omap - m00119p: 1 @@ -243700,15 +243700,15 @@ - m02039p: -2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 - - rxnFrom: Recon3D - - eccodes: 2.3.1.16 - - references: PMID:11734209 + - gene_reaction_rule: "ENSG00000060971" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.16" + - references: "PMID:11734209" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3161R + - id: "RE3161R" - name: "RE3161R" - metabolites: !!omap - m00870r: 1 @@ -243719,15 +243719,15 @@ - m02444r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000066322 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000066322 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10970790" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3162R + - id: "RE3162R" - name: "RE3162R" - metabolites: !!omap - m00087r: 1 @@ -243737,15 +243737,15 @@ - m02555r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066322 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000066322" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10970790" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3163R + - id: "RE3163R" - name: "RE3163R" - metabolites: !!omap - m00087r: -1 @@ -243753,15 +243753,15 @@ - m03007r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066322 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000066322" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10970790" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3164R + - id: "RE3164R" - name: "RE3164R" - metabolites: !!omap - m00009r: 1 @@ -243771,15 +243771,15 @@ - m03007r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066322 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000066322" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10970790" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3165R + - id: "RE3165R" - name: "RE3165R" - metabolites: !!omap - m00865r: 1 @@ -243790,15 +243790,15 @@ - m02444r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000066322 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000066322 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10970790" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3166R + - id: "RE3166R" - name: "RE3166R" - metabolites: !!omap - m00698r: 1 @@ -243808,15 +243808,15 @@ - m02555r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066322 - - rxnFrom: Recon3D - - eccodes: 6.2.1.3 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000066322" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.3" + - references: "PMID:10970790" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3167R + - id: "RE3167R" - name: "RE3167R" - metabolites: !!omap - m00698r: -1 @@ -243824,15 +243824,15 @@ - m03004r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066322 - - rxnFrom: Recon3D - - eccodes: 1.3.1.70 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000066322" + - rxnFrom: "Recon3D" + - eccodes: "1.3.1.70" + - references: "PMID:10970790" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3168R + - id: "RE3168R" - name: "RE3168R" - metabolites: !!omap - m00264r: 1 @@ -243842,15 +243842,15 @@ - m03004r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066322 - - rxnFrom: Recon3D - - eccodes: 2.3.1.16 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000066322" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.16" + - references: "PMID:10970790" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3169R + - id: "RE3169R" - name: "RE3169R" - metabolites: !!omap - m00262r: 1 @@ -243860,15 +243860,15 @@ - m03002r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066322 - - rxnFrom: Recon3D - - eccodes: 1.1.1.35 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000066322" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.35" + - references: "PMID:10970790" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3170R + - id: "RE3170R" - name: "RE3170R" - metabolites: !!omap - m00125r: -1 @@ -243879,15 +243879,15 @@ - m02444r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000066322 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000066322 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10970790" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3171R + - id: "RE3171R" - name: "RE3171R" - metabolites: !!omap - m00711r: 1 @@ -243897,15 +243897,15 @@ - m02555r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066322 - - rxnFrom: Recon3D - - eccodes: 6.2.1.3 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000066322" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.3" + - references: "PMID:10970790" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3172R + - id: "RE3172R" - name: "RE3172R" - metabolites: !!omap - m00711r: -1 @@ -243913,15 +243913,15 @@ - m03002r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066322 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000066322" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10970790" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3173R + - id: "RE3173R" - name: "RE3173R" - metabolites: !!omap - m00317r: 1 @@ -243931,15 +243931,15 @@ - m03003r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066322 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000066322" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10970790" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3174R + - id: "RE3174R" - name: "RE3174R" - metabolites: !!omap - m00262r: -1 @@ -243950,15 +243950,15 @@ - m02444r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000066322 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000066322 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10970790" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3175R + - id: "RE3175R" - name: "RE3175R" - metabolites: !!omap - m00716r: 1 @@ -243968,15 +243968,15 @@ - m02555r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066322 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000066322" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10970790" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3176R + - id: "RE3176R" - name: "RE3176R" - metabolites: !!omap - m00716r: -1 @@ -243984,15 +243984,15 @@ - m03003r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066322 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000066322" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10970790" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3180C + - id: "RE3180C" - name: "RE3180C" - metabolites: !!omap - CE2313_c: 3 @@ -244002,15 +244002,15 @@ - m02040c: 2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11111101 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11111101" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: RE3181C + - id: "RE3181C" - name: "RE3181C" - metabolites: !!omap - CE5049_c: 4 @@ -244020,15 +244020,15 @@ - m02336c: -3 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11111101 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11111101" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: RE3198C + - id: "RE3198C" - name: "RE3198C" - metabolites: !!omap - m00638c: 1 @@ -244038,15 +244038,15 @@ - m02553c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11744399 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11744399" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: RE3218L + - id: "RE3218L" - name: "Steryl-Sulfatase" - metabolites: !!omap - m01069l: -1 @@ -244056,15 +244056,15 @@ - m02946l: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101846 - - rxnFrom: Recon3D - - eccodes: 3.1.6.2 - - references: PMID:11886493 + - gene_reaction_rule: "ENSG00000101846" + - rxnFrom: "Recon3D" + - eccodes: "3.1.6.2" + - references: "PMID:11886493" - subsystem: - - Androgen metabolism + - "Androgen metabolism" - confidence_score: 0 - !!omap - - id: RE3218R + - id: "RE3218R" - name: "Steryl-Sulfatase" - metabolites: !!omap - m01069r: -1 @@ -244074,15 +244074,15 @@ - m02946r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101846 - - rxnFrom: Recon3D - - eccodes: 3.1.6.2 - - references: PMID:11886493 + - gene_reaction_rule: "ENSG00000101846" + - rxnFrom: "Recon3D" + - eccodes: "3.1.6.2" + - references: "PMID:11886493" - subsystem: - - Androgen metabolism + - "Androgen metabolism" - confidence_score: 0 - !!omap - - id: RE3220L + - id: "RE3220L" - name: "Steryl-Sulfatase" - metabolites: !!omap - m01337l: 1 @@ -244092,15 +244092,15 @@ - m02946l: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101846 - - rxnFrom: Recon3D - - eccodes: 3.1.6.2 - - references: PMID:2969800 + - gene_reaction_rule: "ENSG00000101846" + - rxnFrom: "Recon3D" + - eccodes: "3.1.6.2" + - references: "PMID:2969800" - subsystem: - - Androgen metabolism + - "Androgen metabolism" - confidence_score: 0 - !!omap - - id: RE3220R + - id: "RE3220R" - name: "Steryl-Sulfatase" - metabolites: !!omap - m01337r: 1 @@ -244110,15 +244110,15 @@ - m02946r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101846 - - rxnFrom: Recon3D - - eccodes: 3.1.6.2 - - references: PMID:2969800 + - gene_reaction_rule: "ENSG00000101846" + - rxnFrom: "Recon3D" + - eccodes: "3.1.6.2" + - references: "PMID:2969800" - subsystem: - - Androgen metabolism + - "Androgen metabolism" - confidence_score: 0 - !!omap - - id: RE3224R + - id: "RE3224R" - name: "RE3224R" - metabolites: !!omap - m00840r: 1 @@ -244129,15 +244129,15 @@ - m02647r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000066322 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000066322 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE3225R + - id: "RE3225R" - name: "RE3225R" - metabolites: !!omap - m00007r: -1 @@ -244148,15 +244148,15 @@ - m02444r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000066322 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000066322 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE3226R + - id: "RE3226R" - name: "RE3226R" - metabolites: !!omap - m00016r: -1 @@ -244167,15 +244167,15 @@ - m02444r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000066322 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000066322 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE3227R + - id: "RE3227R" - name: "RE3227R" - metabolites: !!omap - m00700r: 1 @@ -244185,15 +244185,15 @@ - m02555r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066322 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000066322" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE3228R + - id: "RE3228R" - name: "RE3228R" - metabolites: !!omap - m00700r: -1 @@ -244201,15 +244201,15 @@ - m03012r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066322 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000066322" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE3229R + - id: "RE3229R" - name: "RE3229R" - metabolites: !!omap - m00007r: 1 @@ -244219,15 +244219,15 @@ - m03012r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066322 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000066322" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE3230R + - id: "RE3230R" - name: "RE3230R" - metabolites: !!omap - m00701r: 1 @@ -244237,15 +244237,15 @@ - m02555r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066322 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000066322" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE3231R + - id: "RE3231R" - name: "RE3231R" - metabolites: !!omap - m00701r: -1 @@ -244253,15 +244253,15 @@ - m03013r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066322 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000066322" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE3232R + - id: "RE3232R" - name: "RE3232R" - metabolites: !!omap - m00016r: 1 @@ -244271,15 +244271,15 @@ - m03013r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066322 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000066322" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE3233G + - id: "RE3233G" - name: "Tyrosinase" - metabolites: !!omap - m02040g: 1 @@ -244288,15 +244288,15 @@ - m02630g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000077498 - - rxnFrom: Recon3D - - eccodes: 1.14.18.1 - - references: PMID:10620346 + - gene_reaction_rule: "ENSG00000077498" + - rxnFrom: "Recon3D" + - eccodes: "1.14.18.1" + - references: "PMID:10620346" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: RE3233L + - id: "RE3233L" - name: "Tyrosinase" - metabolites: !!omap - m02040l: 1 @@ -244305,15 +244305,15 @@ - m02630l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000077498 - - rxnFrom: Recon3D - - eccodes: 1.14.18.1 - - references: PMID:10620346 + - gene_reaction_rule: "ENSG00000077498" + - rxnFrom: "Recon3D" + - eccodes: "1.14.18.1" + - references: "PMID:10620346" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: RE3234R + - id: "RE3234R" - name: "RE3234R" - metabolites: !!omap - m00709r: 1 @@ -244323,15 +244323,15 @@ - m02555r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066322 - - rxnFrom: Recon3D - - eccodes: 1.1.1.35 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000066322" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.35" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE3235R + - id: "RE3235R" - name: "RE3235R" - metabolites: !!omap - m00709r: -1 @@ -244339,15 +244339,15 @@ - m03015r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066322 - - rxnFrom: Recon3D - - eccodes: 1.1.1.35 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000066322" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.35" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE3236R + - id: "RE3236R" - name: "RE3236R" - metabolites: !!omap - m00025r: 1 @@ -244357,15 +244357,15 @@ - m03015r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066322 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000066322" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE3241C + - id: "RE3241C" - name: "RE3241C" - metabolites: !!omap - CE5160_c: 1 @@ -244376,15 +244376,15 @@ - m02677c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000118402 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: Recon3D - - eccodes: 2.3.1.16 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000118402 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.16" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE3241R + - id: "RE3241R" - name: "RE3241R" - metabolites: !!omap - CE5160_r: 1 @@ -244395,15 +244395,15 @@ - m02677r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012660 or ENSG00000066322 or ENSG00000170522 or ENSG00000197977 - - rxnFrom: Recon3D - - eccodes: 2.3.1.16 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000012660 or ENSG00000066322 or ENSG00000170522 or ENSG00000197977" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.16" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE3242C + - id: "RE3242C" - name: "RE3242C" - metabolites: !!omap - CE5160_c: -1 @@ -244413,15 +244413,15 @@ - m02555c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.3.1.16 - - references: PMID:10970790 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.16" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE3242R + - id: "RE3242R" - name: "RE3242R" - metabolites: !!omap - CE5160_r: -1 @@ -244431,15 +244431,15 @@ - m02555r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066322 - - rxnFrom: Recon3D - - eccodes: 4.2.1.17 - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000066322" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.17" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE3243C + - id: "RE3243C" - name: "RE3243C" - metabolites: !!omap - CE5161_c: -1 @@ -244447,15 +244447,15 @@ - m02040c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 4.2.1.17 - - references: PMID:10970790,PMID:11567032,PMID:2114179 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.17" + - references: "PMID:10970790,PMID:11567032,PMID:2114179" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE3243R + - id: "RE3243R" - name: "RE3243R" - metabolites: !!omap - CE5161_r: -1 @@ -244463,15 +244463,15 @@ - m02040r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066322 - - rxnFrom: Recon3D - - eccodes: 4.2.1.17 - - references: PMID:10970790,PMID:11567032,PMID:2114179 + - gene_reaction_rule: "ENSG00000066322" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.17" + - references: "PMID:10970790,PMID:11567032,PMID:2114179" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE3244C + - id: "RE3244C" - name: "RE3244C" - metabolites: !!omap - CE5162_c: -1 @@ -244481,15 +244481,15 @@ - m02647c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 5.1.99.4 - - references: PMID:10970790 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "5.1.99.4" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE3244R + - id: "RE3244R" - name: "RE3244R" - metabolites: !!omap - CE5162_r: -1 @@ -244499,15 +244499,15 @@ - m02647r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000066322 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10970790 + - gene_reaction_rule: "ENSG00000066322" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10970790" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE3248M + - id: "RE3248M" - name: "Enoyl Coenzyme A Hydratase" - metabolites: !!omap - CE5168_m: 1 @@ -244515,15 +244515,15 @@ - m02040m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 or ENSG00000113790 or ENSG00000127884 or ENSG00000138029 - - rxnFrom: Recon3D - - eccodes: 4.2.1.17 - - references: PMID:10709654 + - gene_reaction_rule: "ENSG00000084754 or ENSG00000113790 or ENSG00000127884 or ENSG00000138029" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.17" + - references: "PMID:10709654" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3248X + - id: "RE3248X" - name: "Enoyl Coenzyme A Hydratase" - metabolites: !!omap - CE5168_p: 1 @@ -244531,15 +244531,15 @@ - m02040p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113790 - - rxnFrom: Recon3D - - eccodes: 4.2.1.17 - - references: PMID:10709654 + - gene_reaction_rule: "ENSG00000113790" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.17" + - references: "PMID:10709654" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3250C + - id: "RE3250C" - name: "3-Hydroxyacyl Coenzyme A Dehydrogenase" - metabolites: !!omap - CE5168_c: -1 @@ -244549,15 +244549,15 @@ - m02553c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.1.1.35 - - references: PMID:10709654 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.35" + - references: "PMID:10709654" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3250M + - id: "RE3250M" - name: "3-Hydroxyacyl Coenzyme A Dehydrogenase" - metabolites: !!omap - CE5168_m: -1 @@ -244567,15 +244567,15 @@ - m02553m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 or ENSG00000113790 or ENSG00000133835 or ENSG00000138796 - - rxnFrom: Recon3D - - eccodes: 1.1.1.35 - - references: PMID:10709654 + - gene_reaction_rule: "ENSG00000072506 or ENSG00000113790 or ENSG00000133835 or ENSG00000138796" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.35" + - references: "PMID:10709654" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3250X + - id: "RE3250X" - name: "3-Hydroxyacyl Coenzyme A Dehydrogenase" - metabolites: !!omap - CE5168_p: -1 @@ -244585,15 +244585,15 @@ - m02553p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113790 or ENSG00000133835 - - rxnFrom: Recon3D - - eccodes: 1.1.1.35 - - references: PMID:10709654 + - gene_reaction_rule: "ENSG00000113790 or ENSG00000133835" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.35" + - references: "PMID:10709654" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3251C + - id: "RE3251C" - name: "RE3251C" - metabolites: !!omap - m01090c: -1 @@ -244605,15 +244605,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:9210654,PMID:9660774 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:9210654,PMID:9660774" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE3251M + - id: "RE3251M" - name: "RE3251M" - metabolites: !!omap - m01090m: -1 @@ -244625,15 +244625,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135929 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:9210654,PMID:9660774 + - gene_reaction_rule: "ENSG00000135929" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:9210654,PMID:9660774" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE3252C + - id: "RE3252C" - name: "RE3252C" - metabolites: !!omap - m00751c: 1 @@ -244641,15 +244641,15 @@ - m02040c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:9210654,PMID:9660774 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:9210654,PMID:9660774" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE3267E + - id: "RE3267E" - name: "Diacylglycerol Cholinephosphotransferase" - metabolites: !!omap - 12dgr120_s: -1 @@ -244659,15 +244659,15 @@ - m02685s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.7.8.2 - - references: PMID:10191259,PMID:12221122 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.7.8.2" + - references: "PMID:10191259,PMID:12221122" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: RE3267G + - id: "RE3267G" - name: "Diacylglycerol Cholinephosphotransferase" - metabolites: !!omap - 12dgr120_g: -1 @@ -244677,15 +244677,15 @@ - m02685g: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000111666 - - rxnFrom: Recon3D - - eccodes: 2.7.8.2 - - references: PMID:10191259,PMID:12221122 + - gene_reaction_rule: "ENSG00000111666" + - rxnFrom: "Recon3D" + - eccodes: "2.7.8.2" + - references: "PMID:10191259,PMID:12221122" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: RE3267M + - id: "RE3267M" - name: "Diacylglycerol Cholinephosphotransferase" - metabolites: !!omap - 12dgr120_m: -1 @@ -244695,15 +244695,15 @@ - m02685m: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.7.8.2 - - references: PMID:10191259,PMID:12221122 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.7.8.2" + - references: "PMID:10191259,PMID:12221122" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: RE3267N + - id: "RE3267N" - name: "Diacylglycerol Cholinephosphotransferase" - metabolites: !!omap - 12dgr120_n: -1 @@ -244713,15 +244713,15 @@ - m02685n: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000134255 - - rxnFrom: Recon3D - - eccodes: 2.7.8.2 - - references: PMID:10191259,PMID:12221122 + - gene_reaction_rule: "ENSG00000134255" + - rxnFrom: "Recon3D" + - eccodes: "2.7.8.2" + - references: "PMID:10191259,PMID:12221122" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: RE3267R + - id: "RE3267R" - name: "Diacylglycerol Cholinephosphotransferase" - metabolites: !!omap - 12dgr120_r: -1 @@ -244731,15 +244731,15 @@ - m02685r: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000134255 or ENSG00000138018 - - rxnFrom: Recon3D - - eccodes: 2.7.8.2 - - references: PMID:10191259,PMID:12221122 + - gene_reaction_rule: "ENSG00000134255 or ENSG00000138018" + - rxnFrom: "Recon3D" + - eccodes: "2.7.8.2" + - references: "PMID:10191259,PMID:12221122" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: RE3268R + - id: "RE3268R" - name: "Phosphatidylinositol-3,4,5-Trisphosphate 3-Phosphatase" - metabolites: !!omap - m02040r: -1 @@ -244748,15 +244748,15 @@ - m02751r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000132958 - - rxnFrom: Recon3D - - eccodes: 3.1.3.67 - - references: PMID:7556092 + - gene_reaction_rule: "ENSG00000132958" + - rxnFrom: "Recon3D" + - eccodes: "3.1.3.67" + - references: "PMID:7556092" - subsystem: - - Phosphatidylinositol phosphate metabolism + - "Phosphatidylinositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: RE3273C + - id: "RE3273C" - name: "Phospholipase D" - metabolites: !!omap - m02039c: 1 @@ -244766,15 +244766,15 @@ - m02750c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000129219 - - rxnFrom: Recon3D - - eccodes: 3.1.4.4 - - references: PMID:3135804 + - gene_reaction_rule: "ENSG00000129219" + - rxnFrom: "Recon3D" + - eccodes: "3.1.4.4" + - references: "PMID:3135804" - subsystem: - - Phosphatidylinositol phosphate metabolism + - "Phosphatidylinositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: RE3273G + - id: "RE3273G" - name: "Phospholipase D" - metabolites: !!omap - m02039g: 1 @@ -244784,15 +244784,15 @@ - m02750g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000075651 - - rxnFrom: Recon3D - - eccodes: 3.1.4.4 - - references: PMID:3135804 + - gene_reaction_rule: "ENSG00000075651" + - rxnFrom: "Recon3D" + - eccodes: "3.1.4.4" + - references: "PMID:3135804" - subsystem: - - Phosphatidylinositol phosphate metabolism + - "Phosphatidylinositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: RE3273R + - id: "RE3273R" - name: "Phospholipase D" - metabolites: !!omap - m02039r: 1 @@ -244802,15 +244802,15 @@ - m02750r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000075651 - - rxnFrom: Recon3D - - eccodes: 3.1.4.4 - - references: PMID:3135804 + - gene_reaction_rule: "ENSG00000075651" + - rxnFrom: "Recon3D" + - eccodes: "3.1.4.4" + - references: "PMID:3135804" - subsystem: - - Phosphatidylinositol phosphate metabolism + - "Phosphatidylinositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: RE3287R + - id: "RE3287R" - name: "Unspecific Monooxygenase" - metabolites: !!omap - m00279r: 1 @@ -244821,15 +244821,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000160868 or ENSG00000160870 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 - - rxnFrom: Recon3D - - eccodes: 1.14.14.1 - - references: PMID:8651708 + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000160868 or ENSG00000160870 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974" + - rxnFrom: "Recon3D" + - eccodes: "1.14.14.1" + - references: "PMID:8651708" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: RE3301G + - id: "RE3301G" - name: "Phospholipase D" - metabolites: !!omap - m02039g: 1 @@ -244839,15 +244839,15 @@ - m02896g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000075651 - - rxnFrom: Recon3D - - eccodes: 3.1.4.4 - - references: PMID:11182251 + - gene_reaction_rule: "ENSG00000075651" + - rxnFrom: "Recon3D" + - eccodes: "3.1.4.4" + - references: "PMID:11182251" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: RE3301R + - id: "RE3301R" - name: "Phospholipase D" - metabolites: !!omap - m02039r: 1 @@ -244857,15 +244857,15 @@ - m02896r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000075651 - - rxnFrom: Recon3D - - eccodes: 3.1.4.4 - - references: PMID:11182251 + - gene_reaction_rule: "ENSG00000075651" + - rxnFrom: "Recon3D" + - eccodes: "3.1.4.4" + - references: "PMID:11182251" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: RE3335M + - id: "RE3335M" - name: "Long-Chain-Fatty-Acid- Coenzyme A Ligase" - metabolites: !!omap - m01120m: 1 @@ -244876,15 +244876,15 @@ - m02759m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000123983 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 - - rxnFrom: Recon3D - - eccodes: 6.2.1.3 - - references: PMID:9784915 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000123983 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.3" + - references: "PMID:9784915" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: RE3335R + - id: "RE3335R" - name: "Long-Chain-Fatty-Acid- Coenzyme A Ligase" - metabolites: !!omap - m01120r: 1 @@ -244895,15 +244895,15 @@ - m02759r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000123983 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 - - rxnFrom: Recon3D - - eccodes: 6.2.1.3 - - references: PMID:9784915 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000123983 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.3" + - references: "PMID:9784915" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: RE3335X + - id: "RE3335X" - name: "Long-Chain-Fatty-Acid- Coenzyme A Ligase" - metabolites: !!omap - m01120p: 1 @@ -244914,15 +244914,15 @@ - m02759p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000123983 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 - - rxnFrom: Recon3D - - eccodes: 6.2.1.3 - - references: PMID:9784915 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000123983 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.3" + - references: "PMID:9784915" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: RE3338C + - id: "RE3338C" - name: "3-Hydroxyacyl Coenzyme A Dehydrogenase" - metabolites: !!omap - m00689c: -1 @@ -244932,15 +244932,15 @@ - m02553c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 - - rxnFrom: Recon3D - - eccodes: 1.1.1.35 - - references: PMID:7649996 + - gene_reaction_rule: "ENSG00000072506" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.35" + - references: "PMID:7649996" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: RE3339C + - id: "RE3339C" - name: "Palmitoyl Coenzyme A Hydrolase" - metabolites: !!omap - m00835c: 1 @@ -244950,15 +244950,15 @@ - m02040c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136881 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: Recon3D - - eccodes: 3.1.2.2 - - references: PMID:11673457 + - gene_reaction_rule: "ENSG00000136881 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "Recon3D" + - eccodes: "3.1.2.2" + - references: "PMID:11673457" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: RE3340C + - id: "RE3340C" - name: "3-Hydroxyacyl Coenzyme A Dehydrogenase" - metabolites: !!omap - m00690c: -1 @@ -244968,15 +244968,15 @@ - m02553c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 - - rxnFrom: Recon3D - - eccodes: 1.1.1.35 - - references: PMID:7649996 + - gene_reaction_rule: "ENSG00000072506" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.35" + - references: "PMID:7649996" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: RE3343C + - id: "RE3343C" - name: "Palmitoyl Coenzyme A Hydrolase" - metabolites: !!omap - m00837c: 1 @@ -244986,15 +244986,15 @@ - m02040c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136881 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: Recon3D - - eccodes: 3.1.2.2 - - references: PMID:11673457 + - gene_reaction_rule: "ENSG00000136881 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "Recon3D" + - eccodes: "3.1.2.2" + - references: "PMID:11673457" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: RE3346C + - id: "RE3346C" - name: "Aldehyde Dehydrogenase (NAD+)" - metabolites: !!omap - m00751c: 1 @@ -245005,15 +245005,15 @@ - m02553c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108602 or ENSG00000143149 - - rxnFrom: Recon3D - - eccodes: 1.2.1.3 - - references: PMID:1591235 + - gene_reaction_rule: "ENSG00000108602 or ENSG00000143149" + - rxnFrom: "Recon3D" + - eccodes: "1.2.1.3" + - references: "PMID:1591235" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE3346M + - id: "RE3346M" - name: "Aldehyde Dehydrogenase (NAD+)" - metabolites: !!omap - m00751m: 1 @@ -245024,15 +245024,15 @@ - m02553m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111275 or ENSG00000137124 or ENSG00000164904 - - rxnFrom: Recon3D - - eccodes: 1.2.1.3 - - references: PMID:1591235 + - gene_reaction_rule: "ENSG00000111275 or ENSG00000137124 or ENSG00000164904" + - rxnFrom: "Recon3D" + - eccodes: "1.2.1.3" + - references: "PMID:1591235" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE3346R + - id: "RE3346R" - name: "Aldehyde Dehydrogenase (NAD+)" - metabolites: !!omap - m00751r: 1 @@ -245043,15 +245043,15 @@ - m02553r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072210 or ENSG00000108602 - - rxnFrom: Recon3D - - eccodes: 1.2.1.3 - - references: PMID:1591235 + - gene_reaction_rule: "ENSG00000072210 or ENSG00000108602" + - rxnFrom: "Recon3D" + - eccodes: "1.2.1.3" + - references: "PMID:1591235" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: RE3378C + - id: "RE3378C" - name: "RE3378C" - metabolites: !!omap - C03968_c: 1 @@ -245061,15 +245061,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.14.14.1 - - references: PMID:0 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.14.14.1" + - references: "PMID:0" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: RE3381E + - id: "RE3381E" - name: "Beta-Glucuronidase" - metabolites: !!omap - m00766s: 1 @@ -245079,15 +245079,15 @@ - m02040s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000133116 - - rxnFrom: Recon3D - - eccodes: 3.2.1.31 - - references: PMID:10191290,PMID:10690708,PMID:11087858,PMID:11818531 + - gene_reaction_rule: "ENSG00000133116" + - rxnFrom: "Recon3D" + - eccodes: "3.2.1.31" + - references: "PMID:10191290,PMID:10690708,PMID:11087858,PMID:11818531" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: RE3381L + - id: "RE3381L" - name: "Beta-Glucuronidase" - metabolites: !!omap - m00766l: 1 @@ -245097,15 +245097,15 @@ - m02040l: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169919 - - rxnFrom: Recon3D - - eccodes: 3.2.1.31 - - references: PMID:10191290,PMID:10690708,PMID:11087858,PMID:11818531 + - gene_reaction_rule: "ENSG00000169919" + - rxnFrom: "Recon3D" + - eccodes: "3.2.1.31" + - references: "PMID:10191290,PMID:10690708,PMID:11087858,PMID:11818531" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: RE3410C + - id: "RE3410C" - name: "RE3410C" - metabolites: !!omap - m00311c: 1 @@ -245113,45 +245113,45 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 4.2.1.17 - - references: PMID:11408659,PMID:11686005 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.17" + - references: "PMID:11408659,PMID:11686005" - subsystem: - - Linoleate metabolism + - "Linoleate metabolism" - confidence_score: 0 - !!omap - - id: RE3421M + - id: "RE3421M" - name: "RE3421M" - metabolites: !!omap - m01662m: 1 - m02796m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.5.1.29 - - references: PMID:11786541,PMID:8521498 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.5.1.29" + - references: "PMID:11786541,PMID:8521498" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: RE3421R + - id: "RE3421R" - name: "RE3421R" - metabolites: !!omap - m01662r: 1 - m02796r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11786541,PMID:8521498 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11786541,PMID:8521498" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: RE3434C + - id: "RE3434C" - name: "Leukotriene-B4 20-Monooxygenase" - metabolites: !!omap - m00252c: -1 @@ -245163,15 +245163,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.14.13.30 - - references: PMID:8244977,PMID:9862787 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.30" + - references: "PMID:8244977,PMID:9862787" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: RE3434R + - id: "RE3434R" - name: "Leukotriene-B4 20-Monooxygenase" - metabolites: !!omap - m00252r: -1 @@ -245183,15 +245183,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171954 or ENSG00000186115 or ENSG00000186529 - - rxnFrom: Recon3D - - eccodes: 1.14.13.30 - - references: PMID:8244977,PMID:9862787 + - gene_reaction_rule: "ENSG00000171954 or ENSG00000186115 or ENSG00000186529" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.30" + - references: "PMID:8244977,PMID:9862787" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: RE3444C + - id: "RE3444C" - name: "Palmitoyl Coenzyme A Hydrolase" - metabolites: !!omap - m00687c: 1 @@ -245201,15 +245201,15 @@ - m02040c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136881 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: Recon3D - - eccodes: 3.1.2.2 - - references: PMID:11673457 + - gene_reaction_rule: "ENSG00000136881 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "Recon3D" + - eccodes: "3.1.2.2" + - references: "PMID:11673457" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: RE3446M + - id: "RE3446M" - name: "Long-Chain-Fatty-Acid- Coenzyme A Ligase" - metabolites: !!omap - m00252m: -1 @@ -245220,15 +245220,15 @@ - m02759m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000123983 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 - - rxnFrom: Recon3D - - eccodes: 6.2.1.3 - - references: PMID:9784915 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000123983 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.3" + - references: "PMID:9784915" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: RE3446R + - id: "RE3446R" - name: "Long-Chain-Fatty-Acid- Coenzyme A Ligase" - metabolites: !!omap - m00252r: -1 @@ -245239,15 +245239,15 @@ - m02759r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000123983 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 - - rxnFrom: Recon3D - - eccodes: 6.2.1.3 - - references: PMID:9784915 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000123983 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.3" + - references: "PMID:9784915" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: RE3446X + - id: "RE3446X" - name: "Long-Chain-Fatty-Acid- Coenzyme A Ligase" - metabolites: !!omap - m00252p: -1 @@ -245258,15 +245258,15 @@ - m02759p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068366 or ENSG00000123983 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142 - - rxnFrom: Recon3D - - eccodes: 6.2.1.3 - - references: PMID:9784915 + - gene_reaction_rule: "ENSG00000068366 or ENSG00000123983 or ENSG00000140284 or ENSG00000151726 or ENSG00000164398 or ENSG00000197142" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.3" + - references: "PMID:9784915" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: RE3448C + - id: "RE3448C" - name: "3-Hydroxyacyl Coenzyme A Dehydrogenase" - metabolites: !!omap - m00691c: -1 @@ -245276,15 +245276,15 @@ - m02553c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 - - rxnFrom: Recon3D - - eccodes: 1.1.1.35 - - references: PMID:11368003,PMID:9862787 + - gene_reaction_rule: "ENSG00000072506" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.35" + - references: "PMID:11368003,PMID:9862787" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: RE3449C + - id: "RE3449C" - name: "RE3449C" - metabolites: !!omap - m01246c: 3 @@ -245294,15 +245294,15 @@ - m02631c: -5 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:2123555 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:2123555" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: RE3452C + - id: "RE3452C" - name: "RE3452C" - metabolites: !!omap - m00335c: 3 @@ -245312,15 +245312,15 @@ - m02631c: -5 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:2123555 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:2123555" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: RE3455C + - id: "RE3455C" - name: "RE3455C" - metabolites: !!omap - m01214c: 4 @@ -245329,15 +245329,15 @@ - m02630c: -5 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:2123555 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:2123555" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: RE3458C + - id: "RE3458C" - name: "RE3458C" - metabolites: !!omap - m00302c: 3 @@ -245347,15 +245347,15 @@ - m02631c: -5 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:2123555 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:2123555" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: RE3470C + - id: "RE3470C" - name: "Carbonyl Reductase (NADPH)" - metabolites: !!omap - m01123c: 1 @@ -245365,15 +245365,15 @@ - m02555c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000159228 or ENSG00000159231 - - rxnFrom: Recon3D - - eccodes: 1.1.1.184 - - references: PMID:1326548,PMID:7929234 + - gene_reaction_rule: "ENSG00000159228 or ENSG00000159231" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.184" + - references: "PMID:1326548,PMID:7929234" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: RE3470M + - id: "RE3470M" - name: "Carbonyl Reductase (NADPH)" - metabolites: !!omap - m01123m: 1 @@ -245383,15 +245383,15 @@ - m02555m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157326 - - rxnFrom: Recon3D - - eccodes: 1.1.1.184 - - references: PMID:1326548,PMID:7929234 + - gene_reaction_rule: "ENSG00000157326" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.184" + - references: "PMID:1326548,PMID:7929234" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: RE3470X + - id: "RE3470X" - name: "Carbonyl Reductase (NADPH)" - metabolites: !!omap - m01123p: 1 @@ -245401,15 +245401,15 @@ - m02555p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157326 - - rxnFrom: Recon3D - - eccodes: 1.1.1.184 - - references: PMID:1326548,PMID:7929234 + - gene_reaction_rule: "ENSG00000157326" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.184" + - references: "PMID:1326548,PMID:7929234" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: RE3474R + - id: "RE3474R" - name: "Leukotriene-B4 20-Monooxygenase" - metabolites: !!omap - m00590r: 1 @@ -245421,15 +245421,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171954 or ENSG00000186115 or ENSG00000186529 - - rxnFrom: Recon3D - - eccodes: 1.14.13.30 - - references: PMID:1326548,PMID:7929234 + - gene_reaction_rule: "ENSG00000171954 or ENSG00000186115 or ENSG00000186529" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.30" + - references: "PMID:1326548,PMID:7929234" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: RE3475N + - id: "RE3475N" - name: "Arachidonate 5-Lipoxygenase" - metabolites: !!omap - m01040n: -2 @@ -245437,15 +245437,15 @@ - m02630n: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012779 - - rxnFrom: Recon3D - - eccodes: 1.13.11.34 - - references: PMID:1326548,PMID:7929234 + - gene_reaction_rule: "ENSG00000012779" + - rxnFrom: "Recon3D" + - eccodes: "1.13.11.34" + - references: "PMID:1326548,PMID:7929234" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: RE3476M + - id: "RE3476M" - name: "Carbonyl Reductase (NADPH)" - metabolites: !!omap - m01040m: -1 @@ -245455,15 +245455,15 @@ - m02555m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157326 - - rxnFrom: Recon3D - - eccodes: 1.1.1.184 - - references: PMID:1326548,PMID:7929234 + - gene_reaction_rule: "ENSG00000157326" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.184" + - references: "PMID:1326548,PMID:7929234" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: RE3476X + - id: "RE3476X" - name: "Carbonyl Reductase (NADPH)" - metabolites: !!omap - m01040p: -1 @@ -245473,15 +245473,15 @@ - m02555p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157326 - - rxnFrom: Recon3D - - eccodes: 1.1.1.184 - - references: PMID:1326548,PMID:7929234 + - gene_reaction_rule: "ENSG00000157326" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.184" + - references: "PMID:1326548,PMID:7929234" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: RE3490C + - id: "RE3490C" - name: "RE3490C" - metabolites: !!omap - m00376c: 1 @@ -245489,15 +245489,15 @@ - m02040c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.2.2 - - references: PMID:11034610 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.2.2" + - references: "PMID:11034610" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: RE3503N + - id: "RE3503N" - name: "Arachidonate 5-Lipoxygenase" - metabolites: !!omap - m00028n: -1 @@ -245506,15 +245506,15 @@ - m02630n: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012779 - - rxnFrom: Recon3D - - eccodes: 1.13.11.34 - - references: PMID:11034610 + - gene_reaction_rule: "ENSG00000012779" + - rxnFrom: "Recon3D" + - eccodes: "1.13.11.34" + - references: "PMID:11034610" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: RE3511M + - id: "RE3511M" - name: "Phosphatidylethanolamine N-Methyltransferase" - metabolites: !!omap - C04308_m: -1 @@ -245523,15 +245523,15 @@ - m02877m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000133027 - - rxnFrom: Recon3D - - eccodes: 2.1.1.17 - - references: PMID:12431977 + - gene_reaction_rule: "ENSG00000133027" + - rxnFrom: "Recon3D" + - eccodes: "2.1.1.17" + - references: "PMID:12431977" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: RE3511R + - id: "RE3511R" - name: "Phosphatidylethanolamine N-Methyltransferase" - metabolites: !!omap - C04308_r: -1 @@ -245540,15 +245540,15 @@ - m02877r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000133027 - - rxnFrom: Recon3D - - eccodes: 2.1.1.17 - - references: PMID:12431977 + - gene_reaction_rule: "ENSG00000133027" + - rxnFrom: "Recon3D" + - eccodes: "2.1.1.17" + - references: "PMID:12431977" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: RE3513N + - id: "RE3513N" - name: "Arachidonate 5-Lipoxygenase" - metabolites: !!omap - m00307n: -2 @@ -245556,15 +245556,15 @@ - m02630n: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000012779 - - rxnFrom: Recon3D - - eccodes: 1.13.11.34 - - references: PMID:10224163,PMID:2377602,PMID:9837935 + - gene_reaction_rule: "ENSG00000012779" + - rxnFrom: "Recon3D" + - eccodes: "1.13.11.34" + - references: "PMID:10224163,PMID:2377602,PMID:9837935" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: RE3514C + - id: "RE3514C" - name: "Leukotriene-B4 20-Monooxygenase" - metabolites: !!omap - m01047c: 1 @@ -245576,15 +245576,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.14.13.30 - - references: PMID:10224163,PMID:2377602,PMID:9837935 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.30" + - references: "PMID:10224163,PMID:2377602,PMID:9837935" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: RE3514R + - id: "RE3514R" - name: "Leukotriene-B4 20-Monooxygenase" - metabolites: !!omap - m01047r: 1 @@ -245596,15 +245596,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171954 or ENSG00000186115 or ENSG00000186529 - - rxnFrom: Recon3D - - eccodes: 1.14.13.30 - - references: PMID:10224163,PMID:2377602,PMID:9837935 + - gene_reaction_rule: "ENSG00000171954 or ENSG00000186115 or ENSG00000186529" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.30" + - references: "PMID:10224163,PMID:2377602,PMID:9837935" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: RE3515C + - id: "RE3515C" - name: "RE3515C" - metabolites: !!omap - C08276_c: -1 @@ -245612,45 +245612,45 @@ - ch4s_c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.14.13.30 - - references: PMID:479166 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.30" + - references: "PMID:479166" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: RE3520M + - id: "RE3520M" - name: "Glutathione Peroxidase" - metabolites: !!omap - m00309m: -1 - m02096m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167468 or ENSG00000233276 - - rxnFrom: Recon3D - - eccodes: 1.11.1.9 - - references: PMID:10224163,PMID:2377602,PMID:3942774,PMID:9837935 + - gene_reaction_rule: "ENSG00000167468 or ENSG00000233276" + - rxnFrom: "Recon3D" + - eccodes: "1.11.1.9" + - references: "PMID:10224163,PMID:2377602,PMID:3942774,PMID:9837935" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: RE3520N + - id: "RE3520N" - name: "Glutathione Peroxidase" - metabolites: !!omap - m00309n: -1 - m02096n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167468 - - rxnFrom: Recon3D - - eccodes: 1.11.1.9 - - references: PMID:10224163,PMID:2377602,PMID:3942774,PMID:9837935 + - gene_reaction_rule: "ENSG00000167468" + - rxnFrom: "Recon3D" + - eccodes: "1.11.1.9" + - references: "PMID:10224163,PMID:2377602,PMID:3942774,PMID:9837935" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: RE3521M + - id: "RE3521M" - name: "Glutathione Transferase" - metabolites: !!omap - m02026m: -1 @@ -245658,15 +245658,15 @@ - m02097m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000100577 or ENSG00000197448 - - rxnFrom: Recon3D - - eccodes: 2.5.1.18 - - references: PMID:9755286 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000100577 or ENSG00000197448" + - rxnFrom: "Recon3D" + - eccodes: "2.5.1.18" + - references: "PMID:9755286" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: RE3525N + - id: "RE3525N" - name: "Arachidonate 12-Lipoxygenase" - metabolites: !!omap - m01040n: -2 @@ -245674,15 +245674,15 @@ - m02630n: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.13.11.31 - - references: PMID:1326548,PMID:7929234 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.13.11.31" + - references: "PMID:1326548,PMID:7929234" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: RE3525X + - id: "RE3525X" - name: "Arachidonate 12-Lipoxygenase" - metabolites: !!omap - m01040p: -2 @@ -245690,15 +245690,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.13.11.31 - - references: PMID:1326548,PMID:7929234 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.13.11.31" + - references: "PMID:1326548,PMID:7929234" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: RE3526C + - id: "RE3526C" - name: "Arachidonate 12-Lipoxygenase" - metabolites: !!omap - m01123c: 2 @@ -245706,15 +245706,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108839 - - rxnFrom: Recon3D - - eccodes: 1.13.11.31 - - references: PMID:1326548,PMID:7929234 + - gene_reaction_rule: "ENSG00000108839" + - rxnFrom: "Recon3D" + - eccodes: "1.13.11.31" + - references: "PMID:1326548,PMID:7929234" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: RE3526M + - id: "RE3526M" - name: "Arachidonate 12-Lipoxygenase" - metabolites: !!omap - m01123m: 2 @@ -245722,15 +245722,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.13.11.31 - - references: PMID:1326548,PMID:7929234 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.13.11.31" + - references: "PMID:1326548,PMID:7929234" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: RE3526X + - id: "RE3526X" - name: "Arachidonate 12-Lipoxygenase" - metabolites: !!omap - m01123p: 2 @@ -245738,15 +245738,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.13.11.31 - - references: PMID:1326548,PMID:7929234 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.13.11.31" + - references: "PMID:1326548,PMID:7929234" - subsystem: - - Arachidonic acid metabolism + - "Arachidonic acid metabolism" - confidence_score: 0 - !!omap - - id: RE3532M + - id: "RE3532M" - name: "Glutathione Transferase" - metabolites: !!omap - m01234m: -1 @@ -245754,15 +245754,15 @@ - m02859m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000100577 or ENSG00000197448 - - rxnFrom: Recon3D - - eccodes: 2.5.1.18 - - references: PMID:9755286 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000100577 or ENSG00000197448" + - rxnFrom: "Recon3D" + - eccodes: "2.5.1.18" + - references: "PMID:9755286" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: RE3532R + - id: "RE3532R" - name: "Glutathione Transferase" - metabolites: !!omap - m01234r: -1 @@ -245770,15 +245770,15 @@ - m02859r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000085871 or ENSG00000143198 - - rxnFrom: Recon3D - - eccodes: 2.5.1.18 - - references: PMID:9755286 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000085871 or ENSG00000143198" + - rxnFrom: "Recon3D" + - eccodes: "2.5.1.18" + - references: "PMID:9755286" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: RE3533M + - id: "RE3533M" - name: "Glutathione Transferase" - metabolites: !!omap - m02026m: -1 @@ -245786,15 +245786,15 @@ - m02864m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000100577 or ENSG00000197448 - - rxnFrom: Recon3D - - eccodes: 2.5.1.18 - - references: PMID:9755286 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000100577 or ENSG00000197448" + - rxnFrom: "Recon3D" + - eccodes: "2.5.1.18" + - references: "PMID:9755286" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: RE3533R + - id: "RE3533R" - name: "Glutathione Transferase" - metabolites: !!omap - m02026r: -1 @@ -245802,15 +245802,15 @@ - m02864r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000085871 or ENSG00000143198 - - rxnFrom: Recon3D - - eccodes: 2.5.1.18 - - references: PMID:9755286 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000085871 or ENSG00000143198" + - rxnFrom: "Recon3D" + - eccodes: "2.5.1.18" + - references: "PMID:9755286" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: RE3534M + - id: "RE3534M" - name: "Glutathione Transferase" - metabolites: !!omap - m01662m: -1 @@ -245818,15 +245818,15 @@ - m02860m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000100577 or ENSG00000197448 - - rxnFrom: Recon3D - - eccodes: 2.5.1.18 - - references: PMID:9755286 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000100577 or ENSG00000197448" + - rxnFrom: "Recon3D" + - eccodes: "2.5.1.18" + - references: "PMID:9755286" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: RE3534R + - id: "RE3534R" - name: "Glutathione Transferase" - metabolites: !!omap - m01662r: -1 @@ -245834,15 +245834,15 @@ - m02860r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000085871 or ENSG00000143198 - - rxnFrom: Recon3D - - eccodes: 2.5.1.18 - - references: PMID:9755286 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000085871 or ENSG00000143198" + - rxnFrom: "Recon3D" + - eccodes: "2.5.1.18" + - references: "PMID:9755286" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: RE3535R + - id: "RE3535R" - name: "RE3535R" - metabolites: !!omap - m01234r: 1 @@ -245851,15 +245851,15 @@ - m02783r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.13.11.34 - - references: PMID:9755286 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.13.11.34" + - references: "PMID:9755286" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: RE3554M + - id: "RE3554M" - name: "Glutathione Transferase" - metabolites: !!omap - m02026m: -1 @@ -245867,15 +245867,15 @@ - m02863m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000100577 or ENSG00000197448 - - rxnFrom: Recon3D - - eccodes: 2.5.1.18 - - references: PMID:9755286 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000100577 or ENSG00000197448" + - rxnFrom: "Recon3D" + - eccodes: "2.5.1.18" + - references: "PMID:9755286" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: RE3554R + - id: "RE3554R" - name: "Glutathione Transferase" - metabolites: !!omap - m02026r: -1 @@ -245883,15 +245883,15 @@ - m02863r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000085871 or ENSG00000143198 - - rxnFrom: Recon3D - - eccodes: 2.5.1.18 - - references: PMID:9755286 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000085871 or ENSG00000143198" + - rxnFrom: "Recon3D" + - eccodes: "2.5.1.18" + - references: "PMID:9755286" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: RE3557M + - id: "RE3557M" - name: "Glutathione Transferase" - metabolites: !!omap - m02026m: -1 @@ -245899,15 +245899,15 @@ - m02862m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000100577 or ENSG00000197448 - - rxnFrom: Recon3D - - eccodes: 2.5.1.18 - - references: PMID:9755286 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000100577 or ENSG00000197448" + - rxnFrom: "Recon3D" + - eccodes: "2.5.1.18" + - references: "PMID:9755286" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: RE3557R + - id: "RE3557R" - name: "Glutathione Transferase" - metabolites: !!omap - m02026r: -1 @@ -245915,15 +245915,15 @@ - m02862r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000008394 or ENSG00000085871 or ENSG00000143198 - - rxnFrom: Recon3D - - eccodes: 2.5.1.18 - - references: PMID:9755286 + - gene_reaction_rule: "ENSG00000008394 or ENSG00000085871 or ENSG00000143198" + - rxnFrom: "Recon3D" + - eccodes: "2.5.1.18" + - references: "PMID:9755286" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: RE3560C + - id: "RE3560C" - name: "Palmitoyl Coenzyme A Hydrolase" - metabolites: !!omap - m00421c: -1 @@ -245933,15 +245933,15 @@ - m02649c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136881 or ENSG00000184227 or ENSG00000205669 - - rxnFrom: Recon3D - - eccodes: 3.1.2.2 - - references: PMID:11673457 + - gene_reaction_rule: "ENSG00000136881 or ENSG00000184227 or ENSG00000205669" + - rxnFrom: "Recon3D" + - eccodes: "3.1.2.2" + - references: "PMID:11673457" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: RE3564C + - id: "RE3564C" - name: "3-Hydroxyacyl Coenzyme A Dehydrogenase" - metabolites: !!omap - m00420c: 1 @@ -245951,30 +245951,30 @@ - m02553c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 - - rxnFrom: Recon3D - - eccodes: 1.1.1.35 - - references: PMID:12054595 + - gene_reaction_rule: "ENSG00000072506" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.35" + - references: "PMID:12054595" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: RE3587N + - id: "RE3587N" - name: "Prostaglandin-E Synthase" - metabolites: !!omap - m02785n: 1 - m02793n: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110958 - - rxnFrom: Recon3D - - eccodes: 5.3.99.3 - - references: PMID:9115911,PMID:9732298 + - gene_reaction_rule: "ENSG00000110958" + - rxnFrom: "Recon3D" + - eccodes: "5.3.99.3" + - references: "PMID:9115911,PMID:9732298" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: RE3596M + - id: "RE3596M" - name: "Carbonyl Reductase (NADPH)" - metabolites: !!omap - m00328m: 1 @@ -245984,15 +245984,15 @@ - m02555m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157326 - - rxnFrom: Recon3D - - eccodes: 1.1.1.184 - - references: PMID:8244977,PMID:9862787 + - gene_reaction_rule: "ENSG00000157326" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.184" + - references: "PMID:8244977,PMID:9862787" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: RE3596X + - id: "RE3596X" - name: "Carbonyl Reductase (NADPH)" - metabolites: !!omap - m00328p: 1 @@ -246002,15 +246002,15 @@ - m02555p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157326 - - rxnFrom: Recon3D - - eccodes: 1.1.1.184 - - references: PMID:8244977,PMID:9862787 + - gene_reaction_rule: "ENSG00000157326" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.184" + - references: "PMID:8244977,PMID:9862787" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: RE3624M + - id: "RE3624M" - name: "Acyl Coenzyme A Oxidase" - metabolites: !!omap - CE4794_m: -1 @@ -246019,15 +246019,15 @@ - m03021m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: 1.3.3.6 - - references: PMID:11356164,PMID:7775433 + - gene_reaction_rule: "ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "1.3.3.6" + - references: "PMID:11356164,PMID:7775433" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3624X + - id: "RE3624X" - name: "Acyl Coenzyme A Oxidase" - metabolites: !!omap - CE4794_p: -1 @@ -246036,15 +246036,15 @@ - m03021p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000087008 or ENSG00000161533 or ENSG00000168306 - - rxnFrom: Recon3D - - eccodes: 1.3.3.6 - - references: PMID:11356164,PMID:7775433 + - gene_reaction_rule: "ENSG00000087008 or ENSG00000161533 or ENSG00000168306" + - rxnFrom: "Recon3D" + - eccodes: "1.3.3.6" + - references: "PMID:11356164,PMID:7775433" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3626M + - id: "RE3626M" - name: "Acyl Coenzyme A Oxidase" - metabolites: !!omap - m00678m: 1 @@ -246053,15 +246053,15 @@ - m02630m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: 1.3.3.6 - - references: PMID:11356164,PMID:7775433 + - gene_reaction_rule: "ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "1.3.3.6" + - references: "PMID:11356164,PMID:7775433" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3627C + - id: "RE3627C" - name: "3-Hydroxyacyl Coenzyme A Dehydrogenase" - metabolites: !!omap - m00678c: -1 @@ -246071,15 +246071,15 @@ - m03035c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072506 - - rxnFrom: Recon3D - - eccodes: 1.1.1.35 - - references: PMID:11356164,PMID:7775433 + - gene_reaction_rule: "ENSG00000072506" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.35" + - references: "PMID:11356164,PMID:7775433" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: RE3636C + - id: "RE3636C" - name: "RE3636C" - metabolites: !!omap - m01211c: 1 @@ -246088,15 +246088,15 @@ - m02040c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.3.3.6 - - references: PMID:10385606,PMID:11722951,PMID:9789014 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.3.3.6" + - references: "PMID:10385606,PMID:11722951,PMID:9789014" - subsystem: - - Vitamin E metabolism + - "Vitamin E metabolism" - confidence_score: 0 - !!omap - - id: RN0001R + - id: "RN0001R" - name: "Flavin-Containing Monooxygenase" - metabolites: !!omap - m02039r: -1 @@ -246108,15 +246108,15 @@ - m02892r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000007933 or ENSG00000010932 or ENSG00000076258 or ENSG00000094963 or ENSG00000131781 - - rxnFrom: Recon3D - - eccodes: 1.14.13.8 - - references: + - gene_reaction_rule: "ENSG00000007933 or ENSG00000010932 or ENSG00000076258 or ENSG00000094963 or ENSG00000131781" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.8" + - references: "" - subsystem: - - Metabolism of Other Amino Acids + - "Metabolism of Other Amino Acids" - confidence_score: 0 - !!omap - - id: RN0002N + - id: "RN0002N" - name: "Methionine Synthase" - metabolites: !!omap - m01115n: -1 @@ -246126,15 +246126,15 @@ - m02980n: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.1.1.13 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.1.1.13" + - references: "" - subsystem: - - Metabolism of Other Amino Acids + - "Metabolism of Other Amino Acids" - confidence_score: 0 - !!omap - - id: RN0002R + - id: "RN0002R" - name: "Methionine Synthase" - metabolites: !!omap - m01115r: -1 @@ -246144,15 +246144,15 @@ - m02980r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.1.1.13 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.1.1.13" + - references: "" - subsystem: - - Metabolism of Other Amino Acids + - "Metabolism of Other Amino Acids" - confidence_score: 0 - !!omap - - id: RN0014R + - id: "RN0014R" - name: "Methionine Synthase" - metabolites: !!omap - m02039r: 5 @@ -246160,15 +246160,15 @@ - m02618r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.1.1.13 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.1.1.13" + - references: "" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: RN0020C + - id: "RN0020C" - name: "Unspecific Monooxygenase" - metabolites: !!omap - CN0012_c: 1 @@ -246180,15 +246180,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Xenobiotics metabolism + - "Xenobiotics metabolism" - confidence_score: 0 - !!omap - - id: RN0020R + - id: "RN0020R" - name: "Unspecific Monooxygenase" - metabolites: !!omap - CN0012_r: 1 @@ -246200,15 +246200,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000160868 or ENSG00000160870 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 - - rxnFrom: Recon3D - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000160868 or ENSG00000160870 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974" + - rxnFrom: "Recon3D" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Xenobiotics metabolism + - "Xenobiotics metabolism" - confidence_score: 0 - !!omap - - id: RN0021C + - id: "RN0021C" - name: "Microsomal Epoxide Hydrolase" - metabolites: !!omap - CN0009_c: 1 @@ -246216,15 +246216,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120915 - - rxnFrom: Recon3D - - eccodes: 3.3.2.9 - - references: + - gene_reaction_rule: "ENSG00000120915" + - rxnFrom: "Recon3D" + - eccodes: "3.3.2.9" + - references: "" - subsystem: - - Xenobiotics metabolism + - "Xenobiotics metabolism" - confidence_score: 0 - !!omap - - id: RN0021R + - id: "RN0021R" - name: "Microsomal Epoxide Hydrolase" - metabolites: !!omap - CN0009_r: 1 @@ -246232,15 +246232,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000143819 - - rxnFrom: Recon3D - - eccodes: 3.3.2.9 - - references: + - gene_reaction_rule: "ENSG00000143819" + - rxnFrom: "Recon3D" + - eccodes: "3.3.2.9" + - references: "" - subsystem: - - Xenobiotics metabolism + - "Xenobiotics metabolism" - confidence_score: 0 - !!omap - - id: RN0021X + - id: "RN0021X" - name: "Microsomal Epoxide Hydrolase" - metabolites: !!omap - CN0009_p: 1 @@ -246248,15 +246248,15 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120915 - - rxnFrom: Recon3D - - eccodes: 3.3.2.9 - - references: + - gene_reaction_rule: "ENSG00000120915" + - rxnFrom: "Recon3D" + - eccodes: "3.3.2.9" + - references: "" - subsystem: - - Xenobiotics metabolism + - "Xenobiotics metabolism" - confidence_score: 0 - !!omap - - id: RN0022C + - id: "RN0022C" - name: "Microsomal Epoxide Hydrolase" - metabolites: !!omap - CN0010_c: 1 @@ -246265,15 +246265,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120915 - - rxnFrom: Recon3D - - eccodes: 3.3.2.9 - - references: + - gene_reaction_rule: "ENSG00000120915" + - rxnFrom: "Recon3D" + - eccodes: "3.3.2.9" + - references: "" - subsystem: - - Xenobiotics metabolism + - "Xenobiotics metabolism" - confidence_score: 0 - !!omap - - id: RN0022R + - id: "RN0022R" - name: "Microsomal Epoxide Hydrolase" - metabolites: !!omap - CN0010_r: 1 @@ -246282,15 +246282,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000143819 - - rxnFrom: Recon3D - - eccodes: 3.3.2.9 - - references: + - gene_reaction_rule: "ENSG00000143819" + - rxnFrom: "Recon3D" + - eccodes: "3.3.2.9" + - references: "" - subsystem: - - Xenobiotics metabolism + - "Xenobiotics metabolism" - confidence_score: 0 - !!omap - - id: RN0022X + - id: "RN0022X" - name: "Microsomal Epoxide Hydrolase" - metabolites: !!omap - CN0010_p: 1 @@ -246299,15 +246299,15 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120915 - - rxnFrom: Recon3D - - eccodes: 3.3.2.9 - - references: + - gene_reaction_rule: "ENSG00000120915" + - rxnFrom: "Recon3D" + - eccodes: "3.3.2.9" + - references: "" - subsystem: - - Xenobiotics metabolism + - "Xenobiotics metabolism" - confidence_score: 0 - !!omap - - id: RN0023C + - id: "RN0023C" - name: "Microsomal Epoxide Hydrolase" - metabolites: !!omap - CN0011_c: 1 @@ -246316,15 +246316,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120915 - - rxnFrom: Recon3D - - eccodes: 3.3.2.9 - - references: + - gene_reaction_rule: "ENSG00000120915" + - rxnFrom: "Recon3D" + - eccodes: "3.3.2.9" + - references: "" - subsystem: - - Xenobiotics metabolism + - "Xenobiotics metabolism" - confidence_score: 0 - !!omap - - id: RN0023R + - id: "RN0023R" - name: "Microsomal Epoxide Hydrolase" - metabolites: !!omap - CN0011_r: 1 @@ -246333,15 +246333,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000143819 - - rxnFrom: Recon3D - - eccodes: 3.3.2.9 - - references: + - gene_reaction_rule: "ENSG00000143819" + - rxnFrom: "Recon3D" + - eccodes: "3.3.2.9" + - references: "" - subsystem: - - Xenobiotics metabolism + - "Xenobiotics metabolism" - confidence_score: 0 - !!omap - - id: RN0023X + - id: "RN0023X" - name: "Microsomal Epoxide Hydrolase" - metabolites: !!omap - CN0011_p: 1 @@ -246350,15 +246350,15 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120915 - - rxnFrom: Recon3D - - eccodes: 3.3.2.9 - - references: + - gene_reaction_rule: "ENSG00000120915" + - rxnFrom: "Recon3D" + - eccodes: "3.3.2.9" + - references: "" - subsystem: - - Xenobiotics metabolism + - "Xenobiotics metabolism" - confidence_score: 0 - !!omap - - id: RN0027C + - id: "RN0027C" - name: "Unspecific Monooxygenase" - metabolites: !!omap - CN0021_c: 1 @@ -246370,15 +246370,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Xenobiotics metabolism + - "Xenobiotics metabolism" - confidence_score: 0 - !!omap - - id: RN0027R + - id: "RN0027R" - name: "Unspecific Monooxygenase" - metabolites: !!omap - CN0021_r: 1 @@ -246390,15 +246390,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000160868 or ENSG00000160870 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 - - rxnFrom: Recon3D - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000160868 or ENSG00000160870 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974" + - rxnFrom: "Recon3D" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Xenobiotics metabolism + - "Xenobiotics metabolism" - confidence_score: 0 - !!omap - - id: RN0028C + - id: "RN0028C" - name: "Microsomal Epoxide Hydrolase" - metabolites: !!omap - CN0021_c: -1 @@ -246406,15 +246406,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120915 - - rxnFrom: Recon3D - - eccodes: 3.3.2.9 - - references: + - gene_reaction_rule: "ENSG00000120915" + - rxnFrom: "Recon3D" + - eccodes: "3.3.2.9" + - references: "" - subsystem: - - Xenobiotics metabolism + - "Xenobiotics metabolism" - confidence_score: 0 - !!omap - - id: RN0028R + - id: "RN0028R" - name: "Microsomal Epoxide Hydrolase" - metabolites: !!omap - CN0021_r: -1 @@ -246422,15 +246422,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000143819 - - rxnFrom: Recon3D - - eccodes: 3.3.2.9 - - references: + - gene_reaction_rule: "ENSG00000143819" + - rxnFrom: "Recon3D" + - eccodes: "3.3.2.9" + - references: "" - subsystem: - - Xenobiotics metabolism + - "Xenobiotics metabolism" - confidence_score: 0 - !!omap - - id: RN0028X + - id: "RN0028X" - name: "Microsomal Epoxide Hydrolase" - metabolites: !!omap - CN0021_p: -1 @@ -246438,15 +246438,15 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120915 - - rxnFrom: Recon3D - - eccodes: 3.3.2.9 - - references: + - gene_reaction_rule: "ENSG00000120915" + - rxnFrom: "Recon3D" + - eccodes: "3.3.2.9" + - references: "" - subsystem: - - Xenobiotics metabolism + - "Xenobiotics metabolism" - confidence_score: 0 - !!omap - - id: RN0029C + - id: "RN0029C" - name: "Unspecific Monooxygenase" - metabolites: !!omap - CN0022_c: -1 @@ -246458,15 +246458,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Xenobiotics metabolism + - "Xenobiotics metabolism" - confidence_score: 0 - !!omap - - id: RN0029R + - id: "RN0029R" - name: "Unspecific Monooxygenase" - metabolites: !!omap - CN0022_r: -1 @@ -246478,15 +246478,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000160868 or ENSG00000160870 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 - - rxnFrom: Recon3D - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000160868 or ENSG00000160870 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974" + - rxnFrom: "Recon3D" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Xenobiotics metabolism + - "Xenobiotics metabolism" - confidence_score: 0 - !!omap - - id: RN0030C + - id: "RN0030C" - name: "Unspecific Monooxygenase" - metabolites: !!omap - CN0016_c: -1 @@ -246498,15 +246498,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Xenobiotics metabolism + - "Xenobiotics metabolism" - confidence_score: 0 - !!omap - - id: RN0030R + - id: "RN0030R" - name: "Unspecific Monooxygenase" - metabolites: !!omap - CN0016_r: -1 @@ -246518,15 +246518,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000160868 or ENSG00000160870 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 - - rxnFrom: Recon3D - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000160868 or ENSG00000160870 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974" + - rxnFrom: "Recon3D" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Xenobiotics metabolism + - "Xenobiotics metabolism" - confidence_score: 0 - !!omap - - id: RN0031C + - id: "RN0031C" - name: "Microsomal Epoxide Hydrolase" - metabolites: !!omap - CN0017_c: -1 @@ -246534,15 +246534,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120915 - - rxnFrom: Recon3D - - eccodes: 3.3.2.9 - - references: + - gene_reaction_rule: "ENSG00000120915" + - rxnFrom: "Recon3D" + - eccodes: "3.3.2.9" + - references: "" - subsystem: - - Xenobiotics metabolism + - "Xenobiotics metabolism" - confidence_score: 0 - !!omap - - id: RN0031R + - id: "RN0031R" - name: "Microsomal Epoxide Hydrolase" - metabolites: !!omap - CN0017_r: -1 @@ -246550,15 +246550,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000143819 - - rxnFrom: Recon3D - - eccodes: 3.3.2.9 - - references: + - gene_reaction_rule: "ENSG00000143819" + - rxnFrom: "Recon3D" + - eccodes: "3.3.2.9" + - references: "" - subsystem: - - Xenobiotics metabolism + - "Xenobiotics metabolism" - confidence_score: 0 - !!omap - - id: RN0031X + - id: "RN0031X" - name: "Microsomal Epoxide Hydrolase" - metabolites: !!omap - CN0017_p: -1 @@ -246566,15 +246566,15 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120915 - - rxnFrom: Recon3D - - eccodes: 3.3.2.9 - - references: + - gene_reaction_rule: "ENSG00000120915" + - rxnFrom: "Recon3D" + - eccodes: "3.3.2.9" + - references: "" - subsystem: - - Xenobiotics metabolism + - "Xenobiotics metabolism" - confidence_score: 0 - !!omap - - id: RN0032C + - id: "RN0032C" - name: "Unspecific Monooxygenase" - metabolites: !!omap - CN0018_c: -1 @@ -246586,15 +246586,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Xenobiotics metabolism + - "Xenobiotics metabolism" - confidence_score: 0 - !!omap - - id: RN0032R + - id: "RN0032R" - name: "Unspecific Monooxygenase" - metabolites: !!omap - CN0018_r: -1 @@ -246606,1320 +246606,1320 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000160868 or ENSG00000160870 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974 - - rxnFrom: Recon3D - - eccodes: 1.14.14.1 - - references: + - gene_reaction_rule: "ENSG00000021461 or ENSG00000100197 or ENSG00000106258 or ENSG00000108242 or ENSG00000130649 or ENSG00000134716 or ENSG00000137869 or ENSG00000138061 or ENSG00000138109 or ENSG00000138115 or ENSG00000140465 or ENSG00000140505 or ENSG00000142973 or ENSG00000160868 or ENSG00000160870 or ENSG00000167600 or ENSG00000171903 or ENSG00000186160 or ENSG00000186204 or ENSG00000186377 or ENSG00000186526 or ENSG00000197408 or ENSG00000197446 or ENSG00000197838 or ENSG00000198077 or ENSG00000255974" + - rxnFrom: "Recon3D" + - eccodes: "1.14.14.1" + - references: "" - subsystem: - - Xenobiotics metabolism + - "Xenobiotics metabolism" - confidence_score: 0 - !!omap - - id: EX_prostgh2[e] + - id: "EX_prostgh2[e]" - name: "Exchange of Prostaglandin H2 " - metabolites: !!omap - m02794s: -1 - m02794x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_prostgi2[e] + - id: "EX_prostgi2[e]" - name: "Exchange of Prostaglandin I2 " - metabolites: !!omap - m02795s: -1 - m02795x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_cdp[e] + - id: "EX_cdp[e]" - name: "Exchange of CDP " - metabolites: !!omap - m01424s: -1 - m01424x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_dtdp[e] + - id: "EX_dtdp[e]" - name: "Exchange of ({[ (2R, 3S, 5R)-3-Hydroxy-5- (5-Methyl-2, 4-Dioxo-1, 2, 3, 4-Tetrahydropyrimidin-1-Yl)Oxolan-2-Yl]Methyl Phosphonato}Oxy)Phosphonate " - metabolites: !!omap - m01747s: -1 - m01747x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC00955[e] + - id: "EX_HC00955[e]" - name: "Exchange of L-3-Cyanoalanine " - metabolites: !!omap - m02326s: -1 - m02326x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC00002[e] + - id: "EX_HC00002[e]" - name: "Exchange of Antichymotrypsin " - metabolites: !!omap - m01343s: -1 - m01343x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC00003[e] + - id: "EX_HC00003[e]" - name: "Exchange of Antitrypsin " - metabolites: !!omap - m01345s: -1 - m01345x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC00004[e] + - id: "EX_HC00004[e]" - name: "Exchange of Apoa1 " - metabolites: !!omap - m01350s: -1 - m01350x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC01852[e] + - id: "EX_HC01852[e]" - name: "Exchange of Fibrinogen " - metabolites: !!omap - m01827s: -1 - m01827x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC01939[e] + - id: "EX_HC01939[e]" - name: "Exchange of Haptoglobin " - metabolites: !!omap - m02044s: -1 - m02044x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC01942[e] + - id: "EX_HC01942[e]" - name: "Exchange of Plasminogen " - metabolites: !!omap - m02753s: -1 - m02753x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC01943[e] + - id: "EX_HC01943[e]" - name: "Exchange of Prothrombin " - metabolites: !!omap - m02802s: -1 - m02802x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC01944[e] + - id: "EX_HC01944[e]" - name: "Exchange of Apotransferin " - metabolites: !!omap - m00186s: -1 - m00186x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC00822[e] + - id: "EX_HC00822[e]" - name: "Exchange of Chitobiose " - metabolites: !!omap - m01439s: -1 - m01439x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_C02528[e] + - id: "EX_C02528[e]" - name: "Exchange of Chenodeoxycholate " - metabolites: !!omap - C02528_s: -1 - C02528_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC02192[e] + - id: "EX_HC02192[e]" - name: "Exchange of Taurolithocholate " - metabolites: !!omap - m02965s: -1 - m02965x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC02193[e] + - id: "EX_HC02193[e]" - name: "Exchange of Glycolithocholate " - metabolites: !!omap - m02000s: -1 - m02000x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC02195[e] + - id: "EX_HC02195[e]" - name: "Exchange of Tauroursodeoxycholate " - metabolites: !!omap - m02966s: -1 - m02966x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC02196[e] + - id: "EX_HC02196[e]" - name: "Exchange of Glycoursodeoxycholate " - metabolites: !!omap - m02004s: -1 - m02004x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC02220[e] + - id: "EX_HC02220[e]" - name: "Chenodeoxycholic acid 3-sulfate exchange" - metabolites: !!omap - m02950s: -1 - m02950x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC02154[e] + - id: "EX_HC02154[e]" - name: "Exchange " - metabolites: !!omap - HC02154_s: -1 - HC02154_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC02199[e] + - id: "EX_HC02199[e]" - name: "Exchange of Glutathionyl-Leuc4 " - metabolites: !!omap - m01980s: -1 - m01980x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC02200[e] + - id: "EX_HC02200[e]" - name: "Exchange of S-Glutathionyl-2-4-Dinitrobenzene " - metabolites: !!omap - m02900s: -1 - m02900x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC02201[e] + - id: "EX_HC02201[e]" - name: "Exchange of S-Glutathionyl-Ethacrynic-Acid " - metabolites: !!omap - m02901s: -1 - m02901x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC02191[e] + - id: "EX_HC02191[e]" - name: "Exchange of Lithocholate " - metabolites: !!omap - m02402s: -1 - m02402x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC02194[e] + - id: "EX_HC02194[e]" - name: "Ursodeoxycholic acid exchange" - metabolites: !!omap - m03129s: -1 - m03129x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC02197[e] + - id: "EX_HC02197[e]" - name: "Exchange of Sulfoglycolithocholate " - metabolites: !!omap - m02951s: -1 - m02951x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC02198[e] + - id: "EX_HC02198[e]" - name: "Exchange of 2-[ (4R)-4-[ (1S, 2S, 5R, 7R, 10R, 11S, 14R, 15R)-2, 15-Dimethyl-5- (Sulfonatooxy)Tetracyclo[8.7.0.0^{2, 7}.0^{11, 15}]Heptadecan-14-Yl]Pentanamido]Ethane-1-Sulfonate " - metabolites: !!omap - m02952s: -1 - m02952x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC02187[e] + - id: "EX_HC02187[e]" - name: "Exchange of Reverse-Triiodthyronine " - metabolites: !!omap - m02839s: -1 - m02839x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC02180[e] + - id: "EX_HC02180[e]" - name: "Exchange of Thromboxane-B2 " - metabolites: !!omap - m02995s: -1 - m02995x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC02202[e] + - id: "EX_HC02202[e]" - name: "Exchange of Prostaglandin A1 " - metabolites: !!omap - m02776s: -1 - m02776x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC02203[e] + - id: "EX_HC02203[e]" - name: "Exchange of Prostaglandin-A2 " - metabolites: !!omap - m02777s: -1 - m02777x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC02204[e] + - id: "EX_HC02204[e]" - name: "Exchange of Prostaglandin-B1 " - metabolites: !!omap - m02778s: -1 - m02778x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC02205[e] + - id: "EX_HC02205[e]" - name: "Exchange of Prostaglandin-B2 " - metabolites: !!omap - m02779s: -1 - m02779x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC02206[e] + - id: "EX_HC02206[e]" - name: "Exchange of Prostaglandin C1 " - metabolites: !!omap - m02780s: -1 - m02780x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC02207[e] + - id: "EX_HC02207[e]" - name: "Exchange of Prostaglandin-C2 " - metabolites: !!omap - m02781s: -1 - m02781x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC02208[e] + - id: "EX_HC02208[e]" - name: "Exchange of Prostaglandin-D1 " - metabolites: !!omap - m02782s: -1 - m02782x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC02210[e] + - id: "EX_HC02210[e]" - name: "Exchange of Prostaglandin-D3 " - metabolites: !!omap - m02784s: -1 - m02784x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC02213[e] + - id: "EX_HC02213[e]" - name: "Exchange of Prostaglandin-E3 " - metabolites: !!omap - m02787s: -1 - m02787x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC02214[e] + - id: "EX_HC02214[e]" - name: "Exchange of Prostaglandin-F1Alpha " - metabolites: !!omap - m02788s: -1 - m02788x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC02216[e] + - id: "EX_HC02216[e]" - name: "Exchange of Prostaglandin-F2Beta " - metabolites: !!omap - m02790s: -1 - m02790x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC02217[e] + - id: "EX_HC02217[e]" - name: "Exchange of Prostaglandin-G2 " - metabolites: !!omap - m02792s: -1 - m02792x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_malcoa[e] + - id: "EX_malcoa[e]" - name: "Exchange of Malonyl Coenzyme A " - metabolites: !!omap - m02444s: -1 - m02444x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_arachcoa[e] + - id: "EX_arachcoa[e]" - name: "Exchange of Arachidyl Coenzyme A " - metabolites: !!omap - m01773s: -1 - m01773x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_coa[e] + - id: "EX_coa[e]" - name: "Exchange of Coenzyme A" - metabolites: !!omap - m01597s: -1 - m01597x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE2250[e] + - id: "EX_CE2250[e]" - name: "Exchange of 3-Oxodocosanoyl Coenzyme A " - metabolites: !!omap - m00866s: -1 - m00866x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE1935[e] + - id: "EX_CE1935[e]" - name: "Exchange of Spermine Monoaldehyde " - metabolites: !!omap - m02925s: -1 - m02925x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE1940[e] + - id: "EX_CE1940[e]" - name: "Exchange of Spermidine Monoaldehyde 2 " - metabolites: !!omap - m02922s: -1 - m02922x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE1943[e] + - id: "EX_CE1943[e]" - name: "Exchange of Spermidine Dialdehyde " - metabolites: !!omap - m02920s: -1 - m02920x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE2011[e] + - id: "EX_CE2011[e]" - name: "Exchange of Hypothiocyanite " - metabolites: !!omap - m02158s: -1 - m02158x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE1939[e] + - id: "EX_CE1939[e]" - name: "Exchange of Spermidine Monoaldehyde 1 " - metabolites: !!omap - m02921s: -1 - m02921x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_maltpt[e] + - id: "EX_maltpt[e]" - name: "Exchange of Maltopentaose " - metabolites: !!omap - maltpt_s: -1 - maltpt_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE2915[e] + - id: "EX_CE2915[e]" - name: "Exchange of Beta-Casomorphin " - metabolites: !!omap - m01387s: -1 - m01387x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE4722[e] + - id: "EX_CE4722[e]" - name: "Exchange of Beta-Casomorphin (1-6) " - metabolites: !!omap - m01386s: -1 - m01386x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE2916[e] + - id: "EX_CE2916[e]" - name: "Exchange of Neocasomorphin " - metabolites: !!omap - m02563s: -1 - m02563x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE4723[e] + - id: "EX_CE4723[e]" - name: "Exchange of Neocasomorphin (1-5) " - metabolites: !!omap - m02562s: -1 - m02562x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE2917[e] + - id: "EX_CE2917[e]" - name: "Exchange of Apelin-13 " - metabolites: !!omap - m01348s: -1 - m01348x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE4724[e] + - id: "EX_CE4724[e]" - name: "Exchange of Apelin (1-12) " - metabolites: !!omap - m01347s: -1 - m01347x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_malthp[e] + - id: "EX_malthp[e]" - name: "Exchange of Maltoheptaose " - metabolites: !!omap - malthp_s: -1 - malthp_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE2838[e] + - id: "EX_CE2838[e]" - name: "Exchange of Maltononaose " - metabolites: !!omap - m02448s: -1 - m02448x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE1950[e] + - id: "EX_CE1950[e]" - name: "Exchange of Cyanosulfurous Acid Anion " - metabolites: !!omap - CE1950_s: -1 - CE1950_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_cynt[e] + - id: "EX_cynt[e]" - name: "Exchange of Cyanate " - metabolites: !!omap - cynt_s: -1 - cynt_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_23cump[e] + - id: "EX_23cump[e]" - name: "Exchange of 2',3'-Cyclic UMP " - metabolites: !!omap - m00570s: -1 - m00570x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_3ump[e] + - id: "EX_3ump[e]" - name: "Exchange of 3'-UMP " - metabolites: !!omap - m00921s: -1 - m00921x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE5786[e] + - id: "EX_CE5786[e]" - name: "Exchange of Kinetensin " - metabolites: !!omap - m02318s: -1 - m02318x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE5788[e] + - id: "EX_CE5788[e]" - name: "Exchange of Kinetensin 1-7 " - metabolites: !!omap - m02315s: -1 - m02315x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE5789[e] + - id: "EX_CE5789[e]" - name: "Exchange of Kinetensin 1-8 " - metabolites: !!omap - m02316s: -1 - m02316x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE5797[e] + - id: "EX_CE5797[e]" - name: "Exchange of Neuromedin N " - metabolites: !!omap - m02570s: -1 - m02570x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE5798[e] + - id: "EX_CE5798[e]" - name: "Exchange of Neuromedin N (1-4) " - metabolites: !!omap - m02569s: -1 - m02569x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE5787[e] + - id: "EX_CE5787[e]" - name: "Exchange of Kinetensin 1-3 " - metabolites: !!omap - m02314s: -1 - m02314x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE5791[e] + - id: "EX_CE5791[e]" - name: "Exchange of Kinetensin 4-8 " - metabolites: !!omap - m02317s: -1 - m02317x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE5867[e] + - id: "EX_CE5867[e]" - name: "Exchange of N-Acetyl-Seryl-Aspartyl-Lysyl-Proline " - metabolites: !!omap - m02551s: -1 - m02551x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE5868[e] + - id: "EX_CE5868[e]" - name: "Exchange of N-Acetyl-Seryl-Aspartate " - metabolites: !!omap - m02550s: -1 - m02550x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE5869[e] + - id: "EX_CE5869[e]" - name: "Exchange of Lysyl-Proline " - metabolites: !!omap - m02429s: -1 - m02429x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE4633[e] + - id: "EX_CE4633[e]" - name: "Exchange of Hypochlorous Acid " - metabolites: !!omap - m02156s: -1 - m02156x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE4881[e] + - id: "EX_CE4881[e]" - name: "Exchange of Nitryl Chloride " - metabolites: !!omap - m02591s: -1 - m02591x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE5854[e] + - id: "EX_CE5854[e]" - name: "Exchange of Gama-Cehc-Glucuronide " - metabolites: !!omap - m01924s: -1 - m01924x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE1926[e] + - id: "EX_CE1926[e]" - name: "Exchange of Gama-Carboxyethyl-Hydroxychroman " - metabolites: !!omap - m01923s: -1 - m01923x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_udpgal[e] + - id: "EX_udpgal[e]" - name: "Exchange of UDP-D-Galactose " - metabolites: !!omap - m03107s: -1 - m03107x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_crm_hs[e] + - id: "EX_crm_hs[e]" - name: "Exchange of N-Acylsphingosine " - metabolites: !!omap - m01430s: -1 - m01430x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_galside_hs[e] + - id: "EX_galside_hs[e]" - name: "Exchange of D-Galactosyl-N-Acylsphingosine " - metabolites: !!omap - m01679s: -1 - m01679x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE0074[e] + - id: "EX_CE0074[e]" - name: "Exchange of Alloxan " - metabolites: !!omap - m01315s: -1 - m01315x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_cdpea[e] + - id: "EX_cdpea[e]" - name: "Exchange of CDP-Ethanolamine " - metabolites: !!omap - m01428s: -1 - m01428x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_12dgr120[e] + - id: "EX_12dgr120[e]" - name: "Exchange of 1, 2-Diacyl-Sn-Glycerol (Didodecanoyl, N-C12:0) " - metabolites: !!omap - 12dgr120_s: -1 - 12dgr120_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE5853[e] + - id: "EX_CE5853[e]" - name: "Exchange of Alpha-Cehc-Glucuronide " - metabolites: !!omap - m01321s: -1 - m01321x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE1925[e] + - id: "EX_CE1925[e]" - name: "Exchange of 3'-Carboxy-Alpha-Chromanol " - metabolites: !!omap - m00766s: -1 - m00766x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_C04849[e] + - id: "EX_C04849[e]" - name: "Exchange of (5Z, 9E, 14Z)- (8Xi, 11R, 12S)-11, 12-Epoxy-8-Hydroxyicosa-5, 9, 14-Trienoate " - metabolites: !!omap - m02096s: -1 - m02096x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: PIt8 + - id: "PIt8" - name: "Phosphate Transport In/Out via Na+ Symporter" - metabolites: !!omap - m02519c: 1.5 @@ -247928,15 +247928,15 @@ - m02751s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000144136 or ENSG00000168575 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:12759754 + - gene_reaction_rule: "ENSG00000144136 or ENSG00000168575" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:12759754" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: biomass_Recon3D + - id: "biomass_Recon3D" - name: "Generic Human Biomass Reaction" - metabolites: !!omap - m01285c: 20.650823 @@ -247983,45 +247983,45 @@ - temp001c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Artificial reactions + - "Artificial reactions" - confidence_score: 0 - !!omap - - id: 2MB2COAc + - id: "2MB2COAc" - name: "Transport of 2-Methylcrotonoyl Coenzyme A into Cytosol" - metabolites: !!omap - m02999c: 1 - m02999m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000155368 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 20511713, PMID: 11859412, PMID: 16908521, PMID: 8001684 + - gene_reaction_rule: "ENSG00000155368" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 20511713, PMID: 11859412, PMID: 16908521, PMID: 8001684" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: 3HBCOARc + - id: "3HBCOARc" - name: "Transport of (R)-3-Hydroxybutanoyl Coenzyme A into Cytosol" - metabolites: !!omap - m00159c: 1 - m00159m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000155368 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 20511713, PMID: 11859412, PMID: 16908521, PMID: 8001684 + - gene_reaction_rule: "ENSG00000155368" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 20511713, PMID: 11859412, PMID: 16908521, PMID: 8001684" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: ADPACDAc + - id: "ADPACDAc" - name: "Activation of Adipic Acid for Formation of Adipoyl Carnitine" - metabolites: !!omap - adpac_c: -1 @@ -248032,30 +248032,30 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Hunt MC, Alexson SEH. (2008). Progress in Lipid Research 47: 405-21 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Hunt MC, Alexson SEH. (2008). Progress in Lipid Research 47: 405-21" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: ADPACtx + - id: "ADPACtx" - name: "Transport into Cytosol (Diffusion)" - metabolites: !!omap - adpac_c: 1 - adpac_p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Glatz JFC, Luiken JJFP, Bonen A. (2010). Physiological Reviews 90: 367-417, Kamp F, Hamilton JA. (2006). Prostaglandins, Leukotrienes and Essential Fatty Acids 75: 149-59, PMCID: PMC2785172, Evtodienko VY, Bondarenko DI, Antonenko YN. (1999). Biochimica et Biophysica Acta (BBA) - Biomembranes 1420: 95-103 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Glatz JFC, Luiken JJFP, Bonen A. (2010). Physiological Reviews 90: 367-417, Kamp F, Hamilton JA. (2006). Prostaglandins, Leukotrienes and Essential Fatty Acids 75: 149-59, PMCID: PMC2785172, Evtodienko VY, Bondarenko DI, Antonenko YN. (1999). Biochimica et Biophysica Acta (BBA) - Biomembranes 1420: 95-103" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: ADPCOACROT + - id: "ADPCOACROT" - name: "Production of Adipoyl Carnitine" - metabolites: !!omap - adpcoa_p: -1 @@ -248064,15 +248064,15 @@ - m02348p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005469 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15060085, Westin M, Hunt M, Alexson S. (2008). Cellular and Molecular Life Sciences 65: 982-90, PMID: 20560540 + - gene_reaction_rule: "ENSG00000005469" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15060085, Westin M, Hunt M, Alexson S. (2008). Cellular and Molecular Life Sciences 65: 982-90, PMID: 20560540" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: ADPCOAPTE + - id: "ADPCOAPTE" - name: "Thioesterification of Adipoyl Coenzyme A for Release into Cytosol" - metabolites: !!omap - adpac_p: 1 @@ -248082,30 +248082,30 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101473 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15007068, PMID: 18538142, Westin MAK, Hunt MC, Alexson SEH. (2005). Journal of Biological Chemistry 280: 38125-32 + - gene_reaction_rule: "ENSG00000101473" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15007068, PMID: 18538142, Westin MAK, Hunt MC, Alexson SEH. (2005). Journal of Biological Chemistry 280: 38125-32" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: BCRNe + - id: "BCRNe" - name: "Transport of 3-Hydroxy Butyryl Carnitine into Extra Cellular Space" - metabolites: !!omap - 3bcrn_c: -1 - 3bcrn_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 20157782, Han L, Ye J, Qiu W, Gao X, Wang Y, Gu X. (2007). Journal of Inherited Metabolic Disease 30: 507-14, PMID: 11489939 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 20157782, Han L, Ye J, Qiu W, Gao X, Wang Y, Gu X. (2007). Journal of Inherited Metabolic Disease 30: 507-14, PMID: 11489939" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C100CPT1 + - id: "C100CPT1" - name: "Production of Decanoylcarnitine" - metabolites: !!omap - c10crn_c: 1 @@ -248114,15 +248114,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 18767270, PMID: 18075239 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 18767270, PMID: 18075239" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C101CPT1 + - id: "C101CPT1" - name: "Production of Decenoylcarnitine" - metabolites: !!omap - c101coa_c: -1 @@ -248131,30 +248131,30 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 7551818 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 7551818" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C101CRNe + - id: "C101CRNe" - name: "Transport of Decenoyl Carnitine into Extra Cellular Space" - metabolites: !!omap - c101crn_c: -1 - c101crn_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Jones LL, McDonald DA, Borum PR. (2010). Progress in Lipid Research 49: 61-75 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Jones LL, McDonald DA, Borum PR. (2010). Progress in Lipid Research 49: 61-75" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C102CPT1 + - id: "C102CPT1" - name: "Production of Decadienoylcarnitine" - metabolites: !!omap - decdicoa_c: -1 @@ -248163,45 +248163,45 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 19578400 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 19578400" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C10CRNe + - id: "C10CRNe" - name: "Transport of Decanoyl Carnitine into Extra Cellular Space" - metabolites: !!omap - c10crn_c: -1 - c10crn_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Jones LL, McDonald DA, Borum PR. (2010). Progress in Lipid Research 49: 61-75 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Jones LL, McDonald DA, Borum PR. (2010). Progress in Lipid Research 49: 61-75" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C10DCCACT + - id: "C10DCCACT" - name: "Transport of Sebacoyl Carnitine into Cytosol" - metabolites: !!omap - c10dc_c: 1 - c10dc_p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: Recon3D - - eccodes: - - references: Westin M, Hunt M, Alexson S. (2008). Cellular and Molecular Life Sciences 65: 982-90. doi:10.1006/mgme.2000.3055,doi:10.1006/bbrc.1999.1340,biochimica et biophysica acta 1546 (2001) 21-43 + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Westin M, Hunt M, Alexson S. (2008). Cellular and Molecular Life Sciences 65: 982-90. doi:10.1006/mgme.2000.3055,doi:10.1006/bbrc.1999.1340,biochimica et biophysica acta 1546 (2001) 21-43" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C10DCc + - id: "C10DCc" - name: "Production of Sebacoylcarnitine" - metabolites: !!omap - c10dc_c: 1 @@ -248210,30 +248210,30 @@ - sebcoa_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 20173117, doi:10.1016/j.physletb.2003.10.071 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 20173117, doi:10.1016/j.physletb.2003.10.071" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C10DCe + - id: "C10DCe" - name: "Transport of Sebacoyl Carnitine into Extra Cellular Space" - metabolites: !!omap - c10dc_c: -1 - c10dc_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 6959231, PMID: 3119938 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 6959231, PMID: 3119938" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C10OHc + - id: "C10OHc" - name: "Production of 3-Ohdecanoylcarnitinec" - metabolites: !!omap - 3deccrn_c: 1 @@ -248242,15 +248242,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: Recon3D - - eccodes: - - references: clinical chemistry 46:2, 149-155(2000), Biochemistry 2005, 44, 5234-5245 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "clinical chemistry 46:2, 149-155(2000), Biochemistry 2005, 44, 5234-5245" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C120CPT1 + - id: "C120CPT1" - name: "Production of Dodecanoylcarnitine" - metabolites: !!omap - ddeccrn_c: 1 @@ -248259,15 +248259,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 12828998 , PMID: 9498103, PMID: 3955080 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 12828998 , PMID: 9498103, PMID: 3955080" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C121CPT1 + - id: "C121CPT1" - name: "Production of Dodecenoylcarnitine" - metabolites: !!omap - ddece1crn_c: 1 @@ -248276,15 +248276,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 18678604 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 18678604" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C12DCACOT + - id: "C12DCACOT" - name: "Thioesterification of Dodecanedioyl Coenzyme A for Release into Cytosol" - metabolites: !!omap - c12dccoa_p: -1 @@ -248294,15 +248294,15 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101473 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15007068, PMID: 18538142, Westin MAK, Hunt MC, Alexson SEH. (2005). Journal of Biological Chemistry 280: 38125-32 + - gene_reaction_rule: "ENSG00000101473" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15007068, PMID: 18538142, Westin MAK, Hunt MC, Alexson SEH. (2005). Journal of Biological Chemistry 280: 38125-32" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C12DCACT + - id: "C12DCACT" - name: "Activation of Dodecanedioic Acid" - metabolites: !!omap - c12dccoa_c: 1 @@ -248313,45 +248313,45 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Hunt MC, Alexson SEH. (2008). Progress in Lipid Research 47: 405-21 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Hunt MC, Alexson SEH. (2008). Progress in Lipid Research 47: 405-21" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C12DCTD + - id: "C12DCTD" - name: "Transport of Dodecanedioic Acid by Diffusion" - metabolites: !!omap - dodecanac_c: 1 - dodecanac_p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Glatz JFC, Luiken JJFP, Bonen A. (2010). Physiological Reviews 90: 367-417, Kamp F, Hamilton JA. (2006). Prostaglandins, Leukotrienes and Essential Fatty Acids 75: 149-59, PMCID: PMC2785172, Evtodienko VY, Bondarenko DI, Antonenko YN. (1999). Biochimica et Biophysica Acta (BBA) - Biomembranes 1420: 95-103 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Glatz JFC, Luiken JJFP, Bonen A. (2010). Physiological Reviews 90: 367-417, Kamp F, Hamilton JA. (2006). Prostaglandins, Leukotrienes and Essential Fatty Acids 75: 149-59, PMCID: PMC2785172, Evtodienko VY, Bondarenko DI, Antonenko YN. (1999). Biochimica et Biophysica Acta (BBA) - Biomembranes 1420: 95-103" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C12DCe + - id: "C12DCe" - name: "Excretion of Dodecanedioyl Carnitine" - metabolites: !!omap - c12dc_c: -1 - c12dc_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Korman SH, Waterham HR, Gutman A, Jakobs C, Wanders RJA. (2005). Molecular Genetics and Metabolism 86: 337-44 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Korman SH, Waterham HR, Gutman A, Jakobs C, Wanders RJA. (2005). Molecular Genetics and Metabolism 86: 337-44" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C12OHc + - id: "C12OHc" - name: "Production of 3-Ohdodecanoylcarnitinec" - metabolites: !!omap - 3ddcrn_c: 1 @@ -248360,15 +248360,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: Recon3D - - eccodes: - - references: clinical chemistry 46:2, 149-155(2000), Biochemistry 2005, 44, 5234-5245 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "clinical chemistry 46:2, 149-155(2000), Biochemistry 2005, 44, 5234-5245" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C140CPT1 + - id: "C140CPT1" - name: "Production of Myristoylcarnitine" - metabolites: !!omap - m01597c: 1 @@ -248377,30 +248377,30 @@ - m02973c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 19137688, PMID: 15653102, PMID: 12403251 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 19137688, PMID: 15653102, PMID: 12403251" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C141ACBP + - id: "C141ACBP" - name: "Transport of 3-Hydroxytetradecenoyl Coenzyme A from Mitochondria into Cytosol" - metabolites: !!omap - 3tetd7ecoa_c: 1 - 3tetd7ecoa_m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000155368 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 20511713, PMID: 11859412, PMID: 16908521, PMID: 8001684 + - gene_reaction_rule: "ENSG00000155368" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 20511713, PMID: 11859412, PMID: 16908521, PMID: 8001684" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C141CPT1 + - id: "C141CPT1" - name: "Production of Tetradecenoylcarnitine" - metabolites: !!omap - m01597c: 1 @@ -248409,15 +248409,15 @@ - tetdece1crn_c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 19327992 , PMID: 18670371, PMID: 15466478, PMID: 11433098 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 19327992 , PMID: 18670371, PMID: 15466478, PMID: 11433098" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C141OHc + - id: "C141OHc" - name: "Production of 3-Hydroxytetradecenoyl Carnitine" - metabolites: !!omap - 3tetd7ecoa_c: -1 @@ -248426,45 +248426,45 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 21281499 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 21281499" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C141OHe + - id: "C141OHe" - name: "Excretion of 3-Hydroxy Tetradecenoyl-7-Carnitine" - metabolites: !!omap - 3tetd7ecoacrn_c: -1 - 3tetd7ecoacrn_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 21281499 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 21281499" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C142ACBP + - id: "C142ACBP" - name: "Transport of 3-Hydroxytetradeca Dienoyl Coenzyme A from Mitochondria into Cytosol" - metabolites: !!omap - 3ttetddcoa_c: 1 - 3ttetddcoa_m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000155368 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 20511713, PMID: 11859412, PMID: 16908521, PMID: 8001684 + - gene_reaction_rule: "ENSG00000155368" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 20511713, PMID: 11859412, PMID: 16908521, PMID: 8001684" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C142CPT1 + - id: "C142CPT1" - name: "Production of Tetradecadienoylcarnitine" - metabolites: !!omap - m01597c: 1 @@ -248473,15 +248473,15 @@ - tetdec2crn_c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11433098 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11433098" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C142OHc + - id: "C142OHc" - name: "Production of 3-Hydroxytetradeca Dienoyl Carnitine" - metabolites: !!omap - 3ttetddcoa_c: -1 @@ -248490,30 +248490,30 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 21281499 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 21281499" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C142OHe + - id: "C142OHe" - name: "Excretion of 3-Hydroxy Trans5,8Tetradecadienoyl Carnitine" - metabolites: !!omap - 3ttetddcoacrn_c: -1 - 3ttetddcoacrn_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 21281499 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 21281499" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C14OHc + - id: "C14OHc" - name: "Production of 3-Hydroxytetradecanoylcarnitine" - metabolites: !!omap - 3tdcrn_c: 1 @@ -248522,15 +248522,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: Recon3D - - eccodes: - - references: molecular genetics and metabolism,Volume 85, Issue 2, June 2005, Pages 108-114 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "molecular genetics and metabolism,Volume 85, Issue 2, June 2005, Pages 108-114" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C161OHc + - id: "C161OHc" - name: "Production of 3-Hydroxyhexadecenoylcarnitine" - metabolites: !!omap - 3hdeccoa_c: -1 @@ -248539,30 +248539,30 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: Recon3D - - eccodes: - - references: Biochemistry 2005, 44, 5234-5245 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Biochemistry 2005, 44, 5234-5245" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C162ACBP + - id: "C162ACBP" - name: "Transport of 3-Hydroxy Trans7, 10-Hexadecadienoylcoa from Mitochondria into Cytosol" - metabolites: !!omap - 3thexddcoa_c: 1 - 3thexddcoa_m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000155368 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 20511713, PMID: 11859412, PMID: 16908521, PMID: 8001684 + - gene_reaction_rule: "ENSG00000155368" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 20511713, PMID: 11859412, PMID: 16908521, PMID: 8001684" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C162OHc + - id: "C162OHc" - name: "Production of 3-Hydroxy Hexadecadienoyl Carnitine" - metabolites: !!omap - 3thexddcoa_c: -1 @@ -248571,30 +248571,30 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 21281499 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 21281499" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C162OHe + - id: "C162OHe" - name: "Excretion of 3-Hydroxy Trans7,10-Hexadecadienoyl Carnitine" - metabolites: !!omap - 3thexddcoacrn_c: -1 - 3thexddcoacrn_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 21281499 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 21281499" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C16DCc + - id: "C16DCc" - name: "Production of Hexadecanedioylcarnitine" - metabolites: !!omap - c16dc_c: 1 @@ -248603,30 +248603,30 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: Recon3D - - eccodes: - - references: journal of lipid research vol 15(1974), PMID: 20173117 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "journal of lipid research vol 15(1974), PMID: 20173117" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C16DCe + - id: "C16DCe" - name: "Transport of Hexadecanedioic Acid Mono-L-Carnitine Ester into Extra Cellular Space" - metabolites: !!omap - c16dc_c: -1 - c16dc_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMCID: PMC1151043 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMCID: PMC1151043" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C16OHc + - id: "C16OHc" - name: "Production of 3-Hydroxyhexadecanoylcarnitinec" - metabolites: !!omap - 3hexdcoa_c: -1 @@ -248635,15 +248635,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: Recon3D - - eccodes: - - references: Biochemistry 2005, 44, 5234-5245 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Biochemistry 2005, 44, 5234-5245" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C181OHc + - id: "C181OHc" - name: "Production of 3-Hydroxyoctadecenoylcarnitinec" - metabolites: !!omap - 3octdece1coa_c: -1 @@ -248652,15 +248652,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: Recon3D - - eccodes: - - references: Biochemistry 2005, 44, 5234-5245 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Biochemistry 2005, 44, 5234-5245" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C182OHc + - id: "C182OHc" - name: "Production of 3-Hydroxyoctadecadienoylcarnitine" - metabolites: !!omap - 3ocddcoa_c: -1 @@ -248669,15 +248669,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: Recon3D - - eccodes: - - references: Biochemistry 2005, 44, 5234-5245 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Biochemistry 2005, 44, 5234-5245" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C18OHc + - id: "C18OHc" - name: "Production of 3-Hydroxyoctadecanoylcarnitine" - metabolites: !!omap - 3hodcoa_c: -1 @@ -248686,90 +248686,90 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 7977144 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 7977144" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C2tcx + - id: "C2tcx" - name: "Transport of Acetylcarnitine from Peroxisomes to Cytosol" - metabolites: !!omap - m02634c: 1 - m02634p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: Recon3D - - eccodes: - - references: biochemical and biophysical research communications 263,213-218(1999),biochimica et biophysica acta 1546(2001)21-43 + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "biochemical and biophysical research communications 263,213-218(1999),biochimica et biophysica acta 1546(2001)21-43" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C3DCe + - id: "C3DCe" - name: "Transport of Malonyl Carnitine into Extra Cellular Space" - metabolites: !!omap - c3dc_c: -1 - c3dc_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Jones LL, McDonald DA, Borum PR. (2010). Progress in Lipid Research 49: 61-75 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Jones LL, McDonald DA, Borum PR. (2010). Progress in Lipid Research 49: 61-75" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C4CRNe + - id: "C4CRNe" - name: "Transport of Butyryl Carnitine into the Extra Cellular Space" - metabolites: !!omap - m02635c: -1 - m02635s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.1.1.62 - - references: Jones LL, McDonald DA, Borum PR. (2010). Progress in Lipid Research 49: 61-75 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.62" + - references: "Jones LL, McDonald DA, Borum PR. (2010). Progress in Lipid Research 49: 61-75" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C4DCCACT + - id: "C4DCCACT" - name: "Transport of Succinyl Carnitine into Cytosol" - metabolites: !!omap - c4dc_c: 1 - c4dc_p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: Recon3D - - eccodes: - - references: Westin M, Hunt M, Alexson S. (2008). Cellular and Molecular Life Sciences 65: 982-90. doi:10.1006/mgme.2000.3055,doi:10.1006/bbrc.1999.1340,biochimica et biophysica acta 1546 (2001) 21-43 + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Westin M, Hunt M, Alexson S. (2008). Cellular and Molecular Life Sciences 65: 982-90. doi:10.1006/mgme.2000.3055,doi:10.1006/bbrc.1999.1340,biochimica et biophysica acta 1546 (2001) 21-43" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C4DCe + - id: "C4DCe" - name: "Transport of Succinyl Carnitine into the Extra Cellular Space" - metabolites: !!omap - c4dc_c: -1 - c4dc_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Vianey-Saban C, Guffon N, Delolne F, Guibaud P, Mathieu M, Divry P. (1997). Journal of Inherited Metabolic Disease 20: 411-4 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Vianey-Saban C, Guffon N, Delolne F, Guibaud P, Mathieu M, Divry P. (1997). Journal of Inherited Metabolic Disease 20: 411-4" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C4OHc + - id: "C4OHc" - name: "Production of 3-Hydroxybytyryl Carnitinec" - metabolites: !!omap - 3bcrn_c: 1 @@ -248778,45 +248778,45 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 17442642 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 17442642" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C4tcx + - id: "C4tcx" - name: "Transport of Bytyrylcarnitine from Peroxisomes" - metabolites: !!omap - m02635c: 1 - m02635p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: Recon3D - - eccodes: - - references: biochimica et biophysica acta 1546(2001)21-43 + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "biochimica et biophysica acta 1546(2001)21-43" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C4tmc + - id: "C4tmc" - name: "Transport of Bytyrylcarnitine into Mitochondrial Matrix" - metabolites: !!omap - m02635c: -1 - m02635m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: Recon3D - - eccodes: - - references: biochimica et biophysica acta 1546(2001)21-43 + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "biochimica et biophysica acta 1546(2001)21-43" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C4x + - id: "C4x" - name: "Esterification of Butyrylcoa to Butyrylcarnitine for Transport" - metabolites: !!omap - m01412p: -1 @@ -248825,15 +248825,15 @@ - m02635p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005469 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11356164, the journal of biological chemistry volume280,no.1,issue of january,pp.738-744,2005 + - gene_reaction_rule: "ENSG00000005469" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11356164, the journal of biological chemistry volume280,no.1,issue of january,pp.738-744,2005" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C50CPT1 + - id: "C50CPT1" - name: "Production of Isovalerylcarnitine" - metabolites: !!omap - ivcrn_c: 1 @@ -248842,15 +248842,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 20807522, PMID: 20591710 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 20807522, PMID: 20591710" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C51CPT1 + - id: "C51CPT1" - name: "Production of Tiglylcarnitine" - metabolites: !!omap - c51crn_c: 1 @@ -248859,30 +248859,30 @@ - m02999c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8930414, PMID: 14518824 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8930414, PMID: 14518824" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C5DCe + - id: "C5DCe" - name: "Transport of Glutaryl Carnitine into the Extra Cellular Fluid" - metabolites: !!omap - c5dc_c: -1 - c5dc_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Jones LL, McDonald DA, Borum PR. (2010). Progress in Lipid Research 49: 61-75 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Jones LL, McDonald DA, Borum PR. (2010). Progress in Lipid Research 49: 61-75" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C60CPT1 + - id: "C60CPT1" - name: "Production of Hexanoylcarnitine" - metabolites: !!omap - c6crn_c: 1 @@ -248891,15 +248891,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8214594, PMID: 8496747, PMID: 8491807 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8214594, PMID: 8496747, PMID: 8491807" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C6COAt + - id: "C6COAt" - name: "Esterification of Of Hexanoylcoa for Transport into Cytosol" - metabolites: !!omap - c6crn_p: 1 @@ -248908,60 +248908,60 @@ - m02348p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005469 - - rxnFrom: Recon3D - - eccodes: - - references: the journal of biological chemistry,vol 280, no1,issue of january 7,pp 738-744,2005 + - gene_reaction_rule: "ENSG00000005469" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "the journal of biological chemistry,vol 280, no1,issue of january 7,pp 738-744,2005" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C6CRNe + - id: "C6CRNe" - name: "Transport of Hexanoyl Carnitine into the Extra Cellular Fluid" - metabolites: !!omap - c6crn_c: -1 - c6crn_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Jones LL, McDonald DA, Borum PR. (2010). Progress in Lipid Research 49: 61-75 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Jones LL, McDonald DA, Borum PR. (2010). Progress in Lipid Research 49: 61-75" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C6CRNtcx + - id: "C6CRNtcx" - name: "Transport of Hexanoylcarnitine into Cytosol" - metabolites: !!omap - c6crn_c: 1 - c6crn_p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: Recon3D - - eccodes: - - references: biochimica et biophysica acta 1546(2001)21-43 + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "biochimica et biophysica acta 1546(2001)21-43" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C6DCCACT + - id: "C6DCCACT" - name: "Transport of Adipoyl Carnitine into Cytosol" - metabolites: !!omap - c6dc_c: 1 - c6dc_p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: Recon3D - - eccodes: - - references: Westin M, Hunt M, Alexson S. (2008). Cellular and Molecular Life Sciences 65: 982-90. doi:10.1006/mgme.2000.3055,doi:10.1006/bbrc.1999.1340,biochimica et biophysica acta 1546 (2001) 21-43 + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Westin M, Hunt M, Alexson S. (2008). Cellular and Molecular Life Sciences 65: 982-90. doi:10.1006/mgme.2000.3055,doi:10.1006/bbrc.1999.1340,biochimica et biophysica acta 1546 (2001) 21-43" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C6DCc + - id: "C6DCc" - name: "Production of Adipoylcarnitine" - metabolites: !!omap - adpcoa_c: -1 @@ -248970,30 +248970,30 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: Recon3D - - eccodes: - - references: doi:10.1016/j.physletb.2003.10.071 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "doi:10.1016/j.physletb.2003.10.071" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C6DCe + - id: "C6DCe" - name: "Transport of Adipoyl Carnitine into the Extra Cellular Fluid" - metabolites: !!omap - c6dc_c: -1 - c6dc_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Jones LL, McDonald DA, Borum PR. (2010). Progress in Lipid Research 49: 61-75 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Jones LL, McDonald DA, Borum PR. (2010). Progress in Lipid Research 49: 61-75" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C81CPT1 + - id: "C81CPT1" - name: "Production of Ocetenoylcarnitine" - metabolites: !!omap - c81coa_c: -1 @@ -249002,45 +249002,45 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: Recon3D - - eccodes: - - references: Go Tajimaa et al,journal of chromatography B,volume 823,issue 2,5 September 2005, Pages 122-130 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Go Tajimaa et al,journal of chromatography B,volume 823,issue 2,5 September 2005, Pages 122-130" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C81CRNe + - id: "C81CRNe" - name: "Transport of Octenoyl Carnitine into the Extra Cellular Space" - metabolites: !!omap - c81crn_c: -1 - c81crn_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Shigematsu Y, Hirano S, Hata I, Tanaka Y, Sudo M, et al. (2003). Journal of Chromatography B 792: 63-72 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Shigematsu Y, Hirano S, Hata I, Tanaka Y, Sudo M, et al. (2003). Journal of Chromatography B 792: 63-72" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C8CRNe + - id: "C8CRNe" - name: "Transport of Octanoyl Carnitine into the Extra Cellular Space" - metabolites: !!omap - m02409c: -1 - m02409s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Jones LL, McDonald DA, Borum PR. (2010). Progress in Lipid Research 49: 61-75 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Jones LL, McDonald DA, Borum PR. (2010). Progress in Lipid Research 49: 61-75" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C8DCc + - id: "C8DCc" - name: "Production of Suberylcarnitine" - metabolites: !!omap - c8dc_c: 1 @@ -249049,60 +249049,60 @@ - sbcoa_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: Recon3D - - eccodes: - - references: doi:10.1016/j.physletb.2003.10.071 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "doi:10.1016/j.physletb.2003.10.071" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C8DCe + - id: "C8DCe" - name: "Transport of Suberyl Carnitine into the Extra Cellular Space" - metabolites: !!omap - c8dc_c: -1 - c8dc_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 6959231 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 6959231" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: C9BRxtc + - id: "C9BRxtc" - name: "Transport of Dimethylnonanoylcarnitine from Peroxisomes to Cytosol" - metabolites: !!omap - m00950c: 1 - m00950p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: Recon3D - - eccodes: - - references: doi:10.1006/mgme.2000.3055,doi:10.1006/bbrc.1999.1340,biochimica et biophysica acta 1546 (2001) 21-43 + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "doi:10.1006/mgme.2000.3055,doi:10.1006/bbrc.1999.1340,biochimica et biophysica acta 1546 (2001) 21-43" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: DCATDr + - id: "DCATDr" - name: "Transport of Decanoate (N-C10:0) into the E.R. by Diffusion" - metabolites: !!omap - m01648c: -1 - m01648r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Glatz JFC, Luiken JJFP, Bonen A. (2010). Physiological Reviews 90: 367-417, Kamp F, Hamilton JA. (2006). Prostaglandins, Leukotrienes and Essential Fatty Acids 75: 149-59, PMCID: PMC2785172, Evtodienko VY, Bondarenko DI, Antonenko YN. (1999). Biochimica et Biophysica Acta (BBA) - Biomembranes 1420: 95-103 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Glatz JFC, Luiken JJFP, Bonen A. (2010). Physiological Reviews 90: 367-417, Kamp F, Hamilton JA. (2006). Prostaglandins, Leukotrienes and Essential Fatty Acids 75: 149-59, PMCID: PMC2785172, Evtodienko VY, Bondarenko DI, Antonenko YN. (1999). Biochimica et Biophysica Acta (BBA) - Biomembranes 1420: 95-103" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: DCSPTN1COAtxc + - id: "DCSPTN1COAtxc" - name: "Transport of Docosapentenoylcoa into Peroxisomes." - metabolites: !!omap - m00093c: -1 @@ -249114,90 +249114,90 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101986 and ENSG00000173208 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:18854420 + - gene_reaction_rule: "ENSG00000101986 and ENSG00000173208" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:18854420" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: DDCRNe + - id: "DDCRNe" - name: "Transport of 3-Hydroxydodecanoyl Carnitine into Extra Cellular Space" - metabolites: !!omap - 3ddcrn_c: -1 - 3ddcrn_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMCID: PMC1134946 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMCID: PMC1134946" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: DDECCRNe + - id: "DDECCRNe" - name: "Transport of Lauroyl Carnitine into Extra Cellular Space" - metabolites: !!omap - ddeccrn_c: -1 - ddeccrn_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Sun W, Wang Y, Yang Y, Wang J, Cao Y, et al. (2011). Clinica Chimica Acta 412: 1270-4, PMID: 12828998, PMID: 9498103, Nagaraja D, Mamatha SN, De T, Christopher R. (2010). Clinical Biochemistry 43: 581-8 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Sun W, Wang Y, Yang Y, Wang J, Cao Y, et al. (2011). Clinica Chimica Acta 412: 1270-4, PMID: 12828998, PMID: 9498103, Nagaraja D, Mamatha SN, De T, Christopher R. (2010). Clinical Biochemistry 43: 581-8" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: DDECE1CRNe + - id: "DDECE1CRNe" - name: "Transport of Dodecenoyl Carnitine into Extra Cellular Space" - metabolites: !!omap - ddece1crn_c: -1 - ddece1crn_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Nagaraja D, Mamatha SN, De T, Christopher R. (2010). Clinical Biochemistry 43: 581-8 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Nagaraja D, Mamatha SN, De T, Christopher R. (2010). Clinical Biochemistry 43: 581-8" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: DECCRNe + - id: "DECCRNe" - name: "Transport of 3-Hydroxydecanoyl Carnitine into Extra Cellular Space" - metabolites: !!omap - 3deccrn_c: -1 - 3deccrn_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Jones LL, McDonald DA, Borum PR. (2010). Progress in Lipid Research 49: 61-75 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Jones LL, McDonald DA, Borum PR. (2010). Progress in Lipid Research 49: 61-75" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: DECDICRNe + - id: "DECDICRNe" - name: "Transport of Decadienoyl Carnitine into the Extra Cellular Space" - metabolites: !!omap - decdicrn_c: -1 - decdicrn_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 21215187 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 21215187" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: DOCO13ECOAtxc + - id: "DOCO13ECOAtxc" - name: "Transport of 13-Docosenoylcoa into Peroxisomes" - metabolites: !!omap - doco13ecoa_c: -1 @@ -249209,15 +249209,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101986 and ENSG00000173208 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:18854420 + - gene_reaction_rule: "ENSG00000101986 and ENSG00000173208" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:18854420" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: DOCO13EFATP + - id: "DOCO13EFATP" - name: "Absorption Or Uptake of 13-Docosenoic Acid into Cells" - metabolites: !!omap - doco13ecoa_c: 1 @@ -249228,45 +249228,45 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000083807 or ENSG00000113396 or ENSG00000130304 or ENSG00000140284 or ENSG00000143554 or ENSG00000167114 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16868315, PMID: 17901542, journal of lipid research (2006) vol 47 page 665-672, 16357361, PMID: 17495600 + - gene_reaction_rule: "ENSG00000083807 or ENSG00000113396 or ENSG00000130304 or ENSG00000140284 or ENSG00000143554 or ENSG00000167114" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16868315, PMID: 17901542, journal of lipid research (2006) vol 47 page 665-672, 16357361, PMID: 17495600" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: DOCOSACTDr + - id: "DOCOSACTDr" - name: "Transport of Docosanoic Acid by Diffusion" - metabolites: !!omap - m01373c: -1 - m01373r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10331655, PMID: 11478365 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10331655, PMID: 11478365" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: DOCOSADIACTD + - id: "DOCOSADIACTD" - name: "Transport of Docosanedioic Acid by Diffusion" - metabolites: !!omap - docosdiac_c: 1 - docosdiac_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10331655, PMID: 11478366 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10331655, PMID: 11478366" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: DOCOSCOAtxc + - id: "DOCOSCOAtxc" - name: "Transport of Behenoylcoa into Peroxisomes" - metabolites: !!omap - m01285c: 1 @@ -249278,585 +249278,585 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101986 and ENSG00000173208 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:18854420 + - gene_reaction_rule: "ENSG00000101986 and ENSG00000173208" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:18854420" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: DOCOSDIACTD + - id: "DOCOSDIACTD" - name: "Excretion of Docosanedioic Acid" - metabolites: !!omap - docosdiac_c: -1 - docosdiac_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15716582 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15716582" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: EX_3bcrn[e] + - id: "EX_3bcrn[e]" - name: "Exchange of 3-Hydroxy Butyryl Carnitine" - metabolites: !!omap - 3bcrn_s: -1 - 3bcrn_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_3ddcrn[e] + - id: "EX_3ddcrn[e]" - name: "Exchange of 3-Hydroxydodecanoyl Carnitine" - metabolites: !!omap - 3ddcrn_s: -1 - 3ddcrn_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_3deccrn[e] + - id: "EX_3deccrn[e]" - name: "Exchange of 3-Hydroxydecanoyl Carnitine" - metabolites: !!omap - 3deccrn_s: -1 - 3deccrn_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_3hdececrn[e] + - id: "EX_3hdececrn[e]" - name: "Exchange of 3-Hydroxyhexadecenoyl Carnitine" - metabolites: !!omap - 3hdececrn_s: -1 - 3hdececrn_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_3hexdcrn[e] + - id: "EX_3hexdcrn[e]" - name: "Exchange of 3-Hydroxyhexadecanoyl Carnitine" - metabolites: !!omap - 3hexdcrn_s: -1 - 3hexdcrn_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_3ivcrn[e] + - id: "EX_3ivcrn[e]" - name: "Exchange of 3-Hydroxy-Isovaleryl Carnitine" - metabolites: !!omap - 3ivcrn_s: -1 - 3ivcrn_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_3octdec2crn[e] + - id: "EX_3octdec2crn[e]" - name: "Exchange of 3-Hydroxyoctadecadienoyl Carnitine" - metabolites: !!omap - 3octdec2crn_s: -1 - 3octdec2crn_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_3octdeccrn[e] + - id: "EX_3octdeccrn[e]" - name: "Exchange of 3-Hydroxyoctadecanoyl Carnitine" - metabolites: !!omap - 3octdeccrn_s: -1 - 3octdeccrn_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_3octdece1crn[e] + - id: "EX_3octdece1crn[e]" - name: "Exchange of 3-Hydroxy-Octadecenoyl Carnitine" - metabolites: !!omap - 3octdece1crn_s: -1 - 3octdece1crn_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_3tdcrn[e] + - id: "EX_3tdcrn[e]" - name: "Exchange of 3-Hydroxy-Tetradecanoyl Carnitine" - metabolites: !!omap - 3tdcrn_s: -1 - 3tdcrn_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_3tetd7ecoacrn[e] + - id: "EX_3tetd7ecoacrn[e]" - name: "Exchange of 3-Hydroxy Tetradecenoyl-7-Carnitine" - metabolites: !!omap - 3tetd7ecoacrn_s: -1 - 3tetd7ecoacrn_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_3thexddcoacrn[e] + - id: "EX_3thexddcoacrn[e]" - name: "Exchange of 3-Hydroxy Trans7, 10-Hexadecadienoyl Carnitine" - metabolites: !!omap - 3thexddcoacrn_s: -1 - 3thexddcoacrn_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_3ttetddcoacrn[e] + - id: "EX_3ttetddcoacrn[e]" - name: "Exchange of 3-Hydroxy Trans5, 8Tetradecadienoyl Carnitine" - metabolites: !!omap - 3ttetddcoacrn_s: -1 - 3ttetddcoacrn_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_c101crn[e] + - id: "EX_c101crn[e]" - name: "Exchange of Decenoyl Carnitine" - metabolites: !!omap - c101crn_s: -1 - c101crn_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_c10crn[e] + - id: "EX_c10crn[e]" - name: "Exchange of Decanoyl Carnitine" - metabolites: !!omap - c10crn_s: -1 - c10crn_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_c10dc[e] + - id: "EX_c10dc[e]" - name: "Exchange of Sebacoyl Carnitine" - metabolites: !!omap - c10dc_s: -1 - c10dc_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_c12dc[e] + - id: "EX_c12dc[e]" - name: "Exchange of Dodecanedioyl Carnitine" - metabolites: !!omap - c12dc_s: -1 - c12dc_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_c16dc[e] + - id: "EX_c16dc[e]" - name: "Exchange of Hexadecanedioic Acid Mono-L-Carnitine Ester" - metabolites: !!omap - c16dc_s: -1 - c16dc_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_c3dc[e] + - id: "EX_c3dc[e]" - name: "Exchange of Malonyl Carnitine" - metabolites: !!omap - c3dc_s: -1 - c3dc_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_c4crn[e] + - id: "EX_c4crn[e]" - name: "Exchange of Butyryl Carnitine" - metabolites: !!omap - m02635s: -1 - m02635x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_c4dc[e] + - id: "EX_c4dc[e]" - name: "Exchange of Succinyl Carnitine" - metabolites: !!omap - c4dc_s: -1 - c4dc_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_c51crn[e] + - id: "EX_c51crn[e]" - name: "Exchange of Tiglyl Carnitine" - metabolites: !!omap - c51crn_s: -1 - c51crn_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_c5dc[e] + - id: "EX_c5dc[e]" - name: "Exchange of Glutaryl Carnitine" - metabolites: !!omap - c5dc_s: -1 - c5dc_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_c6crn[e] + - id: "EX_c6crn[e]" - name: "Exchange of Hexanoyl Carnitine" - metabolites: !!omap - c6crn_s: -1 - c6crn_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_c6dc[e] + - id: "EX_c6dc[e]" - name: "Exchange of Adipoyl Carnitine" - metabolites: !!omap - c6dc_s: -1 - c6dc_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_c81crn[e] + - id: "EX_c81crn[e]" - name: "Exchange of Octenoyl Carnitine" - metabolites: !!omap - c81crn_s: -1 - c81crn_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_c8crn[e] + - id: "EX_c8crn[e]" - name: "Exchange of Octanoyl Carnitine" - metabolites: !!omap - m02409s: -1 - m02409x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_c8dc[e] + - id: "EX_c8dc[e]" - name: "Exchange of Suberyl Carnitine" - metabolites: !!omap - c8dc_s: -1 - c8dc_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_ddece1crn[e] + - id: "EX_ddece1crn[e]" - name: "Exchange of Dodecenoyl Carnitine" - metabolites: !!omap - ddece1crn_s: -1 - ddece1crn_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_ddecrn[e] + - id: "EX_ddecrn[e]" - name: "Exchange of Lauroyl Carnitine" - metabolites: !!omap - ddeccrn_s: -1 - ddeccrn_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_decdicrn[e] + - id: "EX_decdicrn[e]" - name: "Exchange of Decadienoyl Carnitine" - metabolites: !!omap - decdicrn_s: -1 - decdicrn_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_doco13ac[e] + - id: "EX_doco13ac[e]" - name: "Exchange of Docosenoic Acid (C22:1)" - metabolites: !!omap - m01583s: -1 - m01583x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_docosac[e] + - id: "EX_docosac[e]" - name: "Exchange of Behenic Acid" - metabolites: !!omap - m01373s: -1 - m01373x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_docosdiac[e] + - id: "EX_docosdiac[e]" - name: "Exchange of Docosanedioic Acid" - metabolites: !!omap - docosdiac_s: -1 - docosdiac_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_ivcrn[e] + - id: "EX_ivcrn[e]" - name: "Exchange of Isovaleryl Carnitine" - metabolites: !!omap - ivcrn_s: -1 - ivcrn_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_tetdec2crn[e] + - id: "EX_tetdec2crn[e]" - name: "Exchange of Tetradecadienoyl Carnitine" - metabolites: !!omap - tetdec2crn_s: -1 - tetdec2crn_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_tetdece1crn[e] + - id: "EX_tetdece1crn[e]" - name: "Exchange of Tetradecenoyl Carnitine" - metabolites: !!omap - tetdece1crn_s: -1 - tetdece1crn_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: FAOXC101C102x + - id: "FAOXC101C102x" - name: "Fatty Acid Beta Oxidation (C10:1->C10:2), Peroxisomal" - metabolites: !!omap - m00678p: 1 @@ -249865,15 +249865,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 18536048, PMID: 17458872 + - gene_reaction_rule: "ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 18536048, PMID: 17458872" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC101C8m + - id: "FAOXC101C8m" - name: "Fatty Acid Beta Oxidation (C10:1->C8), Mitochondrial" - metabolites: !!omap - m00039m: -1 @@ -249886,15 +249886,15 @@ - m02644m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000127884 and ENSG00000138796 and ENSG00000167315 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007. + - gene_reaction_rule: "ENSG00000127884 and ENSG00000138796 and ENSG00000167315" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC101C8x + - id: "FAOXC101C8x" - name: "Fatty Acid Beta Oxidation (C10:1->C8:0), Peroxisomal" - metabolites: !!omap - m00039p: -1 @@ -249907,15 +249907,15 @@ - m02644p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20558530 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20558530" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC102C101m + - id: "FAOXC102C101m" - name: "Reduction (C10:2->C10:1), Mitochondrial" - metabolites: !!omap - m00678m: -1 @@ -249925,15 +249925,15 @@ - m03035m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104325 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 7818482 + - gene_reaction_rule: "ENSG00000104325" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 7818482" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC102C101x + - id: "FAOXC102C101x" - name: "Fatty Acid Beta Oxidation (C10:2->C10:1), Peroxisomal" - metabolites: !!omap - m00678p: -1 @@ -249943,15 +249943,15 @@ - m03035p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000242612 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11514237 + - gene_reaction_rule: "ENSG00000242612" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11514237" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC102C103m + - id: "FAOXC102C103m" - name: "Fatty Acid Beta Oxidation (C10:2->C10:3), Mitochondrial" - metabolites: !!omap - dec47dicoa_m: -1 @@ -249960,15 +249960,15 @@ - m01803m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117054 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15337167 + - gene_reaction_rule: "ENSG00000117054" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15337167" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC102C103x + - id: "FAOXC102C103x" - name: "Fatty Acid Beta Oxidation (C10:2->C10:3), Peroxisomal" - metabolites: !!omap - dec47dicoa_p: -1 @@ -249977,15 +249977,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 18536048, PMID: 17458872 + - gene_reaction_rule: "ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 18536048, PMID: 17458872" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC102C81m + - id: "FAOXC102C81m" - name: "Fatty Acid Beta Oxidation (C10:2->C8:1), Mitochondrial" - metabolites: !!omap - 2decdicoa_m: -1 @@ -249998,15 +249998,15 @@ - octe5coa_m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000127884 and ENSG00000138796 and ENSG00000167315 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007. + - gene_reaction_rule: "ENSG00000127884 and ENSG00000138796 and ENSG00000167315" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC102C81x + - id: "FAOXC102C81x" - name: "Fatty Acid Beta Oxidation (C10:2->C8:1), Peroxisomal" - metabolites: !!omap - 2decdicoa_p: -1 @@ -250019,45 +250019,45 @@ - octe5coa_p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20558530 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20558530" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC102m + - id: "FAOXC102m" - name: "Isomerization (C10:2), Mitochondrial" - metabolites: !!omap - 2decdicoa_m: 1 - 3decdicoa_m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167969 - - rxnFrom: Recon3D - - eccodes: - - references: Journal of Molecular Biology, Volume 342, Issue 4, 24 September 2004, Pages 1197-1208 + - gene_reaction_rule: "ENSG00000167969" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Journal of Molecular Biology, Volume 342, Issue 4, 24 September 2004, Pages 1197-1208" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC102x + - id: "FAOXC102x" - name: "Isomerization (C10:2), Peroxisomal" - metabolites: !!omap - 2decdicoa_p: 1 - 3decdicoa_p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113790 or ENSG00000198721 - - rxnFrom: Recon3D - - eccodes: - - references: PNAS August 1, 1992 vol. 89 no. 15 6673-6677,PMID: 2303409,PMID: 10419495, FEBS LETTERS vol.215 no.2 228-232 + - gene_reaction_rule: "ENSG00000113790 or ENSG00000198721" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PNAS August 1, 1992 vol. 89 no. 15 6673-6677,PMID: 2303409,PMID: 10419495, FEBS LETTERS vol.215 no.2 228-232" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC103C102m + - id: "FAOXC103C102m" - name: "Fatty Acid Beta Oxidation (C10:3->C10:2), Mitochondrial" - metabolites: !!omap - 3decdicoa_m: 1 @@ -250067,15 +250067,15 @@ - m02555m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104325 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 7818482 + - gene_reaction_rule: "ENSG00000104325" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 7818482" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC103C102x + - id: "FAOXC103C102x" - name: "Fatty Acid Beta Oxidation (C10:3->C10:2), Peroxisomal" - metabolites: !!omap - 3decdicoa_p: 1 @@ -250085,15 +250085,15 @@ - m02555p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000242612 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11514237 + - gene_reaction_rule: "ENSG00000242612" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11514237" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC10C10OHm + - id: "FAOXC10C10OHm" - name: "Fatty Acid Beta Oxidation (C10->Ohc10), Mitochondrial" - metabolites: !!omap - m00181m: 1 @@ -250103,15 +250103,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117054 and ENSG00000127884 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 1730577, PMID: 1912723 ,PMID: 7318031 + - gene_reaction_rule: "ENSG00000117054 and ENSG00000127884" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 1730577, PMID: 1912723 ,PMID: 7318031" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC10C8m + - id: "FAOXC10C8m" - name: "Fatty Acid Beta Oxidation (C10->C8), Mitochondrial" - metabolites: !!omap - m01261m: 1 @@ -250126,15 +250126,15 @@ - m02644m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117054 and ENSG00000127884 and ENSG00000138796 and ENSG00000167315 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007. + - gene_reaction_rule: "ENSG00000117054 and ENSG00000127884 and ENSG00000138796 and ENSG00000167315" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC10C8x + - id: "FAOXC10C8x" - name: "Fatty Acid Beta Oxidation (C10->C8), Peroxisomal" - metabolites: !!omap - m01261p: 1 @@ -250149,15 +250149,15 @@ - m02644p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11411544, HMDB01070 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11411544, HMDB01070" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC10DCC8DCx + - id: "FAOXC10DCC8DCx" - name: "Fatty Acid Beta Oxidation (C10Dc->C8Dc)" - metabolites: !!omap - m01261p: 1 @@ -250172,15 +250172,15 @@ - sebcoa_p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:15060085,PMID:9827430 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:15060085,PMID:9827430" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC11BRC9BRx + - id: "FAOXC11BRC9BRx" - name: "Fatty Acid Beta Oxidation (C11Br->C9Br), Peroxisomal" - metabolites: !!omap - dmnoncoa_p: 1 @@ -250195,15 +250195,15 @@ - tmuncoa_p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000087008 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: Recon3D - - eccodes: - - references: HMDB06202,PMID:11591435 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000087008 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "HMDB06202,PMID:11591435" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC11C9m + - id: "FAOXC11C9m" - name: "Fatty Acid Beta Oxidation (C11->C9), Mitochondrial" - metabolites: !!omap - m01261m: 1 @@ -250218,15 +250218,15 @@ - undcoa_m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117054 and ENSG00000127884 and ENSG00000138796 and ENSG00000167315 - - rxnFrom: Recon3D - - eccodes: - - references: J. Oleo Sci. 57, (5) 293-299 (2008), HMDB00847 + - gene_reaction_rule: "ENSG00000117054 and ENSG00000127884 and ENSG00000138796 and ENSG00000167315" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "J. Oleo Sci. 57, (5) 293-299 (2008), HMDB00847" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC121C101m + - id: "FAOXC121C101m" - name: "Fatty Acid Beta Oxidation (C12:1->C10:1), Mitochondrial" - metabolites: !!omap - dd5ecoa_m: -1 @@ -250241,15 +250241,15 @@ - m03035m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117054 and ENSG00000127884 and ENSG00000138796 and ENSG00000167315 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007. + - gene_reaction_rule: "ENSG00000117054 and ENSG00000127884 and ENSG00000138796 and ENSG00000167315" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC121C10x + - id: "FAOXC121C10x" - name: "Fatty Acid Beta Xoidation (C12:1->C10), Peroxisomal" - metabolites: !!omap - m00042p: -1 @@ -250262,15 +250262,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10709653, PMID: 11296696, PMID: 11330072, PMID: 16766224 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10709653, PMID: 11296696, PMID: 11330072, PMID: 16766224" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC122C101m + - id: "FAOXC122C101m" - name: "Fatty Acid Beta Oxidation (C12:2->C10:1), Mitochondrial" - metabolites: !!omap - 2ddecdicoa_m: -1 @@ -250283,45 +250283,45 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000127884 and ENSG00000138796 and ENSG00000167315 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007. + - gene_reaction_rule: "ENSG00000127884 and ENSG00000138796 and ENSG00000167315" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC122m + - id: "FAOXC122m" - name: "Isomerization (C12:2), Mitochondrial" - metabolites: !!omap - 2ddecdicoa_m: 1 - 3ddecdicoa_m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167969 - - rxnFrom: Recon3D - - eccodes: - - references: Journal of Molecular Biology, Volume 342, Issue 4, 24 September 2004, Pages 1197-1208 + - gene_reaction_rule: "ENSG00000167969" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Journal of Molecular Biology, Volume 342, Issue 4, 24 September 2004, Pages 1197-1208" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC122x + - id: "FAOXC122x" - name: "Isomerization (C12:2), Peroxisomal" - metabolites: !!omap - 2ddecdicoa_p: 1 - 3ddecdicoa_p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113790 or ENSG00000198721 - - rxnFrom: Recon3D - - eccodes: - - references: PNAS August 1, 1992 vol. 89 no. 15 6673-6677,PMID: 2303409,PMID: 10419495, FEBS LETTERS vol.215 no.2 228-232 + - gene_reaction_rule: "ENSG00000113790 or ENSG00000198721" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PNAS August 1, 1992 vol. 89 no. 15 6673-6677,PMID: 2303409,PMID: 10419495, FEBS LETTERS vol.215 no.2 228-232" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC123C102m + - id: "FAOXC123C102m" - name: "Fatty Acid Beta Oxidation (C12:3->C10:2), Mitochondrial" - metabolites: !!omap - 2dodtricoa_m: -1 @@ -250334,15 +250334,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000127884 and ENSG00000138796 and ENSG00000167315 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007. + - gene_reaction_rule: "ENSG00000127884 and ENSG00000138796 and ENSG00000167315" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC123C102x + - id: "FAOXC123C102x" - name: "Fatty Acid Beta Oxidation (C12:3->C10:2), Peroxisomal" - metabolites: !!omap - 2dodtricoa_p: -1 @@ -250355,45 +250355,45 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20558530, PMID:20064629 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20558530, PMID:20064629" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC123m + - id: "FAOXC123m" - name: "Isomerization (C12:3), Mitochondrial" - metabolites: !!omap - 2dodtricoa_m: 1 - 3dodtricoa_m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167969 - - rxnFrom: Recon3D - - eccodes: - - references: Journal of Molecular Biology, Volume 342, Issue 4, 24 September 2004, Pages 1197-1208 + - gene_reaction_rule: "ENSG00000167969" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Journal of Molecular Biology, Volume 342, Issue 4, 24 September 2004, Pages 1197-1208" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC123x + - id: "FAOXC123x" - name: "Isomerization (C12:3), Peroxisomal" - metabolites: !!omap - 2dodtricoa_p: 1 - 3dodtricoa_p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113790 or ENSG00000198721 - - rxnFrom: Recon3D - - eccodes: - - references: PNAS August 1, 1992 vol. 89 no. 15 6673-6677,PMID: 2303409,PMID: 10419495, FEBS LETTERS vol.215 no.2 228-232 + - gene_reaction_rule: "ENSG00000113790 or ENSG00000198721" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PNAS August 1, 1992 vol. 89 no. 15 6673-6677,PMID: 2303409,PMID: 10419495, FEBS LETTERS vol.215 no.2 228-232" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC12C10m + - id: "FAOXC12C10m" - name: "Fatty Acid Beta Oxidation (C12->C10), Mitochondrial" - metabolites: !!omap - m01261m: 1 @@ -250408,15 +250408,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117054 and ENSG00000127884 and ENSG00000138796 and ENSG00000167315 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007. + - gene_reaction_rule: "ENSG00000117054 and ENSG00000127884 and ENSG00000138796 and ENSG00000167315" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC12C10x + - id: "FAOXC12C10x" - name: "Fatty Acid Beta Oxidation (C12->C10), Peroxisomal" - metabolites: !!omap - m01261p: 1 @@ -250431,15 +250431,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11411544, HMDB06404 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11411544, HMDB06404" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC12C12OHm + - id: "FAOXC12C12OHm" - name: "Fatty Acid Beta Oxidation (C12->Ohc12), Mitochondrial" - metabolites: !!omap - m00174m: 1 @@ -250449,15 +250449,15 @@ - m02345m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117054 and ENSG00000127884 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 1730577, HMDB00387 + - gene_reaction_rule: "ENSG00000117054 and ENSG00000127884" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 1730577, HMDB00387" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC12DCC10DCx + - id: "FAOXC12DCC10DCx" - name: "Fatty Acid Beta Oxidation (C12Dc->C10Dc), Peroxisomal" - metabolites: !!omap - c12dccoa_p: -1 @@ -250472,30 +250472,30 @@ - sebcoa_p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:15060085,PMID:9827430,The Tohoku Journal of Experimental Medicine.Vol. 221 (2010) , No. 3 pp.191-195 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:15060085,PMID:9827430,The Tohoku Journal of Experimental Medicine.Vol. 221 (2010) , No. 3 pp.191-195" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC12DCTc + - id: "FAOXC12DCTc" - name: "Transport of Dodecanedioyl Carnitine into Cytosol" - metabolites: !!omap - c12dc_c: 1 - c12dc_p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: Recon3D - - eccodes: - - references: Westin M, Hunt M, Alexson S. (2008). Cellular and Molecular Life Sciences 65: 982-90. doi:10.1006/mgme.2000.3055,doi:10.1006/bbrc.1999.1340,biochimica et biophysica acta 1546 (2001) 21-43 + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Westin M, Hunt M, Alexson S. (2008). Cellular and Molecular Life Sciences 65: 982-90. doi:10.1006/mgme.2000.3055,doi:10.1006/bbrc.1999.1340,biochimica et biophysica acta 1546 (2001) 21-43" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC12DCc + - id: "FAOXC12DCc" - name: "Formation of Dodecanedioyl Carnitine" - metabolites: !!omap - c12dc_c: 1 @@ -250504,15 +250504,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: Recon3D - - eccodes: - - references: Korman SH, Waterham HR, Gutman A, Jakobs C, Wanders RJA. (2005). Molecular Genetics and Metabolism 86: 337-43 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Korman SH, Waterham HR, Gutman A, Jakobs C, Wanders RJA. (2005). Molecular Genetics and Metabolism 86: 337-43" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC12DCx + - id: "FAOXC12DCx" - name: "Production of Dodecanedioyl Carnitine" - metabolites: !!omap - c12dc_p: 1 @@ -250521,15 +250521,15 @@ - m02348p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005469 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15060085, Westin M, Hunt M, Alexson S. (2008). Cellular and Molecular Life Sciences 65: 982-90, PMID: 20560540 + - gene_reaction_rule: "ENSG00000005469" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15060085, Westin M, Hunt M, Alexson S. (2008). Cellular and Molecular Life Sciences 65: 982-90, PMID: 20560540" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC13BRC11BRx + - id: "FAOXC13BRC11BRx" - name: "Fatty Acid Beta Oxidation (C13Br->C11Br), Peroxisomal" - metabolites: !!omap - m00948p: -1 @@ -250544,15 +250544,15 @@ - tmuncoa_p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000087008 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: Recon3D - - eccodes: - - references: HMDB02221,PMID:11591435 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000087008 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "HMDB02221,PMID:11591435" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC13C11m + - id: "FAOXC13C11m" - name: "Fatty Acid Beta Oxidation (C13->C11), Mitochondrial" - metabolites: !!omap - m01261m: 1 @@ -250567,15 +250567,15 @@ - undcoa_m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 and ENSG00000084754 and ENSG00000138029 - - rxnFrom: Recon3D - - eccodes: - - references: J. Oleo Sci. 57, (5) 293-299 (2008) + - gene_reaction_rule: "ENSG00000072778 and ENSG00000084754 and ENSG00000138029" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "J. Oleo Sci. 57, (5) 293-299 (2008)" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC141C121m + - id: "FAOXC141C121m" - name: "Fatty Acid Beta Oxidation (C14:1->C12:1), Mitochondrial" - metabolites: !!omap - dd5ecoa_m: 1 @@ -250590,15 +250590,15 @@ - tetd7ecoa_m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 and ENSG00000084754 and ENSG00000138029 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007. + - gene_reaction_rule: "ENSG00000072778 and ENSG00000084754 and ENSG00000138029" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC141C121x + - id: "FAOXC141C121x" - name: "Fatty Acid Beta Xoidation (C14:1->C12:1), Peroxisomal" - metabolites: !!omap - m00088p: 1 @@ -250613,15 +250613,15 @@ - tetde5coa_p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10709653, PMID: 11296696, PMID: 11330072, PMID: 16766224 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10709653, PMID: 11296696, PMID: 11330072, PMID: 16766224" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC141C141OHm + - id: "FAOXC141C141OHm" - name: "Fatty Acid Beta Oxidation (C14:1->C14:1Oh), Mitochondrial" - metabolites: !!omap - 3tetd7ecoa_m: 1 @@ -250631,15 +250631,15 @@ - tetd7ecoa_m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 and ENSG00000084754 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 21281499 + - gene_reaction_rule: "ENSG00000072778 and ENSG00000084754" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 21281499" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC142C122m + - id: "FAOXC142C122m" - name: "Fatty Acid Beta Oxidation (C14:2->C12:2), Mitochondrial" - metabolites: !!omap - 3ddecdicoa_m: 1 @@ -250654,15 +250654,15 @@ - tetdecdicoa_m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 and ENSG00000084754 and ENSG00000138029 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007. + - gene_reaction_rule: "ENSG00000072778 and ENSG00000084754 and ENSG00000138029" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC142C122x + - id: "FAOXC142C122x" - name: "Fatty Acid Beta Oxidation (C14:2->C12:2), Peroxisomal" - metabolites: !!omap - 3ddecdicoa_p: 1 @@ -250677,15 +250677,15 @@ - tetdecdicoa_p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20558530 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20558530" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC142C142OHm + - id: "FAOXC142C142OHm" - name: "Fatty Acid Beta Oxidation (C14:2->C14:2Oh), Mitochondrial" - metabolites: !!omap - 3ttetddcoa_m: 1 @@ -250695,15 +250695,15 @@ - ttetddcoa_m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 and ENSG00000084754 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 21281499 + - gene_reaction_rule: "ENSG00000072778 and ENSG00000084754" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 21281499" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC143C123m + - id: "FAOXC143C123m" - name: "Fatty Acid Beta Oxidation (C14:3->C12:3), Mitochondrial" - metabolites: !!omap - 3dodtricoa_m: 1 @@ -250718,15 +250718,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 and ENSG00000084754 and ENSG00000138029 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007. + - gene_reaction_rule: "ENSG00000072778 and ENSG00000084754 and ENSG00000138029" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC143C123x + - id: "FAOXC143C123x" - name: "Fatty Acid Beta Oxidation (C14:3->C12:3), Peroxisomal" - metabolites: !!omap - 3dodtricoa_p: 1 @@ -250741,15 +250741,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20558530 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20558530" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC14C12m + - id: "FAOXC14C12m" - name: "Fatty Acid Beta Oxidation (C14->C12), Mitochondrial" - metabolites: !!omap - m01261m: 1 @@ -250764,15 +250764,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 and ENSG00000084754 and ENSG00000138029 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007. + - gene_reaction_rule: "ENSG00000072778 and ENSG00000084754 and ENSG00000138029" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC14C12x + - id: "FAOXC14C12x" - name: "Fatty Acid Beta Oxidation (C14->C12), Peroxisomal" - metabolites: !!omap - m01261p: 1 @@ -250787,15 +250787,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11411544 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11411544" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC14C14OHm + - id: "FAOXC14C14OHm" - name: "Fatty Acid Beta Oxidation (C14->C14Oh), Mitochondrial" - metabolites: !!omap - m00178m: 1 @@ -250805,15 +250805,15 @@ - m02495m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 and ENSG00000084754 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11427448 + - gene_reaction_rule: "ENSG00000072778 and ENSG00000084754" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11427448" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC14DCC12DCx + - id: "FAOXC14DCC12DCx" - name: "Fatty Acid Beta Oxidation (C14Dc->C12Dc), Peroxisomal" - metabolites: !!omap - c12dccoa_p: 1 @@ -250828,15 +250828,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:15060085,PMID:9827430, HMDB02095,PMID: 12651823 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:15060085,PMID:9827430, HMDB02095,PMID: 12651823" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC15ATPx + - id: "FAOXC15ATPx" - name: "Fatty Acid Activation (C15), Peroxisomal" - metabolites: !!omap - m01334p: 1 @@ -250847,15 +250847,15 @@ - pristcoa_p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000140284 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11591435,PMID: 10198260 + - gene_reaction_rule: "ENSG00000140284" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11591435,PMID: 10198260" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC15BRC13BRx + - id: "FAOXC15BRC13BRx" - name: "Fatty Acid Beta Oxidation (C15Br->C13Br), Peroxisomal" - metabolites: !!omap - m00948p: 1 @@ -250870,15 +250870,15 @@ - pristcoa_p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000087008 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: Recon3D - - eccodes: - - references: HMDB02396,PMID:11591435 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000087008 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "HMDB02396,PMID:11591435" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC15C13m + - id: "FAOXC15C13m" - name: "Fatty Acid Beta Oxidation (C15->C13), Mitochondrial" - metabolites: !!omap - m01261m: 1 @@ -250893,15 +250893,15 @@ - tridcoa_m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 and ENSG00000084754 and ENSG00000138029 - - rxnFrom: Recon3D - - eccodes: - - references: J. Oleo Sci. 57, (5) 293-299 (2008) + - gene_reaction_rule: "ENSG00000072778 and ENSG00000084754 and ENSG00000138029" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "J. Oleo Sci. 57, (5) 293-299 (2008)" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC15NADPx + - id: "FAOXC15NADPx" - name: "Fatty Acid Alpha Oxidation (2-Hydroxyphytanoyl Coenzyme A) (NADP), Peroxisomal" - metabolites: !!omap - m00655p: -1 @@ -250913,15 +250913,15 @@ - m02766p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072210 and ENSG00000131373 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11356164, PMID: 8144536 + - gene_reaction_rule: "ENSG00000072210 and ENSG00000131373" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11356164, PMID: 8144536" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC15NADx + - id: "FAOXC15NADx" - name: "Fatty Acid Alpha Oxidation (2-Hydroxyphytanoyl Coenzyme A) (NAD), Peroxisomal" - metabolites: !!omap - m00655p: -1 @@ -250933,15 +250933,15 @@ - m02766p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072210 and ENSG00000131373 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11591435 + - gene_reaction_rule: "ENSG00000072210 and ENSG00000131373" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11591435" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC161C141m + - id: "FAOXC161C141m" - name: "Fatty Acid Beta Oxidation (C16:1->C14:1), Mitochondrial" - metabolites: !!omap - m01261m: 1 @@ -250956,15 +250956,15 @@ - tetd7ecoa_m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 and ENSG00000084754 and ENSG00000138029 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007. + - gene_reaction_rule: "ENSG00000072778 and ENSG00000084754 and ENSG00000138029" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC161C141x + - id: "FAOXC161C141x" - name: "Fatty Acid Beta Xoidation (C16:1->C14:1), Peroxisomal" - metabolites: !!omap - hexde7coa_p: -1 @@ -250979,15 +250979,15 @@ - tetde5coa_p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10709653, PMID: 11296696, PMID: 11330072, PMID: 16766224 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10709653, PMID: 11296696, PMID: 11330072, PMID: 16766224" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC161C161OHm + - id: "FAOXC161C161OHm" - name: "Production of 3-Hydroxyhexadecenoylcoa" - metabolites: !!omap - 3hdeccoa_m: 1 @@ -250997,15 +250997,15 @@ - m02677m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 and ENSG00000084754 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9510849, clinical chemistry 46:2, 149-155(2000) + - gene_reaction_rule: "ENSG00000072778 and ENSG00000084754" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9510849, clinical chemistry 46:2, 149-155(2000)" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC162C142m + - id: "FAOXC162C142m" - name: "Fatty Acid Beta Oxidation (C16:2->C14:2), Mitochondrial" - metabolites: !!omap - hexddcoa_m: -1 @@ -251020,15 +251020,15 @@ - tetdecdicoa_m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 and ENSG00000084754 and ENSG00000138029 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007. + - gene_reaction_rule: "ENSG00000072778 and ENSG00000084754 and ENSG00000138029" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC162C162OHm + - id: "FAOXC162C162OHm" - name: "Fatty Acid Beta Oxidation (C16:2->C16:2Oh), Mitochondrial" - metabolites: !!omap - 3thexddcoa_m: 1 @@ -251038,15 +251038,15 @@ - thexddcoa_m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 and ENSG00000084754 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 21281499 + - gene_reaction_rule: "ENSG00000072778 and ENSG00000084754" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 21281499" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC163C142x + - id: "FAOXC163C142x" - name: "Fatty Acid Beta Oxidation (C16:3->C14:2), Peroxisomal" - metabolites: !!omap - 2hexdtricoa_p: -1 @@ -251059,15 +251059,15 @@ - tetdecdicoa_p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20558530 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20558530" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC163C143m + - id: "FAOXC163C143m" - name: "Fatty Acid Beta Oxidation (C16:3->C14:3), Mitochondrial" - metabolites: !!omap - 5tedtricoa_m: 1 @@ -251082,15 +251082,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 and ENSG00000084754 and ENSG00000138029 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007. + - gene_reaction_rule: "ENSG00000072778 and ENSG00000084754 and ENSG00000138029" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC163C164Gm + - id: "FAOXC163C164Gm" - name: "Fatty Acid Beta Oxidation (C16:3->C16:4), Mitochondrial" - metabolites: !!omap - 4hexdtricoa_m: -1 @@ -251099,15 +251099,15 @@ - m01803m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 - - rxnFrom: Recon3D - - eccodes: - - references: PMCID: PMC2702680 + - gene_reaction_rule: "ENSG00000072778" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMCID: PMC2702680" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC163C164x + - id: "FAOXC163C164x" - name: "Fatty Acid Beta Oxidation (C16:3->C16:4), Peroxisomal" - metabolites: !!omap - 4hexdtricoa_p: -1 @@ -251116,15 +251116,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 18536048, PMID: 17458872 + - gene_reaction_rule: "ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 18536048, PMID: 17458872" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC163GC142m + - id: "FAOXC163GC142m" - name: "Fatty Acid Beta Oxidation (C16:3->C14:2), Mitochondrial" - metabolites: !!omap - 2hexdtricoa_m: -1 @@ -251137,45 +251137,45 @@ - tetdecdicoa_m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007. + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC163Gm + - id: "FAOXC163Gm" - name: "Isomerization (C16:3), Mitochondrial" - metabolites: !!omap - 2hexdtricoa_m: 1 - 3hexdtricoa_m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167969 - - rxnFrom: Recon3D - - eccodes: - - references: Journal of Molecular Biology, Volume 342, Issue 4, 24 September 2004, Pages 1197-1208 + - gene_reaction_rule: "ENSG00000167969" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Journal of Molecular Biology, Volume 342, Issue 4, 24 September 2004, Pages 1197-1208" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC163x + - id: "FAOXC163x" - name: "Isomerization (C16:3), Peroxisomal" - metabolites: !!omap - 2hexdtricoa_p: 1 - 3hexdtricoa_p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113790 or ENSG00000198721 - - rxnFrom: Recon3D - - eccodes: - - references: PNAS August 1, 1992 vol. 89 no. 15 6673-6677,PMID: 2303409,PMID: 10419495, FEBS LETTERS vol.215 no.2 228-232 + - gene_reaction_rule: "ENSG00000113790 or ENSG00000198721" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PNAS August 1, 1992 vol. 89 no. 15 6673-6677,PMID: 2303409,PMID: 10419495, FEBS LETTERS vol.215 no.2 228-232" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC164C143m + - id: "FAOXC164C143m" - name: "Fatty Acid Beta Oxidation (C16:4->C14:3), Mitochondrial" - metabolites: !!omap - 2hexdtetcoa_m: -1 @@ -251188,15 +251188,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007. + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC164C143x + - id: "FAOXC164C143x" - name: "Fatty Acid Beta Oxidation (C16:4->C14:3), Peroxisomal" - metabolites: !!omap - 2hexdtetcoa_p: -1 @@ -251209,15 +251209,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:7876265, PMID:20558530 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:7876265, PMID:20558530" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC164C163x + - id: "FAOXC164C163x" - name: "Fatty Acid Beta Oxidation (C16:4->C16:3), Peroxisomal" - metabolites: !!omap - 3hexdtricoa_p: 1 @@ -251227,15 +251227,15 @@ - m02555p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000242612 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11514237 + - gene_reaction_rule: "ENSG00000242612" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11514237" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC164C165m + - id: "FAOXC164C165m" - name: "Fatty Acid Beta Oxidation (C16:4->C16:5), Mitochondrial" - metabolites: !!omap - 4hexdtetcoa_m: -1 @@ -251244,15 +251244,15 @@ - m01803m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 - - rxnFrom: Recon3D - - eccodes: - - references: PMCID: PMC2702680 + - gene_reaction_rule: "ENSG00000072778" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMCID: PMC2702680" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC164C165x + - id: "FAOXC164C165x" - name: "Fatty Acid Beta Oxidation (C16:4->C16:5), Peroxisomal" - metabolites: !!omap - 4hexdtetcoa_p: -1 @@ -251261,15 +251261,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 18536048, PMID: 17458872 + - gene_reaction_rule: "ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 18536048, PMID: 17458872" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC164GC163m + - id: "FAOXC164GC163m" - name: "Fatty Acid Beta Oxidation (C16:4->C16:3), Mitochondrial" - metabolites: !!omap - 3hexdtricoa_m: 1 @@ -251279,45 +251279,45 @@ - m02555m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104325 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 7818482 + - gene_reaction_rule: "ENSG00000104325" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 7818482" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC164m + - id: "FAOXC164m" - name: "Isomerization (C16:4), Mitochondrial" - metabolites: !!omap - 2hexdtetcoa_m: 1 - 3hexdtetcoa_m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167969 - - rxnFrom: Recon3D - - eccodes: - - references: Journal of Molecular Biology, Volume 342, Issue 4, 24 September 2004, Pages 1197-1208 + - gene_reaction_rule: "ENSG00000167969" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Journal of Molecular Biology, Volume 342, Issue 4, 24 September 2004, Pages 1197-1208" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC164x + - id: "FAOXC164x" - name: "Isomerization (C16:4), Peroxisomal" - metabolites: !!omap - 2hexdtetcoa_p: 1 - 3hexdtetcoa_p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113790 or ENSG00000198721 - - rxnFrom: Recon3D - - eccodes: - - references: PNAS August 1, 1992 vol. 89 no. 15 6673-6677,PMID: 2303409,PMID: 10419495, FEBS LETTERS vol.215 no.2 228-232 + - gene_reaction_rule: "ENSG00000113790 or ENSG00000198721" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PNAS August 1, 1992 vol. 89 no. 15 6673-6677,PMID: 2303409,PMID: 10419495, FEBS LETTERS vol.215 no.2 228-232" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC165C164m + - id: "FAOXC165C164m" - name: "Fatty Acid Beta Oxidation (C16:5->C16:4), Mitochondrial" - metabolites: !!omap - 3hexdtetcoa_m: 1 @@ -251327,15 +251327,15 @@ - m02555m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104325 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 7818482 + - gene_reaction_rule: "ENSG00000104325" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 7818482" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC165C164x + - id: "FAOXC165C164x" - name: "Fatty Acid Beta Oxidation (C16:5->C16:4), Peroxisomal" - metabolites: !!omap - 3hexdtetcoa_p: 1 @@ -251345,15 +251345,15 @@ - m02555p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000242612 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11514237 + - gene_reaction_rule: "ENSG00000242612" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11514237" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC16BRx + - id: "FAOXC16BRx" - name: "Fatty Acid Activation (C16Br), Peroxisomal" - metabolites: !!omap - m01334p: 1 @@ -251364,15 +251364,15 @@ - phyt_p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000140284 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11591435 + - gene_reaction_rule: "ENSG00000140284" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11591435" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC16C14m + - id: "FAOXC16C14m" - name: "Fatty Acid Beta Oxidation (C16->C14), Mitochondrial" - metabolites: !!omap - m01261m: 1 @@ -251387,15 +251387,15 @@ - m02678m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 and ENSG00000084754 and ENSG00000138029 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007. + - gene_reaction_rule: "ENSG00000072778 and ENSG00000084754 and ENSG00000138029" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC16C14x + - id: "FAOXC16C14x" - name: "Fatty Acid Beta Oxidation (C16->C14), Peroxisomal" - metabolites: !!omap - m01261p: 1 @@ -251410,15 +251410,15 @@ - m02678p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11411544, PMID:7876265, HMDB01521 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11411544, PMID:7876265, HMDB01521" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC16C16OHm + - id: "FAOXC16C16OHm" - name: "Fatty Acid Beta Oxidation (C16->C16Oh), Mitochondrial" - metabolites: !!omap - 3hexdcoa_m: 1 @@ -251428,15 +251428,15 @@ - m02678m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 and ENSG00000084754 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9510849, clinical chemistry 46:2, 149-155(2000) + - gene_reaction_rule: "ENSG00000072778 and ENSG00000084754" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9510849, clinical chemistry 46:2, 149-155(2000)" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC16DCC14DCx + - id: "FAOXC16DCC14DCx" - name: "Fatty Acid Beta Oxidation (C16Dc->C14Dc), Peroxisomal" - metabolites: !!omap - c14dccoa_p: 1 @@ -251451,15 +251451,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:15060085,PMID:9827430 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:15060085,PMID:9827430" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC16DCr + - id: "FAOXC16DCr" - name: "Fatty Acid Activation (C16Dc), Endoplasmatic Reticulum" - metabolites: !!omap - hexdiac_r: -1 @@ -251470,15 +251470,15 @@ - m02759r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197142 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:15060085,PMCID:PMC1152672 + - gene_reaction_rule: "ENSG00000197142" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:15060085,PMCID:PMC1152672" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC16OHC16r + - id: "FAOXC16OHC16r" - name: "Fatty Acid Omega Oxidation (C16->W-Ohc16), Endoplasmatic Reticulum" - metabolites: !!omap - m00403r: 1 @@ -251490,15 +251490,15 @@ - m02674r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000186115 and ENSG00000186529 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 4703570,PMID: 9827430,PMID:15060085 + - gene_reaction_rule: "ENSG00000186115 and ENSG00000186529" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 4703570,PMID: 9827430,PMID:15060085" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC17C15m + - id: "FAOXC17C15m" - name: "Fatty Acid Beta Oxidation (C17->C15), Mitochondrial" - metabolites: !!omap - m01261m: 1 @@ -251513,15 +251513,15 @@ - m02689m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 and ENSG00000084754 and ENSG00000138029 - - rxnFrom: Recon3D - - eccodes: - - references: J. Oleo Sci. 57, (5) 293-299 (2008) + - gene_reaction_rule: "ENSG00000072778 and ENSG00000084754 and ENSG00000138029" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "J. Oleo Sci. 57, (5) 293-299 (2008)" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC181C161m + - id: "FAOXC181C161m" - name: "Fatty Acid Beta Oxidation (C18:1->C16:1), Mitochondrial" - metabolites: !!omap - m01261m: 1 @@ -251536,15 +251536,15 @@ - octd11ecoa_m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 and ENSG00000084754 and ENSG00000138029 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007. + - gene_reaction_rule: "ENSG00000072778 and ENSG00000084754 and ENSG00000138029" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC181C161x + - id: "FAOXC181C161x" - name: "Fatty Acid Beta Xoidation (C18:1->C16:1), Peroxisomal" - metabolites: !!omap - hexde7coa_p: 1 @@ -251559,15 +251559,15 @@ - ocde9ecoa_p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10709653, PMID: 11296696, PMID: 11330072, PMID: 16766224, PMID: 3821403 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10709653, PMID: 11296696, PMID: 11330072, PMID: 16766224, PMID: 3821403" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC181C181OHm + - id: "FAOXC181C181OHm" - name: "Fatty Acid Beta Oxidation (C18:1->C18:1Oh), Mitochondrial" - metabolites: !!omap - 3octdece1coa_m: 1 @@ -251577,15 +251577,15 @@ - octdececoa_m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 and ENSG00000084754 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:9510849 + - gene_reaction_rule: "ENSG00000072778 and ENSG00000084754" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:9510849" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC182C162m + - id: "FAOXC182C162m" - name: "Fatty Acid Beta Oxidation (C18:2->C16:2), Mitochondrial" - metabolites: !!omap - hexddcoa_m: 1 @@ -251600,15 +251600,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 and ENSG00000084754 and ENSG00000138029 - - rxnFrom: Recon3D - - eccodes: - - references: harpers biochemistry-25th edition-page no.242. + - gene_reaction_rule: "ENSG00000072778 and ENSG00000084754 and ENSG00000138029" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "harpers biochemistry-25th edition-page no.242." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC182C182OHm + - id: "FAOXC182C182OHm" - name: "Fatty Acid Beta Oxidation (C18:2->C18:2Oh), Mitochondrial" - metabolites: !!omap - 3ocddcoa_m: 1 @@ -251618,15 +251618,15 @@ - m02391m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 and ENSG00000084754 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:9510849 + - gene_reaction_rule: "ENSG00000072778 and ENSG00000084754" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:9510849" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC183C163Gm + - id: "FAOXC183C163Gm" - name: "Fatty Acid Beta Oxidation (C18:3->C16:3), Mitochondrial" - metabolites: !!omap - 4hexdtricoa_m: 1 @@ -251641,15 +251641,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 and ENSG00000084754 and ENSG00000138029 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007. + - gene_reaction_rule: "ENSG00000072778 and ENSG00000084754 and ENSG00000138029" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC183C163m + - id: "FAOXC183C163m" - name: "Fatty Acid Beta Oxidation (C18:3->C16:3), Mitochondrial" - metabolites: !!omap - hexdtrcoa_m: 1 @@ -251664,15 +251664,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 and ENSG00000084754 and ENSG00000138029 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007. + - gene_reaction_rule: "ENSG00000072778 and ENSG00000084754 and ENSG00000138029" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC184C163m + - id: "FAOXC184C163m" - name: "Fatty Acid Beta Oxidation (C18:4->C16:3), Mitochondrial" - metabolites: !!omap - 2octdectecoa_m: -1 @@ -251685,15 +251685,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007. + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC184C163x + - id: "FAOXC184C163x" - name: "Fatty Acid Beta Oxidation (C18:4->C16:3), Peroxisomal" - metabolites: !!omap - 2octdectecoa_p: -1 @@ -251706,15 +251706,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20064629, journal of lipid research 1998 vol 39 pages 2161-2171 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20064629, journal of lipid research 1998 vol 39 pages 2161-2171" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC184C164m + - id: "FAOXC184C164m" - name: "Fatty Acid Beta Oxidation (C18:4->C16:4), Mitochondrial" - metabolites: !!omap - 4hexdtetcoa_m: 1 @@ -251729,15 +251729,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 and ENSG00000084754 and ENSG00000138029 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007. + - gene_reaction_rule: "ENSG00000072778 and ENSG00000084754 and ENSG00000138029" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC184C164x + - id: "FAOXC184C164x" - name: "Fatty Acid Beta Oxidation (C18:4->C16:4), Peroxisomal" - metabolites: !!omap - 4hexdtetcoa_p: 1 @@ -251752,45 +251752,45 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20558530 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20558530" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC184m + - id: "FAOXC184m" - name: "Isomerization of (C18:4), Mitochondrial" - metabolites: !!omap - 2octdectecoa_m: 1 - 3octdectecoa_m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167969 - - rxnFrom: Recon3D - - eccodes: - - references: Journal of Molecular Biology, Volume 342, Issue 4, 24 September 2004, Pages 1197-1208 5.3.3.8 + - gene_reaction_rule: "ENSG00000167969" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Journal of Molecular Biology, Volume 342, Issue 4, 24 September 2004, Pages 1197-1208 5.3.3.8" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC184x + - id: "FAOXC184x" - name: "Isomerization (C18:4), Peroxisomal" - metabolites: !!omap - 2octdectecoa_p: 1 - 3octdectecoa_p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113790 or ENSG00000198721 - - rxnFrom: Recon3D - - eccodes: - - references: PNAS August 1, 1992 vol. 89 no. 15 6673-6677,PMID: 2303409,PMID: 10419495, FEBS LETTERS vol.215 no.2 228-232 + - gene_reaction_rule: "ENSG00000113790 or ENSG00000198721" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PNAS August 1, 1992 vol. 89 no. 15 6673-6677,PMID: 2303409,PMID: 10419495, FEBS LETTERS vol.215 no.2 228-232" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC185C164m + - id: "FAOXC185C164m" - name: "Fatty Acid Beta Oxidation (C18:5->C16:4), Mitochondrial" - metabolites: !!omap - 2octpencoa_m: -1 @@ -251803,30 +251803,30 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 and ENSG00000084754 and ENSG00000138029 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007. + - gene_reaction_rule: "ENSG00000072778 and ENSG00000084754 and ENSG00000138029" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC185m + - id: "FAOXC185m" - name: "Isomerization (C18:5), Mitochondrial" - metabolites: !!omap - 2octpencoa_m: 1 - 3octpencoa_m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167969 - - rxnFrom: Recon3D - - eccodes: - - references: Journal of Molecular Biology, Volume 342, Issue 4, 24 September 2004, Pages 1197-1208 + - gene_reaction_rule: "ENSG00000167969" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Journal of Molecular Biology, Volume 342, Issue 4, 24 September 2004, Pages 1197-1208" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC18C18OHm + - id: "FAOXC18C18OHm" - name: "Fatty Acid Beta Oxidation (C18->C18Oh), Mitochondrial" - metabolites: !!omap - 3hodcoa_m: 1 @@ -251836,15 +251836,15 @@ - m02941m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 and ENSG00000084754 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11751554 + - gene_reaction_rule: "ENSG00000072778 and ENSG00000084754" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11751554" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC201C181x + - id: "FAOXC201C181x" - name: "Fatty Acid Beta Xoidation (C20:1->C18:1), Peroxisomal" - metabolites: !!omap - ei11ecoa_p: -1 @@ -251859,15 +251859,15 @@ - ocde9ecoa_p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 20626744, PMID: 3821403 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 20626744, PMID: 3821403" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC204C184m + - id: "FAOXC204C184m" - name: "Fatty Acid Beta Oxidation (C20:4->C18:4), Mitochondrial" - metabolites: !!omap - 3octdectecoa_m: 1 @@ -251882,15 +251882,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 and ENSG00000084754 and ENSG00000138029 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007. + - gene_reaction_rule: "ENSG00000072778 and ENSG00000084754 and ENSG00000138029" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC204C205x + - id: "FAOXC204C205x" - name: "Fatty Acid Beta Oxidation (C20:4->C20:5), Peroxisomal" - metabolites: !!omap - eipencoa_p: 1 @@ -251899,15 +251899,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 18536048, PMID: 17458872 + - gene_reaction_rule: "ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 18536048, PMID: 17458872" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC205C184x + - id: "FAOXC205C184x" - name: "Fatty Acid Beta Oxidation (C20:5->C18:4), Peroxisomal" - metabolites: !!omap - 3octdectecoa_p: 1 @@ -251920,15 +251920,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20064629, journal of lipid research 1998 vol 39 pages 2161-2171 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20064629, journal of lipid research 1998 vol 39 pages 2161-2171" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC205C185m + - id: "FAOXC205C185m" - name: "Fatty Acid Beta Oxidation (C20:5->C18:5), Mitochondrial" - metabolites: !!omap - 3octpencoa_m: 1 @@ -251943,15 +251943,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 and ENSG00000084754 and ENSG00000138029 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007. + - gene_reaction_rule: "ENSG00000072778 and ENSG00000084754 and ENSG00000138029" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC221C201x + - id: "FAOXC221C201x" - name: "Fatty Acid Beta Oxidation (C22:1->C20:1), Peroxisomal" - metabolites: !!omap - doco13ecoa_p: -1 @@ -251966,15 +251966,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 20626744 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 20626744" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC225C204m + - id: "FAOXC225C204m" - name: "Fatty Acid Beta Oxidation (C22:5->C20:4), Mitochondrial" - metabolites: !!omap - 2docopencoa_m: -1 @@ -251987,15 +251987,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084754 and ENSG00000138029 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007. + - gene_reaction_rule: "ENSG00000084754 and ENSG00000138029" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC225C204x + - id: "FAOXC225C204x" - name: "Fatty Acid Beta Oxidation (C22:5->C20:4), Peroxisomal" - metabolites: !!omap - 2docopencoa_p: -1 @@ -252008,15 +252008,15 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20064629, journal of lipid research 1998 vol 39 pages 2161-2171 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20064629, journal of lipid research 1998 vol 39 pages 2161-2171" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC225C226m + - id: "FAOXC225C226m" - name: "Fatty Acid Beta Oxidation (C22:5->C22:6), Mitochondrial" - metabolites: !!omap - docohexcoa_m: 1 @@ -252025,15 +252025,15 @@ - m01803m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 - - rxnFrom: Recon3D - - eccodes: - - references: PMCID: PMC2702680 + - gene_reaction_rule: "ENSG00000072778" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMCID: PMC2702680" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC225C226x + - id: "FAOXC225C226x" - name: "Fatty Acid Beta Oxidation (C22:5->C22:6), Peroxisomal" - metabolites: !!omap - docohexcoa_p: 1 @@ -252042,45 +252042,45 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 18536048, PMID: 17458872 + - gene_reaction_rule: "ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 18536048, PMID: 17458872" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC225m + - id: "FAOXC225m" - name: "Isomerization (C22:5), Mitochondrial" - metabolites: !!omap - 2docopencoa_m: 1 - 3docopencoa_m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167969 - - rxnFrom: Recon3D - - eccodes: - - references: Journal of Molecular Biology, Volume 342, Issue 4, 24 September 2004, Pages 1197-1208 + - gene_reaction_rule: "ENSG00000167969" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Journal of Molecular Biology, Volume 342, Issue 4, 24 September 2004, Pages 1197-1208" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC225x + - id: "FAOXC225x" - name: "Isomerization (C22:5), Peroxisomal" - metabolites: !!omap - 2docopencoa_p: 1 - 3docopencoa_p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113790 or ENSG00000198721 - - rxnFrom: Recon3D - - eccodes: - - references: PNAS August 1, 1992 vol. 89 no. 15 6673-6677,PMID: 2303409,PMID: 10419495, FEBS LETTERS vol.215 no.2 228-232 + - gene_reaction_rule: "ENSG00000113790 or ENSG00000198721" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PNAS August 1, 1992 vol. 89 no. 15 6673-6677,PMID: 2303409,PMID: 10419495, FEBS LETTERS vol.215 no.2 228-232" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC226C205m + - id: "FAOXC226C205m" - name: "Fatty Acid Beta Oxidation (C22:6->C20:5), Mitochondrial" - metabolites: !!omap - 2docohexecoa_m: -1 @@ -252093,15 +252093,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 and ENSG00000084754 and ENSG00000138029 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007. + - gene_reaction_rule: "ENSG00000072778 and ENSG00000084754 and ENSG00000138029" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC226C225m + - id: "FAOXC226C225m" - name: "Fatty Acid Beta Oxidation (C22:6->C22:5), Mitochondrial" - metabolites: !!omap - 3docopencoa_m: 1 @@ -252111,15 +252111,15 @@ - m02555m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104325 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 7818482 + - gene_reaction_rule: "ENSG00000104325" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 7818482" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC226C225x + - id: "FAOXC226C225x" - name: "Fatty Acid Beta Oxidation (C22:6->C22:5), Peroxisomal" - metabolites: !!omap - 3docopencoa_p: 1 @@ -252129,15 +252129,15 @@ - m02555p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000242612 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11514237 + - gene_reaction_rule: "ENSG00000242612" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11514237" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC226C227m + - id: "FAOXC226C227m" - name: "Fatty Acid Beta Oxidation (C22:6->C22:7), Mitochondrial" - metabolites: !!omap - docohepcoa_m: 1 @@ -252146,30 +252146,30 @@ - m01803m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 - - rxnFrom: Recon3D - - eccodes: - - references: PMCID: PMC2702680 + - gene_reaction_rule: "ENSG00000072778" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMCID: PMC2702680" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC226m + - id: "FAOXC226m" - name: "Isomerization (C22:6), Mitochondrial" - metabolites: !!omap - 2docohexecoa_m: 1 - docosahexcoa_m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167969 - - rxnFrom: Recon3D - - eccodes: - - references: Journal of Molecular Biology, Volume 342, Issue 4, 24 September 2004, Pages 1197-1208 + - gene_reaction_rule: "ENSG00000167969" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Journal of Molecular Biology, Volume 342, Issue 4, 24 September 2004, Pages 1197-1208" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC227C226m + - id: "FAOXC227C226m" - name: "Fatty Acid Beta Oxidation (C22:7->C22:6), Mitochondrial" - metabolites: !!omap - docohepcoa_m: -1 @@ -252179,15 +252179,15 @@ - m02555m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104325 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 7818482 + - gene_reaction_rule: "ENSG00000104325" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 7818482" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC22C20x + - id: "FAOXC22C20x" - name: "Fatty Acid Beta Oxidation (C22->C20), Peroxisomal" - metabolites: !!omap - m01261p: 1 @@ -252202,15 +252202,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11124748 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11124748" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC22C22DCHYr + - id: "FAOXC22C22DCHYr" - name: "Fatty Acid Omega Oxidation by Hydroxylases (C22->C22Dc), Endoplasmatic Reticulum" - metabolites: !!omap - docosdiac_r: 1 @@ -252222,15 +252222,15 @@ - m02630r: -3 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000186115 and ENSG00000186529 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15716582,PMID: 19783438 + - gene_reaction_rule: "ENSG00000186115 and ENSG00000186529" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15716582,PMID: 19783438" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC22OHC22r + - id: "FAOXC22OHC22r" - name: "Fatty Acid Omega Oxidation (C22->W-Ohc22), Endoplasmatic Reticulum" - metabolites: !!omap - m01373r: -1 @@ -252241,15 +252241,15 @@ - omhdocosac_r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000186115 and ENSG00000186529 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15716582,PMID: 19783438 + - gene_reaction_rule: "ENSG00000186115 and ENSG00000186529" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15716582,PMID: 19783438" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC241C221x + - id: "FAOXC241C221x" - name: "Fatty Acid Beta Oxidation (C24:1->C22:1), Peroxisomal" - metabolites: !!omap - doco13ecoa_p: 1 @@ -252264,15 +252264,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 20626744 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 20626744" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC24C22x + - id: "FAOXC24C22x" - name: "Fatty Acid Beta Oxidation (C24->C22), Peroxisomal" - metabolites: !!omap - m01261p: 1 @@ -252287,15 +252287,15 @@ - m02971p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: - - references: PMCID:PMC1131640 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMCID:PMC1131640" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC3DC + - id: "FAOXC3DC" - name: "Malonylcoa->Malonylcarnitine" - metabolites: !!omap - c3dc_c: 1 @@ -252304,15 +252304,15 @@ - m02444c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 12651823,PMID: 18192268 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 12651823,PMID: 18192268" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC4C2m + - id: "FAOXC4C2m" - name: "Fatty Acid Beta Oxidation (C4->C2), Mitochondrial" - metabolites: !!omap - m01261m: 2 @@ -252326,15 +252326,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000122971 and ENSG00000127884 and ENSG00000138796 and ENSG00000167315 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007. + - gene_reaction_rule: "ENSG00000122971 and ENSG00000127884 and ENSG00000138796 and ENSG00000167315" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC4C4DCc + - id: "FAOXC4C4DCc" - name: "Succ->C4Dcc" - metabolites: !!omap - c4dc_c: 1 @@ -252343,15 +252343,15 @@ - m02944c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:15060085 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:15060085" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC5C3x + - id: "FAOXC5C3x" - name: "Fatty Acid Beta Oxidation (C5->C3), Mitochondrial" - metabolites: !!omap - m01261m: 1 @@ -252366,15 +252366,15 @@ - pentcoa_m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000122971 and ENSG00000127884 and ENSG00000138796 and ENSG00000167315 - - rxnFrom: Recon3D - - eccodes: - - references: PEDIATRICS INTERNATIONAL ,FEB 1999 ,Volume: 41 Issue: 1 Pages: 52-60 + - gene_reaction_rule: "ENSG00000122971 and ENSG00000127884 and ENSG00000138796 and ENSG00000167315" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PEDIATRICS INTERNATIONAL ,FEB 1999 ,Volume: 41 Issue: 1 Pages: 52-60" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC5C5DCc + - id: "FAOXC5C5DCc" - name: "Production of Glutaryl Carnitine" - metabolites: !!omap - c5dc_c: 1 @@ -252384,15 +252384,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: Recon3D - - eccodes: - - references: http://www.perkinelmergenetics.com/GlutaricAcidemiaTypeI.html , PMID: 16602100 + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "http://www.perkinelmergenetics.com/GlutaricAcidemiaTypeI.html , PMID: 16602100" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC5C5OHm + - id: "FAOXC5C5OHm" - name: "Fatty Acid Beta Oxidation (C5->C5Oh), Mitochondrial" - metabolites: !!omap - 3ivcoa_m: 1 @@ -252400,15 +252400,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: clinica chimica acta 240 (1995) 35-51 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "clinica chimica acta 240 (1995) 35-51" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC5OHc + - id: "FAOXC5OHc" - name: " (3-Hydroxyisovalerylcoa->3-Hydroxyisovalerylcarnitine)" - metabolites: !!omap - 3ivcoa_c: -1 @@ -252417,15 +252417,15 @@ - m02348c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: Recon3D - - eccodes: - - references: clinica chimica acta 240 (1995) 35-51, http://www.perkinelmergenetics.com/3Hydroxy3MethylglutarylCoALyaseDeficiency.html + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "clinica chimica acta 240 (1995) 35-51, http://www.perkinelmergenetics.com/3Hydroxy3MethylglutarylCoALyaseDeficiency.html" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC61C4m + - id: "FAOXC61C4m" - name: "Fatty Acid Beta Oxidation (C6:1->C4:0), Mitochondrial" - metabolites: !!omap - m00053m: -1 @@ -252438,15 +252438,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000127884 and ENSG00000138796 and ENSG00000167315 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007. + - gene_reaction_rule: "ENSG00000127884 and ENSG00000138796 and ENSG00000167315" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC61C4x + - id: "FAOXC61C4x" - name: "Fatty Acid Beta Oxidation (C6:1->C4:0), Peroxisomal" - metabolites: !!omap - m00053p: -1 @@ -252459,45 +252459,45 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20064629 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20064629" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC61m + - id: "FAOXC61m" - name: "Isomerization (C6:1), Mitochondrial" - metabolites: !!omap - hexe3coa_m: -1 - m00053m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167969 - - rxnFrom: Recon3D - - eccodes: - - references: Journal of Molecular Biology, Volume 342, Issue 4, 24 September 2004, Pages 1197-1208 + - gene_reaction_rule: "ENSG00000167969" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Journal of Molecular Biology, Volume 342, Issue 4, 24 September 2004, Pages 1197-1208" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC61x + - id: "FAOXC61x" - name: "Isomerization (C6:1), Peroxisomal" - metabolites: !!omap - hexe3coa_p: -1 - m00053p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113790 or ENSG00000198721 - - rxnFrom: Recon3D - - eccodes: - - references: PNAS August 1, 1992 vol. 89 no. 15 6673-6677,PMID: 2303409,PMID: 10419495, FEBS LETTERS vol.215 no.2 228-232 + - gene_reaction_rule: "ENSG00000113790 or ENSG00000198721" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PNAS August 1, 1992 vol. 89 no. 15 6673-6677,PMID: 2303409,PMID: 10419495, FEBS LETTERS vol.215 no.2 228-232" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC6C4m + - id: "FAOXC6C4m" - name: "Fatty Acid Beta Oxidation (C6->C4), Mitochondrial" - metabolites: !!omap - m01261m: 1 @@ -252512,15 +252512,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117054 and ENSG00000127884 and ENSG00000138796 and ENSG00000167315 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007. + - gene_reaction_rule: "ENSG00000117054 and ENSG00000127884 and ENSG00000138796 and ENSG00000167315" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC6C4x + - id: "FAOXC6C4x" - name: "Fatty Acid Beta Oxidation (C6->C4), Peroxisomal" - metabolites: !!omap - m01261p: 1 @@ -252535,15 +252535,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11356164, HMDB01088 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11356164, HMDB01088" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC6DCC4DCx + - id: "FAOXC6DCC4DCx" - name: "Fatty Acid Beta Oxidation (C6Dc->C4Dc), Peroxisomal" - metabolites: !!omap - adpcoa_p: -1 @@ -252558,15 +252558,15 @@ - m02944p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:15060085,PMID:9827430 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:15060085,PMID:9827430" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC7C5m + - id: "FAOXC7C5m" - name: "Fatty Acid Beta Oxidation (C7->C5), Mitochondrial" - metabolites: !!omap - hepcoa_m: -1 @@ -252581,15 +252581,15 @@ - pentcoa_m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117054 and ENSG00000127884 and ENSG00000138796 and ENSG00000167315 - - rxnFrom: Recon3D - - eccodes: - - references: J. Oleo Sci. 57, (5) 293-299 (2008) + - gene_reaction_rule: "ENSG00000117054 and ENSG00000127884 and ENSG00000138796 and ENSG00000167315" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "J. Oleo Sci. 57, (5) 293-299 (2008)" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC81C61m + - id: "FAOXC81C61m" - name: "Fatty Acid Beta Oxidation (C8:1->C6:1), Mitochondrial" - metabolites: !!omap - hexe3coa_m: 1 @@ -252604,15 +252604,15 @@ - octe5coa_m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117054 and ENSG00000127884 and ENSG00000138796 and ENSG00000167315 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007. + - gene_reaction_rule: "ENSG00000117054 and ENSG00000127884 and ENSG00000138796 and ENSG00000167315" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC81C61x + - id: "FAOXC81C61x" - name: "Fatty Acid Beta Oxidation (C8:1->C6:1), Peroxisomal" - metabolites: !!omap - hexe3coa_p: 1 @@ -252627,15 +252627,15 @@ - octe5coa_p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20558530 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20558530" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC8C6m + - id: "FAOXC8C6m" - name: "Fatty Acid Beta Oxidation (C8->C6), Mitochondrial" - metabolites: !!omap - m01261m: 1 @@ -252650,15 +252650,15 @@ - m02644m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117054 and ENSG00000127884 and ENSG00000138796 and ENSG00000167315 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007. + - gene_reaction_rule: "ENSG00000117054 and ENSG00000127884 and ENSG00000138796 and ENSG00000167315" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC8C6x + - id: "FAOXC8C6x" - name: "Fatty Acid Beta Oxidation (C8->C6), Peroxisomal" - metabolites: !!omap - m01261p: 1 @@ -252673,15 +252673,15 @@ - m02644p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11411544, HMDB02845 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11411544, HMDB02845" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC8DCC6DCx + - id: "FAOXC8DCC6DCx" - name: "Fatty Acid Beta Oxidation (C8Dc->C6Dc), Peroxisomal" - metabolites: !!omap - adpcoa_p: 1 @@ -252696,15 +252696,15 @@ - sbcoa_p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:15060085,PMID:9827430 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835 and ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:15060085,PMID:9827430" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC9BRC7BRm + - id: "FAOXC9BRC7BRm" - name: "Fatty Acid Beta Oxidation (C9Br->C7Br), Mitochondrial" - metabolites: !!omap - dmhepcoa_m: 1 @@ -252719,15 +252719,15 @@ - m02553m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9469587,HMDB06258,PMID:9714723,PMID:11591435 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9469587,HMDB06258,PMID:9714723,PMID:11591435" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXC9C7m + - id: "FAOXC9C7m" - name: "Fatty Acid Beta Oxidation (C9->C7), Mitochondrial" - metabolites: !!omap - hepcoa_m: 1 @@ -252742,15 +252742,15 @@ - noncoa_m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117054 and ENSG00000127884 and ENSG00000138796 and ENSG00000167315 - - rxnFrom: Recon3D - - eccodes: - - references: J. Oleo Sci. 57, (5) 293-299 (2008), HMDB00666 + - gene_reaction_rule: "ENSG00000117054 and ENSG00000127884 and ENSG00000138796 and ENSG00000167315" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "J. Oleo Sci. 57, (5) 293-299 (2008), HMDB00666" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXMC10OHMC10r + - id: "FAOXMC10OHMC10r" - name: "Fatty Acid Omega Oxidation (Mc10->W-Ohmc10), Endoplasmatic Reticulum" - metabolites: !!omap - m01648r: -1 @@ -252762,15 +252762,15 @@ - omhdecacid_r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000186115 and ENSG00000186529 - - rxnFrom: Recon3D - - eccodes: - - references: metabolism,vol45,1996-kou-yi tserng + - gene_reaction_rule: "ENSG00000186115 and ENSG00000186529" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "metabolism,vol45,1996-kou-yi tserng" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXOHC16C16DCc + - id: "FAOXOHC16C16DCc" - name: "Fatty Acid Omega Oxidation (W-Ohc16->C16Dc)" - metabolites: !!omap - hexdiac_c: 1 @@ -252781,15 +252781,15 @@ - m02553c: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072210 and ENSG00000197894 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:15060085,PMCID:PMC1152672 + - gene_reaction_rule: "ENSG00000072210 and ENSG00000197894" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:15060085,PMCID:PMC1152672" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXOHC22C22DCc + - id: "FAOXOHC22C22DCc" - name: "Fatty Acid Omega Oxidation (W-Ohc22->C22Dc)" - metabolites: !!omap - docosdiac_c: 1 @@ -252800,15 +252800,15 @@ - omhdocosac_c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072210 and ENSG00000197894 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:15716582 + - gene_reaction_rule: "ENSG00000072210 and ENSG00000197894" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:15716582" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXOHMC10DC10c + - id: "FAOXOHMC10DC10c" - name: "Fatty Acid Omega Oxidation (W-Ohmc10->Dc10)" - metabolites: !!omap - m02039c: 3 @@ -252819,15 +252819,15 @@ - sebacid_c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072210 and ENSG00000197894 - - rxnFrom: Recon3D - - eccodes: - - references: doi:10.1016/j.physletb.2003.10.071 + - gene_reaction_rule: "ENSG00000072210 and ENSG00000197894" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "doi:10.1016/j.physletb.2003.10.071" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXTC101TC102m + - id: "FAOXTC101TC102m" - name: "Fatty Acid Beta Oxidation Trans (C10:1->C10:2), Mitochondrial" - metabolites: !!omap - ctdecdcoa_m: 1 @@ -252836,15 +252836,15 @@ - tdec4ecoa_m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117054 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15337167 + - gene_reaction_rule: "ENSG00000117054" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15337167" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXTC102C101m + - id: "FAOXTC102C101m" - name: "Fatty Acid Beta Oxidation Trans (C10:2->C10:1), Mitochondrial" - metabolites: !!omap - ctdecdcoa_m: -1 @@ -252854,15 +252854,15 @@ - m03035m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000104325 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 7818482 + - gene_reaction_rule: "ENSG00000104325" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 7818482" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXTC122TC101m + - id: "FAOXTC122TC101m" - name: "Fatty Acid Beta Oxidation Trans (C12:2->C10:1), Mitochondrial" - metabolites: !!omap - m01261m: 1 @@ -252875,30 +252875,30 @@ - tdec4ecoa_m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000127884 and ENSG00000138796 and ENSG00000167315 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007. + - gene_reaction_rule: "ENSG00000127884 and ENSG00000138796 and ENSG00000167315" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXTC122m + - id: "FAOXTC122m" - name: "Isomerization Trans (C12:2), Mitochondrial" - metabolites: !!omap - tddedi2coa_m: 1 - tddedicoa_m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167969 - - rxnFrom: Recon3D - - eccodes: - - references: Journal of Molecular Biology, Volume 342, Issue 4, 24 September 2004, Pages 1197-1208 + - gene_reaction_rule: "ENSG00000167969" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Journal of Molecular Biology, Volume 342, Issue 4, 24 September 2004, Pages 1197-1208" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXTC142TC122m + - id: "FAOXTC142TC122m" - name: "Fatty Acid Beta Oxidation Trans (C14:2->C12:2), Mitochondrial" - metabolites: !!omap - m01261m: 1 @@ -252913,15 +252913,15 @@ - ttetddcoa_m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 and ENSG00000084754 and ENSG00000138029 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007. + - gene_reaction_rule: "ENSG00000072778 and ENSG00000084754 and ENSG00000138029" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXTC162TC142m + - id: "FAOXTC162TC142m" - name: "Fatty Acid Beta Oxidation Trans (C16:2->C14:2), Mitochondrial" - metabolites: !!omap - m01261m: 1 @@ -252936,15 +252936,15 @@ - ttetddcoa_m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 and ENSG00000084754 and ENSG00000138029 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007. + - gene_reaction_rule: "ENSG00000072778 and ENSG00000084754 and ENSG00000138029" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FAOXTC182TC162m + - id: "FAOXTC182TC162m" - name: "Fatty Acid Beta Oxidation Trans (C18:2->C16:2), Mitochondrial" - metabolites: !!omap - m00106m: -1 @@ -252959,15 +252959,15 @@ - thexddcoa_m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 and ENSG00000084754 and ENSG00000138029 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007. + - gene_reaction_rule: "ENSG00000072778 and ENSG00000084754 and ENSG00000138029" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20195903, PMID:20490924, international journal of molecular medicine 19: 81-87, 2007." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: FOAXC122C101x + - id: "FOAXC122C101x" - name: "Fatty Acid Beta Oxidation (C12:2->C10:1), Peroxisomal" - metabolites: !!omap - 2ddecdicoa_p: -1 @@ -252980,315 +252980,315 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 and ENSG00000113790 and ENSG00000133835 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20558530 + - gene_reaction_rule: "ENSG00000060971 and ENSG00000113790 and ENSG00000133835" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20558530" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: GLUTCOAACBP + - id: "GLUTCOAACBP" - name: "Transport of Glutaryl Coenzyme A from Mitochondria into Cytosol" - metabolites: !!omap - m01977c: 1 - m01977m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000155368 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 20511713, PMID: 11859412, PMID: 16908521, PMID: 8001684 + - gene_reaction_rule: "ENSG00000155368" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 20511713, PMID: 11859412, PMID: 16908521, PMID: 8001684" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: HDCACBP + - id: "HDCACBP" - name: "Transport of (S)-3-Hydroxydecanoyl Coenzyme A from Mitochondria into the Cytosol" - metabolites: !!omap - m00181c: 1 - m00181m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000155368 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 20511713, PMID: 11859412, PMID: 16908521, PMID: 8001684 + - gene_reaction_rule: "ENSG00000155368" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 20511713, PMID: 11859412, PMID: 16908521, PMID: 8001684" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: HDDACBP + - id: "HDDACBP" - name: "Transport of (S)-3-Hydroxydodecanoyl Coenzyme A from Mitochondria into the Cytosol" - metabolites: !!omap - m00174c: 1 - m00174m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000155368 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 20511713, PMID: 11859412, PMID: 16908521, PMID: 8001684 + - gene_reaction_rule: "ENSG00000155368" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 20511713, PMID: 11859412, PMID: 16908521, PMID: 8001684" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: HDECAACBP + - id: "HDECAACBP" - name: "Transport of 3-Hydroxyhexadecanoylcoa from Mitochondria into the Cytosol" - metabolites: !!omap - 3hexdcoa_c: 1 - 3hexdcoa_m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000155368 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 20511713, PMID: 11859412, PMID: 16908521, PMID: 8001684 + - gene_reaction_rule: "ENSG00000155368" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 20511713, PMID: 11859412, PMID: 16908521, PMID: 8001684" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: HDECEACBP + - id: "HDECEACBP" - name: "Transport of 3-Hydroxyhexadecenoylcoa from Mitochondria into the Cytosol" - metabolites: !!omap - 3hdeccoa_c: 1 - 3hdeccoa_m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000155368 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 20511713, PMID: 11859412, PMID: 16908521, PMID: 8001684 + - gene_reaction_rule: "ENSG00000155368" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 20511713, PMID: 11859412, PMID: 16908521, PMID: 8001684" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: HEDCECRNe + - id: "HEDCECRNe" - name: "Transport of 3-Hydroxyhexadecenoyl Carnitine into Extra Cellular Space" - metabolites: !!omap - 3hdececrn_c: -1 - 3hdececrn_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Jones LL, McDonald DA, Borum PR. (2010). Progress in Lipid Research 49: 61-75 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Jones LL, McDonald DA, Borum PR. (2010). Progress in Lipid Research 49: 61-75" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: HEXDCRNe + - id: "HEXDCRNe" - name: "Transport of 3-Hydroxyhexadecanoyl Carnitine into Extra Cellular Space" - metabolites: !!omap - 3hexdcrn_c: -1 - 3hexdcrn_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Jones LL, McDonald DA, Borum PR. (2010). Progress in Lipid Research 49: 61-75 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Jones LL, McDonald DA, Borum PR. (2010). Progress in Lipid Research 49: 61-75" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: HEXDIACtr + - id: "HEXDIACtr" - name: "Transport of Hexadecanedioc Acid by Diffusion" - metabolites: !!omap - hexdiac_c: -1 - hexdiac_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10331655, PMID: 11478366 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10331655, PMID: 11478366" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: HEXDICOAACBP + - id: "HEXDICOAACBP" - name: "Transport of Hexadecanedioyl Coa" - metabolites: !!omap - hexdicoa_c: 1 - hexdicoa_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000155368 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 20511713, PMID: 11859412, PMID: 16908521, PMID: 8001684 + - gene_reaction_rule: "ENSG00000155368" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 20511713, PMID: 11859412, PMID: 16908521, PMID: 8001684" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: HEXDICOAACBPx + - id: "HEXDICOAACBPx" - name: "Transport of Hexadecanedioyl Coa" - metabolites: !!omap - hexdicoa_p: 1 - hexdicoa_r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000155368 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 20511713, PMID: 11859412, PMID: 16908521, PMID: 8001684 + - gene_reaction_rule: "ENSG00000155368" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 20511713, PMID: 11859412, PMID: 16908521, PMID: 8001684" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: HIVCACBP + - id: "HIVCACBP" - name: "Transport of 3-Hydroxyisovalerylcoa from Mitochondria into the Cytosol" - metabolites: !!omap - 3ivcoa_c: 1 - 3ivcoa_m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000155368 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 20511713, PMID: 11859412, PMID: 16908521, PMID: 8001684 + - gene_reaction_rule: "ENSG00000155368" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 20511713, PMID: 11859412, PMID: 16908521, PMID: 8001684" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: HIVCRNe + - id: "HIVCRNe" - name: "Transport of 3-Hydroxy-Isovaleryl Carnitine into Extra Cellular Space" - metabolites: !!omap - 3ivcrn_c: -1 - 3ivcrn_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Jones LL, McDonald DA, Borum PR. (2010). Progress in Lipid Research 49: 61-75 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Jones LL, McDonald DA, Borum PR. (2010). Progress in Lipid Research 49: 61-75" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: HOCDACBP + - id: "HOCDACBP" - name: "Transport of (S)-3-Hydroxyoctadecanoyl Coenzyme A from Mitochondria into the Cytosol" - metabolites: !!omap - 3hodcoa_c: 1 - 3hodcoa_m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000155368 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 20511713, PMID: 11859412, PMID: 16908521, PMID: 8001684 + - gene_reaction_rule: "ENSG00000155368" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 20511713, PMID: 11859412, PMID: 16908521, PMID: 8001684" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: HOCTDACBP + - id: "HOCTDACBP" - name: "Transport of 3-Hydroxyoctadecenoylcoa from Mitochondria into the Cytosol" - metabolites: !!omap - 3octdece1coa_c: 1 - 3octdece1coa_m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000155368 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 20511713, PMID: 11859412, PMID: 16908521, PMID: 8001684 + - gene_reaction_rule: "ENSG00000155368" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 20511713, PMID: 11859412, PMID: 16908521, PMID: 8001684" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: HOCTDEC2CRNe + - id: "HOCTDEC2CRNe" - name: "Transport of 3-Hydroxyoctadecadienoyl Carnitine into Extra Cellular Space" - metabolites: !!omap - 3octdec2crn_c: -1 - 3octdec2crn_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Bodamer OA, Muhl A. (2005). Monatshefte fur Chemie / Chemical Monthly 136: 1293-7, http://www.childrensmn.org/Manuals/Lab/Chemistry/051465.pdf + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Bodamer OA, Muhl A. (2005). Monatshefte fur Chemie / Chemical Monthly 136: 1293-7, http://www.childrensmn.org/Manuals/Lab/Chemistry/051465.pdf" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: HOCTDECCRNe + - id: "HOCTDECCRNe" - name: "Transport of 3-Hydroxyoctadecanoyl Carnitine into Extra Cellular Space" - metabolites: !!omap - 3octdeccrn_c: -1 - 3octdeccrn_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Jones LL, McDonald DA, Borum PR. (2010). Progress in Lipid Research 49: 61-75 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Jones LL, McDonald DA, Borum PR. (2010). Progress in Lipid Research 49: 61-75" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: HTDCACBP + - id: "HTDCACBP" - name: "Transport of (S)-3-Hydroxytetradecanoyl Coenzyme A from Mitochondria into the Cytosol" - metabolites: !!omap - m00178c: 1 - m00178m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000155368 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 20511713, PMID: 11859412, PMID: 16908521, PMID: 8001684 + - gene_reaction_rule: "ENSG00000155368" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 20511713, PMID: 11859412, PMID: 16908521, PMID: 8001684" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: HTDCRNe + - id: "HTDCRNe" - name: "Transport of 3-Hydroxy-Tetradecanoyl Carnitine into Extra Cellular Space" - metabolites: !!omap - 3tdcrn_c: -1 - 3tdcrn_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 20583174 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 20583174" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: IVCOAACBP + - id: "IVCOAACBP" - name: "Transport of Isovaleryl Coenzyme A from Mitochondria into Cytosol" - metabolites: !!omap - m02189c: 1 - m02189m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000155368 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 20511713, PMID: 11859412, PMID: 16908521, PMID: 8001684 + - gene_reaction_rule: "ENSG00000155368" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 20511713, PMID: 11859412, PMID: 16908521, PMID: 8001684" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: IVCRNe + - id: "IVCRNe" - name: "Transport of Isovaleryl Carnitine into the Extra Cellular Space" - metabolites: !!omap - ivcrn_c: -1 - ivcrn_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Jones LL, McDonald DA, Borum PR. (2010). Progress in Lipid Research 49: 61-75 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Jones LL, McDonald DA, Borum PR. (2010). Progress in Lipid Research 49: 61-75" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: LGNCCOAtcx + - id: "LGNCCOAtcx" - name: "Transport of Lignocericyl Coenzyme A from Cytosol to Peroxisome." - metabolites: !!omap - m01285c: 1 @@ -253300,15 +253300,15 @@ - m02971p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101986 and ENSG00000173208 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 17039367,FEBS Volume 492, Issues 1-2, 9 March 2001, Pages 66-72-doi:10.1016/S0014-5793(01)02235-9(PMID: 11248239 ),PMID: 18854420 + - gene_reaction_rule: "ENSG00000101986 and ENSG00000173208" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 17039367,FEBS Volume 492, Issues 1-2, 9 March 2001, Pages 66-72-doi:10.1016/S0014-5793(01)02235-9(PMID: 11248239 ),PMID: 18854420" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: NRVNCCOAtxc + - id: "NRVNCCOAtxc" - name: "Transport of Nervonylcoa into Peroxisomes" - metabolites: !!omap - m00025c: -1 @@ -253320,15 +253320,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101986 and ENSG00000173208 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:18854420 + - gene_reaction_rule: "ENSG00000101986 and ENSG00000173208" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:18854420" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: OCD11COACPT1 + - id: "OCD11COACPT1" - name: "Transport of 11-Octadecenoyl Carnitine into the Mitochondrial Matrix" - metabolites: !!omap - m01597c: 1 @@ -253337,30 +253337,30 @@ - octd11ecoa_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: Recon3D - - eccodes: - - references: Biochemica et Biophysica Acta 1486(2000) 1-17, Eur. J. Biochem. 244, 1-14 (1997) FEBS 1997, Biochemica et Biophysica Acta 1546(2001) 21-43. + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Biochemica et Biophysica Acta 1486(2000) 1-17, Eur. J. Biochem. 244, 1-14 (1997) FEBS 1997, Biochemica et Biophysica Acta 1546(2001) 21-43." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: OCD11CRNCACT + - id: "OCD11CRNCACT" - name: "Transport of 11-Octadecenoyl Carnitine into the Mitochondrial Matrix" - metabolites: !!omap - ocdececrn_c: -1 - ocdececrn_m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: Recon3D - - eccodes: - - references: Biochemica et Biophysica Acta 1486(2000) 1-17, Eur. J. Biochem. 244, 1-14 (1997) FEBS 1997, Biochemica et Biophysica Acta 1546(2001) 21-43. + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Biochemica et Biophysica Acta 1486(2000) 1-17, Eur. J. Biochem. 244, 1-14 (1997) FEBS 1997, Biochemica et Biophysica Acta 1546(2001) 21-43." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: OCD11CRNCPT2 + - id: "OCD11CRNCPT2" - name: "Transport of 11-Octadecenoyl Carnitine into the Mitochondrial Matrix" - metabolites: !!omap - m01597m: -1 @@ -253369,15 +253369,15 @@ - octd11ecoa_m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157184 - - rxnFrom: Recon3D - - eccodes: - - references: Biochemica et Biophysica Acta 1486(2000) 1-17, Eur. J. Biochem. 244, 1-14 (1997) FEBS 1997, Biochemica et Biophysica Acta 1546(2001) 21-43. + - gene_reaction_rule: "ENSG00000157184" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Biochemica et Biophysica Acta 1486(2000) 1-17, Eur. J. Biochem. 244, 1-14 (1997) FEBS 1997, Biochemica et Biophysica Acta 1546(2001) 21-43." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: OCT11EFATP + - id: "OCT11EFATP" - name: "Uptake of Vaccenic Acid" - metabolites: !!omap - m01334c: 1 @@ -253388,45 +253388,45 @@ - octd11ecoa_c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000083807 or ENSG00000113396 or ENSG00000130304 or ENSG00000140284 or ENSG00000143554 or ENSG00000167114 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16868315, PMID: 17901542, journal of lipid research (2006) vol 47 page 665-672, 16357361, PMID: 17495600 + - gene_reaction_rule: "ENSG00000083807 or ENSG00000113396 or ENSG00000130304 or ENSG00000140284 or ENSG00000143554 or ENSG00000167114" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16868315, PMID: 17901542, journal of lipid research (2006) vol 47 page 665-672, 16357361, PMID: 17495600" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: OCTDEC2ACBP + - id: "OCTDEC2ACBP" - name: "Transport of 3-Hydroxyoctadecadienoyl Coenzyme A from Mitochondria into Cytosol" - metabolites: !!omap - 3ocddcoa_c: 1 - 3ocddcoa_m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000155368 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 20511713, PMID: 11859412, PMID: 16908521, PMID: 8001684 + - gene_reaction_rule: "ENSG00000155368" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 20511713, PMID: 11859412, PMID: 16908521, PMID: 8001684" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: OCTDECCACT + - id: "OCTDECCACT" - name: "Transport of Octadecenoyl Coenzyme A into Mitochondrial Matrix" - metabolites: !!omap - octdececrn_c: -1 - octdececrn_m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: Recon3D - - eccodes: - - references: Biochemica et Biophysica Acta 1486(2000) 1-17, Eur. J. Biochem. 244, 1-14 (1997) FEBS 1997, Biochemica et Biophysica Acta 1546(2001) 21-43. + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Biochemica et Biophysica Acta 1486(2000) 1-17, Eur. J. Biochem. 244, 1-14 (1997) FEBS 1997, Biochemica et Biophysica Acta 1546(2001) 21-43." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: OCTDECCPT1 + - id: "OCTDECCPT1" - name: "Transport of Octadecenoyl Coenzyme A into Mitochondrial Matrix" - metabolites: !!omap - m01597c: 1 @@ -253435,15 +253435,15 @@ - octdececrn_c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110090 or ENSG00000169169 or ENSG00000205560 - - rxnFrom: Recon3D - - eccodes: - - references: Biochemica et Biophysica Acta 1486(2000) 1-17, Eur. J. Biochem. 244, 1-14 (1997) FEBS 1997, Biochemica et Biophysica Acta 1546(2001) 21-43. + - gene_reaction_rule: "ENSG00000110090 or ENSG00000169169 or ENSG00000205560" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Biochemica et Biophysica Acta 1486(2000) 1-17, Eur. J. Biochem. 244, 1-14 (1997) FEBS 1997, Biochemica et Biophysica Acta 1546(2001) 21-43." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: OCTDECCPT2 + - id: "OCTDECCPT2" - name: "Transport of Octadecenoyl Coenzyme A into Mitochondrial Matrix" - metabolites: !!omap - m01597m: -1 @@ -253452,75 +253452,75 @@ - octdececrn_m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000157184 - - rxnFrom: Recon3D - - eccodes: - - references: Biochemica et Biophysica Acta 1486(2000) 1-17, Eur. J. Biochem. 244, 1-14 (1997) FEBS 1997, Biochemica et Biophysica Acta 1546(2001) 21-43. + - gene_reaction_rule: "ENSG00000157184" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Biochemica et Biophysica Acta 1486(2000) 1-17, Eur. J. Biochem. 244, 1-14 (1997) FEBS 1997, Biochemica et Biophysica Acta 1546(2001) 21-43." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: OCTDECE1CRNe + - id: "OCTDECE1CRNe" - name: "Transport of 3-Hydroxy-Octadecenoyl Carnitine into Extra Cellular Space" - metabolites: !!omap - 3octdece1crn_c: -1 - 3octdece1crn_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Jones LL, McDonald DA, Borum PR. (2010). Progress in Lipid Research 49: 61-75 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Jones LL, McDonald DA, Borum PR. (2010). Progress in Lipid Research 49: 61-75" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: OMHDEACIDTD + - id: "OMHDEACIDTD" - name: "Transport of W-Hydroxydecanoic Acid by Diffusion" - metabolites: !!omap - omhdecacid_c: 1 - omhdecacid_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10331655, PMID: 11478366 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10331655, PMID: 11478366" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: OMHDOCOSACTD + - id: "OMHDOCOSACTD" - name: "Transport of W-Hydroxydocosanoic Acid by Diffusion" - metabolites: !!omap - omhdocosac_c: 1 - omhdocosac_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10331655, PMID: 11478366 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10331655, PMID: 11478366" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: OMHPALTD + - id: "OMHPALTD" - name: "Transport of W-Hydroxypalmitic Acid by Diffusion" - metabolites: !!omap - m00403c: 1 - m00403r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10331655, PMID: 11478366 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10331655, PMID: 11478366" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: PRISTCOAtcx + - id: "PRISTCOAtcx" - name: "Transport of Pristanoylcoa from Cytosol to Peroxisomes." - metabolites: !!omap - m01285c: 1 @@ -253532,15 +253532,15 @@ - pristcoa_p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117528 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11356164 + - gene_reaction_rule: "ENSG00000117528" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11356164" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SBCOAACOTx + - id: "SBCOAACOTx" - name: "Thioesterification of Suberyl Coenzyme A for Release into Cytosol" - metabolites: !!omap - m01597p: 1 @@ -253550,15 +253550,15 @@ - subeac_p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101473 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15007068, PMID: 18538142, Westin MAK, Hunt MC, Alexson SEH. (2005). Journal of Biological Chemistry 280: 38125-32 + - gene_reaction_rule: "ENSG00000101473" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15007068, PMID: 18538142, Westin MAK, Hunt MC, Alexson SEH. (2005). Journal of Biological Chemistry 280: 38125-32" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: SCP21cx + - id: "SCP21cx" - name: "Transport of Phytanoylcoa from Cytosol to Peroxisomes." - metabolites: !!omap - m01285c: 1 @@ -253570,15 +253570,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117528 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11356164 + - gene_reaction_rule: "ENSG00000117528" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11356164" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SEBACACT + - id: "SEBACACT" - name: "Activation of Sebacic Acidd" - metabolites: !!omap - m01334c: 1 @@ -253589,30 +253589,30 @@ - sebcoa_c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Hunt MC, Alexson SEH. (2008). Progress in Lipid Research 47: 405-21 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Hunt MC, Alexson SEH. (2008). Progress in Lipid Research 47: 405-21" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: SEBACIDtx + - id: "SEBACIDtx" - name: "Transport of Sebacic Acid into Cytosol (Diffusion)" - metabolites: !!omap - sebacid_c: 1 - sebacid_p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Glatz JFC, Luiken JJFP, Bonen A. (2010). Physiological Reviews 90: 367-417, Kamp F, Hamilton JA. (2006). Prostaglandins, Leukotrienes and Essential Fatty Acids 75: 149-59, PMCID: PMC2785172, Evtodienko VY, Bondarenko DI, Antonenko YN. (1999). Biochimica et Biophysica Acta (BBA) - Biomembranes 1420: 95-103 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Glatz JFC, Luiken JJFP, Bonen A. (2010). Physiological Reviews 90: 367-417, Kamp F, Hamilton JA. (2006). Prostaglandins, Leukotrienes and Essential Fatty Acids 75: 149-59, PMCID: PMC2785172, Evtodienko VY, Bondarenko DI, Antonenko YN. (1999). Biochimica et Biophysica Acta (BBA) - Biomembranes 1420: 95-103" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: SEBCOACROT + - id: "SEBCOACROT" - name: "Production of Sebacoyl Carnitine" - metabolites: !!omap - c10dc_p: 1 @@ -253621,15 +253621,15 @@ - sebcoa_p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005469 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15060085, Westin M, Hunt M, Alexson S. (2008). Cellular and Molecular Life Sciences 65: 982-90, PMID: 20560540 + - gene_reaction_rule: "ENSG00000005469" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15060085, Westin M, Hunt M, Alexson S. (2008). Cellular and Molecular Life Sciences 65: 982-90, PMID: 20560540" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: SEBCOAPET + - id: "SEBCOAPET" - name: "Thioesterification of Sebacoylcoa for Release into Cytosol" - metabolites: !!omap - m01597p: 1 @@ -253639,15 +253639,15 @@ - sebcoa_p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101473 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15007068, PMID: 18538142, Westin MAK, Hunt MC, Alexson SEH. (2005). Journal of Biological Chemistry 280: 38125-32 + - gene_reaction_rule: "ENSG00000101473" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15007068, PMID: 18538142, Westin MAK, Hunt MC, Alexson SEH. (2005). Journal of Biological Chemistry 280: 38125-32" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: STCOATxc + - id: "STCOATxc" - name: "Transport of Stearoyl Coenzyme A from Cytosol to Peroxisomes" - metabolites: !!omap - m01285c: 1 @@ -253659,15 +253659,15 @@ - m02941p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101986 - - rxnFrom: Recon3D - - eccodes: - - references: Biochemica et Biophysica Acta 1486(2000) 1-17, Eur. J. Biochem. 244, 1-14 (1997) FEBS 1997, Biochemica et Biophysica Acta 1546(2001) 21-43. + - gene_reaction_rule: "ENSG00000101986" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Biochemica et Biophysica Acta 1486(2000) 1-17, Eur. J. Biochem. 244, 1-14 (1997) FEBS 1997, Biochemica et Biophysica Acta 1546(2001) 21-43." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: STRDNCCOAtxc + - id: "STRDNCCOAtxc" - name: "Transport of Stearidonylcoa into Peroxisomes." - metabolites: !!omap - m00108c: -1 @@ -253679,45 +253679,45 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101986 - - rxnFrom: Recon3D - - eccodes: - - references: european journal of physiology(2007) 453:719-734 + - gene_reaction_rule: "ENSG00000101986" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "european journal of physiology(2007) 453:719-734" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SUBEACtx + - id: "SUBEACtx" - name: "Transport of Suberic Acid into Cytosol (Diffusion)" - metabolites: !!omap - subeac_c: 1 - subeac_p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Glatz JFC, Luiken JJFP, Bonen A. (2010). Physiological Reviews 90: 367-417, Kamp F, Hamilton JA. (2006). Prostaglandins, Leukotrienes and Essential Fatty Acids 75: 149-59, PMCID: PMC2785172, Evtodienko VY, Bondarenko DI, Antonenko YN. (1999). Biochimica et Biophysica Acta (BBA) - Biomembranes 1420: 95-103 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Glatz JFC, Luiken JJFP, Bonen A. (2010). Physiological Reviews 90: 367-417, Kamp F, Hamilton JA. (2006). Prostaglandins, Leukotrienes and Essential Fatty Acids 75: 149-59, PMCID: PMC2785172, Evtodienko VY, Bondarenko DI, Antonenko YN. (1999). Biochimica et Biophysica Acta (BBA) - Biomembranes 1420: 95-103" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: SUBERCACT + - id: "SUBERCACT" - name: "Transport of Suberyl Carnitine into Cytosol" - metabolites: !!omap - c8dc_c: 1 - c8dc_p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000178537 - - rxnFrom: Recon3D - - eccodes: - - references: Westin M, Hunt M, Alexson S. (2008). Cellular and Molecular Life Sciences 65: 982-90. doi:10.1006/mgme.2000.3055,doi:10.1006/bbrc.1999.1340,biochimica et biophysica acta 1546 (2001) 21-43 + - gene_reaction_rule: "ENSG00000178537" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Westin M, Hunt M, Alexson S. (2008). Cellular and Molecular Life Sciences 65: 982-90. doi:10.1006/mgme.2000.3055,doi:10.1006/bbrc.1999.1340,biochimica et biophysica acta 1546 (2001) 21-43" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: SUBERCROT + - id: "SUBERCROT" - name: "Production of Suberyl Carnitine" - metabolites: !!omap - c8dc_p: 1 @@ -253726,15 +253726,15 @@ - sbcoa_p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005469 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15060085, Westin M, Hunt M, Alexson S. (2008). Cellular and Molecular Life Sciences 65: 982-90, PMID: 20560540 + - gene_reaction_rule: "ENSG00000005469" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15060085, Westin M, Hunt M, Alexson S. (2008). Cellular and Molecular Life Sciences 65: 982-90, PMID: 20560540" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: SUBERICACT + - id: "SUBERICACT" - name: "Activation of Suberic Acid for Formation of Suberyl Carnitine" - metabolites: !!omap - m01334c: 1 @@ -253745,15 +253745,15 @@ - subeac_c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Hunt MC, Alexson SEH. (2008). Progress in Lipid Research 47: 405-21 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Hunt MC, Alexson SEH. (2008). Progress in Lipid Research 47: 405-21" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: SUCCACT + - id: "SUCCACT" - name: "Activation of Succinate" - metabolites: !!omap - m01334c: 1 @@ -253764,15 +253764,15 @@ - m02944c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Hunt MC, Alexson SEH. (2008). Progress in Lipid Research 47: 405-21 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Hunt MC, Alexson SEH. (2008). Progress in Lipid Research 47: 405-21" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: SUCCCROT + - id: "SUCCCROT" - name: "Production of Succinyl Carnitine" - metabolites: !!omap - c4dc_p: 1 @@ -253781,15 +253781,15 @@ - m02944p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005469 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15060085, Westin M, Hunt M, Alexson S. (2008). Cellular and Molecular Life Sciences 65: 982-90, PMID: 20560540 + - gene_reaction_rule: "ENSG00000005469" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15060085, Westin M, Hunt M, Alexson S. (2008). Cellular and Molecular Life Sciences 65: 982-90, PMID: 20560540" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: SUCCOAPET + - id: "SUCCOAPET" - name: "Thioesterification of Succinyl Coenzyme A for Release into Cytosol" - metabolites: !!omap - m01597p: 1 @@ -253799,75 +253799,75 @@ - m02944p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101473 or ENSG00000177465 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15007068, PMID: 18538142, Westin MAK, Hunt MC, Alexson SEH. (2005). Journal of Biological Chemistry 280: 38125-32 + - gene_reaction_rule: "ENSG00000101473 or ENSG00000177465" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15007068, PMID: 18538142, Westin MAK, Hunt MC, Alexson SEH. (2005). Journal of Biological Chemistry 280: 38125-32" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: TDCRNe + - id: "TDCRNe" - name: "Transport of Myristoyl Carnitine into Extra Cellular Space" - metabolites: !!omap - m02974c: -1 - m02974s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Jones LL, McDonald DA, Borum PR. (2010). Progress in Lipid Research 49: 61-75 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Jones LL, McDonald DA, Borum PR. (2010). Progress in Lipid Research 49: 61-75" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: TETDEC2CRNe + - id: "TETDEC2CRNe" - name: "Transport of Tetradecadienoyl Carnitine into Extra Cellular Space" - metabolites: !!omap - tetdec2crn_c: -1 - tetdec2crn_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Jones LL, McDonald DA, Borum PR. (2010). Progress in Lipid Research 49: 61-75 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Jones LL, McDonald DA, Borum PR. (2010). Progress in Lipid Research 49: 61-75" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: TETDECE1CRNe + - id: "TETDECE1CRNe" - name: "Transport of Tetradecenoyl Carnitine into Extra Cellular Space" - metabolites: !!omap - tetdece1crn_c: -1 - tetdece1crn_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Jones LL, McDonald DA, Borum PR. (2010). Progress in Lipid Research 49: 61-75 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Jones LL, McDonald DA, Borum PR. (2010). Progress in Lipid Research 49: 61-75" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: TIGCRNe + - id: "TIGCRNe" - name: "Transport of Tiglyl Carnitine into the Extra Cellular Fluid" - metabolites: !!omap - c51crn_c: -1 - c51crn_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 20157782 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 20157782" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: 34DHPHELAT1tc + - id: "34DHPHELAT1tc" - name: "Transport of 3, 4-Dihydroxy-L-Phenylalanine by Lat1 in Association with 4F2Hc, Across the Apical Surface of the Membranes" - metabolites: !!omap - m02354c: 1 @@ -253876,15 +253876,15 @@ - m02360s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 and ENSG00000168003 - - rxnFrom: Recon3D - - eccodes: - - references: Hans Gerhard Vogel, Franz J. Hock, Jochen Maas, Dieter Mayer (2006), Drug discovery and evaluation: Safety and pharmacokinetic assays, Springer publication, Chapter II D, page 456, table 3, PMID: 19035290, PMID: 12634921, European Journal of Pharmacology 441 (2002) 127-132. Am J Physiol Cell Physiol 281:C1077-C1093, 2001. Amino Acids (2005) 29: 229-233 DOI 10.1007/s00726-005-0221-x. PMID: 11901210 + - gene_reaction_rule: "ENSG00000103257 and ENSG00000168003" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Hans Gerhard Vogel, Franz J. Hock, Jochen Maas, Dieter Mayer (2006), Drug discovery and evaluation: Safety and pharmacokinetic assays, Springer publication, Chapter II D, page 456, table 3, PMID: 19035290, PMID: 12634921, European Journal of Pharmacology 441 (2002) 127-132. Am J Physiol Cell Physiol 281:C1077-C1093, 2001. Amino Acids (2005) 29: 229-233 DOI 10.1007/s00726-005-0221-x. PMID: 11901210" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 4OHPROIMINOtc + - id: "4OHPROIMINOtc" - name: "Transport of L-Oh-Proline by the Apical Imino Amino Acid Transporters in Kidney And Intestine" - metabolites: !!omap - m01442c: 1 @@ -253895,15 +253895,15 @@ - m03037s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147003 and ENSG00000163817 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 19657969, PMID: 15632147, PMID: 18195088, PMID: 18400692, PMID:19184091 + - gene_reaction_rule: "ENSG00000147003 and ENSG00000163817" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 19657969, PMID: 15632147, PMID: 18195088, PMID: 18400692, PMID:19184091" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ALAALACNc + - id: "ALAALACNc" - name: "Hydrolysis of Alanylalanine" - metabolites: !!omap - alaala_c: -1 @@ -253911,15 +253911,15 @@ - m02040c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000133313 or ENSG00000150656 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 6993048, PMCID: PMC1412501, PMID: 4919261, PMID: 20178671, PMID: 12473676 + - gene_reaction_rule: "ENSG00000133313 or ENSG00000150656" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 6993048, PMCID: PMC1412501, PMID: 4919261, PMID: 20178671, PMID: 12473676" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ALAALAPEPT1tc + - id: "ALAALAPEPT1tc" - name: "Transport of Alanylalanine by the Apical Pept1 Amino Acid Transporters" - metabolites: !!omap - alaala_c: 1 @@ -253928,15 +253928,15 @@ - m02039s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 7858848, PMID: 14965252, PMID: 14977407, PMID: 10330047 + - gene_reaction_rule: "ENSG00000088386" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 7858848, PMID: 14965252, PMID: 14977407, PMID: 10330047" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ALAyLATthc + - id: "ALAyLATthc" - name: "Transport of Alanine by Y+Lat1 Or Y+Lat2 with Symporter of H" - metabolites: !!omap - m01307c: 1 @@ -253947,15 +253947,15 @@ - m02039s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000103064 and ENSG00000168003) or (ENSG00000155465 and ENSG00000168003) - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11546643, PMID:18195088 + - gene_reaction_rule: "(ENSG00000103064 and ENSG00000168003) or (ENSG00000155465 and ENSG00000168003)" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11546643, PMID:18195088" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ASCBSVCTtc + - id: "ASCBSVCTtc" - name: "Transport of L-Ascorbate by Svct1 Or Svct2 Transporter" - metabolites: !!omap - m01285c: 1 @@ -253969,15 +253969,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000089057 or ENSG00000170482 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 18094143, PMID: 11396616, G.F.M. Ball (2006) Vitamins their role in the human body, Blackwell publishing, chapter 19, page 395-398, PMID: 17222174 + - gene_reaction_rule: "ENSG00000089057 or ENSG00000170482" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 18094143, PMID: 11396616, G.F.M. Ball (2006) Vitamins their role in the human body, Blackwell publishing, chapter 19, page 395-398, PMID: 17222174" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ASNATB0tc + - id: "ASNATB0tc" - name: "Transport of L-Asparagine by Atb0 Transporter" - metabolites: !!omap - m01369c: 1 @@ -253988,15 +253988,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000268104 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:18195088 + - gene_reaction_rule: "ENSG00000268104" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:18195088" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: BALAPAT1tc + - id: "BALAPAT1tc" - name: "Transport of Beta Alanine by Pat1 in Renal And Intestinal Cells" - metabolites: !!omap - m01383c: 1 @@ -254005,15 +254005,15 @@ - m02039s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123643 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 17123464, PMID: 18400692, PMCID: PMC34647, PMID: 15345686, PMID: 18195088 + - gene_reaction_rule: "ENSG00000123643" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 17123464, PMID: 18400692, PMCID: PMC34647, PMID: 15345686, PMID: 18195088" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: BGLUGCHe + - id: "BGLUGCHe" - name: "Binding of Betaglucans with Glycocholate" - metabolites: !!omap - bglc_s: -1 @@ -254021,15 +254021,15 @@ - m01988s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Park SY, Bae IY, Lee S, Lee HG. (2009). Journal of Agricultural and Food Chemistry 57: 439-43, PMCID: PMC2663451, PMID: 17251929 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Park SY, Bae IY, Lee S, Lee HG. (2009). Journal of Agricultural and Food Chemistry 57: 439-43, PMCID: PMC2663451, PMID: 17251929" - subsystem: - - Dietary fiber binding + - "Dietary fiber binding" - confidence_score: 0 - !!omap - - id: BGLUTCHLe + - id: "BGLUTCHLe" - name: "Binding of Betaglucans with Taurocholate" - metabolites: !!omap - bglc_s: -1 @@ -254037,15 +254037,15 @@ - m02963s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Park SY, Bae IY, Lee S, Lee HG. (2009). Journal of Agricultural and Food Chemistry 57: 439-43, PMCID: PMC2663451, PMID: 17251929 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Park SY, Bae IY, Lee S, Lee HG. (2009). Journal of Agricultural and Food Chemistry 57: 439-43, PMCID: PMC2663451, PMID: 17251929" - subsystem: - - Dietary fiber binding + - "Dietary fiber binding" - confidence_score: 0 - !!omap - - id: BGLUTDECHOe + - id: "BGLUTDECHOe" - name: "Binding of Betaglucans with Taurodeoxycholate" - metabolites: !!omap - bglc_s: -1 @@ -254053,30 +254053,30 @@ - m02964s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Park SY, Bae IY, Lee S, Lee HG. (2009). Journal of Agricultural and Food Chemistry 57: 439-43, PMCID: PMC2663451, PMID: 17251929 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Park SY, Bae IY, Lee S, Lee HG. (2009). Journal of Agricultural and Food Chemistry 57: 439-43, PMCID: PMC2663451, PMID: 17251929" - subsystem: - - Dietary fiber binding + - "Dietary fiber binding" - confidence_score: 0 - !!omap - - id: BTNTe + - id: "BTNTe" - name: "Release of Biotin Across the Basolatral Membrane" - metabolites: !!omap - m01401c: -1 - m01401s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 1953660, PMID: 21749321, G.F.M. Ball (2006) Vitamins their role in the human body, Blackwell publishing, chapter 16, page 339-340. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 1953660, PMID: 21749321, G.F.M. Ball (2006) Vitamins their role in the human body, Blackwell publishing, chapter 16, page 339-340." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CARPEPT1tc + - id: "CARPEPT1tc" - name: "Transport of L-Carnosine by the Apical Pept1 Amino Acid Transporters" - metabolites: !!omap - m01423c: 1 @@ -254085,60 +254085,60 @@ - m02039s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 7858848, PMID: 14965252, PMID: 14977407, PMID: 10330047 + - gene_reaction_rule: "ENSG00000088386" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 7858848, PMID: 14965252, PMID: 14977407, PMID: 10330047" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CARhPTtc + - id: "CARhPTtc" - name: "Transport of L-Carnosine by Hpt3 Or Hpt4 Peptide Transporter" - metabolites: !!omap - m01423c: 1 - m01423l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110446 or ENSG00000139370 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16289537, PMID: 12905028, PMID: 17681807 + - gene_reaction_rule: "ENSG00000110446 or ENSG00000139370" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16289537, PMID: 12905028, PMID: 17681807" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CBLTDe + - id: "CBLTDe" - name: "Release of B12 by SIMPle Diffusion" - metabolites: !!omap - m01600c: -1 - m01600s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Sareen S. Gropper, Jack L. Smith, James L. Groff (2009) Advanced nutrition and human metabolism, Wadsworth cengage learning, 5th edition, page 359-360. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Sareen S. Gropper, Jack L. Smith, James L. Groff (2009) Advanced nutrition and human metabolism, Wadsworth cengage learning, 5th edition, page 359-360." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CBLtle + - id: "CBLtle" - name: "Transport of Adenosylcobalamin into the Intestine" - metabolites: !!omap - m01600c: 1 - m01600s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107611 and ENSG00000134812 and ENSG00000166126 - - rxnFrom: Recon3D - - eccodes: - - references: PMCID: PMC2809139, Janos Zempleni, Robert B. Rucker, Donald B. McCormick, John W. Suttie (2007) Handbook of vitamins, CRC press, chapter 13, page 418-422 + - gene_reaction_rule: "ENSG00000107611 and ENSG00000134812 and ENSG00000166126" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMCID: PMC2809139, Janos Zempleni, Robert B. Rucker, Donald B. McCormick, John W. Suttie (2007) Handbook of vitamins, CRC press, chapter 13, page 418-422" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CYSSNAT5tc + - id: "CYSSNAT5tc" - name: "Transport of L-Cysteine with Symport of Sodium And Antiport of Proton by Snat5 Transporter" - metabolites: !!omap - m01628c: 1 @@ -254149,15 +254149,15 @@ - m02519s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000017483 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 12845534, PMCID: PMC1665133, PMID:18195088 + - gene_reaction_rule: "ENSG00000017483" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 12845534, PMCID: PMC1665133, PMID:18195088" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CYSTALArBATtc + - id: "CYSTALArBATtc" - name: "Transport of L-Cystine in Exchange of L-Alanine by B0, +At Transporter" - metabolites: !!omap - m01307c: -1 @@ -254166,15 +254166,15 @@ - m01629s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000138079 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10958334, PMID: 19184091, PMID: 18195088, PMID: 11546643 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000138079" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10958334, PMID: 19184091, PMID: 18195088, PMID: 11546643" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CYSTLEUrBATtc + - id: "CYSTLEUrBATtc" - name: "Transport of L-Cystine in Exchange of L-Leucine by B0, +At Transporter" - metabolites: !!omap - m01629c: 1 @@ -254183,15 +254183,15 @@ - m02360s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000021488 and ENSG00000138079 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10958334, PMID: 19184091, PMID: 18195088, PMID: 11546643 + - gene_reaction_rule: "ENSG00000021488 and ENSG00000138079" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10958334, PMID: 19184091, PMID: 18195088, PMID: 11546643" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: FOLTle + - id: "FOLTle" - name: "Transport of Folate" - metabolites: !!omap - m01830c: 1 @@ -254200,15 +254200,15 @@ - m02039s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000076351 - - rxnFrom: Recon3D - - eccodes: - - references: G.F.M. Ball (2006) Vitamins their role in the human body, Blackwell publishing, chapter 17, page 353, PMID: 19762432. + - gene_reaction_rule: "ENSG00000076351" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "G.F.M. Ball (2006) Vitamins their role in the human body, Blackwell publishing, chapter 17, page 353, PMID: 19762432." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GALSGLT1le + - id: "GALSGLT1le" - name: "Transport of D-Galactose from Extracellular Space to Cytosol of Mucosal Cells in Small Intestine" - metabolites: !!omap - m01285c: 1 @@ -254222,15 +254222,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100170 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 20522896, PMID: 14642859, Sareen S. Gropper, Jack L. Smith, James L. Groff (2009) Advanced nutrition and human metabolism, Wadsworth cengage learning, 5th edition, page 71-72 + - gene_reaction_rule: "ENSG00000100170" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 20522896, PMID: 14642859, Sareen S. Gropper, Jack L. Smith, James L. Groff (2009) Advanced nutrition and human metabolism, Wadsworth cengage learning, 5th edition, page 71-72" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLCSGLT1le + - id: "GLCSGLT1le" - name: "Transport of D-Glucose from Extracellular Space to Cytosol of Mucosal Cells in Small Intestine" - metabolites: !!omap - m01285c: 1 @@ -254244,15 +254244,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100170 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 20522896, PMID: 14642859, Sareen S. Gropper, Jack L. Smith, James L. Groff (2009) Advanced nutrition and human metabolism, Wadsworth cengage learning, 5th edition, page 71-72 + - gene_reaction_rule: "ENSG00000100170" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 20522896, PMID: 14642859, Sareen S. Gropper, Jack L. Smith, James L. Groff (2009) Advanced nutrition and human metabolism, Wadsworth cengage learning, 5th edition, page 71-72" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLNATB0tc + - id: "GLNATB0tc" - name: "Transport of L-Glutamine by Atb0 Transporter" - metabolites: !!omap - m01442c: 1 @@ -254263,15 +254263,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000268104 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:18195088 + - gene_reaction_rule: "ENSG00000268104" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:18195088" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLNyLATthc + - id: "GLNyLATthc" - name: "Transport of Glutamine by Y+Lat1 Or Y+Lat2 with Symporter of H" - metabolites: !!omap - m01365c: -1 @@ -254282,15 +254282,15 @@ - m02039s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000103064 and ENSG00000168003) or (ENSG00000155465 and ENSG00000168003) - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11546643, PMID:18195088 + - gene_reaction_rule: "(ENSG00000103064 and ENSG00000168003) or (ENSG00000155465 and ENSG00000168003)" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11546643, PMID:18195088" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLYGLYCNc + - id: "GLYGLYCNc" - name: "Hydrolysis of Glycylycine for Uptake" - metabolites: !!omap - glygly_c: -1 @@ -254298,30 +254298,30 @@ - m02040c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000133313 or ENSG00000150656 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 6993048, PMCID: PMC1412501, PMID: 4919261, PMID: 20178671, PMID: 12473676 + - gene_reaction_rule: "ENSG00000133313 or ENSG00000150656" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 6993048, PMCID: PMC1412501, PMID: 4919261, PMID: 20178671, PMID: 12473676" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLYGLYPEPT1tc + - id: "GLYGLYPEPT1tc" - name: "Transport of Glycyl-Glycine by the Apical Pept1 Amino Acid Transporters" - metabolites: !!omap - glygly_c: 1 - glygly_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 7858848, PMID: 14965252, PMID: 14977407, PMID: 10330047 + - gene_reaction_rule: "ENSG00000088386" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 7858848, PMID: 14965252, PMID: 14977407, PMID: 10330047" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLYPHEPEPT1tc + - id: "GLYPHEPEPT1tc" - name: "Transport of Glycylphenylalanine by the Apical Pept1 Amino Acid Transporters" - metabolites: !!omap - glyphe_c: 1 @@ -254330,15 +254330,15 @@ - m02039s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 7858848, PMID: 14965252, PMID: 14977407, PMID: 10330047 + - gene_reaction_rule: "ENSG00000088386" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 7858848, PMID: 14965252, PMID: 14977407, PMID: 10330047" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLYPROPEPT1tc + - id: "GLYPROPEPT1tc" - name: "Transport of Glycylproline by the Apical Pept1 Amino Acid Transporters" - metabolites: !!omap - glypro_c: 1 @@ -254347,15 +254347,15 @@ - m02039s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 7858848, PMID: 14965252, PMID: 14977407, PMID: 10330047 + - gene_reaction_rule: "ENSG00000088386" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 7858848, PMID: 14965252, PMID: 14977407, PMID: 10330047" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLYSARCNc + - id: "GLYSARCNc" - name: "Hydrolysis of Glycylsarcosine for Uptake" - metabolites: !!omap - glysar_c: -1 @@ -254364,15 +254364,15 @@ - m02880c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000166340 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:6746633, PMID: 4778946, PMID: 7171621, PMID: 3293467 + - gene_reaction_rule: "ENSG00000166340" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:6746633, PMID: 4778946, PMID: 7171621, PMID: 3293467" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLYSARPEPT1tc + - id: "GLYSARPEPT1tc" - name: "Transport of Glycylsarcosine by the Apical Pept1 Amino Acid Transporters" - metabolites: !!omap - glysar_c: 1 @@ -254381,15 +254381,15 @@ - m02039s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 7858848, PMID: 14965252, PMID: 14977407, PMID: 10330047 + - gene_reaction_rule: "ENSG00000088386" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 7858848, PMID: 14965252, PMID: 14977407, PMID: 10330047" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GUMDCHAe + - id: "GUMDCHAe" - name: "Binding of Guar Gums with Deoxyxholic Acid" - metabolites: !!omap - gum_s: -1 @@ -254397,15 +254397,15 @@ - m00745s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 21611850, PMID: 7825524, McFadzean B, Dicks P, Groenmeyer G, Harris P, OConnor C. (2011). Minerals Engineering 24: 463-9, T.Pandolf and F.M. Clydesdale (1992) Journal of food science, vol.57, no.5, 1242-1245. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 21611850, PMID: 7825524, McFadzean B, Dicks P, Groenmeyer G, Harris P, OConnor C. (2011). Minerals Engineering 24: 463-9, T.Pandolf and F.M. Clydesdale (1992) Journal of food science, vol.57, no.5, 1242-1245." - subsystem: - - Dietary fiber binding + - "Dietary fiber binding" - confidence_score: 0 - !!omap - - id: GUMGCHLe + - id: "GUMGCHLe" - name: "Binding of Guar Gums with Glycocholate" - metabolites: !!omap - gum_s: -1 @@ -254413,15 +254413,15 @@ - m01988s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 21611850, PMID: 7825524, McFadzean B, Dicks P, Groenmeyer G, Harris P, OConnor C. (2011). Minerals Engineering 24: 463-9, T.Pandolf and F.M. Clydesdale (1992) Journal of food science, vol.57, no.5, 1242-1245. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 21611850, PMID: 7825524, McFadzean B, Dicks P, Groenmeyer G, Harris P, OConnor C. (2011). Minerals Engineering 24: 463-9, T.Pandolf and F.M. Clydesdale (1992) Journal of food science, vol.57, no.5, 1242-1245." - subsystem: - - Dietary fiber binding + - "Dietary fiber binding" - confidence_score: 0 - !!omap - - id: GUMTCHOLe + - id: "GUMTCHOLe" - name: "Binding of Guar Gums with Taurocholate" - metabolites: !!omap - gum_s: -1 @@ -254429,15 +254429,15 @@ - m02963s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 21611850, PMID: 7825524, McFadzean B, Dicks P, Groenmeyer G, Harris P, OConnor C. (2011). Minerals Engineering 24: 463-9, T.Pandolf and F.M. Clydesdale (1992) Journal of food science, vol.57, no.5, 1242-1245. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 21611850, PMID: 7825524, McFadzean B, Dicks P, Groenmeyer G, Harris P, OConnor C. (2011). Minerals Engineering 24: 463-9, T.Pandolf and F.M. Clydesdale (1992) Journal of food science, vol.57, no.5, 1242-1245." - subsystem: - - Dietary fiber binding + - "Dietary fiber binding" - confidence_score: 0 - !!omap - - id: HIShPTtc + - id: "HIShPTtc" - name: "Transport of L-Histidine by Hpt3 Or Hpt4 Peptide Transporters" - metabolites: !!omap - m02039c: 1 @@ -254446,15 +254446,15 @@ - m02125l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110446 or ENSG00000139370 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16289537, PMID: 12905028, PMID: 17681807 + - gene_reaction_rule: "ENSG00000110446 or ENSG00000139370" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16289537, PMID: 12905028, PMID: 17681807" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HISyLATtc + - id: "HISyLATtc" - name: "Transport of L-Histidine by Y+Lat1 Or Y+Lat2 Transporters" - metabolites: !!omap - m01365c: -1 @@ -254465,15 +254465,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000103064 and ENSG00000168003) or (ENSG00000155465 and ENSG00000168003) - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11546643, PMID:18195088 + - gene_reaction_rule: "(ENSG00000103064 and ENSG00000168003) or (ENSG00000155465 and ENSG00000168003)" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11546643, PMID:18195088" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HISyLATthc + - id: "HISyLATthc" - name: "Transport of Histidine by Y+Lat1 Or Y+Lat2 with Symporter of H" - metabolites: !!omap - m01365c: -1 @@ -254484,30 +254484,30 @@ - m02125s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000103064 and ENSG00000168003) or (ENSG00000155465 and ENSG00000168003) - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11546643, PMID:18195088 + - gene_reaction_rule: "(ENSG00000103064 and ENSG00000168003) or (ENSG00000155465 and ENSG00000168003)" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11546643, PMID:18195088" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HPETFABP1tc + - id: "HPETFABP1tc" - name: "Transport of 5-HPETE into the Enterocytes" - metabolites: !!omap - m01042c: -2 - m01042r: 2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000163586 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9555061, PMCID: PMC2821027, PMID: 9054409, PMID: 9082452, PMCID: PMC2670638, http://mss3.libraries.rutgers.edu/dlr/TMP/rutgers-lib_26338-PDF-1.pdf + - gene_reaction_rule: "ENSG00000163586" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9555061, PMCID: PMC2821027, PMID: 9054409, PMID: 9082452, PMCID: PMC2670638, http://mss3.libraries.rutgers.edu/dlr/TMP/rutgers-lib_26338-PDF-1.pdf" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LEUGLYPEPT1tc + - id: "LEUGLYPEPT1tc" - name: "Transport of Leucylglycine by the Apical Pept1 Amino Acid Transporters" - metabolites: !!omap - leugly_c: 1 @@ -254516,15 +254516,15 @@ - m02039s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 7858848, PMID: 14965252, PMID: 14977407, PMID: 10330047 + - gene_reaction_rule: "ENSG00000088386" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 7858848, PMID: 14965252, PMID: 14977407, PMID: 10330047" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LEULEULAPc + - id: "LEULEULAPc" - name: "Hydrolysis of Leucylleucine" - metabolites: !!omap - leuleu_c: -1 @@ -254532,15 +254532,15 @@ - m02360c: 2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000002549 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 1908238, PMID: 1931152 + - gene_reaction_rule: "ENSG00000002549" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 1908238, PMID: 1931152" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LEULEUPEPT1tc + - id: "LEULEUPEPT1tc" - name: "Transport of Leucylleucine by the Apical Pept1 Amino Acid Transporters" - metabolites: !!omap - leuleu_c: 1 @@ -254549,15 +254549,15 @@ - m02039s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 7858848, PMID: 14965252, PMID: 14977407, PMID: 10330047 + - gene_reaction_rule: "ENSG00000088386" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 7858848, PMID: 14965252, PMID: 14977407, PMID: 10330047" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LEUyLAThtc + - id: "LEUyLAThtc" - name: "Transport of Leucine by Y+Lat1 Or Y+Lat2 with Symporter of H" - metabolites: !!omap - m01365c: -1 @@ -254568,15 +254568,15 @@ - m02360s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000103064 and ENSG00000168003) or (ENSG00000155465 and ENSG00000168003) - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11546643, PMID:18195088 + - gene_reaction_rule: "(ENSG00000103064 and ENSG00000168003) or (ENSG00000155465 and ENSG00000168003)" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11546643, PMID:18195088" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LINOFATPtc + - id: "LINOFATPtc" - name: "Uptake of Linoleic Acid" - metabolites: !!omap - m01334c: 1 @@ -254587,15 +254587,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167114 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10518211, PMID: 20086080, PMID: 12856180, Immun., Endoc. & Metab. Agents in Med. Chem., 2009, 9, 11-17, + - gene_reaction_rule: "ENSG00000167114" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10518211, PMID: 20086080, PMID: 12856180, Immun., Endoc. & Metab. Agents in Med. Chem., 2009, 9, 11-17," - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: METyLATthc + - id: "METyLATthc" - name: "Transport of Methionine by Y+Lat1 Or Y+Lat2 with Symporter of H" - metabolites: !!omap - m01365c: -1 @@ -254606,15 +254606,15 @@ - m02471s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000103064 and ENSG00000168003) or (ENSG00000155465 and ENSG00000168003) - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11546643, PMID:18195088 + - gene_reaction_rule: "(ENSG00000103064 and ENSG00000168003) or (ENSG00000155465 and ENSG00000168003)" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11546643, PMID:18195088" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: NACHORCTL3le + - id: "NACHORCTL3le" - name: "Transport of Nicotinate " - metabolites: !!omap - m02039c: 1 @@ -254623,30 +254623,30 @@ - m02586s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000172940 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 18411268, PMID: 15728713 + - gene_reaction_rule: "ENSG00000172940" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 18411268, PMID: 15728713" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: OCDEAFABP1tc + - id: "OCDEAFABP1tc" - name: "Transport of Octadecenoyl Coeznyme A into the Enterocytes" - metabolites: !!omap - m02646c: -2 - m02646r: 2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000163586 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9555061, PMCID: PMC2821027, PMID: 9054409, PMID: 9082452, PMCID: PMC2670638, http://mss3.libraries.rutgers.edu/dlr/TMP/rutgers-lib_26338-PDF-1.pdf + - gene_reaction_rule: "ENSG00000163586" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9555061, PMCID: PMC2821027, PMID: 9054409, PMID: 9082452, PMCID: PMC2670638, http://mss3.libraries.rutgers.edu/dlr/TMP/rutgers-lib_26338-PDF-1.pdf" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: OLEICFATPtc + - id: "OLEICFATPtc" - name: "Uptake of Octadecenoate" - metabolites: !!omap - m01334c: 1 @@ -254657,15 +254657,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167114 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10518211, PMID: 20086080, PMID: 12856180, Immun., Endoc. & Metab. Agents in Med. Chem., 2009, 9, 11-17, + - gene_reaction_rule: "ENSG00000167114" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10518211, PMID: 20086080, PMID: 12856180, Immun., Endoc. & Metab. Agents in Med. Chem., 2009, 9, 11-17," - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PALFATPtc + - id: "PALFATPtc" - name: "Transport of Hexadecanoate" - metabolites: !!omap - m01334c: 1 @@ -254676,30 +254676,30 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167114 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10518211, PMID: 20086080, PMID: 12856180, Immun., Endoc. & Metab. Agents in Med. Chem., 2009, 9, 11-17, + - gene_reaction_rule: "ENSG00000167114" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10518211, PMID: 20086080, PMID: 12856180, Immun., Endoc. & Metab. Agents in Med. Chem., 2009, 9, 11-17," - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLHSTDe + - id: "PCHOLHSTDe" - name: "Transport of Phosphatidylcholine" - metabolites: !!omap - m02684c: -1 - m02684s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Sareen S. Gropper, jack L. Smith, James L. Groff (2009) Wadaworth cengage learning, Advanced nutrition and human metabolism, 5th edition, page 142-148. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Sareen S. Gropper, jack L. Smith, James L. Groff (2009) Wadaworth cengage learning, Advanced nutrition and human metabolism, 5th edition, page 142-148." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PECDCHe + - id: "PECDCHe" - name: "Binding of Pectins with Deoxycholic Acid" - metabolites: !!omap - m00745s: -1 @@ -254708,15 +254708,15 @@ - pectindchac_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16925468, PMID: 12537466, PMID: 9808647, T.Pandolf and F.M. Clydesdale (1992) Journal of food science, vol.57, no.5, 1242-1245. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16925468, PMID: 12537466, PMID: 9808647, T.Pandolf and F.M. Clydesdale (1992) Journal of food science, vol.57, no.5, 1242-1245." - subsystem: - - Dietary fiber binding + - "Dietary fiber binding" - confidence_score: 0 - !!omap - - id: PECGCHLe + - id: "PECGCHLe" - name: "Binding of Pectins with Glycocholate" - metabolites: !!omap - m01988s: -1 @@ -254725,15 +254725,15 @@ - pectingchol_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16925468, PMID: 12537466, PMID: 9808647, T.Pandolf and F.M. Clydesdale (1992) Journal of food science, vol.57, no.5, 1242-1245. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16925468, PMID: 12537466, PMID: 9808647, T.Pandolf and F.M. Clydesdale (1992) Journal of food science, vol.57, no.5, 1242-1245." - subsystem: - - Dietary fiber binding + - "Dietary fiber binding" - confidence_score: 0 - !!omap - - id: PECTCHLe + - id: "PECTCHLe" - name: "Binding of Pectins with Taurocholate" - metabolites: !!omap - m02039s: -1 @@ -254742,30 +254742,30 @@ - pectintchol_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16925468, PMID: 12537466, PMID: 9808647, T.Pandolf and F.M. Clydesdale (1992) Journal of food science, vol.57, no.5, 1242-1245. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16925468, PMID: 12537466, PMID: 9808647, T.Pandolf and F.M. Clydesdale (1992) Journal of food science, vol.57, no.5, 1242-1245." - subsystem: - - Dietary fiber binding + - "Dietary fiber binding" - confidence_score: 0 - !!omap - - id: PEHSFABPe + - id: "PEHSFABPe" - name: "Transport of Lysophosphatidylethanolamine" - metabolites: !!omap - m02685c: -2 - m02685r: 2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000163586 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9555061, PMCID: PMC2821027, PMID: 9054409, PMID: 9082452, PMCID: PMC2670638, http://mss3.libraries.rutgers.edu/dlr/TMP/rutgers-lib_26338-PDF-1.pdf + - gene_reaction_rule: "ENSG00000163586" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9555061, PMCID: PMC2821027, PMID: 9054409, PMID: 9082452, PMCID: PMC2670638, http://mss3.libraries.rutgers.edu/dlr/TMP/rutgers-lib_26338-PDF-1.pdf" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PHEATB0tc + - id: "PHEATB0tc" - name: "Transport of L-Phenylalanine by Atb0 Transporter" - metabolites: !!omap - m01442c: 1 @@ -254776,15 +254776,15 @@ - m02724s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000268104 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:18195088 + - gene_reaction_rule: "ENSG00000268104" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:18195088" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PHEyLATthc + - id: "PHEyLATthc" - name: "Transport of Phenylalanine by Y+Lat1 Or Y+Lat2 with Symport of H" - metabolites: !!omap - m01365c: -1 @@ -254795,45 +254795,45 @@ - m02724s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000103064 and ENSG00000168003) or (ENSG00000155465 and ENSG00000168003) - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11546643, PMID:18195088 + - gene_reaction_rule: "(ENSG00000103064 and ENSG00000168003) or (ENSG00000155465 and ENSG00000168003)" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11546643, PMID:18195088" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PMTCOAFABP1tc + - id: "PMTCOAFABP1tc" - name: "Transport of Palmitoyl Coenzyme A" - metabolites: !!omap - m02678c: -2 - m02678r: 2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000163586 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9555061, PMCID: PMC2821027, PMID: 9054409, PMID: 9082452, PMCID: PMC2670638, http://mss3.libraries.rutgers.edu/dlr/TMP/rutgers-lib_26338-PDF-1.pdf + - gene_reaction_rule: "ENSG00000163586" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9555061, PMCID: PMC2821027, PMID: 9054409, PMID: 9082452, PMCID: PMC2670638, http://mss3.libraries.rutgers.edu/dlr/TMP/rutgers-lib_26338-PDF-1.pdf" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PNTORDe + - id: "PNTORDe" - name: "Release of Pantothenate" - metabolites: !!omap - m02680c: -1 - m02680s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 21749321 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 21749321" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PROGLYPEPT1tc + - id: "PROGLYPEPT1tc" - name: "Transport of Prolylglycine by the Apical Pept1 Amino Acid Transporters" - metabolites: !!omap - m02039c: 1 @@ -254842,15 +254842,15 @@ - progly_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 7858848, PMID: 14965252, PMID: 14977407, PMID: 10330047 + - gene_reaction_rule: "ENSG00000088386" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 7858848, PMID: 14965252, PMID: 14977407, PMID: 10330047" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PROGLYPRO1c + - id: "PROGLYPRO1c" - name: "Hydrolysis of Glycylproline" - metabolites: !!omap - m01986c: 1 @@ -254859,15 +254859,15 @@ - progly_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000124299 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15552267 + - gene_reaction_rule: "ENSG00000124299" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15552267" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PROIMINOtc + - id: "PROIMINOtc" - name: "Transport of L-Proline by the Apical Imino Amino Acid Transporters" - metabolites: !!omap - m01442c: 1 @@ -254878,15 +254878,15 @@ - m02770s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147003 and ENSG00000163817 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 19657969, PMID: 15632147, PMID: 18195088, PMID: 18400692 + - gene_reaction_rule: "ENSG00000147003 and ENSG00000163817" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 19657969, PMID: 15632147, PMID: 18195088, PMID: 18400692" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PSYGCHe + - id: "PSYGCHe" - name: "Binding of Psyllium with Glycocholate" - metabolites: !!omap - m01988s: -1 @@ -254894,15 +254894,15 @@ - psylchol_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Zacherl C, Eisner P, Engel K-H. (2011). Food Chemistry 126: 423-8, Dongowski G. (2007). Food Chemistry 104: 390-7 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Zacherl C, Eisner P, Engel K-H. (2011). Food Chemistry 126: 423-8, Dongowski G. (2007). Food Chemistry 104: 390-7" - subsystem: - - Dietary fiber binding + - "Dietary fiber binding" - confidence_score: 0 - !!omap - - id: PSYTCHe + - id: "PSYTCHe" - name: "Binding of Psyllium with Taurocholate " - metabolites: !!omap - m02963s: -1 @@ -254910,15 +254910,15 @@ - psyltchol_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Zacherl C, Eisner P, Engel K-H. (2011). Food Chemistry 126: 423-8, Dongowski G. (2007). Food Chemistry 104: 390-7 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Zacherl C, Eisner P, Engel K-H. (2011). Food Chemistry 126: 423-8, Dongowski G. (2007). Food Chemistry 104: 390-7" - subsystem: - - Dietary fiber binding + - "Dietary fiber binding" - confidence_score: 0 - !!omap - - id: PSYTDECHe + - id: "PSYTDECHe" - name: "Binding of Psyllium with Taurodeoxycholate" - metabolites: !!omap - m02964s: -1 @@ -254926,30 +254926,30 @@ - psyltdechol_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Zacherl C, Eisner P, Engel K-H. (2011). Food Chemistry 126: 423-8, Dongowski G. (2007). Food Chemistry 104: 390-7 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Zacherl C, Eisner P, Engel K-H. (2011). Food Chemistry 126: 423-8, Dongowski G. (2007). Food Chemistry 104: 390-7" - subsystem: - - Dietary fiber binding + - "Dietary fiber binding" - confidence_score: 0 - !!omap - - id: TAGHSTDe + - id: "TAGHSTDe" - name: "Export of Triglyceride" - metabolites: !!omap - m02959c: -1 - m02959s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Sareen S. Gropper, jack L. Smith, James L. Groff (2009) Wadaworth cengage learning, Advanced nutrition and human metabolism, 5th edition, page 142-148. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Sareen S. Gropper, jack L. Smith, James L. Groff (2009) Wadaworth cengage learning, Advanced nutrition and human metabolism, 5th edition, page 142-148." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TAUPAT1c + - id: "TAUPAT1c" - name: "Transport of Taurine by Pat1" - metabolites: !!omap - m02039c: 1 @@ -254958,15 +254958,15 @@ - m02961s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000123643 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 19074966, PMID:18195088, PMID:18400692, PMID: 15345686, PMID: 17123464, PMCID: PMC34648 + - gene_reaction_rule: "ENSG00000123643" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 19074966, PMID:18195088, PMID:18400692, PMID: 15345686, PMID: 17123464, PMCID: PMC34648" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: THMATPe + - id: "THMATPe" - name: "Transport of Thiamine" - metabolites: !!omap - m01285c: 1 @@ -254978,15 +254978,15 @@ - m02982s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10964259, PMID: 8254515, G.F.M. Ball (2006) Vitamins their role in the human body, Blackwell publishing, chapter 11, page 275. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10964259, PMID: 8254515, G.F.M. Ball (2006) Vitamins their role in the human body, Blackwell publishing, chapter 11, page 275." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: THRATB0tc + - id: "THRATB0tc" - name: "Transport of L-Threonine by Atb0 Transporter" - metabolites: !!omap - m01442c: 1 @@ -254997,15 +254997,15 @@ - m02993s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000268104 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:18195088 + - gene_reaction_rule: "ENSG00000268104" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:18195088" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TRPATB0tc + - id: "TRPATB0tc" - name: "Transport of L-Tryptophan by Atb0 Transporter" - metabolites: !!omap - m01442c: 1 @@ -255016,15 +255016,15 @@ - m03089s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000268104 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:18195088 + - gene_reaction_rule: "ENSG00000268104" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:18195088" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TYRATB0tc + - id: "TYRATB0tc" - name: "Transport of L-Tyrosine by Atb0 Transporter" - metabolites: !!omap - m01442c: 1 @@ -255035,15 +255035,15 @@ - m03101s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000268104 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:18195088 + - gene_reaction_rule: "ENSG00000268104" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:18195088" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: VITEtl + - id: "VITEtl" - name: "Efflux of Alpha-Tocopherol into the Lyphatics in Chylomicrons" - metabolites: !!omap - m01285c: 1 @@ -255055,90 +255055,90 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15213020, PMID: 17320165 + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15213020, PMID: 17320165" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: VITKtl + - id: "VITKtl" - name: "Transport of Vitamin K into Lymph" - metabolites: !!omap - m02744c: -1 - m02744s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 18841274 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 18841274" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: XOLEST2HSTDle + - id: "XOLEST2HSTDle" - name: "Transport of Cholesterol Ester" - metabolites: !!omap - m01451c: -1 - m01451s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Sareen S. Gropper, jack L. Smith, James L. Groff (2009) Wadaworth cengage learning, Advanced nutrition and human metabolism, 5th edition, page 142-148. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Sareen S. Gropper, jack L. Smith, James L. Groff (2009) Wadaworth cengage learning, Advanced nutrition and human metabolism, 5th edition, page 142-148." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 1a25DHVITD3TRn + - id: "1a25DHVITD3TRn" - name: "Tanslocation of 1-Alpha, 25-Dihydroxyvitamin D3 to Nucleus" - metabolites: !!omap - m01417c: -1 - m01417n: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16374421 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16374421" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3AIB_Dtm + - id: "3AIB_Dtm" - name: "Transport of 3Aib_D into Mitochondria" - metabolites: !!omap - m01633c: -1 - m01633m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: no transporter could be identified, so diffusion is assumed. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "no transporter could be identified, so diffusion is assumed." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 4ABUTtcn + - id: "4ABUTtcn" - name: "Transport of GABA" - metabolites: !!omap - m00970c: -1 - m00970n: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Jane D. Carver, W. Allan Walkera , The Journal of Nutritional Biochemistry, Volume 6, Issue 2, February 1995, Pages 58?72. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Jane D. Carver, W. Allan Walkera , The Journal of Nutritional Biochemistry, Volume 6, Issue 2, February 1995, Pages 58?72." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 4HPROLTASCT1 + - id: "4HPROLTASCT1" - name: "Transport of Hydroxy-Proline " - metabolites: !!omap - m01307c: 1 @@ -255149,15 +255149,15 @@ - m03037s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115902 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 14502423, PMID: 17475673. + - gene_reaction_rule: "ENSG00000115902" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 14502423, PMID: 17475673." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ADNK3 + - id: "ADNK3" - name: "Adenosine Kinase" - metabolites: !!omap - m01280c: -1 @@ -255167,15 +255167,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16816105, PMID: 17403938. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16816105, PMID: 17403938." - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: ADNK4 + - id: "ADNK4" - name: "Adenosine Kinase" - metabolites: !!omap - m01280c: -1 @@ -255185,30 +255185,30 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16816105, PMID: 17403938. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16816105, PMID: 17403938." - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: AHCYStd + - id: "AHCYStd" - name: "Diffusion of S-Adenosyl-L-Homocysteine" - metabolites: !!omap - m02871c: 1 - m02871m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8283303. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8283303." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ARACHFATPc + - id: "ARACHFATPc" - name: "Uptake of Arachidate" - metabolites: !!omap - m01334c: 1 @@ -255219,30 +255219,30 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10518211, PMID: 20086080, PMID: 12856180, Immun., Endoc. & Metab. Agents in Med. Chem., 2009, 9, 11-17, + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10518211, PMID: 20086080, PMID: 12856180, Immun., Endoc. & Metab. Agents in Med. Chem., 2009, 9, 11-17," - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ASPDTDe + - id: "ASPDTDe" - name: "D-Aspartate Transport, Extracellular" - metabolites: !!omap - m01641c: -1 - m01641s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: D-aspartate may exit by diffusion or require specific transporters. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "D-aspartate may exit by diffusion or require specific transporters." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ASPPROASCT1 + - id: "ASPPROASCT1" - name: "Aspartate Intake by System Asct-1 Transporter" - metabolites: !!omap - m01370c: 1 @@ -255253,15 +255253,15 @@ - m02770s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115902 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 14502423, PMID: 11824937, Kim E. Barrett, Mark Donowitz (2001) Gastrointestinal transport: Molecular physiology, Academic press, A harcourt science and technology company, chapter 10, pages 389-391. + - gene_reaction_rule: "ENSG00000115902" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 14502423, PMID: 11824937, Kim E. Barrett, Mark Donowitz (2001) Gastrointestinal transport: Molecular physiology, Academic press, A harcourt science and technology company, chapter 10, pages 389-391." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: BIDGLCURr + - id: "BIDGLCURr" - name: "Bilirubin Di-Glucuronide Production" - metabolites: !!omap - m01397r: 1 @@ -255270,15 +255270,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000242366 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 6806320, PMID: 19880533. + - gene_reaction_rule: "ENSG00000242366" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 6806320, PMID: 19880533." - subsystem: - - Heme degradation + - "Heme degradation" - confidence_score: 0 - !!omap - - id: CHOLESACATc + - id: "CHOLESACATc" - name: "Esterification of Cholesterol to Cholesterol Ester" - metabolites: !!omap - Rtotalcoa_c: -1 @@ -255287,15 +255287,15 @@ - m01597c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000057252 or ENSG00000167780 - - rxnFrom: Recon3D - - eccodes: - - references: Sareen S. Gropper, jack L. Smith, James L. Groff (2009) Wadaworth cengage learning, Advanced nutrition and human metabolism, 5th edition, page 143-144. charasuraisin, c. in short dissertation 19 (2008) + - gene_reaction_rule: "ENSG00000057252 or ENSG00000167780" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Sareen S. Gropper, jack L. Smith, James L. Groff (2009) Wadaworth cengage learning, Advanced nutrition and human metabolism, 5th edition, page 143-144. charasuraisin, c. in short dissertation 19 (2008)" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: CHOLESTle + - id: "CHOLESTle" - name: "Hydrolysis of Cholesterol Ester by Cholesterol Esterase " - metabolites: !!omap - Rtotal_s: 1 @@ -255305,15 +255305,15 @@ - m02040s: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000107798 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000107798" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CYSAMOe + - id: "CYSAMOe" - name: "Cysteamine:Oxygen Oxidoreductase, Extracellular" - metabolites: !!omap - m01627s: -1 @@ -255322,90 +255322,90 @@ - m02630s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: Coqe + - id: "Coqe" - name: "Transport of Q10" - metabolites: !!omap - m03103c: 1 - m03103s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: DATPtm + - id: "DATPtm" - name: "Transport of dATP into Mitochondria" - metabolites: !!omap - m01642c: -1 - m01642m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16816105, PMID: 17403938. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16816105, PMID: 17403938." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: DCTPtm + - id: "DCTPtm" - name: "Transport of dCTP into Mitochondria" - metabolites: !!omap - m01645c: -1 - m01645m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16816105, PMID: 17403938. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16816105, PMID: 17403938." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: DGTPtm + - id: "DGTPtm" - name: "Transport of dGTP into Mitochondria" - metabolites: !!omap - m01688c: -1 - m01688m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16816105, PMID: 17403938. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16816105, PMID: 17403938." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: DHAPtc + - id: "DHAPtc" - name: "Transport of Dihydroxyacetone Phosphate into Cytosol" - metabolites: !!omap - m01690c: 1 - m01690m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: DPCOAPPe + - id: "DPCOAPPe" - name: "Pyrophasphatase (Dephospho Coenzyme A, Extracellular)" - metabolites: !!omap - m01334s: 1 @@ -255415,15 +255415,15 @@ - m02741s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - CoA synthesis + - "CoA synthesis" - confidence_score: 0 - !!omap - - id: DSREDUCr + - id: "DSREDUCr" - name: "Desmosterol Reductase" - metabolites: !!omap - m01450r: 1 @@ -255433,15 +255433,15 @@ - m02555r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000116133 - - rxnFrom: Recon3D - - eccodes: - - references: Davidson, N. O., Magun, A. M. and Glickman, R. M. 2011. Enterocyte Lipid Absorption and Secretion. Comprehensive Physiology. 505?526, PMID: 17015489, PMID: 18216769, PMID: 6833883, PMID: 11229876. + - gene_reaction_rule: "ENSG00000116133" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Davidson, N. O., Magun, A. M. and Glickman, R. M. 2011. Enterocyte Lipid Absorption and Secretion. Comprehensive Physiology. 505?526, PMID: 17015489, PMID: 18216769, PMID: 6833883, PMID: 11229876." - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: DTMPKm + - id: "DTMPKm" - name: "DTMP Kinase in Mitochondria" - metabolites: !!omap - m01285m: 1 @@ -255450,555 +255450,555 @@ - m01752m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000168393 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 17403938 + - gene_reaction_rule: "ENSG00000168393" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 17403938" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: DTTPtm + - id: "DTTPtm" - name: "Transport of dTTP into Mitochondria" - metabolites: !!omap - m01753c: -1 - m01753m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16816105, PMID: 17403938. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16816105, PMID: 17403938." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_4hpro[e] + - id: "EX_4hpro[e]" - name: "Exchange of Hydroxy Proline" - metabolites: !!omap - m03037s: -1 - m03037x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_adpcbl[e] + - id: "EX_adpcbl[e]" - name: "Exchange of Adenosylcobalamin" - metabolites: !!omap - m01600s: -1 - m01600x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_alaala[e] + - id: "EX_alaala[e]" - name: "Exchange of Alanylalanine" - metabolites: !!omap - alaala_s: -1 - alaala_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_bglc[e] + - id: "EX_bglc[e]" - name: "Exchange of Beta Glucans" - metabolites: !!omap - bglc_s: -1 - bglc_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_carn[e] + - id: "EX_carn[e]" - name: "Exchange of Carnosine" - metabolites: !!omap - m01423s: -1 - m01423x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_dchac[e] + - id: "EX_dchac[e]" - name: "Exchange of Deoxycholic Acid" - metabolites: !!omap - m00745s: -1 - m00745x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_glgchlo[e] + - id: "EX_glgchlo[e]" - name: "Exchange of Beta Glucan-Glycocholate Complex" - metabolites: !!omap - glgchlo_s: -1 - glgchlo_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_gltcho[e] + - id: "EX_gltcho[e]" - name: "Exchange of Beta Glucan-Taurocholic Acid Complex" - metabolites: !!omap - gltcho_s: -1 - gltcho_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_gltdechol[e] + - id: "EX_gltdechol[e]" - name: "Exchange of Beta Glucan-Taurodeoxycholic Acid Complex" - metabolites: !!omap - gltdechol_s: -1 - gltdechol_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_glygly[e] + - id: "EX_glygly[e]" - name: "Exchange of Glycylglycine" - metabolites: !!omap - glygly_s: -1 - glygly_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_glysar[e] + - id: "EX_glysar[e]" - name: "Exchange of Glycylsarcosine" - metabolites: !!omap - glysar_s: -1 - glysar_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_gum[e] + - id: "EX_gum[e]" - name: "Exchange of Guar Gums" - metabolites: !!omap - gum_s: -1 - gum_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_gumdchac[e] + - id: "EX_gumdchac[e]" - name: "Exchange of Guar Gum-Deoxyxholic Acid Complex" - metabolites: !!omap - gumdchac_s: -1 - gumdchac_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_gumgchol[e] + - id: "EX_gumgchol[e]" - name: "Exchange of Guar Gum-Glycocholate Complex" - metabolites: !!omap - gumgchol_s: -1 - gumgchol_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_gumtchol[e] + - id: "EX_gumtchol[e]" - name: "Exchange of Guar Gum-Taurocholic Acid Complex" - metabolites: !!omap - gumtchol_s: -1 - gumtchol_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_leugly[e] + - id: "EX_leugly[e]" - name: "Exchange of Leucylglycine" - metabolites: !!omap - leugly_s: -1 - leugly_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_leuleu[e] + - id: "EX_leuleu[e]" - name: "Exchange of Leucylleucine" - metabolites: !!omap - leuleu_s: -1 - leuleu_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pect[e] + - id: "EX_pect[e]" - name: "Exchange of Pectins" - metabolites: !!omap - pect_s: -1 - pect_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pectindchac[e] + - id: "EX_pectindchac[e]" - name: "Exchange of Pectin-Deoxycholic Acid Complex" - metabolites: !!omap - pectindchac_s: -1 - pectindchac_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pectingchol[e] + - id: "EX_pectingchol[e]" - name: "Exchange of Pectin-Glycocholate Complex" - metabolites: !!omap - pectingchol_s: -1 - pectingchol_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pectintchol[e] + - id: "EX_pectintchol[e]" - name: "Exchange of Pectin-Taurocholic Acid Complex" - metabolites: !!omap - pectintchol_s: -1 - pectintchol_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_psyl[e] + - id: "EX_psyl[e]" - name: "Exchange of Psyllium" - metabolites: !!omap - psyl_s: -1 - psyl_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_psylchol[e] + - id: "EX_psylchol[e]" - name: "Exchange of Psyllium-Glycocholic Acid Complex" - metabolites: !!omap - psylchol_s: -1 - psylchol_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_psyltchol[e] + - id: "EX_psyltchol[e]" - name: "Exchange of Psyllium-Taurocholic Acid Complex" - metabolites: !!omap - psyltchol_s: -1 - psyltchol_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_psyltdechol[e] + - id: "EX_psyltdechol[e]" - name: "Exchange of Psyllium-Taurodeoxycholic Acid Complex" - metabolites: !!omap - psyltdechol_s: -1 - psyltdechol_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_sfcys[e] + - id: "EX_sfcys[e]" - name: "Exchange of Sulfocysteine" - metabolites: !!omap - slfcys_s: -1 - slfcys_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_tdechola[e] + - id: "EX_tdechola[e]" - name: "Exchange of Taurodeoxycholic Acid" - metabolites: !!omap - m02964s: -1 - m02964x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_cysam[e] + - id: "EX_cysam[e]" - name: "Exchange of Cysteaminium" - metabolites: !!omap - m01627s: -1 - m01627x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_dpcoa[e] + - id: "EX_dpcoa[e]" - name: "Exchange of Dephospho Coenzyme A" - metabolites: !!omap - m01674s: -1 - m01674x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_fmn[e] + - id: "EX_fmn[e]" - name: "Exchange of FMN" - metabolites: !!omap - m01828s: -1 - m01828x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_hyptaur[e] + - id: "EX_hyptaur[e]" - name: "Exchange of Hypotaurine" - metabolites: !!omap - m02157s: -1 - m02157x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pan4p[e] + - id: "EX_pan4p[e]" - name: "Exchange of Pantetheine 4-Phosphate" - metabolites: !!omap - m02741s: -1 - m02741x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_ptth[e] + - id: "EX_ptth[e]" - name: "Exchange of Pantetheine" - metabolites: !!omap - m02679s: -1 - m02679x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_q10[e] + - id: "EX_q10[e]" - name: "Exchange of Ubiquinone" - metabolites: !!omap - m03103s: -1 - m03103x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_q10h2[e] + - id: "EX_q10h2[e]" - name: "Exchange of Ubiquinol" - metabolites: !!omap - m03102s: -1 - m03102x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: FADDPle + - id: "FADDPle" - name: "FAD Diphosphatase" - metabolites: !!omap - m01334s: 1 @@ -256008,15 +256008,15 @@ - m02040s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197594 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197594" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Vitamin B2 metabolism + - "Vitamin B2 metabolism" - confidence_score: 0 - !!omap - - id: FMNALKPle + - id: "FMNALKPle" - name: "Acid Phosphatase (FMN), Extracellular" - metabolites: !!omap - m01828s: -1 @@ -256025,30 +256025,30 @@ - m02842s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000143727 or ENSG00000163295 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000143727 or ENSG00000163295" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: FRDPtcr + - id: "FRDPtcr" - name: "Transport of Farnesyl Diphosphate into the Endoplasmic Reticulum" - metabolites: !!omap - m01806c: -1 - m01806r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: required for cholesterol synthesis in E.R. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "required for cholesterol synthesis in E.R." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: G6PDH2c + - id: "G6PDH2c" - name: "Glucose 6-Phosphate Dehydrogenase" - metabolites: !!omap - m01961c: 3 @@ -256058,15 +256058,15 @@ - m02555c: 3 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160211 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 4382012, PMID: 13575411, Harpers illustrated Biochemistry (2009) 28th edition pages 174-183 + - gene_reaction_rule: "ENSG00000160211" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 4382012, PMID: 13575411, Harpers illustrated Biochemistry (2009) 28th edition pages 174-183" - subsystem: - - Pentose phosphate pathway + - "Pentose phosphate pathway" - confidence_score: 0 - !!omap - - id: GLUPROASCT1 + - id: "GLUPROASCT1" - name: "Glutamate Intake by System Asct-1 Transporter" - metabolites: !!omap - m01974c: 1 @@ -256077,15 +256077,15 @@ - m02770s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115902 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 14502423, PMID: 11824937, Kim E. Barrett, Mark Donowitz (2001) Gastrointestinal transport: Molecular physiology, Academic press, A harcourt science and technology company, chapter 10, pages 389-391. + - gene_reaction_rule: "ENSG00000115902" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 14502423, PMID: 11824937, Kim E. Barrett, Mark Donowitz (2001) Gastrointestinal transport: Molecular physiology, Academic press, A harcourt science and technology company, chapter 10, pages 389-391." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GNDc + - id: "GNDc" - name: "Phosphogluconate Dehydrogenase" - metabolites: !!omap - m01169c: -3 @@ -256095,15 +256095,15 @@ - m02846c: 3 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000142657 - - rxnFrom: Recon3D - - eccodes: 1.1.1.44 - - references: PMID: 4382012, PMID: 13575411, Harpers illustrated Biochemistry (2009) 28th edition pages 174-183 + - gene_reaction_rule: "ENSG00000142657" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.44" + - references: "PMID: 4382012, PMID: 13575411, Harpers illustrated Biochemistry (2009) 28th edition pages 174-183" - subsystem: - - Pentose phosphate pathway + - "Pentose phosphate pathway" - confidence_score: 0 - !!omap - - id: HYPTROXe + - id: "HYPTROXe" - name: "Hypotaurine Oxidase, Extracellular" - metabolites: !!omap - m02157s: -2 @@ -256111,15 +256111,15 @@ - m02961s: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: INSK + - id: "INSK" - name: "Insosine Kinase" - metabolites: !!omap - m01285c: 1 @@ -256129,15 +256129,15 @@ - m02170c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: KHte + - id: "KHte" - name: "K Transport" - metabolites: !!omap - m02039c: -1 @@ -256146,30 +256146,30 @@ - m02200s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LACLt + - id: "LACLt" - name: "Lactate Transport" - metabolites: !!omap - m02403c: 1 - m02403p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMCID: PMC1820816. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMCID: PMC1820816." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LAPCOAe + - id: "LAPCOAe" - name: "Lysosomal Acid Phosphorylase (CoA)" - metabolites: !!omap - m01597s: -1 @@ -256178,15 +256178,15 @@ - m02751s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - CoA catabolism + - "CoA catabolism" - confidence_score: 0 - !!omap - - id: LEUGLYHYc + - id: "LEUGLYHYc" - name: "Hydrolysis of Leucylglycine" - metabolites: !!omap - leugly_c: -1 @@ -256195,30 +256195,30 @@ - m02360c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: most probable reaction. added during gap filling. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "most probable reaction. added during gap filling." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: MAL_Ltx + - id: "MAL_Ltx" - name: "Transport Reaction for Malate" - metabolites: !!omap - m02439c: 1 - m02439p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 17173541 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 17173541" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: MDHx + - id: "MDHx" - name: "Malate Dehydrogenase, Peroxisomal" - metabolites: !!omap - m02039p: 1 @@ -256228,30 +256228,30 @@ - m02633p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 17173541 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 17173541" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: NADtm + - id: "NADtm" - name: "Transport of NAD into Mitochondria" - metabolites: !!omap - m02552c: -1 - m02552m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: OCDCAFATPc + - id: "OCDCAFATPc" - name: "Uptake of Octadecanoate (N-C18:0)" - metabolites: !!omap - m01334c: 1 @@ -256262,15 +256262,15 @@ - m02941c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10518211, PMID: 20086080, PMID: 12856180, Immun., Endoc. & Metab. Agents in Med. Chem., 2009, 9, 11-17, + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10518211, PMID: 20086080, PMID: 12856180, Immun., Endoc. & Metab. Agents in Med. Chem., 2009, 9, 11-17," - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PAN4PPe + - id: "PAN4PPe" - name: "Phosphatase, Extracellular" - metabolites: !!omap - m02040s: -1 @@ -256279,15 +256279,15 @@ - m02751s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - CoA synthesis + - "CoA synthesis" - confidence_score: 0 - !!omap - - id: PGLc + - id: "PGLc" - name: "6-Phosphogluconolactonase" - metabolites: !!omap - m01169c: 3 @@ -256296,15 +256296,15 @@ - m02040c: -3 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130313 - - rxnFrom: Recon3D - - eccodes: 3.1.1.31 - - references: PMID: 4382012, PMID: 13575411, Harpers illustrated Biochemistry (2009) 28th edition pages 174-183 + - gene_reaction_rule: "ENSG00000130313" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.31" + - references: "PMID: 4382012, PMID: 13575411, Harpers illustrated Biochemistry (2009) 28th edition pages 174-183" - subsystem: - - Pentose phosphate pathway + - "Pentose phosphate pathway" - confidence_score: 0 - !!omap - - id: PNTEHe + - id: "PNTEHe" - name: "(R)-Pantetheine Amidohydrolase" - metabolites: !!omap - m01627s: 1 @@ -256313,60 +256313,60 @@ - m02680s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PPItm + - id: "PPItm" - name: "Diphopshate Transporter, Mitochondrial" - metabolites: !!omap - m02759c: -1 - m02759m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: added during gap-filling. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "added during gap-filling." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PRO_Dtde + - id: "PRO_Dtde" - name: "D-Proline Transport, Extracellular" - metabolites: !!omap - m01742c: -1 - m01742s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: added during gap-filling. Diffusion into the blood is assumed. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "added during gap-filling. Diffusion into the blood is assumed." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PTCRTD + - id: "PTCRTD" - name: "Diffusion of Putriscine into the Endothelial Cells" - metabolites: !!omap - m02812c: 1 - m02812s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9505881, PMID: 11564949 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9505881, PMID: 11564949" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PTPATe + - id: "PTPATe" - name: "Phosphopantetheine Adenylyltransferase, Extracellular" - metabolites: !!omap - m01371s: -1 @@ -256376,45 +256376,45 @@ - m02759s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: Q10H2e + - id: "Q10H2e" - name: "Transport of Ubiquinol into Lymph" - metabolites: !!omap - m03102c: -1 - m03102s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 17482886. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 17482886." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: RPEc + - id: "RPEc" - name: "Ribulose 5-Phosphate 3-Epimerase" - metabolites: !!omap - m01761c: 2 - m02846c: -2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197713 - - rxnFrom: Recon3D - - eccodes: 5.1.3.1 - - references: PMID: 4382012, PMID: 13575411, Harpers illustrated Biochemistry (2009) 28th edition pages 174-183 + - gene_reaction_rule: "ENSG00000197713" + - rxnFrom: "Recon3D" + - eccodes: "5.1.3.1" + - references: "PMID: 4382012, PMID: 13575411, Harpers illustrated Biochemistry (2009) 28th edition pages 174-183" - subsystem: - - Pentose phosphate pathway + - "Pentose phosphate pathway" - confidence_score: 0 - !!omap - - id: RTOTAL2FATPc + - id: "RTOTAL2FATPc" - name: "Uptake of Rtotal2 " - metabolites: !!omap - Rtotal2_s: -1 @@ -256425,15 +256425,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000167114 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10518211, PMID: 20086080, PMID: 12856180, Immun., Endoc. & Metab. Agents in Med. Chem., 2009, 9, 11-17, + - gene_reaction_rule: "ENSG00000167114" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10518211, PMID: 20086080, PMID: 12856180, Immun., Endoc. & Metab. Agents in Med. Chem., 2009, 9, 11-17," - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: RTOTAL3FATPc + - id: "RTOTAL3FATPc" - name: "Uptake of Rtotal3 " - metabolites: !!omap - Rtotal3_s: -1 @@ -256444,15 +256444,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000167114 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10518211, PMID: 20086080, PMID: 12856180, Immun., Endoc. & Metab. Agents in Med. Chem., 2009, 9, 11-17, + - gene_reaction_rule: "ENSG00000167114" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10518211, PMID: 20086080, PMID: 12856180, Immun., Endoc. & Metab. Agents in Med. Chem., 2009, 9, 11-17," - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: RTOTALFATPc + - id: "RTOTALFATPc" - name: "Uptake of Rtotal " - metabolites: !!omap - Rtotal_s: -1 @@ -256463,15 +256463,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000167114 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10518211, PMID: 20086080, PMID: 12856180, Immun., Endoc. & Metab. Agents in Med. Chem., 2009, 9, 11-17, + - gene_reaction_rule: "ENSG00000167114" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10518211, PMID: 20086080, PMID: 12856180, Immun., Endoc. & Metab. Agents in Med. Chem., 2009, 9, 11-17," - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SFCYSc + - id: "SFCYSc" - name: "Formation of Sulfocysteine" - metabolites: !!omap - m01628c: -1 @@ -256480,45 +256480,45 @@ - slfcys_c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 2621485 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 2621485" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: SFCYSe + - id: "SFCYSe" - name: "Secretion of Sulfocysteine into Extracellular Space" - metabolites: !!omap - slfcys_c: -1 - slfcys_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 2621485 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 2621485" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TAURCHAe + - id: "TAURCHAe" - name: "Secretion of Taurine" - metabolites: !!omap - m02961c: -1 - m02961s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 14992263 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 14992263" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TTDCAFATPc + - id: "TTDCAFATPc" - name: "Uptake of Hexadecanoate" - metabolites: !!omap - m01334c: 1 @@ -256529,135 +256529,135 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10518211, PMID: 20086080, PMID: 12856180, Immun., Endoc. & Metab. Agents in Med. Chem., 2009, 9, 11-17, + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10518211, PMID: 20086080, PMID: 12856180, Immun., Endoc. & Metab. Agents in Med. Chem., 2009, 9, 11-17," - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: q10h2tc + - id: "q10h2tc" - name: "Transport of Ubiquinol into Cytosol" - metabolites: !!omap - m03102c: 1 - m03102m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: q10tm + - id: "q10tm" - name: "Transport of Ubiquinone into Mitochondria" - metabolites: !!omap - m03103c: -1 - m03103m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 34HPPte + - id: "34HPPte" - name: "Transport of 3- (4-Hydroxyphenyl)Pyruvate" - metabolites: !!omap - m01005c: 1 - m01005s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3MOBte + - id: "3MOBte" - name: "Transport of 3-Methyl-2-Oxobutanoate" - metabolites: !!omap - m00824c: 1 - m00824s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3MOPte + - id: "3MOPte" - name: "Transport of 3-Methyl-2-Oxopentanoate" - metabolites: !!omap - m00669c: 1 - m00669s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 4HPRO_LTte + - id: "4HPRO_LTte" - name: "Transport of Trans-4-Hydroxy-L-Proline" - metabolites: !!omap - m03037m: 1 - m03037s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 4MOPte + - id: "4MOPte" - name: "Transport of 4-Methyl-2-Oxopentanoate" - metabolites: !!omap - m01013c: 1 - m01013s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 5MTAte + - id: "5MTAte" - name: "Transport of 5-S-Methyl-5-Thioadenosine" - metabolites: !!omap - m01116c: 1 - m01116s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 5OXPROt + - id: "5OXPROt" - name: "Transport of 5-Oxoprolinate" - metabolites: !!omap - m01127c: 1 @@ -256666,240 +256666,240 @@ - m02519s: -2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: AHCYSte + - id: "AHCYSte" - name: "Transport of S-Adenosyl-L-Homocysteine" - metabolites: !!omap - m02871c: 1 - m02871s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: AICARte + - id: "AICARte" - name: "Transport of 5-Amino-1- (5-Phospho-D-Ribosyl)Imidazole-4-Carboxamide" - metabolites: !!omap - m01304c: 1 - m01304s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.1.1.44 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.44" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ANTHte + - id: "ANTHte" - name: "Transport of Anthranilate" - metabolites: !!omap - m01342c: 1 - m01342s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CBASPte + - id: "CBASPte" - name: "Transport of N-Carbamoyl-L-Aspartate" - metabolites: !!omap - m02559c: 1 - m02559s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_34hpp[e] + - id: "EX_34hpp[e]" - name: "Exchange of 3- (4-Hydroxyphenyl)Pyruvate" - metabolites: !!omap - m01005s: -1 - m01005x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_3mob[e] + - id: "EX_3mob[e]" - name: "Exchange of 3-Methyl-2-Oxobutanoate" - metabolites: !!omap - m00824s: -1 - m00824x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_3mop[e] + - id: "EX_3mop[e]" - name: "Exchange of 3-Methyl-2-Oxopentanoate" - metabolites: !!omap - m00669s: -1 - m00669x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_4mop[e] + - id: "EX_4mop[e]" - name: "Exchange of 4-Methyl-2-Oxopentanoate" - metabolites: !!omap - m01013s: -1 - m01013x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_5mta[e] + - id: "EX_5mta[e]" - name: "Exchange of 5-S-Methyl-5-Thioadenosine" - metabolites: !!omap - m01116s: -1 - m01116x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_5oxpro[e] + - id: "EX_5oxpro[e]" - name: "Exchange of 5-Oxoprolinate" - metabolites: !!omap - m01127s: -1 - m01127x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_ahcys[e] + - id: "EX_ahcys[e]" - name: "Exchange of S-Adenosyl-L-Homocysteine" - metabolites: !!omap - m02871s: -1 - m02871x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_aicar[e] + - id: "EX_aicar[e]" - name: "Exchange of 5-Amino-1- (5-Phospho-D-Ribosyl)Imidazole-4-Carboxamide" - metabolites: !!omap - m01304s: -1 - m01304x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_anth[e] + - id: "EX_anth[e]" - name: "Exchange of Anthranilate" - metabolites: !!omap - m01342s: -1 - m01342x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_cbasp[e] + - id: "EX_cbasp[e]" - name: "Exchange of N-Carbamoyl-L-Aspartate" - metabolites: !!omap - m02559s: -1 - m02559x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: MAL_Lte + - id: "MAL_Lte" - name: "Transport of L-Malate" - metabolites: !!omap - m02439c: 1 - m02439s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: OROTGLUt + - id: "OROTGLUt" - name: "Orotate-Glutamate Antiport" - metabolites: !!omap - m01974c: -1 @@ -256908,30 +256908,30 @@ - m02659s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137204 - - rxnFrom: Recon3D - - eccodes: 3.1.1.31 - - references: + - gene_reaction_rule: "ENSG00000137204" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.31" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PNTOte + - id: "PNTOte" - name: "Transport of (R)-Pantothenate" - metabolites: !!omap - m02680c: 1 - m02680s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 5HOXINDOAtr + - id: "5HOXINDOAtr" - name: "Transport of 5-Hydroxyindoleacetate " - metabolites: !!omap - m01103c: 1 @@ -256940,15 +256940,15 @@ - m02946s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000004939 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000004939" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLYALDtr + - id: "GLYALDtr" - name: "Transport of Glyceraldehyde" - metabolites: !!omap - m01981c: 1 @@ -256957,15 +256957,15 @@ - m02519s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PEPtr + - id: "PEPtr" - name: "Transport of Phosphoenolpyruvate" - metabolites: !!omap - m02046c: 1 @@ -256974,15 +256974,15 @@ - m02696s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.5.1.2 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.5.1.2" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GUDACtr + - id: "GUDACtr" - name: "Transport of Guanidinoacetic Acid" - metabolites: !!omap - m01442c: 1 @@ -256993,45 +256993,45 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GUDACtr2 + - id: "GUDACtr2" - name: "Transport of Guanidinoacetic Acid" - metabolites: !!omap - m02036c: 1 - m02036s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LKYNRtr + - id: "LKYNRtr" - name: "Transport of L-Kynurenine" - metabolites: !!omap - m02319c: 1 - m02319s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149150 or ENSG00000167703 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149150 or ENSG00000167703" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LKYNRtr2 + - id: "LKYNRtr2" - name: "Transport of L-Kynurenine" - metabolites: !!omap - m02319c: 1 @@ -257040,15 +257040,15 @@ - m02724s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000092068 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000092068" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LKYNRtr3 + - id: "LKYNRtr3" - name: "Transport of L-Kynurenine" - metabolites: !!omap - m02319c: 1 @@ -257057,15 +257057,15 @@ - m02360s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149150 - - rxnFrom: Recon3D - - eccodes: 5.1.3.1 - - references: + - gene_reaction_rule: "ENSG00000149150" + - rxnFrom: "Recon3D" + - eccodes: "5.1.3.1" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: BALAPAT1tc2 + - id: "BALAPAT1tc2" - name: "Transport of 3-Ureidopropionate" - metabolites: !!omap - m00923c: 1 @@ -257076,15 +257076,15 @@ - m02519s: -2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: BALABETAtc2 + - id: "BALABETAtc2" - name: "Transport of 3-Ureidopropionate" - metabolites: !!omap - m00923c: 1 @@ -257093,30 +257093,30 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CALAtr + - id: "CALAtr" - name: "Transport of 3-Ureidopropionate" - metabolites: !!omap - m00923c: 1 - m00923s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: KYNATEtr + - id: "KYNATEtr" - name: "Transport of Kynurenic Acid" - metabolites: !!omap - m00990c: 1 @@ -257125,45 +257125,45 @@ - m01306s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149452 or ENSG00000197901 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149452 or ENSG00000197901" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: KYNATEtr2 + - id: "KYNATEtr2" - name: "Transport of Kynurenic Acid" - metabolites: !!omap - m00990c: 1 - m00990s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3ANTHRNtr + - id: "3ANTHRNtr" - name: "Transport of 3-Hydroxyanthranilate" - metabolites: !!omap - m00775c: 1 - m00775s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HKYNRtr + - id: "HKYNRtr" - name: "Transport of 3-Hydroxy-L-Kynurenine" - metabolites: !!omap - m00788c: 1 @@ -257172,15 +257172,15 @@ - m03089s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103257 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000103257" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: QULNtr + - id: "QULNtr" - name: "Transport of Quinolinic Acid" - metabolites: !!omap - m02822c: 1 @@ -257189,750 +257189,750 @@ - m02946s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197901 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197901" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 2PGtr + - id: "2PGtr" - name: "Transport of 2-Phospho-D-Glycerate" - metabolites: !!omap - m00674c: 1 - m00674s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CARNtr + - id: "CARNtr" - name: "Transport of Carnosine" - metabolites: !!omap - m01423c: 1 - m01423s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CHOLPtr + - id: "CHOLPtr" - name: "Transport of Choline Phosphate" - metabolites: !!omap - m02738c: 1 - m02738s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CYST_Ltr + - id: "CYST_Ltr" - name: "Transport of Cystine" - metabolites: !!omap - m02349c: 1 - m02349s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: DCMPtr + - id: "DCMPtr" - name: "Transport of dCMP" - metabolites: !!omap - m01644c: 1 - m01644s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: DHAPtr + - id: "DHAPtr" - name: "Transport of Dihydroxyacetone Phosphate" - metabolites: !!omap - m01690c: 1 - m01690s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: DMGLYtr + - id: "DMGLYtr" - name: "Transport of Dimethylglycine" - metabolites: !!omap - m01708c: 1 - m01708s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ETHAMPtr + - id: "ETHAMPtr" - name: "Transport of Ethanolamine Phosphate" - metabolites: !!omap - m01798c: 1 - m01798s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: FUMtr + - id: "FUMtr" - name: "Transport of Fumarate" - metabolites: !!omap - m01862c: 1 - m01862s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: G3PCtr + - id: "G3PCtr" - name: "Transport of Glycerophosphocholine" - metabolites: !!omap - m02912c: 1 - m02912s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLCURtr + - id: "GLCURtr" - name: "Transport of D-Glucuronate " - metabolites: !!omap - m01973c: 1 - m01973s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ICITtr + - id: "ICITtr" - name: "Transport of Isocitrate" - metabolites: !!omap - m02183c: 1 - m02183s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: L2AADPtr + - id: "L2AADPtr" - name: "Transport of L-2-Aminoadipate" - metabolites: !!omap - m02322c: 1 - m02322s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: XANtr + - id: "XANtr" - name: "Transport of Xanthine" - metabolites: !!omap - m03148c: 1 - m03148s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: XMPtr + - id: "XMPtr" - name: "Transport of XMP" - metabolites: !!omap - m03150c: 1 - m03150s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: XTSNtr + - id: "XTSNtr" - name: "Transport of Xanthosine" - metabolites: !!omap - m03149c: 1 - m03149s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3PGtr + - id: "3PGtr" - name: "Transport of 3-Phospho-D-Glycerate" - metabolites: !!omap - m00913c: 1 - m00913s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: UDPGLCURtr + - id: "UDPGLCURtr" - name: " Transport of UDP-Glucuronate" - metabolites: !!omap - m03109c: 1 - m03109s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: IMPtr + - id: "IMPtr" - name: "Transport of IMP" - metabolites: !!omap - m02167c: 1 - m02167s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLYC3tr + - id: "GLYC3tr" - name: "Transport of Glycerophosphoric Acid" - metabolites: !!omap - m02914c: 1 - m02914s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: NICRNtr + - id: "NICRNtr" - name: "Transport of Nicotinate D-Ribonucleotide" - metabolites: !!omap - m02585c: 1 - m02585s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: OROT5Ptr + - id: "OROT5Ptr" - name: "Transport of Orotidylic Acid " - metabolites: !!omap - m02660c: 1 - m02660s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_2pg[e] + - id: "EX_2pg[e]" - name: "Exchange of 2-Phospho-D-Glycerate" - metabolites: !!omap - m00674s: -1 - m00674x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_5hoxindoa[e] + - id: "EX_5hoxindoa[e]" - name: "Exchange of 5-Hydroxyindoleacetate" - metabolites: !!omap - m01103s: -1 - m01103x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_cala[e] + - id: "EX_cala[e]" - name: "Exchange of N-Carbamoyl-Beta-Alaninate" - metabolites: !!omap - m00923s: -1 - m00923x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_cholp[e] + - id: "EX_cholp[e]" - name: "Exchange of Choline Phosphate" - metabolites: !!omap - m02738s: -1 - m02738x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_cyst_L[e] + - id: "EX_cyst_L[e]" - name: "Exchange of L-Cystathionine" - metabolites: !!omap - m02349s: -1 - m02349x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_dcmp[e] + - id: "EX_dcmp[e]" - name: "Exchange of Deoxycytidylic Acid" - metabolites: !!omap - m01644s: -1 - m01644x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_dmgly[e] + - id: "EX_dmgly[e]" - name: "Exchange of N,N-Dimethylglycine" - metabolites: !!omap - m01708s: -1 - m01708x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_ethamp[e] + - id: "EX_ethamp[e]" - name: "Exchange of Ethanolamine Phosphate" - metabolites: !!omap - m01798s: -1 - m01798x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_g3pc[e] + - id: "EX_g3pc[e]" - name: "Exchange of Glycerophosphocholine" - metabolites: !!omap - m02912s: -1 - m02912x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_glyald[e] + - id: "EX_glyald[e]" - name: "Exchange of D-Glyceraldehyde" - metabolites: !!omap - m01981s: -1 - m01981x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_gudac[e] + - id: "EX_gudac[e]" - name: "Exchange of Guanidinoacetic Acid" - metabolites: !!omap - m02036s: -1 - m02036x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_hcys_L[e] + - id: "EX_hcys_L[e]" - name: "Exchange of L-Homocysteine" - metabolites: !!omap - m02133s: -1 - m02133x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_icit[e] + - id: "EX_icit[e]" - name: "Ex_icit[e]" - metabolites: !!omap - m02183s: -1 - m02183x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_kynate[e] + - id: "EX_kynate[e]" - name: "Exchange of Kynurenic Acid" - metabolites: !!omap - m00990s: -1 - m00990x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_L2aadp[e] + - id: "EX_L2aadp[e]" - name: "Exchange of L-2-Aminoadipate" - metabolites: !!omap - m02322s: -1 - m02322x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_Lkynr[e] + - id: "EX_Lkynr[e]" - name: "Exchange of L-Kynurenine" - metabolites: !!omap - m02319s: -1 - m02319x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pep[e] + - id: "EX_pep[e]" - name: "Exchange of Phosphoenolpyruvate" - metabolites: !!omap - m02696s: -1 - m02696x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_quln[e] + - id: "EX_quln[e]" - name: "Exchange of Quinolinic Acid" - metabolites: !!omap - m02822s: -1 - m02822x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_xmp[e] + - id: "EX_xmp[e]" - name: "Exchange of Xanthylic Acid" - metabolites: !!omap - m03150s: -1 - m03150x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_xtsn[e] + - id: "EX_xtsn[e]" - name: "Exchange of Xanthosine" - metabolites: !!omap - m03149s: -1 - m03149x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_3pg[e] + - id: "EX_3pg[e]" - name: "Exchange of 3-Phospho-D-Glycerate" - metabolites: !!omap - m00913s: -1 - m00913x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_3hanthrn[e] + - id: "EX_3hanthrn[e]" - name: "Exchange " - metabolites: !!omap - m00775s: -1 - m00775x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_udpglcur[e] + - id: "EX_udpglcur[e]" - name: "Exchange " - metabolites: !!omap - m03109s: -1 - m03109x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_hLkynr[e] + - id: "EX_hLkynr[e]" - name: "Exchange " - metabolites: !!omap - m00788s: -1 - m00788x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_nicrnt[e] + - id: "EX_nicrnt[e]" - name: "Exchange " - metabolites: !!omap - m02585s: -1 - m02585x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_orot5p[e] + - id: "EX_orot5p[e]" - name: "Exchange " - metabolites: !!omap - m02660s: -1 - m02660x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_glyc3p[e] + - id: "EX_glyc3p[e]" - name: "Exchange of Glycerophosphoric Acid" - metabolites: !!omap - m02914s: -1 - m02914x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: ALAB0AT3tc + - id: "ALAB0AT3tc" - name: "Alanine Transport by B0At3" - metabolites: !!omap - m01307c: 1 @@ -257943,15 +257943,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147003 and ENSG00000164363 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000147003 and ENSG00000164363" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ARACHDFATPtc + - id: "ARACHDFATPtc" - name: "Arachidonate (N-C18:1) Transport by FATP" - metabolites: !!omap - m01334c: 1 @@ -257962,15 +257962,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130304 or ENSG00000167114 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000130304 or ENSG00000167114" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ARGB0AT3tc + - id: "ARGB0AT3tc" - name: "Arginine Transport by B0At3" - metabolites: !!omap - m01365c: 1 @@ -257981,15 +257981,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147003 and ENSG00000164363 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000147003 and ENSG00000164363" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ASNB0AT3tc + - id: "ASNB0AT3tc" - name: "Asparagine Transport by B0At3" - metabolites: !!omap - m01369c: 1 @@ -258000,15 +258000,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147003 and ENSG00000164363 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000147003 and ENSG00000164363" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: BETBGTtc + - id: "BETBGTtc" - name: "Betaine Transport by Bgt" - metabolites: !!omap - m01393c: 1 @@ -258019,15 +258019,15 @@ - m02519s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111181 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000111181" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: BUTSMCT1 + - id: "BUTSMCT1" - name: "Butyrate Transport by Smct1" - metabolites: !!omap - m01410c: 1 @@ -258036,15 +258036,15 @@ - m02519s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000256870 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000256870" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CRNATBtc + - id: "CRNATBtc" - name: "Carnitine Transport by Atb0" - metabolites: !!omap - m01442c: 1 @@ -258055,15 +258055,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000268104 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000268104" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CYSB0AT3tc + - id: "CYSB0AT3tc" - name: "Cysteine Transport by B0At3" - metabolites: !!omap - m01442c: 1 @@ -258074,15 +258074,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147003 and ENSG00000164363 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000147003 and ENSG00000164363" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: DHEASABCCte + - id: "DHEASABCCte" - name: "Dhea Transport by ABCa11" - metabolites: !!omap - m01285c: 1 @@ -258094,15 +258094,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000121270 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000121270" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: DOPAENT4tc + - id: "DOPAENT4tc" - name: "Dopa Transport by Ent4" - metabolites: !!omap - m01736c: 1 @@ -258111,15 +258111,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000164638 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000164638" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ESTRAABCtc + - id: "ESTRAABCtc" - name: "17Beta-Estradiol 3-Glucosiduronic Acid Transport by ABCa8" - metabolites: !!omap - m01285c: 1 @@ -258131,15 +258131,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000141338 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000141338" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ESTROSABCCte + - id: "ESTROSABCCte" - name: "Estrone-Sulphate Transport by ABCa11" - metabolites: !!omap - m01285c: 1 @@ -258151,15 +258151,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000121270 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000121270" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ESTRSABCtc + - id: "ESTRSABCtc" - name: "Estrone-Sulphate Transport by ABCa8" - metabolites: !!omap - m01285c: 1 @@ -258171,15 +258171,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000141338 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000141338" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: FOLABCCte + - id: "FOLABCCte" - name: "Folate Transport by ABCa11" - metabolites: !!omap - m01285c: 1 @@ -258191,15 +258191,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005471 or ENSG00000023839 or ENSG00000103222 or ENSG00000114770 or ENSG00000118777 or ENSG00000121270 or ENSG00000125257 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000005471 or ENSG00000023839 or ENSG00000103222 or ENSG00000114770 or ENSG00000118777 or ENSG00000121270 or ENSG00000125257" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: FOLOAT1tc + - id: "FOLOAT1tc" - name: "Folate Transport by Oat1" - metabolites: !!omap - m01306c: -1 @@ -258210,15 +258210,15 @@ - m02519s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197901 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197901" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: FOLOAT2tc + - id: "FOLOAT2tc" - name: "Folate Transport by Oats" - metabolites: !!omap - m01830c: 1 @@ -258227,15 +258227,15 @@ - m02946s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137204 or ENSG00000149452 or ENSG00000168065 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000137204 or ENSG00000149452 or ENSG00000168065" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: FOLOATPtc + - id: "FOLOATPtc" - name: "Folate Transport by OATP" - metabolites: !!omap - m01830c: 1 @@ -258244,15 +258244,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 or ENSG00000134538 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000084453 or ENSG00000134538" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GABABGTtc + - id: "GABABGTtc" - name: "GABA Transport by Bgt" - metabolites: !!omap - m00970c: 1 @@ -258263,15 +258263,15 @@ - m02519s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111181 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000111181" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLNB0AT3tc + - id: "GLNB0AT3tc" - name: "Glutamine Transport by B0At3" - metabolites: !!omap - m01442c: 1 @@ -258282,15 +258282,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147003 and ENSG00000164363 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000147003 and ENSG00000164363" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLUB0AT3tc + - id: "GLUB0AT3tc" - name: "Glutamate Transport by B0At3" - metabolites: !!omap - m01442c: 1 @@ -258301,15 +258301,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147003 and ENSG00000164363 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000147003 and ENSG00000164363" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GSNt2r + - id: "GSNt2r" - name: "Guanosine Transport in via Proton Symport Reversible" - metabolites: !!omap - m02038c: 1 @@ -258318,15 +258318,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197506 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197506" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: H2OGLYAQPt + - id: "H2OGLYAQPt" - name: "Water And Glycerol Transport by Aqp" - metabolites: !!omap - m01983c: 1 @@ -258335,15 +258335,15 @@ - m02040s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103569 or ENSG00000143595 or ENSG00000165269 or ENSG00000165272 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000103569 or ENSG00000143595 or ENSG00000165269 or ENSG00000165272" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ILEB0AT3tc + - id: "ILEB0AT3tc" - name: "Iso-Leucine Transport by B0At3" - metabolites: !!omap - m01442c: 1 @@ -258354,15 +258354,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147003 and ENSG00000164363 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000147003 and ENSG00000164363" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LEUB0AT3tc + - id: "LEUB0AT3tc" - name: "Leucine Transport by B0At3" - metabolites: !!omap - m01442c: 1 @@ -258373,15 +258373,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147003 and ENSG00000164363 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000147003 and ENSG00000164363" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LEUKABCtc + - id: "LEUKABCtc" - name: "Leukotriene Transport by ABCa8" - metabolites: !!omap - m01285c: 1 @@ -258393,15 +258393,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000141338 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000141338" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LGNCFATPtc + - id: "LGNCFATPtc" - name: "Lignocerate Transport by FATP" - metabolites: !!omap - m01334c: 1 @@ -258412,15 +258412,15 @@ - m02971c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130304 or ENSG00000140284 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000130304 or ENSG00000140284" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: METB0AT3tc + - id: "METB0AT3tc" - name: "Methionine Transport by B0At3" - metabolites: !!omap - m01442c: 1 @@ -258431,15 +258431,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147003 and ENSG00000164363 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000147003 and ENSG00000164363" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: NACSMCTte + - id: "NACSMCTte" - name: "Nicotinate Transport by Smct1" - metabolites: !!omap - m02519c: 1 @@ -258448,15 +258448,15 @@ - m02586s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000256870 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000256870" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PGLYCABCte + - id: "PGLYCABCte" - name: "Phosphatidylglycerol Transport by ABCa3" - metabolites: !!omap - m01285c: 1 @@ -258468,15 +258468,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167972 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000167972" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PHEB0AT3tc + - id: "PHEB0AT3tc" - name: "Phenylalanine Transport by B0At3" - metabolites: !!omap - m01442c: 1 @@ -258487,15 +258487,15 @@ - m02724s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147003 and ENSG00000164363 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000147003 and ENSG00000164363" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PHEMEABCte + - id: "PHEMEABCte" - name: "Heme Transport by ABCg2" - metabolites: !!omap - m01285c: 1 @@ -258507,15 +258507,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000118777 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000118777" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PPASMCT1 + - id: "PPASMCT1" - name: "Propionate Transport by Smct1" - metabolites: !!omap - m02519c: 1 @@ -258524,15 +258524,15 @@ - m02772s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000256870 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000256870" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PSHSABCtc + - id: "PSHSABCtc" - name: "Phosphatidylserine Transport by ABCa1" - metabolites: !!omap - m01285c: 1 @@ -258544,15 +258544,15 @@ - m02808s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165029 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000165029" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PYRSMCT1 + - id: "PYRSMCT1" - name: "Pyruvate Transport by Smct1" - metabolites: !!omap - m02519c: 1 @@ -258561,15 +258561,15 @@ - m02819s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000256870 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000256870" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: RETABCtc + - id: "RETABCtc" - name: "Vitamin Transport by ABCa4" - metabolites: !!omap - m01285c: 1 @@ -258581,15 +258581,15 @@ - m02832s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000198691 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000198691" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SERB0AT3tc + - id: "SERB0AT3tc" - name: "Serine Transport by B0At3" - metabolites: !!omap - m01442c: 1 @@ -258600,15 +258600,15 @@ - m02896s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147003 and ENSG00000164363 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000147003 and ENSG00000164363" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SRTNENT4tc + - id: "SRTNENT4tc" - name: "Serotonin Transport by Ent4" - metabolites: !!omap - m02039c: 1 @@ -258617,15 +258617,15 @@ - m02897s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000164638 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000164638" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TCHOLABCtc + - id: "TCHOLABCtc" - name: "Bile Acid Transport by ABCa8" - metabolites: !!omap - m01285c: 1 @@ -258637,15 +258637,15 @@ - m02963s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000141338 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000141338" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TRPB0AT3tc + - id: "TRPB0AT3tc" - name: "Tyrptophan Transport by B0At3" - metabolites: !!omap - m01442c: 1 @@ -258656,15 +258656,15 @@ - m03089s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147003 and ENSG00000164363 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000147003 and ENSG00000164363" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TYRB0AT3tc + - id: "TYRB0AT3tc" - name: "Tyrosine Transport by B0At3" - metabolites: !!omap - m01442c: 1 @@ -258675,15 +258675,15 @@ - m03101s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147003 and ENSG00000164363 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000147003 and ENSG00000164363" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: VALB0AT3tc + - id: "VALB0AT3tc" - name: "Valine Transport by B0At3" - metabolites: !!omap - m01442c: 1 @@ -258694,15 +258694,15 @@ - m03135s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000147003 and ENSG00000164363 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000147003 and ENSG00000164363" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: RIBFLVte + - id: "RIBFLVte" - name: "Secretion of Riboflavin" - metabolites: !!omap - m01285c: 1 @@ -258714,30 +258714,30 @@ - m02842s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000132517 or ENSG00000185803 - - rxnFrom: Recon3D - - eccodes: - - references: G.F.M. Ball (2006) Vitamins their role in the human body, Blackwell publishing, chapter 12, page 291-292, PMID: 21854757, PMID: 20463145, Said HM, Hollander D, Mohammadkhani R. (1993). Biochimica et Biophysica Acta (BBA) - Biomembranes 1148: 263-8. + - gene_reaction_rule: "ENSG00000132517 or ENSG00000185803" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "G.F.M. Ball (2006) Vitamins their role in the human body, Blackwell publishing, chapter 12, page 291-292, PMID: 21854757, PMID: 20463145, Said HM, Hollander D, Mohammadkhani R. (1993). Biochimica et Biophysica Acta (BBA) - Biomembranes 1148: 263-8." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ARGSUCte + - id: "ARGSUCte" - name: "Transport of L-Arginosuccinic Acid" - metabolites: !!omap - m01366c: -1 - m01366s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ACRNte + - id: "ACRNte" - name: "Transport of O-Acetylcarnitine" - metabolites: !!omap - m02519c: -1 @@ -258746,15 +258746,15 @@ - m02634s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCRNte + - id: "PCRNte" - name: "Transport of O-Propanoylcarnitine" - metabolites: !!omap - m02519c: -1 @@ -258763,15 +258763,15 @@ - m02657s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LNELDCCRNte + - id: "LNELDCCRNte" - name: "Transport of 6Z,9Z-Octadecadienoylcarnitine" - metabolites: !!omap - m00105c: -1 @@ -258780,15 +258780,15 @@ - m02519s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ODECRNte + - id: "ODECRNte" - name: "Transport of L-Oleoylcarnitine" - metabolites: !!omap - m02519c: -1 @@ -258797,15 +258797,15 @@ - m02639s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: STCRNte + - id: "STCRNte" - name: "Transport of O-Octadecanoyl-R-Carnitine" - metabolites: !!omap - m02519c: -1 @@ -258814,15 +258814,15 @@ - m02940s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PMTCRNte + - id: "PMTCRNte" - name: "Transport of L-Palmitoylcarnitine" - metabolites: !!omap - m02411c: -1 @@ -258831,15 +258831,15 @@ - m02519s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HDCECRNte + - id: "HDCECRNte" - name: "Transport of Palmitoleoyl-Carnitine" - metabolites: !!omap - m02519c: -1 @@ -258848,150 +258848,150 @@ - m02676s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197375 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197375" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_argsuc[e] + - id: "EX_argsuc[e]" - name: "Exchange of L-Arginosuccinic Acid" - metabolites: !!omap - m01366s: -1 - m01366x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_acrn[e] + - id: "EX_acrn[e]" - name: "Exchange of O-Acetylcarnitine" - metabolites: !!omap - m02634s: -1 - m02634x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pcrn[e] + - id: "EX_pcrn[e]" - name: "Exchange of O-Propanoylcarnitine" - metabolites: !!omap - m02657s: -1 - m02657x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_lneldccrn[e] + - id: "EX_lneldccrn[e]" - name: "Exchange of 6Z,9Z-Octadecadienoylcarnitine" - metabolites: !!omap - m00105s: -1 - m00105x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_odecrn[e] + - id: "EX_odecrn[e]" - name: "Exchange of L-Oleoylcarnitine" - metabolites: !!omap - m02639s: -1 - m02639x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_stcrn[e] + - id: "EX_stcrn[e]" - name: "Exchange of O-Octadecanoyl-R-Carnitine" - metabolites: !!omap - m02940s: -1 - m02940x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pmtcrn[e] + - id: "EX_pmtcrn[e]" - name: "Exchange of L-Palmitoylcarnitine" - metabolites: !!omap - m02411s: -1 - m02411x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_hdcecrn[e] + - id: "EX_hdcecrn[e]" - name: "Exchange of Palmitoleoyl-Carnitine" - metabolites: !!omap - m02676s: -1 - m02676x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: PCREATte + - id: "PCREATte" - name: "Transport of Creatine Phosphate, Extracellular (Assumed Diffusion)" - metabolites: !!omap - m01620c: -1 - m01620s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HC00342te + - id: "HC00342te" - name: "Transport of Cis-Aconitate, Extracellular" - metabolites: !!omap - m01580c: -1 @@ -259000,45 +259000,45 @@ - m02519s: 3 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C08261te + - id: "C08261te" - name: "Transport of Azelaic Acid (C08261, Azelate), Extracellular" - metabolites: !!omap - m01372c: -1 - m01372s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: BGLYte + - id: "BGLYte" - name: "Transport of Hippurate (Benzoylglycine), Extracellular" - metabolites: !!omap - m02123c: -1 - m02123s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: biomass_maintenance_Recon3D + - id: "biomass_maintenance_Recon3D" - name: "Biomass maintenance reaction without replication precursors" - metabolites: !!omap - m01285c: 20.6508 @@ -259081,15 +259081,15 @@ - temp001c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Artificial reactions + - "Artificial reactions" - confidence_score: 0 - !!omap - - id: biomass_maintenance_noTrTr_Recon3D + - id: "biomass_maintenance_noTrTr_Recon3D" - name: "Biomass maintenance reaction without replication, transcription, and translation precursors" - metabolites: !!omap - m01285c: 20.6508 @@ -259109,15 +259109,15 @@ - temp001c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Artificial reactions + - "Artificial reactions" - confidence_score: 0 - !!omap - - id: ALPA_HSx + - id: "ALPA_HSx" - name: "Acyl-DHAP Reductase" - metabolites: !!omap - alpa_hs_p: 1 @@ -259127,15 +259127,15 @@ - m02555p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.1.1.101 - - references: PMID: 23026158, PMID: 15376627 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.101" + - references: "PMID: 23026158, PMID: 15376627" - subsystem: - - Triacylglycerol synthesis + - "Triacylglycerol synthesis" - confidence_score: 0 - !!omap - - id: 15KPROSTGF2c + - id: "15KPROSTGF2c" - name: "Formation of 15-Keto-Prostaglandin F2A" - metabolites: !!omap - 15kprostgf2_c: 1 @@ -259145,15 +259145,15 @@ - m02789c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000164120 - - rxnFrom: Recon3D - - eccodes: 1.1.1.141;1.1.1.196 - - references: PMID: 21962087 + - gene_reaction_rule: "ENSG00000164120" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.141;1.1.1.196" + - references: "PMID: 21962087" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: ADPOHc + - id: "ADPOHc" - name: "Hydroxylation of 2-Oxoadipate" - metabolites: !!omap - adpoh_c: 1 @@ -259163,15 +259163,15 @@ - m02553c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.1.1.172 - - references: PMID: 21962087 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.172" + - references: "PMID: 21962087" - subsystem: - - Lysine metabolism + - "Lysine metabolism" - confidence_score: 0 - !!omap - - id: PHLAC + - id: "PHLAC" - name: "Formation of Phenyl-Lactate" - metabolites: !!omap - m02039c: 1 @@ -259181,15 +259181,15 @@ - phlac_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.1.1.28 - - references: HMDB00748 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.28" + - references: "HMDB00748" - subsystem: - - Phenylalanine metabolism + - "Phenylalanine metabolism" - confidence_score: 0 - !!omap - - id: AND19ONEc + - id: "AND19ONEc" - name: "Hydroxylation of Androst-4-Ene-3, 17-Dione" - metabolites: !!omap - and19one_c: 1 @@ -259201,15 +259201,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100197 - - rxnFrom: Recon3D - - eccodes: 1.14.14.1 - - references: PMID: 21962087 + - gene_reaction_rule: "ENSG00000100197" + - rxnFrom: "Recon3D" + - eccodes: "1.14.14.1" + - references: "PMID: 21962087" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: DESAT14_9 + - id: "DESAT14_9" - name: "Desaturation of Myristic Acid to 9-Tetradecenoic Acid" - metabolites: !!omap - m02039c: -1 @@ -259221,15 +259221,15 @@ - ttdceacoa_c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134824 - - rxnFrom: Recon3D - - eccodes: 1.14.19.1 - - references: + - gene_reaction_rule: "ENSG00000134824" + - rxnFrom: "Recon3D" + - eccodes: "1.14.19.1" + - references: "" - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: 21HPRGNLONE + - id: "21HPRGNLONE" - name: "Formation of 21-Hydroxypregnenolone" - metabolites: !!omap - 21hprgnlone_c: 1 @@ -259241,15 +259241,15 @@ - m02763c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000231852 - - rxnFrom: Recon3D - - eccodes: 1.14.99.10 - - references: PMID: 21962087 + - gene_reaction_rule: "ENSG00000231852" + - rxnFrom: "Recon3D" + - eccodes: "1.14.99.10" + - references: "PMID: 21962087" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: 3MHISc + - id: "3MHISc" - name: "Formation of Methyl-Histidine" - metabolites: !!omap - 3mhis_c: 1 @@ -259259,15 +259259,15 @@ - m02877c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.1.1.- - - references: PMID: 21962087 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.1.1.-" + - references: "PMID: 21962087" - subsystem: - - Histidine metabolism + - "Histidine metabolism" - confidence_score: 0 - !!omap - - id: HMCRNc + - id: "HMCRNc" - name: "Formation of Homocitrulline" - metabolites: !!omap - hmcr_c: 1 @@ -259277,15 +259277,15 @@ - m02751c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.1.3.8 - - references: PMID: 21962087 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.1.3.8" + - references: "PMID: 21962087" - subsystem: - - Lysine metabolism + - "Lysine metabolism" - confidence_score: 0 - !!omap - - id: PHACGLYc + - id: "PHACGLYc" - name: "Glycine N-Acyltransferase, Phenylacetate" - metabolites: !!omap - m01597c: 1 @@ -259295,15 +259295,15 @@ - phacgly_c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.3.1.13 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.13" + - references: "" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: LCAT10e + - id: "LCAT10e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 1-Myristoylglycerophosphocholine" - metabolites: !!omap - m01450s: -1 @@ -259312,15 +259312,15 @@ - pcholmyr_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT11e + - id: "LCAT11e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 1-Oleoylglycerophosphocholine (Delta 9)" - metabolites: !!omap - m01450s: -1 @@ -259329,15 +259329,15 @@ - pcholole_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT12e + - id: "LCAT12e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 1-Oleoylglycerophosphoethanolamine (Delta 9)" - metabolites: !!omap - m01450s: -1 @@ -259346,15 +259346,15 @@ - peole_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT13e + - id: "LCAT13e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 1-Palmitoleoylglycerophosphocholine (Delta 9)" - metabolites: !!omap - m01450s: -1 @@ -259363,15 +259363,15 @@ - pcholpalme_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT14e + - id: "LCAT14e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 1-Palmitoylglycerophosphocholine" - metabolites: !!omap - m01450s: -1 @@ -259380,15 +259380,15 @@ - pcholpalm_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT54e + - id: "LCAT54e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 1-Palmitoylglycerophosphoethanolamine" - metabolites: !!omap - m01450s: -1 @@ -259397,15 +259397,15 @@ - pepalm_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT55e + - id: "LCAT55e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 1-Palmitoylglycerophosphoinositol" - metabolites: !!omap - m01450s: -1 @@ -259414,15 +259414,15 @@ - pailpalm_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT15e + - id: "LCAT15e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 1-Stearoylglycerophosphocholine" - metabolites: !!omap - m01450s: -1 @@ -259431,15 +259431,15 @@ - pcholste_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT16e + - id: "LCAT16e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 1-Stearoylglycerophosphoethanolamine" - metabolites: !!omap - m01450s: -1 @@ -259448,15 +259448,15 @@ - peste_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT17e + - id: "LCAT17e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 1-Stearoylglycerophosphoinositol" - metabolites: !!omap - m01450s: -1 @@ -259465,15 +259465,15 @@ - pailste_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT18e + - id: "LCAT18e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 2-Linoleoylglycerophosphocholine" - metabolites: !!omap - m01450s: -1 @@ -259482,15 +259482,15 @@ - pchol2linl_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT19e + - id: "LCAT19e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 2-Linoleoylglycerophosphoethanolamine" - metabolites: !!omap - m01450s: -1 @@ -259499,15 +259499,15 @@ - pe2linl_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT20e + - id: "LCAT20e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 2-Oleoylglycerophosphocholine" - metabolites: !!omap - m01450s: -1 @@ -259516,15 +259516,15 @@ - pchol2ole_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT21e + - id: "LCAT21e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 2-Palmitoylglycerophosphocholine" - metabolites: !!omap - m01450s: -1 @@ -259533,15 +259533,15 @@ - pchol2palm_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT22e + - id: "LCAT22e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 2-Stearoylglycerophosphocholine" - metabolites: !!omap - m01450s: -1 @@ -259550,15 +259550,15 @@ - pchol2ste_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT23e + - id: "LCAT23e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of Cholesterol-Ester (18:3)" - metabolites: !!omap - m00656s: 1 @@ -259567,15 +259567,15 @@ - xolest183_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT25e + - id: "LCAT25e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of Cholesterol-Ester (18:1)" - metabolites: !!omap - m00656s: 1 @@ -259584,15 +259584,15 @@ - xolest181_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT26e + - id: "LCAT26e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of Cholesterol-Ester (20:5)" - metabolites: !!omap - m00656s: 1 @@ -259601,15 +259601,15 @@ - xolest205_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT27e + - id: "LCAT27e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of Cholesterol-Ester (20:4)" - metabolites: !!omap - m00656s: 1 @@ -259618,15 +259618,15 @@ - xolest204_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT28e + - id: "LCAT28e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of Cholesterol-Ester (22:6)" - metabolites: !!omap - m00656s: 1 @@ -259635,15 +259635,15 @@ - xolest226_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT29e + - id: "LCAT29e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 1-Pentadecanoylglycerophosphocholine" - metabolites: !!omap - m01450s: -1 @@ -259652,15 +259652,15 @@ - pcholn15_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT2e + - id: "LCAT2e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 1-Arachidonoylglycerophosphocholine" - metabolites: !!omap - m01450s: -1 @@ -259669,15 +259669,15 @@ - pcholar_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT30e + - id: "LCAT30e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 1-Octadeca-Trienoylglycerophosphocholine" - metabolites: !!omap - m01450s: -1 @@ -259686,15 +259686,15 @@ - pcholn183_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT31e + - id: "LCAT31e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 1-Octadeca-Trienoylglycerophosphocholine (Delta 6, 9, 12)" - metabolites: !!omap - m01450s: -1 @@ -259703,15 +259703,15 @@ - pcholn1836_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT32e + - id: "LCAT32e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 1-NoNADecanoylglycerophosphocholine" - metabolites: !!omap - m01450s: -1 @@ -259720,15 +259720,15 @@ - pcholn19_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT33e + - id: "LCAT33e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 1-Eicosenoylglycerophosphocholine (Delta 11)" - metabolites: !!omap - m01450s: -1 @@ -259737,15 +259737,15 @@ - pcholn201_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT34e + - id: "LCAT34e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 1-Eicosatetraenoylglycerophosphocholine (Delta 8, 11, 14, 17)" - metabolites: !!omap - m01450s: -1 @@ -259754,15 +259754,15 @@ - pcholn204_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT35e + - id: "LCAT35e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 1-Eicosapentenoylglycerophosphocholine (Delta 5, 8, 11, 14, 17)" - metabolites: !!omap - m01450s: -1 @@ -259771,15 +259771,15 @@ - pcholn205_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT36e + - id: "LCAT36e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 1-Docosatetraenoylglycerophosphocholine (Delta 7, 10, 13, 16)" - metabolites: !!omap - m01450s: -1 @@ -259788,15 +259788,15 @@ - pcholn224_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT37e + - id: "LCAT37e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 1-Docosapentenoylglycerophosphocholine (Delta 7, 10, 13, 16, 19)" - metabolites: !!omap - m01450s: -1 @@ -259805,15 +259805,15 @@ - pcholn225_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT38e + - id: "LCAT38e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 1-Docosapentenoylglycerophosphocholine (Delta 4, 7, 10, 13, 16)" - metabolites: !!omap - m01450s: -1 @@ -259822,15 +259822,15 @@ - pcholn2254_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT39e + - id: "LCAT39e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 1-Docosahexenoylglycerophosphocholine (Delta 4, 7, 10, 13, 16, 19)" - metabolites: !!omap - m01450s: -1 @@ -259839,15 +259839,15 @@ - pcholn226_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT3e + - id: "LCAT3e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 1-Arachidonoylglycerophosphoethanolamine" - metabolites: !!omap - m01450s: -1 @@ -259856,15 +259856,15 @@ - pear_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT40e + - id: "LCAT40e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 1-Eicosatrienoylglycerophosphoethanolamine (Delta 11, 14, 17)" - metabolites: !!omap - m01450s: -1 @@ -259873,15 +259873,15 @@ - pe203_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT41e + - id: "LCAT41e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 1-Docosahexenoylglyceroethanolamine (Delta 4, 7, 10, 13, 16, 19)" - metabolites: !!omap - m01450s: -1 @@ -259890,15 +259890,15 @@ - pe226_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT42e + - id: "LCAT42e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 1-Docosatetraenoyglycerophosphoethanolamine (22:4, Delta 7, 10, 13, 16)" - metabolites: !!omap - m01450s: -1 @@ -259907,15 +259907,15 @@ - pe224_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT43e + - id: "LCAT43e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 1-Dihomo-Linolenoylglycerophosphoethanolamine (20:3, Delta 8, 11, 14)" - metabolites: !!omap - m01450s: -1 @@ -259924,15 +259924,15 @@ - pedh203_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT44e + - id: "LCAT44e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 1-Didecanoylglycerophosphoethanolamine (C12:0 Pe)" - metabolites: !!omap - m01450s: -1 @@ -259941,15 +259941,15 @@ - pe12_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT45e + - id: "LCAT45e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 1-Myristoylglycerophosphoethanolamine (C14:0 Pe)" - metabolites: !!omap - m01450s: -1 @@ -259958,15 +259958,15 @@ - pe14_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT56e + - id: "LCAT56e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 1-Hexadecenoylglycerophosphoethanolamine (C16:1 Pe, Delta 9)" - metabolites: !!omap - m01450s: -1 @@ -259975,15 +259975,15 @@ - pe161_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT46e + - id: "LCAT46e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 1-Tridecanoylglycerophosphoethanolamine (C13:0 Pe)" - metabolites: !!omap - m01450s: -1 @@ -259992,15 +259992,15 @@ - pe13_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT47e + - id: "LCAT47e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 1-Pentadecanoylglycerophosphoethanolamine (C15:0 Pe)" - metabolites: !!omap - m01450s: -1 @@ -260009,15 +260009,15 @@ - pe15_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT48e + - id: "LCAT48e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 1-Heptadecanoylglycerophosphoethanolamine (C17:0 Pe)" - metabolites: !!omap - m01450s: -1 @@ -260026,15 +260026,15 @@ - pe17_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT49e + - id: "LCAT49e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 1-Dihomo-Linolenoylglycerophosphocholine (20:3, Delta 8, 11, 14)" - metabolites: !!omap - m01450s: -1 @@ -260043,15 +260043,15 @@ - pcholn203_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT4e + - id: "LCAT4e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 1-Arachidonoylglycerophosphoinositol" - metabolites: !!omap - m01450s: -1 @@ -260060,15 +260060,15 @@ - pailar_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT50e + - id: "LCAT50e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 1-1-Lignocericylglycerophosphocholine (24:0)" - metabolites: !!omap - m01450s: -1 @@ -260077,15 +260077,15 @@ - pcholn24_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT51e + - id: "LCAT51e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of Lysopc A C26:1 (Delta 5)" - metabolites: !!omap - m01450s: -1 @@ -260094,15 +260094,15 @@ - pcholn261_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT52e + - id: "LCAT52e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of Lysopc A C28:1 (Delta 5)" - metabolites: !!omap - m01450s: -1 @@ -260111,15 +260111,15 @@ - pcholn281_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT53e + - id: "LCAT53e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of Lysopc A C28:0" - metabolites: !!omap - m01450s: -1 @@ -260128,15 +260128,15 @@ - pcholn28_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT57e + - id: "LCAT57e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 1-Docosahexaenoylglycerophosphocholine" - metabolites: !!omap - m01450s: -1 @@ -260145,15 +260145,15 @@ - pcholdoc_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT5e + - id: "LCAT5e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 1-Eicosadienoylglycerophosphocholine (Delta 11, 14)" - metabolites: !!omap - m01450s: -1 @@ -260162,15 +260162,15 @@ - pcholeic_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT6e + - id: "LCAT6e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 1-Eicosatrienoylglycerophosphocholine (Delta 11, 14, 17)" - metabolites: !!omap - m01450s: -1 @@ -260179,15 +260179,15 @@ - pcholet_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT7e + - id: "LCAT7e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 1-Heptadecanoylglycerophosphocholine" - metabolites: !!omap - m01450s: -1 @@ -260196,15 +260196,15 @@ - pcholhep_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT8e + - id: "LCAT8e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 1-Linoleoylglycerophosphocholine (Delta 9, 12)" - metabolites: !!omap - m01450s: -1 @@ -260213,15 +260213,15 @@ - pchollinl_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: LCAT9e + - id: "LCAT9e" - name: "Lecithin-Cholesterol Acyltransferase, Formation of 1-Linoleoylglycerophosphoethanolamine (Delta 9, 12)" - metabolites: !!omap - m01450s: -1 @@ -260230,15 +260230,15 @@ - pelinl_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000213398 - - rxnFrom: Recon3D - - eccodes: 2.3.1.43 - - references: PMID: 22566575 + - gene_reaction_rule: "ENSG00000213398" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.43" + - references: "PMID: 22566575" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: SMS1 + - id: "SMS1" - name: "Sphingomyelin Synthase, Formation of Sm (D18:1/14:0)" - metabolites: !!omap - m00240c: 1 @@ -260247,15 +260247,15 @@ - sphmyln18114_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000164023 or ENSG00000198964 - - rxnFrom: Recon3D - - eccodes: 2.7.8.27 - - references: HMDB01348 + - gene_reaction_rule: "ENSG00000164023 or ENSG00000198964" + - rxnFrom: "Recon3D" + - eccodes: "2.7.8.27" + - references: "HMDB01348" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: SMS10 + - id: "SMS10" - name: "Sphingomyelin Synthase, Formation of Sm (D18:1/21:0)" - metabolites: !!omap - m00240c: 1 @@ -260264,15 +260264,15 @@ - sphmyln18121_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000164023 or ENSG00000198964 - - rxnFrom: Recon3D - - eccodes: 2.7.8.27 - - references: HMDB01348 + - gene_reaction_rule: "ENSG00000164023 or ENSG00000198964" + - rxnFrom: "Recon3D" + - eccodes: "2.7.8.27" + - references: "HMDB01348" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: SMS11 + - id: "SMS11" - name: "Sphingomyelin Synthase, Formation of Sm (D18:1/22:1)" - metabolites: !!omap - m00240c: 1 @@ -260281,15 +260281,15 @@ - sphmyln181221_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000164023 or ENSG00000198964 - - rxnFrom: Recon3D - - eccodes: 2.7.8.27 - - references: HMDB01348 + - gene_reaction_rule: "ENSG00000164023 or ENSG00000198964" + - rxnFrom: "Recon3D" + - eccodes: "2.7.8.27" + - references: "HMDB01348" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: SMS12 + - id: "SMS12" - name: "Sphingomyelin Synthase, Formation of Sm (D18:1/22:0)" - metabolites: !!omap - m00240c: 1 @@ -260298,15 +260298,15 @@ - sphmyln18122_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000164023 or ENSG00000198964 - - rxnFrom: Recon3D - - eccodes: 2.7.8.27 - - references: HMDB01348 + - gene_reaction_rule: "ENSG00000164023 or ENSG00000198964" + - rxnFrom: "Recon3D" + - eccodes: "2.7.8.27" + - references: "HMDB01348" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: SMS16 + - id: "SMS16" - name: "Sphingomyelin Synthase, Formation of Sm (D18:1/23:0)" - metabolites: !!omap - m00240c: 1 @@ -260315,15 +260315,15 @@ - sphmyln18123_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000164023 or ENSG00000198964 - - rxnFrom: Recon3D - - eccodes: 2.7.8.27 - - references: HMDB01348 + - gene_reaction_rule: "ENSG00000164023 or ENSG00000198964" + - rxnFrom: "Recon3D" + - eccodes: "2.7.8.27" + - references: "HMDB01348" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: SMS13 + - id: "SMS13" - name: "Sphingomyelin Synthase, Formation of Sm (D18:0/24:1)" - metabolites: !!omap - m00240c: 1 @@ -260332,15 +260332,15 @@ - sphmyln180241_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000164023 or ENSG00000198964 - - rxnFrom: Recon3D - - eccodes: 2.7.8.27 - - references: HMDB01348 + - gene_reaction_rule: "ENSG00000164023 or ENSG00000198964" + - rxnFrom: "Recon3D" + - eccodes: "2.7.8.27" + - references: "HMDB01348" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: SMS14 + - id: "SMS14" - name: "Sphingomyelin Synthase, Formation of Sm (D18:0/24:0)" - metabolites: !!omap - m00240c: 1 @@ -260349,15 +260349,15 @@ - sphmyln1824_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000164023 or ENSG00000198964 - - rxnFrom: Recon3D - - eccodes: 2.7.8.27 - - references: HMDB01348 + - gene_reaction_rule: "ENSG00000164023 or ENSG00000198964" + - rxnFrom: "Recon3D" + - eccodes: "2.7.8.27" + - references: "HMDB01348" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: SMS15 + - id: "SMS15" - name: "Sphingomyelin Synthase, Formation of Sm (D18:0/24:0)" - metabolites: !!omap - m00240c: 1 @@ -260366,15 +260366,15 @@ - sphmyln1825_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000164023 or ENSG00000198964 - - rxnFrom: Recon3D - - eccodes: 2.7.8.27 - - references: HMDB01348 + - gene_reaction_rule: "ENSG00000164023 or ENSG00000198964" + - rxnFrom: "Recon3D" + - eccodes: "2.7.8.27" + - references: "HMDB01348" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: SMS2 + - id: "SMS2" - name: "Sphingomyelin Synthase, Formation of Sm (D18:1/15:0)" - metabolites: !!omap - m00240c: 1 @@ -260383,15 +260383,15 @@ - sphmyln18115_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000164023 or ENSG00000198964 - - rxnFrom: Recon3D - - eccodes: 2.7.8.27 - - references: HMDB01348 + - gene_reaction_rule: "ENSG00000164023 or ENSG00000198964" + - rxnFrom: "Recon3D" + - eccodes: "2.7.8.27" + - references: "HMDB01348" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: SMS3 + - id: "SMS3" - name: "Sphingomyelin Synthase, Formation of Sm (D18:1/16:1)" - metabolites: !!omap - m00240c: 1 @@ -260400,15 +260400,15 @@ - sphmyln181161_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000164023 or ENSG00000198964 - - rxnFrom: Recon3D - - eccodes: 2.7.8.27 - - references: HMDB01348 + - gene_reaction_rule: "ENSG00000164023 or ENSG00000198964" + - rxnFrom: "Recon3D" + - eccodes: "2.7.8.27" + - references: "HMDB01348" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: SMS4 + - id: "SMS4" - name: "Sphingomyelin Synthase, Formation of Sm (D18:1/16:0)" - metabolites: !!omap - m00240c: 1 @@ -260417,15 +260417,15 @@ - sphmyln18116_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000164023 or ENSG00000198964 - - rxnFrom: Recon3D - - eccodes: 2.7.8.27 - - references: HMDB01348 + - gene_reaction_rule: "ENSG00000164023 or ENSG00000198964" + - rxnFrom: "Recon3D" + - eccodes: "2.7.8.27" + - references: "HMDB01348" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: SMS5 + - id: "SMS5" - name: "Sphingomyelin Synthase, Formation of Sm (D18:1/17:0)" - metabolites: !!omap - m00240c: 1 @@ -260434,15 +260434,15 @@ - sphmyln18117_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000164023 or ENSG00000198964 - - rxnFrom: Recon3D - - eccodes: 2.7.8.27 - - references: HMDB01348 + - gene_reaction_rule: "ENSG00000164023 or ENSG00000198964" + - rxnFrom: "Recon3D" + - eccodes: "2.7.8.27" + - references: "HMDB01348" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: SMS6 + - id: "SMS6" - name: "Sphingomyelin Synthase, Formation of Sm (D18:1/18:0)" - metabolites: !!omap - m00240c: 1 @@ -260451,15 +260451,15 @@ - sphmyln18118_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000164023 or ENSG00000198964 - - rxnFrom: Recon3D - - eccodes: 2.7.8.27 - - references: HMDB01348 + - gene_reaction_rule: "ENSG00000164023 or ENSG00000198964" + - rxnFrom: "Recon3D" + - eccodes: "2.7.8.27" + - references: "HMDB01348" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: SMS7 + - id: "SMS7" - name: "Sphingomyelin Synthase, Formation of Sm (D18:1/18:1)" - metabolites: !!omap - m00240c: 1 @@ -260468,15 +260468,15 @@ - sphmyln181181_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000164023 or ENSG00000198964 - - rxnFrom: Recon3D - - eccodes: 2.7.8.27 - - references: HMDB01348 + - gene_reaction_rule: "ENSG00000164023 or ENSG00000198964" + - rxnFrom: "Recon3D" + - eccodes: "2.7.8.27" + - references: "HMDB01348" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: SMS8 + - id: "SMS8" - name: "Sphingomyelin Synthase, Formation of Sm (D18:1/20:1)" - metabolites: !!omap - m00240c: 1 @@ -260485,15 +260485,15 @@ - sphmyln181201_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000164023 or ENSG00000198964 - - rxnFrom: Recon3D - - eccodes: 2.7.8.27 - - references: HMDB01348 + - gene_reaction_rule: "ENSG00000164023 or ENSG00000198964" + - rxnFrom: "Recon3D" + - eccodes: "2.7.8.27" + - references: "HMDB01348" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: SMS9 + - id: "SMS9" - name: "Sphingomyelin Synthase, Formation of Sm (D18:1/20:0)" - metabolites: !!omap - m00240c: 1 @@ -260502,15 +260502,15 @@ - sphmyln18120_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000164023 or ENSG00000198964 - - rxnFrom: Recon3D - - eccodes: 2.7.8.27 - - references: HMDB01348 + - gene_reaction_rule: "ENSG00000164023 or ENSG00000198964" + - rxnFrom: "Recon3D" + - eccodes: "2.7.8.27" + - references: "HMDB01348" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: XOLEST183CEH + - id: "XOLEST183CEH" - name: "Hydrolysis of 1-Gamma-Linolenoyl-Cholesterol, Cholesterol-Ester (18:3, Delta 6, 9, 12)" - metabolites: !!omap - m01450l: 1 @@ -260520,15 +260520,15 @@ - xolest183_hs_l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: Recon3D - - eccodes: 3.1.1.13 - - references: PMID: 377822 + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.13" + - references: "PMID: 377822" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: XOLEST182CEH + - id: "XOLEST182CEH" - name: "Hydrolysis of 1-Linoleoyl-Cholesterol, Cholesterol-Ester (18:2, Delta 9, 12)" - metabolites: !!omap - m01450l: 1 @@ -260538,15 +260538,15 @@ - xolest182_hs_l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: Recon3D - - eccodes: 3.1.1.13 - - references: PMID: 377822 + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.13" + - references: "PMID: 377822" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: XOLEST181CEH + - id: "XOLEST181CEH" - name: "Hydrolysis of 1-Vaccenoyl-Cholesterol, Cholesterol-Ester (18:1, Delta 11)" - metabolites: !!omap - m01450l: 1 @@ -260556,15 +260556,15 @@ - xolest181_hs_l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: Recon3D - - eccodes: 3.1.1.13 - - references: PMID: 377822 + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.13" + - references: "PMID: 377822" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: XOLEST205CEH + - id: "XOLEST205CEH" - name: "Hydrolysis of 1-Timnodnoyl-Cholesterol, Cholesterol-Ester (20:5, Delta 5, 8, 11, 14, 17)" - metabolites: !!omap - m01450l: 1 @@ -260574,15 +260574,15 @@ - xolest205_hs_l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: Recon3D - - eccodes: 3.1.1.13 - - references: PMID: 377822 + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.13" + - references: "PMID: 377822" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: XOLEST204CEH + - id: "XOLEST204CEH" - name: "Hydrolysis of Cholesteryl Arachidonate, Cholesterol-Ester (20:4, Delta 5, 8, 11, 14)" - metabolites: !!omap - m01362l: 1 @@ -260592,15 +260592,15 @@ - xolest204_hs_l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: Recon3D - - eccodes: 3.1.1.13 - - references: PMID: 377822 + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.13" + - references: "PMID: 377822" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: XOLEST226CEH + - id: "XOLEST226CEH" - name: "Hydrolysis of Cholesteryl Docosahexanoate, Cholesterol-Ester (22:6, Delta 4, 7, 10, 13, 16, 19)" - metabolites: !!omap - m01450l: 1 @@ -260610,15 +260610,15 @@ - xolest226_hs_l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000107798 or ENSG00000170835 - - rxnFrom: Recon3D - - eccodes: 3.1.1.13 - - references: PMID: 377822 + - gene_reaction_rule: "ENSG00000107798 or ENSG00000170835" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.13" + - references: "PMID: 377822" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: MAGLINL_HSe + - id: "MAGLINL_HSe" - name: "Lipase, Extracellular, Formation of 1-Linoleoylglycerol" - metabolites: !!omap - Rtotal_s: 1 @@ -260628,15 +260628,15 @@ - maglinl_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000170835 or ENSG00000175445 - - rxnFrom: Recon3D - - eccodes: 3.1.1.3 - - references: PMID: 11717312 + - gene_reaction_rule: "ENSG00000170835 or ENSG00000175445" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.3" + - references: "PMID: 11717312" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: MAGOLE_HSe + - id: "MAGOLE_HSe" - name: "Lipase, Extracellular, Formation of 1-Oleoylglycerol" - metabolites: !!omap - Rtotal_s: 1 @@ -260646,15 +260646,15 @@ - magole_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000170835 or ENSG00000175445 - - rxnFrom: Recon3D - - eccodes: 3.1.1.3 - - references: PMID: 11717312 + - gene_reaction_rule: "ENSG00000170835 or ENSG00000175445" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.3" + - references: "PMID: 11717312" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: LPS5e + - id: "LPS5e" - name: "Lipase, Extracellular, Formation of 1-Palmitoylglycerol" - metabolites: !!omap - Rtotal_s: 1 @@ -260664,15 +260664,15 @@ - magpalm_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000170835 or ENSG00000175445 - - rxnFrom: Recon3D - - eccodes: 3.1.1.3 - - references: PMID: 11717312 + - gene_reaction_rule: "ENSG00000170835 or ENSG00000175445" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.3" + - references: "PMID: 11717312" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: LPS6e + - id: "LPS6e" - name: "Lipase, Extracellular, Formation of 1-Stearoylglycerol" - metabolites: !!omap - Rtotal_s: 1 @@ -260682,15 +260682,15 @@ - magste_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000170835 or ENSG00000175445 - - rxnFrom: Recon3D - - eccodes: 3.1.1.3 - - references: PMID: 11717312 + - gene_reaction_rule: "ENSG00000170835 or ENSG00000175445" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.3" + - references: "PMID: 11717312" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: LPS7e + - id: "LPS7e" - name: "Lipase, Extracellular, Formation of 1-Linoleoylglycerol" - metabolites: !!omap - Rtotal_s: 1 @@ -260700,15 +260700,15 @@ - magarachi_hs_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000170835 or ENSG00000175445 - - rxnFrom: Recon3D - - eccodes: 3.1.1.3 - - references: PMID: 11717312 + - gene_reaction_rule: "ENSG00000170835 or ENSG00000175445" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.3" + - references: "PMID: 11717312" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PCHOLMYR_HSPLA2 + - id: "PCHOLMYR_HSPLA2" - name: "Formation of 1-Myristoylglycerophosphocholine by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -260718,15 +260718,15 @@ - pcholmyr_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 19570538, PMID: 18220755 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 19570538, PMID: 18220755" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PCHOLOLE_HSPLA2 + - id: "PCHOLOLE_HSPLA2" - name: "Formation of 1-Oleoylglycerophosphocholine (Delta 9) by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -260736,15 +260736,15 @@ - pcholole_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 19570538, PMID: 18220755 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 19570538, PMID: 18220755" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PEOLE_HSPLA2 + - id: "PEOLE_HSPLA2" - name: "Formation of 1-Oleoylglycerophosphoethanolamine (Delta 9) by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -260754,15 +260754,15 @@ - peole_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 8171289 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 8171289" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PCHOLPALME_HSPLA2 + - id: "PCHOLPALME_HSPLA2" - name: "Formation of 1-Palmitoleoylglycerophosphocholine (Delta 9) by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -260772,15 +260772,15 @@ - pcholpalme_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 19570538, PMID: 18220755 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 19570538, PMID: 18220755" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PCHOLPALM_HSPLA2 + - id: "PCHOLPALM_HSPLA2" - name: "Formation of 1-Palmitoylglycerophosphocholine by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -260790,15 +260790,15 @@ - pcholpalm_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 19570538, PMID: 18220755 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 19570538, PMID: 18220755" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PEPALM_HSPLA2 + - id: "PEPALM_HSPLA2" - name: "Formation of 1-Palmitoylglycerophosphoethanolamine by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -260808,15 +260808,15 @@ - pepalm_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 19570538, PMID: 18220755 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 19570538, PMID: 18220755" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PAILPALM_HSPLA2 + - id: "PAILPALM_HSPLA2" - name: "Formation of 1-Palmitoylglycerophosphoinositol by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -260826,15 +260826,15 @@ - pailpalm_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 1464738 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 1464738" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PCHOLSTE_HSPLA2 + - id: "PCHOLSTE_HSPLA2" - name: "Formation of 1-Stearoylglycerophosphocholine by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -260844,15 +260844,15 @@ - pcholste_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 19570538, PMID: 18220755 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 19570538, PMID: 18220755" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PCHOL2LINL_HSPLA2 + - id: "PCHOL2LINL_HSPLA2" - name: "Formation of 2-Linoleoylglycerophosphocholine by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -260862,15 +260862,15 @@ - pchol2linl_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 19570538, PMID: 18220755 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 19570538, PMID: 18220755" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PE2LINL_HSPLA2 + - id: "PE2LINL_HSPLA2" - name: "Formation of 2-Linoleoylglycerophosphoethanolamine by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -260880,15 +260880,15 @@ - pe2linl_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 8171289 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 8171289" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PCHOL2OLE_HSPLA2 + - id: "PCHOL2OLE_HSPLA2" - name: "Formation of 2-Oleoylglycerophosphocholine by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -260898,15 +260898,15 @@ - pchol2ole_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 19570538, PMID: 18220755 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 19570538, PMID: 18220755" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PCHOL2PALM_HSPLA2 + - id: "PCHOL2PALM_HSPLA2" - name: "Formation of 2-Palmitoylglycerophosphocholine by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -260916,15 +260916,15 @@ - pchol2palm_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 19570538, PMID: 18220755 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 19570538, PMID: 18220755" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PCHOL2STE_HSPLA2 + - id: "PCHOL2STE_HSPLA2" - name: "Formation of 2-Stearoylglycerophosphocholine by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -260934,15 +260934,15 @@ - pchol2ste_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 19570538, PMID: 18220755 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 19570538, PMID: 18220755" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PCHOLN15_HSPLA2 + - id: "PCHOLN15_HSPLA2" - name: "Formation of 1-Pentadecanoylglycerophosphocholine, Sn1-Lpc (15:0) by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -260952,15 +260952,15 @@ - pcholn15_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 19570538, PMID: 18220755 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 19570538, PMID: 18220755" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PCHOLAR_HSPLA2 + - id: "PCHOLAR_HSPLA2" - name: "Formation of 1-Arachidonoyl-Glycero-3-Phosphocholine by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -260970,15 +260970,15 @@ - pcholar_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 19570538, PMID: 18220755 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 19570538, PMID: 18220755" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PCHOLN183_HSPLA2 + - id: "PCHOLN183_HSPLA2" - name: "Formation of 1-Octadeca-Trienoylglycerophosphocholine, Sn1-Lpc (18:3, Delta 9, 12, 15) by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -260988,15 +260988,15 @@ - pcholn183_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 19570538, PMID: 18220755 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 19570538, PMID: 18220755" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PCHOLN1836_HSPLA2 + - id: "PCHOLN1836_HSPLA2" - name: "Formation of 1-Octadeca-Trienoylglycerophosphocholine, Sn1-Lpc (18:3, Delta 6, 9, 12) by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -261006,15 +261006,15 @@ - pcholn1836_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 19570538, PMID: 18220755 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 19570538, PMID: 18220755" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PCHOLN19_HSPLA2 + - id: "PCHOLN19_HSPLA2" - name: "Formation of 1-NoNADecanoylglycerophosphocholine, Sn1-Lpc (19:0) by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -261024,15 +261024,15 @@ - pcholn19_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 19570538, PMID: 18220755 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 19570538, PMID: 18220755" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PCHOLN201_HSPLA2 + - id: "PCHOLN201_HSPLA2" - name: "Formation of 1-Eicosenoylglycerophosphocholine (Delta 11) , Sn1-Lpc (20:1) by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -261042,15 +261042,15 @@ - pcholn201_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 19570538, PMID: 18220755 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 19570538, PMID: 18220755" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PCHOLN204_HSPLA2 + - id: "PCHOLN204_HSPLA2" - name: "Formation of 1-Eicosatetraenoylglycerophosphocholine (Delta 8, 11, 14, 17), Sn1-Lpc (20:4) by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -261060,15 +261060,15 @@ - pcholn204_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 19570538, PMID: 18220755 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 19570538, PMID: 18220755" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PCHOLN205_HSPLA2 + - id: "PCHOLN205_HSPLA2" - name: "Formation of 1-Eicosapentenoylglycerophosphocholine (Delta 5, 8, 11, 14, 17), Sn1-Lpc (20:5) by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -261078,15 +261078,15 @@ - pcholn205_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 19570538, PMID: 18220755 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 19570538, PMID: 18220755" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PCHOLN224_HSPLA2 + - id: "PCHOLN224_HSPLA2" - name: "Formation of 1-Docosatetraenoylglycerophosphocholine (Delta 7, 10, 13, 16), Sn1-Lpc (22:4) by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -261096,15 +261096,15 @@ - pcholn224_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 19570538, PMID: 18220755 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 19570538, PMID: 18220755" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PCHOLN225_HSPLA2 + - id: "PCHOLN225_HSPLA2" - name: "Formation of 1-Docosapentenoylglycerophosphocholine (Delta 7, 10, 13, 16, 19), Sn1-Lpc (22:5)-W3 by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -261114,15 +261114,15 @@ - pcholn225_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 19570538, PMID: 18220755 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 19570538, PMID: 18220755" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PCHOLN2254_HSPLA2 + - id: "PCHOLN2254_HSPLA2" - name: "Formation of 1-Docosapentenoylglycerophosphocholine (Delta 4, 7, 10, 13, 16), Sn1-Lpc (22:5)-W6 by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -261132,15 +261132,15 @@ - pcholn2254_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 19570538, PMID: 18220755 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 19570538, PMID: 18220755" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PCHOLN226_HSPLA2 + - id: "PCHOLN226_HSPLA2" - name: "Formation of 1-Docosahexenoylglycerophosphocholine (Delta 4, 7, 10, 13, 16, 19), Sn1-Lpc (22:6) by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -261150,15 +261150,15 @@ - pcholn226_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 19570538, PMID: 18220755 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 19570538, PMID: 18220755" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PEAR_HSPLA2 + - id: "PEAR_HSPLA2" - name: "Formation of 1-Arachidonoyl-Sn-Glycero-3-Phosphoethanolamine by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -261168,15 +261168,15 @@ - pear_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 8171289 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 8171289" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PE203_HSPLA2 + - id: "PE203_HSPLA2" - name: "Formation of 1-Eicosatrienoylglycerophosphoethanolamine (Delta 11, 14, 17), Lpe (20:3) by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -261186,15 +261186,15 @@ - pe203_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 8171289 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 8171289" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PE226_HSPLA2 + - id: "PE226_HSPLA2" - name: "Formation of 1-Docosahexenoylglyceroethanolamine (Delta 4, 7, 10, 13, 16, 19), Lpe (22:6) by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -261204,15 +261204,15 @@ - pe226_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 8171289 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 8171289" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PE224_HSPLA2 + - id: "PE224_HSPLA2" - name: "Formation of 1-Docosatetraenoyglycerophosphoethanolamine (22:4, Delta 7, 10, 13, 16) by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -261222,15 +261222,15 @@ - pe224_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 8171289 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 8171289" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PEDH203_HSPLA2 + - id: "PEDH203_HSPLA2" - name: "Formation of 1-Dihomo-Linolenoylglycerophosphoethanolamine (20:3, Delta 8, 11, 14) by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -261240,15 +261240,15 @@ - pedh203_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 8171289 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 8171289" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PEDH12_HSPLA2 + - id: "PEDH12_HSPLA2" - name: "Formation of 1-Didecanoylglycerophosphoethanolamine (C12:0 Pe) by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -261258,15 +261258,15 @@ - pe12_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 8171289 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 8171289" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PEDH14_HSPLA2 + - id: "PEDH14_HSPLA2" - name: "Formation of 1-Myristoylglycerophosphoethanolamine (C14:0 Pe) by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -261276,15 +261276,15 @@ - pe14_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 8171289 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 8171289" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PEDH161_HSPLA2 + - id: "PEDH161_HSPLA2" - name: "Formation of 1-Hexadecenoylglycerophosphoethanolamine (C16:1 Pe, Delta 9) by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -261294,15 +261294,15 @@ - pe161_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 8171289 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 8171289" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PEDH13_HSPLA2 + - id: "PEDH13_HSPLA2" - name: "Formation of 1-Tridecanoylglycerophosphoethanolamine (C13:0 Pe) by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -261312,15 +261312,15 @@ - pe13_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 8171289 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 8171289" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PEDH15_HSPLA2 + - id: "PEDH15_HSPLA2" - name: "Formation of 1-Pentadecanoylglycerophosphoethanolamine (C15:0 Pe) by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -261330,15 +261330,15 @@ - pe15_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 8171289 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 8171289" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PEDH17_HSPLA2 + - id: "PEDH17_HSPLA2" - name: "Formation of 1-Heptadecanoylglycerophosphoethanolamine (C17:0 Pe) by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -261348,15 +261348,15 @@ - pe17_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 8171289 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 8171289" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PCHOLN203_HSPLA2 + - id: "PCHOLN203_HSPLA2" - name: "Formation of 1-Dihomo-Linolenoylglycerophosphocholine (20:3, Delta 8, 11, 14), Lysopc A C20:3 by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -261366,15 +261366,15 @@ - pcholn203_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 19570538, PMID: 18220755 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 19570538, PMID: 18220755" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PAILAR_HSPLA2 + - id: "PAILAR_HSPLA2" - name: "Formation of 1-Arachidonoylglycerophosphoinositol by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -261384,15 +261384,15 @@ - pailar_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 1464738 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 1464738" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PCHOLN24_HSPLA2 + - id: "PCHOLN24_HSPLA2" - name: "Formation of 1-Lignocericylglycerophosphocholine (24:0), Lysopc A C24 by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -261402,15 +261402,15 @@ - pcholn24_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 19570538, PMID: 18220755 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 19570538, PMID: 18220755" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PCHOLN261_HSPLA2 + - id: "PCHOLN261_HSPLA2" - name: "Formation of Lysopc A C26:1 (Delta 5) by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -261420,15 +261420,15 @@ - pcholn261_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 19570538, PMID: 18220755 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 19570538, PMID: 18220755" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PCHOLN281_HSPLA2 + - id: "PCHOLN281_HSPLA2" - name: "Formation of Lysopc A C28:1 (Delta 5) by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -261438,15 +261438,15 @@ - pcholn281_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 19570538, PMID: 18220755 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 19570538, PMID: 18220755" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PCHOLN28_HSPLA2 + - id: "PCHOLN28_HSPLA2" - name: "Formation of Lysopc A C28:0 by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -261456,15 +261456,15 @@ - pcholn28_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 19570538, PMID: 18220755 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 19570538, PMID: 18220755" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PCHOLDOC_HSPLA2 + - id: "PCHOLDOC_HSPLA2" - name: "Formation of 1-Docosahexaenoylglycerophosphocholine by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -261474,15 +261474,15 @@ - pcholdoc_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 19570538, PMID: 18220755 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 19570538, PMID: 18220755" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PCHOLDEIC_HSPLA2 + - id: "PCHOLDEIC_HSPLA2" - name: "Formation of 1-Eicosadienoylglycerophosphocholine (Delta 11, 14) by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -261492,15 +261492,15 @@ - pcholeic_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 19570538, PMID: 18220755 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 19570538, PMID: 18220755" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PCHOLDET_HSPLA2 + - id: "PCHOLDET_HSPLA2" - name: "Formation of 1-Eicosatrienoylglycerophosphocholine (Delta 11, 14, 17) by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -261510,15 +261510,15 @@ - pcholet_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 19570538, PMID: 18220755 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 19570538, PMID: 18220755" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PCHOLHEP_HSPLA2 + - id: "PCHOLHEP_HSPLA2" - name: "Formation of 1-Heptadecanoylglycerophosphocholine by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -261528,15 +261528,15 @@ - pcholhep_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 19570538, PMID: 18220755 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 19570538, PMID: 18220755" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PCHOLLINL_HSPLA2 + - id: "PCHOLLINL_HSPLA2" - name: "Formation of 1-Linoleoylglycerophosphocholine (Delta 9, 12) by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -261546,15 +261546,15 @@ - pchollinl_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 19570538, PMID: 18220755 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 19570538, PMID: 18220755" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PELINL_HSPLA2 + - id: "PELINL_HSPLA2" - name: "Formation of 1-Linoleoylglycerophosphoethanolamine (Delta 9, 12) by Phospholipase A2" - metabolites: !!omap - Rtotal2_c: 1 @@ -261564,15 +261564,15 @@ - pelinl_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708 - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 8171289 + - gene_reaction_rule: "ENSG00000100078 or ENSG00000116711 or ENSG00000123739 or ENSG00000127472 or ENSG00000158786 or ENSG00000184381 or ENSG00000188089 or ENSG00000188257 or ENSG00000243708" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 8171289" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: CE4843HYDc + - id: "CE4843HYDc" - name: "Acylcoa Hydrolase, Cis, Cis-11, 14-Eicosadienoyl Coenzyme A" - metabolites: !!omap - eidi1114ac_c: 1 @@ -261582,15 +261582,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: HXCOAc + - id: "HXCOAc" - name: "Acylcoa Hydrolase, Cytosolic" - metabolites: !!omap - hxa_c: 1 @@ -261600,15 +261600,15 @@ - m02122c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: TETDECA511ACc + - id: "TETDECA511ACc" - name: "Hydrolysis of Tetradecadienoyl Coenzyme A to Cis-5, 8-Tetradecadienoic Acid " - metabolites: !!omap - m01597c: 1 @@ -261618,15 +261618,15 @@ - tetdeca511ac_c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: GPDDACHOL + - id: "GPDDACHOL" - name: "Glycerophosphocholine Phosphodiesterase" - metabolites: !!omap - glyc2p_c: 1 @@ -261636,15 +261636,15 @@ - m02912c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125772 - - rxnFrom: Recon3D - - eccodes: 3.1.4.2 - - references: PMID: 182119, PMID: 3829393. + - gene_reaction_rule: "ENSG00000125772" + - rxnFrom: "Recon3D" + - eccodes: "3.1.4.2" + - references: "PMID: 182119, PMID: 3829393." - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: ACLYSHYc + - id: "ACLYSHYc" - name: "Hydrolysis of Acetyl-Lysine" - metabolites: !!omap - aclys_c: -1 @@ -261653,15 +261653,15 @@ - m02426c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.5.1.17 - - references: PMID: 21962087 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.5.1.17" + - references: "PMID: 21962087" - subsystem: - - Lysine metabolism + - "Lysine metabolism" - confidence_score: 0 - !!omap - - id: HMCARNc + - id: "HMCARNc" - name: "Formation of Homocarnosine" - metabolites: !!omap - hmcarn_c: 1 @@ -261673,15 +261673,15 @@ - m02759c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 6.3.2.11 - - references: PMID: 21962087 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "6.3.2.11" + - references: "PMID: 21962087" - subsystem: - - Histidine metabolism + - "Histidine metabolism" - confidence_score: 0 - !!omap - - id: METTRANSc + - id: "METTRANSc" - name: "Methionine Transaminase" - metabolites: !!omap - 4mtob_c: 1 @@ -261690,15 +261690,15 @@ - m02819c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.3 - - references: PMID: 1770796 , PMID: 3689352, PMID: 7848263, PMID: 619045 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.3" + - references: "PMID: 1770796 , PMID: 3689352, PMID: 7848263, PMID: 619045" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: METDECARc + - id: "METDECARc" - name: "Methionine Decarboxylase" - metabolites: !!omap - 3mtp_c: 1 @@ -261707,45 +261707,45 @@ - m02039c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.3 - - references: PMID: 100496, PMID: 619045 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.3" + - references: "PMID: 100496, PMID: 619045" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: 3MTPte + - id: "3MTPte" - name: "Secretion of 3-Methyl-Thio-Propionate" - metabolites: !!omap - 3mtp_c: -1 - 3mtp_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.3 - - references: PMID: 3899101, PMID: 3085650, PMID: 1770796, PMID: 3689352 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.3" + - references: "PMID: 3899101, PMID: 3085650, PMID: 1770796, PMID: 3689352" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_3mtp[e] + - id: "EX_3mtp[e]" - name: "Exchange of 3-Methyl-Thio-Propionate" - metabolites: !!omap - 3mtp_s: -1 - 3mtp_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: ELAIDCRNte + - id: "ELAIDCRNte" - name: "Transport of Elaidic Carnitine, Sodium Symport" - metabolites: !!omap - m00126c: -1 @@ -261754,30 +261754,30 @@ - m02519s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLYC2P3Pc + - id: "GLYC2P3Pc" - name: "Formation of Glycerol-3-Phosphate" - metabolites: !!omap - glyc2p_c: -1 - m02914c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 182119, PMID: 3829393. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 182119, PMID: 3829393." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LNLCCRNNAt + - id: "LNLCCRNNAt" - name: "Transport of Linoleyl Carnitine, Sodium Symport" - metabolites: !!omap - m02388c: -1 @@ -261786,15 +261786,15 @@ - m02519s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PHLACHt + - id: "PHLACHt" - name: "Transport of Phenyl Lactate" - metabolites: !!omap - m02039c: -1 @@ -261803,15 +261803,15 @@ - phlac_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TTDCRNNAt + - id: "TTDCRNNAt" - name: "Transport of Tetradecanoyl Carnitine, Sodium Symport" - metabolites: !!omap - m02519c: -1 @@ -261820,15 +261820,15 @@ - m02974s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 12HPETATP + - id: "12HPETATP" - name: "Transport of 12-Hydroperoxyeicosa-5, 8, 10, 14-Tetraenoate, by FATP" - metabolites: !!omap - m00309c: -1 @@ -261840,15 +261840,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 9831619, PMID: 5555776, PMID: 23104810 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 9831619, PMID: 5555776, PMID: 23104810" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 15HPETATP + - id: "15HPETATP" - name: "Transport of 15(S)-HPETE, Active Transport" - metabolites: !!omap - m00380c: -1 @@ -261860,15 +261860,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 23104810 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 23104810" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 15KPROSTGF2t + - id: "15KPROSTGF2t" - name: "Transport of 15-Keto-Prostaglandin F2A, Lactate Antiport" - metabolites: !!omap - 15kprostgf2_c: -1 @@ -261877,15 +261877,15 @@ - m02403s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 11997326 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 11997326" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 21HPRGNLONEt1 + - id: "21HPRGNLONEt1" - name: "Transport of 21-Hydroxypregnenolone, Active Transport" - metabolites: !!omap - 21hprgnlone_c: -1 @@ -261897,30 +261897,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 21HPRGNLONEt2 + - id: "21HPRGNLONEt2" - name: "Transport of 21-Hydroxypregnenolone, Diffusion" - metabolites: !!omap - 21hprgnlone_c: -1 - 21hprgnlone_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 2OXOADPt + - id: "2OXOADPt" - name: "Transport of 2-Oxoadipate by Alpha-Ketoglutarate Antiport" - metabolites: !!omap - m00670c: -1 @@ -261929,15 +261929,15 @@ - m01306s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 34HPLte + - id: "34HPLte" - name: "Transport of 3- (4-Hydroxyphenyl)Lactate" - metabolites: !!omap - m01004c: -1 @@ -261946,45 +261946,45 @@ - m02039s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3HMPtd + - id: "3HMPtd" - name: "Transport of 3-Hydroxy-2-Methylpropanoate, Diffusion" - metabolites: !!omap - m00784c: -1 - m00784s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3HPPNOHGLUCte + - id: "3HPPNOHGLUCte" - name: "Transport of 3- (3-Hydroxy-Phenyl)Propionate Hydroxy Derivative Glucuronide into Urine" - metabolites: !!omap - 3hpppnohgluc_c: -1 - 3hpppnohgluc_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 11375750, + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 11375750," - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3HPPPNOHc + - id: "3HPPPNOHc" - name: "Hydroxylation of 3- (3-Hydroxyphenyl)Propionate" - metabolites: !!omap - 3hpppn_c: -1 @@ -261996,30 +261996,30 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 11375750, + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 11375750," - subsystem: - - Phenylalanine metabolism + - "Phenylalanine metabolism" - confidence_score: 0 - !!omap - - id: 3HPPt + - id: "3HPPt" - name: "Transpot of 3-Hydroxypropionate" - metabolites: !!omap - m02142c: -1 - m02142s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3MHISt1 + - id: "3MHISt1" - name: "Transport of Methyl-Histidine by System N Transport" - metabolites: !!omap - 3mhis_c: -1 @@ -262028,15 +262028,15 @@ - m02519s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 2506342 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 2506342" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3MHISt2 + - id: "3MHISt2" - name: "Transport of Methyl-Histidine by System L Transport (Lat1)" - metabolites: !!omap - 3mhis_c: 1 @@ -262045,15 +262045,15 @@ - m02360s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 2506342 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 2506342" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3MHISt3 + - id: "3MHISt3" - name: "Transport of Methyl-Histidine by System L Transport (Lat2)" - metabolites: !!omap - 3mhis_c: 1 @@ -262062,60 +262062,60 @@ - m02724s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 2506342 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 2506342" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3MOXTYRt + - id: "3MOXTYRt" - name: "Transport of 3-Methoxytyramine, Diffusion" - metabolites: !!omap - m00821c: -1 - m00821s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3UIBtd + - id: "3UIBtd" - name: "Transport of 3-Ureidoisobutyrate, Diffusion" - metabolites: !!omap - m00922c: -1 - m00922s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 4AABUTNt + - id: "4AABUTNt" - name: "Diffusion of 4-Acetamidobutanoate" - metabolites: !!omap - m00952c: 1 - m00952s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 4TMEABUTNt1 + - id: "4TMEABUTNt1" - name: "Transport of 4- (Trimethylammonio)Butanoate, Sodium Symport" - metabolites: !!omap - m01922c: -1 @@ -262124,15 +262124,15 @@ - m02519s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 4TMEABUTNt2 + - id: "4TMEABUTNt2" - name: "Transport of 4- (Trimethylammonio)Butanoate, Proton Symport" - metabolites: !!omap - m01922c: -1 @@ -262141,15 +262141,15 @@ - m02039s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 56DTHMt + - id: "56DTHMt" - name: "Transport of 5, 6-Dihydrothymine, Sodium Symport" - metabolites: !!omap - m01705c: -1 @@ -262158,30 +262158,30 @@ - m02519s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 56DTHMtd + - id: "56DTHMtd" - name: "Transport of 5, 6-Dihydrothymine, Diffusion" - metabolites: !!omap - m01705c: -1 - m01705s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 56DURAt + - id: "56DURAt" - name: "Transport of 5, 6-Dihydrouracil, Sodium Symport " - metabolites: !!omap - m01052c: -1 @@ -262190,30 +262190,30 @@ - m02519s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 56DURAtd + - id: "56DURAtd" - name: "Transport of 5, 6-Dihydrouracil, Diffusion" - metabolites: !!omap - m01052c: -1 - m01052s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 5AOPt + - id: "5AOPt" - name: "Transport of 5-Amino-4-Oxopentanoate, Proton Symport" - metabolites: !!omap - m01074c: -1 @@ -262222,15 +262222,15 @@ - m02039s: 2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 11752223 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 11752223" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 5HPETATP + - id: "5HPETATP" - name: "Transport of 5(S)-HPETE, Active Transport" - metabolites: !!omap - m01042c: -1 @@ -262242,30 +262242,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 9831619, PMID: 5555776, PMID: 23104810 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 9831619, PMID: 5555776, PMID: 23104810" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 5HPETtd + - id: "5HPETtd" - name: "Transport of 5(S)-HPETE, Diffusion" - metabolites: !!omap - m01042c: -1 - m01042s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 7DHCHSTEROLt + - id: "7DHCHSTEROLt" - name: "Transport of Cholesta-5, 7-Dien-3Beta-Ol, Active Transport" - metabolites: !!omap - m01285c: 1 @@ -262277,45 +262277,45 @@ - m02805s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 7DHCHSTEROLtd + - id: "7DHCHSTEROLtd" - name: "Transport of Cholesta-5, 7-Dien-3Beta-Ol, Diffusion" - metabolites: !!omap - m02805c: -1 - m02805s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ABT_Dt + - id: "ABT_Dt" - name: "D-Arabitol Transport via Diffusion" - metabolites: !!omap - abt_D_c: 1 - abt_D_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ABT_Dt2 + - id: "ABT_Dt2" - name: "D-Arabitol Transport in via Proton Symporter" - metabolites: !!omap - abt_D_c: 1 @@ -262324,15 +262324,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ABTD1 + - id: "ABTD1" - name: "L-Arabinitol 4-Dehydrogenase" - metabolites: !!omap - abt_D_c: -1 @@ -262342,210 +262342,210 @@ - m02553c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 16435225 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 16435225" - subsystem: - - Pentose phosphate pathway + - "Pentose phosphate pathway" - confidence_score: 0 - !!omap - - id: ACGLUtd + - id: "ACGLUtd" - name: "Transport of N-Acetyl-L-Glutamate, Diffusion" - metabolites: !!omap - m02536c: -1 - m02536s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ACGLYtc + - id: "ACGLYtc" - name: "Intra-Cellular Transport of Acetyl-Glycine " - metabolites: !!omap - acgly_c: 1 - acgly_m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 24816252 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 24816252" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ACGLYte + - id: "ACGLYte" - name: "Extracellular Transport of Acetyl-Glycine " - metabolites: !!omap - acgly_c: -1 - acgly_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 24816252 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 24816252" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ACLYSt + - id: "ACLYSt" - name: "Transport of Acetyl-Lysine, Extracellular" - metabolites: !!omap - aclys_c: -1 - aclys_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ACLYStm + - id: "ACLYStm" - name: "Intracellular Transport of Acetyl-Lysine" - metabolites: !!omap - aclys_c: 1 - aclys_m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ACORNt + - id: "ACORNt" - name: "Diffusion of N(2)-Acetyl-L-Ornithine" - metabolites: !!omap - m02546c: -1 - m02546s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ACTHRtc + - id: "ACTHRtc" - name: "Intra-Cellular Transport of Acetyl-Threonine " - metabolites: !!omap - acthr_L_c: 1 - acthr_L_m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 24816252 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 24816252" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ACTHRte + - id: "ACTHRte" - name: "Extracellular Transport of Acetyl-Threonine" - metabolites: !!omap - acthr_L_c: -1 - acthr_L_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 24816252 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 24816252" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ADPACtd + - id: "ADPACtd" - name: "Transport of Adipic Acid, Diffusion" - metabolites: !!omap - adpac_c: -1 - adpac_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: Glatz JFC, Luiken JJFP, Bonen A. (2010). Physiological Reviews 90: 367-417, Kamp F, Hamilton JA. (2006). Prostaglandins, Leukotrienes and Essential Fatty Acids 75: 149-59, PMCID: PMC2785172, Evtodienko VY, Bondarenko DI, Antonenko YN. (1999). Biochimica et Biophysica Acta (BBA) - Biomembranes 1420: 95-103 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "Glatz JFC, Luiken JJFP, Bonen A. (2010). Physiological Reviews 90: 367-417, Kamp F, Hamilton JA. (2006). Prostaglandins, Leukotrienes and Essential Fatty Acids 75: 149-59, PMCID: PMC2785172, Evtodienko VY, Bondarenko DI, Antonenko YN. (1999). Biochimica et Biophysica Acta (BBA) - Biomembranes 1420: 95-103" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ADPOHt + - id: "ADPOHt" - name: "Secretion of 2-Hydroxyadipic Acid" - metabolites: !!omap - adpoh_c: -1 - adpoh_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ALLTNt + - id: "ALLTNt" - name: "Transport of Allantoin" - metabolites: !!omap - m01313c: -1 - m01313s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: AMETt + - id: "AMETt" - name: "Transport of S-Adenosyl-L-Methionine, Paracellular Transport" - metabolites: !!omap - m02877c: -1 - m02877s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.4 - - references: PMID: 15901349 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.4" + - references: "PMID: 15901349" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: AND19ONEt + - id: "AND19ONEt" - name: "Secretion of 19-Hydroxyandrost-4-Ene-3, 17-Dione" - metabolites: !!omap - and19one_c: -1 - and19one_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ARACHETH + - id: "ARACHETH" - name: "Formation of O-Arachidonoyl Ethanolamine" - metabolites: !!omap - aracheth_s: 1 @@ -262555,15 +262555,15 @@ - pear_hs_s: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000075651 or ENSG00000129219 - - rxnFrom: Recon3D - - eccodes: 3.1.2.2 - - references: PMID: 19126434 + - gene_reaction_rule: "ENSG00000075651 or ENSG00000129219" + - rxnFrom: "Recon3D" + - eccodes: "3.1.2.2" + - references: "PMID: 19126434" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: BILIVERDt + - id: "BILIVERDt" - name: "Transport of Biliverdin" - metabolites: !!omap - m01399c: -1 @@ -262572,30 +262572,30 @@ - m02519s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C02356t + - id: "C02356t" - name: "(S)-2-Aminobutanoate" - metabolites: !!omap - m00169c: -1 - m00169s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C02712te + - id: "C02712te" - name: "Transport of N-Acetylmethionine, Extracellular" - metabolites: !!omap - m02519c: -1 @@ -262604,30 +262604,30 @@ - m02540s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000158296 - - rxnFrom: Recon3D - - eccodes: 3.1.4.2 - - references: PMID: 15337171, PMID: 21554324 + - gene_reaction_rule: "ENSG00000158296" + - rxnFrom: "Recon3D" + - eccodes: "3.1.4.2" + - references: "PMID: 15337171, PMID: 21554324" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C02712tm + - id: "C02712tm" - name: "Transport of N-Acetylmethionine, Intracellular" - metabolites: !!omap - m02540c: -1 - m02540m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.5.1.17 - - references: PMID: 15337171, PMID: 21554324 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.5.1.17" + - references: "PMID: 15337171, PMID: 21554324" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C03990ATP + - id: "C03990ATP" - name: "Transport of Lithocholate, Active Transport" - metabolites: !!omap - m01285c: 1 @@ -262639,15 +262639,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073734 or ENSG00000108846 or ENSG00000121270 - - rxnFrom: Recon3D - - eccodes: 6.3.2.11 - - references: PMID: 19498215 + - gene_reaction_rule: "ENSG00000073734 or ENSG00000108846 or ENSG00000121270" + - rxnFrom: "Recon3D" + - eccodes: "6.3.2.11" + - references: "PMID: 19498215" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C03990t + - id: "C03990t" - name: "Transport of Lithocholate, Sodium Symport" - metabolites: !!omap - m02402c: -1 @@ -262656,45 +262656,45 @@ - m02519s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100652 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 19498215 + - gene_reaction_rule: "ENSG00000100652" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 19498215" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C03990tr + - id: "C03990tr" - name: "Transport of Lithocholate, Intracellular" - metabolites: !!omap - m02402c: 1 - m02402r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C03990tx + - id: "C03990tx" - name: "Transport of Lithocholate, Intracellular" - metabolites: !!omap - m02402c: 1 - m02402p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C04483t1 + - id: "C04483t1" - name: "Transport of Deoxycholate" - metabolites: !!omap - m00745c: -1 @@ -262706,15 +262706,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073734 or ENSG00000108846 or ENSG00000121270 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000073734 or ENSG00000108846 or ENSG00000121270" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C04483t2 + - id: "C04483t2" - name: "Transport of Deoxycholate, Antiport with Bicarbonate" - metabolites: !!omap - m00745c: -1 @@ -262723,15 +262723,15 @@ - m02046s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9334206 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9334206" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C04717ATP + - id: "C04717ATP" - name: "Transport of 13(S)-HPODE, Active" - metabolites: !!omap - m00337c: -1 @@ -262743,30 +262743,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9831619, PMID: 5555776, PMID: 23104810 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9831619, PMID: 5555776, PMID: 23104810" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C04717td + - id: "C04717td" - name: "Transport of 13(S)-HPODE, Diffusion" - metabolites: !!omap - m00337c: -1 - m00337s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C04805ATP + - id: "C04805ATP" - name: "Transport of 5(S)-HETE, Active Transport" - metabolites: !!omap - m01040c: -1 @@ -262778,30 +262778,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9831619, PMID: 5555776, PMID: 23104810 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9831619, PMID: 5555776, PMID: 23104810" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C04805td + - id: "C04805td" - name: "Transport of 5(S)-HETE, Diffusion" - metabolites: !!omap - m01040c: -1 - m01040s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C05463t1 + - id: "C05463t1" - name: "Transport of Taurodeoxycholate" - metabolites: !!omap - m01285c: 1 @@ -262813,15 +262813,15 @@ - m02964s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073734 or ENSG00000108846 or ENSG00000121270 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000073734 or ENSG00000108846 or ENSG00000121270" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C05463t2 + - id: "C05463t2" - name: "Transport of Taurodeoxycholate, Antiport with Bicarbonate" - metabolites: !!omap - m02046c: 1 @@ -262830,15 +262830,15 @@ - m02964s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9334206 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9334206" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C05953t + - id: "C05953t" - name: "Transport of Prostaglandin A2, Lactate Antiport" - metabolites: !!omap - m02403c: 1 @@ -262847,45 +262847,45 @@ - m02777s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11997326 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11997326" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C05953tm + - id: "C05953tm" - name: "Transport of Prostaglandin A2, Intracellular" - metabolites: !!omap - m02777c: 1 - m02777m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C05953tr + - id: "C05953tr" - name: "Transport of Prostaglandin A2, Intracellular" - metabolites: !!omap - m02777c: 1 - m02777r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C05957t + - id: "C05957t" - name: "Transport of Prostaglandin J2, Lactate Antiport" - metabolites: !!omap - m02403c: 1 @@ -262894,30 +262894,30 @@ - m02796s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11997326 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11997326" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C05957td + - id: "C05957td" - name: "Transport of Prostaglandin J2, Diffusion" - metabolites: !!omap - m02796c: -1 - m02796s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C06314t + - id: "C06314t" - name: "Transport of Lipoxin A4, Proton Symport" - metabolites: !!omap - m02039c: -1 @@ -262926,15 +262926,15 @@ - m02395s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 7810593 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 7810593" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C06315t + - id: "C06315t" - name: "Transport of Lipoxin B4, Proton Symport" - metabolites: !!omap - m02039c: -1 @@ -262943,15 +262943,15 @@ - m02396s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 7810593 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 7810593" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C06439t + - id: "C06439t" - name: "Transport of Prostaglandin E3, Lactate Antiport" - metabolites: !!omap - m02403c: 1 @@ -262960,45 +262960,45 @@ - m02787s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11997326 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11997326" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C06439tn + - id: "C06439tn" - name: "Transport of Prostaglandin E3, Intracellular" - metabolites: !!omap - m02787c: 1 - m02787n: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C11695td + - id: "C11695td" - name: "Transport of Anandamide, Diffusion" - metabolites: !!omap - m01335c: -1 - m01335s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15979096, PMID: 15930521 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15979096, PMID: 15930521" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C14768ATP + - id: "C14768ATP" - name: "Transport of 5, 6-EET, Active Transport" - metabolites: !!omap - m01054c: -1 @@ -263010,45 +263010,45 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9831619, PMID: 5555776, PMID: 23104810 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9831619, PMID: 5555776, PMID: 23104810" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C14768td + - id: "C14768td" - name: "Transport of 5, 6-EET, Diffusion" - metabolites: !!omap - m01054c: -1 - m01054s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C14769td1 + - id: "C14769td1" - name: "Transport of 8, 9-EET, Diffusion" - metabolites: !!omap - m01209c: -1 - m01209s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C14769td2 + - id: "C14769td2" - name: "Transport of 8, 9-EET, Active Transport" - metabolites: !!omap - m01209c: -1 @@ -263060,30 +263060,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9831619, PMID: 5555776, PMID: 23104810 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9831619, PMID: 5555776, PMID: 23104810" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_C14769[e] + - id: "EX_C14769[e]" - name: "Exchange of 8, 9-EET" - metabolites: !!omap - m01209s: -1 - m01209x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: C14770ATP + - id: "C14770ATP" - name: "Transport of 11, 12-EET, FATP" - metabolites: !!omap - m00279c: -1 @@ -263095,15 +263095,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 23104810 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 23104810" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C14771ATP + - id: "C14771ATP" - name: "Transport of 14, 15-EET, Active Transport" - metabolites: !!omap - m00366c: -1 @@ -263115,15 +263115,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9831619, PMID: 5555776, PMID: 23104810 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9831619, PMID: 5555776, PMID: 23104810" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C14825ATP + - id: "C14825ATP" - name: "Transport of 9 (10)-Epome, Active Transport" - metabolites: !!omap - m01216c: -1 @@ -263135,30 +263135,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9831619, PMID: 5555776, PMID: 23104810 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9831619, PMID: 5555776, PMID: 23104810" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C14825td + - id: "C14825td" - name: "Transport of 9 (10)-Epome, Diffusion" - metabolites: !!omap - m01216c: -1 - m01216s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C14826ATP + - id: "C14826ATP" - name: "Transport of 12 (13)-Epome, FATP" - metabolites: !!omap - m00305c: -1 @@ -263170,30 +263170,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9831619, PMID: 5555776, PMID: 23104810 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9831619, PMID: 5555776, PMID: 23104810" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C14826td + - id: "C14826td" - name: "Transport of 12 (13)-Epome, Diffusion" - metabolites: !!omap - m00305c: -1 - m00305s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE0955te + - id: "CE0955te" - name: "Transport of 6-Oxo-Prostaglandin F1Alpha, Lactate Antiport" - metabolites: !!omap - m01168c: -1 @@ -263202,30 +263202,30 @@ - m02403s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11997326 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11997326" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE0955tr + - id: "CE0955tr" - name: "Transport of 6-Oxo-Prostaglandin F1Alpha, Intracellular" - metabolites: !!omap - m01168c: 1 - m01168r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE1243ATP + - id: "CE1243ATP" - name: "Transport of 12S-HHT, FATP" - metabolites: !!omap - m00308c: -1 @@ -263237,15 +263237,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 24653705, PMID: 9831619, PMID: 5555776, PMID: 23104810 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 24653705, PMID: 9831619, PMID: 5555776, PMID: 23104810" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE1273t1 + - id: "CE1273t1" - name: "Transport of 5Beta-Cholestane-3Alpha, 7Alpha, 12Alpha, 24S, 25-Pentol, Active Transport" - metabolites: !!omap - m01087c: -1 @@ -263257,15 +263257,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073734 or ENSG00000108846 or ENSG00000121270 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000073734 or ENSG00000108846 or ENSG00000121270" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE1273t2 + - id: "CE1273t2" - name: "Transport of 5Beta-Cholestane-3Alpha, 7Alpha, 12Alpha, 24S, 25-Pentol, Atiport with Bicarbonate" - metabolites: !!omap - m01087c: -1 @@ -263274,15 +263274,15 @@ - m02046s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9334206 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9334206" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE1297t + - id: "CE1297t" - name: "Active Transport of 8-Dehydrocholesterol" - metabolites: !!omap - CE1297_c: -1 @@ -263294,75 +263294,75 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE1297td + - id: "CE1297td" - name: "Transport of 8-Dehydrocholesterol, Diffusion" - metabolites: !!omap - CE1297_c: -1 - CE1297_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE1554t + - id: "CE1554t" - name: "Transport of Acetyl-Alanine" - metabolites: !!omap - m02530c: -1 - m02530s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE1556td + - id: "CE1556td" - name: "Transport of N-Acetyl-L-Asparagine" - metabolites: !!omap - m02531c: -1 - m02531s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE2028t + - id: "CE2028t" - name: "Transport for Beta-Hydroxy-Beta-Methylbutyrate" - metabolites: !!omap - m01392c: -1 - m01392s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE2176t + - id: "CE2176t" - name: "Transport of 3-O-Methyldopa" - metabolites: !!omap - m00830c: 1 @@ -263371,15 +263371,15 @@ - m02360s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 2095572 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 2095572" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE2445t + - id: "CE2445t" - name: "Transport of 6-Trans-Leukotriene B4, Active Transport" - metabolites: !!omap - m01172c: -1 @@ -263391,15 +263391,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 7966417 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 7966417" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE2516t + - id: "CE2516t" - name: "Transport of (8Z, 11Z, 14Z)-Eicosatrienoic Acid, Active Transport" - metabolites: !!omap - CE2516_c: -1 @@ -263411,15 +263411,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 24653705, PMID: 9831619, PMID: 5555776, PMID: 23104810 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 24653705, PMID: 9831619, PMID: 5555776, PMID: 23104810" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE2537ATP + - id: "CE2537ATP" - name: "Transport of 15-Hydroxy- (8Z, 11Z, 13E)-Eicosatrienoate, Active Transport" - metabolites: !!omap - m00378c: -1 @@ -263431,15 +263431,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 24653705, PMID: 9831619, PMID: 5555776, PMID: 23104810 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 24653705, PMID: 9831619, PMID: 5555776, PMID: 23104810" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE4843t + - id: "CE4843t" - name: "Transport of Cis, Cis-11, 14-Eicosadienoyl Coenzyme A, Active Transport" - metabolites: !!omap - eidi1114ac_c: -1 @@ -263451,30 +263451,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 24653705, PMID: 9831619, PMID: 5555776, PMID: 23104810 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 24653705, PMID: 9831619, PMID: 5555776, PMID: 23104810" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE4843td + - id: "CE4843td" - name: "Transport of Cis, Cis-11, 14-Eicosadienoyl Coenzyme A, Diffusion" - metabolites: !!omap - eidi1114ac_c: -1 - eidi1114ac_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE5304t + - id: "CE5304t" - name: "Transport of 15-Deoxy-Pgd2, Antiport with Lactate" - metabolites: !!omap - m00384c: -1 @@ -263483,30 +263483,30 @@ - m02403s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11997326 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11997326" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE6031t + - id: "CE6031t" - name: "Transport of Androsterone Sulfate" - metabolites: !!omap - m01337c: -1 - m01337s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 20649839, PMID: 16317684 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 20649839, PMID: 16317684" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE6247t + - id: "CE6247t" - name: "Transport of 5, 12, 20-Trihete, Active Transport" - metabolites: !!omap - m01047c: -1 @@ -263518,15 +263518,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 7966417 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 7966417" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE7082ATP + - id: "CE7082ATP" - name: "Transport of 15(S)-HEPE, Active Transport" - metabolites: !!omap - m00376c: -1 @@ -263538,15 +263538,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 24653705, PMID: 9831619, PMID: 5555776, PMID: 23104810 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 24653705, PMID: 9831619, PMID: 5555776, PMID: 23104810" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE7083t + - id: "CE7083t" - name: "Transport of Leukotriene B5, Active Transport" - metabolites: !!omap - m01285c: 1 @@ -263558,15 +263558,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 7966417 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 7966417" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE7172ATP + - id: "CE7172ATP" - name: "Transport of 14, 15-DIHETE, Active Transport" - metabolites: !!omap - m00365c: -1 @@ -263578,45 +263578,45 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 24653705, PMID: 9831619, PMID: 5555776, PMID: 23104810 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 24653705, PMID: 9831619, PMID: 5555776, PMID: 23104810" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CORTSNt + - id: "CORTSNt" - name: "Extracellular Transport of Cortisone" - metabolites: !!omap - m01616c: -1 - m01616s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 20649839, PMID: 16317684 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 20649839, PMID: 16317684" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CORTSNti + - id: "CORTSNti" - name: "Intracellular Transport of Cortisone" - metabolites: !!omap - m01616c: 1 - m01616r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 20649839, PMID: 16317684 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 20649839, PMID: 16317684" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: DIDECAETH + - id: "DIDECAETH" - name: "Formation of C12:0-Ethanolamide" - metabolites: !!omap - didecaeth_s: 1 @@ -263625,15 +263625,15 @@ - pe12_hs_s: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000075651 or ENSG00000129219 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 19126434 + - gene_reaction_rule: "ENSG00000075651 or ENSG00000129219" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 19126434" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: DIHOLINETH + - id: "DIHOLINETH" - name: "Formation of Dihomo-Gamma-Linolenoyl Ethanolamide" - metabolites: !!omap - diholineth_s: 1 @@ -263642,15 +263642,15 @@ - pedh203_hs_s: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000075651 or ENSG00000129219 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 19126434 + - gene_reaction_rule: "ENSG00000075651 or ENSG00000129219" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 19126434" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: DOCOHEXETHc + - id: "DOCOHEXETHc" - name: "Formation of Docosahexaenoyl Ethanolamide" - metabolites: !!omap - docohxeth_s: 1 @@ -263659,15 +263659,15 @@ - pe226_hs_s: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000075651 or ENSG00000129219 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 19126434 + - gene_reaction_rule: "ENSG00000075651 or ENSG00000129219" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 19126434" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: DOCTETETH + - id: "DOCTETETH" - name: "Formation of Docosatetraenoyl Ethanolamide (22:4, Delta 7, 10, 13, 16)" - metabolites: !!omap - docteteth_s: 1 @@ -263676,15 +263676,15 @@ - pe224_hs_s: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000075651 or ENSG00000129219 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 19126434 + - gene_reaction_rule: "ENSG00000075651 or ENSG00000129219" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 19126434" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: DODECANACt + - id: "DODECANACt" - name: "Transport of Dodecanedioic Acid by FATP" - metabolites: !!omap - dodecanac_c: -1 @@ -263696,2715 +263696,2715 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 24653705, PMID: 9831619, PMID: 5555776, PMID: 23104810 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 24653705, PMID: 9831619, PMID: 5555776, PMID: 23104810" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: DODECANACtd + - id: "DODECANACtd" - name: "Transport of Dodecanedioic Acid by Diffusion" - metabolites: !!omap - dodecanac_c: -1 - dodecanac_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ELAIDCRNtd + - id: "ELAIDCRNtd" - name: "Transport of Elaidic Carnitine by Diffusion" - metabolites: !!omap - m00126c: -1 - m00126s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_12HPET[e] + - id: "EX_12HPET[e]" - name: "Exchange of 12-Hydroperoxyeicosa-5, 8, 10, 14-Tetraenoate" - metabolites: !!omap - m00309s: -1 - m00309x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_15HPET[e] + - id: "EX_15HPET[e]" - name: "Exchange of 15(S)-HPETE" - metabolites: !!omap - m00380s: -1 - m00380x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_15kprostgf2[e] + - id: "EX_15kprostgf2[e]" - name: "Exchange of 15-Keto-Prostaglandin F2A" - metabolites: !!omap - 15kprostgf2_s: -1 - 15kprostgf2_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_21hprgnlone[e] + - id: "EX_21hprgnlone[e]" - name: "Exchange of 21-Hydroxypregnenolone" - metabolites: !!omap - 21hprgnlone_s: -1 - 21hprgnlone_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_2oxoadp[e] + - id: "EX_2oxoadp[e]" - name: "Exchange of 2-Oxoadipate" - metabolites: !!omap - m00670s: -1 - m00670x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_34hpl[e] + - id: "EX_34hpl[e]" - name: "Exchange of 3- (4-Hydroxyphenyl)Lactate" - metabolites: !!omap - m01004s: -1 - m01004x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_3hmp[e] + - id: "EX_3hmp[e]" - name: "Exchange of 3-Hydroxy-2-Methylpropanoate" - metabolites: !!omap - m00784s: -1 - m00784x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_3hpp[e] + - id: "EX_3hpp[e]" - name: "Exchange of 3-Hydroxypropionate" - metabolites: !!omap - m02142s: -1 - m02142x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_3hpppnohgluc[e] + - id: "EX_3hpppnohgluc[e]" - name: "Exchange of 3- (3-Hydroxy-Phenyl)Propionate Hydroxy Derivative Glucuronide" - metabolites: !!omap - 3hpppnohgluc_s: -1 - 3hpppnohgluc_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_3mhis[e] + - id: "EX_3mhis[e]" - name: "Exchange of Methyl-Histidine" - metabolites: !!omap - 3mhis_s: -1 - 3mhis_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_3uib[e] + - id: "EX_3uib[e]" - name: "Exchange of 3-Ureidoisobutyrate" - metabolites: !!omap - m00922s: -1 - m00922x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_4aabutn[e] + - id: "EX_4aabutn[e]" - name: "Exchange of 4-Acetamidobutanoate" - metabolites: !!omap - m00952s: -1 - m00952x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_4tmeabutn[e] + - id: "EX_4tmeabutn[e]" - name: "Exchange of 4- (Trimethylammonio)Butanoate" - metabolites: !!omap - m01922s: -1 - m01922x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_56dthm[e] + - id: "EX_56dthm[e]" - name: "Exchange of 5, 6-Dihydrothymine" - metabolites: !!omap - m01705s: -1 - m01705x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_56dura[e] + - id: "EX_56dura[e]" - name: "Exchange of 5, 6-Dihydrouracil" - metabolites: !!omap - m01052s: -1 - m01052x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_5HPET[e] + - id: "EX_5HPET[e]" - name: "Exchange of 5(S)-HPETE" - metabolites: !!omap - m01042s: -1 - m01042x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_7dhchsterol[e] + - id: "EX_7dhchsterol[e]" - name: "Exchange of Cholesta-5, 7-Dien-3Beta-Ol" - metabolites: !!omap - m02805s: -1 - m02805x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_acgly[e] + - id: "EX_acgly[e]" - name: "Exchange of Acetyl-Glycine" - metabolites: !!omap - acgly_s: -1 - acgly_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_aclys[e] + - id: "EX_aclys[e]" - name: "Exchange of Acetyl-Lysine" - metabolites: !!omap - aclys_s: -1 - aclys_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_acorn[e] + - id: "EX_acorn[e]" - name: "Exchange of N (2)-Acetyl-L-Ornithine" - metabolites: !!omap - m02546s: -1 - m02546x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_acthr_L[e] + - id: "EX_acthr_L[e]" - name: "Exchange of Acetyl-Threonine" - metabolites: !!omap - acthr_L_s: -1 - acthr_L_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_adpac[e] + - id: "EX_adpac[e]" - name: "Exchange of Adipic Acid" - metabolites: !!omap - adpac_s: -1 - adpac_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_adpoh[e] + - id: "EX_adpoh[e]" - name: "Exchange of 2-Hydroxyadipic Acid" - metabolites: !!omap - adpoh_s: -1 - adpoh_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_amet[e] + - id: "EX_amet[e]" - name: "Exchange of S-Adenosyl-L-Methionine" - metabolites: !!omap - m02877s: -1 - m02877x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_and19one[e] + - id: "EX_and19one[e]" - name: "Exchange of 19-Hydroxyandrost-4-Ene-3, 17-Dione" - metabolites: !!omap - and19one_s: -1 - and19one_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_aracheth[e] + - id: "EX_aracheth[e]" - name: "Exchange of O-Arachidonoyl Ethanolamine" - metabolites: !!omap - aracheth_s: -1 - aracheth_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_biliverd[e] + - id: "EX_biliverd[e]" - name: "Exchange of Biliverdin" - metabolites: !!omap - m01399s: -1 - m01399x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_C02356[e] + - id: "EX_C02356[e]" - name: "(S)-2-Aminobutanoate" - metabolites: !!omap - m00169s: -1 - m00169x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_C02712[e] + - id: "EX_C02712[e]" - name: "Exchange of N-Acetylmethionine" - metabolites: !!omap - m02540s: -1 - m02540x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_C04717[e] + - id: "EX_C04717[e]" - name: "Exchange of 13(S)-HPODE" - metabolites: !!omap - m00337s: -1 - m00337x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_C04805[e] + - id: "EX_C04805[e]" - name: "Exchange of 5(S)-HETE" - metabolites: !!omap - m01040s: -1 - m01040x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_C05957[e] + - id: "EX_C05957[e]" - name: "Exchange of Prostaglandin J2" - metabolites: !!omap - m02796s: -1 - m02796x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_C06314[e] + - id: "EX_C06314[e]" - name: "Exchange of Lipoxin A4" - metabolites: !!omap - m02395s: -1 - m02395x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_C06315[e] + - id: "EX_C06315[e]" - name: "Exchange of Lipoxin B4" - metabolites: !!omap - m02396s: -1 - m02396x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_C11695[e] + - id: "EX_C11695[e]" - name: "Exchange of Anandamide" - metabolites: !!omap - m01335s: -1 - m01335x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_C14768[e] + - id: "EX_C14768[e]" - name: "Exchange of 5, 6-EET" - metabolites: !!omap - m01054s: -1 - m01054x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_C14770[e] + - id: "EX_C14770[e]" - name: "Exchange of 11, 12-EET" - metabolites: !!omap - m00279s: -1 - m00279x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_C14771[e] + - id: "EX_C14771[e]" - name: "Exchange of 14, 15-EET" - metabolites: !!omap - m00366s: -1 - m00366x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_C14825[e] + - id: "EX_C14825[e]" - name: "Exchange of 9 (10)-Epome" - metabolites: !!omap - m01216s: -1 - m01216x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_C14826[e] + - id: "EX_C14826[e]" - name: "Exchange of 12 (13)-Epome" - metabolites: !!omap - m00305s: -1 - m00305x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE0955[e] + - id: "EX_CE0955[e]" - name: "6-Oxo-Prostaglandin F1Alpha" - metabolites: !!omap - m01168s: -1 - m01168x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE1273[e] + - id: "EX_CE1273[e]" - name: "Transport of 5Beta-Cholestane-3Alpha, 7Alpha, 12Alpha, 24S, 25-Pentol, ABC Transport" - metabolites: !!omap - m01087s: -1 - m01087x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE1297[e] + - id: "EX_CE1297[e]" - name: "Exchange of 8-Dehydrocholesterol" - metabolites: !!omap - CE1297_s: -1 - CE1297_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE1554[e] + - id: "EX_CE1554[e]" - name: "Exchange of Acetyl-Alanine" - metabolites: !!omap - m02530s: -1 - m02530x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE1557[e] + - id: "EX_CE1557[e]" - name: "Exchange of N-Acetyl-L-Asparagine" - metabolites: !!omap - m02531s: -1 - m02531x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE2028[e] + - id: "EX_CE2028[e]" - name: "Exchange of Beta-Hydroxy-Beta-Methylbutyrate" - metabolites: !!omap - m01392s: -1 - m01392x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE2176[e] + - id: "EX_CE2176[e]" - name: "Exchange of 3-O-Methyldopa" - metabolites: !!omap - m00830s: -1 - m00830x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE2445[e] + - id: "EX_CE2445[e]" - name: "Exchange of 6-Trans-Leukotriene B4" - metabolites: !!omap - m01172s: -1 - m01172x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE2537[e] + - id: "EX_CE2537[e]" - name: "Exchange of 15-Hydroxy- (8Z, 11Z, 13E)-Eicosatrienoate" - metabolites: !!omap - m00378s: -1 - m00378x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE4843[e] + - id: "EX_CE4843[e]" - name: "Exchange of Cis, Cis-11, 14-Eicosadienoyl Coenzyme A" - metabolites: !!omap - eidi1114ac_s: -1 - eidi1114ac_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: EX_CE5304[e] + - id: "EX_CE5304[e]" - name: "Exchange of 15-Deoxy-Pgd2" - metabolites: !!omap - m00384s: -1 - m00384x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE6031[e] + - id: "EX_CE6031[e]" - name: "Exchange of Androsterone Sulfate" - metabolites: !!omap - m01337s: -1 - m01337x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE6247[e] + - id: "EX_CE6247[e]" - name: "Exchange of 5, 12, 20-Trihete" - metabolites: !!omap - m01047s: -1 - m01047x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE7082[e] + - id: "EX_CE7082[e]" - name: "Exchange of 15(S)-HEPE" - metabolites: !!omap - m00376s: -1 - m00376x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE7083[e] + - id: "EX_CE7083[e]" - name: "Exchange of Leukotriene B5" - metabolites: !!omap - m02365s: -1 - m02365x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE7172[e] + - id: "EX_CE7172[e]" - name: "Exchange of 14, 15-DIHETE" - metabolites: !!omap - m00365s: -1 - m00365x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_cortsn[e] + - id: "EX_cortsn[e]" - name: "Exchange of Cortisone" - metabolites: !!omap - m01616s: -1 - m01616x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_didecaeth[e] + - id: "EX_didecaeth[e]" - name: "Exchange of C12:0-Ethanolamide, Didecanoyl Ethanolamide" - metabolites: !!omap - didecaeth_s: -1 - didecaeth_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_diholineth[e] + - id: "EX_diholineth[e]" - name: "Exchange of Dihomo-Gamma-Linolenoyl Ethanolamide" - metabolites: !!omap - diholineth_s: -1 - diholineth_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_docohxeth[e] + - id: "EX_docohxeth[e]" - name: "Exchange of Docosahexaenoyl Ethanolamide" - metabolites: !!omap - docohxeth_s: -1 - docohxeth_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_docteteth[e] + - id: "EX_docteteth[e]" - name: "Exchange of Docosatetraenoyl Ethanolamide (22:4, Delta 7, 10, 13, 16)" - metabolites: !!omap - docteteth_s: -1 - docteteth_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_dodecanac[e] + - id: "EX_dodecanac[e]" - name: "Exchange of Dodecanedioic Acid" - metabolites: !!omap - dodecanac_s: -1 - dodecanac_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_elaidcrn[e] + - id: "EX_elaidcrn[e]" - name: "Exchange of Elaidic Carnitine" - metabolites: !!omap - m00126s: -1 - m00126x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_forglu[e] + - id: "EX_forglu[e]" - name: "Exchange of N-Formimidoyl-L-Glutamate" - metabolites: !!omap - m02574s: -1 - m02574x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC00900[e] + - id: "EX_HC00900[e]" - name: "Exchange of Methylmalonate" - metabolites: !!omap - m02479s: -1 - m02479x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_hepdeceth[e] + - id: "EX_hepdeceth[e]" - name: "Exchange of Heptadecanoyl Thanolamide (C17:0)" - metabolites: !!omap - hepdeceth_s: -1 - hepdeceth_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_hexdeceeth[e] + - id: "EX_hexdeceeth[e]" - name: "Exchange of Hexadecenoyl Ethanolamide, C16:1-Ethanolamide (Delta 9)" - metabolites: !!omap - hexdeceeth_s: -1 - hexdeceeth_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_hexdiac[e] + - id: "EX_hexdiac[e]" - name: "Exchange of Hexadecanediocacid" - metabolites: !!omap - hexdiac_s: -1 - hexdiac_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_hgentis[e] + - id: "EX_hgentis[e]" - name: "Exchange of Homogentisate" - metabolites: !!omap - m02135s: -1 - m02135x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_hmcarn[e] + - id: "EX_hmcarn[e]" - name: "Exchange of Homocarnosine" - metabolites: !!omap - hmcarn_s: -1 - hmcarn_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_hmcr[e] + - id: "EX_hmcr[e]" - name: "Exchange of Homocitrulline" - metabolites: !!omap - hmcr_s: -1 - hmcr_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_hxcoa[e] + - id: "EX_hxcoa[e]" - name: "Exchange of Hexanoate" - metabolites: !!omap - m02122s: -1 - m02122x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_leuktrB4wcooh[e] + - id: "EX_leuktrB4wcooh[e]" - name: "Exchange of W-Carboxy Leukotriene B4" - metabolites: !!omap - m00585s: -1 - m00585x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_leuktrB4woh[e] + - id: "EX_leuktrB4woh[e]" - name: "Exchnage for W-Hydroxyl Leukotriene B4" - metabolites: !!omap - m00599s: -1 - m00599x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_lineth[e] + - id: "EX_lineth[e]" - name: "Exchange of Linoleoyl Ethanolamide" - metabolites: !!omap - lineth_s: -1 - lineth_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_lnlccrn[e] + - id: "EX_lnlccrn[e]" - name: "Exchange of Linoleyl Carnitine" - metabolites: !!omap - m02388s: -1 - m02388x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_Lpipecol[e] + - id: "EX_Lpipecol[e]" - name: "Exchange of L-Pipecolic Acid" - metabolites: !!omap - m02413s: -1 - m02413x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_lthstrl[e] + - id: "EX_lthstrl[e]" - name: "Exchange of Lathosterol" - metabolites: !!omap - m02343s: -1 - m02343x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_magarachi_hs[e] + - id: "EX_magarachi_hs[e]" - name: "Exchange of 1-Arachidonoyl Glycerol" - metabolites: !!omap - magarachi_hs_s: -1 - magarachi_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_maglinl_hs[e] + - id: "EX_maglinl_hs[e]" - name: "Exchange of 1-Linoleoylglycerol" - metabolites: !!omap - maglinl_hs_s: -1 - maglinl_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_magole_hs[e] + - id: "EX_magole_hs[e]" - name: "Exchange of 1-Oleoylglycerol" - metabolites: !!omap - magole_hs_s: -1 - magole_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_magpalm_hs[e] + - id: "EX_magpalm_hs[e]" - name: "Exchange of 1-Palmitoylglycerol" - metabolites: !!omap - magpalm_hs_s: -1 - magpalm_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_magste_hs[e] + - id: "EX_magste_hs[e]" - name: "Exchange of 1-Stearoylglycerol" - metabolites: !!omap - magste_hs_s: -1 - magste_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_mev_R[e] + - id: "EX_mev_R[e]" - name: "Exchange of (R)-Mevalonate" - metabolites: !!omap - m00167s: -1 - m00167x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_mi1p_D[e] + - id: "EX_mi1p_D[e]" - name: "Exchange of Myo-Inositol 1-Phosphate" - metabolites: !!omap - m02173s: -1 - m02173x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_Nacasp[e] + - id: "EX_Nacasp[e]" - name: "Exchange of N-Acetyl-L-Aspartate" - metabolites: !!omap - m02532s: -1 - m02532x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_nwharg[e] + - id: "EX_nwharg[e]" - name: "Exchange of N- (Omega)-Hydroxyarginine" - metabolites: !!omap - m02497s: -1 - m02497x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_oleth[e] + - id: "EX_oleth[e]" - name: "Exchange of Oleoyl Ethanolamide" - metabolites: !!omap - oleth_s: -1 - oleth_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pailar_hs[e] + - id: "EX_pailar_hs[e]" - name: "Exchange of 1-Arachidonoylglycerophosphoinositol" - metabolites: !!omap - pailar_hs_s: -1 - pailar_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pailpalm_hs[e] + - id: "EX_pailpalm_hs[e]" - name: "Exchange of 1-Palmitoylglycerophosphoinositol" - metabolites: !!omap - pailpalm_hs_s: -1 - pailpalm_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pailste_hs[e] + - id: "EX_pailste_hs[e]" - name: "Exchange of 1-Stearoylglycerophosphoinositol" - metabolites: !!omap - pailste_hs_s: -1 - pailste_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pchol2linl_hs[e] + - id: "EX_pchol2linl_hs[e]" - name: "Exchange of 2-Linoleoylglycerophosphocholine" - metabolites: !!omap - pchol2linl_hs_s: -1 - pchol2linl_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pchol2ole_hs[e] + - id: "EX_pchol2ole_hs[e]" - name: "Exchange of 2-Oleoylglycerophosphocholine" - metabolites: !!omap - pchol2ole_hs_s: -1 - pchol2ole_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pchol2palm_hs[e] + - id: "EX_pchol2palm_hs[e]" - name: "Exchange of 2-Palmitoylglycerophosphocholine" - metabolites: !!omap - pchol2palm_hs_s: -1 - pchol2palm_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pchol2ste_hs[e] + - id: "EX_pchol2ste_hs[e]" - name: "Exchange of 2-Stearoylglycerophosphocholine" - metabolites: !!omap - pchol2ste_hs_s: -1 - pchol2ste_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pcholar_hs[e] + - id: "EX_pcholar_hs[e]" - name: "Exchange of 1-Arachidonoyl-Glycero-3-Phosphocholine" - metabolites: !!omap - pcholar_hs_s: -1 - pcholar_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pcholdoc_hs[e] + - id: "EX_pcholdoc_hs[e]" - name: "Exchange of 1-Docosahexaenoylglycerophosphocholine" - metabolites: !!omap - pcholdoc_hs_s: -1 - pcholdoc_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pcholeic_hs[e] + - id: "EX_pcholeic_hs[e]" - name: "Exchange of 1-Eicosadienoylglycerophosphocholine (Delta 11, 14)" - metabolites: !!omap - pcholeic_hs_s: -1 - pcholeic_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pcholet_hs[e] + - id: "EX_pcholet_hs[e]" - name: "Exchange of 1-Eicosatrienoylglycerophosphocholine (Delta 11, 14, 17)" - metabolites: !!omap - pcholet_hs_s: -1 - pcholet_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pcholhep_hs[e] + - id: "EX_pcholhep_hs[e]" - name: "Exchange of 1-Heptadecanoylglycerophosphocholine" - metabolites: !!omap - pcholhep_hs_s: -1 - pcholhep_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pchollinl_hs[e] + - id: "EX_pchollinl_hs[e]" - name: "Exchange of 1-Linoleoylglycerophosphocholine (Delta 9, 12)" - metabolites: !!omap - pchollinl_hs_s: -1 - pchollinl_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pcholmyr_hs[e] + - id: "EX_pcholmyr_hs[e]" - name: "Exchange of 1-Myristoylglycerophosphocholine" - metabolites: !!omap - pcholmyr_hs_s: -1 - pcholmyr_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pcholn15_hs[e] + - id: "EX_pcholn15_hs[e]" - name: "Exchange of 1-Pentadecanoylglycerophosphocholine, Sn1-Lpc (15:0)" - metabolites: !!omap - pcholn15_hs_s: -1 - pcholn15_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pcholn183_hs[e] + - id: "EX_pcholn183_hs[e]" - name: "Exchange of 1-Octadeca-Trienoylglycerophosphocholine, Sn1-Lpc (18:3, Delta 9, 12, 15)" - metabolites: !!omap - pcholn183_hs_s: -1 - pcholn183_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pcholn1836_hs[e] + - id: "EX_pcholn1836_hs[e]" - name: "Exchange of 1-Octadeca-Trienoylglycerophosphocholine, Sn1-Lpc (18:3, Delta 6, 9, 12)" - metabolites: !!omap - pcholn1836_hs_s: -1 - pcholn1836_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pcholn19_hs[e] + - id: "EX_pcholn19_hs[e]" - name: "Exchange of 1-NoNADecanoylglycerophosphocholine, Sn1-Lpc (19:0)" - metabolites: !!omap - pcholn19_hs_s: -1 - pcholn19_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pcholn201_hs[e] + - id: "EX_pcholn201_hs[e]" - name: "Exchange of 1-Eicosenoylglycerophosphocholine (Delta 11) , Sn1-Lpc (20:1)" - metabolites: !!omap - pcholn201_hs_s: -1 - pcholn201_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pcholn203_hs[e] + - id: "EX_pcholn203_hs[e]" - name: "Exchange of 1-Dihomo-Linolenoylglycerophosphocholine (20:3, Delta 8, 11, 14), Lysopc A C20:3" - metabolites: !!omap - pcholn203_hs_s: -1 - pcholn203_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pcholn204_hs[e] + - id: "EX_pcholn204_hs[e]" - name: "Exchange of 1-Eicosatetraenoylglycerophosphocholine (Delta 8, 11, 14, 17), Sn1-Lpc (20:4)" - metabolites: !!omap - pcholn204_hs_s: -1 - pcholn204_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pcholn205_hs[e] + - id: "EX_pcholn205_hs[e]" - name: "Exchange of 1-Eicosapentenoylglycerophosphocholine (Delta 5, 8, 11, 14, 17), Sn1-Lpc (20:5)" - metabolites: !!omap - pcholn205_hs_s: -1 - pcholn205_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pcholn224_hs[e] + - id: "EX_pcholn224_hs[e]" - name: "Exchange of 1-Docosatetraenoylglycerophosphocholine (Delta 7, 10, 13, 16), Sn1-Lpc (22:4)" - metabolites: !!omap - pcholn224_hs_s: -1 - pcholn224_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pcholn225_hs[e] + - id: "EX_pcholn225_hs[e]" - name: "Exchange of 1-Docosapentenoylglycerophosphocholine (Delta 7, 10, 13, 16, 19), Sn1-Lpc (22:5)-W3" - metabolites: !!omap - pcholn225_hs_s: -1 - pcholn225_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pcholn2254_hs[e] + - id: "EX_pcholn2254_hs[e]" - name: "Exchange of 1-Docosapentenoylglycerophosphocholine (Delta 4, 7, 10, 13, 16), Sn1-Lpc (22:5)-W6" - metabolites: !!omap - pcholn2254_hs_s: -1 - pcholn2254_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pcholn226_hs[e] + - id: "EX_pcholn226_hs[e]" - name: "Exchange of 1-Docosahexenoylglycerophosphocholine (Delta 4, 7, 10, 13, 16, 19), Sn1-Lpc (22:6)" - metabolites: !!omap - pcholn226_hs_s: -1 - pcholn226_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pcholn24_hs[e] + - id: "EX_pcholn24_hs[e]" - name: "Exchange of 1-Lignocericylglycerophosphocholine (24:0), Lysopc A C24" - metabolites: !!omap - pcholn24_hs_s: -1 - pcholn24_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pcholn261_hs[e] + - id: "EX_pcholn261_hs[e]" - name: "Exchange of Lysopc A C26:1 (Delta 5)" - metabolites: !!omap - pcholn261_hs_s: -1 - pcholn261_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pcholn28_hs[e] + - id: "EX_pcholn28_hs[e]" - name: "Exchange of Lysopc A C28:0" - metabolites: !!omap - pcholn28_hs_s: -1 - pcholn28_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pcholn281_hs[e] + - id: "EX_pcholn281_hs[e]" - name: "Exchange of Lysopc A C28:1 (Delta 5)" - metabolites: !!omap - pcholn281_hs_s: -1 - pcholn281_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pcholole_hs[e] + - id: "EX_pcholole_hs[e]" - name: "Exchange of 1-Oleoylglycerophosphocholine (Delta 9)" - metabolites: !!omap - pcholole_hs_s: -1 - pcholole_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pcholpalm_hs[e] + - id: "EX_pcholpalm_hs[e]" - name: "Exchange of 1-Palmitoylglycerophosphocholine" - metabolites: !!omap - pcholpalm_hs_s: -1 - pcholpalm_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pcholpalme_hs[e] + - id: "EX_pcholpalme_hs[e]" - name: "Exchange of 1-Palmitoleoylglycerophosphocholine (Delta 9)" - metabolites: !!omap - pcholpalme_hs_s: -1 - pcholpalme_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pcholste_hs[e] + - id: "EX_pcholste_hs[e]" - name: "Exchange of 1-Stearoylglycerophosphocholine" - metabolites: !!omap - pcholste_hs_s: -1 - pcholste_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pcollg5hlys[e] + - id: "EX_pcollg5hlys[e]" - name: "Exchange of Erythro-5-Hydroxy-L-Lysinium" - metabolites: !!omap - m02381s: -1 - m02381x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pe12_hs[e] + - id: "EX_pe12_hs[e]" - name: "Exchange of 1-Didecanoylglycerophosphoethanolamine (C12:0 Pe)" - metabolites: !!omap - pe12_hs_s: -1 - pe12_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pe13_hs[e] + - id: "EX_pe13_hs[e]" - name: "Exchange of 1-Tridecanoylglycerophosphoethanolamine (C13:0 Pe)" - metabolites: !!omap - pe13_hs_s: -1 - pe13_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pe14_hs[e] + - id: "EX_pe14_hs[e]" - name: "Exchange of 1-Myristoylglycerophosphoethanolamine (C14:0 Pe)" - metabolites: !!omap - pe14_hs_s: -1 - pe14_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pe15_hs[e] + - id: "EX_pe15_hs[e]" - name: "Exchange of 1-Pentadecanoylglycerophosphoethanolamine (C15:0 Pe)" - metabolites: !!omap - pe15_hs_s: -1 - pe15_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pe161_hs[e] + - id: "EX_pe161_hs[e]" - name: "Exchange of 1-Hexadecenoylglycerophosphoethanolamine (C16:1 Pe, Delta 9)" - metabolites: !!omap - pe161_hs_s: -1 - pe161_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pe17_hs[e] + - id: "EX_pe17_hs[e]" - name: "Exchange of 1-Heptadecanoylglycerophosphoethanolamine (C17:0 Pe)" - metabolites: !!omap - pe17_hs_s: -1 - pe17_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pe203_hs[e] + - id: "EX_pe203_hs[e]" - name: "Exchange of 1-Eicosatrienoylglycerophosphoethanolamine (Delta 11, 14, 17), Lpe (20:3)" - metabolites: !!omap - pe203_hs_s: -1 - pe203_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pe224_hs[e] + - id: "EX_pe224_hs[e]" - name: "Exchange of 1-Docosatetraenoyglycerophosphoethanolamine (22:4, Delta 7, 10, 13, 16)" - metabolites: !!omap - pe224_hs_s: -1 - pe224_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pe226_hs[e] + - id: "EX_pe226_hs[e]" - name: "Exchange of 1-Docosahexenoylglyceroethanolamine (Delta 4, 7, 10, 13, 16, 19), Lpe (22:6)" - metabolites: !!omap - pe226_hs_s: -1 - pe226_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pe2linl_hs[e] + - id: "EX_pe2linl_hs[e]" - name: "Exchange of 2-Linoleoylglycerophosphoethanolamine" - metabolites: !!omap - pe2linl_hs_s: -1 - pe2linl_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pear_hs[e] + - id: "EX_pear_hs[e]" - name: "Exchange of 1-Arachidonoyl-Sn-Glycero-3-Phosphoethanolamine" - metabolites: !!omap - pear_hs_s: -1 - pear_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pedh203_hs[e] + - id: "EX_pedh203_hs[e]" - name: "Exchange of 1-Dihomo-Linolenoylglycerophosphoethanolamine (20:3, Delta 8, 11, 14)" - metabolites: !!omap - pedh203_hs_s: -1 - pedh203_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pelinl_hs[e] + - id: "EX_pelinl_hs[e]" - name: "Exchange of 1-Linoleoylglycerophosphoethanolamine (Delta 9, 12)" - metabolites: !!omap - pelinl_hs_s: -1 - pelinl_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pendecaeth[e] + - id: "EX_pendecaeth[e]" - name: "Exchange of Pentadecanoyl Thanolamide (C15:0)" - metabolites: !!omap - pendecaeth_s: -1 - pendecaeth_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_peole_hs[e] + - id: "EX_peole_hs[e]" - name: "Exchange of 1-Oleoylglycerophosphoethanolamine (Delta 9)" - metabolites: !!omap - peole_hs_s: -1 - peole_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pepalm_hs[e] + - id: "EX_pepalm_hs[e]" - name: "Exchange of 1-Palmitoylglycerophosphoethanolamine" - metabolites: !!omap - pepalm_hs_s: -1 - pepalm_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_peste_hs[e] + - id: "EX_peste_hs[e]" - name: "Exchange of 1-Stearoylglycerophosphoethanolamine" - metabolites: !!omap - peste_hs_s: -1 - peste_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pmeth[e] + - id: "EX_pmeth[e]" - name: "Exchange of Palmitoylethanolamide" - metabolites: !!omap - pmeth_s: -1 - pmeth_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_saccrp_L[e] + - id: "EX_saccrp_L[e]" - name: "Exchange of L-Saccharopinate" - metabolites: !!omap - m02868s: -1 - m02868x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_sebacid[e] + - id: "EX_sebacid[e]" - name: "Exchange of Sebacic Acid" - metabolites: !!omap - sebacid_s: -1 - sebacid_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_sphmyln180241_hs[e] + - id: "EX_sphmyln180241_hs[e]" - name: "Exchange of Sphingomyelin (D18:0/24:1)" - metabolites: !!omap - sphmyln180241_hs_s: -1 - sphmyln180241_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_sphmyln18114_hs[e] + - id: "EX_sphmyln18114_hs[e]" - name: "Exchange of Sphingomyelin (D18:1/14:0)" - metabolites: !!omap - sphmyln18114_hs_s: -1 - sphmyln18114_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_sphmyln18115_hs[e] + - id: "EX_sphmyln18115_hs[e]" - name: "Exchange of Sphingomyelin (D18:1/15:0)" - metabolites: !!omap - sphmyln18115_hs_s: -1 - sphmyln18115_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_sphmyln18116_hs[e] + - id: "EX_sphmyln18116_hs[e]" - name: "Exchange of Sphingomyelin (D18:1/16:0)" - metabolites: !!omap - sphmyln18116_hs_s: -1 - sphmyln18116_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_sphmyln181161_hs[e] + - id: "EX_sphmyln181161_hs[e]" - name: "Exchange of Sphingomyelin (D18:1/16:1)" - metabolites: !!omap - sphmyln181161_hs_s: -1 - sphmyln181161_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_sphmyln18117_hs[e] + - id: "EX_sphmyln18117_hs[e]" - name: "Exchange of Sphingomyelin (D18:1/17:0)" - metabolites: !!omap - sphmyln18117_hs_s: -1 - sphmyln18117_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_sphmyln18118_hs[e] + - id: "EX_sphmyln18118_hs[e]" - name: "Exchange of Sphingomyelin (D18:1/18:0)" - metabolites: !!omap - sphmyln18118_hs_s: -1 - sphmyln18118_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_sphmyln181181_hs[e] + - id: "EX_sphmyln181181_hs[e]" - name: "Exchange of Sphingomyelin (D18:1/18:1)" - metabolites: !!omap - sphmyln181181_hs_s: -1 - sphmyln181181_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_sphmyln18120_hs[e] + - id: "EX_sphmyln18120_hs[e]" - name: "Exchange of Sphingomyelin (D18:1/20:0)" - metabolites: !!omap - sphmyln18120_hs_s: -1 - sphmyln18120_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_sphmyln181201_hs[e] + - id: "EX_sphmyln181201_hs[e]" - name: "Exchange of Sphingomyelin (D18:1/20:1)" - metabolites: !!omap - sphmyln181201_hs_s: -1 - sphmyln181201_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_sphmyln18121_hs[e] + - id: "EX_sphmyln18121_hs[e]" - name: "Exchange of Sphingomyelin (D18:1/21:0)" - metabolites: !!omap - sphmyln18121_hs_s: -1 - sphmyln18121_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_sphmyln18122_hs[e] + - id: "EX_sphmyln18122_hs[e]" - name: "Exchange of Sphingomyelin (D18:1/22:0)" - metabolites: !!omap - sphmyln18122_hs_s: -1 - sphmyln18122_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_sphmyln181221_hs[e] + - id: "EX_sphmyln181221_hs[e]" - name: "Exchange of Sphingomyelin (D18:1/22:1)" - metabolites: !!omap - sphmyln181221_hs_s: -1 - sphmyln181221_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_sphmyln18123_hs[e] + - id: "EX_sphmyln18123_hs[e]" - name: "Exchange of Sphingomyelin (D18:1/23:0)" - metabolites: !!omap - sphmyln18123_hs_s: -1 - sphmyln18123_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_sphmyln1824_hs[e] + - id: "EX_sphmyln1824_hs[e]" - name: "Exchange of Sphingomyelin (D18:0/24:0)" - metabolites: !!omap - sphmyln1824_hs_s: -1 - sphmyln1824_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_sphmyln1825_hs[e] + - id: "EX_sphmyln1825_hs[e]" - name: "Exchange of Sphingomyelin (D18:0/25:0)" - metabolites: !!omap - sphmyln1825_hs_s: -1 - sphmyln1825_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_steeth[e] + - id: "EX_steeth[e]" - name: "Exchange of Stearoyl Ethanolamide" - metabolites: !!omap - steeth_s: -1 - steeth_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_subeac[e] + - id: "EX_subeac[e]" - name: "Exchange of Suberic Acid" - metabolites: !!omap - subeac_s: -1 - subeac_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_tetdeca511ac[e] + - id: "EX_tetdeca511ac[e]" - name: "Exchange of Cis-5, 8-Tetradecadienoic Acid " - metabolites: !!omap - tetdeca511ac_s: -1 - tetdeca511ac_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_tetdecaeth[e] + - id: "EX_tetdecaeth[e]" - name: "Exchange of C14:0-Ethanolamide, Tetradecanoyl Ethanolamide" - metabolites: !!omap - tetdecaeth_s: -1 - tetdecaeth_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_thrnt[e] + - id: "EX_thrnt[e]" - name: "Exchange of L-Threonate" - metabolites: !!omap - m02992s: -1 - m02992x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_tmlys[e] + - id: "EX_tmlys[e]" - name: "Exchange of N6, N6, N6-Trimethyl-L-Lysine" - metabolites: !!omap - m02517s: -1 - m02517x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_trideceth[e] + - id: "EX_trideceth[e]" - name: "Exchange of Tridecanoyl Thanolamide (C13:0)" - metabolites: !!omap - trideceth_s: -1 - trideceth_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_ttdcrn[e] + - id: "EX_ttdcrn[e]" - name: "Exchange of Tetradecanoyl Carnitine" - metabolites: !!omap - m02974s: -1 - m02974x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_txb2[e] + - id: "EX_txb2[e]" - name: "Exchange of Thromboxane B2" - metabolites: !!omap - txb2_s: -1 - txb2_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_urcan[e] + - id: "EX_urcan[e]" - name: "Exchange of Urocanate" - metabolites: !!omap - m03124s: -1 - m03124x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_wharachd[e] + - id: "EX_wharachd[e]" - name: "Exchange of W-Hydroxyl Arachidonic Acid" - metabolites: !!omap - m00270s: -1 - m00270x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_xolest181_hs[e] + - id: "EX_xolest181_hs[e]" - name: "Exchange of 1-Vaccenoyl-Cholesterol, Cholesterol-Ester (18:1, Delta 11)" - metabolites: !!omap - xolest181_hs_s: -1 - xolest181_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_xolest182_hs[e] + - id: "EX_xolest182_hs[e]" - name: "Exchange of 1-Linoleoyl-Cholesterol, Cholesterol-Ester (18:2, Delta 9, 12)" - metabolites: !!omap - xolest182_hs_s: -1 - xolest182_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_xolest183_hs[e] + - id: "EX_xolest183_hs[e]" - name: "Exchange of 1-Gamma-Linolenoyl-Cholesterol, Cholesterol-Ester (18:3, Delta 6, 9, 12)" - metabolites: !!omap - xolest183_hs_s: -1 - xolest183_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_xolest204_hs[e] + - id: "EX_xolest204_hs[e]" - name: "Exchange of Cholesteryl Arachidonate, Cholesterol-Ester (20:4, Delta 5, 8, 11, 14)" - metabolites: !!omap - xolest204_hs_s: -1 - xolest204_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_xolest205_hs[e] + - id: "EX_xolest205_hs[e]" - name: "Exchange of 1-Timnodnoyl-Cholesterol, Cholesterol-Ester (20:5, Delta 5, 8, 11, 14, 17)" - metabolites: !!omap - xolest205_hs_s: -1 - xolest205_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_xolest226_hs[e] + - id: "EX_xolest226_hs[e]" - name: "Exchange of Cholesteryl Docosahexanoate, Cholesterol-Ester (22:6, Delta 4, 7, 10, 13, 16, 19)" - metabolites: !!omap - xolest226_hs_s: -1 - xolest226_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: FORGLUt + - id: "FORGLUt" - name: "Transport of N-Formimidoyl-L-Glutamate" - metabolites: !!omap - m02574c: -1 - m02574s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GALTt + - id: "GALTt" - name: "Transport of Galactitol" - metabolites: !!omap - m01909c: -1 - m01909s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLYACm + - id: "GLYACm" - name: "Acetylation of Glycine" - metabolites: !!omap - acgly_m: 1 @@ -266414,15 +266414,15 @@ - m02039m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 24816252 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 24816252" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: LYSACm + - id: "LYSACm" - name: "Acetylation of Lysine" - metabolites: !!omap - aclys_m: 1 @@ -266432,15 +266432,15 @@ - m02426m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 21962087 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 21962087" - subsystem: - - Lysine metabolism + - "Lysine metabolism" - confidence_score: 0 - !!omap - - id: GLYC2Pte + - id: "GLYC2Pte" - name: "Transport of Glycerol-2-Phosphate" - metabolites: !!omap - glyc2p_c: -1 @@ -266449,30 +266449,30 @@ - m02039s: 2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLYCLTtd + - id: "GLYCLTtd" - name: "Diffusion of Glycolate" - metabolites: !!omap - m01998c: -1 - m01998s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HC00319t1 + - id: "HC00319t1" - name: "Malonate Transport, Antiport with Chloride" - metabolites: !!omap - m01442c: 1 @@ -266481,15 +266481,15 @@ - m02440s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 3627105 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 3627105" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HC00319t2 + - id: "HC00319t2" - name: "Malonate Transport, Antiport with Bicarbonate" - metabolites: !!omap - m02046c: 1 @@ -266498,15 +266498,15 @@ - m02440s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 3627105 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 3627105" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HC00900t1 + - id: "HC00900t1" - name: "Transport of Methylmalonate, Antiport with Sulphite" - metabolites: !!omap - m02479c: -1 @@ -266515,15 +266515,15 @@ - m02949s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 18213522. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 18213522." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HC00900t2 + - id: "HC00900t2" - name: "Transport of Methylmalonate, Antiport with Sulphate" - metabolites: !!omap - m02479c: -1 @@ -266532,15 +266532,15 @@ - m02946s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 18213522. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 18213522." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HC00900t3 + - id: "HC00900t3" - name: "Transport of Methylmalonate, Antiport with Thio-Sulphate" - metabolites: !!omap - m02479c: -1 @@ -266549,15 +266549,15 @@ - m02991s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 18213522. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 18213522." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HC00900t4 + - id: "HC00900t4" - name: "Transport of Methylmalonate, Antiport with Phsophate" - metabolites: !!omap - m02479c: -1 @@ -266566,30 +266566,30 @@ - m02751s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 18213522. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 18213522." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HC02149td + - id: "HC02149td" - name: "Transport of O-Propanoylcarnitine, Sodium Symport" - metabolites: !!omap - m02657c: -1 - m02657s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HEPDECETH + - id: "HEPDECETH" - name: "Formation of Heptadecanoyl Thanolamide (C17:0)" - metabolites: !!omap - hepdeceth_s: 1 @@ -266598,15 +266598,15 @@ - pe15_hs_s: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000075651 or ENSG00000129219 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 19126434 + - gene_reaction_rule: "ENSG00000075651 or ENSG00000129219" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 19126434" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HEXDECEETH + - id: "HEXDECEETH" - name: "Formation of C16:1-Ethanolamide" - metabolites: !!omap - hexdeceeth_s: 1 @@ -266615,15 +266615,15 @@ - pe161_hs_s: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000075651 or ENSG00000129219 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 19126434 + - gene_reaction_rule: "ENSG00000075651 or ENSG00000129219" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 19126434" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HEXDIACATP + - id: "HEXDIACATP" - name: "Transport of Hexadecanediocacid by FATP" - metabolites: !!omap - hexdiac_c: -1 @@ -266635,45 +266635,45 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 24653705, PMID: 9831619, PMID: 5555776, PMID: 23104810 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 24653705, PMID: 9831619, PMID: 5555776, PMID: 23104810" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HEXDIACtd + - id: "HEXDIACtd" - name: "Transport of Hexadecanediocacid by Diffusion" - metabolites: !!omap - hexdiac_c: -1 - hexdiac_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10331655, PMID: 11478366 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10331655, PMID: 11478366" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HGENTISt + - id: "HGENTISt" - name: "Transport of Homogentisate" - metabolites: !!omap - m02135c: -1 - m02135s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMCARNt + - id: "HMCARNt" - name: "Transport of Homocarnosine" - metabolites: !!omap - hmcarn_c: -1 @@ -266684,30 +266684,30 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 24514908 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 24514908" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMCRNt + - id: "HMCRNt" - name: "Transport of Homocitrulline" - metabolites: !!omap - hmcr_c: -1 - hmcr_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HPPPNte + - id: "HPPPNte" - name: "3- (3-Hydroxyphenyl)Propionate Transport via Proton Symport, Reversible into Caco 2 Cells" - metabolites: !!omap - 3hpppn_c: 1 @@ -266716,15 +266716,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15479001, PMID: 12663291PMID: 12739169 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15479001, PMID: 12663291PMID: 12739169" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HXCOAm + - id: "HXCOAm" - name: "Acyl-Coenzyme A Hydrolase, Mitochondrial" - metabolites: !!omap - hxa_m: 1 @@ -266734,45 +266734,45 @@ - m02122m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: HXCOAte + - id: "HXCOAte" - name: "Transport of Hexanoate, Cytosol" - metabolites: !!omap - m02122c: -1 - m02122s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HXCOAtx + - id: "HXCOAtx" - name: "Transport of Hexanoate, Peroxisome" - metabolites: !!omap - m02122c: 1 - m02122p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HXCOAx + - id: "HXCOAx" - name: "Acylcoa Hydrolase, Peroxisome" - metabolites: !!omap - hxa_p: 1 @@ -266782,30 +266782,30 @@ - m02122p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: IND3ACt + - id: "IND3ACt" - name: "Transport of Indole-3-Acetate" - metabolites: !!omap - m02169c: -1 - m02169s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LCYSTt + - id: "LCYSTt" - name: "Transport of L-Cysteate, Taurine Transport System" - metabolites: !!omap - m01442c: 1 @@ -266816,15 +266816,15 @@ - m02519s: -2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 4716833 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 4716833" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LEUKTRB4WCOOHt + - id: "LEUKTRB4WCOOHt" - name: "Transport of W-Carboxy Leukotriene B4, Active Transport" - metabolites: !!omap - m00585c: -1 @@ -266836,15 +266836,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 7966417 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 7966417" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LEUKTRB4WOHt + - id: "LEUKTRB4WOHt" - name: "Transport of W-Hydroxyl Leukotriene B4, Active Transport" - metabolites: !!omap - m00599c: -1 @@ -266856,15 +266856,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 7966417 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 7966417" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LEUKTRB4WOHtr + - id: "LEUKTRB4WOHtr" - name: "Transport of W-Hydroxyl Leukotriene B4, Intracellular Transport" - metabolites: !!omap - m00599c: 1 @@ -266876,30 +266876,30 @@ - m02751r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 7966417 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 7966417" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LNLCCRNtd + - id: "LNLCCRNtd" - name: "Transport of Linoleyl Carnitine, Diffusion" - metabolites: !!omap - m02388c: -1 - m02388s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LPIPECOLt + - id: "LPIPECOLt" - name: "Transport of L-Pipecolic Acid by Sodium Symport, Extracellular" - metabolites: !!omap - m02413c: -1 @@ -266908,15 +266908,15 @@ - m02519s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 7464982 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 7464982" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LPIPECOLtx + - id: "LPIPECOLtx" - name: "Transport of L-Pipecolic Acid by Sodium Symport, Intracellular" - metabolites: !!omap - m02413c: -1 @@ -266925,15 +266925,15 @@ - m02519p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 7464982 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 7464982" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LTHSTRLABCt + - id: "LTHSTRLABCt" - name: "Transport of Lathosterol, Energy Dependant" - metabolites: !!omap - m01285c: 1 @@ -266945,45 +266945,45 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LTHSTRLt + - id: "LTHSTRLt" - name: "Transport of Lathosterol, Diffusion" - metabolites: !!omap - m02343c: -1 - m02343s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: MEV_Rt + - id: "MEV_Rt" - name: "Transport of (R)-Mevalonate" - metabolites: !!omap - m00167c: -1 - m00167s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 3643925 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 3643925" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: MI1Pt + - id: "MI1Pt" - name: "Transport of Myo-Inositol 1-Phosphate, Proton Symport" - metabolites: !!omap - m02039c: 1 @@ -266992,15 +266992,15 @@ - m02173s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8145081 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8145081" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: NACASPt + - id: "NACASPt" - name: "Transport of N-Acetyl-L-Aspartate" - metabolites: !!omap - m02519c: -3 @@ -267009,30 +267009,30 @@ - m02532s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15836629 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15836629" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: NWHARGtd + - id: "NWHARGtd" - name: "Transport of N- (Omega)-Hydroxyarginine, Diffusion" - metabolites: !!omap - m02497c: -1 - m02497s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: OAAt + - id: "OAAt" - name: "Transport of Oxaloacetate, Proton Symport" - metabolites: !!omap - m02039c: -1 @@ -267041,15 +267041,15 @@ - m02633s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10722937 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10722937" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: OLEETH + - id: "OLEETH" - name: "Formation of Oleoyl Ethanolamide" - metabolites: !!omap - m02040s: -1 @@ -267058,45 +267058,45 @@ - peole_hs_s: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000075651 or ENSG00000129219 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 19126434 + - gene_reaction_rule: "ENSG00000075651 or ENSG00000129219" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 19126434" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: pac + - id: "pac" - name: "Transport of Phenylacetate by Diffusion" - metabolites: !!omap - m02720c: -1 - m02720s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCOLLG5HLYStd + - id: "PCOLLG5HLYStd" - name: "Transport of Erythro-5-Hydroxy-L-Lysinium, Diffusion" - metabolites: !!omap - m02381c: -1 - m02381s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PELINETH + - id: "PELINETH" - name: "Formation of Linoleoyl Ethanolamide" - metabolites: !!omap - lineth_s: 1 @@ -267105,15 +267105,15 @@ - pelinl_hs_s: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000075651 or ENSG00000129219 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 19126434 + - gene_reaction_rule: "ENSG00000075651 or ENSG00000129219" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 19126434" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PENDECAETH + - id: "PENDECAETH" - name: "Formation of Pentadecanoyl Thanolamide (C15:0)" - metabolites: !!omap - m02040s: -1 @@ -267122,15 +267122,15 @@ - pendecaeth_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000075651 or ENSG00000129219 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 19126434 + - gene_reaction_rule: "ENSG00000075651 or ENSG00000129219" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 19126434" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PEPALM + - id: "PEPALM" - name: "Formation of Palmitoylethanolamide" - metabolites: !!omap - m02040s: -1 @@ -267139,90 +267139,90 @@ - pmeth_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000075651 or ENSG00000129219 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 19126434 + - gene_reaction_rule: "ENSG00000075651 or ENSG00000129219" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 19126434" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: PROSTGI2c + - id: "PROSTGI2c" - name: "Formation of Prostaglandin I2" - metabolites: !!omap - 15kprostgf2_c: 1 - m02795c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 21962087 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 21962087" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PSERtr + - id: "PSERtr" - name: "Transport of O-Phospho-L-Serine, Diffusion" - metabolites: !!omap - m00916c: -1 - m00916s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SACCRP_Lte + - id: "SACCRP_Lte" - name: "Transport of L-Saccharopinate, Intracellular" - metabolites: !!omap - m02868c: -1 - m02868m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SACCRP_Ltm + - id: "SACCRP_Ltm" - name: "Transport of L-Saccharopinate, Extracellular" - metabolites: !!omap - m02868c: -1 - m02868s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SEBACIDtd + - id: "SEBACIDtd" - name: "Transport of Sebacic Acid by Diffusion" - metabolites: !!omap - sebacid_c: -1 - sebacid_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Glatz JFC, Luiken JJFP, Bonen A. (2010). Physiological Reviews 90: 367-417, Kamp F, Hamilton JA. (2006). Prostaglandins, Leukotrienes and Essential Fatty Acids 75: 149-59, PMCID: PMC2785172, Evtodienko VY, Bondarenko DI, Antonenko YN. (1999). Biochimica et Biophysica Acta (BBA) - Biomembranes 1420: 95-103 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Glatz JFC, Luiken JJFP, Bonen A. (2010). Physiological Reviews 90: 367-417, Kamp F, Hamilton JA. (2006). Prostaglandins, Leukotrienes and Essential Fatty Acids 75: 149-59, PMCID: PMC2785172, Evtodienko VY, Bondarenko DI, Antonenko YN. (1999). Biochimica et Biophysica Acta (BBA) - Biomembranes 1420: 95-103" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: STEETH + - id: "STEETH" - name: "Formation of Stearoyl Ethanolamide" - metabolites: !!omap - m02040s: -1 @@ -267231,30 +267231,30 @@ - steeth_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000075651 or ENSG00000129219 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 19126434 + - gene_reaction_rule: "ENSG00000075651 or ENSG00000129219" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 19126434" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: SUBEACtd + - id: "SUBEACtd" - name: "Transport of Suberic Acid by Diffusion" - metabolites: !!omap - subeac_c: -1 - subeac_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Glatz JFC, Luiken JJFP, Bonen A. (2010). Physiological Reviews 90: 367-417, Kamp F, Hamilton JA. (2006). Prostaglandins, Leukotrienes and Essential Fatty Acids 75: 149-59, PMCID: PMC2785172, Evtodienko VY, Bondarenko DI, Antonenko YN. (1999). Biochimica et Biophysica Acta (BBA) - Biomembranes 1420: 95-103 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Glatz JFC, Luiken JJFP, Bonen A. (2010). Physiological Reviews 90: 367-417, Kamp F, Hamilton JA. (2006). Prostaglandins, Leukotrienes and Essential Fatty Acids 75: 149-59, PMCID: PMC2785172, Evtodienko VY, Bondarenko DI, Antonenko YN. (1999). Biochimica et Biophysica Acta (BBA) - Biomembranes 1420: 95-103" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TETDECA511ACt + - id: "TETDECA511ACt" - name: "Transport of Cis-5, 8-Tetradecadienoic Acid, Active Transport" - metabolites: !!omap - m01285c: 1 @@ -267266,30 +267266,30 @@ - tetdeca511ac_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 24653705, PMID: 9831619, PMID: 5555776, PMID: 23104810 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 24653705, PMID: 9831619, PMID: 5555776, PMID: 23104810" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TETDECA511ACtd + - id: "TETDECA511ACtd" - name: "Transport of Cis-5, 8-Tetradecadienoic Acid, Diffusion" - metabolites: !!omap - tetdeca511ac_c: -1 - tetdeca511ac_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TETDECAETH + - id: "TETDECAETH" - name: "Formation of C14:0-Ethanolamide" - metabolites: !!omap - m02040s: -1 @@ -267298,15 +267298,15 @@ - tetdecaeth_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000075651 or ENSG00000129219 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 19126434 + - gene_reaction_rule: "ENSG00000075651 or ENSG00000129219" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 19126434" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: THRACm + - id: "THRACm" - name: "Acetylation of Threonine" - metabolites: !!omap - acthr_L_m: 1 @@ -267316,15 +267316,15 @@ - m02993m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 24816252 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 24816252" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: THRNTt + - id: "THRNTt" - name: "Transport of L-Threonate by Active Transport" - metabolites: !!omap - m01285c: 1 @@ -267336,30 +267336,30 @@ - m02992s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10420182 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10420182" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TMLYStd + - id: "TMLYStd" - name: "Transport of N6, N6, N6-Trimethyl-L-Lysine, Diffusion" - metabolites: !!omap - m02517c: -1 - m02517s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TRIDECETH + - id: "TRIDECETH" - name: "Formation of C13:0-Ethanolamide" - metabolites: !!omap - m02040s: -1 @@ -267368,15 +267368,15 @@ - trideceth_s: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000075651 or ENSG00000129219 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 19126434 + - gene_reaction_rule: "ENSG00000075651 or ENSG00000129219" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 19126434" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: TXB2c + - id: "TXB2c" - name: "Formation of Thromboxane B2" - metabolites: !!omap - m02040c: -1 @@ -267384,15 +267384,15 @@ - txb2_c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 21962087 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 21962087" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: TXB2t + - id: "TXB2t" - name: "Transport of Thromboxane B2" - metabolites: !!omap - m01285c: 1 @@ -267404,30 +267404,30 @@ - txb2_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15070098 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15070098" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: URCANt + - id: "URCANt" - name: "Transport of Urocanate" - metabolites: !!omap - m03124c: -1 - m03124s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: WHARACHDt + - id: "WHARACHDt" - name: "Transport of W-Hydroxyl Arachidonic Acid, Active Transport" - metabolites: !!omap - m00270c: -1 @@ -267439,30 +267439,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 24653705, PMID: 9831619, PMID: 5555776, PMID: 23104810 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 24653705, PMID: 9831619, PMID: 5555776, PMID: 23104810" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: WHARACHDtd + - id: "WHARACHDtd" - name: "Transport of W-Hydroxyl Arachidonic Acid, Diffusion" - metabolites: !!omap - m00270c: -1 - m00270s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: WHARACHDtr + - id: "WHARACHDtr" - name: "Transport of W-Hydroxyl Arachidonic Acid, Intracellular" - metabolites: !!omap - m00270c: 1 @@ -267474,15 +267474,15 @@ - m02751r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 24653705, PMID: 9831619, PMID: 5555776, PMID: 23104810 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 24653705, PMID: 9831619, PMID: 5555776, PMID: 23104810" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ACILEm + - id: "ACILEm" - name: "Acetylation of Isoleucine" - metabolites: !!omap - acile_L_m: 1 @@ -267492,60 +267492,60 @@ - m02184m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 24816252 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 24816252" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: ACILEtm + - id: "ACILEtm" - name: "Transport of Acetyl Isoleucine, Intracellular" - metabolites: !!omap - acile_L_c: 1 - acile_L_m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ACILEte + - id: "ACILEte" - name: "Transport of Acetyl Isoleucine, Extracellular" - metabolites: !!omap - acile_L_c: -1 - acile_L_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_acile_L[e] + - id: "EX_acile_L[e]" - name: "Exchange of Acetyl Isoleucine" - metabolites: !!omap - acile_L_s: -1 - acile_L_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: ACLEUm + - id: "ACLEUm" - name: "Acetylation of Leucine" - metabolites: !!omap - acleu_L_m: 1 @@ -267555,135 +267555,135 @@ - m02360m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 24816252 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 24816252" - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: ACLEUtm + - id: "ACLEUtm" - name: "Transport of Acetyl Leucine, Intracellular" - metabolites: !!omap - acleu_L_c: 1 - acleu_L_m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ACLEUte + - id: "ACLEUte" - name: "Transport of Acetyl Leucine, Extracellular" - metabolites: !!omap - acleu_L_c: -1 - acleu_L_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_acleu_L[e] + - id: "EX_acleu_L[e]" - name: "Exchange of Acetyl Leucine" - metabolites: !!omap - acleu_L_s: -1 - acleu_L_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: ACHOMtm + - id: "ACHOMtm" - name: "Transport of Acetyl Homoserine, Intracellular" - metabolites: !!omap - achom_L_c: 1 - achom_L_m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ACHOMte + - id: "ACHOMte" - name: "Transport of Acetyl Homoserine, Extracellular" - metabolites: !!omap - achom_L_c: -1 - achom_L_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_achom_L[e] + - id: "EX_achom_L[e]" - name: "Exchange of Acetyl Homoserine" - metabolites: !!omap - achom_L_s: -1 - achom_L_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: PHACGLYt + - id: "PHACGLYt" - name: "Transport of Phenylacetylglycine, Extracellular" - metabolites: !!omap - phacgly_c: -1 - phacgly_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_phacgly[e] + - id: "EX_phacgly[e]" - name: "Exchange of Phenylacetylglycine" - metabolites: !!omap - phacgly_s: -1 - phacgly_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: ESTRIOLATP + - id: "ESTRIOLATP" - name: "Transport of Estriol" - metabolites: !!omap - m01285c: 1 @@ -267695,270 +267695,270 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: http://www.medscape.com/viewarticle/708713_2 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "http://www.medscape.com/viewarticle/708713_2" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_3hpppn[e] + - id: "EX_3hpppn[e]" - name: "Exchange of 3- (3-Hydroxy-Phenyl)Propionate " - metabolites: !!omap - 3hpppn_s: -1 - 3hpppn_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_3moxtyr[e] + - id: "EX_3moxtyr[e]" - name: "Exchange of 3-Methoxytyramine" - metabolites: !!omap - m00821s: -1 - m00821x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_5aop[e] + - id: "EX_5aop[e]" - name: "Exchange of 5-Amino-4-Oxopentanoate" - metabolites: !!omap - m01074s: -1 - m01074x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_abt_D[e] + - id: "EX_abt_D[e]" - name: "Exchange of D-Arabitol" - metabolites: !!omap - abt_D_s: -1 - abt_D_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_acglu[e] + - id: "EX_acglu[e]" - name: "Exchange of N-Acetyl-L-Glutamate" - metabolites: !!omap - m02536s: -1 - m02536x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_alltn[e] + - id: "EX_alltn[e]" - name: "Exchange of Allantoin" - metabolites: !!omap - m01313s: -1 - m01313x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE2510[e] + - id: "EX_CE2510[e]" - name: "Exchange of 11-Cis-Eicosenoate" - metabolites: !!omap - m01584s: -1 - m01584x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE2516[e] + - id: "EX_CE2516[e]" - name: "Exchangefor (8Z, 11Z, 14Z)-Eicosatrienoic Acid" - metabolites: !!omap - CE2516_s: -1 - CE2516_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_ddca[e] + - id: "EX_ddca[e]" - name: "Exchange of Laurate" - metabolites: !!omap - m02344s: -1 - m02344x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_glyc2p[e] + - id: "EX_glyc2p[e]" - name: "Exchange of Glycerol-2-Phosphate" - metabolites: !!omap - glyc2p_s: -1 - glyc2p_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_glyclt[e] + - id: "EX_glyclt[e]" - name: "Exchange of Glycolate" - metabolites: !!omap - m01998s: -1 - m01998x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_Lcyst[e] + - id: "EX_Lcyst[e]" - name: "Exchnage for L-Cysteate" - metabolites: !!omap - m02350s: -1 - m02350x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_oaa[e] + - id: "EX_oaa[e]" - name: "Exchange of Oxaloacetate" - metabolites: !!omap - m02633s: -1 - m02633x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pac[e] + - id: "EX_pac[e]" - name: "Exchange of Phenylacetate" - metabolites: !!omap - m02720s: -1 - m02720x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_phlac[e] + - id: "EX_phlac[e]" - name: "Exchange of Phenyl Lactate" - metabolites: !!omap - phlac_s: -1 - phlac_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pser_L[e] + - id: "EX_pser_L[e]" - name: "Exchange of O-Phospho-L-Serine" - metabolites: !!omap - m00916s: -1 - m00916x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_ttdcea[e] + - id: "EX_ttdcea[e]" - name: "Exchange of Tetradecenoate (N-C14:1)" - metabolites: !!omap - m00128s: -1 - m00128x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: 3HPPPNOHGLUCc + - id: "3HPPPNOHGLUCc" - name: "Glucuronidation of 3- (3-Hydroxyphenyl)Propionate Hydroxy Derivative" - metabolites: !!omap - 3hpppnoh_c: -1 @@ -267968,15 +267968,15 @@ - m03109c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11375750, + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11375750," - subsystem: - - Phenylalanine metabolism + - "Phenylalanine metabolism" - confidence_score: 0 - !!omap - - id: ACHOMm + - id: "ACHOMm" - name: "Acetylation of Homoserine" - metabolites: !!omap - achom_L_m: 1 @@ -267986,15 +267986,15 @@ - m02136m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 24816252 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 24816252" - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HC02195c + - id: "HC02195c" - name: "Formation of Tauroursodeoxycholate" - metabolites: !!omap - m01597c: 1 @@ -268003,15 +268003,15 @@ - urscholcoa_c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136881 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11344576, PMID: 6631218 + - gene_reaction_rule: "ENSG00000136881" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11344576, PMID: 6631218" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HC02196c + - id: "HC02196c" - name: "Formation of Glycoursodeoxycholate" - metabolites: !!omap - m01597c: 1 @@ -268020,15 +268020,15 @@ - urscholcoa_c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000136881 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11344576, PMID: 6631218 + - gene_reaction_rule: "ENSG00000136881" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11344576, PMID: 6631218" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HC02220c + - id: "HC02220c" - name: "Formation of Sulfochenodeoxycholate" - metabolites: !!omap - C02528_c: -1 @@ -268038,15 +268038,15 @@ - m02950c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105398 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 19131563, PMID: 16949895 + - gene_reaction_rule: "ENSG00000105398" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 19131563, PMID: 16949895" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 7KLITCHOLc + - id: "7KLITCHOLc" - name: "Formation of 7-Ketolithocholate" - metabolites: !!omap - 7klitchol_c: 1 @@ -268058,15 +268058,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11344576, PMID: 6631218 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11344576, PMID: 6631218" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HC02194c + - id: "HC02194c" - name: "Formation of Ursodeoxycholate" - metabolites: !!omap - 7klitchol_c: -1 @@ -268076,15 +268076,15 @@ - m03129c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11344576, PMID: 6631218 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11344576, PMID: 6631218" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: URSCHOLCOAc + - id: "URSCHOLCOAc" - name: "Formation of Ursodeoxycholyl Coa" - metabolites: !!omap - m01334c: 1 @@ -268095,15 +268095,15 @@ - urscholcoa_c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11344576, PMID: 6631218 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11344576, PMID: 6631218" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HC02195te + - id: "HC02195te" - name: "Transport of Bile Acid, Tauroursodeoxycholate, Active Transport" - metabolites: !!omap - m01285c: 1 @@ -268115,15 +268115,15 @@ - m02966s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073734 or ENSG00000108846 or ENSG00000121270 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 19498215 + - gene_reaction_rule: "ENSG00000073734 or ENSG00000108846 or ENSG00000121270" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 19498215" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HC02196te + - id: "HC02196te" - name: "Transport of Bile Acid, Glycoursodeoxycholate, Active Transport" - metabolites: !!omap - m01285c: 1 @@ -268135,15 +268135,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073734 or ENSG00000108846 or ENSG00000121270 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 19498215 + - gene_reaction_rule: "ENSG00000073734 or ENSG00000108846 or ENSG00000121270" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 19498215" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HC02194te + - id: "HC02194te" - name: "Transport of Bile Acid, Ursodeoxycholate, Active Transport" - metabolites: !!omap - m01285c: 1 @@ -268155,15 +268155,15 @@ - m03129s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000073734 or ENSG00000108846 or ENSG00000125257 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 19498215 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000073734 or ENSG00000108846 or ENSG00000125257" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 19498215" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HC02220te + - id: "HC02220te" - name: "Transport of Bile Acid, Sulfochenodeoxycholate, Active Transport" - metabolites: !!omap - m01285c: 1 @@ -268175,15 +268175,15 @@ - m02950s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000108846 or ENSG00000118777 or ENSG00000125257 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 19498215 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000108846 or ENSG00000118777 or ENSG00000125257" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 19498215" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HC02191c + - id: "HC02191c" - name: "Formation of Lithocholic Acid" - metabolites: !!omap - m00763c: -1 @@ -268194,45 +268194,45 @@ - m02555c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 6047622 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 6047622" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: XOL27OHtmc + - id: "XOL27OHtmc" - name: "Transport of 26-Hydroxycholesterol, Intracellular" - metabolites: !!omap - m00623c: 1 - m00623m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ALPA_HStc + - id: "ALPA_HStc" - name: "Intracellular Transport of Lysophosphatidic Acid" - metabolites: !!omap - alpa_hs_c: 1 - alpa_hs_p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r0202m + - id: "r0202m" - name: "Mitochondrial Glycerol-3-Phosphate-Dehydrogenase" - metabolites: !!omap - m01690m: 1 @@ -268242,15 +268242,15 @@ - m02914m: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8549872 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8549872" - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: BZCOAFm + - id: "BZCOAFm" - name: "Benzoyl Coenzyme A Formation" - metabolites: !!omap - bzcoa_m: 1 @@ -268261,15 +268261,15 @@ - m02759m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20849615, PMID:23342949 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20849615, PMID:23342949" - subsystem: - - Hippurate metabolism + - "Hippurate metabolism" - confidence_score: 0 - !!omap - - id: BGLYFm + - id: "BGLYFm" - name: "Hippurate (Benzoylglycinate) Formation" - metabolites: !!omap - bzcoa_m: -1 @@ -268279,15 +268279,15 @@ - m02123m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:20849615, PMID:23342949 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:20849615, PMID:23342949" - subsystem: - - Hippurate metabolism + - "Hippurate metabolism" - confidence_score: 0 - !!omap - - id: GLYNATm + - id: "GLYNATm" - name: "Glycine-N-Acetyltransferase" - metabolites: !!omap - m01597m: 1 @@ -268297,30 +268297,30 @@ - pheacgly_m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149124 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:18854818, PMID:21591676 + - gene_reaction_rule: "ENSG00000149124" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:18854818, PMID:21591676" - subsystem: - - Phenylalanine metabolism + - "Phenylalanine metabolism" - confidence_score: 0 - !!omap - - id: PHEACGLYsec + - id: "PHEACGLYsec" - name: "Secretion of Phenylacetylglycine" - metabolites: !!omap - pheacgly_c: -1 - pheacgly_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:19072164 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:19072164" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCSF + - id: "PCSF" - name: "P-Cresol Sulfate Formation from P-Cresol" - metabolites: !!omap - m02681c: 1 @@ -268329,15 +268329,15 @@ - pcs_c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000196502 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:19667173, PMID:22306194 + - gene_reaction_rule: "ENSG00000196502" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:19667173, PMID:22306194" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: INDOXYLF + - id: "INDOXYLF" - name: "Indoxyl Formation from Indole" - metabolites: !!omap - indole_c: -1 @@ -268348,15 +268348,15 @@ - m02555c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130649 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11808865, PMID:12064372, PMID:21343587 + - gene_reaction_rule: "ENSG00000130649" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11808865, PMID:12064372, PMID:21343587" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: INDSF + - id: "INDSF" - name: "Indoxyl Sulfate Formation from Indoxyl" - metabolites: !!omap - indoxyl_c: -1 @@ -268365,30 +268365,30 @@ - m02682c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000196502 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:11808865, PMID:12064372, PMID:21343587 + - gene_reaction_rule: "ENSG00000196502" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:11808865, PMID:12064372, PMID:21343587" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: INDOLEup + - id: "INDOLEup" - name: "Indole Uptake into the Liver" - metabolites: !!omap - indole_c: 1 - indole_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:21343587 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:21343587" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: INDSt + - id: "INDSt" - name: "Indoxyl Sulfate Transport into the Kidney via Oat1 (Slc22A6)" - metabolites: !!omap - inds_c: 1 @@ -268397,4140 +268397,4140 @@ - m01306s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197901 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:21476605, PMID:21343587, PMID:21303967 + - gene_reaction_rule: "ENSG00000197901" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:21476605, PMID:21343587, PMID:21303967" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCRESOLup + - id: "PCRESOLup" - name: "P-Cresol Uptake into the Liver" - metabolites: !!omap - pcresol_c: 1 - pcresol_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:21343587 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:21343587" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCSsec + - id: "PCSsec" - name: "Secretion of P-Cresol Sulfate " - metabolites: !!omap - pcs_c: -1 - pcs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:21343587 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:21343587" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCSup + - id: "PCSup" - name: "Uptake of P-Cresol Sulfate " - metabolites: !!omap - pcs_c: 1 - pcs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:21343587 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:21343587" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3HCINNMup + - id: "3HCINNMup" - name: "3-Hydroxycinnamic Acid Uptake" - metabolites: !!omap - 3hcinnm_c: 1 - 3hcinnm_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:12904817 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:12904817" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3HCINNMsec + - id: "3HCINNMsec" - name: "3-Hydroxycinanmic Acid Secretion" - metabolites: !!omap - 3hcinnm_c: -1 - 3hcinnm_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:12904817 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:12904817" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3HPPAup + - id: "3HPPAup" - name: "3-Hydroxyphenylpropionic Acid Uptake" - metabolites: !!omap - 3hppa_c: 1 - 3hppa_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:12904817, PMID:12663291 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:12904817, PMID:12663291" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3HPPAsec + - id: "3HPPAsec" - name: "3-Hydroxyphenylpropionic Acid Secretion" - metabolites: !!omap - 3hppa_c: -1 - 3hppa_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:12904817, PMID:12663291 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:12904817, PMID:12663291" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_3hcinnm[e] + - id: "EX_3hcinnm[e]" - name: "3-Hydroxycinnamic Acid Exchange" - metabolites: !!omap - 3hcinnm_s: -1 - 3hcinnm_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_3hppa[e] + - id: "EX_3hppa[e]" - name: "3-Hydroxyphenylpropionic Acid Exchange" - metabolites: !!omap - 3hppa_s: -1 - 3hppa_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_bgly[e] + - id: "EX_bgly[e]" - name: "Exchange of Hippurate (Benzoylglycinate) " - metabolites: !!omap - m02123s: -1 - m02123x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pheacgly[e] + - id: "EX_pheacgly[e]" - name: "Exchange of Phenylacetylglycine " - metabolites: !!omap - pheacgly_s: -1 - pheacgly_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_bz[e] + - id: "EX_bz[e]" - name: "Benzoic Acid Exchange" - metabolites: !!omap - m01380s: -1 - m01380x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pcresol[e] + - id: "EX_pcresol[e]" - name: "P-Cresol Exchange" - metabolites: !!omap - pcresol_s: -1 - pcresol_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pcs[e] + - id: "EX_pcs[e]" - name: "Exchange of P-Cresol Sulfate " - metabolites: !!omap - pcs_s: -1 - pcs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_inds[e] + - id: "EX_inds[e]" - name: "Exchange of Indoxyl Sulfate " - metabolites: !!omap - inds_s: -1 - inds_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: NORMETEt + - id: "NORMETEt" - name: "Transport of L-Normetanephrine" - metabolites: !!omap - m02622c: 1 - m02622s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 24870542 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 24870542" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: MEPIt + - id: "MEPIt" - name: "Transport of Metanephrine" - metabolites: !!omap - m02407c: 1 - m02407s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 24870542 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 24870542" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TREt + - id: "TREt" - name: "Transport of Trehalose, Reversible" - metabolites: !!omap - m03039c: 1 - m03039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 12065209 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 12065209" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C05300t + - id: "C05300t" - name: "Transport of 16Alpha-Hydroxyestrone" - metabolites: !!omap - m00400c: -1 - m00400s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 24870542 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 24870542" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: RETINALt + - id: "RETINALt" - name: "Transport of Retinal" - metabolites: !!omap - m02832c: -1 - m02832s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 24870542 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 24870542" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: MALTTTRt + - id: "MALTTTRt" - name: "Transport of Maltotetraose, Reversible" - metabolites: !!omap - maltttr_c: 1 - maltttr_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 24870542 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 24870542" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LEULEUt + - id: "LEULEUt" - name: "Transport of Leucylleucine, Reversible" - metabolites: !!omap - leuleu_c: -1 - leuleu_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 24870542 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 24870542" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLYPROt + - id: "GLYPROt" - name: "Transport of Glycylproline" - metabolites: !!omap - glypro_c: -1 - glypro_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 24870542 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 24870542" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PROGLyt + - id: "PROGLyt" - name: "Transport of Prolylglycine" - metabolites: !!omap - progly_c: -1 - progly_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 24870542 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 24870542" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: DHBPTt + - id: "DHBPTt" - name: "Transport of 6,7-Dihydrobiopterin" - metabolites: !!omap - m01698c: -1 - m01698s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 24870542 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 24870542" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: THBPTt + - id: "THBPTt" - name: "Transport of 5,6,7,8-Tetrahydrobiopterin" - metabolites: !!omap - m02978c: -1 - m02978s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 24870542 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 24870542" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_normete_L[e] + - id: "EX_normete_L[e]" - name: "Exchange of L-Normetanephrine" - metabolites: !!omap - m02622s: -1 - m02622x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_C05300[e] + - id: "EX_C05300[e]" - name: "Exchange of 16Alpha-Hydroxyestrone" - metabolites: !!omap - m00400s: -1 - m00400x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_retinal[e] + - id: "EX_retinal[e]" - name: "Exchange of Retinal" - metabolites: !!omap - m02832s: -1 - m02832x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_maltttr[e] + - id: "EX_maltttr[e]" - name: "Exchange of Maltotetraose" - metabolites: !!omap - maltttr_s: -1 - maltttr_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_progly[e] + - id: "EX_progly[e]" - name: "Exchange of L-Prolinylglycine" - metabolites: !!omap - progly_s: -1 - progly_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_dhbpt[e] + - id: "EX_dhbpt[e]" - name: "Exchange of 6,7-Dihydrobiopterin" - metabolites: !!omap - m01698s: -1 - m01698x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_thbpt[e] + - id: "EX_thbpt[e]" - name: "Exchange of 5,6,7,8-Tetrahydrobiopterin" - metabolites: !!omap - m02978s: -1 - m02978x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_alaargcys[e] + - id: "EX_alaargcys[e]" - name: "Exchange of AlaArgCys" - metabolites: !!omap - alaargcys_s: -1 - alaargcys_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_alaarggly[e] + - id: "EX_alaarggly[e]" - name: "Exchange of AlaArgGly" - metabolites: !!omap - alaarggly_s: -1 - alaarggly_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_alaasnleu[e] + - id: "EX_alaasnleu[e]" - name: "Exchange of AlaAsnLeu" - metabolites: !!omap - alaasnleu_s: -1 - alaasnleu_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_alaglylys[e] + - id: "EX_alaglylys[e]" - name: "Exchange of AlaGlyLys" - metabolites: !!omap - alaglylys_s: -1 - alaglylys_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_alahisala[e] + - id: "EX_alahisala[e]" - name: "Exchange of AlaHisAla" - metabolites: !!omap - alahisala_s: -1 - alahisala_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_alalysthr[e] + - id: "EX_alalysthr[e]" - name: "Exchange of AlaLysThr" - metabolites: !!omap - alalysthr_s: -1 - alalysthr_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_argalaala[e] + - id: "EX_argalaala[e]" - name: "Exchange of ArgAlaAla" - metabolites: !!omap - argalaala_s: -1 - argalaala_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_argalaphe[e] + - id: "EX_argalaphe[e]" - name: "Exchange of ArgAlaPhe" - metabolites: !!omap - argalaphe_s: -1 - argalaphe_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_argalathr[e] + - id: "EX_argalathr[e]" - name: "Exchange of ArgAlaThr" - metabolites: !!omap - argalathr_s: -1 - argalathr_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_argarg[e] + - id: "EX_argarg[e]" - name: "Exchange of ArgArg" - metabolites: !!omap - argarg_s: -1 - argarg_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_argarglys[e] + - id: "EX_argarglys[e]" - name: "Exchange of ArgArgLys" - metabolites: !!omap - argarglys_s: -1 - argarglys_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_argargmet[e] + - id: "EX_argargmet[e]" - name: "Exchange of ArgArgMet" - metabolites: !!omap - argargmet_s: -1 - argargmet_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_argcysgly[e] + - id: "EX_argcysgly[e]" - name: "Exchange of ArgCysGly" - metabolites: !!omap - argcysgly_s: -1 - argcysgly_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_argcysser[e] + - id: "EX_argcysser[e]" - name: "Exchange of ArgCysSer" - metabolites: !!omap - argcysser_s: -1 - argcysser_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_arggluglu[e] + - id: "EX_arggluglu[e]" - name: "Exchange of ArgGluGlu" - metabolites: !!omap - arggluglu_s: -1 - arggluglu_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_argglupro[e] + - id: "EX_argglupro[e]" - name: "Exchange of ArgGluPro" - metabolites: !!omap - argglupro_s: -1 - argglupro_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_argglygly[e] + - id: "EX_argglygly[e]" - name: "Exchange of ArgGlyGly" - metabolites: !!omap - argglygly_s: -1 - argglygly_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_arghisthr[e] + - id: "EX_arghisthr[e]" - name: "Exchange of ArgHisThr" - metabolites: !!omap - arghisthr_s: -1 - arghisthr_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_argleuphe[e] + - id: "EX_argleuphe[e]" - name: "Exchange of ArgLeuPhe" - metabolites: !!omap - argleuphe_s: -1 - argleuphe_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_arglysasp[e] + - id: "EX_arglysasp[e]" - name: "Exchange of ArgLysAsp" - metabolites: !!omap - arglysasp_s: -1 - arglysasp_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_argphearg[e] + - id: "EX_argphearg[e]" - name: "Exchange of ArgPheArg" - metabolites: !!omap - argphearg_s: -1 - argphearg_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_argpromet[e] + - id: "EX_argpromet[e]" - name: "Exchange of ArgProMet" - metabolites: !!omap - argpromet_s: -1 - argpromet_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_argprothr[e] + - id: "EX_argprothr[e]" - name: "Exchange of ArgProThr" - metabolites: !!omap - argprothr_s: -1 - argprothr_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_argserser[e] + - id: "EX_argserser[e]" - name: "Exchange of ArgSerSer" - metabolites: !!omap - argserser_s: -1 - argserser_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_argtyrval[e] + - id: "EX_argtyrval[e]" - name: "Exchange of ArgtyrVal" - metabolites: !!omap - argtyrval_s: -1 - argtyrval_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_argvalcys[e] + - id: "EX_argvalcys[e]" - name: "Exchange of ArgValCys" - metabolites: !!omap - argvalcys_s: -1 - argvalcys_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_argvaltrp[e] + - id: "EX_argvaltrp[e]" - name: "Exchange of ArgValTrp" - metabolites: !!omap - argvaltrp_s: -1 - argvaltrp_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_asnasnarg[e] + - id: "EX_asnasnarg[e]" - name: "Exchange of AsnAsnArg" - metabolites: !!omap - asnasnarg_s: -1 - asnasnarg_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_asncyscys[e] + - id: "EX_asncyscys[e]" - name: "Exchange of AsnCysCys" - metabolites: !!omap - asncyscys_s: -1 - asncyscys_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_asnmetpro[e] + - id: "EX_asnmetpro[e]" - name: "Exchange of AsnMetPro" - metabolites: !!omap - asnmetpro_s: -1 - asnmetpro_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_asnpheasp[e] + - id: "EX_asnpheasp[e]" - name: "Exchange of AsnPheAsp" - metabolites: !!omap - asnpheasp_s: -1 - asnpheasp_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_asnphecys[e] + - id: "EX_asnphecys[e]" - name: "Exchange of AsnPheCys" - metabolites: !!omap - asnphecys_s: -1 - asnphecys_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_asntyrgly[e] + - id: "EX_asntyrgly[e]" - name: "Exchange of AsntyrGly" - metabolites: !!omap - asntyrgly_s: -1 - asntyrgly_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_asntyrphe[e] + - id: "EX_asntyrphe[e]" - name: "Exchange of AsntyrPhe" - metabolites: !!omap - asntyrphe_s: -1 - asntyrphe_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_asntyrthr[e] + - id: "EX_asntyrthr[e]" - name: "Exchange of AsntyrThr" - metabolites: !!omap - asntyrthr_s: -1 - asntyrthr_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_aspalaarg[e] + - id: "EX_aspalaarg[e]" - name: "Exchange of AspAlaArg" - metabolites: !!omap - aspalaarg_s: -1 - aspalaarg_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_aspasnglu[e] + - id: "EX_aspasnglu[e]" - name: "Exchange of AspAsnGlu" - metabolites: !!omap - aspasnglu_s: -1 - aspasnglu_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_aspglu[e] + - id: "EX_aspglu[e]" - name: "Exchange of AspGlu" - metabolites: !!omap - aspglu_s: -1 - aspglu_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_aspglupro[e] + - id: "EX_aspglupro[e]" - name: "Exchange of AspGluPro" - metabolites: !!omap - aspglupro_s: -1 - aspglupro_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_aspglutrp[e] + - id: "EX_aspglutrp[e]" - name: "Exchange of AspGluTrp" - metabolites: !!omap - aspglutrp_s: -1 - aspglutrp_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_asphiscys[e] + - id: "EX_asphiscys[e]" - name: "Exchange of AspHisCys" - metabolites: !!omap - asphiscys_s: -1 - asphiscys_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_asphispro[e] + - id: "EX_asphispro[e]" - name: "Exchange of AspHisPro" - metabolites: !!omap - asphispro_s: -1 - asphispro_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_asplysglu[e] + - id: "EX_asplysglu[e]" - name: "Exchange of AspLysGlu" - metabolites: !!omap - asplysglu_s: -1 - asplysglu_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_asplyshis[e] + - id: "EX_asplyshis[e]" - name: "Exchange of AspLysHis" - metabolites: !!omap - asplyshis_s: -1 - asplyshis_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_aspmetasp[e] + - id: "EX_aspmetasp[e]" - name: "Exchange of AspMetAsp" - metabolites: !!omap - aspmetasp_s: -1 - aspmetasp_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_aspprolys[e] + - id: "EX_aspprolys[e]" - name: "Exchange of AspProLys" - metabolites: !!omap - aspprolys_s: -1 - aspprolys_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_aspvalasn[e] + - id: "EX_aspvalasn[e]" - name: "Exchange of AspValAsn" - metabolites: !!omap - aspvalasn_s: -1 - aspvalasn_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_cysasnmet[e] + - id: "EX_cysasnmet[e]" - name: "Exchange of CysAsnMet" - metabolites: !!omap - cysasnmet_s: -1 - cysasnmet_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_cysaspphe[e] + - id: "EX_cysaspphe[e]" - name: "Exchange of CysAspPhe" - metabolites: !!omap - cysaspphe_s: -1 - cysaspphe_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_cyscys[e] + - id: "EX_cyscys[e]" - name: "Exchange of CysCys" - metabolites: !!omap - cyscys_s: -1 - cyscys_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_cysglnmet[e] + - id: "EX_cysglnmet[e]" - name: "Exchange of CysGlnMet" - metabolites: !!omap - cysglnmet_s: -1 - cysglnmet_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_cysgluhis[e] + - id: "EX_cysgluhis[e]" - name: "Exchange of CysGluHis" - metabolites: !!omap - cysgluhis_s: -1 - cysgluhis_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_cysglutrp[e] + - id: "EX_cysglutrp[e]" - name: "Exchange of CysGluTrp" - metabolites: !!omap - cysglutrp_s: -1 - cysglutrp_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_cysleuthr[e] + - id: "EX_cysleuthr[e]" - name: "Exchange of CysLeuThr" - metabolites: !!omap - cysleuthr_s: -1 - cysleuthr_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_cyssermet[e] + - id: "EX_cyssermet[e]" - name: "Exchange of CysSerMet" - metabolites: !!omap - cyssermet_s: -1 - cyssermet_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_cystyrasn[e] + - id: "EX_cystyrasn[e]" - name: "Exchange of CystyrAsn" - metabolites: !!omap - cystyrasn_s: -1 - cystyrasn_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_glnasngln[e] + - id: "EX_glnasngln[e]" - name: "Exchange of GlnAsnGln" - metabolites: !!omap - glnasngln_s: -1 - glnasngln_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_glnhishis[e] + - id: "EX_glnhishis[e]" - name: "Exchange of GlnHisHis" - metabolites: !!omap - glnhishis_s: -1 - glnhishis_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_glnhislys[e] + - id: "EX_glnhislys[e]" - name: "Exchange of GlnHisLys" - metabolites: !!omap - glnhislys_s: -1 - glnhislys_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_glnlyslys[e] + - id: "EX_glnlyslys[e]" - name: "Exchange of GlnLysLys" - metabolites: !!omap - glnlyslys_s: -1 - glnlyslys_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_glnlystrp[e] + - id: "EX_glnlystrp[e]" - name: "Exchange of GlnLysTrp" - metabolites: !!omap - glnlystrp_s: -1 - glnlystrp_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_glnproglu[e] + - id: "EX_glnproglu[e]" - name: "Exchange of GlnProGlu" - metabolites: !!omap - glnproglu_s: -1 - glnproglu_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_glntrpglu[e] + - id: "EX_glntrpglu[e]" - name: "Exchange of GlnTrpGlu" - metabolites: !!omap - glntrpglu_s: -1 - glntrpglu_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_glntyrleu[e] + - id: "EX_glntyrleu[e]" - name: "Exchange of GlntyrLeu" - metabolites: !!omap - glntyrleu_s: -1 - glntyrleu_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_gluargleu[e] + - id: "EX_gluargleu[e]" - name: "Exchange of GluArgLeu" - metabolites: !!omap - gluargleu_s: -1 - gluargleu_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_gluasnleu[e] + - id: "EX_gluasnleu[e]" - name: "Exchange of GluAsnLeu" - metabolites: !!omap - gluasnleu_s: -1 - gluasnleu_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_gluglu[e] + - id: "EX_gluglu[e]" - name: "Exchange of GluGlu" - metabolites: !!omap - gluglu_s: -1 - gluglu_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_gluilelys[e] + - id: "EX_gluilelys[e]" - name: "Exchange of GluIleLys" - metabolites: !!omap - gluilelys_s: -1 - gluilelys_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_gluleu[e] + - id: "EX_gluleu[e]" - name: "Exchange of GluLeu" - metabolites: !!omap - gluleu_s: -1 - gluleu_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_glumet[e] + - id: "EX_glumet[e]" - name: "Exchange of GluMet" - metabolites: !!omap - glumet_s: -1 - glumet_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_glumethis[e] + - id: "EX_glumethis[e]" - name: "Exchange of GluMetHis" - metabolites: !!omap - glumethis_s: -1 - glumethis_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_gluthr[e] + - id: "EX_gluthr[e]" - name: "Exchange of GluThr" - metabolites: !!omap - gluthr_s: -1 - gluthr_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_gluthrlys[e] + - id: "EX_gluthrlys[e]" - name: "Exchange of GluThrLys" - metabolites: !!omap - gluthrlys_s: -1 - gluthrlys_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_glutrpala[e] + - id: "EX_glutrpala[e]" - name: "Exchange of GluTrpAla" - metabolites: !!omap - glutrpala_s: -1 - glutrpala_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_glyhisasn[e] + - id: "EX_glyhisasn[e]" - name: "Exchange of GlyHisAsn" - metabolites: !!omap - glyhisasn_s: -1 - glyhisasn_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_glyhislys[e] + - id: "EX_glyhislys[e]" - name: "Exchange of GlyHisLys" - metabolites: !!omap - glyhislys_s: -1 - glyhislys_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_glylyscys[e] + - id: "EX_glylyscys[e]" - name: "Exchange of GlyLysCys" - metabolites: !!omap - glylyscys_s: -1 - glylyscys_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_glylysphe[e] + - id: "EX_glylysphe[e]" - name: "Exchange of GlyLysPhe" - metabolites: !!omap - glylysphe_s: -1 - glylysphe_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_glytyrlys[e] + - id: "EX_glytyrlys[e]" - name: "Exchange of GlytyrLys" - metabolites: !!omap - glytyrlys_s: -1 - glytyrlys_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_glyvalhis[e] + - id: "EX_glyvalhis[e]" - name: "Exchange of GlyValHis" - metabolites: !!omap - glyvalhis_s: -1 - glyvalhis_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_hisargcys[e] + - id: "EX_hisargcys[e]" - name: "Exchange of HisArgCys" - metabolites: !!omap - hisargcys_s: -1 - hisargcys_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_hisargser[e] + - id: "EX_hisargser[e]" - name: "Exchange of HisArgSer" - metabolites: !!omap - hisargser_s: -1 - hisargser_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_hisasp[e] + - id: "EX_hisasp[e]" - name: "Exchange of HisAsp" - metabolites: !!omap - hisasp_s: -1 - hisasp_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_hiscyscys[e] + - id: "EX_hiscyscys[e]" - name: "Exchange of HisCysCys" - metabolites: !!omap - hiscyscys_s: -1 - hiscyscys_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_hisglnala[e] + - id: "EX_hisglnala[e]" - name: "Exchange of HisGlnAla" - metabolites: !!omap - hisglnala_s: -1 - hisglnala_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_hisglu[e] + - id: "EX_hisglu[e]" - name: "Exchange of HisGlu" - metabolites: !!omap - hisglu_s: -1 - hisglu_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_hisglugln[e] + - id: "EX_hisglugln[e]" - name: "Exchange of HisGluGln" - metabolites: !!omap - hisglugln_s: -1 - hisglugln_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_hisglylys[e] + - id: "EX_hisglylys[e]" - name: "Exchange of HisGlyLys" - metabolites: !!omap - hisglylys_s: -1 - hisglylys_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_hishislys[e] + - id: "EX_hishislys[e]" - name: "Exchange of HisHisLys" - metabolites: !!omap - hishislys_s: -1 - hishislys_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_hislysala[e] + - id: "EX_hislysala[e]" - name: "Exchange of HisLysAla" - metabolites: !!omap - hislysala_s: -1 - hislysala_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_hislysglu[e] + - id: "EX_hislysglu[e]" - name: "Exchange of HisLysGlu" - metabolites: !!omap - hislysglu_s: -1 - hislysglu_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_hislysile[e] + - id: "EX_hislysile[e]" - name: "Exchange of HisLysIle" - metabolites: !!omap - hislysile_s: -1 - hislysile_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_hislysthr[e] + - id: "EX_hislysthr[e]" - name: "Exchange of HisLysThr" - metabolites: !!omap - hislysthr_s: -1 - hislysthr_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_hislysval[e] + - id: "EX_hislysval[e]" - name: "Exchange of HisLysVal" - metabolites: !!omap - hislysval_s: -1 - hislysval_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_hismet[e] + - id: "EX_hismet[e]" - name: "Exchange of HisMet" - metabolites: !!omap - hismet_s: -1 - hismet_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_hismetgln[e] + - id: "EX_hismetgln[e]" - name: "Exchange of HisMetGln" - metabolites: !!omap - hismetgln_s: -1 - hismetgln_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_hisphearg[e] + - id: "EX_hisphearg[e]" - name: "Exchange of HisPheArg" - metabolites: !!omap - hisphearg_s: -1 - hisphearg_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_hisprolys[e] + - id: "EX_hisprolys[e]" - name: "Exchange of HisProLys" - metabolites: !!omap - hisprolys_s: -1 - hisprolys_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_histrphis[e] + - id: "EX_histrphis[e]" - name: "Exchange of HisTrpHis" - metabolites: !!omap - histrphis_s: -1 - histrphis_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_ileargile[e] + - id: "EX_ileargile[e]" - name: "Exchange of IleArgIle" - metabolites: !!omap - ileargile_s: -1 - ileargile_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_ileasnhis[e] + - id: "EX_ileasnhis[e]" - name: "Exchange of IleAsnHis" - metabolites: !!omap - ileasnhis_s: -1 - ileasnhis_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_ileasp[e] + - id: "EX_ileasp[e]" - name: "Exchange of IleAsp" - metabolites: !!omap - ileasp_s: -1 - ileasp_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_ileglnglu[e] + - id: "EX_ileglnglu[e]" - name: "Exchange of IleGlnGlu" - metabolites: !!omap - ileglnglu_s: -1 - ileglnglu_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_ileglyarg[e] + - id: "EX_ileglyarg[e]" - name: "Exchange of IleGlyArg" - metabolites: !!omap - ileglyarg_s: -1 - ileglyarg_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_ileprolys[e] + - id: "EX_ileprolys[e]" - name: "Exchange of IleProLys" - metabolites: !!omap - ileprolys_s: -1 - ileprolys_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_ileserarg[e] + - id: "EX_ileserarg[e]" - name: "Exchange of IleSerArg" - metabolites: !!omap - ileserarg_s: -1 - ileserarg_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_iletrptyr[e] + - id: "EX_iletrptyr[e]" - name: "Exchange of IleTrptyr" - metabolites: !!omap - iletrptyr_s: -1 - iletrptyr_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_leualaarg[e] + - id: "EX_leualaarg[e]" - name: "Exchange of LeuAlaArg" - metabolites: !!omap - leualaarg_s: -1 - leualaarg_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_leuasnasp[e] + - id: "EX_leuasnasp[e]" - name: "Exchange of LeuAsnAsp" - metabolites: !!omap - leuasnasp_s: -1 - leuasnasp_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_leuasplys[e] + - id: "EX_leuasplys[e]" - name: "Exchange of LeuAspLys" - metabolites: !!omap - leuasplys_s: -1 - leuasplys_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_leuleutrp[e] + - id: "EX_leuleutrp[e]" - name: "Exchange of LeuLeuTrp" - metabolites: !!omap - leuleutrp_s: -1 - leuleutrp_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_leupro[e] + - id: "EX_leupro[e]" - name: "Exchange of LeuPro" - metabolites: !!omap - leupro_s: -1 - leupro_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_leuproarg[e] + - id: "EX_leuproarg[e]" - name: "Exchange of LeuProArg" - metabolites: !!omap - leuproarg_s: -1 - leuproarg_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_leusertrp[e] + - id: "EX_leusertrp[e]" - name: "Exchange of LeuSerTrp" - metabolites: !!omap - leusertrp_s: -1 - leusertrp_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_leutrp[e] + - id: "EX_leutrp[e]" - name: "Exchange of LeuTrp" - metabolites: !!omap - leutrp_s: -1 - leutrp_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_leutrparg[e] + - id: "EX_leutrparg[e]" - name: "Exchange of LeuTrpArg" - metabolites: !!omap - leutrparg_s: -1 - leutrparg_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_leutyrtyr[e] + - id: "EX_leutyrtyr[e]" - name: "Exchange of Leutyrtyr" - metabolites: !!omap - leutyrtyr_s: -1 - leutyrtyr_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_leuval[e] + - id: "EX_leuval[e]" - name: "Exchange of LeuVal" - metabolites: !!omap - leuval_s: -1 - leuval_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_lysargleu[e] + - id: "EX_lysargleu[e]" - name: "Exchange of LysArgLeu" - metabolites: !!omap - lysargleu_s: -1 - lysargleu_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_lyscyshis[e] + - id: "EX_lyscyshis[e]" - name: "Exchange of LysCysHis" - metabolites: !!omap - lyscyshis_s: -1 - lyscyshis_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_lysglnphe[e] + - id: "EX_lysglnphe[e]" - name: "Exchange of LysGlnPhe" - metabolites: !!omap - lysglnphe_s: -1 - lysglnphe_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_lysgluglu[e] + - id: "EX_lysgluglu[e]" - name: "Exchange of LysGluGlu" - metabolites: !!omap - lysgluglu_s: -1 - lysgluglu_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_lyslyslys[e] + - id: "EX_lyslyslys[e]" - name: "Exchange of LysLysLys" - metabolites: !!omap - lyslyslys_s: -1 - lyslyslys_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_lyspheile[e] + - id: "EX_lyspheile[e]" - name: "Exchange of LysPheIle" - metabolites: !!omap - lyspheile_s: -1 - lyspheile_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_lystrparg[e] + - id: "EX_lystrparg[e]" - name: "Exchange of LysTrpArg" - metabolites: !!omap - lystrparg_s: -1 - lystrparg_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_lystyrile[e] + - id: "EX_lystyrile[e]" - name: "Exchange of LystyrIle" - metabolites: !!omap - lystyrile_s: -1 - lystyrile_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_lysvalphe[e] + - id: "EX_lysvalphe[e]" - name: "Exchange of LysValPhe" - metabolites: !!omap - lysvalphe_s: -1 - lysvalphe_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_lysvaltrp[e] + - id: "EX_lysvaltrp[e]" - name: "Exchange of LysValTrp" - metabolites: !!omap - lysvaltrp_s: -1 - lysvaltrp_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_metargleu[e] + - id: "EX_metargleu[e]" - name: "Exchange of MetArgLeu" - metabolites: !!omap - metargleu_s: -1 - metargleu_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_metasntyr[e] + - id: "EX_metasntyr[e]" - name: "Exchange of MetAsntyr" - metabolites: !!omap - metasntyr_s: -1 - metasntyr_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_metglntyr[e] + - id: "EX_metglntyr[e]" - name: "Exchange of MetGlntyr" - metabolites: !!omap - metglntyr_s: -1 - metglntyr_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_metglyarg[e] + - id: "EX_metglyarg[e]" - name: "Exchange of MetGlyArg" - metabolites: !!omap - metglyarg_s: -1 - metglyarg_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_methislys[e] + - id: "EX_methislys[e]" - name: "Exchange of MetHisLys" - metabolites: !!omap - methislys_s: -1 - methislys_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_metmetile[e] + - id: "EX_metmetile[e]" - name: "Exchange of MetMetIle" - metabolites: !!omap - metmetile_s: -1 - metmetile_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_metphearg[e] + - id: "EX_metphearg[e]" - name: "Exchange of MetPheArg" - metabolites: !!omap - metphearg_s: -1 - metphearg_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_mettrpphe[e] + - id: "EX_mettrpphe[e]" - name: "Exchange of MetTrpPhe" - metabolites: !!omap - mettrpphe_s: -1 - mettrpphe_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pheasnmet[e] + - id: "EX_pheasnmet[e]" - name: "Exchange of PheAsnMet" - metabolites: !!omap - pheasnmet_s: -1 - pheasnmet_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pheasp[e] + - id: "EX_pheasp[e]" - name: "Exchange of PheAsp" - metabolites: !!omap - pheasp_s: -1 - pheasp_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pheglnphe[e] + - id: "EX_pheglnphe[e]" - name: "Exchange of PheGlnPhe" - metabolites: !!omap - pheglnphe_s: -1 - pheglnphe_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pheleu[e] + - id: "EX_pheleu[e]" - name: "Exchange of PheLeu" - metabolites: !!omap - pheleu_s: -1 - pheleu_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pheleuasp[e] + - id: "EX_pheleuasp[e]" - name: "Exchange of PheLeuAsp" - metabolites: !!omap - pheleuasp_s: -1 - pheleuasp_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pheleuhis[e] + - id: "EX_pheleuhis[e]" - name: "Exchange of PheLeuHis" - metabolites: !!omap - pheleuhis_s: -1 - pheleuhis_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_phelysala[e] + - id: "EX_phelysala[e]" - name: "Exchange of PheLysAla" - metabolites: !!omap - phelysala_s: -1 - phelysala_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_phelyspro[e] + - id: "EX_phelyspro[e]" - name: "Exchange of PheLysPro" - metabolites: !!omap - phelyspro_s: -1 - phelyspro_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_phephe[e] + - id: "EX_phephe[e]" - name: "Exchange of PhePhe" - metabolites: !!omap - phephe_s: -1 - phephe_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_phepheasn[e] + - id: "EX_phepheasn[e]" - name: "Exchange of PhePheAsn" - metabolites: !!omap - phepheasn_s: -1 - phepheasn_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_phephethr[e] + - id: "EX_phephethr[e]" - name: "Exchange of PhePheThr" - metabolites: !!omap - phephethr_s: -1 - phephethr_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pheproarg[e] + - id: "EX_pheproarg[e]" - name: "Exchange of PheProArg" - metabolites: !!omap - pheproarg_s: -1 - pheproarg_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_phesertrp[e] + - id: "EX_phesertrp[e]" - name: "Exchange of PheSerTrp" - metabolites: !!omap - phesertrp_s: -1 - phesertrp_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_phethrlys[e] + - id: "EX_phethrlys[e]" - name: "Exchange of PheThrLys" - metabolites: !!omap - phethrlys_s: -1 - phethrlys_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_phetrpleu[e] + - id: "EX_phetrpleu[e]" - name: "Exchange of PheTrpLeu" - metabolites: !!omap - phetrpleu_s: -1 - phetrpleu_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_phetyr[e] + - id: "EX_phetyr[e]" - name: "Exchange of Phetyr" - metabolites: !!omap - phetyr_s: -1 - phetyr_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_phetyrgln[e] + - id: "EX_phetyrgln[e]" - name: "Exchange of PhetyrGln" - metabolites: !!omap - phetyrgln_s: -1 - phetyrgln_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_phetyrlys[e] + - id: "EX_phetyrlys[e]" - name: "Exchange of PhetyrLys" - metabolites: !!omap - phetyrlys_s: -1 - phetyrlys_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_proargasp[e] + - id: "EX_proargasp[e]" - name: "Exchange of ProArgAsp" - metabolites: !!omap - proargasp_s: -1 - proargasp_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_proargcys[e] + - id: "EX_proargcys[e]" - name: "Exchange of ProArgCys" - metabolites: !!omap - proargcys_s: -1 - proargcys_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_proasncys[e] + - id: "EX_proasncys[e]" - name: "Exchange of ProAsnCys" - metabolites: !!omap - proasncys_s: -1 - proasncys_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_procys[e] + - id: "EX_procys[e]" - name: "Exchange of ProCys" - metabolites: !!omap - procys_s: -1 - procys_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_proglnpro[e] + - id: "EX_proglnpro[e]" - name: "Exchange of ProGlnPro" - metabolites: !!omap - proglnpro_s: -1 - proglnpro_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_proglulys[e] + - id: "EX_proglulys[e]" - name: "Exchange of ProGluLys" - metabolites: !!omap - proglulys_s: -1 - proglulys_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_prohis[e] + - id: "EX_prohis[e]" - name: "Exchange of ProHis" - metabolites: !!omap - prohis_s: -1 - prohis_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_prohistyr[e] + - id: "EX_prohistyr[e]" - name: "Exchange of ProHistyr" - metabolites: !!omap - prohistyr_s: -1 - prohistyr_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_proleuarg[e] + - id: "EX_proleuarg[e]" - name: "Exchange of ProLeuArg" - metabolites: !!omap - proleuarg_s: -1 - proleuarg_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_prolyspro[e] + - id: "EX_prolyspro[e]" - name: "Exchange of ProLysPro" - metabolites: !!omap - prolyspro_s: -1 - prolyspro_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_prophe[e] + - id: "EX_prophe[e]" - name: "Exchange of ProPhe" - metabolites: !!omap - prophe_s: -1 - prophe_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_proproarg[e] + - id: "EX_proproarg[e]" - name: "Exchange of ProProArg" - metabolites: !!omap - proproarg_s: -1 - proproarg_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_propropro[e] + - id: "EX_propropro[e]" - name: "Exchange of ProProPro" - metabolites: !!omap - propropro_s: -1 - propropro_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_protrplys[e] + - id: "EX_protrplys[e]" - name: "Exchange of ProTrpLys" - metabolites: !!omap - protrplys_s: -1 - protrplys_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_protrpthr[e] + - id: "EX_protrpthr[e]" - name: "Exchange of ProTrpThr" - metabolites: !!omap - protrpthr_s: -1 - protrpthr_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_provalgln[e] + - id: "EX_provalgln[e]" - name: "Exchange of ProValGln" - metabolites: !!omap - provalgln_s: -1 - provalgln_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_serargala[e] + - id: "EX_serargala[e]" - name: "Exchange of SerArgAla" - metabolites: !!omap - serargala_s: -1 - serargala_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_serargtrp[e] + - id: "EX_serargtrp[e]" - name: "Exchange of SerArgTrp" - metabolites: !!omap - serargtrp_s: -1 - serargtrp_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_sercysarg[e] + - id: "EX_sercysarg[e]" - name: "Exchange of SerCysArg" - metabolites: !!omap - sercysarg_s: -1 - sercysarg_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_serglyglu[e] + - id: "EX_serglyglu[e]" - name: "Exchange of SerGlyGlu" - metabolites: !!omap - serglyglu_s: -1 - serglyglu_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_serlyshis[e] + - id: "EX_serlyshis[e]" - name: "Exchange of SerLysHis" - metabolites: !!omap - serlyshis_s: -1 - serlyshis_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_serphelys[e] + - id: "EX_serphelys[e]" - name: "Exchange of SerPheLys" - metabolites: !!omap - serphelys_s: -1 - serphelys_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_sertrphis[e] + - id: "EX_sertrphis[e]" - name: "Exchange of SerTrpHis" - metabolites: !!omap - sertrphis_s: -1 - sertrphis_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_thrargtyr[e] + - id: "EX_thrargtyr[e]" - name: "Exchange of ThrArgtyr" - metabolites: !!omap - thrargtyr_s: -1 - thrargtyr_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_thrasntyr[e] + - id: "EX_thrasntyr[e]" - name: "Exchange of ThrAsntyr" - metabolites: !!omap - thrasntyr_s: -1 - thrasntyr_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_thrglnglu[e] + - id: "EX_thrglnglu[e]" - name: "Exchange of ThrGlnGlu" - metabolites: !!omap - thrglnglu_s: -1 - thrglnglu_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_thrglntyr[e] + - id: "EX_thrglntyr[e]" - name: "Exchange of ThrGlntyr" - metabolites: !!omap - thrglntyr_s: -1 - thrglntyr_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_thrhishis[e] + - id: "EX_thrhishis[e]" - name: "Exchange of ThrHisHis" - metabolites: !!omap - thrhishis_s: -1 - thrhishis_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_thrilearg[e] + - id: "EX_thrilearg[e]" - name: "Exchange of ThrIleArg" - metabolites: !!omap - thrilearg_s: -1 - thrilearg_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_thrmetarg[e] + - id: "EX_thrmetarg[e]" - name: "Exchange of ThrMetArg" - metabolites: !!omap - thrmetarg_s: -1 - thrmetarg_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_thrphearg[e] + - id: "EX_thrphearg[e]" - name: "Exchange of ThrPheArg" - metabolites: !!omap - thrphearg_s: -1 - thrphearg_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_thrserarg[e] + - id: "EX_thrserarg[e]" - name: "Exchange of ThrSerArg" - metabolites: !!omap - thrserarg_s: -1 - thrserarg_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_thrthrarg[e] + - id: "EX_thrthrarg[e]" - name: "Exchange of ThrThrArg" - metabolites: !!omap - thrthrarg_s: -1 - thrthrarg_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_thrtyrmet[e] + - id: "EX_thrtyrmet[e]" - name: "Exchange of ThrtyrMet" - metabolites: !!omap - thrtyrmet_s: -1 - thrtyrmet_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_trpalapro[e] + - id: "EX_trpalapro[e]" - name: "Exchange of TrpAlaPro" - metabolites: !!omap - trpalapro_s: -1 - trpalapro_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_trpargala[e] + - id: "EX_trpargala[e]" - name: "Exchange of TrpArgAla" - metabolites: !!omap - trpargala_s: -1 - trpargala_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_trpaspasp[e] + - id: "EX_trpaspasp[e]" - name: "Exchange of TrpAspAsp" - metabolites: !!omap - trpaspasp_s: -1 - trpaspasp_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_trpglngln[e] + - id: "EX_trpglngln[e]" - name: "Exchange of TrpGlnGln" - metabolites: !!omap - trpglngln_s: -1 - trpglngln_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_trpglugly[e] + - id: "EX_trpglugly[e]" - name: "Exchange of TrpGluGly" - metabolites: !!omap - trpglugly_s: -1 - trpglugly_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_trpgluleu[e] + - id: "EX_trpgluleu[e]" - name: "Exchange of TrpGluLeu" - metabolites: !!omap - trpgluleu_s: -1 - trpgluleu_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_trpglupro[e] + - id: "EX_trpglupro[e]" - name: "Exchange of TrpGluPro" - metabolites: !!omap - trpglupro_s: -1 - trpglupro_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_trpglutyr[e] + - id: "EX_trpglutyr[e]" - name: "Exchange of TrpGlutyr" - metabolites: !!omap - trpglutyr_s: -1 - trpglutyr_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_trpglyleu[e] + - id: "EX_trpglyleu[e]" - name: "Exchange of TrpGlyLeu" - metabolites: !!omap - trpglyleu_s: -1 - trpglyleu_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_trpglyphe[e] + - id: "EX_trpglyphe[e]" - name: "Exchange of TrpGlyPhe" - metabolites: !!omap - trpglyphe_s: -1 - trpglyphe_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_trpglyval[e] + - id: "EX_trpglyval[e]" - name: "Exchange of TrpGlyVal" - metabolites: !!omap - trpglyval_s: -1 - trpglyval_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_trphismet[e] + - id: "EX_trphismet[e]" - name: "Exchange of TrpHisMet" - metabolites: !!omap - trphismet_s: -1 - trphismet_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_trpilelys[e] + - id: "EX_trpilelys[e]" - name: "Exchange of TrpIleLys" - metabolites: !!omap - trpilelys_s: -1 - trpilelys_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_trpiletrp[e] + - id: "EX_trpiletrp[e]" - name: "Exchange of TrpIleTrp" - metabolites: !!omap - trpiletrp_s: -1 - trpiletrp_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_trpleuval[e] + - id: "EX_trpleuval[e]" - name: "Exchange of TrpLeuVal" - metabolites: !!omap - trpleuval_s: -1 - trpleuval_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_trplys[e] + - id: "EX_trplys[e]" - name: "Exchange of TrpLys" - metabolites: !!omap - trplys_s: -1 - trplys_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_trpmetarg[e] + - id: "EX_trpmetarg[e]" - name: "Exchange of TrpMetArg" - metabolites: !!omap - trpmetarg_s: -1 - trpmetarg_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_trpmetval[e] + - id: "EX_trpmetval[e]" - name: "Exchange of TrpMetVal" - metabolites: !!omap - trpmetval_s: -1 - trpmetval_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_trpphe[e] + - id: "EX_trpphe[e]" - name: "Exchange of TrpPhe" - metabolites: !!omap - trpphe_s: -1 - trpphe_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_trpprogly[e] + - id: "EX_trpprogly[e]" - name: "Exchange of TrpProGly" - metabolites: !!omap - trpprogly_s: -1 - trpprogly_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_trpproleu[e] + - id: "EX_trpproleu[e]" - name: "Exchange of TrpProLeu" - metabolites: !!omap - trpproleu_s: -1 - trpproleu_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_trpproval[e] + - id: "EX_trpproval[e]" - name: "Exchange of TrpProVal" - metabolites: !!omap - trpproval_s: -1 - trpproval_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_trpsertyr[e] + - id: "EX_trpsertyr[e]" - name: "Exchange of TrpSertyr" - metabolites: !!omap - trpsertyr_s: -1 - trpsertyr_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_trpthrglu[e] + - id: "EX_trpthrglu[e]" - name: "Exchange of TrpThrGlu" - metabolites: !!omap - trpthrglu_s: -1 - trpthrglu_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_trpthrile[e] + - id: "EX_trpthrile[e]" - name: "Exchange of TrpThrIle" - metabolites: !!omap - trpthrile_s: -1 - trpthrile_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_trpthrtyr[e] + - id: "EX_trpthrtyr[e]" - name: "Exchange of TrpThrtyr" - metabolites: !!omap - trpthrtyr_s: -1 - trpthrtyr_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_trptyrgln[e] + - id: "EX_trptyrgln[e]" - name: "Exchange of TrptyrGln" - metabolites: !!omap - trptyrgln_s: -1 - trptyrgln_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_trptyrtyr[e] + - id: "EX_trptyrtyr[e]" - name: "Exchange of Trptyrtyr" - metabolites: !!omap - trptyrtyr_s: -1 - trptyrtyr_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_trpvalasp[e] + - id: "EX_trpvalasp[e]" - name: "Exchange of TrpValAsp" - metabolites: !!omap - trpvalasp_s: -1 - trpvalasp_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_tyrala[e] + - id: "EX_tyrala[e]" - name: "Exchange of TyrAla" - metabolites: !!omap - tyrala_s: -1 - tyrala_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_tyralaphe[e] + - id: "EX_tyralaphe[e]" - name: "Exchange of TyrAlaPhe" - metabolites: !!omap - tyralaphe_s: -1 - tyralaphe_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_tyrargglu[e] + - id: "EX_tyrargglu[e]" - name: "Exchange of TyrArgGlu" - metabolites: !!omap - tyrargglu_s: -1 - tyrargglu_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_tyrargser[e] + - id: "EX_tyrargser[e]" - name: "Exchange of TyrArgSer" - metabolites: !!omap - tyrargser_s: -1 - tyrargser_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_tyrasparg[e] + - id: "EX_tyrasparg[e]" - name: "Exchange of TyrAspArg" - metabolites: !!omap - tyrasparg_s: -1 - tyrasparg_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_tyrcysgly[e] + - id: "EX_tyrcysgly[e]" - name: "Exchange of TyrCysGly" - metabolites: !!omap - tyrcysgly_s: -1 - tyrcysgly_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_tyrcysthr[e] + - id: "EX_tyrcysthr[e]" - name: "Exchange of TyrCysThr" - metabolites: !!omap - tyrcysthr_s: -1 - tyrcysthr_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_tyrglu[e] + - id: "EX_tyrglu[e]" - name: "Exchange of TyrGlu" - metabolites: !!omap - tyrglu_s: -1 - tyrglu_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_tyrleuarg[e] + - id: "EX_tyrleuarg[e]" - name: "Exchange of TyrLeuArg" - metabolites: !!omap - tyrleuarg_s: -1 - tyrleuarg_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_tyrphetyr[e] + - id: "EX_tyrphetyr[e]" - name: "Exchange of TyrPhetyr" - metabolites: !!omap - tyrphetyr_s: -1 - tyrphetyr_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_tyrthr[e] + - id: "EX_tyrthr[e]" - name: "Exchange of TyrThr" - metabolites: !!omap - tyrthr_s: -1 - tyrthr_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_tyrtrpphe[e] + - id: "EX_tyrtrpphe[e]" - name: "Exchange of TyrTrpPhe" - metabolites: !!omap - tyrtrpphe_s: -1 - tyrtrpphe_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_tyrtyr[e] + - id: "EX_tyrtyr[e]" - name: "Exchange of Tyrtyr" - metabolites: !!omap - tyrtyr_s: -1 - tyrtyr_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_tyrvalmet[e] + - id: "EX_tyrvalmet[e]" - name: "Exchange of TyrValMet" - metabolites: !!omap - tyrvalmet_s: -1 - tyrvalmet_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_valarggly[e] + - id: "EX_valarggly[e]" - name: "Exchange of ValArgGly" - metabolites: !!omap - valarggly_s: -1 - valarggly_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_valhisasn[e] + - id: "EX_valhisasn[e]" - name: "Exchange of ValHisAsn" - metabolites: !!omap - valhisasn_s: -1 - valhisasn_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_valleuphe[e] + - id: "EX_valleuphe[e]" - name: "Exchange of ValLeuPhe" - metabolites: !!omap - valleuphe_s: -1 - valleuphe_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_vallystyr[e] + - id: "EX_vallystyr[e]" - name: "Exchange of ValLystyr" - metabolites: !!omap - vallystyr_s: -1 - vallystyr_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_valphearg[e] + - id: "EX_valphearg[e]" - name: "Exchange of ValPheArg" - metabolites: !!omap - valphearg_s: -1 - valphearg_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_valprotrp[e] + - id: "EX_valprotrp[e]" - name: "Exchange of ValProTrp" - metabolites: !!omap - valprotrp_s: -1 - valprotrp_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_valserarg[e] + - id: "EX_valserarg[e]" - name: "Exchange of ValSerArg" - metabolites: !!omap - valserarg_s: -1 - valserarg_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_valtrpphe[e] + - id: "EX_valtrpphe[e]" - name: "Exchange of ValTrpPhe" - metabolites: !!omap - valtrpphe_s: -1 - valtrpphe_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_valtrpval[e] + - id: "EX_valtrpval[e]" - name: "Exchange of ValTrpVal" - metabolites: !!omap - valtrpval_s: -1 - valtrpval_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_valval[e] + - id: "EX_valval[e]" - name: "Exchange of ValVal" - metabolites: !!omap - valval_s: -1 - valval_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_trpglyasp[e] + - id: "EX_trpglyasp[e]" - name: "Exchange of TrpGlyAsp" - metabolites: !!omap - trpglyasp_s: -1 - trpglyasp_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: ALAARGCYSt + - id: "ALAARGCYSt" - name: "Transport of AlaArgCys, Extracellular" - metabolites: !!omap - alaargcys_c: 1 @@ -272539,15 +272539,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ALAARGGLYt + - id: "ALAARGGLYt" - name: "Transport of AlaArgGly, Extracellular" - metabolites: !!omap - alaarggly_c: 1 @@ -272556,15 +272556,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ALAASNLEUt + - id: "ALAASNLEUt" - name: "Transport of AlaAsnLeu, Extracellular" - metabolites: !!omap - alaasnleu_c: 1 @@ -272573,15 +272573,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ALAGLYLYSt + - id: "ALAGLYLYSt" - name: "Transport of AlaGlyLys, Extracellular" - metabolites: !!omap - alaglylys_c: 1 @@ -272590,15 +272590,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ALAHISALAt + - id: "ALAHISALAt" - name: "Transport of AlaHisAla, Extracellular" - metabolites: !!omap - alahisala_c: 1 @@ -272607,15 +272607,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ALALYSTHRt + - id: "ALALYSTHRt" - name: "Transport of AlaLysThr, Extracellular" - metabolites: !!omap - alalysthr_c: 1 @@ -272624,15 +272624,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ARGALAALAt + - id: "ARGALAALAt" - name: "Transport of ArgAlaAla, Extracellular" - metabolites: !!omap - argalaala_c: 1 @@ -272641,15 +272641,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ARGALAPHEt + - id: "ARGALAPHEt" - name: "Transport of ArgAlaPhe, Extracellular" - metabolites: !!omap - argalaphe_c: 1 @@ -272658,15 +272658,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ARGALATHRt + - id: "ARGALATHRt" - name: "Transport of ArgAlaThr, Extracellular" - metabolites: !!omap - argalathr_c: 1 @@ -272675,15 +272675,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ARGARGt + - id: "ARGARGt" - name: "Transport of ArgArg, Extracellular" - metabolites: !!omap - argarg_c: 1 @@ -272692,15 +272692,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ARGARGLYSt + - id: "ARGARGLYSt" - name: "Transport of ArgArgLys, Extracellular" - metabolites: !!omap - argarglys_c: 1 @@ -272709,15 +272709,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ARGARGMETt + - id: "ARGARGMETt" - name: "Transport of ArgArgMet, Extracellular" - metabolites: !!omap - argargmet_c: 1 @@ -272726,15 +272726,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ARGCYSGLYt + - id: "ARGCYSGLYt" - name: "Transport of ArgCysGly, Extracellular" - metabolites: !!omap - argcysgly_c: 1 @@ -272743,15 +272743,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ARGCYSSERt + - id: "ARGCYSSERt" - name: "Transport of ArgCysSer, Extracellular" - metabolites: !!omap - argcysser_c: 1 @@ -272760,15 +272760,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ARGGLUGLUt + - id: "ARGGLUGLUt" - name: "Transport of ArgGluGlu, Extracellular" - metabolites: !!omap - arggluglu_c: 1 @@ -272777,15 +272777,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ARGGLUPROt + - id: "ARGGLUPROt" - name: "Transport of ArgGluPro, Extracellular" - metabolites: !!omap - argglupro_c: 1 @@ -272794,15 +272794,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ARGGLYGLYt + - id: "ARGGLYGLYt" - name: "Transport of ArgGlyGly, Extracellular" - metabolites: !!omap - argglygly_c: 1 @@ -272811,15 +272811,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ARGHISTHRt + - id: "ARGHISTHRt" - name: "Transport of ArgHisThr, Extracellular" - metabolites: !!omap - arghisthr_c: 1 @@ -272828,15 +272828,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ARGLEUPHEt + - id: "ARGLEUPHEt" - name: "Transport of ArgLeuPhe, Extracellular" - metabolites: !!omap - argleuphe_c: 1 @@ -272845,15 +272845,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ARGLYSASPt + - id: "ARGLYSASPt" - name: "Transport of ArgLysAsp, Extracellular" - metabolites: !!omap - arglysasp_c: 1 @@ -272862,15 +272862,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ARGPHEARGt + - id: "ARGPHEARGt" - name: "Transport of ArgPheArg, Extracellular" - metabolites: !!omap - argphearg_c: 1 @@ -272879,15 +272879,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ARGPROMETt + - id: "ARGPROMETt" - name: "Transport of ArgProMet, Extracellular" - metabolites: !!omap - argpromet_c: 1 @@ -272896,15 +272896,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ARGPROTHRt + - id: "ARGPROTHRt" - name: "Transport of ArgProThr, Extracellular" - metabolites: !!omap - argprothr_c: 1 @@ -272913,15 +272913,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ARGSERSERt + - id: "ARGSERSERt" - name: "Transport of ArgSerSer, Extracellular" - metabolites: !!omap - argserser_c: 1 @@ -272930,15 +272930,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ARGTYRVALt + - id: "ARGTYRVALt" - name: "Transport of ArgtyrVal, Extracellular" - metabolites: !!omap - argtyrval_c: 1 @@ -272947,15 +272947,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ARGVALCYSt + - id: "ARGVALCYSt" - name: "Transport of ArgValCys, Extracellular" - metabolites: !!omap - argvalcys_c: 1 @@ -272964,15 +272964,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ARGVALTRPt + - id: "ARGVALTRPt" - name: "Transport of ArgValTrp, Extracellular" - metabolites: !!omap - argvaltrp_c: 1 @@ -272981,15 +272981,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ASNASNARGt + - id: "ASNASNARGt" - name: "Transport of AsnAsnArg, Extracellular" - metabolites: !!omap - asnasnarg_c: 1 @@ -272998,15 +272998,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ASNCYSCYSt + - id: "ASNCYSCYSt" - name: "Transport of AsnCysCys, Extracellular" - metabolites: !!omap - asncyscys_c: 1 @@ -273015,15 +273015,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ASNMETPROt + - id: "ASNMETPROt" - name: "Transport of AsnMetPro, Extracellular" - metabolites: !!omap - asnmetpro_c: 1 @@ -273032,15 +273032,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ASNPHEASPt + - id: "ASNPHEASPt" - name: "Transport of AsnPheAsp, Extracellular" - metabolites: !!omap - asnpheasp_c: 1 @@ -273049,15 +273049,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ASNPHECYSt + - id: "ASNPHECYSt" - name: "Transport of AsnPheCys, Extracellular" - metabolites: !!omap - asnphecys_c: 1 @@ -273066,15 +273066,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ASNTYRGLYt + - id: "ASNTYRGLYt" - name: "Transport of AsntyrGly, Extracellular" - metabolites: !!omap - asntyrgly_c: 1 @@ -273083,15 +273083,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ASNTYRPHEt + - id: "ASNTYRPHEt" - name: "Transport of AsntyrPhe, Extracellular" - metabolites: !!omap - asntyrphe_c: 1 @@ -273100,15 +273100,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ASNTYRTHRt + - id: "ASNTYRTHRt" - name: "Transport of AsntyrThr, Extracellular" - metabolites: !!omap - asntyrthr_c: 1 @@ -273117,15 +273117,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ASPALAARGt + - id: "ASPALAARGt" - name: "Transport of AspAlaArg, Extracellular" - metabolites: !!omap - aspalaarg_c: 1 @@ -273134,15 +273134,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ASPASNGLUt + - id: "ASPASNGLUt" - name: "Transport of AspAsnGlu, Extracellular" - metabolites: !!omap - aspasnglu_c: 1 @@ -273151,15 +273151,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ASPGLUt + - id: "ASPGLUt" - name: "Transport of AspGlu, Extracellular" - metabolites: !!omap - aspglu_c: 1 @@ -273168,15 +273168,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ASPGLUPROt + - id: "ASPGLUPROt" - name: "Transport of AspGluPro, Extracellular" - metabolites: !!omap - aspglupro_c: 1 @@ -273185,15 +273185,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ASPGLUTRPt + - id: "ASPGLUTRPt" - name: "Transport of AspGluTrp, Extracellular" - metabolites: !!omap - aspglutrp_c: 1 @@ -273202,15 +273202,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ASPHISCYSt + - id: "ASPHISCYSt" - name: "Transport of AspHisCys, Extracellular" - metabolites: !!omap - asphiscys_c: 1 @@ -273219,15 +273219,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ASPHISPROt + - id: "ASPHISPROt" - name: "Transport of AspHisPro, Extracellular" - metabolites: !!omap - asphispro_c: 1 @@ -273236,15 +273236,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ASPLYSGLUt + - id: "ASPLYSGLUt" - name: "Transport of AspLysGlu, Extracellular" - metabolites: !!omap - asplysglu_c: 1 @@ -273253,15 +273253,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ASPLYSHISt + - id: "ASPLYSHISt" - name: "Transport of AspLysHis, Extracellular" - metabolites: !!omap - asplyshis_c: 1 @@ -273270,15 +273270,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ASPMETASPt + - id: "ASPMETASPt" - name: "Transport of AspMetAsp, Extracellular" - metabolites: !!omap - aspmetasp_c: 1 @@ -273287,15 +273287,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ASPPROLYSt + - id: "ASPPROLYSt" - name: "Transport of AspProLys, Extracellular" - metabolites: !!omap - aspprolys_c: 1 @@ -273304,15 +273304,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ASPVALASNt + - id: "ASPVALASNt" - name: "Transport of AspValAsn, Extracellular" - metabolites: !!omap - aspvalasn_c: 1 @@ -273321,15 +273321,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CYSASNMETt + - id: "CYSASNMETt" - name: "Transport of CysAsnMet, Extracellular" - metabolites: !!omap - cysasnmet_c: 1 @@ -273338,15 +273338,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CYSASPPHEt + - id: "CYSASPPHEt" - name: "Transport of CysAspPhe, Extracellular" - metabolites: !!omap - cysaspphe_c: 1 @@ -273355,15 +273355,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CYSCYSt + - id: "CYSCYSt" - name: "Transport of CysCys, Extracellular" - metabolites: !!omap - cyscys_c: 1 @@ -273372,15 +273372,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CYSGLNMETt + - id: "CYSGLNMETt" - name: "Transport of CysGlnMet, Extracellular" - metabolites: !!omap - cysglnmet_c: 1 @@ -273389,15 +273389,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CYSGLUHISt + - id: "CYSGLUHISt" - name: "Transport of CysGluHis, Extracellular" - metabolites: !!omap - cysgluhis_c: 1 @@ -273406,15 +273406,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CYSGLUTRPt + - id: "CYSGLUTRPt" - name: "Transport of CysGluTrp, Extracellular" - metabolites: !!omap - cysglutrp_c: 1 @@ -273423,15 +273423,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CYSLEUTHRt + - id: "CYSLEUTHRt" - name: "Transport of CysLeuThr, Extracellular" - metabolites: !!omap - cysleuthr_c: 1 @@ -273440,15 +273440,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CYSSERMETt + - id: "CYSSERMETt" - name: "Transport of CysSerMet, Extracellular" - metabolites: !!omap - cyssermet_c: 1 @@ -273457,15 +273457,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CYSTYRASNt + - id: "CYSTYRASNt" - name: "Transport of CystyrAsn, Extracellular" - metabolites: !!omap - cystyrasn_c: 1 @@ -273474,15 +273474,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLNASNGLNt + - id: "GLNASNGLNt" - name: "Transport of GlnAsnGln, Extracellular" - metabolites: !!omap - glnasngln_c: 1 @@ -273491,15 +273491,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLNHISHISt + - id: "GLNHISHISt" - name: "Transport of GlnHisHis, Extracellular" - metabolites: !!omap - glnhishis_c: 1 @@ -273508,15 +273508,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLNHISLYSt + - id: "GLNHISLYSt" - name: "Transport of GlnHisLys, Extracellular" - metabolites: !!omap - glnhislys_c: 1 @@ -273525,15 +273525,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLNLYSLYSt + - id: "GLNLYSLYSt" - name: "Transport of GlnLysLys, Extracellular" - metabolites: !!omap - glnlyslys_c: 1 @@ -273542,15 +273542,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLNLYSTRPt + - id: "GLNLYSTRPt" - name: "Transport of GlnLysTrp, Extracellular" - metabolites: !!omap - glnlystrp_c: 1 @@ -273559,15 +273559,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLNPROGLUt + - id: "GLNPROGLUt" - name: "Transport of GlnProGlu, Extracellular" - metabolites: !!omap - glnproglu_c: 1 @@ -273576,15 +273576,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLNTRPGLUt + - id: "GLNTRPGLUt" - name: "Transport of GlnTrpGlu, Extracellular" - metabolites: !!omap - glntrpglu_c: 1 @@ -273593,15 +273593,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLNTYRLEUt + - id: "GLNTYRLEUt" - name: "Transport of GlntyrLeu, Extracellular" - metabolites: !!omap - glntyrleu_c: 1 @@ -273610,15 +273610,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLUARGLEUt + - id: "GLUARGLEUt" - name: "Transport of GluArgLeu, Extracellular" - metabolites: !!omap - gluargleu_c: 1 @@ -273627,15 +273627,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLUASNLEUt + - id: "GLUASNLEUt" - name: "Transport of GluAsnLeu, Extracellular" - metabolites: !!omap - gluasnleu_c: 1 @@ -273644,15 +273644,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLUGLUt + - id: "GLUGLUt" - name: "Transport of GluGlu, Extracellular" - metabolites: !!omap - gluglu_c: 1 @@ -273661,15 +273661,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLUILELYSt + - id: "GLUILELYSt" - name: "Transport of GluIleLys, Extracellular" - metabolites: !!omap - gluilelys_c: 1 @@ -273678,15 +273678,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLULEUt + - id: "GLULEUt" - name: "Transport of GluLeu, Extracellular" - metabolites: !!omap - gluleu_c: 1 @@ -273695,15 +273695,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLUMETt + - id: "GLUMETt" - name: "Transport of GluMet, Extracellular" - metabolites: !!omap - glumet_c: 1 @@ -273712,15 +273712,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLUMETHISt + - id: "GLUMETHISt" - name: "Transport of GluMetHis, Extracellular" - metabolites: !!omap - glumethis_c: 1 @@ -273729,15 +273729,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLUTHRt + - id: "GLUTHRt" - name: "Transport of GluThr, Extracellular" - metabolites: !!omap - gluthr_c: 1 @@ -273746,15 +273746,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLUTHRLYSt + - id: "GLUTHRLYSt" - name: "Transport of GluThrLys, Extracellular" - metabolites: !!omap - gluthrlys_c: 1 @@ -273763,15 +273763,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLUTRPALAt + - id: "GLUTRPALAt" - name: "Transport of GluTrpAla, Extracellular" - metabolites: !!omap - glutrpala_c: 1 @@ -273780,15 +273780,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLYHISASNt + - id: "GLYHISASNt" - name: "Transport of GlyHisAsn, Extracellular" - metabolites: !!omap - glyhisasn_c: 1 @@ -273797,15 +273797,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLYHISLYSt + - id: "GLYHISLYSt" - name: "Transport of GlyHisLys, Extracellular" - metabolites: !!omap - glyhislys_c: 1 @@ -273814,15 +273814,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLYLYSCYSt + - id: "GLYLYSCYSt" - name: "Transport of GlyLysCys, Extracellular" - metabolites: !!omap - glylyscys_c: 1 @@ -273831,15 +273831,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLYLYSPHEt + - id: "GLYLYSPHEt" - name: "Transport of GlyLysPhe, Extracellular" - metabolites: !!omap - glylysphe_c: 1 @@ -273848,15 +273848,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLYTYRLYSt + - id: "GLYTYRLYSt" - name: "Transport of GlytyrLys, Extracellular" - metabolites: !!omap - glytyrlys_c: 1 @@ -273865,15 +273865,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLYVALHISt + - id: "GLYVALHISt" - name: "Transport of GlyValHis, Extracellular" - metabolites: !!omap - glyvalhis_c: 1 @@ -273882,15 +273882,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HISARGCYSt + - id: "HISARGCYSt" - name: "Transport of HisArgCys, Extracellular" - metabolites: !!omap - hisargcys_c: 1 @@ -273899,15 +273899,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HISARGSERt + - id: "HISARGSERt" - name: "Transport of HisArgSer, Extracellular" - metabolites: !!omap - hisargser_c: 1 @@ -273916,15 +273916,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HISASPt + - id: "HISASPt" - name: "Transport of HisAsp, Extracellular" - metabolites: !!omap - hisasp_c: 1 @@ -273933,15 +273933,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HISCYSCYSt + - id: "HISCYSCYSt" - name: "Transport of HisCysCys, Extracellular" - metabolites: !!omap - hiscyscys_c: 1 @@ -273950,15 +273950,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HISGLNALAt + - id: "HISGLNALAt" - name: "Transport of HisGlnAla, Extracellular" - metabolites: !!omap - hisglnala_c: 1 @@ -273967,15 +273967,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HISGLUt + - id: "HISGLUt" - name: "Transport of HisGlu, Extracellular" - metabolites: !!omap - hisglu_c: 1 @@ -273984,15 +273984,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HISGLUGLNt + - id: "HISGLUGLNt" - name: "Transport of HisGluGln, Extracellular" - metabolites: !!omap - hisglugln_c: 1 @@ -274001,15 +274001,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HISGLYLYSt + - id: "HISGLYLYSt" - name: "Transport of HisGlyLys, Extracellular" - metabolites: !!omap - hisglylys_c: 1 @@ -274018,15 +274018,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HISHISLYSt + - id: "HISHISLYSt" - name: "Transport of HisHisLys, Extracellular" - metabolites: !!omap - hishislys_c: 1 @@ -274035,15 +274035,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HISLYSALAt + - id: "HISLYSALAt" - name: "Transport of HisLysAla, Extracellular" - metabolites: !!omap - hislysala_c: 1 @@ -274052,15 +274052,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HISLYSGLUt + - id: "HISLYSGLUt" - name: "Transport of HisLysGlu, Extracellular" - metabolites: !!omap - hislysglu_c: 1 @@ -274069,15 +274069,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HISLYSILEt + - id: "HISLYSILEt" - name: "Transport of HisLysIle, Extracellular" - metabolites: !!omap - hislysile_c: 1 @@ -274086,15 +274086,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HISLYSTHRt + - id: "HISLYSTHRt" - name: "Transport of HisLysThr, Extracellular" - metabolites: !!omap - hislysthr_c: 1 @@ -274103,15 +274103,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HISLYSVALt + - id: "HISLYSVALt" - name: "Transport of HisLysVal, Extracellular" - metabolites: !!omap - hislysval_c: 1 @@ -274120,15 +274120,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HISMETt + - id: "HISMETt" - name: "Transport of HisMet, Extracellular" - metabolites: !!omap - hismet_c: 1 @@ -274137,15 +274137,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HISMETGLNt + - id: "HISMETGLNt" - name: "Transport of HisMetGln, Extracellular" - metabolites: !!omap - hismetgln_c: 1 @@ -274154,15 +274154,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HISPHEARGt + - id: "HISPHEARGt" - name: "Transport of HisPheArg, Extracellular" - metabolites: !!omap - hisphearg_c: 1 @@ -274171,15 +274171,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HISPROLYSt + - id: "HISPROLYSt" - name: "Transport of HisProLys, Extracellular" - metabolites: !!omap - hisprolys_c: 1 @@ -274188,15 +274188,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HISTRPHISt + - id: "HISTRPHISt" - name: "Transport of HisTrpHis, Extracellular" - metabolites: !!omap - histrphis_c: 1 @@ -274205,15 +274205,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ILEARGILEt + - id: "ILEARGILEt" - name: "Transport of IleArgIle, Extracellular" - metabolites: !!omap - ileargile_c: 1 @@ -274222,15 +274222,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ILEASNHISt + - id: "ILEASNHISt" - name: "Transport of IleAsnHis, Extracellular" - metabolites: !!omap - ileasnhis_c: 1 @@ -274239,15 +274239,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ILEASPt + - id: "ILEASPt" - name: "Transport of IleAsp, Extracellular" - metabolites: !!omap - ileasp_c: 1 @@ -274256,15 +274256,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ILEGLNGLUt + - id: "ILEGLNGLUt" - name: "Transport of IleGlnGlu, Extracellular" - metabolites: !!omap - ileglnglu_c: 1 @@ -274273,15 +274273,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ILEGLYARGt + - id: "ILEGLYARGt" - name: "Transport of IleGlyArg, Extracellular" - metabolites: !!omap - ileglyarg_c: 1 @@ -274290,15 +274290,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ILEPROLYSt + - id: "ILEPROLYSt" - name: "Transport of IleProLys, Extracellular" - metabolites: !!omap - ileprolys_c: 1 @@ -274307,15 +274307,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ILESERARGt + - id: "ILESERARGt" - name: "Transport of IleSerArg, Extracellular" - metabolites: !!omap - ileserarg_c: 1 @@ -274324,15 +274324,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ILETRPTYRt + - id: "ILETRPTYRt" - name: "Transport of IleTrptyr, Extracellular" - metabolites: !!omap - iletrptyr_c: 1 @@ -274341,15 +274341,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LEUALAARGt + - id: "LEUALAARGt" - name: "Transport of LeuAlaArg, Extracellular" - metabolites: !!omap - leualaarg_c: 1 @@ -274358,15 +274358,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LEUASNASPt + - id: "LEUASNASPt" - name: "Transport of LeuAsnAsp, Extracellular" - metabolites: !!omap - leuasnasp_c: 1 @@ -274375,15 +274375,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LEUASPLYSt + - id: "LEUASPLYSt" - name: "Transport of LeuAspLys, Extracellular" - metabolites: !!omap - leuasplys_c: 1 @@ -274392,15 +274392,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LEULEUTRPt + - id: "LEULEUTRPt" - name: "Transport of LeuLeuTrp, Extracellular" - metabolites: !!omap - leuleutrp_c: 1 @@ -274409,15 +274409,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LEUPROt + - id: "LEUPROt" - name: "Transport of LeuPro, Extracellular" - metabolites: !!omap - leupro_c: 1 @@ -274426,15 +274426,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LEUPROARGt + - id: "LEUPROARGt" - name: "Transport of LeuProArg, Extracellular" - metabolites: !!omap - leuproarg_c: 1 @@ -274443,15 +274443,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LEUSERTRPt + - id: "LEUSERTRPt" - name: "Transport of LeuSerTrp, Extracellular" - metabolites: !!omap - leusertrp_c: 1 @@ -274460,15 +274460,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LEUTRPt + - id: "LEUTRPt" - name: "Transport of LeuTrp, Extracellular" - metabolites: !!omap - leutrp_c: 1 @@ -274477,15 +274477,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LEUTRPARGt + - id: "LEUTRPARGt" - name: "Transport of LeuTrpArg, Extracellular" - metabolites: !!omap - leutrparg_c: 1 @@ -274494,15 +274494,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LEUTYRTYRt + - id: "LEUTYRTYRt" - name: "Transport of Leutyrtyr, Extracellular" - metabolites: !!omap - leutyrtyr_c: 1 @@ -274511,15 +274511,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LEUVALt + - id: "LEUVALt" - name: "Transport of LeuVal, Extracellular" - metabolites: !!omap - leuval_c: 1 @@ -274528,15 +274528,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LYSARGLEUt + - id: "LYSARGLEUt" - name: "Transport of LysArgLeu, Extracellular" - metabolites: !!omap - lysargleu_c: 1 @@ -274545,15 +274545,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LYSCYSHISt + - id: "LYSCYSHISt" - name: "Transport of LysCysHis, Extracellular" - metabolites: !!omap - lyscyshis_c: 1 @@ -274562,15 +274562,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LYSGLNPHEt + - id: "LYSGLNPHEt" - name: "Transport of LysGlnPhe, Extracellular" - metabolites: !!omap - lysglnphe_c: 1 @@ -274579,15 +274579,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LYSGLUGLUt + - id: "LYSGLUGLUt" - name: "Transport of LysGluGlu, Extracellular" - metabolites: !!omap - lysgluglu_c: 1 @@ -274596,15 +274596,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LYSLYSLYSt + - id: "LYSLYSLYSt" - name: "Transport of LysLysLys, Extracellular" - metabolites: !!omap - lyslyslys_c: 1 @@ -274613,15 +274613,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LYSPHEILEt + - id: "LYSPHEILEt" - name: "Transport of LysPheIle, Extracellular" - metabolites: !!omap - lyspheile_c: 1 @@ -274630,15 +274630,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LYSTRPARGt + - id: "LYSTRPARGt" - name: "Transport of LysTrpArg, Extracellular" - metabolites: !!omap - lystrparg_c: 1 @@ -274647,15 +274647,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LYSTYRILEt + - id: "LYSTYRILEt" - name: "Transport of LystyrIle, Extracellular" - metabolites: !!omap - lystyrile_c: 1 @@ -274664,15 +274664,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LYSVALPHEt + - id: "LYSVALPHEt" - name: "Transport of LysValPhe, Extracellular" - metabolites: !!omap - lysvalphe_c: 1 @@ -274681,15 +274681,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LYSVALTRPt + - id: "LYSVALTRPt" - name: "Transport of LysValTrp, Extracellular" - metabolites: !!omap - lysvaltrp_c: 1 @@ -274698,15 +274698,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: METARGLEUt + - id: "METARGLEUt" - name: "Transport of MetArgLeu, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -274715,15 +274715,15 @@ - metargleu_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: METASNTYRt + - id: "METASNTYRt" - name: "Transport of MetAsntyr, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -274732,15 +274732,15 @@ - metasntyr_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: METGLNTYRt + - id: "METGLNTYRt" - name: "Transport of MetGlntyr, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -274749,15 +274749,15 @@ - metglntyr_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: METGLYARGt + - id: "METGLYARGt" - name: "Transport of MetGlyArg, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -274766,15 +274766,15 @@ - metglyarg_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: METHISLYSt + - id: "METHISLYSt" - name: "Transport of MetHisLys, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -274783,15 +274783,15 @@ - methislys_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: METMETILEt + - id: "METMETILEt" - name: "Transport of MetMetIle, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -274800,15 +274800,15 @@ - metmetile_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: METPHEARGt + - id: "METPHEARGt" - name: "Transport of MetPheArg, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -274817,15 +274817,15 @@ - metphearg_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: METTRPPHEt + - id: "METTRPPHEt" - name: "Transport of MetTrpPhe, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -274834,15 +274834,15 @@ - mettrpphe_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PHEASNMETt + - id: "PHEASNMETt" - name: "Transport of PheAsnMet, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -274851,15 +274851,15 @@ - pheasnmet_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PHEASPt + - id: "PHEASPt" - name: "Transport of PheAsp, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -274868,15 +274868,15 @@ - pheasp_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PHEGLNPHEt + - id: "PHEGLNPHEt" - name: "Transport of PheGlnPhe, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -274885,15 +274885,15 @@ - pheglnphe_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PHELEUt + - id: "PHELEUt" - name: "Transport of PheLeu, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -274902,15 +274902,15 @@ - pheleu_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PHELEUASPt + - id: "PHELEUASPt" - name: "Transport of PheLeuAsp, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -274919,15 +274919,15 @@ - pheleuasp_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PHELEUHISt + - id: "PHELEUHISt" - name: "Transport of PheLeuHis, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -274936,15 +274936,15 @@ - pheleuhis_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PHELYSALAt + - id: "PHELYSALAt" - name: "Transport of PheLysAla, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -274953,15 +274953,15 @@ - phelysala_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PHELYSPROt + - id: "PHELYSPROt" - name: "Transport of PheLysPro, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -274970,15 +274970,15 @@ - phelyspro_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PHEPHEt + - id: "PHEPHEt" - name: "Transport of PhePhe, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -274987,15 +274987,15 @@ - phephe_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PHEPHEASNt + - id: "PHEPHEASNt" - name: "Transport of PhePheAsn, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275004,15 +275004,15 @@ - phepheasn_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PHEPHETHRt + - id: "PHEPHETHRt" - name: "Transport of PhePheThr, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275021,15 +275021,15 @@ - phephethr_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PHEPROARGt + - id: "PHEPROARGt" - name: "Transport of PheProArg, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275038,15 +275038,15 @@ - pheproarg_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PHESERTRPt + - id: "PHESERTRPt" - name: "Transport of PheSerTrp, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275055,15 +275055,15 @@ - phesertrp_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PHETHRLYSt + - id: "PHETHRLYSt" - name: "Transport of PheThrLys, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275072,15 +275072,15 @@ - phethrlys_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PHETRPLEUt + - id: "PHETRPLEUt" - name: "Transport of PheTrpLeu, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275089,15 +275089,15 @@ - phetrpleu_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PHETYRt + - id: "PHETYRt" - name: "Transport of Phetyr, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275106,15 +275106,15 @@ - phetyr_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PHETYRGLNt + - id: "PHETYRGLNt" - name: "Transport of PhetyrGln, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275123,15 +275123,15 @@ - phetyrgln_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PHETYRLYSt + - id: "PHETYRLYSt" - name: "Transport of PhetyrLys, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275140,15 +275140,15 @@ - phetyrlys_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PROARGASPt + - id: "PROARGASPt" - name: "Transport of ProArgAsp, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275157,15 +275157,15 @@ - proargasp_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PROARGCYSt + - id: "PROARGCYSt" - name: "Transport of ProArgCys, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275174,15 +275174,15 @@ - proargcys_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PROASNCYSt + - id: "PROASNCYSt" - name: "Transport of ProAsnCys, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275191,15 +275191,15 @@ - proasncys_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PROCYSt + - id: "PROCYSt" - name: "Transport of ProCys, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275208,15 +275208,15 @@ - procys_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PROGLNPROt + - id: "PROGLNPROt" - name: "Transport of ProGlnPro, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275225,15 +275225,15 @@ - proglnpro_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PROGLULYSt + - id: "PROGLULYSt" - name: "Transport of ProGluLys, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275242,15 +275242,15 @@ - proglulys_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PROHISt + - id: "PROHISt" - name: "Transport of ProHis, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275259,15 +275259,15 @@ - prohis_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PROHISTYRt + - id: "PROHISTYRt" - name: "Transport of ProHistyr, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275276,15 +275276,15 @@ - prohistyr_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PROLEUARGt + - id: "PROLEUARGt" - name: "Transport of ProLeuArg, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275293,15 +275293,15 @@ - proleuarg_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PROLYSPROt + - id: "PROLYSPROt" - name: "Transport of ProLysPro, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275310,15 +275310,15 @@ - prolyspro_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PROPHEt + - id: "PROPHEt" - name: "Transport of ProPhe, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275327,15 +275327,15 @@ - prophe_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PROPROARGt + - id: "PROPROARGt" - name: "Transport of ProProArg, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275344,15 +275344,15 @@ - proproarg_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PROPROPROt + - id: "PROPROPROt" - name: "Transport of ProProPro, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275361,15 +275361,15 @@ - propropro_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PROTRPLYSt + - id: "PROTRPLYSt" - name: "Transport of ProTrpLys, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275378,15 +275378,15 @@ - protrplys_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PROTRPTHRt + - id: "PROTRPTHRt" - name: "Transport of ProTrpThr, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275395,15 +275395,15 @@ - protrpthr_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PROVALGLNt + - id: "PROVALGLNt" - name: "Transport of ProValGln, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275412,15 +275412,15 @@ - provalgln_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SERARGALAt + - id: "SERARGALAt" - name: "Transport of SerArgAla, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275429,15 +275429,15 @@ - serargala_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SERARGTRPt + - id: "SERARGTRPt" - name: "Transport of SerArgTrp, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275446,15 +275446,15 @@ - serargtrp_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SERCYSARGt + - id: "SERCYSARGt" - name: "Transport of SerCysArg, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275463,15 +275463,15 @@ - sercysarg_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SERGLYGLUt + - id: "SERGLYGLUt" - name: "Transport of SerGlyGlu, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275480,15 +275480,15 @@ - serglyglu_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SERLYSHISt + - id: "SERLYSHISt" - name: "Transport of SerLysHis, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275497,15 +275497,15 @@ - serlyshis_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SERPHELYSt + - id: "SERPHELYSt" - name: "Transport of SerPheLys, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275514,15 +275514,15 @@ - serphelys_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SERTRPHISt + - id: "SERTRPHISt" - name: "Transport of SerTrpHis, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275531,15 +275531,15 @@ - sertrphis_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: THRARGTYRt + - id: "THRARGTYRt" - name: "Transport of ThrArgtyr, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275548,15 +275548,15 @@ - thrargtyr_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: THRASNTYRt + - id: "THRASNTYRt" - name: "Transport of ThrAsntyr, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275565,15 +275565,15 @@ - thrasntyr_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: THRGLNGLUt + - id: "THRGLNGLUt" - name: "Transport of ThrGlnGlu, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275582,15 +275582,15 @@ - thrglnglu_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: THRGLNTYRt + - id: "THRGLNTYRt" - name: "Transport of ThrGlntyr, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275599,15 +275599,15 @@ - thrglntyr_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: THRHISHISt + - id: "THRHISHISt" - name: "Transport of ThrHisHis, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275616,15 +275616,15 @@ - thrhishis_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: THRILEARGt + - id: "THRILEARGt" - name: "Transport of ThrIleArg, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275633,15 +275633,15 @@ - thrilearg_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: THRMETARGt + - id: "THRMETARGt" - name: "Transport of ThrMetArg, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275650,15 +275650,15 @@ - thrmetarg_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: THRPHEARGt + - id: "THRPHEARGt" - name: "Transport of ThrPheArg, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275667,15 +275667,15 @@ - thrphearg_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: THRSERARGt + - id: "THRSERARGt" - name: "Transport of ThrSerArg, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275684,15 +275684,15 @@ - thrserarg_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: THRTHRARGt + - id: "THRTHRARGt" - name: "Transport of ThrThrArg, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275701,15 +275701,15 @@ - thrthrarg_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: THRTYRMETt + - id: "THRTYRMETt" - name: "Transport of ThrtyrMet, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275718,15 +275718,15 @@ - thrtyrmet_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TRPALAPROt + - id: "TRPALAPROt" - name: "Transport of TrpAlaPro, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275735,15 +275735,15 @@ - trpalapro_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TRPARGALAt + - id: "TRPARGALAt" - name: "Transport of TrpArgAla, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275752,15 +275752,15 @@ - trpargala_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TRPASPASPt + - id: "TRPASPASPt" - name: "Transport of TrpAspAsp, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275769,15 +275769,15 @@ - trpaspasp_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TRPGLNGLNt + - id: "TRPGLNGLNt" - name: "Transport of TrpGlnGln, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275786,15 +275786,15 @@ - trpglngln_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TRPGLUGLYt + - id: "TRPGLUGLYt" - name: "Transport of TrpGluGly, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275803,15 +275803,15 @@ - trpglugly_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TRPGLULEUt + - id: "TRPGLULEUt" - name: "Transport of TrpGluLeu, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275820,15 +275820,15 @@ - trpgluleu_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TRPGLUPROt + - id: "TRPGLUPROt" - name: "Transport of TrpGluPro, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275837,15 +275837,15 @@ - trpglupro_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TRPGLUTYRt + - id: "TRPGLUTYRt" - name: "Transport of TrpGlutyr, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275854,15 +275854,15 @@ - trpglutyr_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TRPGLYLEUt + - id: "TRPGLYLEUt" - name: "Transport of TrpGlyLeu, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275871,15 +275871,15 @@ - trpglyleu_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TRPGLYPHEt + - id: "TRPGLYPHEt" - name: "Transport of TrpGlyPhe, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275888,15 +275888,15 @@ - trpglyphe_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TRPGLYVALt + - id: "TRPGLYVALt" - name: "Transport of TrpGlyVal, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275905,15 +275905,15 @@ - trpglyval_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TRPHISMETt + - id: "TRPHISMETt" - name: "Transport of TrpHisMet, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275922,15 +275922,15 @@ - trphismet_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TRPILELYSt + - id: "TRPILELYSt" - name: "Transport of TrpIleLys, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275939,15 +275939,15 @@ - trpilelys_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TRPILETRPt + - id: "TRPILETRPt" - name: "Transport of TrpIleTrp, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275956,15 +275956,15 @@ - trpiletrp_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TRPLEUVALt + - id: "TRPLEUVALt" - name: "Transport of TrpLeuVal, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275973,15 +275973,15 @@ - trpleuval_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TRPLYSt + - id: "TRPLYSt" - name: "Transport of TrpLys, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -275990,15 +275990,15 @@ - trplys_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TRPMETARGt + - id: "TRPMETARGt" - name: "Transport of TrpMetArg, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -276007,15 +276007,15 @@ - trpmetarg_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TRPMETVALt + - id: "TRPMETVALt" - name: "Transport of TrpMetVal, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -276024,15 +276024,15 @@ - trpmetval_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TRPPHEt + - id: "TRPPHEt" - name: "Transport of TrpPhe, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -276041,15 +276041,15 @@ - trpphe_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TRPPROGLYt + - id: "TRPPROGLYt" - name: "Transport of TrpProGly, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -276058,15 +276058,15 @@ - trpprogly_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TRPPROLEUt + - id: "TRPPROLEUt" - name: "Transport of TrpProLeu, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -276075,15 +276075,15 @@ - trpproleu_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TRPPROVALt + - id: "TRPPROVALt" - name: "Transport of TrpProVal, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -276092,15 +276092,15 @@ - trpproval_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TRPSERTYRt + - id: "TRPSERTYRt" - name: "Transport of TrpSertyr, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -276109,15 +276109,15 @@ - trpsertyr_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TRPTHRGLUt + - id: "TRPTHRGLUt" - name: "Transport of TrpThrGlu, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -276126,15 +276126,15 @@ - trpthrglu_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TRPTHRILEt + - id: "TRPTHRILEt" - name: "Transport of TrpThrIle, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -276143,15 +276143,15 @@ - trpthrile_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TRPTHRTYRt + - id: "TRPTHRTYRt" - name: "Transport of TrpThrtyr, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -276160,15 +276160,15 @@ - trpthrtyr_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TRPTYRGLNt + - id: "TRPTYRGLNt" - name: "Transport of TrptyrGln, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -276177,15 +276177,15 @@ - trptyrgln_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TRPTYRTYRt + - id: "TRPTYRTYRt" - name: "Transport of Trptyrtyr, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -276194,15 +276194,15 @@ - trptyrtyr_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TRPVALASPt + - id: "TRPVALASPt" - name: "Transport of TrpValAsp, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -276211,15 +276211,15 @@ - trpvalasp_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TYRALAt + - id: "TYRALAt" - name: "Transport of TyrAla, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -276228,15 +276228,15 @@ - tyrala_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TYRALAPHEt + - id: "TYRALAPHEt" - name: "Transport of TyrAlaPhe, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -276245,15 +276245,15 @@ - tyralaphe_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TYRARGGLUt + - id: "TYRARGGLUt" - name: "Transport of TyrArgGlu, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -276262,15 +276262,15 @@ - tyrargglu_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TYRARGSERt + - id: "TYRARGSERt" - name: "Transport of TyrArgSer, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -276279,15 +276279,15 @@ - tyrargser_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TYRASPARGt + - id: "TYRASPARGt" - name: "Transport of TyrAspArg, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -276296,15 +276296,15 @@ - tyrasparg_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TYRCYSGLYt + - id: "TYRCYSGLYt" - name: "Transport of TyrCysGly, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -276313,15 +276313,15 @@ - tyrcysgly_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TYRCYSTHRt + - id: "TYRCYSTHRt" - name: "Transport of TyrCysThr, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -276330,15 +276330,15 @@ - tyrcysthr_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TYRGLUt + - id: "TYRGLUt" - name: "Transport of TyrGlu, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -276347,15 +276347,15 @@ - tyrglu_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TYRLEUARGt + - id: "TYRLEUARGt" - name: "Transport of TyrLeuArg, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -276364,15 +276364,15 @@ - tyrleuarg_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TYRPHETYRt + - id: "TYRPHETYRt" - name: "Transport of TyrPhetyr, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -276381,15 +276381,15 @@ - tyrphetyr_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TYRTHRt + - id: "TYRTHRt" - name: "Transport of TyrThr, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -276398,15 +276398,15 @@ - tyrthr_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TYRTRPPHEt + - id: "TYRTRPPHEt" - name: "Transport of TyrTrpPhe, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -276415,15 +276415,15 @@ - tyrtrpphe_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TYRTYRt + - id: "TYRTYRt" - name: "Transport of Tyrtyr, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -276432,15 +276432,15 @@ - tyrtyr_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TYRVALMETt + - id: "TYRVALMETt" - name: "Transport of TyrValMet, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -276449,15 +276449,15 @@ - tyrvalmet_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: VALARGGLYt + - id: "VALARGGLYt" - name: "Transport of ValArgGly, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -276466,15 +276466,15 @@ - valarggly_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: VALHISASNt + - id: "VALHISASNt" - name: "Transport of ValHisAsn, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -276483,15 +276483,15 @@ - valhisasn_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: VALLEUPHEt + - id: "VALLEUPHEt" - name: "Transport of ValLeuPhe, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -276500,15 +276500,15 @@ - valleuphe_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: VALLYSTYRt + - id: "VALLYSTYRt" - name: "Transport of ValLystyr, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -276517,15 +276517,15 @@ - vallystyr_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: VALPHEARGt + - id: "VALPHEARGt" - name: "Transport of ValPheArg, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -276534,15 +276534,15 @@ - valphearg_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: VALPROTRPt + - id: "VALPROTRPt" - name: "Transport of ValProTrp, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -276551,15 +276551,15 @@ - valprotrp_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: VALSERARGt + - id: "VALSERARGt" - name: "Transport of ValSerArg, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -276568,15 +276568,15 @@ - valserarg_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: VALTRPPHEt + - id: "VALTRPPHEt" - name: "Transport of ValTrpPhe, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -276585,15 +276585,15 @@ - valtrpphe_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: VALTRPVALt + - id: "VALTRPVALt" - name: "Transport of ValTrpVal, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -276602,15 +276602,15 @@ - valtrpval_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: VALVALt + - id: "VALVALt" - name: "Transport of ValVal, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -276619,15 +276619,15 @@ - valval_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TRPGLYASPt + - id: "TRPGLYASPt" - name: "Transport of TrpGlyAsp, Extracellular" - metabolites: !!omap - m02039c: 1 @@ -276636,15 +276636,15 @@ - trpglyasp_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 or ENSG00000163406 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000088386 or ENSG00000163406" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ALAARGCYSr + - id: "ALAARGCYSr" - name: "Metabolism (Formation/Degradation) of AlaArgCys" - metabolites: !!omap - alaargcys_c: -1 @@ -276654,15 +276654,15 @@ - m02040c: -2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ALAARGGLYr + - id: "ALAARGGLYr" - name: "Metabolism (Formation/Degradation) of AlaArgGly" - metabolites: !!omap - alaarggly_c: -1 @@ -276672,15 +276672,15 @@ - m02040c: -2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ALAASNLEUr + - id: "ALAASNLEUr" - name: "Metabolism (Formation/Degradation) of AlaAsnLeu" - metabolites: !!omap - alaasnleu_c: -1 @@ -276690,15 +276690,15 @@ - m02360c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ALAGLYLYSr + - id: "ALAGLYLYSr" - name: "Metabolism (Formation/Degradation) of AlaGlyLys" - metabolites: !!omap - alaglylys_c: -1 @@ -276708,15 +276708,15 @@ - m02426c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ALAHISALAr + - id: "ALAHISALAr" - name: "Metabolism (Formation/Degradation) of AlaHisAla" - metabolites: !!omap - alahisala_c: -1 @@ -276725,15 +276725,15 @@ - m02125c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ALALYSTHRr + - id: "ALALYSTHRr" - name: "Metabolism (Formation/Degradation) of AlaLysThr" - metabolites: !!omap - alalysthr_c: -1 @@ -276743,15 +276743,15 @@ - m02993c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ARGALAALAr + - id: "ARGALAALAr" - name: "Metabolism (Formation/Degradation) of ArgAlaAla" - metabolites: !!omap - alaala_c: -1 @@ -276760,15 +276760,15 @@ - m02040c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ARGALAPHEr + - id: "ARGALAPHEr" - name: "Metabolism (Formation/Degradation) of ArgAlaPhe" - metabolites: !!omap - argalaphe_c: -1 @@ -276778,15 +276778,15 @@ - m02724c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ARGALATHRr + - id: "ARGALATHRr" - name: "Metabolism (Formation/Degradation) of ArgAlaThr" - metabolites: !!omap - argalathr_c: -1 @@ -276796,15 +276796,15 @@ - m02993c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ARGARGr + - id: "ARGARGr" - name: "Metabolism (Formation/Degradation) of ArgArg" - metabolites: !!omap - argarg_c: -1 @@ -276812,15 +276812,15 @@ - m02040c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ARGARGLYSr + - id: "ARGARGLYSr" - name: "Metabolism (Formation/Degradation) of ArgArgLys" - metabolites: !!omap - argarglys_c: -1 @@ -276829,15 +276829,15 @@ - m02426c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ARGARGMETr + - id: "ARGARGMETr" - name: "Metabolism (Formation/Degradation) of ArgArgMet" - metabolites: !!omap - argargmet_c: -1 @@ -276846,15 +276846,15 @@ - m02471c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ARGCYSGLYr + - id: "ARGCYSGLYr" - name: "Metabolism (Formation/Degradation) of ArgCysGly" - metabolites: !!omap - argcysgly_c: -1 @@ -276864,15 +276864,15 @@ - m02040c: -2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ARGCYSSERr + - id: "ARGCYSSERr" - name: "Metabolism (Formation/Degradation) of ArgCysSer" - metabolites: !!omap - argcysser_c: -1 @@ -276882,15 +276882,15 @@ - m02896c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ARGGLUGLUr + - id: "ARGGLUGLUr" - name: "Metabolism (Formation/Degradation) of ArgGluGlu" - metabolites: !!omap - arggluglu_c: -1 @@ -276899,15 +276899,15 @@ - m02040c: -2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ARGGLUPROr + - id: "ARGGLUPROr" - name: "Metabolism (Formation/Degradation) of ArgGluPro" - metabolites: !!omap - argglupro_c: -1 @@ -276917,15 +276917,15 @@ - m02770c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ARGGLYGLYr + - id: "ARGGLYGLYr" - name: "Metabolism (Formation/Degradation) of ArgGlyGly" - metabolites: !!omap - argglygly_c: 1 @@ -276934,15 +276934,15 @@ - m02040c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ARGHISTHRr + - id: "ARGHISTHRr" - name: "Metabolism (Formation/Degradation) of ArgHisThr" - metabolites: !!omap - arghisthr_c: -1 @@ -276952,15 +276952,15 @@ - m02993c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ARGLEUPHEr + - id: "ARGLEUPHEr" - name: "Metabolism (Formation/Degradation) of ArgLeuPhe" - metabolites: !!omap - argleuphe_c: -1 @@ -276970,15 +276970,15 @@ - m02724c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ARGLYSASPr + - id: "ARGLYSASPr" - name: "Metabolism (Formation/Degradation) of ArgLysAsp" - metabolites: !!omap - arglysasp_c: -1 @@ -276988,15 +276988,15 @@ - m02426c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ARGPHEARGr + - id: "ARGPHEARGr" - name: "Metabolism (Formation/Degradation) of ArgPheArg" - metabolites: !!omap - argphearg_c: -1 @@ -277005,15 +277005,15 @@ - m02724c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ARGPROMETr + - id: "ARGPROMETr" - name: "Metabolism (Formation/Degradation) of ArgProMet" - metabolites: !!omap - argpromet_c: -1 @@ -277023,15 +277023,15 @@ - m02770c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ARGPROTHRr + - id: "ARGPROTHRr" - name: "Metabolism (Formation/Degradation) of ArgProThr" - metabolites: !!omap - argprothr_c: -1 @@ -277041,15 +277041,15 @@ - m02993c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ARGSERSERr + - id: "ARGSERSERr" - name: "Metabolism (Formation/Degradation) of ArgSerSer" - metabolites: !!omap - argserser_c: -1 @@ -277058,15 +277058,15 @@ - m02896c: 2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ARGTYRVALr + - id: "ARGTYRVALr" - name: "Metabolism (Formation/Degradation) of ArgtyrVal" - metabolites: !!omap - argtyrval_c: -1 @@ -277076,15 +277076,15 @@ - m03135c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ARGVALCYSr + - id: "ARGVALCYSr" - name: "Metabolism (Formation/Degradation) of ArgValCys" - metabolites: !!omap - argvalcys_c: -1 @@ -277094,15 +277094,15 @@ - m03135c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ARGVALTRPr + - id: "ARGVALTRPr" - name: "Metabolism (Formation/Degradation) of ArgValTrp" - metabolites: !!omap - argvaltrp_c: -1 @@ -277112,15 +277112,15 @@ - m03135c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ASNASNARGr + - id: "ASNASNARGr" - name: "Metabolism (Formation/Degradation) of AsnAsnArg" - metabolites: !!omap - asnasnarg_c: -1 @@ -277129,15 +277129,15 @@ - m02040c: -2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ASNCYSCYSr + - id: "ASNCYSCYSr" - name: "Metabolism (Formation/Degradation) of AsnCysCys" - metabolites: !!omap - asncyscys_c: -1 @@ -277146,15 +277146,15 @@ - m02040c: -2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ASNMETPROr + - id: "ASNMETPROr" - name: "Metabolism (Formation/Degradation) of AsnMetPro" - metabolites: !!omap - asnmetpro_c: -1 @@ -277164,15 +277164,15 @@ - m02770c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ASNPHEASPr + - id: "ASNPHEASPr" - name: "Metabolism (Formation/Degradation) of AsnPheAsp" - metabolites: !!omap - asnpheasp_c: -1 @@ -277182,15 +277182,15 @@ - m02724c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ASNPHECYSr + - id: "ASNPHECYSr" - name: "Metabolism (Formation/Degradation) of AsnPheCys" - metabolites: !!omap - asnphecys_c: -1 @@ -277200,15 +277200,15 @@ - m02724c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ASNTYRGLYr + - id: "ASNTYRGLYr" - name: "Metabolism (Formation/Degradation) of AsntyrGly" - metabolites: !!omap - asntyrgly_c: -1 @@ -277218,15 +277218,15 @@ - m03101c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ASNTYRPHEr + - id: "ASNTYRPHEr" - name: "Metabolism (Formation/Degradation) of AsntyrPhe" - metabolites: !!omap - asntyrphe_c: -1 @@ -277236,15 +277236,15 @@ - m03101c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ASNTYRTHRr + - id: "ASNTYRTHRr" - name: "Metabolism (Formation/Degradation) of AsntyrThr" - metabolites: !!omap - asntyrthr_c: -1 @@ -277254,15 +277254,15 @@ - m03101c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ASPALAARGr + - id: "ASPALAARGr" - name: "Metabolism (Formation/Degradation) of AspAlaArg" - metabolites: !!omap - aspalaarg_c: -1 @@ -277272,15 +277272,15 @@ - m02040c: -2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ASPASNGLUr + - id: "ASPASNGLUr" - name: "Metabolism (Formation/Degradation) of AspAsnGlu" - metabolites: !!omap - aspasnglu_c: -1 @@ -277290,15 +277290,15 @@ - m02040c: -2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ASPGLUr + - id: "ASPGLUr" - name: "Metabolism (Formation/Degradation) of AspGlu" - metabolites: !!omap - aspglu_c: -1 @@ -277307,15 +277307,15 @@ - m02040c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ASPGLUPROr + - id: "ASPGLUPROr" - name: "Metabolism (Formation/Degradation) of AspGluPro" - metabolites: !!omap - aspglupro_c: -1 @@ -277325,15 +277325,15 @@ - m02770c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ASPGLUTRPr + - id: "ASPGLUTRPr" - name: "Metabolism (Formation/Degradation) of AspGluTrp" - metabolites: !!omap - aspglutrp_c: -1 @@ -277343,15 +277343,15 @@ - m03089c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ASPHISCYSr + - id: "ASPHISCYSr" - name: "Metabolism (Formation/Degradation) of AspHisCys" - metabolites: !!omap - asphiscys_c: -1 @@ -277361,15 +277361,15 @@ - m02125c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ASPHISPROr + - id: "ASPHISPROr" - name: "Metabolism (Formation/Degradation) of AspHisPro" - metabolites: !!omap - asphispro_c: -1 @@ -277379,15 +277379,15 @@ - m02770c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ASPLYSGLUr + - id: "ASPLYSGLUr" - name: "Metabolism (Formation/Degradation) of AspLysGlu" - metabolites: !!omap - asplysglu_c: -1 @@ -277397,15 +277397,15 @@ - m02426c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ASPLYSHISr + - id: "ASPLYSHISr" - name: "Metabolism (Formation/Degradation) of AspLysHis" - metabolites: !!omap - asplyshis_c: -1 @@ -277415,15 +277415,15 @@ - m02426c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ASPMETASPr + - id: "ASPMETASPr" - name: "Metabolism (Formation/Degradation) of AspMetAsp" - metabolites: !!omap - aspmetasp_c: -1 @@ -277432,15 +277432,15 @@ - m02471c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ASPPROLYSr + - id: "ASPPROLYSr" - name: "Metabolism (Formation/Degradation) of AspProLys" - metabolites: !!omap - aspprolys_c: -1 @@ -277450,15 +277450,15 @@ - m02770c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ASPVALASNr + - id: "ASPVALASNr" - name: "Metabolism (Formation/Degradation) of AspValAsn" - metabolites: !!omap - aspvalasn_c: -1 @@ -277468,15 +277468,15 @@ - m03135c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: CYSASNMETr + - id: "CYSASNMETr" - name: "Metabolism (Formation/Degradation) of CysAsnMet" - metabolites: !!omap - cysasnmet_c: -1 @@ -277486,15 +277486,15 @@ - m02471c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: CYSASPPHEr + - id: "CYSASPPHEr" - name: "Metabolism (Formation/Degradation) of CysAspPhe" - metabolites: !!omap - cysaspphe_c: -1 @@ -277504,15 +277504,15 @@ - m02724c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: CYSCYSr + - id: "CYSCYSr" - name: "Metabolism (Formation/Degradation) of CysCys" - metabolites: !!omap - cyscys_c: -1 @@ -277520,15 +277520,15 @@ - m02040c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: CYSGLNMETr + - id: "CYSGLNMETr" - name: "Metabolism (Formation/Degradation) of CysGlnMet" - metabolites: !!omap - cysglnmet_c: -1 @@ -277538,15 +277538,15 @@ - m02471c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: CYSGLUHISr + - id: "CYSGLUHISr" - name: "Metabolism (Formation/Degradation) of CysGluHis" - metabolites: !!omap - cysgluhis_c: -1 @@ -277556,15 +277556,15 @@ - m02125c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: CYSGLUTRPr + - id: "CYSGLUTRPr" - name: "Metabolism (Formation/Degradation) of CysGluTrp" - metabolites: !!omap - cysglutrp_c: -1 @@ -277574,15 +277574,15 @@ - m03089c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: CYSLEUTHRr + - id: "CYSLEUTHRr" - name: "Metabolism (Formation/Degradation) of CysLeuThr" - metabolites: !!omap - cysleuthr_c: -1 @@ -277592,15 +277592,15 @@ - m02993c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: CYSSERMETr + - id: "CYSSERMETr" - name: "Metabolism (Formation/Degradation) of CysSerMet" - metabolites: !!omap - cyssermet_c: -1 @@ -277610,15 +277610,15 @@ - m02896c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: CYSTYRASNr + - id: "CYSTYRASNr" - name: "Metabolism (Formation/Degradation) of CystyrAsn" - metabolites: !!omap - cystyrasn_c: -1 @@ -277628,15 +277628,15 @@ - m03101c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: GLNASNGLNr + - id: "GLNASNGLNr" - name: "Metabolism (Formation/Degradation) of GlnAsnGln" - metabolites: !!omap - glnasngln_c: -1 @@ -277645,15 +277645,15 @@ - m02040c: -2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: GLNHISHISr + - id: "GLNHISHISr" - name: "Metabolism (Formation/Degradation) of GlnHisHis" - metabolites: !!omap - glnhishis_c: -1 @@ -277662,15 +277662,15 @@ - m02125c: 2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: GLNHISLYSr + - id: "GLNHISLYSr" - name: "Metabolism (Formation/Degradation) of GlnHisLys" - metabolites: !!omap - glnhislys_c: -1 @@ -277680,15 +277680,15 @@ - m02426c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: GLNLYSLYSr + - id: "GLNLYSLYSr" - name: "Metabolism (Formation/Degradation) of GlnLysLys" - metabolites: !!omap - glnlyslys_c: -1 @@ -277697,15 +277697,15 @@ - m02426c: 2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: GLNLYSTRPr + - id: "GLNLYSTRPr" - name: "Metabolism (Formation/Degradation) of GlnLysTrp" - metabolites: !!omap - glnlystrp_c: -1 @@ -277715,15 +277715,15 @@ - m03089c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: GLNPROGLUr + - id: "GLNPROGLUr" - name: "Metabolism (Formation/Degradation) of GlnProGlu" - metabolites: !!omap - glnproglu_c: -1 @@ -277733,15 +277733,15 @@ - m02770c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: GLNTRPGLUr + - id: "GLNTRPGLUr" - name: "Metabolism (Formation/Degradation) of GlnTrpGlu" - metabolites: !!omap - glntrpglu_c: -1 @@ -277751,15 +277751,15 @@ - m03089c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: GLNTYRLEUr + - id: "GLNTYRLEUr" - name: "Metabolism (Formation/Degradation) of GlntyrLeu" - metabolites: !!omap - glntyrleu_c: -1 @@ -277769,15 +277769,15 @@ - m03101c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: GLUARGLEUr + - id: "GLUARGLEUr" - name: "Metabolism (Formation/Degradation) of GluArgLeu" - metabolites: !!omap - gluargleu_c: -1 @@ -277787,15 +277787,15 @@ - m02360c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: GLUASNLEUr + - id: "GLUASNLEUr" - name: "Metabolism (Formation/Degradation) of GluAsnLeu" - metabolites: !!omap - gluasnleu_c: -1 @@ -277805,15 +277805,15 @@ - m02360c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: GLUGLUr + - id: "GLUGLUr" - name: "Metabolism (Formation/Degradation) of GluGlu" - metabolites: !!omap - gluglu_c: -1 @@ -277821,15 +277821,15 @@ - m02040c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: GLUILELYSr + - id: "GLUILELYSr" - name: "Metabolism (Formation/Degradation) of GluIleLys" - metabolites: !!omap - gluilelys_c: -1 @@ -277839,15 +277839,15 @@ - m02426c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: GLULEUr + - id: "GLULEUr" - name: "Metabolism (Formation/Degradation) of GluLeu" - metabolites: !!omap - gluleu_c: -1 @@ -277856,15 +277856,15 @@ - m02360c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: GLUMETr + - id: "GLUMETr" - name: "Metabolism (Formation/Degradation) of GluMet" - metabolites: !!omap - glumet_c: -1 @@ -277873,15 +277873,15 @@ - m02471c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: GLUMETHISr + - id: "GLUMETHISr" - name: "Metabolism (Formation/Degradation) of GluMetHis" - metabolites: !!omap - glumethis_c: -1 @@ -277891,15 +277891,15 @@ - m02471c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: GLUTHRr + - id: "GLUTHRr" - name: "Metabolism (Formation/Degradation) of GluThr" - metabolites: !!omap - gluthr_c: -1 @@ -277908,15 +277908,15 @@ - m02993c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: GLUTHRLYSr + - id: "GLUTHRLYSr" - name: "Metabolism (Formation/Degradation) of GluThrLys" - metabolites: !!omap - gluthrlys_c: -1 @@ -277926,15 +277926,15 @@ - m02993c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: GLUTRPALAr + - id: "GLUTRPALAr" - name: "Metabolism (Formation/Degradation) of GluTrpAla" - metabolites: !!omap - glutrpala_c: -1 @@ -277944,15 +277944,15 @@ - m03089c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: GLYHISASNr + - id: "GLYHISASNr" - name: "Metabolism (Formation/Degradation) of GlyHisAsn" - metabolites: !!omap - glyhisasn_c: -1 @@ -277962,15 +277962,15 @@ - m02125c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: GLYHISLYSr + - id: "GLYHISLYSr" - name: "Metabolism (Formation/Degradation) of GlyHisLys" - metabolites: !!omap - glyhislys_c: -1 @@ -277980,15 +277980,15 @@ - m02426c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: GLYLYSCYSr + - id: "GLYLYSCYSr" - name: "Metabolism (Formation/Degradation) of GlyLysCys" - metabolites: !!omap - glylyscys_c: -1 @@ -277998,15 +277998,15 @@ - m02426c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: GLYLYSPHEr + - id: "GLYLYSPHEr" - name: "Metabolism (Formation/Degradation) of GlyLysPhe" - metabolites: !!omap - glylysphe_c: -1 @@ -278016,15 +278016,15 @@ - m02724c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: GLYTYRLYSr + - id: "GLYTYRLYSr" - name: "Metabolism (Formation/Degradation) of GlytyrLys" - metabolites: !!omap - glytyrlys_c: -1 @@ -278034,15 +278034,15 @@ - m03101c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: GLYVALHISr + - id: "GLYVALHISr" - name: "Metabolism (Formation/Degradation) of GlyValHis" - metabolites: !!omap - glyvalhis_c: -1 @@ -278052,15 +278052,15 @@ - m03135c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: HISARGCYSr + - id: "HISARGCYSr" - name: "Metabolism (Formation/Degradation) of HisArgCys" - metabolites: !!omap - hisargcys_c: -1 @@ -278070,15 +278070,15 @@ - m02125c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: HISARGSERr + - id: "HISARGSERr" - name: "Metabolism (Formation/Degradation) of HisArgSer" - metabolites: !!omap - hisargser_c: -1 @@ -278088,15 +278088,15 @@ - m02896c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: HISASPr + - id: "HISASPr" - name: "Metabolism (Formation/Degradation) of HisAsp" - metabolites: !!omap - hisasp_c: -1 @@ -278105,15 +278105,15 @@ - m02125c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: HISCYSCYSr + - id: "HISCYSCYSr" - name: "Metabolism (Formation/Degradation) of HisCysCys" - metabolites: !!omap - hiscyscys_c: -1 @@ -278122,15 +278122,15 @@ - m02125c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: HISGLNALAr + - id: "HISGLNALAr" - name: "Metabolism (Formation/Degradation) of HisGlnAla" - metabolites: !!omap - hisglnala_c: -1 @@ -278140,15 +278140,15 @@ - m02125c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: HISGLUr + - id: "HISGLUr" - name: "Metabolism (Formation/Degradation) of HisGlu" - metabolites: !!omap - hisglu_c: -1 @@ -278157,15 +278157,15 @@ - m02125c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: HISGLUGLNr + - id: "HISGLUGLNr" - name: "Metabolism (Formation/Degradation) of HisGluGln" - metabolites: !!omap - hisglugln_c: -1 @@ -278175,15 +278175,15 @@ - m02125c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: HISGLYLYSr + - id: "HISGLYLYSr" - name: "Metabolism (Formation/Degradation) of HisGlyLys" - metabolites: !!omap - hisglylys_c: -1 @@ -278193,15 +278193,15 @@ - m02426c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: HISHISLYSr + - id: "HISHISLYSr" - name: "Metabolism (Formation/Degradation) of HisHisLys" - metabolites: !!omap - hishislys_c: -1 @@ -278210,15 +278210,15 @@ - m02426c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: HISLYSALAr + - id: "HISLYSALAr" - name: "Metabolism (Formation/Degradation) of HisLysAla" - metabolites: !!omap - hislysala_c: -1 @@ -278228,15 +278228,15 @@ - m02426c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: HISLYSGLUr + - id: "HISLYSGLUr" - name: "Metabolism (Formation/Degradation) of HisLysGlu" - metabolites: !!omap - hislysglu_c: -1 @@ -278246,15 +278246,15 @@ - m02426c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: HISLYSILEr + - id: "HISLYSILEr" - name: "Metabolism (Formation/Degradation) of HisLysIle" - metabolites: !!omap - hislysile_c: -1 @@ -278264,15 +278264,15 @@ - m02426c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: HISLYSTHRr + - id: "HISLYSTHRr" - name: "Metabolism (Formation/Degradation) of HisLysThr" - metabolites: !!omap - hislysthr_c: -1 @@ -278282,15 +278282,15 @@ - m02993c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: HISLYSVALr + - id: "HISLYSVALr" - name: "Metabolism (Formation/Degradation) of HisLysVal" - metabolites: !!omap - hislysval_c: -1 @@ -278300,15 +278300,15 @@ - m03135c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: HISMETr + - id: "HISMETr" - name: "Metabolism (Formation/Degradation) of HisMet" - metabolites: !!omap - hismet_c: -1 @@ -278317,15 +278317,15 @@ - m02471c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: HISMETGLNr + - id: "HISMETGLNr" - name: "Metabolism (Formation/Degradation) of HisMetGln" - metabolites: !!omap - hismetgln_c: -1 @@ -278335,15 +278335,15 @@ - m02471c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: HISPHEARGr + - id: "HISPHEARGr" - name: "Metabolism (Formation/Degradation) of HisPheArg" - metabolites: !!omap - hisphearg_c: -1 @@ -278353,15 +278353,15 @@ - m02724c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: HISPROLYSr + - id: "HISPROLYSr" - name: "Metabolism (Formation/Degradation) of HisProLys" - metabolites: !!omap - hisprolys_c: -1 @@ -278371,15 +278371,15 @@ - m02770c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: HISTRPHISr + - id: "HISTRPHISr" - name: "Metabolism (Formation/Degradation) of HisTrpHis" - metabolites: !!omap - histrphis_c: -1 @@ -278388,15 +278388,15 @@ - m03089c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ILEARGILEr + - id: "ILEARGILEr" - name: "Metabolism (Formation/Degradation) of IleArgIle" - metabolites: !!omap - ileargile_c: -1 @@ -278405,15 +278405,15 @@ - m02184c: 2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ILEASNHISr + - id: "ILEASNHISr" - name: "Metabolism (Formation/Degradation) of IleAsnHis" - metabolites: !!omap - ileasnhis_c: -1 @@ -278423,15 +278423,15 @@ - m02184c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ILEASPr + - id: "ILEASPr" - name: "Metabolism (Formation/Degradation) of IleAsp" - metabolites: !!omap - ileasp_c: -1 @@ -278440,15 +278440,15 @@ - m02184c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ILEGLNGLUr + - id: "ILEGLNGLUr" - name: "Metabolism (Formation/Degradation) of IleGlnGlu" - metabolites: !!omap - ileglnglu_c: -1 @@ -278458,15 +278458,15 @@ - m02184c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ILEGLYARGr + - id: "ILEGLYARGr" - name: "Metabolism (Formation/Degradation) of IleGlyArg" - metabolites: !!omap - ileglyarg_c: -1 @@ -278476,15 +278476,15 @@ - m02184c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ILEPROLYSr + - id: "ILEPROLYSr" - name: "Metabolism (Formation/Degradation) of IleProLys" - metabolites: !!omap - ileprolys_c: -1 @@ -278494,15 +278494,15 @@ - m02770c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ILESERARGr + - id: "ILESERARGr" - name: "Metabolism (Formation/Degradation) of IleSerArg" - metabolites: !!omap - ileserarg_c: -1 @@ -278512,15 +278512,15 @@ - m02896c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: ILETRPTYRr + - id: "ILETRPTYRr" - name: "Metabolism (Formation/Degradation) of IleTrptyr" - metabolites: !!omap - iletrptyr_c: -1 @@ -278530,15 +278530,15 @@ - m03101c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: LEUALAARGr + - id: "LEUALAARGr" - name: "Metabolism (Formation/Degradation) of LeuAlaArg" - metabolites: !!omap - leualaarg_c: -1 @@ -278548,15 +278548,15 @@ - m02360c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: LEUASNASPr + - id: "LEUASNASPr" - name: "Metabolism (Formation/Degradation) of LeuAsnAsp" - metabolites: !!omap - leuasnasp_c: -1 @@ -278566,15 +278566,15 @@ - m02360c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: LEUASPLYSr + - id: "LEUASPLYSr" - name: "Metabolism (Formation/Degradation) of LeuAspLys" - metabolites: !!omap - leuasplys_c: -1 @@ -278584,15 +278584,15 @@ - m02426c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: LEULEUTRPr + - id: "LEULEUTRPr" - name: "Metabolism (Formation/Degradation) of LeuLeuTrp" - metabolites: !!omap - leuleutrp_c: -1 @@ -278601,15 +278601,15 @@ - m03089c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: LEUPROr + - id: "LEUPROr" - name: "Metabolism (Formation/Degradation) of LeuPro" - metabolites: !!omap - leupro_c: -1 @@ -278618,15 +278618,15 @@ - m02770c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: LEUPROARGr + - id: "LEUPROARGr" - name: "Metabolism (Formation/Degradation) of LeuProArg" - metabolites: !!omap - leuproarg_c: -1 @@ -278636,15 +278636,15 @@ - m02770c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: LEUSERTRPr + - id: "LEUSERTRPr" - name: "Metabolism (Formation/Degradation) of LeuSerTrp" - metabolites: !!omap - leusertrp_c: -1 @@ -278654,15 +278654,15 @@ - m03089c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: LEUTRPr + - id: "LEUTRPr" - name: "Metabolism (Formation/Degradation) of LeuTrp" - metabolites: !!omap - leutrp_c: -1 @@ -278671,15 +278671,15 @@ - m03089c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: LEUTRPARGr + - id: "LEUTRPARGr" - name: "Metabolism (Formation/Degradation) of LeuTrpArg" - metabolites: !!omap - leutrparg_c: -1 @@ -278689,15 +278689,15 @@ - m03089c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: LEUTYRTYRr + - id: "LEUTYRTYRr" - name: "Metabolism (Formation/Degradation) of Leutyrtyr" - metabolites: !!omap - leutyrtyr_c: -1 @@ -278706,15 +278706,15 @@ - m03101c: 2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: LEUVALr + - id: "LEUVALr" - name: "Metabolism (Formation/Degradation) of LeuVal" - metabolites: !!omap - leuval_c: -1 @@ -278723,15 +278723,15 @@ - m03135c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: LYSARGLEUr + - id: "LYSARGLEUr" - name: "Metabolism (Formation/Degradation) of LysArgLeu" - metabolites: !!omap - lysargleu_c: -1 @@ -278742,15 +278742,15 @@ - m02426c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: LYSCYSHISr + - id: "LYSCYSHISr" - name: "Metabolism (Formation/Degradation) of LysCysHis" - metabolites: !!omap - lyscyshis_c: -1 @@ -278760,15 +278760,15 @@ - m02426c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: LYSGLNPHEr + - id: "LYSGLNPHEr" - name: "Metabolism (Formation/Degradation) of LysGlnPhe" - metabolites: !!omap - lysglnphe_c: -1 @@ -278778,15 +278778,15 @@ - m02724c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: LYSGLUGLUr + - id: "LYSGLUGLUr" - name: "Metabolism (Formation/Degradation) of LysGluGlu" - metabolites: !!omap - lysgluglu_c: -1 @@ -278795,15 +278795,15 @@ - m02426c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: LYSLYSLYSr + - id: "LYSLYSLYSr" - name: "Metabolism (Formation/Degradation) of LysLysLys" - metabolites: !!omap - lyslyslys_c: -1 @@ -278811,15 +278811,15 @@ - m02426c: 3 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: LYSPHEILEr + - id: "LYSPHEILEr" - name: "Metabolism (Formation/Degradation) of LysPheIle" - metabolites: !!omap - lyspheile_c: -1 @@ -278829,15 +278829,15 @@ - m02724c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: LYSTRPARGr + - id: "LYSTRPARGr" - name: "Metabolism (Formation/Degradation) of LysTrpArg" - metabolites: !!omap - lystrparg_c: -1 @@ -278847,15 +278847,15 @@ - m03089c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: LYSTYRILEr + - id: "LYSTYRILEr" - name: "Metabolism (Formation/Degradation) of LystyrIle" - metabolites: !!omap - lystyrile_c: -1 @@ -278865,15 +278865,15 @@ - m03101c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: LYSVALPHEr + - id: "LYSVALPHEr" - name: "Metabolism (Formation/Degradation) of LysValPhe" - metabolites: !!omap - lysvalphe_c: -1 @@ -278883,15 +278883,15 @@ - m03135c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: LYSVALTRPr + - id: "LYSVALTRPr" - name: "Metabolism (Formation/Degradation) of LysValTrp" - metabolites: !!omap - lysvaltrp_c: -1 @@ -278901,15 +278901,15 @@ - m03135c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: METARGLEUr + - id: "METARGLEUr" - name: "Metabolism (Formation/Degradation) of MetArgLeu" - metabolites: !!omap - m01365c: 1 @@ -278919,15 +278919,15 @@ - metargleu_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: METASNTYRr + - id: "METASNTYRr" - name: "Metabolism (Formation/Degradation) of MetAsntyr" - metabolites: !!omap - m01369c: 1 @@ -278937,15 +278937,15 @@ - metasntyr_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: METGLNTYRr + - id: "METGLNTYRr" - name: "Metabolism (Formation/Degradation) of MetGlntyr" - metabolites: !!omap - m01975c: 1 @@ -278955,15 +278955,15 @@ - metglntyr_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: METGLYARGr + - id: "METGLYARGr" - name: "Metabolism (Formation/Degradation) of MetGlyArg" - metabolites: !!omap - m01365c: 1 @@ -278973,15 +278973,15 @@ - metglyarg_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: METHISLYSr + - id: "METHISLYSr" - name: "Metabolism (Formation/Degradation) of MetHisLys" - metabolites: !!omap - m02040c: -2 @@ -278991,15 +278991,15 @@ - methislys_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: METMETILEr + - id: "METMETILEr" - name: "Metabolism (Formation/Degradation) of MetMetIle" - metabolites: !!omap - m02040c: -2 @@ -279008,15 +279008,15 @@ - metmetile_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: METPHEARGr + - id: "METPHEARGr" - name: "Metabolism (Formation/Degradation) of MetPheArg" - metabolites: !!omap - m01365c: 1 @@ -279026,15 +279026,15 @@ - metphearg_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: METTRPPHEr + - id: "METTRPPHEr" - name: "Metabolism (Formation/Degradation) of MetTrpPhe" - metabolites: !!omap - m02040c: -2 @@ -279044,15 +279044,15 @@ - mettrpphe_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: PHEASNMETr + - id: "PHEASNMETr" - name: "Metabolism (Formation/Degradation) of PheAsnMet" - metabolites: !!omap - m01369c: 1 @@ -279062,15 +279062,15 @@ - pheasnmet_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: PHEASPr + - id: "PHEASPr" - name: "Metabolism (Formation/Degradation) of PheAsp" - metabolites: !!omap - m01370c: 1 @@ -279079,15 +279079,15 @@ - pheasp_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: PHEGLNPHEr + - id: "PHEGLNPHEr" - name: "Metabolism (Formation/Degradation) of PheGlnPhe" - metabolites: !!omap - m01975c: 1 @@ -279096,15 +279096,15 @@ - pheglnphe_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: PHELEUr + - id: "PHELEUr" - name: "Metabolism (Formation/Degradation) of PheLeu" - metabolites: !!omap - m02040c: -1 @@ -279113,15 +279113,15 @@ - pheleu_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: PHELEUASPr + - id: "PHELEUASPr" - name: "Metabolism (Formation/Degradation) of PheLeuAsp" - metabolites: !!omap - m01370c: 1 @@ -279131,15 +279131,15 @@ - pheleuasp_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: PHELEUHISr + - id: "PHELEUHISr" - name: "Metabolism (Formation/Degradation) of PheLeuHis" - metabolites: !!omap - m02040c: -2 @@ -279149,15 +279149,15 @@ - pheleuhis_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: PHELYSALAr + - id: "PHELYSALAr" - name: "Metabolism (Formation/Degradation) of PheLysAla" - metabolites: !!omap - m01307c: 1 @@ -279167,15 +279167,15 @@ - phelysala_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: PHELYSPROr + - id: "PHELYSPROr" - name: "Metabolism (Formation/Degradation) of PheLysPro" - metabolites: !!omap - m02040c: -2 @@ -279185,15 +279185,15 @@ - phelyspro_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: PHEPHEr + - id: "PHEPHEr" - name: "Metabolism (Formation/Degradation) of PhePhe" - metabolites: !!omap - m02040c: -1 @@ -279201,15 +279201,15 @@ - phephe_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: PHEPHEASNr + - id: "PHEPHEASNr" - name: "Metabolism (Formation/Degradation) of PhePheAsn" - metabolites: !!omap - m01369c: 1 @@ -279218,15 +279218,15 @@ - phepheasn_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: PHEPHETHRr + - id: "PHEPHETHRr" - name: "Metabolism (Formation/Degradation) of PhePheThr" - metabolites: !!omap - m02040c: -2 @@ -279235,15 +279235,15 @@ - phephethr_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: PHEPROARGr + - id: "PHEPROARGr" - name: "Metabolism (Formation/Degradation) of PheProArg" - metabolites: !!omap - m01365c: 1 @@ -279253,15 +279253,15 @@ - pheproarg_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: PHESERTRPr + - id: "PHESERTRPr" - name: "Metabolism (Formation/Degradation) of PheSerTrp" - metabolites: !!omap - m02040c: -2 @@ -279271,15 +279271,15 @@ - phesertrp_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: PHETHRLYSr + - id: "PHETHRLYSr" - name: "Metabolism (Formation/Degradation) of PheThrLys" - metabolites: !!omap - m02040c: -2 @@ -279289,15 +279289,15 @@ - phethrlys_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: PHETRPLEUr + - id: "PHETRPLEUr" - name: "Metabolism (Formation/Degradation) of PheTrpLeu" - metabolites: !!omap - m02040c: -2 @@ -279307,15 +279307,15 @@ - phetrpleu_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: PHETYRr + - id: "PHETYRr" - name: "Metabolism (Formation/Degradation) of Phetyr" - metabolites: !!omap - m02040c: -1 @@ -279324,15 +279324,15 @@ - phetyr_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: PHETYRGLNr + - id: "PHETYRGLNr" - name: "Metabolism (Formation/Degradation) of PhetyrGln" - metabolites: !!omap - m01975c: 1 @@ -279342,15 +279342,15 @@ - phetyrgln_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: PHETYRLYSr + - id: "PHETYRLYSr" - name: "Metabolism (Formation/Degradation) of PhetyrLys" - metabolites: !!omap - m02040c: -2 @@ -279360,15 +279360,15 @@ - phetyrlys_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: PROARGASPr + - id: "PROARGASPr" - name: "Metabolism (Formation/Degradation) of ProArgAsp" - metabolites: !!omap - m01365c: 1 @@ -279378,15 +279378,15 @@ - proargasp_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: PROARGCYSr + - id: "PROARGCYSr" - name: "Metabolism (Formation/Degradation) of ProArgCys" - metabolites: !!omap - m01365c: 1 @@ -279396,15 +279396,15 @@ - proargcys_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: PROASNCYSr + - id: "PROASNCYSr" - name: "Metabolism (Formation/Degradation) of ProAsnCys" - metabolites: !!omap - m01369c: 1 @@ -279414,15 +279414,15 @@ - proasncys_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: PROCYSr + - id: "PROCYSr" - name: "Metabolism (Formation/Degradation) of ProCys" - metabolites: !!omap - m01628c: 1 @@ -279431,15 +279431,15 @@ - procys_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: PROGLNPROr + - id: "PROGLNPROr" - name: "Metabolism (Formation/Degradation) of ProGlnPro" - metabolites: !!omap - m01975c: 1 @@ -279448,15 +279448,15 @@ - proglnpro_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: PROGLULYSr + - id: "PROGLULYSr" - name: "Metabolism (Formation/Degradation) of ProGluLys" - metabolites: !!omap - m01974c: 1 @@ -279466,15 +279466,15 @@ - proglulys_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: PROHISr + - id: "PROHISr" - name: "Metabolism (Formation/Degradation) of ProHis" - metabolites: !!omap - m02040c: -1 @@ -279483,15 +279483,15 @@ - prohis_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: PROHISTYRr + - id: "PROHISTYRr" - name: "Metabolism (Formation/Degradation) of ProHistyr" - metabolites: !!omap - m02039c: 1 @@ -279502,15 +279502,15 @@ - prohistyr_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: PROLEUARGr + - id: "PROLEUARGr" - name: "Metabolism (Formation/Degradation) of ProLeuArg" - metabolites: !!omap - m01365c: 1 @@ -279520,15 +279520,15 @@ - proleuarg_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: PROLYSPROr + - id: "PROLYSPROr" - name: "Metabolism (Formation/Degradation) of ProLysPro" - metabolites: !!omap - m02040c: -2 @@ -279537,15 +279537,15 @@ - prolyspro_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: PROPHEr + - id: "PROPHEr" - name: "Metabolism (Formation/Degradation) of ProPhe" - metabolites: !!omap - m02040c: -1 @@ -279554,15 +279554,15 @@ - prophe_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: PROPROARGr + - id: "PROPROARGr" - name: "Metabolism (Formation/Degradation) of ProProArg" - metabolites: !!omap - m01365c: 1 @@ -279571,15 +279571,15 @@ - proproarg_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: PROPROPROr + - id: "PROPROPROr" - name: "Metabolism (Formation/Degradation) of ProProPro" - metabolites: !!omap - m02040c: -2 @@ -279587,15 +279587,15 @@ - propropro_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: PROTRPLYSr + - id: "PROTRPLYSr" - name: "Metabolism (Formation/Degradation) of ProTrpLys" - metabolites: !!omap - m02040c: -2 @@ -279605,15 +279605,15 @@ - protrplys_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: PROTRPTHRr + - id: "PROTRPTHRr" - name: "Metabolism (Formation/Degradation) of ProTrpThr" - metabolites: !!omap - m02040c: -2 @@ -279623,15 +279623,15 @@ - protrpthr_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: PROVALGLNr + - id: "PROVALGLNr" - name: "Metabolism (Formation/Degradation) of ProValGln" - metabolites: !!omap - m01975c: 1 @@ -279641,15 +279641,15 @@ - provalgln_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: SERARGALAr + - id: "SERARGALAr" - name: "Metabolism (Formation/Degradation) of SerArgAla" - metabolites: !!omap - m01307c: 1 @@ -279659,15 +279659,15 @@ - serargala_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: SERARGTRPr + - id: "SERARGTRPr" - name: "Metabolism (Formation/Degradation) of SerArgTrp" - metabolites: !!omap - m01365c: 1 @@ -279677,15 +279677,15 @@ - serargtrp_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: SERCYSARGr + - id: "SERCYSARGr" - name: "Metabolism (Formation/Degradation) of SerCysArg" - metabolites: !!omap - m01365c: 1 @@ -279695,15 +279695,15 @@ - sercysarg_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: SERGLYGLUr + - id: "SERGLYGLUr" - name: "Metabolism (Formation/Degradation) of SerGlyGlu" - metabolites: !!omap - m01974c: 1 @@ -279713,15 +279713,15 @@ - serglyglu_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: SERLYSHISr + - id: "SERLYSHISr" - name: "Metabolism (Formation/Degradation) of SerLysHis" - metabolites: !!omap - m02040c: -2 @@ -279731,15 +279731,15 @@ - serlyshis_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: SERPHELYSr + - id: "SERPHELYSr" - name: "Metabolism (Formation/Degradation) of SerPheLys" - metabolites: !!omap - m02040c: -2 @@ -279749,15 +279749,15 @@ - serphelys_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: SERTRPHISr + - id: "SERTRPHISr" - name: "Metabolism (Formation/Degradation) of SerTrpHis" - metabolites: !!omap - m02040c: -2 @@ -279767,15 +279767,15 @@ - sertrphis_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: THRARGTYRr + - id: "THRARGTYRr" - name: "Metabolism (Formation/Degradation) of ThrArgtyr" - metabolites: !!omap - m01365c: 1 @@ -279785,15 +279785,15 @@ - thrargtyr_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: THRASNTYRr + - id: "THRASNTYRr" - name: "Metabolism (Formation/Degradation) of ThrAsntyr" - metabolites: !!omap - m01369c: 1 @@ -279803,15 +279803,15 @@ - thrasntyr_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: THRGLNGLUr + - id: "THRGLNGLUr" - name: "Metabolism (Formation/Degradation) of ThrGlnGlu" - metabolites: !!omap - m01974c: 1 @@ -279821,15 +279821,15 @@ - thrglnglu_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: THRGLNTYRr + - id: "THRGLNTYRr" - name: "Metabolism (Formation/Degradation) of ThrGlntyr" - metabolites: !!omap - m01975c: 1 @@ -279839,15 +279839,15 @@ - thrglntyr_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: THRHISHISr + - id: "THRHISHISr" - name: "Metabolism (Formation/Degradation) of ThrHisHis" - metabolites: !!omap - m02040c: -2 @@ -279856,15 +279856,15 @@ - thrhishis_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: THRILEARGr + - id: "THRILEARGr" - name: "Metabolism (Formation/Degradation) of ThrIleArg" - metabolites: !!omap - m01365c: 1 @@ -279874,15 +279874,15 @@ - thrilearg_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: THRMETARGr + - id: "THRMETARGr" - name: "Metabolism (Formation/Degradation) of ThrMetArg" - metabolites: !!omap - m01365c: 1 @@ -279892,15 +279892,15 @@ - thrmetarg_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: THRPHEARGr + - id: "THRPHEARGr" - name: "Metabolism (Formation/Degradation) of ThrPheArg" - metabolites: !!omap - m01365c: 1 @@ -279910,15 +279910,15 @@ - thrphearg_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: THRSERARGr + - id: "THRSERARGr" - name: "Metabolism (Formation/Degradation) of ThrSerArg" - metabolites: !!omap - m01365c: 1 @@ -279928,15 +279928,15 @@ - thrserarg_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: THRTHRARGr + - id: "THRTHRARGr" - name: "Metabolism (Formation/Degradation) of ThrThrArg" - metabolites: !!omap - m01365c: 1 @@ -279945,15 +279945,15 @@ - thrthrarg_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: THRTYRMETr + - id: "THRTYRMETr" - name: "Metabolism (Formation/Degradation) of ThrtyrMet" - metabolites: !!omap - m02040c: -2 @@ -279963,15 +279963,15 @@ - thrtyrmet_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: TRPALAPROr + - id: "TRPALAPROr" - name: "Metabolism (Formation/Degradation) of TrpAlaPro" - metabolites: !!omap - m01307c: 1 @@ -279981,15 +279981,15 @@ - trpalapro_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: TRPARGALAr + - id: "TRPARGALAr" - name: "Metabolism (Formation/Degradation) of TrpArgAla" - metabolites: !!omap - m01307c: 1 @@ -279999,15 +279999,15 @@ - trpargala_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: TRPASPASPr + - id: "TRPASPASPr" - name: "Metabolism (Formation/Degradation) of TrpAspAsp" - metabolites: !!omap - m01370c: 2 @@ -280016,15 +280016,15 @@ - trpaspasp_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: TRPGLNGLNr + - id: "TRPGLNGLNr" - name: "Metabolism (Formation/Degradation) of TrpGlnGln" - metabolites: !!omap - m01975c: 2 @@ -280033,15 +280033,15 @@ - trpglngln_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: TRPGLUGLYr + - id: "TRPGLUGLYr" - name: "Metabolism (Formation/Degradation) of TrpGluGly" - metabolites: !!omap - m01974c: 1 @@ -280051,15 +280051,15 @@ - trpglugly_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: TRPGLULEUr + - id: "TRPGLULEUr" - name: "Metabolism (Formation/Degradation) of TrpGluLeu" - metabolites: !!omap - m01974c: 1 @@ -280069,15 +280069,15 @@ - trpgluleu_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: TRPGLUPROr + - id: "TRPGLUPROr" - name: "Metabolism (Formation/Degradation) of TrpGluPro" - metabolites: !!omap - m01974c: 1 @@ -280087,15 +280087,15 @@ - trpglupro_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: TRPGLUTYRr + - id: "TRPGLUTYRr" - name: "Metabolism (Formation/Degradation) of TrpGlutyr" - metabolites: !!omap - m01974c: 1 @@ -280105,15 +280105,15 @@ - trpglutyr_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: TRPGLYLEUr + - id: "TRPGLYLEUr" - name: "Metabolism (Formation/Degradation) of TrpGlyLeu" - metabolites: !!omap - glyleu_c: -1 @@ -280122,15 +280122,15 @@ - trpglyleu_c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: TRPGLYPHEr + - id: "TRPGLYPHEr" - name: "Metabolism (Formation/Degradation) of TrpGlyPhe" - metabolites: !!omap - glyphe_c: -1 @@ -280139,15 +280139,15 @@ - trpglyphe_c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: TRPGLYVALr + - id: "TRPGLYVALr" - name: "Metabolism (Formation/Degradation) of TrpGlyVal" - metabolites: !!omap - m01986c: 1 @@ -280157,15 +280157,15 @@ - trpglyval_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: TRPHISMETr + - id: "TRPHISMETr" - name: "Metabolism (Formation/Degradation) of TrpHisMet" - metabolites: !!omap - m02040c: -2 @@ -280175,15 +280175,15 @@ - trphismet_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: TRPILELYSr + - id: "TRPILELYSr" - name: "Metabolism (Formation/Degradation) of TrpIleLys" - metabolites: !!omap - m02040c: -2 @@ -280193,15 +280193,15 @@ - trpilelys_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: TRPILETRPr + - id: "TRPILETRPr" - name: "Metabolism (Formation/Degradation) of TrpIleTrp" - metabolites: !!omap - m02040c: -2 @@ -280210,15 +280210,15 @@ - trpiletrp_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: TRPLEUVALr + - id: "TRPLEUVALr" - name: "Metabolism (Formation/Degradation) of TrpLeuVal" - metabolites: !!omap - m02040c: -2 @@ -280228,15 +280228,15 @@ - trpleuval_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: TRPLYSr + - id: "TRPLYSr" - name: "Metabolism (Formation/Degradation) of TrpLys" - metabolites: !!omap - m02040c: -1 @@ -280245,15 +280245,15 @@ - trplys_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: TRPMETARGr + - id: "TRPMETARGr" - name: "Metabolism (Formation/Degradation) of TrpMetArg" - metabolites: !!omap - m01365c: 1 @@ -280263,15 +280263,15 @@ - trpmetarg_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: TRPMETVALr + - id: "TRPMETVALr" - name: "Metabolism (Formation/Degradation) of TrpMetVal" - metabolites: !!omap - m02040c: -2 @@ -280281,15 +280281,15 @@ - trpmetval_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: TRPPHEr + - id: "TRPPHEr" - name: "Metabolism (Formation/Degradation) of TrpPhe" - metabolites: !!omap - m02040c: -1 @@ -280298,15 +280298,15 @@ - trpphe_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: TRPPROGLYr + - id: "TRPPROGLYr" - name: "Metabolism (Formation/Degradation) of TrpProGly" - metabolites: !!omap - m02039c: 1 @@ -280316,15 +280316,15 @@ - trpprogly_c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: TRPPROLEUr + - id: "TRPPROLEUr" - name: "Metabolism (Formation/Degradation) of TrpProLeu" - metabolites: !!omap - m02040c: -2 @@ -280334,15 +280334,15 @@ - trpproleu_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: TRPPROVALr + - id: "TRPPROVALr" - name: "Metabolism (Formation/Degradation) of TrpProVal" - metabolites: !!omap - m02040c: -2 @@ -280352,15 +280352,15 @@ - trpproval_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: TRPSERTYRr + - id: "TRPSERTYRr" - name: "Metabolism (Formation/Degradation) of TrpSertyr" - metabolites: !!omap - m02040c: -2 @@ -280370,15 +280370,15 @@ - trpsertyr_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: TRPTHRGLUr + - id: "TRPTHRGLUr" - name: "Metabolism (Formation/Degradation) of TrpThrGlu" - metabolites: !!omap - m01974c: 1 @@ -280388,15 +280388,15 @@ - trpthrglu_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: TRPTHRILEr + - id: "TRPTHRILEr" - name: "Metabolism (Formation/Degradation) of TrpThrIle" - metabolites: !!omap - m02040c: -2 @@ -280406,15 +280406,15 @@ - trpthrile_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: TRPTHRTYRr + - id: "TRPTHRTYRr" - name: "Metabolism (Formation/Degradation) of TrpThrtyr" - metabolites: !!omap - m02040c: -2 @@ -280424,15 +280424,15 @@ - trpthrtyr_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: TRPTYRGLNr + - id: "TRPTYRGLNr" - name: "Metabolism (Formation/Degradation) of TrptyrGln" - metabolites: !!omap - m01975c: 1 @@ -280442,15 +280442,15 @@ - trptyrgln_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: TRPTYRTYRr + - id: "TRPTYRTYRr" - name: "Metabolism (Formation/Degradation) of Trptyrtyr" - metabolites: !!omap - m02040c: -2 @@ -280459,15 +280459,15 @@ - trptyrtyr_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: TRPVALASPr + - id: "TRPVALASPr" - name: "Metabolism (Formation/Degradation) of TrpValAsp" - metabolites: !!omap - m01370c: 1 @@ -280477,15 +280477,15 @@ - trpvalasp_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: TYRALAr + - id: "TYRALAr" - name: "Metabolism (Formation/Degradation) of TyrAla" - metabolites: !!omap - m01307c: 1 @@ -280494,15 +280494,15 @@ - tyrala_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: TYRALAPHEr + - id: "TYRALAPHEr" - name: "Metabolism (Formation/Degradation) of TyrAlaPhe" - metabolites: !!omap - m01307c: 1 @@ -280512,15 +280512,15 @@ - tyralaphe_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: TYRARGGLUr + - id: "TYRARGGLUr" - name: "Metabolism (Formation/Degradation) of TyrArgGlu" - metabolites: !!omap - m01365c: 1 @@ -280530,15 +280530,15 @@ - tyrargglu_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: TYRARGSERr + - id: "TYRARGSERr" - name: "Metabolism (Formation/Degradation) of TyrArgSer" - metabolites: !!omap - m01365c: 1 @@ -280548,15 +280548,15 @@ - tyrargser_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: TYRASPARGr + - id: "TYRASPARGr" - name: "Metabolism (Formation/Degradation) of TyrAspArg" - metabolites: !!omap - m01365c: 1 @@ -280566,15 +280566,15 @@ - tyrasparg_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: TYRCYSGLYr + - id: "TYRCYSGLYr" - name: "Metabolism (Formation/Degradation) of TyrCysGly" - metabolites: !!omap - m01628c: 1 @@ -280584,15 +280584,15 @@ - tyrcysgly_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: TYRCYSTHRr + - id: "TYRCYSTHRr" - name: "Metabolism (Formation/Degradation) of TyrCysThr" - metabolites: !!omap - m01628c: 1 @@ -280602,15 +280602,15 @@ - tyrcysthr_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: TYRGLUr + - id: "TYRGLUr" - name: "Metabolism (Formation/Degradation) of TyrGlu" - metabolites: !!omap - m01974c: 1 @@ -280619,15 +280619,15 @@ - tyrglu_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: TYRLEUARGr + - id: "TYRLEUARGr" - name: "Metabolism (Formation/Degradation) of TyrLeuArg" - metabolites: !!omap - m01365c: 1 @@ -280637,15 +280637,15 @@ - tyrleuarg_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: TYRPHETYRr + - id: "TYRPHETYRr" - name: "Metabolism (Formation/Degradation) of TyrPhetyr" - metabolites: !!omap - m02040c: -2 @@ -280654,15 +280654,15 @@ - tyrphetyr_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: TYRTHRr + - id: "TYRTHRr" - name: "Metabolism (Formation/Degradation) of TyrThr" - metabolites: !!omap - m02040c: -1 @@ -280671,15 +280671,15 @@ - tyrthr_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: TYRTRPPHEr + - id: "TYRTRPPHEr" - name: "Metabolism (Formation/Degradation) of TyrTrpPhe" - metabolites: !!omap - m02040c: -2 @@ -280689,15 +280689,15 @@ - tyrtrpphe_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: TYRTYRr + - id: "TYRTYRr" - name: "Metabolism (Formation/Degradation) of Tyrtyr" - metabolites: !!omap - m02040c: -1 @@ -280705,15 +280705,15 @@ - tyrtyr_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: TYRVALMETr + - id: "TYRVALMETr" - name: "Metabolism (Formation/Degradation) of TyrValMet" - metabolites: !!omap - m02040c: -2 @@ -280723,15 +280723,15 @@ - tyrvalmet_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: VALARGGLYr + - id: "VALARGGLYr" - name: "Metabolism (Formation/Degradation) of ValArgGly" - metabolites: !!omap - m01365c: 1 @@ -280741,15 +280741,15 @@ - valarggly_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: VALHISASNr + - id: "VALHISASNr" - name: "Metabolism (Formation/Degradation) of ValHisAsn" - metabolites: !!omap - m01369c: 1 @@ -280759,15 +280759,15 @@ - valhisasn_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: VALLEUPHEr + - id: "VALLEUPHEr" - name: "Metabolism (Formation/Degradation) of ValLeuPhe" - metabolites: !!omap - m02040c: -2 @@ -280777,15 +280777,15 @@ - valleuphe_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: VALLYSTYRr + - id: "VALLYSTYRr" - name: "Metabolism (Formation/Degradation) of ValLystyr" - metabolites: !!omap - m02040c: -2 @@ -280795,15 +280795,15 @@ - vallystyr_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: VALPHEARGr + - id: "VALPHEARGr" - name: "Metabolism (Formation/Degradation) of ValPheArg" - metabolites: !!omap - m01365c: 1 @@ -280813,15 +280813,15 @@ - valphearg_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: VALPROTRPr + - id: "VALPROTRPr" - name: "Metabolism (Formation/Degradation) of ValProTrp" - metabolites: !!omap - m02040c: -2 @@ -280831,15 +280831,15 @@ - valprotrp_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: VALSERARGr + - id: "VALSERARGr" - name: "Metabolism (Formation/Degradation) of ValSerArg" - metabolites: !!omap - m01365c: 1 @@ -280849,15 +280849,15 @@ - valserarg_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: VALTRPPHEr + - id: "VALTRPPHEr" - name: "Metabolism (Formation/Degradation) of ValTrpPhe" - metabolites: !!omap - m02040c: -2 @@ -280867,15 +280867,15 @@ - valtrpphe_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: VALTRPVALr + - id: "VALTRPVALr" - name: "Metabolism (Formation/Degradation) of ValTrpVal" - metabolites: !!omap - m02040c: -2 @@ -280884,15 +280884,15 @@ - valtrpval_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: VALVALr + - id: "VALVALr" - name: "Metabolism (Formation/Degradation) of ValVal" - metabolites: !!omap - m02040c: -1 @@ -280900,15 +280900,15 @@ - valval_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: TRPGLYASPr + - id: "TRPGLYASPr" - name: "Metabolism (Formation/Degradation) of TrpGlyAsp" - metabolites: !!omap - m01370c: 1 @@ -280918,15 +280918,15 @@ - trpglyasp_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Peptide metabolism + - "Peptide metabolism" - confidence_score: 0 - !!omap - - id: HOMOVALte + - id: "HOMOVALte" - name: "Transport of Homovanillate by Oat3" - metabolites: !!omap - m01306c: 1 @@ -280935,15 +280935,15 @@ - m02137s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149452 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11967025, PMID: 12679720, PMID: 21865262 + - gene_reaction_rule: "ENSG00000149452" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11967025, PMID: 12679720, PMID: 21865262" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TYMc + - id: "TYMc" - name: "Formation of Tyraminium" - metabolites: !!omap - m02039c: -1 @@ -280955,15 +280955,15 @@ - m03099c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 23683503 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 23683503" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: DOPAc + - id: "DOPAc" - name: "Formation of Dopamine" - metabolites: !!omap - m01736c: 1 @@ -280975,1035 +280975,1035 @@ - m03099c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 23683503 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 23683503" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: PCHOL2PALM_HSte + - id: "PCHOL2PALM_HSte" - name: "Transport of 2-Palmitoylglycerophosphocholine" - metabolites: !!omap - pchol2palm_hs_c: 1 - pchol2palm_hs_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: XOLEST183te + - id: "XOLEST183te" - name: "Transport of 1-Gamma-Linolenoyl-Cholesterol, Cholesterol-Ester (18:3, Delta 6, 9, 12)" - metabolites: !!omap - xolest183_hs_c: 1 - xolest183_hs_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: XOLEST182_HSte + - id: "XOLEST182_HSte" - name: "Transport of 1-Gamma-Linolenoyl-Cholesterol, Cholesterol-Ester (18:2, Delta 9, 12)" - metabolites: !!omap - xolest182_hs_c: 1 - xolest182_hs_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: XOLEST181_HSte + - id: "XOLEST181_HSte" - name: "Transport of 1-Vaccenoyl-Cholesterol, Cholesterol-Ester (18:1, Delta 11)" - metabolites: !!omap - xolest181_hs_c: 1 - xolest181_hs_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: XOLEST205_HSte + - id: "XOLEST205_HSte" - name: "Transport of 1-Timnodnoyl-Cholesterol, Cholesterol-Ester (20:5, Delta 5, 8, 11, 14, 17)" - metabolites: !!omap - xolest205_hs_c: 1 - xolest205_hs_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: XOLEST204_HSte + - id: "XOLEST204_HSte" - name: "Transport of Cholesteryl Arachidonate, Cholesterol-Ester (20:4, Delta 5, 8, 11, 14)" - metabolites: !!omap - xolest204_hs_c: 1 - xolest204_hs_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: XOLEST226_HSte + - id: "XOLEST226_HSte" - name: "Transport of Cholesteryl Docosahexanoate, Cholesterol-Ester (22:6, Delta 4, 7, 10, 13, 16, 19)" - metabolites: !!omap - xolest226_hs_c: 1 - xolest226_hs_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PE224_HSte + - id: "PE224_HSte" - name: "Transport of 1-Docosatetraenoyglycerophosphoethanolamine (22:4, Delta 7, 10, 13, 16)" - metabolites: !!omap - pe224_hs_c: 1 - pe224_hs_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLN261_HSte + - id: "PCHOLN261_HSte" - name: "Transport of Lysopc A C26:1 (Delta 5)" - metabolites: !!omap - pcholn261_hs_c: 1 - pcholn261_hs_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLN281_HSte + - id: "PCHOLN281_HSte" - name: "Transport of Lysopc A C28:1 (Delta 5)" - metabolites: !!omap - pcholn281_hs_c: 1 - pcholn281_hs_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLN28_HSte + - id: "PCHOLN28_HSte" - name: "Transport of Lysopc A C28:0" - metabolites: !!omap - pcholn28_hs_c: 1 - pcholn28_hs_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3BCRNtr + - id: "3BCRNtr" - name: "Transport of 3-Hydroxy Butyryl Carnitine" - metabolites: !!omap - 3bcrn_c: 1 - 3bcrn_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3DDCRNtr + - id: "3DDCRNtr" - name: "Transport of 3-Hydroxydodecanoylcarnitine" - metabolites: !!omap - 3ddcrn_c: 1 - 3ddcrn_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3DECCRNtr + - id: "3DECCRNtr" - name: "Transport of 3-Hydroxydecanoylcarnitine" - metabolites: !!omap - 3deccrn_c: 1 - 3deccrn_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3HDECECRNtr + - id: "3HDECECRNtr" - name: "Transport of 3-Hydroxyhexadecenoylcarnitine" - metabolites: !!omap - 3hdececrn_c: 1 - 3hdececrn_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3HEXDCRNtr + - id: "3HEXDCRNtr" - name: "Transport of 3-Hydroxyhexadecanoylcarnitine" - metabolites: !!omap - 3hexdcrn_c: 1 - 3hexdcrn_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3IVCRNtr + - id: "3IVCRNtr" - name: "Transport of 3-Hydroxy-Isovaleryl Carnitine" - metabolites: !!omap - 3ivcrn_c: 1 - 3ivcrn_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3OCTDEC2CRNtr + - id: "3OCTDEC2CRNtr" - name: "Transport of 3-Hydroxyoctadecadienoylcarnitine" - metabolites: !!omap - 3octdec2crn_c: 1 - 3octdec2crn_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3OCTDECCRNtr + - id: "3OCTDECCRNtr" - name: "Transport of 3-Hydroxyoctadecanoyl Carnitine" - metabolites: !!omap - 3octdeccrn_c: 1 - 3octdeccrn_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3OCTDECE1CRNtr + - id: "3OCTDECE1CRNtr" - name: "Transport of 3-Hydroxy-Octadecenoyl Carnitine" - metabolites: !!omap - 3octdece1crn_c: 1 - 3octdece1crn_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3TDCRNtr + - id: "3TDCRNtr" - name: "Transport of 3-Hydroxy-Tetradecanoyl Carnitine" - metabolites: !!omap - 3tdcrn_c: 1 - 3tdcrn_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3TETD7ECOACRNtr + - id: "3TETD7ECOACRNtr" - name: "Transport of 3-Hydroxy Tetradecenoyl-7-Carnitine" - metabolites: !!omap - 3tetd7ecoacrn_c: 1 - 3tetd7ecoacrn_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3THEXDDCOACRNtr + - id: "3THEXDDCOACRNtr" - name: "Transport of 3-Hydroxy Trans7, 10-Hexadecadienoyl Carnitine" - metabolites: !!omap - 3thexddcoacrn_c: 1 - 3thexddcoacrn_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3TTETDDCOACRNtr + - id: "3TTETDDCOACRNtr" - name: "Transport of 3-Hydroxy Trans5, 8Tetradecadienoyl Carnitine" - metabolites: !!omap - 3ttetddcoacrn_c: 1 - 3ttetddcoacrn_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ACRNtr + - id: "ACRNtr" - name: "Transport of Acetyl Carnitine" - metabolites: !!omap - m02634c: 1 - m02634s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C101CRNtr + - id: "C101CRNtr" - name: "Transport of Decenoyl Carnitine" - metabolites: !!omap - c101crn_c: 1 - c101crn_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C10CRNtr + - id: "C10CRNtr" - name: "Transport of Decanoyl Carnitine" - metabolites: !!omap - c10crn_c: 1 - c10crn_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C10DCtr + - id: "C10DCtr" - name: "Transport of Sebacoyl Carnitine" - metabolites: !!omap - c10dc_c: 1 - c10dc_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C12DCtr + - id: "C12DCtr" - name: "Transport of Dodecanedioyl Carnitine" - metabolites: !!omap - c12dc_c: 1 - c12dc_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C16DCtr + - id: "C16DCtr" - name: "Transport of Hexadecanedioic Acid Mono-L-Carnitine Ester" - metabolites: !!omap - c16dc_c: 1 - c16dc_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C3DCtr + - id: "C3DCtr" - name: "Transport of Malonyl Carnitine" - metabolites: !!omap - c3dc_c: 1 - c3dc_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C4CRNtr + - id: "C4CRNtr" - name: "Transport of Butyryl Carnitine" - metabolites: !!omap - m02635c: 1 - m02635s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C4DCtr + - id: "C4DCtr" - name: "Transport of Succinyl Carnitine" - metabolites: !!omap - c4dc_c: 1 - c4dc_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C51CRNtr + - id: "C51CRNtr" - name: "Transport of Tiglyl Carnitine" - metabolites: !!omap - c51crn_c: 1 - c51crn_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C5DCtr + - id: "C5DCtr" - name: "Transport of Glutaryl Carnitine" - metabolites: !!omap - c5dc_c: 1 - c5dc_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C6CRNtr + - id: "C6CRNtr" - name: "Transport of Hexanoyl Carnitine" - metabolites: !!omap - c6crn_c: 1 - c6crn_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C6DCtr + - id: "C6DCtr" - name: "Transport of Adipoyl Carnitine" - metabolites: !!omap - c6dc_c: 1 - c6dc_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C81CRNtr + - id: "C81CRNtr" - name: "Transport of Octenoyl Carnitine" - metabolites: !!omap - c81crn_c: 1 - c81crn_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C8CRNtr + - id: "C8CRNtr" - name: "Transport of Octanoyl Carnitine" - metabolites: !!omap - m02409c: 1 - m02409s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C8DCtr + - id: "C8DCtr" - name: "Transport of Suberyl Carnitine" - metabolites: !!omap - c8dc_c: 1 - c8dc_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: DDECCRNtr + - id: "DDECCRNtr" - name: "Transport of Lauroyl Carnitine" - metabolites: !!omap - ddeccrn_c: 1 - ddeccrn_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: DDECE1CRNtr + - id: "DDECE1CRNtr" - name: "Transport of Dodecenoyl Carnitine" - metabolites: !!omap - ddece1crn_c: 1 - ddece1crn_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: DECDICRNtr + - id: "DECDICRNtr" - name: "Transport of Decadienoyl Carnitine" - metabolites: !!omap - decdicrn_c: 1 - decdicrn_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ELAIDCRNtr + - id: "ELAIDCRNtr" - name: "Transport of Elaidic Carnitine" - metabolites: !!omap - m00126c: 1 - m00126s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HDCECRNtr + - id: "HDCECRNtr" - name: "Transport of Palmitoleoyl-Carnitine" - metabolites: !!omap - m02676c: 1 - m02676s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: IVCRNtr + - id: "IVCRNtr" - name: "Transport of Isovaleryl Carnitine" - metabolites: !!omap - ivcrn_c: 1 - ivcrn_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LNELDCCRNtr + - id: "LNELDCCRNtr" - name: "Transport of 6Z,9Z-Octadecadienoylcarnitine" - metabolites: !!omap - m00105c: 1 - m00105s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LNLCCRNtr + - id: "LNLCCRNtr" - name: "Transport of Linoleyl Carnitine" - metabolites: !!omap - m02388c: 1 - m02388s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ODECRNtr + - id: "ODECRNtr" - name: "Transport of L-Oleoylcarnitine" - metabolites: !!omap - m02639c: 1 - m02639s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCRNtr + - id: "PCRNtr" - name: "Transport of O-Propanoylcarnitine" - metabolites: !!omap - m02657c: 1 - m02657s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PMTCRNtr + - id: "PMTCRNtr" - name: "Transport of L-Palmitoylcarnitine" - metabolites: !!omap - m02411c: 1 - m02411s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: STCRNtr + - id: "STCRNtr" - name: "Transport of O-Octadecanoyl-R-Carnitine" - metabolites: !!omap - m02940c: 1 - m02940s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TETDEC2CRntr + - id: "TETDEC2CRntr" - name: "Transport of Tetradecadienoyl Carnitine" - metabolites: !!omap - tetdec2crn_c: 1 - tetdec2crn_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TETDECE1CRNtr + - id: "TETDECE1CRNtr" - name: "Transport of Tetradecenoyl Carnitine" - metabolites: !!omap - tetdece1crn_c: 1 - tetdece1crn_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TTDCRNtr + - id: "TTDCRNtr" - name: "Transport of Tetradecanoyl Carnitine" - metabolites: !!omap - m02974c: 1 - m02974s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_sphmyln_hs[e] + - id: "EX_sphmyln_hs[e]" - name: "Exchange of Sphingomyelin" - metabolites: !!omap - m02908s: -1 - m02908x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: XOLEST183tl + - id: "XOLEST183tl" - name: "Intracellular Transport of 1-Gamma-Linolenoyl-Cholesterol, Cholesterol-Ester (18:3, Delta 6, 9, 12)" - metabolites: !!omap - xolest183_hs_c: -1 - xolest183_hs_l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: XOLEST182tl + - id: "XOLEST182tl" - name: "Intracellular Transport of 1-Linoleoyl-Cholesterol, Cholesterol-Ester (18:2, Delta 9, 12)" - metabolites: !!omap - xolest182_hs_c: -1 - xolest182_hs_l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: XOLEST181tl + - id: "XOLEST181tl" - name: "Intracellular Transport of 1-Vaccenoyl-Cholesterol, Cholesterol-Ester (18:1, Delta 11)" - metabolites: !!omap - xolest181_hs_c: -1 - xolest181_hs_l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: XOLEST205tl + - id: "XOLEST205tl" - name: "Intracellular Transport of 1-Timnodnoyl-Cholesterol, Cholesterol-Ester (20:5, Delta 5, 8, 11, 14, 17)" - metabolites: !!omap - xolest205_hs_c: -1 - xolest205_hs_l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: XOLEST204tl + - id: "XOLEST204tl" - name: "Intracellular Transport of Cholesteryl Arachidonate, Cholesterol-Ester (20:4, Delta 5, 8, 11, 14)" - metabolites: !!omap - xolest204_hs_c: -1 - xolest204_hs_l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: XOLEST226tl + - id: "XOLEST226tl" - name: "Intracellular Transport of Cholesteryl Docosahexanoate, Cholesterol-Ester (22:6, Delta 4, 7, 10, 13, 16, 19)" - metabolites: !!omap - xolest226_hs_c: -1 - xolest226_hs_l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: BGLYtm + - id: "BGLYtm" - name: "Intracellular Transport for Benzoyl-Glycine" - metabolites: !!omap - m02123c: 1 - m02123m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PHEACGLYtm + - id: "PHEACGLYtm" - name: "Transport of Phenylacetylglycine, Mitochondrial" - metabolites: !!omap - pheacgly_c: 1 - pheacgly_m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HXAt1 + - id: "HXAt1" - name: "Transport of Hexanoate (N-C6:0), Mitochondrial" - metabolites: !!omap - hxa_c: 1 - hxa_m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HXAt2 + - id: "HXAt2" - name: "Transport of Hexanoate (N-C6:0), Peroxisome" - metabolites: !!omap - hxa_c: 1 - hxa_p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HXAt3 + - id: "HXAt3" - name: "Transport of Hexanoate (N-C6:0), Extracellular" - metabolites: !!omap - hxa_c: -1 - hxa_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_hxa[e] + - id: "EX_hxa[e]" - name: "Exchange of Hexanoate (N-C6:0)" - metabolites: !!omap - hxa_s: -1 - hxa_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: TTDCEAc + - id: "TTDCEAc" - name: "Hydrolysis of Fatty Acyl Coenzyme A (14:1)" - metabolites: !!omap - m00128c: 1 @@ -282013,15 +282013,15 @@ - ttdceacoa_c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000184227 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000184227" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: PACCOALm + - id: "PACCOALm" - name: "Phenylacetate Coenzyme A Ligase, Mitochondrial" - metabolites: !!omap - m01334m: 1 @@ -282032,60 +282032,60 @@ - m02759m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Phenylalanine metabolism + - "Phenylalanine metabolism" - confidence_score: 0 - !!omap - - id: PACALDtm + - id: "PACALDtm" - name: "Intracellular Transport of Pacald" - metabolites: !!omap - m02719c: -1 - m02719m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: BZtm + - id: "BZtm" - name: "Intracellular Transport of Benzoate" - metabolites: !!omap - m01380c: -1 - m01380m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GNCORE1te + - id: "GNCORE1te" - name: "Extracellular Transport of gncore 1" - metabolites: !!omap - m01954c: -1 - m01954s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LHCYSTIN + - id: "LHCYSTIN" - name: "Formation of Homocystine" - metabolites: !!omap - Lhcystin_c: -1 @@ -282094,60 +282094,60 @@ - m02133c: 2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 6808450, PMID: 24302617 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 6808450, PMID: 24302617" - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: LHCYSTINt + - id: "LHCYSTINt" - name: "Transport of Homocystine" - metabolites: !!omap - Lhcystin_c: -1 - Lhcystin_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_Lhcystin[e] + - id: "EX_Lhcystin[e]" - name: "Exchange of Homocystine" - metabolites: !!omap - Lhcystin_s: -1 - Lhcystin_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: PA_HStm + - id: "PA_HStm" - name: "Transport of Phosphatidate, Mitochondrial" - metabolites: !!omap - m02733c: -1 - m02733m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.2.1.18 - - references: PMID: 22041191. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.2.1.18" + - references: "PMID: 22041191." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r2514e + - id: "r2514e" - name: "Transport of Hexadecenoate (N-C16:1) via Carnitine Antiport" - metabolites: !!omap - m02348c: 1 @@ -282156,15 +282156,15 @@ - m02675s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.7.8.27 - - references: PMID: 22041191. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.7.8.27" + - references: "PMID: 22041191." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r2514m + - id: "r2514m" - name: "Transport of Hexadecenoate (N-C16:1) via Carnitine Antiport, Mitochondrial" - metabolites: !!omap - m02348c: 1 @@ -282173,15 +282173,15 @@ - m02675m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.7.1.91 - - references: PMID: 22041191. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.7.1.91" + - references: "PMID: 22041191." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: FAS180 + - id: "FAS180" - name: "Fas180" - metabolites: !!omap - m01596c: 1 @@ -282195,15 +282195,15 @@ - m02938c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.7.1.91 - - references: PMID: 22041191. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.7.1.91" + - references: "PMID: 22041191." - subsystem: - - Fatty acid biosynthesis + - "Fatty acid biosynthesis" - confidence_score: 0 - !!omap - - id: 3MOXTYRESSte + - id: "3MOXTYRESSte" - name: "3-Methoxytyramine Secretion via Secretory Vesicle (ATP Driven)" - metabolites: !!omap - m00821c: -3 @@ -282215,15 +282215,15 @@ - m02751c: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 21749716. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 21749716." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 5AOPt2 + - id: "5AOPt2" - name: "5-Aminolevulinate Transport in via Proton Symport" - metabolites: !!omap - m01074c: 1 @@ -282232,15 +282232,15 @@ - m02039s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 21749716. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 21749716." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ACNAMt2 + - id: "ACNAMt2" - name: "N-Acetylneuraminate Proton Symport" - metabolites: !!omap - m02039c: 1 @@ -282249,15 +282249,15 @@ - m02543s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.4.12 - - references: PMID: 21749716. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.4.12" + - references: "PMID: 21749716." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: AGPAT2 + - id: "AGPAT2" - name: "1-Acylglycerol-3-Phosphate O-Acyltransferase 1 (C16:0)" - metabolites: !!omap - alpa_hs_c: -1 @@ -282266,15 +282266,15 @@ - m02733c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 21749716. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 21749716." - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: AGPAT3 + - id: "AGPAT3" - name: "1-Acylglycerol-3-Phosphate O-Acyltransferase 1 (C18:1)" - metabolites: !!omap - alpa_hs_c: -1 @@ -282283,15 +282283,15 @@ - m02733c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 21749716. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 21749716." - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: AGPAT4 + - id: "AGPAT4" - name: "1-Acylglycerol-3-Phosphate O-Acyltransferase 1 (C18:2)" - metabolites: !!omap - alpa_hs_c: -1 @@ -282300,15 +282300,15 @@ - m02733c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 21749716. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 21749716." - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: BANDMT + - id: "BANDMT" - name: "Band Membrane Protein-Methyltransferase" - metabolites: !!omap - band_c: -1 @@ -282318,15 +282318,15 @@ - m02877c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 21749716. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 21749716." - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: C181CPT2rbc + - id: "C181CPT2rbc" - name: "Carnitine Octadecenoyl Transferase" - metabolites: !!omap - m01597c: -1 @@ -282335,30 +282335,30 @@ - m02647c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 21749716. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 21749716." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: CA2t + - id: "CA2t" - name: "Calcium (Ca+2) Transport via Diffusion (Extracellular to Cytosol)" - metabolites: !!omap - m01413c: 1 - m01413s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 21749716. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 21749716." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: DKMPPD2 + - id: "DKMPPD2" - name: "Acireductone Dixoygenase 1 (Homo Sapiens)" - metabolites: !!omap - dhmtp_c: -1 @@ -282368,15 +282368,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 21749716. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 21749716." - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: DKMPPD3 + - id: "DKMPPD3" - name: "Acireductone Synthase (Homo Sapiens)" - metabolites: !!omap - dhmtp_c: 1 @@ -282386,15 +282386,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 21749716. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 21749716." - subsystem: - - Cysteine and methionine metabolism + - "Cysteine and methionine metabolism" - confidence_score: 0 - !!omap - - id: GTHOXti2 + - id: "GTHOXti2" - name: "Oxidized Glutathione Irreversible Active Transport (Rbc)" - metabolites: !!omap - m01285c: 1 @@ -282406,30 +282406,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 21749716. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 21749716." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HCYSte + - id: "HCYSte" - name: "Homocysteine Transport, Extracellular" - metabolites: !!omap - m02133c: 1 - m02133s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 21749716. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 21749716." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: NORMETEVESSte + - id: "NORMETEVESSte" - name: "L-Normetanephrine Seceretion via Secretory Vesicle (ATP Driven)" - metabolites: !!omap - m01285c: 2 @@ -282441,15 +282441,15 @@ - m02751c: 2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 21749716. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 21749716." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: OROte + - id: "OROte" - name: "Orotate Transporter" - metabolites: !!omap - m02039c: 1 @@ -282458,15 +282458,15 @@ - m02659s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 21749716. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 21749716." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PPPGOc + - id: "PPPGOc" - name: "Protoporphyrinogen Oxidase (Aerobic)" - metabolites: !!omap - m02040c: 3 @@ -282475,15 +282475,15 @@ - m02804c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 21749716. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 21749716." - subsystem: - - Heme synthesis + - "Heme synthesis" - confidence_score: 0 - !!omap - - id: SPRMt2r + - id: "SPRMt2r" - name: "Spermine Transport via Proton Antiport" - metabolites: !!omap - m02039c: -1 @@ -282492,60 +282492,60 @@ - m02926s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 21749716. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 21749716." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: The + - id: "The" - name: "Proton Diffusion" - metabolites: !!omap - m02039c: 1 - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 21749716. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 21749716." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: THMMPtrbc + - id: "THMMPtrbc" - name: "Thiamine Monophosphate Transport (Passive - Red Blood Cell)" - metabolites: !!omap - m02983c: 1 - m02983s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 21749716. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 21749716." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: THMtrbc + - id: "THMtrbc" - name: "Thiamine Transprot (Passive - Red Blood Cell)" - metabolites: !!omap - m02982c: 1 - m02982s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 21749716. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 21749716." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: UGT1A10c + - id: "UGT1A10c" - name: "UDP-Glucuronosyltransferase 1-10 Precursor, Cytosol" - metabolites: !!omap - m01396c: -1 @@ -282554,375 +282554,375 @@ - m03109c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 21749716. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 21749716." - subsystem: - - Heme degradation + - "Heme degradation" - confidence_score: 0 - !!omap - - id: ACGALtr + - id: "ACGALtr" - name: "N-Acetylgalactosamine Export" - metabolites: !!omap - m02525c: -1 - m02525s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 25901891. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 25901891." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ACNAMtr + - id: "ACNAMtr" - name: "N-Acetylneuraminate Export" - metabolites: !!omap - m02543c: -1 - m02543s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 25901891. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 25901891." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CORE4t + - id: "CORE4t" - name: "Core4 (Mucin O-Glycan) Export" - metabolites: !!omap - m01609g: -1 - m01609s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 25901891. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 25901891." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CORE5t + - id: "CORE5t" - name: "Core5 (Mucin O-Glycan) Export" - metabolites: !!omap - m01610g: -1 - m01610s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 25901891. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 25901891." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CORE7t + - id: "CORE7t" - name: "Core7 (Mucin O-Glycan) Export" - metabolites: !!omap - m01612g: -1 - m01612s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 25901891. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 25901891." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CORE8t + - id: "CORE8t" - name: "Core8 (Mucin O-Glycan) Export" - metabolites: !!omap - m01613g: -1 - m01613s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 25901891. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 25901891." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: DST_ANTIGENt + - id: "DST_ANTIGENt" - name: "Dst_Antigen (Mucin O-Glycan) Export" - metabolites: !!omap - m01712g: -1 - m01712s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 25901891. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 25901891." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GALAMtr + - id: "GALAMtr" - name: "Galactosamine Import" - metabolites: !!omap - galam_c: 1 - galam_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 25901891. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 25901891." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: MK10t + - id: "MK10t" - name: "Menaquinone Secretion/ Uptake (Menaquinone 10)" - metabolites: !!omap - mqn10_c: -1 - mqn10_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 25901891. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 25901891." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: MK11t + - id: "MK11t" - name: "Menaquinone Secretion/ Uptake (Menaquinone 11)" - metabolites: !!omap - mqn11_c: -1 - mqn11_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 25901891. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 25901891." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: MK7t + - id: "MK7t" - name: "Menaquinone Secretion/ Uptake (Menaquinone 7)" - metabolites: !!omap - mqn7_c: -1 - mqn7_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 25901891. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 25901891." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: MK9t + - id: "MK9t" - name: "Menaquinone Secretion/ Uptake (Menaquinone 9)" - metabolites: !!omap - mqn9_c: -1 - mqn9_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 25901891. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 25901891." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: S2L2N2M2Mt + - id: "S2L2N2M2Mt" - name: "De-Fuc Form of Pa6 (W/O Peptide Linkage) Transport, Lysosome to Extracellular" - metabolites: !!omap - m01651c: 1 - m01651s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 25901891. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 25901891." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: STN_ANTIGENt + - id: "STN_ANTIGENt" - name: "Stn_Antigen (Mucin O-Glycan) Export" - metabolites: !!omap - m02907g: -1 - m02907s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 25901891. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 25901891." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_core4[e] + - id: "EX_core4[e]" - name: "Exchange of Core 4 (Mucin O-Glycan) " - metabolites: !!omap - m01609s: -1 - m01609x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_f1a[e] + - id: "EX_f1a[e]" - name: "Exchange of F1Alpha (Mucin O-Glycan) " - metabolites: !!omap - m01801s: -1 - m01801x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_galam[e] + - id: "EX_galam[e]" - name: "Exchange of Galactosamine " - metabolites: !!omap - galam_s: -1 - galam_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_gncore1[e] + - id: "EX_gncore1[e]" - name: "Exchange of gncore 1 (Mucin O-Glycan) " - metabolites: !!omap - m01954s: -1 - m01954x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_mqn10[e] + - id: "EX_mqn10[e]" - name: "Exchange of Menaquinone 10 " - metabolites: !!omap - mqn10_s: -1 - mqn10_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_mqn11[e] + - id: "EX_mqn11[e]" - name: "Exchange of Menaquinone 11 " - metabolites: !!omap - mqn11_s: -1 - mqn11_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_mqn7[e] + - id: "EX_mqn7[e]" - name: "Exchange of Menaquinone 7 " - metabolites: !!omap - mqn7_s: -1 - mqn7_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_mqn9[e] + - id: "EX_mqn9[e]" - name: "Exchange of Menaquinone 9 " - metabolites: !!omap - mqn9_s: -1 - mqn9_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_s2l2n2m2m[e] + - id: "EX_s2l2n2m2m[e]" - name: "Exchange of De-Fuc Form of Pa6 (W/O Peptide Linkage) " - metabolites: !!omap - m01651s: -1 - m01651x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_lpam[e] + - id: "EX_lpam[e]" - name: "Exchange of Lipoamide " - metabolites: !!omap - m02393s: -1 - m02393x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: LPAMt + - id: "LPAMt" - name: "Lipoamide Transport" - metabolites: !!omap - m02039c: 1 @@ -282931,165 +282931,165 @@ - m02393s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.1.23 - - references: PMID: 17536819 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.23" + - references: "PMID: 17536819" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_acgal[e] + - id: "EX_acgal[e]" - name: "Exchange of N-Acetylgalactosamine " - metabolites: !!omap - m02525s: -1 - m02525x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_acnam[e] + - id: "EX_acnam[e]" - name: "Exchange of N-Acetylneuraminate " - metabolites: !!omap - m02543s: -1 - m02543x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pcreat[e] + - id: "EX_pcreat[e]" - name: "Exchange of Phosphocreatine" - metabolites: !!omap - m01620s: -1 - m01620x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC00342[e] + - id: "EX_HC00342[e]" - name: "Exchange of Cis-Aconitate" - metabolites: !!omap - m01580s: -1 - m01580x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_C08261[e] + - id: "EX_C08261[e]" - name: "Exchange of Azelaic Acid" - metabolites: !!omap - m01372s: -1 - m01372x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pa_hs[e] + - id: "EX_pa_hs[e]" - name: "Exchange of Phosphatidate" - metabolites: !!omap - m02733s: -1 - m02733x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE2934[e] + - id: "EX_CE2934[e]" - name: "Exchange of O-Methylhippurate" - metabolites: !!omap - m02654s: -1 - m02654x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: F1Ate + - id: "F1Ate" - name: "Transport of F1Alpha, Lysosomal" - metabolites: !!omap - m01801l: 1 - m01801s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 6.2.1.2 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.2" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: F1Ate2 + - id: "F1Ate2" - name: "Transport of F1Alpha, Golgi Apparatus" - metabolites: !!omap - m01801g: 1 - m01801s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GNCORE1t + - id: "GNCORE1t" - name: "Transport of gncore 1, Golgi Apparatus" - metabolites: !!omap - m01954c: 1 - m01954g: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 34HPLtm + - id: "34HPLtm" - name: "Transport of 3-(4-Hydroxyphenyl)Lactate, Mitochondrial" - metabolites: !!omap - m01004c: -1 @@ -283098,60 +283098,60 @@ - m02039m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3HMPtm + - id: "3HMPtm" - name: "Transport of 3-Hydroxy-Isobutyrate, Mitochondrial" - metabolites: !!omap - m00784c: 1 - m00784m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3HPPtm + - id: "3HPPtm" - name: "Transport of 3-Hydroxypropionate, Mitochondrial" - metabolites: !!omap - m02142c: -1 - m02142m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ACGLUtm + - id: "ACGLUtm" - name: "Transport of N-Acetyl-L-Glutamate, Mitochondrial" - metabolites: !!omap - m02536c: -1 - m02536m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 6.2.1.2 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.2" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LPAMtm + - id: "LPAMtm" - name: "Transport of Lipoamide, Mitochondrial" - metabolites: !!omap - m02039i: -1 @@ -283160,105 +283160,105 @@ - m02393m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: r2535m + - id: "r2535m" - name: "Transport of L-Homoserine, Mitochondrial" - metabolites: !!omap - m02136c: 1 - m02136m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PGP_hs_tm + - id: "PGP_hs_tm" - name: "Transport of Phosphatidyl Glycerol Phosphate, Mitochondrial" - metabolites: !!omap - m02717c: 1 - m02717m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 6.2.1.2 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.2" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE2934t + - id: "CE2934t" - name: "Transport of O-Methylhippurate, Extracellular" - metabolites: !!omap - m02654c: -1 - m02654s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:4436409 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:4436409" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C02592tx + - id: "C02592tx" - name: "Transprot of Taurolithocholate, Peroxisomal" - metabolites: !!omap - m02965c: -1 - m02965p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PROSTGE2t2r + - id: "PROSTGE2t2r" - name: "Transport of Prostaglandin E2, Endoplasmatic Reticulum" - metabolites: !!omap - m02786c: 1 - m02786r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 6.2.1.2 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.2" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PROSTGE2t2m + - id: "PROSTGE2t2m" - name: "Transport of Prostaglandin E2, Mitochondrial" - metabolites: !!omap - m02786c: 1 - m02786m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ESTRr + - id: "ESTRr" - name: "ESTRr" - metabolites: !!omap - m01787r: -1 @@ -283270,15 +283270,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: ESTR2r + - id: "ESTR2r" - name: "ESTR2r" - metabolites: !!omap - m00400r: -1 @@ -283288,75 +283288,75 @@ - m02553r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 6.2.1.2 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.2" + - references: "" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: LTHSTRLtr + - id: "LTHSTRLtr" - name: "Transport of 5Alpha-Cholest-7-En-3Beta-Ol, Endoplasmatic Reticulum" - metabolites: !!omap - m02343c: -1 - m02343r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PGLYCtm + - id: "PGLYCtm" - name: "Transport of Phosphatidylglycerol, Endoplasmatic Reticulum" - metabolites: !!omap - m02715c: 1 - m02715m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: DXTRNt + - id: "DXTRNt" - name: "Transport of Phosphorylase-Limit Dextrin" - metabolites: !!omap - m01991c: -1 - m01991s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_dxtrn[e] + - id: "EX_dxtrn[e]" - name: "Exchange of Phosphorylase-Limit Dextrin" - metabolites: !!omap - m01991s: -1 - m01991x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: DHCHOLESTANATEATP + - id: "DHCHOLESTANATEATP" - name: "Transport of 3Alpha, 7Alpha-Dihydroxy-5Beta-Cholestanate, Active Transport" - metabolites: !!omap - m00758c: -1 @@ -283368,15 +283368,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073734 or ENSG00000108846 or ENSG00000121270 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 19498215 + - gene_reaction_rule: "ENSG00000073734 or ENSG00000108846 or ENSG00000121270" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 19498215" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: DHCHOLESTANATEt + - id: "DHCHOLESTANATEt" - name: "Transport of 3Alpha, 7Alpha-Dihydroxy-5Beta-Cholestanate, Sodium Symport" - metabolites: !!omap - m00758c: -1 @@ -283385,30 +283385,30 @@ - m02519s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100652 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 19498215 + - gene_reaction_rule: "ENSG00000100652" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 19498215" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_dhcholestanate[e] + - id: "EX_dhcholestanate[e]" - name: "Exchange of 3Alpha, 7Alpha-Dihydroxy-5Beta-Cholestanate" - metabolites: !!omap - m00758s: -1 - m00758x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: THCHOLSTOICATP + - id: "THCHOLSTOICATP" - name: "Transport of 3Alpha, 7Alpha, 12Alpha-Trihydroxy-5Beta-Cholestanoate, Active Transport" - metabolites: !!omap - m00752c: -1 @@ -283420,15 +283420,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073734 or ENSG00000108846 or ENSG00000121270 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 19498215 + - gene_reaction_rule: "ENSG00000073734 or ENSG00000108846 or ENSG00000121270" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 19498215" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: THCHOLSTOICt + - id: "THCHOLSTOICt" - name: "Transport of 3Alpha, 7Alpha, 12Alpha-Trihydroxy-5Beta-Cholestanoate, Sodium Symport" - metabolites: !!omap - m00752c: -1 @@ -283437,30 +283437,30 @@ - m02519s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100652 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 19498215 + - gene_reaction_rule: "ENSG00000100652" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 19498215" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_thcholstoic[e] + - id: "EX_thcholstoic[e]" - name: "Exchange of 3Alpha, 7Alpha, 12Alpha-Trihydroxy-5Beta-Cholestanoate" - metabolites: !!omap - m00752s: -1 - m00752x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: XOL7AH3ATP + - id: "XOL7AH3ATP" - name: "Transport of 5Beta-Cholestane-3Alpha, 7Alpha, 26-Triol, Active Transport" - metabolites: !!omap - m01093c: -1 @@ -283472,15 +283472,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073734 or ENSG00000108846 or ENSG00000121270 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 19498215 + - gene_reaction_rule: "ENSG00000073734 or ENSG00000108846 or ENSG00000121270" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 19498215" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: XOL7AH3t + - id: "XOL7AH3t" - name: "Transport of 5Beta-Cholestane-3Alpha, 7Alpha, 26-Triol, Sodium Symport" - metabolites: !!omap - m01093c: -1 @@ -283489,30 +283489,30 @@ - m02519s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100652 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 19498215 + - gene_reaction_rule: "ENSG00000100652" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 19498215" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_xol7ah3[e] + - id: "EX_xol7ah3[e]" - name: "Exchange of 5Beta-Cholestane-3Alpha, 7Alpha, 26-Triol" - metabolites: !!omap - m01093s: -1 - m01093x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: XOL7AONEATP + - id: "XOL7AONEATP" - name: "Transport of 7Alpha-Hydroxycholest-4-En-3-One, Active Transport" - metabolites: !!omap - m01182c: -1 @@ -283524,15 +283524,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073734 or ENSG00000108846 or ENSG00000121270 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 19498215 + - gene_reaction_rule: "ENSG00000073734 or ENSG00000108846 or ENSG00000121270" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 19498215" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: XOL7AONEt + - id: "XOL7AONEt" - name: "Transport of 7Alpha-Hydroxycholest-4-En-3-One, Sodium Symport" - metabolites: !!omap - m01182c: -1 @@ -283541,30 +283541,30 @@ - m02519s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100652 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 19498215 + - gene_reaction_rule: "ENSG00000100652" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 19498215" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_xol7aone[e] + - id: "EX_xol7aone[e]" - name: "Exchange of 7Alpha-Hydroxycholest-4-En-3-One" - metabolites: !!omap - m01182s: -1 - m01182x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: XOLDIOLONEATP + - id: "XOLDIOLONEATP" - name: "Transport of 7Alpha, 12Alpha-Dihydroxycholest-4-En-3-One, Active Transport" - metabolites: !!omap - m01178c: -1 @@ -283576,30 +283576,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073734 or ENSG00000108846 or ENSG00000121270 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 19498215 + - gene_reaction_rule: "ENSG00000073734 or ENSG00000108846 or ENSG00000121270" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 19498215" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_xoldiolone[e] + - id: "EX_xoldiolone[e]" - name: "Exchange of 7Alpha, 12Alpha-Dihydroxycholest-4-En-3-One" - metabolites: !!omap - m01178s: -1 - m01178x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: 7KILTCHOLATP + - id: "7KILTCHOLATP" - name: "Transport of 7-Ketolithocholate, Active Transport" - metabolites: !!omap - 7klitchol_c: -1 @@ -283611,15 +283611,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073734 or ENSG00000108846 or ENSG00000121270 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 19498215 + - gene_reaction_rule: "ENSG00000073734 or ENSG00000108846 or ENSG00000121270" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 19498215" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 7KILTCHOLt + - id: "7KILTCHOLt" - name: "Transport of 7-Ketolithocholate, Sodium Symport" - metabolites: !!omap - 7klitchol_c: -1 @@ -283628,75 +283628,75 @@ - m02519s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100652 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 19498215 + - gene_reaction_rule: "ENSG00000100652" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 19498215" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_7klitchol[e] + - id: "EX_7klitchol[e]" - name: "Exchange of 7-Ketolithocholate" - metabolites: !!omap - 7klitchol_s: -1 - 7klitchol_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_2obut[e] + - id: "EX_2obut[e]" - name: "Exchange of 2-Oxobutanoate" - metabolites: !!omap - m00671s: -1 - m00671x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_glutar[e] + - id: "EX_glutar[e]" - name: "Exchange of Glutarate" - metabolites: !!omap - glutar_s: -1 - glutar_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_glcn[e] + - id: "EX_glcn[e]" - name: "Exchange of D-Gluconate" - metabolites: !!omap - m01683s: -1 - m01683x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: ACCOAL + - id: "ACCOAL" - name: "Acetate Coenzyme A Ligase (ADP-Forming)" - metabolites: !!omap - m01285c: 1 @@ -283707,15 +283707,15 @@ - m02774c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000131069 - - rxnFrom: Recon3D - - eccodes: 6.2.1.13 - - references: PMID:10843999 + - gene_reaction_rule: "ENSG00000131069" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.13" + - references: "PMID:10843999" - subsystem: - - Propanoate metabolism + - "Propanoate metabolism" - confidence_score: 0 - !!omap - - id: ADNCNT3tc + - id: "ADNCNT3tc" - name: "Adenosine Transport Cnt3" - metabolites: !!omap - m01280c: 1 @@ -283724,15 +283724,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000164638 or ENSG00000197506 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000164638 or ENSG00000197506" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: BUTt2r + - id: "BUTt2r" - name: "Butyrate Transport via Proton Symport, Reversible" - metabolites: !!omap - m01410c: 1 @@ -283741,15 +283741,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000155380 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10510291,PMID:11827462,PMID:12739169,PMID:7835905,PMID:8476015,PMID:9508842,PMID:9649795,PMID:9824713 + - gene_reaction_rule: "ENSG00000155380" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10510291,PMID:11827462,PMID:12739169,PMID:7835905,PMID:8476015,PMID:9508842,PMID:9649795,PMID:9824713" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CYTDt2r + - id: "CYTDt2r" - name: "Cytidine Transport in via Proton Symport, Reversible" - metabolites: !!omap - m01630c: 1 @@ -283758,15 +283758,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197506 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197506" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: DUTPDP + - id: "DUTPDP" - name: "DUTP Diphosphatase" - metabolites: !!omap - m01755c: 1 @@ -283776,15 +283776,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Pyrimidine metabolism + - "Pyrimidine metabolism" - confidence_score: 0 - !!omap - - id: EHGLAT + - id: "EHGLAT" - name: "L-Erythro-4-Hydroxyglutamate:2-Oxoglutarate Aminotransferase" - metabolites: !!omap - m00989c: 1 @@ -283793,105 +283793,105 @@ - m02358c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000120053 - - rxnFrom: Recon3D - - eccodes: 2.6.1.1 - - references: PMID:13948827 + - gene_reaction_rule: "ENSG00000120053" + - rxnFrom: "Recon3D" + - eccodes: "2.6.1.1" + - references: "PMID:13948827" - subsystem: - - Arginine and proline metabolism + - "Arginine and proline metabolism" - confidence_score: 0 - !!omap - - id: EX_fum[e] + - id: "EX_fum[e]" - name: "Exchange of Fumarate" - metabolites: !!omap - m01862s: -1 - m01862x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_glyleu[e] + - id: "EX_glyleu[e]" - name: "Exchange of Glycylleucine " - metabolites: !!omap - glyleu_s: -1 - glyleu_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_glyphe[e] + - id: "EX_glyphe[e]" - name: "Exchange of Glycylphenylalaine" - metabolites: !!omap - glyphe_s: -1 - glyphe_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_glypro[e] + - id: "EX_glypro[e]" - name: "Exchange of Glypro" - metabolites: !!omap - glypro_s: -1 - glypro_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_mal_L[e] + - id: "EX_mal_L[e]" - name: "Exchange of L-Malate" - metabolites: !!omap - m02439s: -1 - m02439x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_ppi[e] + - id: "EX_ppi[e]" - name: "Exchange of Ppi" - metabolites: !!omap - m02759s: -1 - m02759x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: FCLTc + - id: "FCLTc" - name: "Ferrochelatase, Cytosol" - metabolites: !!omap - m01821c: -1 @@ -283900,15 +283900,15 @@ - m02803c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 21749716. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 21749716." - subsystem: - - Heme synthesis + - "Heme synthesis" - confidence_score: 0 - !!omap - - id: FERO + - id: "FERO" - name: "Ferroxidase" - metabolites: !!omap - m01821c: -4 @@ -283918,15 +283918,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000089472 - - rxnFrom: Recon3D - - eccodes: - - references: Sareen S. Gropper, Jack L. Smith, James L. Groff (2009) Advanced nutrition and human metabolism, Wadsworth cengage learning, 5th edition, page 472-476. + - gene_reaction_rule: "ENSG00000089472" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Sareen S. Gropper, Jack L. Smith, James L. Groff (2009) Advanced nutrition and human metabolism, Wadsworth cengage learning, 5th edition, page 472-476." - subsystem: - - Vitamin B2 metabolism + - "Vitamin B2 metabolism" - confidence_score: 0 - !!omap - - id: FRTT + - id: "FRTT" - name: "Farnesyltranstransferase" - metabolites: !!omap - ggdp_c: 1 @@ -283935,15 +283935,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000152904 - - rxnFrom: Recon3D - - eccodes: 2.5.1.29 - - references: PMID:17477828,PMID:17477829 + - gene_reaction_rule: "ENSG00000152904" + - rxnFrom: "Recon3D" + - eccodes: "2.5.1.29" + - references: "PMID:17477828,PMID:17477829" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: FT + - id: "FT" - name: "Farnesyltranstransferase (Trans, Trans, Cis-Geranylgeranyl Diphosphate-Generating)" - metabolites: !!omap - m01806c: -1 @@ -283952,15 +283952,15 @@ - m03026c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 6.3.2.17 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "6.3.2.17" + - references: "" - subsystem: - - N-glycan metabolism + - "N-glycan metabolism" - confidence_score: 0 - !!omap - - id: GALt2_2 + - id: "GALt2_2" - name: "D-Galactose Transport via Proton Symport" - metabolites: !!omap - m01910c: 1 @@ -283969,15 +283969,15 @@ - m02039s: -2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100170 - - rxnFrom: Recon3D - - eccodes: 2.4.1.92 - - references: PMID:11024018,PMID:11034615,PMID:12748858,PMID:2490366,PMID:8063771 + - gene_reaction_rule: "ENSG00000100170" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.92" + - references: "PMID:11024018,PMID:11034615,PMID:12748858,PMID:2490366,PMID:8063771" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLYLEUHYDROc + - id: "GLYLEUHYDROc" - name: "Hydrolysis of Glycylleucine" - metabolites: !!omap - glyleu_c: -1 @@ -283986,15 +283986,15 @@ - m02360c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000015413 or ENSG00000133313 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 4074331, PMID: 964683 + - gene_reaction_rule: "ENSG00000015413 or ENSG00000133313" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 4074331, PMID: 964683" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLYLEUPEPT1tc + - id: "GLYLEUPEPT1tc" - name: "Transport of Glycylleucine by the Apical Pept1 Amino Acid Transporters" - metabolites: !!omap - glyleu_c: 1 @@ -284003,15 +284003,15 @@ - m02039s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000088386 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 7858848, PMID: 14965252, PMID: 14977407, PMID: 10330047 + - gene_reaction_rule: "ENSG00000088386" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 7858848, PMID: 14965252, PMID: 14977407, PMID: 10330047" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLYPHEHYc + - id: "GLYPHEHYc" - name: "Hydrolysis of Glycylphenylalanine" - metabolites: !!omap - glyphe_c: -1 @@ -284020,15 +284020,15 @@ - m02724c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: most probable reaction. added during gap filling. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "most probable reaction. added during gap filling." - subsystem: - - Pentose phosphate pathway + - "Pentose phosphate pathway" - confidence_score: 0 - !!omap - - id: GLYPROPRO1c + - id: "GLYPROPRO1c" - name: "Hydrolysis of Prolylglycine" - metabolites: !!omap - glypro_c: -1 @@ -284037,15 +284037,15 @@ - m02770c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000124299 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 14580160, PMID: 2317925, PMID: 18340504, Rubino A, Pierro M, Torretta GL, Vetrella M, Martino DD, Auricch S. (1969). Pediatric Research 3: 313-9 + - gene_reaction_rule: "ENSG00000124299" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 14580160, PMID: 2317925, PMID: 18340504, Rubino A, Pierro M, Torretta GL, Vetrella M, Martino DD, Auricch S. (1969). Pediatric Research 3: 313-9" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: INSt2 + - id: "INSt2" - name: "Inosine Transport in via Proton Symport, Reversible" - metabolites: !!omap - m02039c: 1 @@ -284054,15 +284054,15 @@ - m02170s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197506 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197506" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PPNCL3 + - id: "PPNCL3" - name: "Phosphopantothenate-Cysteine Ligase" - metabolites: !!omap - m00163c: 1 @@ -284074,15 +284074,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000127125 - - rxnFrom: Recon3D - - eccodes: 3.1.3.4 - - references: + - gene_reaction_rule: "ENSG00000127125" + - rxnFrom: "Recon3D" + - eccodes: "3.1.3.4" + - references: "" - subsystem: - - CoA synthesis + - "CoA synthesis" - confidence_score: 0 - !!omap - - id: THMDt2r + - id: "THMDt2r" - name: "Thymidine Transport in via Proton Symport Reversible" - metabolites: !!omap - m02039c: 1 @@ -284091,15 +284091,15 @@ - m02996s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197506 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197506" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: URIt2r + - id: "URIt2r" - name: "Uridine Transport in via Proton Symport Reversible" - metabolites: !!omap - m02039c: 1 @@ -284108,45 +284108,45 @@ - m03123s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197506 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000197506" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_ind3ac[e] + - id: "EX_ind3ac[e]" - name: "Exchange of Indole-3-Acetate" - metabolites: !!omap - m02169s: -1 - m02169x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_nh4[e] + - id: "EX_nh4[e]" - name: "Exchange of Ammonia " - metabolites: !!omap - m02579s: -1 - m02579x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: CITL + - id: "CITL" - name: "Citrate Lyase" - metabolites: !!omap - m01252c: 1 @@ -284154,120 +284154,120 @@ - m02633c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000125246 - - rxnFrom: Recon3D - - eccodes: 4.1.3.6 - - references: PMID:11741334 + - gene_reaction_rule: "ENSG00000125246" + - rxnFrom: "Recon3D" + - eccodes: "4.1.3.6" + - references: "PMID:11741334" - subsystem: - - Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism + - "Tricarboxylic acid cycle and glyoxylate/dicarboxylate metabolism" - confidence_score: 0 - !!omap - - id: EX_galt[e] + - id: "EX_galt[e]" - name: "Exchange of Galactitol" - metabolites: !!omap - m01909s: -1 - m01909x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_glcr[e] + - id: "EX_glcr[e]" - name: "Exchange of Glcr" - metabolites: !!omap - m01681s: -1 - m01681x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_glcur[e] + - id: "EX_glcur[e]" - name: "Exchange of D-Glucuronate " - metabolites: !!omap - m01973s: -1 - m01973x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_malthx[e] + - id: "EX_malthx[e]" - name: "Exchange of Maltohexaose " - metabolites: !!omap - malthx_s: -1 - malthx_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_ptrc[e] + - id: "EX_ptrc[e]" - name: "Exchange of 1, 4-Butanediammonium" - metabolites: !!omap - m02812s: -1 - m02812x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_spmd[e] + - id: "EX_spmd[e]" - name: "Exchange of Spermidine" - metabolites: !!omap - m02923s: -1 - m02923x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_xan[e] + - id: "EX_xan[e]" - name: "Exchange of Xanthine " - metabolites: !!omap - m03148s: -1 - m03148x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: MICITDr + - id: "MICITDr" - name: "2-Methylisocitrate Dehydratase" - metabolites: !!omap - 2mcacn_c: -1 @@ -284275,15 +284275,15 @@ - micit_c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 4.2.1.99 - - references: PMID:7675781,PMID:856801 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "4.2.1.99" + - references: "PMID:7675781,PMID:856801" - subsystem: - - Propanoate metabolism + - "Propanoate metabolism" - confidence_score: 0 - !!omap - - id: OAADC + - id: "OAADC" - name: "Oxaloacetate Decarboxylase" - metabolites: !!omap - m01596c: 1 @@ -284292,45 +284292,45 @@ - m02819c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: EX_4hbz[e] + - id: "EX_4hbz[e]" - name: "Exchange of 4-Hydroxybenzoate" - metabolites: !!omap - m00995s: -1 - m00995x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_34dhpha[e] + - id: "EX_34dhpha[e]" - name: "Exchange of 34Dhpha" - metabolites: !!omap - m00729s: -1 - m00729x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: THMt3 + - id: "THMt3" - name: "Thiamine Transport in via Proton Antiport" - metabolites: !!omap - m02039c: -1 @@ -284339,135 +284339,135 @@ - m02982s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117479 or ENSG00000135917 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000117479 or ENSG00000135917" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_mqn8[e] + - id: "EX_mqn8[e]" - name: "Exchange of Menaquinone 8 " - metabolites: !!omap - mqn8_s: -1 - mqn8_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: MK8t + - id: "MK8t" - name: "Menaquinone Secretion/ Uptake (Menaquinone 8)" - metabolites: !!omap - mqn8_c: -1 - mqn8_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 25901891. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 25901891." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_indole[e] + - id: "EX_indole[e]" - name: "Exchange of Indole " - metabolites: !!omap - indole_s: -1 - indole_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_ch4s[e] + - id: "EX_ch4s[e]" - name: "Exchange of Methanethiol" - metabolites: !!omap - ch4s_s: -1 - ch4s_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_phpyr[e] + - id: "EX_phpyr[e]" - name: "Exchange of Phenylpyruvate" - metabolites: !!omap - m02725s: -1 - m02725x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_tym[e] + - id: "EX_tym[e]" - name: "Exchange of Tyramine" - metabolites: !!omap - m03099s: -1 - m03099x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_2hyoxplac[e] + - id: "EX_2hyoxplac[e]" - name: "2-Hydroxyphenylacetate" - metabolites: !!omap - m00654s: -1 - m00654x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_lanost[e] + - id: "EX_lanost[e]" - name: "Exchange of Lanosterol" - metabolites: !!omap - m02336s: -1 - m02336x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: PHPYRte + - id: "PHPYRte" - name: "Transport of Phenylpyruvate via Proton Symport" - metabolites: !!omap - m02039c: 1 @@ -284476,15 +284476,15 @@ - m02725s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000118596 or ENSG00000141526 or ENSG00000155380 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 4418160 + - gene_reaction_rule: "ENSG00000118596 or ENSG00000141526 or ENSG00000155380" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 4418160" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PHPYRtm + - id: "PHPYRtm" - name: "Transport of Phenylpyruvate via Proton Symport, Mitochondrial" - metabolites: !!omap - m02039c: 1 @@ -284493,105 +284493,105 @@ - m02725m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060762 and ENSG00000143158 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 22883228, PMID: 25748677 + - gene_reaction_rule: "ENSG00000060762 and ENSG00000143158" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 22883228, PMID: 25748677" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3MOX4HOXMtm + - id: "3MOX4HOXMtm" - name: "Transport of 3-Methoxy-4-Hydroxymandelate, Mitochondrial" - metabolites: !!omap - m03136c: 1 - m03136m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15317907 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15317907" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3MOX4HOXMte + - id: "3MOX4HOXMte" - name: "Transport 3-Methoxy-4-Hydroxymandelate, Extracellular" - metabolites: !!omap - m03136c: -1 - m03136s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15317907 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15317907" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_3mox4hoxm[e] + - id: "EX_3mox4hoxm[e]" - name: "Exchange of 3-Methoxy-4-Hydroxymandelate" - metabolites: !!omap - m03136s: -1 - m03136x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: GLXte + - id: "GLXte" - name: "Transport of Glyoxylate, Extracellular" - metabolites: !!omap - m02007c: -1 - m02007s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 17055076, PMID: 23966945 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 17055076, PMID: 23966945" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_glx[e] + - id: "EX_glx[e]" - name: "Exchange of Glyoxylate" - metabolites: !!omap - m02007s: -1 - m02007x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: CE4970tm + - id: "CE4970tm" - name: "2-Methylbutyrylglycine Transport, Mitochondrial" - metabolites: !!omap - m00664c: 1 - m00664m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE4970te + - id: "CE4970te" - name: "2-Methylbutyrylglycine Transport, Extracellular" - metabolites: !!omap - m00664c: -1 @@ -284602,45 +284602,45 @@ - m02519s: 3 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165970 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16899062, PMID: 2345678, PMID: 15817498, PMID: 12719981 + - gene_reaction_rule: "ENSG00000165970" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16899062, PMID: 2345678, PMID: 15817498, PMID: 12719981" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_CE4970[e] + - id: "EX_CE4970[e]" - name: "Exchange of 2-Methylbutyrylglycine" - metabolites: !!omap - m00664s: -1 - m00664x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: CE2026tm + - id: "CE2026tm" - name: "3-Methyl-Crotonyl-Glycine Transport, Mitochondrial" - metabolites: !!omap - m00825c: 1 - m00825m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE2026te + - id: "CE2026te" - name: "3-Methyl-Crotonyl-Glycine Transport, Extracellular" - metabolites: !!omap - m00825c: -1 @@ -284651,45 +284651,45 @@ - m02519s: 3 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165970 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 20649585, PMID: 12719981 + - gene_reaction_rule: "ENSG00000165970" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 20649585, PMID: 12719981" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_CE2026[e] + - id: "EX_CE2026[e]" - name: "Exchange of 3-Methyl-Crotonyl-Glycine" - metabolites: !!omap - m00825s: -1 - m00825x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: CE4968tm + - id: "CE4968tm" - name: "Isovalerylglycine Transport, Mitochondrial" - metabolites: !!omap - m02190c: 1 - m02190m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE4968te + - id: "CE4968te" - name: "Isovalerylglycine Transport, Extracellular" - metabolites: !!omap - m01442c: -1 @@ -284700,30 +284700,30 @@ - m02519s: 3 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000165970 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 20649585, PMID: 12719981 + - gene_reaction_rule: "ENSG00000165970" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 20649585, PMID: 12719981" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_CE4968[e] + - id: "EX_CE4968[e]" - name: "Exchange of Isovalerylglycine" - metabolites: !!omap - m02190s: -1 - m02190x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: ACTYRm + - id: "ACTYRm" - name: "Acetylation of Tyrosine" - metabolites: !!omap - actyr_m: 1 @@ -284733,60 +284733,60 @@ - m03101m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.3.1.1 - - references: Luxembourg screening panel, PMID: 7705801, PMID: 2507878, PMID: 11005799 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.1" + - references: "Luxembourg screening panel, PMID: 7705801, PMID: 2507878, PMID: 11005799" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: ACTYRtc + - id: "ACTYRtc" - name: "Transport of N-Acetyl-Tyrosine into Cytosol" - metabolites: !!omap - actyr_c: 1 - actyr_m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Luxembourg screening panel, PMID: 7705801, PMID: 2507878, PMID: 11005799 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Luxembourg screening panel, PMID: 7705801, PMID: 2507878, PMID: 11005799" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ACTYRte + - id: "ACTYRte" - name: "Secretion of N-Acetyl-Tyrosine" - metabolites: !!omap - actyr_c: -1 - actyr_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Luxembourg screening panel, PMID: 7705801, PMID: 2507878, PMID: 11005799 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Luxembourg screening panel, PMID: 7705801, PMID: 2507878, PMID: 11005799" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_actyr[e] + - id: "EX_actyr[e]" - name: "Exchange of N-Acetyl-Tyrosine" - metabolites: !!omap - actyr_s: -1 - actyr_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: SUCACETATc + - id: "SUCACETATc" - name: "Alternative Route for Formation of Succinylacetone, from Fumarylacetoacetate" - metabolites: !!omap - m01863c: -1 @@ -284796,15 +284796,15 @@ - sucacetat_c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 270706, PMID: 8790725, PMID: 12052898, PMID: 16448836, PMID: 7246125, PMID: 8776026 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 270706, PMID: 8790725, PMID: 12052898, PMID: 16448836, PMID: 7246125, PMID: 8776026" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: SUCACETATALTc + - id: "SUCACETATALTc" - name: "Alternative Route for Formation of Succinylacetone, from Maleylacetoacetate" - metabolites: !!omap - m01010c: -1 @@ -284814,15 +284814,15 @@ - sucacetat_c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 270706, PMID: 8790725, PMID: 12052898, PMID: 16448836, PMID: 7246125, PMID: 8776026 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 270706, PMID: 8790725, PMID: 12052898, PMID: 16448836, PMID: 7246125, PMID: 8776026" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: SUCACETOc + - id: "SUCACETOc" - name: "Alternative Route for Formation of Succinylacetone, from Succinyl-Acetoacetate" - metabolites: !!omap - m01596c: 1 @@ -284831,45 +284831,45 @@ - sucaceto_c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 270706, PMID: 8790725, PMID: 12052898, PMID: 16448836, PMID: 7246125, PMID: 8776026 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 270706, PMID: 8790725, PMID: 12052898, PMID: 16448836, PMID: 7246125, PMID: 8776026" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: SUCACETOte + - id: "SUCACETOte" - name: "Transport of Succinylacetone" - metabolites: !!omap - sucaceto_c: -1 - sucaceto_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Pediatric Nephrology (Avner, Pediatric Nephrology) Fifth Edition, by Ellis D. Avner (Editor), William E. Harmon (Editor), Patrick Niaudet (Editor), ISBN-13: 978-0781735452, ISBN-10: 0781735459, Lippincott Williams & Wilkins + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Pediatric Nephrology (Avner, Pediatric Nephrology) Fifth Edition, by Ellis D. Avner (Editor), William E. Harmon (Editor), Patrick Niaudet (Editor), ISBN-13: 978-0781735452, ISBN-10: 0781735459, Lippincott Williams & Wilkins" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_sucaceto[e] + - id: "EX_sucaceto[e]" - name: "Exchange of Succinylacetone" - metabolites: !!omap - sucaceto_s: -1 - sucaceto_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: VANILPYRc + - id: "VANILPYRc" - name: "Formation of Vanilpyruvic Acid from Vanilalanine" - metabolites: !!omap - m00830c: -1 @@ -284878,15 +284878,15 @@ - vanilpyr_c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000166123 or ENSG00000167701 - - rxnFrom: Recon3D - - eccodes: 2.6.1.2 - - references: + - gene_reaction_rule: "ENSG00000166123 or ENSG00000167701" + - rxnFrom: "Recon3D" + - eccodes: "2.6.1.2" + - references: "" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: VANILLACc + - id: "VANILLACc" - name: "Formation of Vanil-Lactate" - metabolites: !!omap - m02039c: -1 @@ -284896,30 +284896,30 @@ - vanilpyr_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: CE2176tm + - id: "CE2176tm" - name: "Transport of 3-Methoxy-Tyrosine into Mitochondrial" - metabolites: !!omap - m00830c: -1 - m00830m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: NACVANALAm + - id: "NACVANALAm" - name: "Acetylation of 3-Methoxy-Tyrosine " - metabolites: !!omap - m00830m: -1 @@ -284929,90 +284929,90 @@ - nacvanala_m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: NACVANALAtm + - id: "NACVANALAtm" - name: "Transport of Acetyl-Vanilalanine" - metabolites: !!omap - nacvanala_c: 1 - nacvanala_m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: NACVANALAte + - id: "NACVANALAte" - name: "Secretion of Acetyl-Vanilalanine" - metabolites: !!omap - nacvanala_c: -1 - nacvanala_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: VANILLACte + - id: "VANILLACte" - name: "Secretion of Vanil-Lactate" - metabolites: !!omap - vanillac_c: -1 - vanillac_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_vanillac[e] + - id: "EX_vanillac[e]" - name: "Exchange of Vanil-Lactate" - metabolites: !!omap - vanillac_s: -1 - vanillac_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_nacvanala[e] + - id: "EX_nacvanala[e]" - name: "Exchange of Acetyl-Vanilalanine" - metabolites: !!omap - nacvanala_s: -1 - nacvanala_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: 2H3MVc + - id: "2H3MVc" - name: "Formation of 2-Hydroxy-3-Methyl-Valerate" - metabolites: !!omap - 2h3mv_c: 1 @@ -285022,45 +285022,45 @@ - m02553c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000111716 and ENSG00000134333) or ENSG00000111716 or ENSG00000134333 or ENSG00000151116 or ENSG00000166796 or ENSG00000166800 or ENSG00000171989 - - rxnFrom: Recon3D - - eccodes: 1.1.1.27 - - references: PMID: 1429566, Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd. + - gene_reaction_rule: "(ENSG00000111716 and ENSG00000134333) or ENSG00000111716 or ENSG00000134333 or ENSG00000151116 or ENSG00000166796 or ENSG00000166800 or ENSG00000171989" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.27" + - references: "PMID: 1429566, Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd." - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: 2H3MVte + - id: "2H3MVte" - name: "Transport of 2-Hydroxy-3-Methyl-Valerate" - metabolites: !!omap - 2h3mv_c: -1 - 2h3mv_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_2h3mv[e] + - id: "EX_2h3mv[e]" - name: "Exchange of 2-Hydroxy-3-Methyl-Valerate" - metabolites: !!omap - 2h3mv_s: -1 - 2h3mv_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: 2HIVc + - id: "2HIVc" - name: "Formation of 2-Hydroxy-Isovalerate" - metabolites: !!omap - 2hiv_c: 1 @@ -285070,45 +285070,45 @@ - m02553c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000111716 and ENSG00000134333) or ENSG00000111716 or ENSG00000134333 or ENSG00000151116 or ENSG00000166796 or ENSG00000166800 or ENSG00000171989 - - rxnFrom: Recon3D - - eccodes: 1.1.1.27 - - references: PMID: 1429566, Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd. + - gene_reaction_rule: "(ENSG00000111716 and ENSG00000134333) or ENSG00000111716 or ENSG00000134333 or ENSG00000151116 or ENSG00000166796 or ENSG00000166800 or ENSG00000171989" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.27" + - references: "PMID: 1429566, Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd." - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: 2HIVte + - id: "2HIVte" - name: "Transport of 2-Hydroxy-Isovalerate" - metabolites: !!omap - 2hiv_c: -1 - 2hiv_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_2hiv[e] + - id: "EX_2hiv[e]" - name: "Exchange of 2-Hydroxy-Isovalerate" - metabolites: !!omap - 2hiv_s: -1 - 2hiv_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: 2M3HBUc + - id: "2M3HBUc" - name: "Formation of 2-Methyl-3-Hydroxy-Butyrate" - metabolites: !!omap - 2m3hbu_m: 1 @@ -285118,60 +285118,60 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10755375, PMID: 1861461, PMID: 8487503, Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10755375, PMID: 1861461, PMID: 8487503, Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd." - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: 2M3HBUtm + - id: "2M3HBUtm" - name: "Transport of 2-Methyl-3-Hydroxy-Butyrate, Mitochondrial" - metabolites: !!omap - 2m3hbu_c: 1 - 2m3hbu_m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 2M3HBUte + - id: "2M3HBUte" - name: "Transport of 2-Methyl-3-Hydroxy-Butyrate, Extracellular" - metabolites: !!omap - 2m3hbu_c: -1 - 2m3hbu_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_2m3hbu[e] + - id: "EX_2m3hbu[e]" - name: "Exchange of 2-Methyl-3-Hydroxy-Butyrate" - metabolites: !!omap - 2m3hbu_s: -1 - 2m3hbu_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: 2M3OVCOAm + - id: "2M3OVCOAm" - name: "Formation of 2-Methyl-3-Oxo-Valeryl Coa" - metabolites: !!omap - 2m3ovcoa_m: 1 @@ -285179,15 +285179,15 @@ - m02774m: -2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000075239 - - rxnFrom: Recon3D - - eccodes: 2.3.1.9 - - references: + - gene_reaction_rule: "ENSG00000075239" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.9" + - references: "" - subsystem: - - Propanoate metabolism + - "Propanoate metabolism" - confidence_score: 0 - !!omap - - id: 2M3OVACm + - id: "2M3OVACm" - name: "Formation of 2-Methyl-3-Oxo-Valerate" - metabolites: !!omap - 2m3ovac_m: 1 @@ -285197,30 +285197,30 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Propanoate metabolism + - "Propanoate metabolism" - confidence_score: 0 - !!omap - - id: 2M3OVACtm + - id: "2M3OVACtm" - name: "Transport of 2-Methyl-3-Oxo-Valerate, Mitochondrial" - metabolites: !!omap - 2m3ovac_c: 1 - 2m3ovac_m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 2M3HVACc + - id: "2M3HVACc" - name: "Formation of 2-Methyl-3-Hydroxy-Valerate" - metabolites: !!omap - 2m3hvac_c: 1 @@ -285230,45 +285230,45 @@ - m02553c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Propanoate metabolism + - "Propanoate metabolism" - confidence_score: 0 - !!omap - - id: 2M3HVACte + - id: "2M3HVACte" - name: "Transport of 2-Methyl-3-Hydroxy-Valerate" - metabolites: !!omap - 2m3hvac_c: -1 - 2m3hvac_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_2m3hvac[e] + - id: "EX_2m3hvac[e]" - name: "Exchange of 2-Methyl-3-Hydroxy-Valerate" - metabolites: !!omap - 2m3hvac_s: -1 - 2m3hvac_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: 3H3MGLTc + - id: "3H3MGLTc" - name: "Formation of 3-Hydroxy-3-Methyl-Glutarate" - metabolites: !!omap - 3h3mglt_c: 1 @@ -285278,45 +285278,45 @@ - m02131c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd, OMIM:246450, PMID: 11755680, PMID: 20470824. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd, OMIM:246450, PMID: 11755680, PMID: 20470824." - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: 3H3MGLTte + - id: "3H3MGLTte" - name: "Transport of 3-Hydroxy-3-Methyl-Glutarate" - metabolites: !!omap - 3h3mglt_c: -1 - 3h3mglt_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_3h3mglt[e] + - id: "EX_3h3mglt[e]" - name: "Exchange of 3-Hydroxy-3-Methyl-Glutarate" - metabolites: !!omap - 3h3mglt_s: -1 - 3h3mglt_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: 3MGLUTACc + - id: "3MGLUTACc" - name: "Formation of 3-Methyl-Glutaconate" - metabolites: !!omap - 3mglutac_m: 1 @@ -285326,60 +285326,60 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 7603789, Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 7603789, Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd." - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: 3MGLUTACtm + - id: "3MGLUTACtm" - name: "Transport of 3-Methyl-Glutaconate, Mitochondrial" - metabolites: !!omap - 3mglutac_c: 1 - 3mglutac_m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3MGLUTACte + - id: "3MGLUTACte" - name: "Transport of 3-Methyl-Glutaconate, Extracellular" - metabolites: !!omap - 3mglutac_c: -1 - 3mglutac_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_3mglutac[e] + - id: "EX_3mglutac[e]" - name: "Exchange of 3-Methyl-Glutaconate" - metabolites: !!omap - 3mglutac_s: -1 - 3mglutac_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: 3MGLUTRc + - id: "3MGLUTRc" - name: "Formation of 3-Methyl-Glutarate" - metabolites: !!omap - 3mglutac_c: -1 @@ -285389,45 +285389,45 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 20882351, PMID: 21050883, Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 20882351, PMID: 21050883, Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd." - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: 3MGLUTRte + - id: "3MGLUTRte" - name: "Transport of 3-Methyl-Glutarate" - metabolites: !!omap - 3mglutr_c: -1 - 3mglutr_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_3mglutr[e] + - id: "EX_3mglutr[e]" - name: "Exchange of 3-Methyl-Glutarate" - metabolites: !!omap - 3mglutr_s: -1 - 3mglutr_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: PPIOGLYc + - id: "PPIOGLYc" - name: "Formation of Propionyl-Glycine" - metabolites: !!omap - m01597m: 1 @@ -285437,60 +285437,60 @@ - ppiogly_m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149124 - - rxnFrom: Recon3D - - eccodes: 2.3.1.13 - - references: Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd. + - gene_reaction_rule: "ENSG00000149124" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.13" + - references: "Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd." - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: PPIOGLYtm + - id: "PPIOGLYtm" - name: "Transport of Propionyl-Glycine, Mitochondrial" - metabolites: !!omap - ppiogly_c: 1 - ppiogly_m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PPIOGLYte + - id: "PPIOGLYte" - name: "Transport of Propionyl-Glycine, Extracellular" - metabolites: !!omap - ppiogly_c: -1 - ppiogly_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_ppiogly[e] + - id: "EX_ppiogly[e]" - name: "Exchange of Propionyl-Glycine" - metabolites: !!omap - ppiogly_s: -1 - ppiogly_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: MVLACc + - id: "MVLACc" - name: "Formation of Mevalonate-Lactone" - metabolites: !!omap - m00167c: -1 @@ -285499,45 +285499,45 @@ - mvlac_c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11522061 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11522061" - subsystem: - - Cholesterol metabolism + - "Cholesterol metabolism" - confidence_score: 0 - !!omap - - id: MVLACte + - id: "MVLACte" - name: "Transport of Mevalonate-Lactone" - metabolites: !!omap - mvlac_c: -1 - mvlac_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11522061 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11522061" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_mvlac[e] + - id: "EX_mvlac[e]" - name: "Exchange of Mevalonate-Lactone" - metabolites: !!omap - mvlac_s: -1 - mvlac_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: TIGGLYc + - id: "TIGGLYc" - name: "Formation of Tiglylglycine" - metabolites: !!omap - m01597m: 1 @@ -285547,60 +285547,60 @@ - tiggly_m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149124 - - rxnFrom: Recon3D - - eccodes: 2.3.1.13 - - references: Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd. + - gene_reaction_rule: "ENSG00000149124" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.13" + - references: "Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd." - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: TIGGLYtm + - id: "TIGGLYtm" - name: "Transport of Tiglylglycine, Mitochondrial" - metabolites: !!omap - tiggly_c: 1 - tiggly_m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TIGGLYte + - id: "TIGGLYte" - name: "Transport of Tiglylglycine, Extracellular" - metabolites: !!omap - tiggly_c: -1 - tiggly_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_tiggly[e] + - id: "EX_tiggly[e]" - name: "Exchange of Tiglylglycine" - metabolites: !!omap - tiggly_s: -1 - tiggly_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: TD2GLTRCOAm + - id: "TD2GLTRCOAm" - name: "Acyl Coenzyme A Dehydrogenase for Glutaryl Coenzyme A, Forming Trans-Delta-2-Glutaryl Coenzyme A" - metabolites: !!omap - m01802m: -1 @@ -285609,15 +285609,15 @@ - td2glutrcoa_m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd, PMID: 16573641, PMID: 18348873, PMID: 16111821. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd, PMID: 16573641, PMID: 18348873, PMID: 16111821." - subsystem: - - Lysine metabolism + - "Lysine metabolism" - confidence_score: 0 - !!omap - - id: 3HGLUTCOAm + - id: "3HGLUTCOAm" - name: "Acyl Coenzyme A Dehydrogenase for Glutaryl Coenzyme A, Forming 3-Hydroxy-Glutaryl Coenzyme A" - metabolites: !!omap - 3hglutcoa_m: 1 @@ -285625,15 +285625,15 @@ - td2glutrcoa_m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd, PMID: 16573641, PMID: 18348873, PMID: 16111821. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd, PMID: 16573641, PMID: 18348873, PMID: 16111821." - subsystem: - - Lysine metabolism + - "Lysine metabolism" - confidence_score: 0 - !!omap - - id: 3OHGLUTACm + - id: "3OHGLUTACm" - name: "Formation of 3-Hydroxy-Glutarate" - metabolites: !!omap - 3hglutcoa_m: -1 @@ -285643,45 +285643,45 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd, PMID: 16573641, PMID: 18348873, PMID: 16111821. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd, PMID: 16573641, PMID: 18348873, PMID: 16111821." - subsystem: - - Lysine metabolism + - "Lysine metabolism" - confidence_score: 0 - !!omap - - id: 3OHGLUTACtm + - id: "3OHGLUTACtm" - name: "Transport of 3-Hydroxy-Glutarate, Mitochondrial" - metabolites: !!omap - 3ohglutac_c: 1 - 3ohglutac_m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd, PMID: 16573641, PMID: 18348873, PMID: 16111821. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd, PMID: 16573641, PMID: 18348873, PMID: 16111821." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3OHGLUTACte + - id: "3OHGLUTACte" - name: "Transport of 3-Hydroxy-Glutarate, Extracellular" - metabolites: !!omap - 3ohglutac_c: -1 - 3ohglutac_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd, PMID: 16573641, PMID: 18348873, PMID: 16111821. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd, PMID: 16573641, PMID: 18348873, PMID: 16111821." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3OHGLUTACOAT3t + - id: "3OHGLUTACOAT3t" - name: "Transport of 3-Hydroxy-Glutarate, Extracellular, Antiport" - metabolites: !!omap - 3ohglutac_c: -1 @@ -285690,30 +285690,30 @@ - m01306s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149452 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149452" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_3ohglutac[e] + - id: "EX_3ohglutac[e]" - name: "Excahnge of 3-Hydroxy-Glutarate" - metabolites: !!omap - 3ohglutac_s: -1 - 3ohglutac_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: GLUTACOAm + - id: "GLUTACOAm" - name: "Formation of Glutaconyl Coenzyme A" - metabolites: !!omap - glutacoa_m: 1 @@ -285722,15 +285722,15 @@ - m01977m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd, PMID: 16573641, PMID: 18348873, PMID: 16111821, PMID: 15922108. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd, PMID: 16573641, PMID: 18348873, PMID: 16111821, PMID: 15922108." - subsystem: - - Lysine metabolism + - "Lysine metabolism" - confidence_score: 0 - !!omap - - id: GLUTCONm + - id: "GLUTCONm" - name: "Formation of Glutaconic Acid" - metabolites: !!omap - glutacoa_m: -1 @@ -285740,60 +285740,60 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd, PMID: 16573641, PMID: 18348873, PMID: 16111821, PMID: 15922108. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd, PMID: 16573641, PMID: 18348873, PMID: 16111821, PMID: 15922108." - subsystem: - - Lysine metabolism + - "Lysine metabolism" - confidence_score: 0 - !!omap - - id: GLUTCONtm + - id: "GLUTCONtm" - name: "Transport of Glutaconate, Mitochondrial" - metabolites: !!omap - glutcon_c: 1 - glutcon_m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd, PMID: 15922108. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd, PMID: 15922108." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLUTCONte + - id: "GLUTCONte" - name: "Transport of Glutaconate, Extracellular" - metabolites: !!omap - glutcon_c: -1 - glutcon_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd, PMID: 15922108. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd, PMID: 15922108." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_glutcon[e] + - id: "EX_glutcon[e]" - name: "Exchange of Glutaconate" - metabolites: !!omap - glutcon_s: -1 - glutcon_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: 3HIVAcm + - id: "3HIVAcm" - name: "Formation of 3-Hydroxy-Isovalerate" - metabolites: !!omap - 3hivac_m: 1 @@ -285803,60 +285803,60 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Saudubray, J. M., v. d. B. Georges and J. H. Walter (2012). Inborn Metabolic Diseases: Diagnosis and Treatment. Heidelberg, Springer-Verlag Berlin Heidelberg, Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd, PMID: 4684367, PMID: 7116632. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Saudubray, J. M., v. d. B. Georges and J. H. Walter (2012). Inborn Metabolic Diseases: Diagnosis and Treatment. Heidelberg, Springer-Verlag Berlin Heidelberg, Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd, PMID: 4684367, PMID: 7116632." - subsystem: - - Valine, leucine, and isoleucine metabolism + - "Valine, leucine, and isoleucine metabolism" - confidence_score: 0 - !!omap - - id: 3HIVActm + - id: "3HIVActm" - name: "Transport of 3-Hydroxy-Isovalerate, Mitochondrial" - metabolites: !!omap - 3hivac_c: 1 - 3hivac_m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Saudubray, J. M., v. d. B. Georges and J. H. Walter (2012). Inborn Metabolic Diseases: Diagnosis and Treatment. Heidelberg, Springer-Verlag Berlin Heidelberg, Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd, PMID: 4684367, PMID: 7116632. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Saudubray, J. M., v. d. B. Georges and J. H. Walter (2012). Inborn Metabolic Diseases: Diagnosis and Treatment. Heidelberg, Springer-Verlag Berlin Heidelberg, Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd, PMID: 4684367, PMID: 7116632." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3HIVActe + - id: "3HIVActe" - name: "Transport of 3-Hydroxy-Isovalerate, Extracellular" - metabolites: !!omap - 3hivac_c: -1 - 3hivac_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Saudubray, J. M., v. d. B. Georges and J. H. Walter (2012). Inborn Metabolic Diseases: Diagnosis and Treatment. Heidelberg, Springer-Verlag Berlin Heidelberg, Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd, PMID: 4684367, PMID: 7116632. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Saudubray, J. M., v. d. B. Georges and J. H. Walter (2012). Inborn Metabolic Diseases: Diagnosis and Treatment. Heidelberg, Springer-Verlag Berlin Heidelberg, Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd, PMID: 4684367, PMID: 7116632." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_3hivac[e] + - id: "EX_3hivac[e]" - name: "Exchange of 3-Hydroxy-Isovalerate" - metabolites: !!omap - 3hivac_s: -1 - 3hivac_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: 3HADICOAx + - id: "3HADICOAx" - name: "Formation of 3-Hydroxy-Adipoyl Coa" - metabolites: !!omap - 3hadicoa_p: 1 @@ -285866,15 +285866,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000113790 and ENSG00000161533) or (ENSG00000104823 and ENSG00000161533) - - rxnFrom: Recon3D - - eccodes: 1.3.3.6;4.2.1.17 - - references: PMID: 2739576, Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd + - gene_reaction_rule: "(ENSG00000113790 and ENSG00000161533) or (ENSG00000104823 and ENSG00000161533)" + - rxnFrom: "Recon3D" + - eccodes: "1.3.3.6;4.2.1.17" + - references: "PMID: 2739576, Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: 3HADPACx + - id: "3HADPACx" - name: "Formation of 3-Hydroxy-Adipate" - metabolites: !!omap - 3hadicoa_p: -1 @@ -285884,60 +285884,60 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 2739576, Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 2739576, Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: 3HADPACtxc + - id: "3HADPACtxc" - name: "Transport of 3-Hydroxy-Adipate, Peroxisomal" - metabolites: !!omap - 3hadpac_c: 1 - 3hadpac_p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 2739576, Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 2739576, Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3HADPACte + - id: "3HADPACte" - name: "Transport of 3-Hydroxy-Adipate, Extracellular" - metabolites: !!omap - 3hadpac_c: -1 - 3hadpac_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 2739576, Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 2739576, Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_3hadpac[e] + - id: "EX_3hadpac[e]" - name: "Exchange of 3-Hydroxy-Adipate" - metabolites: !!omap - 3hadpac_s: -1 - 3hadpac_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: 3OHSEBCOAx + - id: "3OHSEBCOAx" - name: "Formation of 3-Hydroxy-Sebacoyl Coa" - metabolites: !!omap - 3ohsebcoa_p: 1 @@ -285947,15 +285947,15 @@ - sebcoa_p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000113790 and ENSG00000161533) or (ENSG00000104823 and ENSG00000161533) - - rxnFrom: Recon3D - - eccodes: 1.3.3.6;4.2.1.17 - - references: PMID: 8295400, PMID: 14708889, PMID: 1444166. + - gene_reaction_rule: "(ENSG00000113790 and ENSG00000161533) or (ENSG00000104823 and ENSG00000161533)" + - rxnFrom: "Recon3D" + - eccodes: "1.3.3.6;4.2.1.17" + - references: "PMID: 8295400, PMID: 14708889, PMID: 1444166." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: 3OHSEBACx + - id: "3OHSEBACx" - name: "Formation of 3-Hydroxy-Sebacic Acid" - metabolites: !!omap - 3ohsebac_p: 1 @@ -285965,60 +285965,60 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8295400, PMID: 14708889, PMID: 1444166. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8295400, PMID: 14708889, PMID: 1444166." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: 3OHSEBACtxc + - id: "3OHSEBACtxc" - name: "Transportof 3-Hydroxy-Sebacic Acid, Peroxisomal" - metabolites: !!omap - 3ohsebac_c: 1 - 3ohsebac_p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8295400, PMID: 14708889, PMID: 1444166. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8295400, PMID: 14708889, PMID: 1444166." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3OHSEBACte + - id: "3OHSEBACte" - name: "Transport of 3-Hydroxy-Sebacic Acid, Extracellular" - metabolites: !!omap - 3ohsebac_c: -1 - 3ohsebac_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.3.1.1 - - references: PMID: 8295400, PMID: 14708889, PMID: 1444166. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.1" + - references: "PMID: 8295400, PMID: 14708889, PMID: 1444166." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_3ohsebac[e] + - id: "EX_3ohsebac[e]" - name: "Exchange of 3-Hydroxy-Sebacic Acid" - metabolites: !!omap - 3ohsebac_s: -1 - 3ohsebac_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: 3OHSUBCOAx + - id: "3OHSUBCOAx" - name: "Formation of 3-Hydoxy-Suberyl Coa" - metabolites: !!omap - 3ohsubcoa_p: 1 @@ -286028,15 +286028,15 @@ - sbcoa_p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000113790 and ENSG00000161533) or (ENSG00000104823 and ENSG00000161533) - - rxnFrom: Recon3D - - eccodes: 1.3.3.6;4.2.1.17 - - references: + - gene_reaction_rule: "(ENSG00000113790 and ENSG00000161533) or (ENSG00000104823 and ENSG00000161533)" + - rxnFrom: "Recon3D" + - eccodes: "1.3.3.6;4.2.1.17" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: 3OHSUBACx + - id: "3OHSUBACx" - name: "Formation of 3-Hydoxy-Suberic Acid" - metabolites: !!omap - 3ohsubac_p: 1 @@ -286046,60 +286046,60 @@ - m02040p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: 3OHSUBACtxc + - id: "3OHSUBACtxc" - name: "Transport of 3-Hydoxy-Suberic Acid, Peroxisomal" - metabolites: !!omap - 3ohsubac_c: 1 - 3ohsubac_p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 2001377, Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 2001377, Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3OHSUBACte + - id: "3OHSUBACte" - name: "Transport of 3-Hydoxy-Suberic Acid, Extracellular" - metabolites: !!omap - 3ohsubac_c: -1 - 3ohsubac_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 2001377, Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 2001377, Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_3ohsubac[e] + - id: "EX_3ohsubac[e]" - name: "Exchange of 3-Hydoxy-Suberic Acid" - metabolites: !!omap - 3ohsubac_s: -1 - 3ohsubac_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: CAPROICc + - id: "CAPROICc" - name: "Formation of Hexanoic Acid" - metabolites: !!omap - m01597c: 1 @@ -286109,15 +286109,15 @@ - m02122c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd., PMID: 8371066. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd., PMID: 8371066." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: 5OHHEXAc + - id: "5OHHEXAc" - name: "Formation of 5-Hydroxy-Hexanoate" - metabolites: !!omap - 5ohhexa_c: 1 @@ -286129,45 +286129,45 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd., PMID: 8371066. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd., PMID: 8371066." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: 5OHHEXAte + - id: "5OHHEXAte" - name: "Transport of 5-Hydroxy-Hexanoate, Extracellular" - metabolites: !!omap - 5ohhexa_c: -1 - 5ohhexa_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.6.1.2 - - references: Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd., PMID: 8371066. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.6.1.2" + - references: "Chalmers, R. A. and A. M. Lawson (1982). Organic Acids in Man: Analytical Chemistry, Biochemistry and Diagnosis of the Organic Acidurias. London, Chapman and Hall Ltd., PMID: 8371066." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_5ohhexa[e] + - id: "EX_5ohhexa[e]" - name: "Exchange of 5-Hydroxy-Hexanoate" - metabolites: !!omap - 5ohhexa_s: -1 - 5ohhexa_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: 7OHOCTAc + - id: "7OHOCTAc" - name: "Formation of 7-Hydroxy-Octanoate" - metabolites: !!omap - 7ohocata_c: 1 @@ -286179,45 +286179,45 @@ - m02642c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8799296, PMID: 2094705. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8799296, PMID: 2094705." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: 7OHOCTAte + - id: "7OHOCTAte" - name: "Transport of 7-Hydroxy-Octanoate, Extracellular" - metabolites: !!omap - 7ohocata_c: -1 - 7ohocata_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8799296, PMID: 2094705. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8799296, PMID: 2094705." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_7ohocata[e] + - id: "EX_7ohocata[e]" - name: "Exchange of 7-Hydroxy-Octanoate" - metabolites: !!omap - 7ohocata_s: -1 - 7ohocata_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: ETHMALCOAc + - id: "ETHMALCOAc" - name: "Formation of Ethylmalonyl Coa" - metabolites: !!omap - ethmalcoa_c: 1 @@ -286226,15 +286226,15 @@ - m02039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 500826, PMID: 8283379, PMID: 22133302, PMID: 8725270. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 500826, PMID: 8283379, PMID: 22133302, PMID: 8725270." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: ETHMALACc + - id: "ETHMALACc" - name: "Formation of Ethylmalonic Acid" - metabolites: !!omap - ethmalac_c: 1 @@ -286244,45 +286244,45 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 500826, PMID: 8283379, PMID: 22133302, PMID: 8725270. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 500826, PMID: 8283379, PMID: 22133302, PMID: 8725270." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: ETHMALACte + - id: "ETHMALACte" - name: "Transport of Ethylmalonic Acid" - metabolites: !!omap - ethmalac_c: -1 - ethmalac_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 500826, PMID: 8283379, PMID: 22133302, PMID: 8725270. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 500826, PMID: 8283379, PMID: 22133302, PMID: 8725270." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_ethmalac[e] + - id: "EX_ethmalac[e]" - name: "Exchange of Ethylmalonic Acid" - metabolites: !!omap - ethmalac_s: -1 - ethmalac_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HEXGLYc + - id: "HEXGLYc" - name: "Formation of Hexanoyl-Glycine" - metabolites: !!omap - hexgly_c: 1 @@ -286292,60 +286292,60 @@ - m02122c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149124 - - rxnFrom: Recon3D - - eccodes: 2.3.1.13 - - references: PMID: 500826, PMID: 8283379, PMID: 22133302, PMID: 8725270. + - gene_reaction_rule: "ENSG00000149124" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.13" + - references: "PMID: 500826, PMID: 8283379, PMID: 22133302, PMID: 8725270." - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: HEXGLYte + - id: "HEXGLYte" - name: "Transport of Hexanoyl-Glycine" - metabolites: !!omap - hexgly_c: -1 - hexgly_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 500826, PMID: 8283379, PMID: 22133302, PMID: 8725270. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 500826, PMID: 8283379, PMID: 22133302, PMID: 8725270." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_hexgly[e] + - id: "EX_hexgly[e]" - name: "Exchange of Hexanoyl-Glycine" - metabolites: !!omap - hexgly_s: -1 - hexgly_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: METHSUCCOAc + - id: "METHSUCCOAc" - name: "Formation of Methyl-Succinyl Coa" - metabolites: !!omap - ethmalcoa_c: -1 - methsuccoa_c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 1.1.1.27 - - references: PMID: 8799296, PMID: 2094705. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.27" + - references: "PMID: 8799296, PMID: 2094705." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: METHSUCC + - id: "METHSUCC" - name: "Formation of Methyl-Succinate" - metabolites: !!omap - m01597c: 1 @@ -286355,45 +286355,45 @@ - methsuccoa_c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8799296, PMID: 2094705. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8799296, PMID: 2094705." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: METHSUCCte + - id: "METHSUCCte" - name: "Transport of Methyl-Succinate" - metabolites: !!omap - methsucc_c: -1 - methsucc_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8799296, PMID: 2094705. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8799296, PMID: 2094705." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_methsucc[e] + - id: "EX_methsucc[e]" - name: "Exchange of Methyl-Succinate" - metabolites: !!omap - methsucc_s: -1 - methsucc_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: SUBGLYc + - id: "SUBGLYc" - name: "Formation of Suberyl-Glycine" - metabolites: !!omap - m01597c: 1 @@ -286403,45 +286403,45 @@ - subgly_c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149124 - - rxnFrom: Recon3D - - eccodes: 2.3.1.13 - - references: PMID: 2775902, PMID: 947635. + - gene_reaction_rule: "ENSG00000149124" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.13" + - references: "PMID: 2775902, PMID: 947635." - subsystem: - - Glycine, serine and threonine metabolism + - "Glycine, serine and threonine metabolism" - confidence_score: 0 - !!omap - - id: SUBGLYte + - id: "SUBGLYte" - name: "Transport of Suberyl-Glycine" - metabolites: !!omap - subgly_c: -1 - subgly_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 2775902, PMID: 947635. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 2775902, PMID: 947635." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_subgly[e] + - id: "EX_subgly[e]" - name: "Exchange of Suberyl-Glycine" - metabolites: !!omap - subgly_s: -1 - subgly_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: 4OHBUTm + - id: "4OHBUTm" - name: "Formation of 4-Hydroxy-Butyrate" - metabolites: !!omap - 4ohbut_m: 1 @@ -286451,90 +286451,90 @@ - m02942m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.3.1.9 - - references: PMID: 9553943, PMID: 3126356. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.9" + - references: "PMID: 9553943, PMID: 3126356." - subsystem: - - Alanine, aspartate and glutamate metabolism + - "Alanine, aspartate and glutamate metabolism" - confidence_score: 0 - !!omap - - id: 4OHBUTtmc + - id: "4OHBUTtmc" - name: "Transport of 4-Hydroxy-Butyrate, Mitochondrial" - metabolites: !!omap - 4ohbut_c: 1 - 4ohbut_m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9553943, PMID: 3126356. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9553943, PMID: 3126356." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 4OHBUTtce + - id: "4OHBUTtce" - name: "Transport of 4-Hydroxy-Butyrate, Extracellular" - metabolites: !!omap - 4ohbut_c: -1 - 4ohbut_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9553943, PMID: 3126356. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9553943, PMID: 3126356." - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_4ohbut[e] + - id: "EX_4ohbut[e]" - name: "Exchange of 4-Hydroxy-Butyrate" - metabolites: !!omap - 4ohbut_s: -1 - 4ohbut_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: 12HPETUPKt + - id: "12HPETUPKt" - name: "Transport of 12-Hydroperoxyeicosa-5, 8, 10, 14-Tetraenoate, by Diffusion" - metabolites: !!omap - m00309c: 1 - m00309s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 17494091, PMID: 17164132, PMID: 8593700 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 17494091, PMID: 17164132, PMID: 8593700" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 15HPETUPKt + - id: "15HPETUPKt" - name: "Transport of 15(S)-HPETE, Diffusion" - metabolites: !!omap - m00380c: 1 - m00380s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 17494091, PMID: 17164132, PMID: 8593700 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 17494091, PMID: 17164132, PMID: 8593700" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3AIBSYMPt + - id: "3AIBSYMPt" - name: "3-Amino-Isobutyrate Transport, Sodium Symport" - metabolites: !!omap - m02325c: 1 @@ -286543,15 +286543,15 @@ - m02519s: -2 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: 'PMID: 21501141, PMID: 15058382, PMID:18195088.' + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "'PMID: 21501141, PMID: 15058382, PMID:18195088.'" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: AK2LGCHOLABCt + - id: "AK2LGCHOLABCt" - name: "1-Alkyl 2-Acylglycerol 3-Phosphocholine Transport" - metabolites: !!omap - m00516c: -1 @@ -286563,15 +286563,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375 + - gene_reaction_rule: "ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: APRGSTRNABCt + - id: "APRGSTRNABCt" - name: "Hydroxyprogesterone Transport, Active" - metabolites: !!omap - m00580c: 1 @@ -286585,60 +286585,60 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 14980004 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 14980004" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C14770UPKt + - id: "C14770UPKt" - name: "Transport of 11, 12-EET, Diffusion" - metabolites: !!omap - m00279c: 1 - m00279s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 17494091, PMID: 17164132, PMID: 8593700 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 17494091, PMID: 17164132, PMID: 8593700" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C14771UPKt + - id: "C14771UPKt" - name: "Transport of 14, 15-EET, Diffusion" - metabolites: !!omap - m00366c: 1 - m00366s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 17494091, PMID: 17164132, PMID: 8593700 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 17494091, PMID: 17164132, PMID: 8593700" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE1243UPKt + - id: "CE1243UPKt" - name: "Transport of 12S-HHT by Diffusion" - metabolites: !!omap - m00308c: 1 - m00308s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 17494091, PMID: 17164132, PMID: 8593700 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 17494091, PMID: 17164132, PMID: 8593700" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE2510ABCt + - id: "CE2510ABCt" - name: "Transport of 11-Cis-Eicosenoate, Active" - metabolites: !!omap - m01285c: 1 @@ -286650,15 +286650,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000083807 or ENSG00000113396 or ENSG00000130304 or ENSG00000140284 or ENSG00000143554 or ENSG00000167114 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16868315, PMID: 17901542, journal of lipid research (2006) vol 47 page 665-672, 16357361, PMID: 17495600 + - gene_reaction_rule: "ENSG00000083807 or ENSG00000113396 or ENSG00000130304 or ENSG00000140284 or ENSG00000143554 or ENSG00000167114" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16868315, PMID: 17901542, journal of lipid research (2006) vol 47 page 665-672, 16357361, PMID: 17495600" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE2537ABCt + - id: "CE2537ABCt" - name: "Transport of 15-Hydroxy- (8Z, 11Z, 13E)-Eicosatrienoate, Active" - metabolites: !!omap - m00378c: 1 @@ -286670,45 +286670,45 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000083807 or ENSG00000113396 or ENSG00000130304 or ENSG00000140284 or ENSG00000143554 or ENSG00000167114 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16868315, PMID: 17901542, journal of lipid research (2006) vol 47 page 665-672, 16357361, PMID: 17495600 + - gene_reaction_rule: "ENSG00000083807 or ENSG00000113396 or ENSG00000130304 or ENSG00000140284 or ENSG00000143554 or ENSG00000167114" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16868315, PMID: 17901542, journal of lipid research (2006) vol 47 page 665-672, 16357361, PMID: 17495600" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE7082UPKt + - id: "CE7082UPKt" - name: "Transport of 15(S)-HEPE, Diffusion" - metabolites: !!omap - m00376c: 1 - m00376s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 17494091, PMID: 17164132, PMID: 8593700 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 17494091, PMID: 17164132, PMID: 8593700" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE7172UPKt + - id: "CE7172UPKt" - name: "Transport of 14, 15-DIHETE, Diffusion" - metabolites: !!omap - m00365c: 1 - m00365s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 17494091, PMID: 17164132, PMID: 8593700 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 17494091, PMID: 17164132, PMID: 8593700" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: NRVNCABCt + - id: "NRVNCABCt" - name: "Transport of 15-Tetracosenoate, Diffusion" - metabolites: !!omap - m01285c: 1 @@ -286720,15 +286720,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000083807 or ENSG00000113396 or ENSG00000130304 or ENSG00000140284 or ENSG00000143554 or ENSG00000167114 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16868315, PMID: 17901542, journal of lipid research (2006) vol 47 page 665-672, 16357361, PMID: 17495600 + - gene_reaction_rule: "ENSG00000083807 or ENSG00000113396 or ENSG00000130304 or ENSG00000140284 or ENSG00000143554 or ENSG00000167114" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16868315, PMID: 17901542, journal of lipid research (2006) vol 47 page 665-672, 16357361, PMID: 17495600" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PAFABCt + - id: "PAFABCt" - name: "Transport of 1-Alkyl 2-Acteylglycerol 3-Phosphocholine " - metabolites: !!omap - m00626c: -1 @@ -286740,75 +286740,75 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375 + - gene_reaction_rule: "ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PAIL_hs_SECt + - id: "PAIL_hs_SECt" - name: "Transport of 1-Phosphatidyl-1D-Myo-Inositol" - metabolites: !!omap - m02750c: -1 - m02750s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8145081 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8145081" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PAILPALM_HSSECt + - id: "PAILPALM_HSSECt" - name: "Transport of 1-Palmitoylglycerophosphoinositol" - metabolites: !!omap - pailpalm_hs_c: -1 - pailpalm_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8145081 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8145081" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PAILR_HSSECt + - id: "PAILR_HSSECt" - name: "Transport of 1-Arachidonoylglycerophosphoinositol" - metabolites: !!omap - pailar_hs_c: -1 - pailar_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8145081 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8145081" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PAILSTE_HSSECt + - id: "PAILSTE_HSSECt" - name: "Transport of 1-Stearoylglycerophosphoinositol" - metabolites: !!omap - pailste_hs_c: -1 - pailste_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8145081 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8145081" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHLN225_HSABCt + - id: "PCHLN225_HSABCt" - name: "Transport of 1-Docosahexenoylglycerophosphocholine (Delta 4, 7, 10, 13, 16, 19), Sn1-Lpc (22:6)" - metabolites: !!omap - m01285c: 1 @@ -286820,15 +286820,15 @@ - pcholn226_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375 + - gene_reaction_rule: "ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOL2LINL_HSABCt + - id: "PCHOL2LINL_HSABCt" - name: "Transport of 2-Linoleoylglycerophosphocholine" - metabolites: !!omap - m01285c: 1 @@ -286840,15 +286840,15 @@ - pchol2linl_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375 + - gene_reaction_rule: "ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOL2OLE_HSABCt + - id: "PCHOL2OLE_HSABCt" - name: "Transport of 2-Oleoylglycerophosphocholine" - metabolites: !!omap - m01285c: 1 @@ -286860,15 +286860,15 @@ - pchol2ole_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375 + - gene_reaction_rule: "ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOL2STE_HSABCt + - id: "PCHOL2STE_HSABCt" - name: "Transport of 2-Stearoylglycerophosphocholine" - metabolites: !!omap - m01285c: 1 @@ -286880,15 +286880,15 @@ - pchol2ste_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375 + - gene_reaction_rule: "ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLAR_HSABCt + - id: "PCHOLAR_HSABCt" - name: "Transport of 1-Arachidonoyl-Glycero-3-Phosphocholine" - metabolites: !!omap - m01285c: 1 @@ -286900,15 +286900,15 @@ - pcholar_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375 + - gene_reaction_rule: "ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLDOC_HSABCt + - id: "PCHOLDOC_HSABCt" - name: "Transport of 1-Docosahexaenoylglycerophosphocholine" - metabolites: !!omap - m01285c: 1 @@ -286920,15 +286920,15 @@ - pcholdoc_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375 + - gene_reaction_rule: "ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLEIC_HSABCt + - id: "PCHOLEIC_HSABCt" - name: "Transport of 1-Eicosadienoylglycerophosphocholine (Delta 11, 14)" - metabolites: !!omap - m01285c: 1 @@ -286940,15 +286940,15 @@ - pcholeic_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375 + - gene_reaction_rule: "ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLET_HSABCt + - id: "PCHOLET_HSABCt" - name: "Transport of 1-Eicosatrienoylglycerophosphocholine (Delta 11, 14, 17)" - metabolites: !!omap - m01285c: 1 @@ -286960,15 +286960,15 @@ - pcholet_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375 + - gene_reaction_rule: "ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLHEP_HSABCt + - id: "PCHOLHEP_HSABCt" - name: "Transport of 1-Heptadecanoylglycerophosphocholine" - metabolites: !!omap - m01285c: 1 @@ -286980,15 +286980,15 @@ - pcholhep_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375 + - gene_reaction_rule: "ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLLINL_HSABCt + - id: "PCHOLLINL_HSABCt" - name: "Transport of 1-Linoleoylglycerophosphocholine (Delta 9, 12)" - metabolites: !!omap - m01285c: 1 @@ -287000,15 +287000,15 @@ - pchollinl_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375 + - gene_reaction_rule: "ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLMYR_HsABCt + - id: "PCHOLMYR_HsABCt" - name: "Transport of 1-Myristoylglycerophosphocholine" - metabolites: !!omap - m01285c: 1 @@ -287020,15 +287020,15 @@ - pcholmyr_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375 + - gene_reaction_rule: "ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLN15_HSABCt + - id: "PCHOLN15_HSABCt" - name: "Transport of 1-Pentadecanoylglycerophosphocholine, Sn1-Lpc (15:0)" - metabolites: !!omap - m01285c: 1 @@ -287040,15 +287040,15 @@ - pcholn15_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375 + - gene_reaction_rule: "ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLN183_HSABCt + - id: "PCHOLN183_HSABCt" - name: "Transport of 1-Octadeca-Trienoylglycerophosphocholine, Sn1-Lpc (18:3, Delta 9, 12, 15)" - metabolites: !!omap - m01285c: 1 @@ -287060,15 +287060,15 @@ - pcholn183_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375 + - gene_reaction_rule: "ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLN1836_HSABCt + - id: "PCHOLN1836_HSABCt" - name: "Transport of 1-Octadeca-Trienoylglycerophosphocholine, Sn1-Lpc (18:3, Delta 6, 9, 12)" - metabolites: !!omap - m01285c: 1 @@ -287080,15 +287080,15 @@ - pcholn1836_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375 + - gene_reaction_rule: "ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLN19_HSABCt + - id: "PCHOLN19_HSABCt" - name: "Transport of 1-NoNADecanoylglycerophosphocholine, Sn1-Lpc (19:0)" - metabolites: !!omap - m01285c: 1 @@ -287100,15 +287100,15 @@ - pcholn19_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375 + - gene_reaction_rule: "ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLN201_HSABCt + - id: "PCHOLN201_HSABCt" - name: "Transport of 1-Eicosenoylglycerophosphocholine (Delta 11) , Sn1-Lpc (20:1)" - metabolites: !!omap - m01285c: 1 @@ -287120,15 +287120,15 @@ - pcholn201_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375 + - gene_reaction_rule: "ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLN203_HSABCt + - id: "PCHOLN203_HSABCt" - name: "Transport of 1-Dihomo-Linolenoylglycerophosphocholine (20:3, Delta 8, 11, 14), Lysopc A C20:3" - metabolites: !!omap - m01285c: 1 @@ -287140,15 +287140,15 @@ - pcholn203_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375 + - gene_reaction_rule: "ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLN204_HSABCt + - id: "PCHOLN204_HSABCt" - name: "Transport of 1-Eicosatetraenoylglycerophosphocholine (Delta 8, 11, 14, 17), Sn1-Lpc (20:4)" - metabolites: !!omap - m01285c: 1 @@ -287160,15 +287160,15 @@ - pcholn204_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375 + - gene_reaction_rule: "ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLN205_HSABCt + - id: "PCHOLN205_HSABCt" - name: "Transport of 1-Eicosapentenoylglycerophosphocholine (Delta 5, 8, 11, 14, 17), Sn1-Lpc (20:5)" - metabolites: !!omap - m01285c: 1 @@ -287180,15 +287180,15 @@ - pcholn205_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375 + - gene_reaction_rule: "ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLN224_HSABCt + - id: "PCHOLN224_HSABCt" - name: "Transport of 1-Docosatetraenoylglycerophosphocholine (Delta 7, 10, 13, 16), Sn1-Lpc (22:4)" - metabolites: !!omap - m01285c: 1 @@ -287200,15 +287200,15 @@ - pcholn224_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375 + - gene_reaction_rule: "ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLN225_HSABCt + - id: "PCHOLN225_HSABCt" - name: "Transport of 1-Docosapentenoylglycerophosphocholine (Delta 7, 10, 13, 16, 19), Sn1-Lpc (22:5)-W3" - metabolites: !!omap - m01285c: 1 @@ -287220,15 +287220,15 @@ - pcholn225_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375 + - gene_reaction_rule: "ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLN2254_HSABCt + - id: "PCHOLN2254_HSABCt" - name: "Transport of 1-Docosapentenoylglycerophosphocholine (Delta 4, 7, 10, 13, 16), Sn1-Lpc (22:5)-W6" - metabolites: !!omap - m01285c: 1 @@ -287240,15 +287240,15 @@ - pcholn2254_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375 + - gene_reaction_rule: "ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLN264_HSABCt + - id: "PCHOLN264_HSABCt" - name: "Transport of 1-Lignocericylglycerophosphocholine (24:0), Lysopc A C24" - metabolites: !!omap - m01285c: 1 @@ -287260,15 +287260,15 @@ - pcholn24_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375 + - gene_reaction_rule: "ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLOLE_HSABCt + - id: "PCHOLOLE_HSABCt" - name: "Transport of 1-Oleoylglycerophosphocholine (Delta 9)" - metabolites: !!omap - m01285c: 1 @@ -287280,15 +287280,15 @@ - pcholole_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375 + - gene_reaction_rule: "ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLPALME-HSABCt + - id: "PCHOLPALME-HSABCt" - name: "Transport of 1-Palmitoleoylglycerophosphocholine (Delta 9)" - metabolites: !!omap - m01285c: 1 @@ -287300,15 +287300,15 @@ - pcholpalme_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375 + - gene_reaction_rule: "ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLSTE_HSABCt + - id: "PCHOLSTE_HSABCt" - name: "Transport of 1-Stearoylglycerophosphocholine" - metabolites: !!omap - m01285c: 1 @@ -287320,15 +287320,15 @@ - pcholste_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375 + - gene_reaction_rule: "ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PE12_HSABCt + - id: "PE12_HSABCt" - name: "Transport of 1-Didecanoylglycerophosphoethanolamine (C12:0 Pe)" - metabolites: !!omap - m01285c: 1 @@ -287340,15 +287340,15 @@ - pe12_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068650 or ENSG00000101974 - - rxnFrom: Recon3D - - eccodes: 3.6.3.1 - - references: PMID: 25947375 + - gene_reaction_rule: "ENSG00000068650 or ENSG00000101974" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.1" + - references: "PMID: 25947375" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: Pe13_HSABCt + - id: "Pe13_HSABCt" - name: "Transport of 1-Tridecanoylglycerophosphoethanolamine (C13:0 Pe)" - metabolites: !!omap - m01285c: 1 @@ -287360,15 +287360,15 @@ - pe13_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068650 or ENSG00000101974 - - rxnFrom: Recon3D - - eccodes: 3.6.3.1 - - references: PMID: 25947375 + - gene_reaction_rule: "ENSG00000068650 or ENSG00000101974" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.1" + - references: "PMID: 25947375" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PE14_HSABCt + - id: "PE14_HSABCt" - name: "Transport of 1-Myristoylglycerophosphoethanolamine (C14:0 Pe)" - metabolites: !!omap - m01285c: 1 @@ -287380,15 +287380,15 @@ - pe14_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068650 or ENSG00000101974 - - rxnFrom: Recon3D - - eccodes: 3.6.3.1 - - references: PMID: 25947375 + - gene_reaction_rule: "ENSG00000068650 or ENSG00000101974" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.1" + - references: "PMID: 25947375" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PE15_HSABCt + - id: "PE15_HSABCt" - name: "Transport of 1-Pentadecanoylglycerophosphoethanolamine (C15:0 Pe)" - metabolites: !!omap - m01285c: 1 @@ -287400,15 +287400,15 @@ - pe15_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068650 or ENSG00000101974 - - rxnFrom: Recon3D - - eccodes: 3.6.3.1 - - references: PMID: 25947375 + - gene_reaction_rule: "ENSG00000068650 or ENSG00000101974" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.1" + - references: "PMID: 25947375" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PE161_HSABCt + - id: "PE161_HSABCt" - name: "Transport of 1-Hexadecenoylglycerophosphoethanolamine (C16:1 Pe, Delta 9)" - metabolites: !!omap - m01285c: 1 @@ -287420,15 +287420,15 @@ - pe161_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068650 or ENSG00000101974 - - rxnFrom: Recon3D - - eccodes: 3.6.3.1 - - references: PMID: 25947375 + - gene_reaction_rule: "ENSG00000068650 or ENSG00000101974" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.1" + - references: "PMID: 25947375" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PE17_HSABCt + - id: "PE17_HSABCt" - name: "Transport of 1-Heptadecanoylglycerophosphoethanolamine (C17:0 Pe)" - metabolites: !!omap - m01285c: 1 @@ -287440,15 +287440,15 @@ - pe17_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068650 or ENSG00000101974 - - rxnFrom: Recon3D - - eccodes: 3.6.3.1 - - references: PMID: 25947375 + - gene_reaction_rule: "ENSG00000068650 or ENSG00000101974" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.1" + - references: "PMID: 25947375" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PE203_HSABCt + - id: "PE203_HSABCt" - name: "1-Eicosatrienoylglycerophosphoethanolamine (Delta 11, 14, 17), Lpe (20:3)" - metabolites: !!omap - m01285c: 1 @@ -287460,15 +287460,15 @@ - pe203_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068650 or ENSG00000101974 - - rxnFrom: Recon3D - - eccodes: 3.6.3.1 - - references: PMID: 25947375 + - gene_reaction_rule: "ENSG00000068650 or ENSG00000101974" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.1" + - references: "PMID: 25947375" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PE226_HSABCt + - id: "PE226_HSABCt" - name: "Transport of 1-Docosahexenoylglyceroethanolamine (Delta 4, 7, 10, 13, 16, 19), Lpe (22:6)" - metabolites: !!omap - m01285c: 1 @@ -287480,15 +287480,15 @@ - pe226_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068650 or ENSG00000101974 - - rxnFrom: Recon3D - - eccodes: 3.6.3.1 - - references: PMID: 25947375 + - gene_reaction_rule: "ENSG00000068650 or ENSG00000101974" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.1" + - references: "PMID: 25947375" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PE2LINL_HSABCt + - id: "PE2LINL_HSABCt" - name: "Transport of 2-Linoleoylglycerophosphoethanolamine" - metabolites: !!omap - m01285c: 1 @@ -287500,15 +287500,15 @@ - pe2linl_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068650 or ENSG00000101974 - - rxnFrom: Recon3D - - eccodes: 3.6.3.1 - - references: PMID: 25947375 + - gene_reaction_rule: "ENSG00000068650 or ENSG00000101974" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.1" + - references: "PMID: 25947375" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PEAR_HSABCt + - id: "PEAR_HSABCt" - name: "Transport of 1-Arachidonoyl-Sn-Glycero-3-Phosphoethanolamine" - metabolites: !!omap - m01285c: 1 @@ -287520,15 +287520,15 @@ - pear_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068650 or ENSG00000101974 - - rxnFrom: Recon3D - - eccodes: 3.6.3.1 - - references: PMID: 25947375 + - gene_reaction_rule: "ENSG00000068650 or ENSG00000101974" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.1" + - references: "PMID: 25947375" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PEDH203_HSABCt + - id: "PEDH203_HSABCt" - name: "Transport of 1-Dihomo-Linolenoylglycerophosphoethanolamine (20:3, Delta 8, 11, 14)" - metabolites: !!omap - m01285c: 1 @@ -287540,15 +287540,15 @@ - pedh203_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068650 or ENSG00000101974 - - rxnFrom: Recon3D - - eccodes: 3.6.3.1 - - references: PMID: 25947375 + - gene_reaction_rule: "ENSG00000068650 or ENSG00000101974" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.1" + - references: "PMID: 25947375" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PELINL_HSABCt + - id: "PELINL_HSABCt" - name: "Transport of 1-Linoleoylglycerophosphoethanolamine (Delta 9, 12)" - metabolites: !!omap - m01285c: 1 @@ -287560,15 +287560,15 @@ - pelinl_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068650 or ENSG00000101974 - - rxnFrom: Recon3D - - eccodes: 3.6.3.1 - - references: PMID: 25947375 + - gene_reaction_rule: "ENSG00000068650 or ENSG00000101974" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.1" + - references: "PMID: 25947375" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PELPALM_HSABCt + - id: "PELPALM_HSABCt" - name: "Transport of 1-Palmitoylglycerophosphoethanolamine" - metabolites: !!omap - m01285c: 1 @@ -287580,15 +287580,15 @@ - pepalm_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068650 or ENSG00000101974 - - rxnFrom: Recon3D - - eccodes: 3.6.3.1 - - references: PMID: 25947375 + - gene_reaction_rule: "ENSG00000068650 or ENSG00000101974" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.1" + - references: "PMID: 25947375" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PEOLE_HSABCt + - id: "PEOLE_HSABCt" - name: "Transport of 1-Oleoylglycerophosphoethanolamine (Delta 9)" - metabolites: !!omap - m01285c: 1 @@ -287600,15 +287600,15 @@ - peole_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068650 or ENSG00000101974 - - rxnFrom: Recon3D - - eccodes: 3.6.3.1 - - references: PMID: 25947375 + - gene_reaction_rule: "ENSG00000068650 or ENSG00000101974" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.1" + - references: "PMID: 25947375" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PEPALM_HSASBCt + - id: "PEPALM_HSASBCt" - name: "Transport of 1-Palmitoylglycerophosphocholine" - metabolites: !!omap - m01285c: 1 @@ -287620,15 +287620,15 @@ - pcholpalm_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375 + - gene_reaction_rule: "ENSG00000005471 or ENSG00000081923 or ENSG00000143515 or ENSG00000165029 or ENSG00000206190" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID: 9070263, OMIM:171060, PMID: 11355874, PMID: 25947375" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PESTE_HSABCt + - id: "PESTE_HSABCt" - name: "Transport of 1-Stearoylglycerophosphoethanolamine" - metabolites: !!omap - m01285c: 1 @@ -287640,270 +287640,270 @@ - peste_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000068650 or ENSG00000101974 - - rxnFrom: Recon3D - - eccodes: 3.6.3.1 - - references: PMID: 25947375 + - gene_reaction_rule: "ENSG00000068650 or ENSG00000101974" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.1" + - references: "PMID: 25947375" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN_HsSECt + - id: "SPHMYLN_HsSECt" - name: "Transport of Sphingomyeline" - metabolites: !!omap - m02908c: -1 - m02908s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN180241_hs_SECt + - id: "SPHMYLN180241_hs_SECt" - name: "Transport of Sphingomyelin (D18:0/24:1)" - metabolites: !!omap - sphmyln180241_hs_c: -1 - sphmyln180241_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN18114_hs_SECt + - id: "SPHMYLN18114_hs_SECt" - name: "Transport of Sphingomyelin (D18:1/14:0)" - metabolites: !!omap - sphmyln18114_hs_c: -1 - sphmyln18114_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN18115_hs_SECt + - id: "SPHMYLN18115_hs_SECt" - name: "Transport of Sphingomyelin (D18:1/15:0)" - metabolites: !!omap - sphmyln18115_hs_c: -1 - sphmyln18115_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN18116_hs_SECt + - id: "SPHMYLN18116_hs_SECt" - name: "Transport of Sphingomyelin (D18:1/16:0)" - metabolites: !!omap - sphmyln18116_hs_c: -1 - sphmyln18116_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN181161_hs_SECt + - id: "SPHMYLN181161_hs_SECt" - name: "Transport of Sphingomyelin (D18:1/16:1)" - metabolites: !!omap - sphmyln181161_hs_c: -1 - sphmyln181161_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN18117_hs_SECt + - id: "SPHMYLN18117_hs_SECt" - name: "Transport of Sphingomyelin (D18:1/17:0)" - metabolites: !!omap - sphmyln18117_hs_c: -1 - sphmyln18117_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.3.1.13 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.13" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN18118_hs_SECt + - id: "SPHMYLN18118_hs_SECt" - name: "Transport of Sphingomyelin (D18:1/18:0)" - metabolites: !!omap - sphmyln18118_hs_c: -1 - sphmyln18118_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN181181_hs_SECt + - id: "SPHMYLN181181_hs_SECt" - name: "Transport of Sphingomyelin (D18:1/18:1)" - metabolites: !!omap - sphmyln181181_hs_c: -1 - sphmyln181181_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN18120_hs_SECt + - id: "SPHMYLN18120_hs_SECt" - name: "Transport of Sphingomyelin (D18:1/20:0)" - metabolites: !!omap - sphmyln18120_hs_c: -1 - sphmyln18120_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN181201_hs_SECt + - id: "SPHMYLN181201_hs_SECt" - name: "Transport of Sphingomyelin (D18:1/20:1)" - metabolites: !!omap - sphmyln181201_hs_c: -1 - sphmyln181201_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN18121_hs_SECt + - id: "SPHMYLN18121_hs_SECt" - name: "Transport of Sphingomyelin (D18:1/21:0)" - metabolites: !!omap - sphmyln18121_hs_c: -1 - sphmyln18121_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN18122_hs_SECt + - id: "SPHMYLN18122_hs_SECt" - name: "Transport of Sphingomyelin (D18:1/22:0)" - metabolites: !!omap - sphmyln18122_hs_c: -1 - sphmyln18122_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN181221_hs_SECt + - id: "SPHMYLN181221_hs_SECt" - name: "Transport of Sphingomyelin (D18:1/22:1)" - metabolites: !!omap - sphmyln181221_hs_c: -1 - sphmyln181221_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.3.1.13 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.3.1.13" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN18123_hs_SECt + - id: "SPHMYLN18123_hs_SECt" - name: "Transport of Sphingomyelin (D18:1/23:0)" - metabolites: !!omap - sphmyln18123_hs_c: -1 - sphmyln18123_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN1824_hs_SECt + - id: "SPHMYLN1824_hs_SECt" - name: "Transport of Sphingomyelin (D18:0/24:0)" - metabolites: !!omap - sphmyln1824_hs_c: -1 - sphmyln1824_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN1825_hs_SECt + - id: "SPHMYLN1825_hs_SECt" - name: "Transport of Sphingomyelin (D18:0/25:0)" - metabolites: !!omap - sphmyln1825_hs_c: -1 - sphmyln1825_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3AIBt1 + - id: "3AIBt1" - name: "3-Amino-Isobutyrate Transport, Proton Symport" - metabolites: !!omap - m02039c: 1 @@ -287912,15 +287912,15 @@ - m02325s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: 'PMID: 21501141, PMID: 15058382, PMID:18195088.' + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "'PMID: 21501141, PMID: 15058382, PMID:18195088.'" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: APRGSTRNt1e + - id: "APRGSTRNt1e" - name: "Hydroxyprogesterone Transport, Antiport" - metabolites: !!omap - m00580c: 1 @@ -287929,15 +287929,15 @@ - m02147s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000173638 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 17687501 + - gene_reaction_rule: "ENSG00000173638" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 17687501" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: DIGALSGALSIDEATPte + - id: "DIGALSGALSIDEATPte" - name: "Extracellular Transport of Digalactosylceramidesulfate, Active Transport" - metabolites: !!omap - m01285c: 1 @@ -287949,705 +287949,705 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 or ENSG00000103222 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: + - gene_reaction_rule: "ENSG00000085563 or ENSG00000103222" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PAIL_hs_t1e + - id: "PAIL_hs_t1e" - name: "Transport of 1-Phosphatidyl-1D-Myo-Inositol, Vescicular" - metabolites: !!omap - m02750c: 1 - m02750s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PAILR_HSt1e + - id: "PAILR_HSt1e" - name: "Transport of 1-Arachidonoylglycerophosphoinositol, Vescicular" - metabolites: !!omap - pailar_hs_c: 1 - pailar_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PAILPALM_HSt1e + - id: "PAILPALM_HSt1e" - name: "Transport of 1-Palmitoylglycerophosphoinositol, Vescicular" - metabolites: !!omap - pailpalm_hs_c: 1 - pailpalm_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PAILSTE_HSt1e + - id: "PAILSTE_HSt1e" - name: "Transport of 1-Stearoylglycerophosphoinositol, Vescicular" - metabolites: !!omap - pailste_hs_c: 1 - pailste_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOL2LINL_HSt1e + - id: "PCHOL2LINL_HSt1e" - name: "Transport of 2-Linoleoylglycerophosphocholine, Vescicular" - metabolites: !!omap - pchol2linl_hs_c: 1 - pchol2linl_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOL2OLE_HSt1e + - id: "PCHOL2OLE_HSt1e" - name: "Transport of 2-Oleoylglycerophosphocholine, Vescicular" - metabolites: !!omap - pchol2ole_hs_c: 1 - pchol2ole_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOL2STE_HSt1e + - id: "PCHOL2STE_HSt1e" - name: "Transport of 2-Stearoylglycerophosphocholine, Vescicular" - metabolites: !!omap - pchol2ste_hs_c: 1 - pchol2ste_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLAR_HSt1e + - id: "PCHOLAR_HSt1e" - name: "Transport of 1-Arachidonoyl-Glycero-3-Phosphocholine, Vescicular" - metabolites: !!omap - pcholar_hs_c: 1 - pcholar_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLDOC_HSt1e + - id: "PCHOLDOC_HSt1e" - name: "Transport of 1-Docosahexaenoylglycerophosphocholine, Vescicular" - metabolites: !!omap - pcholdoc_hs_c: 1 - pcholdoc_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLEIC_HSt1e + - id: "PCHOLEIC_HSt1e" - name: "Transport of 1-Eicosadienoylglycerophosphocholine (Delta 11, 14), Vescicular" - metabolites: !!omap - pcholeic_hs_c: 1 - pcholeic_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLET_HSt1e + - id: "PCHOLET_HSt1e" - name: "Transport of 1-Eicosatrienoylglycerophosphocholine (Delta 11, 14, 17), Vescicular" - metabolites: !!omap - pcholet_hs_c: 1 - pcholet_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLHEP_HSt1e + - id: "PCHOLHEP_HSt1e" - name: "Transport of 1-Heptadecanoylglycerophosphocholine, Vescicular" - metabolites: !!omap - pcholhep_hs_c: 1 - pcholhep_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLLINL_HSt1e + - id: "PCHOLLINL_HSt1e" - name: "Transport of 1-Linoleoylglycerophosphocholine (Delta 9, 12), Vescicular" - metabolites: !!omap - pchollinl_hs_c: 1 - pchollinl_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLMYR_Hst1e + - id: "PCHOLMYR_Hst1e" - name: "Transport of 1-Myristoylglycerophosphocholine, Vescicular" - metabolites: !!omap - pcholmyr_hs_c: 1 - pcholmyr_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLN15_HSt1e + - id: "PCHOLN15_HSt1e" - name: "Transport of 1-Pentadecanoylglycerophosphocholine, Sn1-Lpc (15:0), Vescicular" - metabolites: !!omap - pcholn15_hs_c: 1 - pcholn15_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLN183_HSt1e + - id: "PCHOLN183_HSt1e" - name: "Transport of 1-Octadeca-Trienoylglycerophosphocholine, Sn1-Lpc (18:3, Delta 9, 12, 15), Vescicular" - metabolites: !!omap - pcholn183_hs_c: 1 - pcholn183_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLN1836_HSt1e + - id: "PCHOLN1836_HSt1e" - name: "Transport of 1-Octadeca-Trienoylglycerophosphocholine, Sn1-Lpc (18:3, Delta 6, 9, 12), Vescicular" - metabolites: !!omap - pcholn1836_hs_c: 1 - pcholn1836_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLN19_HSt1e + - id: "PCHOLN19_HSt1e" - name: "Transport of 1-NoNADecanoylglycerophosphocholine, Sn1-Lpc (19:0), Vescicular" - metabolites: !!omap - pcholn19_hs_c: 1 - pcholn19_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLN201_HSt1e + - id: "PCHOLN201_HSt1e" - name: "Transport of 1-Eicosenoylglycerophosphocholine (Delta 11) , Sn1-Lpc (20:1), Vescicular" - metabolites: !!omap - pcholn201_hs_c: 1 - pcholn201_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLN203_HSt1e + - id: "PCHOLN203_HSt1e" - name: "Transport of 1-Dihomo-Linolenoylglycerophosphocholine (20:3, Delta 8, 11, 14), Lysopc A C20:3, Vescicular" - metabolites: !!omap - pcholn203_hs_c: 1 - pcholn203_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLN204_HSt1e + - id: "PCHOLN204_HSt1e" - name: "Transport of 1-Eicosatetraenoylglycerophosphocholine (Delta 8, 11, 14, 17), Sn1-Lpc (20:4), Vescicular" - metabolites: !!omap - pcholn204_hs_c: 1 - pcholn204_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLN205_HSt1e + - id: "PCHOLN205_HSt1e" - name: "Transport of 1-Eicosapentenoylglycerophosphocholine (Delta 5, 8, 11, 14, 17), Sn1-Lpc (20:5), Vescicular" - metabolites: !!omap - pcholn205_hs_c: 1 - pcholn205_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLN224_HSt1e + - id: "PCHOLN224_HSt1e" - name: "Transport of 1-Docosatetraenoylglycerophosphocholine (Delta 7, 10, 13, 16), Sn1-Lpc (22:4), Vescicular" - metabolites: !!omap - pcholn224_hs_c: 1 - pcholn224_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLN225_HSt1e + - id: "PCHOLN225_HSt1e" - name: "Transport of 1-Docosapentenoylglycerophosphocholine (Delta 7, 10, 13, 16, 19), Sn1-Lpc (22:5)-W3, Vescicular" - metabolites: !!omap - pcholn225_hs_c: 1 - pcholn225_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLN2254_HSt1e + - id: "PCHOLN2254_HSt1e" - name: "Transport of 1-Docosapentenoylglycerophosphocholine (Delta 4, 7, 10, 13, 16), Sn1-Lpc (22:5)-W6, Vescicular" - metabolites: !!omap - pcholn2254_hs_c: 1 - pcholn2254_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHLN225_HSt1e + - id: "PCHLN225_HSt1e" - name: "Transport of 1-Docosahexenoylglycerophosphocholine (Delta 4, 7, 10, 13, 16, 19), Sn1-Lpc (22:6), Vescicular" - metabolites: !!omap - pcholn226_hs_c: 1 - pcholn226_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLN264_HSt1e + - id: "PCHOLN264_HSt1e" - name: "Transport of 1-Lignocericylglycerophosphocholine (24:0), Lysopc A C24, Vescicular" - metabolites: !!omap - pcholn24_hs_c: 1 - pcholn24_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLOLE_HSt1e + - id: "PCHOLOLE_HSt1e" - name: "Transport of 1-Oleoylglycerophosphocholine (Delta 9), Vescicular" - metabolites: !!omap - pcholole_hs_c: 1 - pcholole_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PEPALM_HSt1e + - id: "PEPALM_HSt1e" - name: "Transport of 1-Palmitoylglycerophosphocholine, Vescicular" - metabolites: !!omap - pcholpalm_hs_c: 1 - pcholpalm_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLPALME-HSt1e + - id: "PCHOLPALME-HSt1e" - name: "Transport of 1-Palmitoleoylglycerophosphocholine (Delta 9), Vescicular" - metabolites: !!omap - pcholpalme_hs_c: 1 - pcholpalme_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOLSTE_HSt1e + - id: "PCHOLSTE_HSt1e" - name: "Transport of 1-Stearoylglycerophosphocholine, Vescicular" - metabolites: !!omap - pcholste_hs_c: 1 - pcholste_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PE12_HSt1e + - id: "PE12_HSt1e" - name: "Transport of 1-Didecanoylglycerophosphoethanolamine (C12:0 Pe), Vescicular" - metabolites: !!omap - pe12_hs_c: 1 - pe12_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: Pe13_HSt1e + - id: "Pe13_HSt1e" - name: "Transport of 1-Tridecanoylglycerophosphoethanolamine (C13:0 Pe), Vescicular" - metabolites: !!omap - pe13_hs_c: 1 - pe13_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PE14_HSt1e + - id: "PE14_HSt1e" - name: "Transport of 1-Myristoylglycerophosphoethanolamine (C14:0 Pe), Vescicular" - metabolites: !!omap - pe14_hs_c: 1 - pe14_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PE15_HSt1e + - id: "PE15_HSt1e" - name: "Transport of 1-Pentadecanoylglycerophosphoethanolamine (C15:0 Pe), Vescicular" - metabolites: !!omap - pe15_hs_c: 1 - pe15_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PE161_HSt1e + - id: "PE161_HSt1e" - name: "Transport of 1-Hexadecenoylglycerophosphoethanolamine (C16:1 Pe, Delta 9), Vescicular" - metabolites: !!omap - pe161_hs_c: 1 - pe161_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PE17_HSt1e + - id: "PE17_HSt1e" - name: "Transport of 1-Heptadecanoylglycerophosphoethanolamine (C17:0 Pe), Vescicular" - metabolites: !!omap - pe17_hs_c: 1 - pe17_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PE203_HSt1e + - id: "PE203_HSt1e" - name: "1-Eicosatrienoylglycerophosphoethanolamine (Delta 11, 14, 17), Lpe (20:3), Vescicular" - metabolites: !!omap - pe203_hs_c: 1 - pe203_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PE226_HSt1e + - id: "PE226_HSt1e" - name: "Transport of 1-Docosahexenoylglyceroethanolamine (Delta 4, 7, 10, 13, 16, 19), Lpe (22:6), Vescicular" - metabolites: !!omap - pe226_hs_c: 1 - pe226_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PE2LINL_HSt1e + - id: "PE2LINL_HSt1e" - name: "Transport of 2-Linoleoylglycerophosphoethanolamine, Vescicular" - metabolites: !!omap - pe2linl_hs_c: 1 - pe2linl_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PEAR_HSt1e + - id: "PEAR_HSt1e" - name: "Transport of 1-Arachidonoyl-Sn-Glycero-3-Phosphoethanolamine, Vescicular" - metabolites: !!omap - pear_hs_c: 1 - pear_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PEDH203_HSt1e + - id: "PEDH203_HSt1e" - name: "Transport of 1-Dihomo-Linolenoylglycerophosphoethanolamine (20:3, Delta 8, 11, 14), Vescicular" - metabolites: !!omap - pedh203_hs_c: 1 - pedh203_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PELINL_HSt1e + - id: "PELINL_HSt1e" - name: "Transport of 1-Linoleoylglycerophosphoethanolamine (Delta 9, 12), Vescicular" - metabolites: !!omap - pelinl_hs_c: 1 - pelinl_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.6.3.44;3.6.3.1 - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44;3.6.3.1" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PEOLE_HSt1e + - id: "PEOLE_HSt1e" - name: "Transport of 1-Oleoylglycerophosphoethanolamine (Delta 9), Vescicular" - metabolites: !!omap - peole_hs_c: 1 - peole_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.6.3.1 - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.1" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PELPALM_HSt1e + - id: "PELPALM_HSt1e" - name: "Transport of 1-Palmitoylglycerophosphoethanolamine, Vescicular" - metabolites: !!omap - pepalm_hs_c: 1 - pepalm_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.6.3.1 - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.1" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PESTE_HSt1e + - id: "PESTE_HSt1e" - name: "Transport of 1-Stearoylglycerophosphoethanolamine, Vescicular" - metabolites: !!omap - peste_hs_c: 1 - peste_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.6.3.1 - - references: PMID:10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.1" + - references: "PMID:10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN_HsATPte + - id: "SPHMYLN_HsATPte" - name: "Extracellular Transport of Sphingomyeline, Active Transport" - metabolites: !!omap - m01285c: 1 @@ -288659,15 +288659,15 @@ - m02908s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 or ENSG00000103222 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: + - gene_reaction_rule: "ENSG00000085563 or ENSG00000103222" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN180241_hs_ATPt + - id: "SPHMYLN180241_hs_ATPt" - name: "Transport of Sphingomyelin (D18:0/24:1), Active Transport" - metabolites: !!omap - m01285c: 1 @@ -288679,30 +288679,30 @@ - sphmyln180241_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 or ENSG00000103222 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: + - gene_reaction_rule: "ENSG00000085563 or ENSG00000103222" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN180241_hs_t1 + - id: "SPHMYLN180241_hs_t1" - name: "Transport of Sphingomyelin (D18:0/24:1) Vescicular Transport" - metabolites: !!omap - sphmyln180241_hs_c: 1 - sphmyln180241_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.6.3.1 - - references: PMID: 11581500, PMID: 10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.1" + - references: "PMID: 11581500, PMID: 10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN18114_hs_ATPt + - id: "SPHMYLN18114_hs_ATPt" - name: "Transport of Sphingomyelin (D18:1/14:0), Active Transport" - metabolites: !!omap - m01285c: 1 @@ -288714,30 +288714,30 @@ - sphmyln18114_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 or ENSG00000103222 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: + - gene_reaction_rule: "ENSG00000085563 or ENSG00000103222" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN18114_hs_t1 + - id: "SPHMYLN18114_hs_t1" - name: "Transport of Sphingomyelin (D18:1/14:0), Vescicular Transport" - metabolites: !!omap - sphmyln18114_hs_c: 1 - sphmyln18114_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.6.3.1 - - references: PMID: 11581500, PMID: 10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.1" + - references: "PMID: 11581500, PMID: 10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN18115_hs_ATPt + - id: "SPHMYLN18115_hs_ATPt" - name: "Transport of Sphingomyelin (D18:1/15:0), Active Transport" - metabolites: !!omap - m01285c: 1 @@ -288749,30 +288749,30 @@ - sphmyln18115_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 or ENSG00000103222 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: + - gene_reaction_rule: "ENSG00000085563 or ENSG00000103222" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN18115_hs_t1 + - id: "SPHMYLN18115_hs_t1" - name: "Transport of Sphingomyelin (D18:1/15:0), Vescicular Transport" - metabolites: !!omap - sphmyln18115_hs_c: 1 - sphmyln18115_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.6.3.1 - - references: PMID: 11581500, PMID: 10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.1" + - references: "PMID: 11581500, PMID: 10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN18116_hs_ATPt + - id: "SPHMYLN18116_hs_ATPt" - name: "Transport of Sphingomyelin (D18:1/16:0), Active Transport" - metabolites: !!omap - m01285c: 1 @@ -288784,30 +288784,30 @@ - sphmyln18116_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 or ENSG00000103222 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: + - gene_reaction_rule: "ENSG00000085563 or ENSG00000103222" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN18116_hs_t1 + - id: "SPHMYLN18116_hs_t1" - name: "Transport of Sphingomyelin (D18:1/16:0), Vescicular Transport" - metabolites: !!omap - sphmyln18116_hs_c: 1 - sphmyln18116_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.6.3.1 - - references: PMID: 11581500, PMID: 10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.1" + - references: "PMID: 11581500, PMID: 10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN181161_hs_ATPt + - id: "SPHMYLN181161_hs_ATPt" - name: "Transport of Sphingomyelin (D18:1/16:1), Active Transport" - metabolites: !!omap - m01285c: 1 @@ -288819,30 +288819,30 @@ - sphmyln181161_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 or ENSG00000103222 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: + - gene_reaction_rule: "ENSG00000085563 or ENSG00000103222" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN181161_hs_t1 + - id: "SPHMYLN181161_hs_t1" - name: "Transport of Sphingomyelin (D18:1/16:1), Vescicular Transport" - metabolites: !!omap - sphmyln181161_hs_c: 1 - sphmyln181161_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.6.3.1 - - references: PMID: 11581500, PMID: 10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.1" + - references: "PMID: 11581500, PMID: 10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN18117_hs_ATPt + - id: "SPHMYLN18117_hs_ATPt" - name: "Transport of Sphingomyelin (D18:1/17:0), Active" - metabolites: !!omap - m01285c: 1 @@ -288854,30 +288854,30 @@ - sphmyln18117_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 or ENSG00000103222 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: + - gene_reaction_rule: "ENSG00000085563 or ENSG00000103222" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN18117_hs_t1 + - id: "SPHMYLN18117_hs_t1" - name: "Transport of Sphingomyelin (D18:1/17:0), Vescicular" - metabolites: !!omap - sphmyln18117_hs_c: 1 - sphmyln18117_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.6.3.1 - - references: PMID: 11581500, PMID: 10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.1" + - references: "PMID: 11581500, PMID: 10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN18118_hs_ATPt + - id: "SPHMYLN18118_hs_ATPt" - name: "Transport of Sphingomyelin (D18:1/18:0), Active" - metabolites: !!omap - m01285c: 1 @@ -288889,30 +288889,30 @@ - sphmyln18118_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 or ENSG00000103222 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: + - gene_reaction_rule: "ENSG00000085563 or ENSG00000103222" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN18118_hs_t1 + - id: "SPHMYLN18118_hs_t1" - name: "Transport of Sphingomyelin (D18:1/18:0), Vescicular" - metabolites: !!omap - sphmyln18118_hs_c: 1 - sphmyln18118_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11581500, PMID: 10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11581500, PMID: 10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN181181_hs_ATPt + - id: "SPHMYLN181181_hs_ATPt" - name: "Transport of Sphingomyelin (D18:1/18:1), Active" - metabolites: !!omap - m01285c: 1 @@ -288924,30 +288924,30 @@ - sphmyln181181_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 or ENSG00000103222 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: + - gene_reaction_rule: "ENSG00000085563 or ENSG00000103222" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN181181_hs_t1 + - id: "SPHMYLN181181_hs_t1" - name: "Transport of Sphingomyelin (D18:1/18:1), Vescicular" - metabolites: !!omap - sphmyln181181_hs_c: 1 - sphmyln181181_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11581500, PMID: 10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11581500, PMID: 10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN18120_hs_ATPt + - id: "SPHMYLN18120_hs_ATPt" - name: "Transport of Sphingomyelin (D18:1/20:0), Active" - metabolites: !!omap - m01285c: 1 @@ -288959,30 +288959,30 @@ - sphmyln18120_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 or ENSG00000103222 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: + - gene_reaction_rule: "ENSG00000085563 or ENSG00000103222" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN18120_hs_t1 + - id: "SPHMYLN18120_hs_t1" - name: "Transport of Sphingomyelin (D18:1/20:0), Vescicular" - metabolites: !!omap - sphmyln18120_hs_c: 1 - sphmyln18120_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11581500, PMID: 10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11581500, PMID: 10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN181201_hs_ATPt + - id: "SPHMYLN181201_hs_ATPt" - name: "Transport of Sphingomyelin (D18:1/20:1), Active" - metabolites: !!omap - m01285c: 1 @@ -288994,30 +288994,30 @@ - sphmyln181201_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 or ENSG00000103222 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: + - gene_reaction_rule: "ENSG00000085563 or ENSG00000103222" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN181201_hs_t1 + - id: "SPHMYLN181201_hs_t1" - name: "Transport of Sphingomyelin (D18:1/20:1), Vescicular" - metabolites: !!omap - sphmyln181201_hs_c: 1 - sphmyln181201_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11581500, PMID: 10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11581500, PMID: 10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN18121_hs_ATPt + - id: "SPHMYLN18121_hs_ATPt" - name: "Transport of Sphingomyelin (D18:1/21:0), Active" - metabolites: !!omap - m01285c: 1 @@ -289029,30 +289029,30 @@ - sphmyln18121_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 or ENSG00000103222 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: + - gene_reaction_rule: "ENSG00000085563 or ENSG00000103222" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN18121_hs_t1 + - id: "SPHMYLN18121_hs_t1" - name: "Transport of Sphingomyelin (D18:1/21:0), Vescicular" - metabolites: !!omap - sphmyln18121_hs_c: 1 - sphmyln18121_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11581500, PMID: 10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11581500, PMID: 10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN18122_hs_ATPt + - id: "SPHMYLN18122_hs_ATPt" - name: "Transport of Sphingomyelin (D18:1/22:0), Active Transport" - metabolites: !!omap - m01285c: 1 @@ -289064,30 +289064,30 @@ - sphmyln18122_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 or ENSG00000103222 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: + - gene_reaction_rule: "ENSG00000085563 or ENSG00000103222" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN18122_hs_t1 + - id: "SPHMYLN18122_hs_t1" - name: "Transport of Sphingomyelin (D18:1/22:0), Vescicular Transport" - metabolites: !!omap - sphmyln18122_hs_c: 1 - sphmyln18122_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11581500, PMID: 10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11581500, PMID: 10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN181221_hs_ATPt + - id: "SPHMYLN181221_hs_ATPt" - name: "Transport of Sphingomyelin (D18:1/22:1), Active" - metabolites: !!omap - m01285c: 1 @@ -289099,30 +289099,30 @@ - sphmyln181221_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 or ENSG00000103222 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: + - gene_reaction_rule: "ENSG00000085563 or ENSG00000103222" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN181221_hs_t1 + - id: "SPHMYLN181221_hs_t1" - name: "Transport of Sphingomyelin (D18:1/22:1), Vescicular" - metabolites: !!omap - sphmyln181221_hs_c: 1 - sphmyln181221_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11581500, PMID: 10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11581500, PMID: 10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN18123_hs_ATPt + - id: "SPHMYLN18123_hs_ATPt" - name: "Transport of Sphingomyelin (D18:1/23:0), Active" - metabolites: !!omap - m01285c: 1 @@ -289134,30 +289134,30 @@ - sphmyln18123_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 or ENSG00000103222 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: + - gene_reaction_rule: "ENSG00000085563 or ENSG00000103222" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN18123_hs_t1 + - id: "SPHMYLN18123_hs_t1" - name: "Transport of Sphingomyelin (D18:1/23:0), Vescicular" - metabolites: !!omap - sphmyln18123_hs_c: 1 - sphmyln18123_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11581500, PMID: 10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11581500, PMID: 10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN1824_hs_ATPt + - id: "SPHMYLN1824_hs_ATPt" - name: "Transport of Sphingomyelin (D18:0/24:0), Active Transport" - metabolites: !!omap - m01285c: 1 @@ -289169,30 +289169,30 @@ - sphmyln1824_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 or ENSG00000103222 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: + - gene_reaction_rule: "ENSG00000085563 or ENSG00000103222" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN1824_hs_t1 + - id: "SPHMYLN1824_hs_t1" - name: "Transport of Sphingomyelin (D18:0/24:0), Vescicular Transport" - metabolites: !!omap - sphmyln1824_hs_c: 1 - sphmyln1824_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11581500, PMID: 10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11581500, PMID: 10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN1825_hs_ATPt + - id: "SPHMYLN1825_hs_ATPt" - name: "Transport of Sphingomyelin (D18:0/25:0), Active Transport" - metabolites: !!omap - m01285c: 1 @@ -289204,75 +289204,75 @@ - sphmyln1825_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 or ENSG00000103222 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: + - gene_reaction_rule: "ENSG00000085563 or ENSG00000103222" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLN1825_hs_t1 + - id: "SPHMYLN1825_hs_t1" - name: "Transport of Sphingomyelin (D18:0/25:0), Vescicular Transport" - metabolites: !!omap - sphmyln1825_hs_c: 1 - sphmyln1825_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11581500, PMID: 10856719 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11581500, PMID: 10856719" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 2HXIC_Lt1e + - id: "2HXIC_Lt1e" - name: "Transport of 2-Hydroxy-Isocaproate, Extracellular, Uptake" - metabolites: !!omap - 2hxic_L_c: 1 - 2hxic_L_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 2HXIC_Lt2e + - id: "2HXIC_Lt2e" - name: "Transport of 2-Hydroxy-Isocaproate, Extracellular, Secretion" - metabolites: !!omap - 2hxic_L_c: -1 - 2hxic_L_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_2hxic_L[e] + - id: "EX_2hxic_L[e]" - name: "Exchange of 2-Hydroxy-Isocaproate" - metabolites: !!omap - 2hxic_L_s: -1 - 2hxic_L_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: 2HYDOGOAT3t + - id: "2HYDOGOAT3t" - name: "Transport of 2-Hydroxy-Glutarate, Extracellular, Antiport" - metabolites: !!omap - 2hydog_c: -1 @@ -289281,45 +289281,45 @@ - m01306s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149452 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149452" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_2hydog[e] + - id: "EX_2hydog[e]" - name: "Exchnage of 2-Hydroxy-Glutarate" - metabolites: !!omap - 2hydog_s: -1 - 2hydog_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: 2HYDOGte + - id: "2HYDOGte" - name: "Transport of 2-Hydroxy-Glutarate, Extracellular" - metabolites: !!omap - 2hydog_c: -1 - 2hydog_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16573641 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16573641" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLUTAROAT3t + - id: "GLUTAROAT3t" - name: "Transport of Glutarate, Extracellular, Antiport" - metabolites: !!omap - glutar_c: -1 @@ -289328,30 +289328,30 @@ - m01306s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149452 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000149452" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLUTARte + - id: "GLUTARte" - name: "Transport of Glutarate, Extracellular" - metabolites: !!omap - glutar_c: -1 - glutar_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: THEXDDm + - id: "THEXDDm" - name: "Hydrolysis of Trans7, 10-Hexadecadienoylcoa to 7Z, 10Z-Hexadecadienoic Acid" - metabolites: !!omap - m01597m: 1 @@ -289361,15 +289361,15 @@ - thexddcoa_m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000101473 or ENSG00000112304 or ENSG00000119673 - - rxnFrom: Recon3D - - eccodes: 3.1.2.2 - - references: PMID: 11755680 + - gene_reaction_rule: "ENSG00000097021 or ENSG00000101473 or ENSG00000112304 or ENSG00000119673" + - rxnFrom: "Recon3D" + - eccodes: "3.1.2.2" + - references: "PMID: 11755680" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: THEXDDtm + - id: "THEXDDtm" - name: "Transport of 7Z, 10Z-Hexadecadienoic Acid into Cytosol" - metabolites: !!omap - m02039i: -1 @@ -289378,15 +289378,15 @@ - thexdd_m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109424 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 20388489, PMID: 18628202, PMID: 11446442, PMID: 10428973 + - gene_reaction_rule: "ENSG00000109424" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 20388489, PMID: 18628202, PMID: 11446442, PMID: 10428973" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: THEXDDte + - id: "THEXDDte" - name: "Transport of 7Z, 10Z-Hexadecadienoic Acid into Extracellular Space" - metabolites: !!omap - m01285c: 1 @@ -289398,30 +289398,30 @@ - thexdd_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 24653705, PMID: 9831619, PMID: 5555776, PMID: 23104810 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 24653705, PMID: 9831619, PMID: 5555776, PMID: 23104810" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_thexdd[e] + - id: "EX_thexdd[e]" - name: "Exchange of 7Z, 10Z-Hexadecadienoic Acid" - metabolites: !!omap - thexdd_s: -1 - thexdd_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HEXDTRm + - id: "HEXDTRm" - name: "Hydrolysis of 7, 10, 13-Hexadecatrienoylcoa to 7, 10, 13-Hexadecatrienoic Acid" - metabolites: !!omap - hexdtr_m: 1 @@ -289431,15 +289431,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000101473 or ENSG00000112304 or ENSG00000119673 - - rxnFrom: Recon3D - - eccodes: 3.1.2.2 - - references: PMID: 11755680 + - gene_reaction_rule: "ENSG00000097021 or ENSG00000101473 or ENSG00000112304 or ENSG00000119673" + - rxnFrom: "Recon3D" + - eccodes: "3.1.2.2" + - references: "PMID: 11755680" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: HEXDTRtm + - id: "HEXDTRtm" - name: "Transport of 7, 10, 13-Hexadecatrienoic Acid into Cytosol" - metabolites: !!omap - hexdtr_c: 1 @@ -289448,15 +289448,15 @@ - m02039m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109424 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 20388489, PMID: 18628202, PMID: 11446442, PMID: 10428973 + - gene_reaction_rule: "ENSG00000109424" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 20388489, PMID: 18628202, PMID: 11446442, PMID: 10428973" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HEXDTRte + - id: "HEXDTRte" - name: "Transport of 7, 10, 13-Hexadecatrienoic Acid into Extracellular Space" - metabolites: !!omap - hexdtr_c: -1 @@ -289468,30 +289468,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 24653705, PMID: 9831619, PMID: 5555776, PMID: 23104810 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 24653705, PMID: 9831619, PMID: 5555776, PMID: 23104810" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_hexdtr[e] + - id: "EX_hexdtr[e]" - name: "Exchange of 7, 10, 13-Hexadecatrienoic Acid" - metabolites: !!omap - hexdtr_s: -1 - hexdtr_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HPDECECOAm + - id: "HPDECECOAm" - name: "Dehydrogenation of Heptadecanoyl Coa" - metabolites: !!omap - hpdececoa_m: 1 @@ -289500,15 +289500,15 @@ - m02101m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115361 - - rxnFrom: Recon3D - - eccodes: 1.3.8.8 - - references: Murray, R.K., Bender, D. A., Botham, K. M., Kennelly, P. J., Rodwell, V. W., Weil, P. A. A lange medical book: Harper's illustrated Biochemistry, (Mc Graw Hill Medical, New York, NY, 2009). + - gene_reaction_rule: "ENSG00000115361" + - rxnFrom: "Recon3D" + - eccodes: "1.3.8.8" + - references: "Murray, R.K., Bender, D. A., Botham, K. M., Kennelly, P. J., Rodwell, V. W., Weil, P. A. A lange medical book: Harper's illustrated Biochemistry, (Mc Graw Hill Medical, New York, NY, 2009)." - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: HPDECEm + - id: "HPDECEm" - name: "Hydrolysis of Heptadecenoyl Coa" - metabolites: !!omap - hpdece_m: 1 @@ -289518,15 +289518,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000101473 or ENSG00000112304 or ENSG00000119673 - - rxnFrom: Recon3D - - eccodes: 3.1.2.2 - - references: PMID: 11755680 + - gene_reaction_rule: "ENSG00000097021 or ENSG00000101473 or ENSG00000112304 or ENSG00000119673" + - rxnFrom: "Recon3D" + - eccodes: "3.1.2.2" + - references: "PMID: 11755680" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: HPDECEtm + - id: "HPDECEtm" - name: "Transport of Trans-Delta-2-Heptadecanoic Acid, Mitochondrial" - metabolites: !!omap - hpdece_c: 1 @@ -289535,15 +289535,15 @@ - m02039m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109424 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 20388489, PMID: 18628202, PMID: 11446442, PMID: 10428973 + - gene_reaction_rule: "ENSG00000109424" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 20388489, PMID: 18628202, PMID: 11446442, PMID: 10428973" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HPDECEte + - id: "HPDECEte" - name: "Transport of Trans-Delta-2-Heptadecanoic Acid, Extracellular" - metabolites: !!omap - hpdece_c: -1 @@ -289555,30 +289555,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 24653705, PMID: 9831619, PMID: 5555776, PMID: 23104810 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 24653705, PMID: 9831619, PMID: 5555776, PMID: 23104810" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_hpdece[e] + - id: "EX_hpdece[e]" - name: "Exchange of Trans-Delta-2-Heptadecanoic Acid" - metabolites: !!omap - hpdece_s: -1 - hpdece_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EIC21114TRc + - id: "EIC21114TRc" - name: "Hydrolysis of Trans, Cis, Cis-2, 11, 14-Eicosatrienoyl Coenzyme A to Trans, Cis, Cis-2, 11, 14-Eicosatrienoic Acid" - metabolites: !!omap - eic21114tr_c: 1 @@ -289588,15 +289588,15 @@ - m03007c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000112304 or ENSG00000162390 or ENSG00000184227 - - rxnFrom: Recon3D - - eccodes: 3.1.2.2 - - references: PMID: 11755680 + - gene_reaction_rule: "ENSG00000097021 or ENSG00000112304 or ENSG00000162390 or ENSG00000184227" + - rxnFrom: "Recon3D" + - eccodes: "3.1.2.2" + - references: "PMID: 11755680" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: EIC21114TRte + - id: "EIC21114TRte" - name: "Transport of Trans, Cis, Cis-2, 11, 14-Eicosatrienoic Acid" - metabolites: !!omap - eic21114tr_c: -1 @@ -289608,30 +289608,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_eic21114tr[e] + - id: "EX_eic21114tr[e]" - name: "Exchange of Trans, Cis, Cis-2, 11, 14-Eicosatrienoic Acid" - metabolites: !!omap - eic21114tr_s: -1 - eic21114tr_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: 5EIPENCm + - id: "5EIPENCm" - name: "Hydrolysis of 5, 8, 11, 14, 17-Eicosapentenoylcoa to 5, 8, 11, 14, 17-Eicosapentenoic Acid" - metabolites: !!omap - 5eipenc_m: 1 @@ -289641,15 +289641,15 @@ - m02040m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000097021 or ENSG00000101473 or ENSG00000112304 or ENSG00000119673 - - rxnFrom: Recon3D - - eccodes: 3.1.2.2 - - references: PMID: 11755680 + - gene_reaction_rule: "ENSG00000097021 or ENSG00000101473 or ENSG00000112304 or ENSG00000119673" + - rxnFrom: "Recon3D" + - eccodes: "3.1.2.2" + - references: "PMID: 11755680" - subsystem: - - Fatty acid oxidation + - "Fatty acid oxidation" - confidence_score: 0 - !!omap - - id: 5EIPENCtm + - id: "5EIPENCtm" - name: "Transport of 5, 8, 11, 14, 17-Eicosapentenoic Acid, Mitochondrial" - metabolites: !!omap - 5eipenc_c: 1 @@ -289658,15 +289658,15 @@ - m02039m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000109424 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 20388489, PMID: 18628202, PMID: 11446442, PMID: 10428973 + - gene_reaction_rule: "ENSG00000109424" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 20388489, PMID: 18628202, PMID: 11446442, PMID: 10428973" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 5EIPENCte + - id: "5EIPENCte" - name: "Transport of 5, 8, 11, 14, 17-Eicosapentenoic Acid, Extracellular Space" - metabolites: !!omap - 5eipenc_c: -1 @@ -289678,30 +289678,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 24653705, PMID: 9831619, PMID: 5555776, PMID: 23104810 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 24653705, PMID: 9831619, PMID: 5555776, PMID: 23104810" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_5eipenc[e] + - id: "EX_5eipenc[e]" - name: "Exchange of 5, 8, 11, 14, 17-Eicosapentenoic Acid" - metabolites: !!omap - 5eipenc_s: -1 - 5eipenc_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: T4HCINNMte + - id: "T4HCINNMte" - name: "Transport of Trans-4-Coumarate, Extracellular" - metabolites: !!omap - m00981c: -1 @@ -289710,15 +289710,15 @@ - m02147s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000168065 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 21538853, PMID: 17229912 + - gene_reaction_rule: "ENSG00000168065" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 21538853, PMID: 17229912" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ANDRSTNDNte + - id: "ANDRSTNDNte" - name: "Transport of Androst-4-Ene-3, 17-Dione, Extracellular" - metabolites: !!omap - m00971c: -1 @@ -289730,15 +289730,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15290871 + - gene_reaction_rule: "ENSG00000085563" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15290871" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EANDRSTRNte + - id: "EANDRSTRNte" - name: "Transport of 16Alpha-Hydroxydehydroepiandrosterone, Extracellular" - metabolites: !!omap - m00399c: -1 @@ -289750,15 +289750,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15290871 + - gene_reaction_rule: "ENSG00000085563" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15290871" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: AHANDROSTANte + - id: "AHANDROSTANte" - name: "Transport of 3Alpha-Hydroxy-5Beta-Androstan-17-One, Extracellular" - metabolites: !!omap - m01285c: 1 @@ -289770,15 +289770,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15290871 + - gene_reaction_rule: "ENSG00000085563" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15290871" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ANDRSTANDRte + - id: "ANDRSTANDRte" - name: "Transport of 5Alpha-Androstane-3, 17-Dione, Extracellular" - metabolites: !!omap - m01064c: -1 @@ -289790,15 +289790,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15290871 + - gene_reaction_rule: "ENSG00000085563" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15290871" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE2209te + - id: "CE2209te" - name: "Transport of 5Alpha-Androstane-3Alpha, 17Beta-Diol, Extracellular" - metabolites: !!omap - m01065c: -1 @@ -289810,15 +289810,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15290871 + - gene_reaction_rule: "ENSG00000085563" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15290871" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C05301te + - id: "C05301te" - name: "Transport of 2-Hydroxyestradiol-17Beta, Extracellular" - metabolites: !!omap - m00649c: -1 @@ -289830,15 +289830,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15290871 + - gene_reaction_rule: "ENSG00000085563" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15290871" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C05299te + - id: "C05299te" - name: "Transport of 2-Methoxyestrone, Extracellular" - metabolites: !!omap - m00660c: -1 @@ -289850,15 +289850,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15290871 + - gene_reaction_rule: "ENSG00000085563" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15290871" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C05302te + - id: "C05302te" - name: "Transport of 2-Methoxyestradiol-17Beta, Extracellular" - metabolites: !!omap - m00659c: -1 @@ -289870,15 +289870,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15290871 + - gene_reaction_rule: "ENSG00000085563" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15290871" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE5072te + - id: "CE5072te" - name: "Transport of 21-Hydroxyallopregnanolone, Extracellular" - metabolites: !!omap - m00604c: -1 @@ -289890,15 +289890,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15290871 + - gene_reaction_rule: "ENSG00000085563" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15290871" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 11DOCRTSLte + - id: "11DOCRTSLte" - name: "Transport of 11-Deoxycortisol, Extracellular" - metabolites: !!omap - m00295c: -1 @@ -289910,15 +289910,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15290871 + - gene_reaction_rule: "ENSG00000085563" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15290871" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 11DOCRTSTRNte + - id: "11DOCRTSTRNte" - name: "Transport of 11-Deoxycorticosterone, Extracellular" - metabolites: !!omap - m00294c: -1 @@ -289930,15 +289930,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15290871 + - gene_reaction_rule: "ENSG00000085563" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15290871" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PRGNLONEte + - id: "PRGNLONEte" - name: "Transport of Pregnenolone, Extracellular" - metabolites: !!omap - m01285c: 1 @@ -289950,15 +289950,15 @@ - m02763s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15290871 + - gene_reaction_rule: "ENSG00000085563" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15290871" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE2211te + - id: "CE2211te" - name: "Transport of Allopregnanolone, Extracellular" - metabolites: !!omap - m01285c: 1 @@ -289970,15 +289970,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15290871 + - gene_reaction_rule: "ENSG00000085563" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15290871" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 17AHPRGSTRNte + - id: "17AHPRGSTRNte" - name: "Transport of 17Alpha-Hydroxyprogesterone, Extracellular" - metabolites: !!omap - m00409c: -1 @@ -289990,15 +289990,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15290871 + - gene_reaction_rule: "ENSG00000085563" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15290871" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 17AHPRGNLONEte + - id: "17AHPRGNLONEte" - name: "Transport of 17Alpha-Hydroxypregnenolone, Extracellular" - metabolites: !!omap - m00408c: -1 @@ -290010,15 +290010,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15290871 + - gene_reaction_rule: "ENSG00000085563" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15290871" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C03681te + - id: "C03681te" - name: "Transport of 5Alpha-Pregnane-3, 20-Dione, Extracellular" - metabolites: !!omap - m01072c: -1 @@ -290030,15 +290030,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15290871 + - gene_reaction_rule: "ENSG00000085563" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15290871" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PRGNLONESte + - id: "PRGNLONESte" - name: "Transport of Pregnenolone Sulfate, Extracellular" - metabolites: !!omap - m01285c: 1 @@ -290050,15 +290050,15 @@ - m02762s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15290871 + - gene_reaction_rule: "ENSG00000085563" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15290871" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE1352te + - id: "CE1352te" - name: "Transport of 17Alpha-Hydroxypregnenolone Sulfate, Extracellular" - metabolites: !!omap - m00407c: -1 @@ -290070,30 +290070,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15290871 + - gene_reaction_rule: "ENSG00000085563" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15290871" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: MMAt2e + - id: "MMAt2e" - name: "Facilitated Diffusion via Aquaporin into Extracellular Space" - metabolites: !!omap - m02473c: -1 - m02473s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103375 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: PMID:15948717 + - gene_reaction_rule: "ENSG00000103375" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "PMID:15948717" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C05769te + - id: "C05769te" - name: "Transport by Atb Binding Cassette Transporter ABCc2 into Extracellular Space" - metabolites: !!omap - m01285c: 1 @@ -290105,15 +290105,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: PMID:19656454 + - gene_reaction_rule: "ENSG00000023839" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "PMID:19656454" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SAMHISTAe + - id: "SAMHISTAe" - name: "S-Adenosyl-L-Methionine:Histamine N-Tele-Methyltransferase, Extracellular" - metabolites: !!omap - m02039s: 1 @@ -290123,15 +290123,15 @@ - m02877s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000150540 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:12358773 + - gene_reaction_rule: "ENSG00000150540" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:12358773" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE2006te + - id: "CE2006te" - name: "Transport (ATP-Dependent) into Extracellular Space" - metabolites: !!omap - m00988c: -1 @@ -290143,30 +290143,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103222 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: PMID:17121932 + - gene_reaction_rule: "ENSG00000103222" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "PMID:17121932" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLCRt1 + - id: "GLCRt1" - name: "Transport by Glut-5 Transporter into Extracellular Space" - metabolites: !!omap - m01681c: 1 - m01681s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000142583 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:23084044 + - gene_reaction_rule: "ENSG00000142583" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:23084044" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 2HYOXPLCte + - id: "2HYOXPLCte" - name: "2-Hydroxyphenylacetate Proton Symport, Cytosol" - metabolites: !!omap - m00654c: -1 @@ -290175,75 +290175,75 @@ - m02039s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000155380 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: PMID: 15686408 + - gene_reaction_rule: "ENSG00000155380" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "PMID: 15686408" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: N8ASPMDte + - id: "N8ASPMDte" - name: "N (8)-Acetylspermidinium Transport, Cytosol" - metabolites: !!omap - m02518c: -1 - m02518s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000175003 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 23851697 + - gene_reaction_rule: "ENSG00000175003" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 23851697" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: MHISTAte + - id: "MHISTAte" - name: "Facilitated Diffusion Through Uniport Oct1 into Extracellular Space" - metabolites: !!omap - m02601c: -1 - m02601s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000146477 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: PMID:12883891, PMID:16648665 + - gene_reaction_rule: "ENSG00000146477" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "PMID:12883891, PMID:16648665" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE4890te2 + - id: "CE4890te2" - name: "Facilitated Diffusion Through Uniport Oct2 into Extracellular Space" - metabolites: !!omap - m02603c: -1 - m02603s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112499 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:17460754 + - gene_reaction_rule: "ENSG00000112499" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:17460754" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C09642te + - id: "C09642te" - name: "Facilitated Diffusion Through Uniport Oct2 into Extracellular Space" - metabolites: !!omap - m02875c: -1 - m02875s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112499 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: PMID:17460754 + - gene_reaction_rule: "ENSG00000112499" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "PMID:17460754" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 2OBUTt + - id: "2OBUTt" - name: "Transport by Monocarboxylate Transporter-2 into Extracellular Space" - metabolites: !!omap - m00671c: 1 @@ -290252,15 +290252,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000118596 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:9786900, 17502341 + - gene_reaction_rule: "ENSG00000118596" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:9786900, 17502341" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PPP9ABCte + - id: "PPP9ABCte" - name: "Transport by ABCg2 into Extracellular Space" - metabolites: !!omap - m01285c: 1 @@ -290272,15 +290272,15 @@ - m02803s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000118777 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: PMID: 20705604 + - gene_reaction_rule: "ENSG00000118777" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "PMID: 20705604" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: MLTHFte + - id: "MLTHFte" - name: "Transport by Pcet into Extracellular Space" - metabolites: !!omap - m01045c: 1 @@ -290289,15 +290289,15 @@ - m02039s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000076351 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:24653705, PMID: 23609145 + - gene_reaction_rule: "ENSG00000076351" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:24653705, PMID: 23609145" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TYMte2 + - id: "TYMte2" - name: "Tyraminium Proton Symport, Cytosol" - metabolites: !!omap - m02039c: -1 @@ -290306,15 +290306,15 @@ - m03099s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000164638 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: PMID: 16099839 + - gene_reaction_rule: "ENSG00000164638" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "PMID: 16099839" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TRYPTAte + - id: "TRYPTAte" - name: "Tryptaminium Transport, Cytosol" - metabolites: !!omap - m02039c: -1 @@ -290323,15 +290323,15 @@ - m03088s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000164638 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16099839, PMID: 22396231 + - gene_reaction_rule: "ENSG00000164638" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16099839, PMID: 22396231" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE4890te + - id: "CE4890te" - name: "Transport by Pmat Transporter into Extracellular Space" - metabolites: !!omap - m02039c: -1 @@ -290340,15 +290340,15 @@ - m02603s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000164638 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: PMID:26376205 + - gene_reaction_rule: "ENSG00000164638" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "PMID:26376205" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SELMETHte + - id: "SELMETHte" - name: "Transport in via Sodium Symport into Extracellular Space" - metabolites: !!omap - m02519c: 1 @@ -290357,15 +290357,15 @@ - m02891s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000147003 and ENSG00000174358) or (ENSG00000130234 and ENSG00000174358) or ENSG00000111371 or ENSG00000134294 or ENSG00000197375 or ENSG00000268104 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 2723818 + - gene_reaction_rule: "(ENSG00000147003 and ENSG00000174358) or (ENSG00000130234 and ENSG00000174358) or ENSG00000111371 or ENSG00000134294 or ENSG00000197375 or ENSG00000268104" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 2723818" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE7090te + - id: "CE7090te" - name: "Transport (ATP-Dependent) into Extracellular Space" - metabolites: !!omap - m00028c: -1 @@ -290377,15 +290377,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103222 or ENSG00000125257 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: PMID: 18353444,PMID: 23945567 + - gene_reaction_rule: "ENSG00000103222 or ENSG00000125257" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "PMID: 18353444,PMID: 23945567" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE7085te + - id: "CE7085te" - name: "Transport (ATP-Dependent) into Extracellular Space" - metabolites: !!omap - m01039c: -1 @@ -290397,15 +290397,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103222 or ENSG00000125257 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 18353444, PMID: 23945567 + - gene_reaction_rule: "ENSG00000103222 or ENSG00000125257" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 18353444, PMID: 23945567" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE7096te + - id: "CE7096te" - name: "Transport (ATP-Dependent) into Extracellular Space" - metabolites: !!omap - m01050c: -1 @@ -290417,15 +290417,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103222 or ENSG00000125257 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: PMID: 18353444, PMID: 23945567 + - gene_reaction_rule: "ENSG00000103222 or ENSG00000125257" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "PMID: 18353444, PMID: 23945567" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE4877te + - id: "CE4877te" - name: "Transport (ATP-Dependent) into Extracellular Space" - metabolites: !!omap - m00385c: -1 @@ -290437,15 +290437,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103222 or ENSG00000125257 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:12835412, PMID: 18353444 + - gene_reaction_rule: "ENSG00000103222 or ENSG00000125257" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:12835412, PMID: 18353444" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE1447te + - id: "CE1447te" - name: "Transport (ATP-Dependent) into Extracellular Space" - metabolites: !!omap - m00293c: -1 @@ -290457,15 +290457,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103222 or ENSG00000125257 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: PMID:12835412, PMID: 18353444 + - gene_reaction_rule: "ENSG00000103222 or ENSG00000125257" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "PMID:12835412, PMID: 18353444" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C05769te3 + - id: "C05769te3" - name: "Transport by OATP1B Carriers into Extracellular Space" - metabolites: !!omap - m01603c: 1 @@ -290474,15 +290474,15 @@ - m02046s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111700 or ENSG00000134538 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:26383540 + - gene_reaction_rule: "ENSG00000111700 or ENSG00000134538" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:26383540" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C05770te4 + - id: "C05770te4" - name: "Transport by OATP1B Carriers into Extracellular Space" - metabolites: !!omap - m01604c: 1 @@ -290491,15 +290491,15 @@ - m02046s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111700 or ENSG00000134538 or ENSG00000137491 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: PMID:26383540 + - gene_reaction_rule: "ENSG00000111700 or ENSG00000134538 or ENSG00000137491" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "PMID:26383540" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: C05770te + - id: "C05770te" - name: "Transport by Atb Binding Cassette Transporter ABCc2 into Extracellular Space" - metabolites: !!omap - m01285c: 1 @@ -290511,45 +290511,45 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000115657 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:19656454, PMID:25573285 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000115657" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:19656454, PMID:25573285" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: MLTHFte3 + - id: "MLTHFte3" - name: "Transport by Folr into Extracellular Space" - metabolites: !!omap - m01045c: 1 - m01045s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000110195 or ENSG00000110203 or ENSG00000165457 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: PMID:21568705 + - gene_reaction_rule: "ENSG00000110195 or ENSG00000110203 or ENSG00000165457" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "PMID:21568705" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE2705t + - id: "CE2705t" - name: "Transport by Ent1/Ent2 into Extracellular Space" - metabolites: !!omap - m02823c: 1 - m02823s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112759 or ENSG00000174669 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 20956085 + - gene_reaction_rule: "ENSG00000112759 or ENSG00000174669" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 20956085" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHS1Pt2e + - id: "SPHS1Pt2e" - name: "Export Mediated by ATP Binding Cassette (ABC) Transporters" - metabolites: !!omap - m01285c: 1 @@ -290561,15 +290561,15 @@ - m02930s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103222 or ENSG00000165029 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: + - gene_reaction_rule: "ENSG00000103222 or ENSG00000165029" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: MMAte + - id: "MMAte" - name: "Transport via Proton Antiport (Ammonium Transporter Rh Type C Or Type B) into Extracellular Space" - metabolites: !!omap - m02039c: -1 @@ -290578,15 +290578,15 @@ - m02473s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000132677 or ENSG00000140519 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000132677 or ENSG00000140519" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PTRCARGte + - id: "PTRCARGte" - name: "Putrescine Export via Putrescine/Arginine Exchanger" - metabolites: !!omap - m01365c: 1 @@ -290595,15 +290595,15 @@ - m02812s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000155465 and ENSG00000168003 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: + - gene_reaction_rule: "ENSG00000155465 and ENSG00000168003" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: MLTHFte2 + - id: "MLTHFte2" - name: "Transport by Rfc into Extracellular Space" - metabolites: !!omap - m01045c: 1 @@ -290612,45 +290612,45 @@ - m02147s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000173638 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:12852262 + - gene_reaction_rule: "ENSG00000173638" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:12852262" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TYMte + - id: "TYMte" - name: "Tyraminium Transport, Cytosol" - metabolites: !!omap - m03099c: -1 - m03099s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112499 or ENSG00000146477 or ENSG00000175003 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: PMID: 16722235 + - gene_reaction_rule: "ENSG00000112499 or ENSG00000146477 or ENSG00000175003" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "PMID: 16722235" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 13DAMPPte + - id: "13DAMPPte" - name: "Facilitated Diffusion Through Uniport Octs Transporters into Extracellular Space" - metabolites: !!omap - m00248c: -1 - m00248s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000112499 or ENSG00000146477 or ENSG00000175003 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:23458604, PMID:21128598 + - gene_reaction_rule: "ENSG00000112499 or ENSG00000146477 or ENSG00000175003" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:23458604, PMID:21128598" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HDD2CRNte2 + - id: "HDD2CRNte2" - name: "Uptake via Octn2 Transporter into Extracellular Space" - metabolites: !!omap - m02117c: 1 @@ -290659,15 +290659,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105281 or ENSG00000197375 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:9685390, PMID:11306651 + - gene_reaction_rule: "ENSG00000105281 or ENSG00000197375" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:9685390, PMID:11306651" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: MLTHFte1 + - id: "MLTHFte1" - name: "Transport by ABCa11 into Extracellular Space" - metabolites: !!omap - m01045c: -1 @@ -290679,15 +290679,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000005471 or ENSG00000023839 or ENSG00000103222 or ENSG00000114770 or ENSG00000118777 or ENSG00000121270 or ENSG00000125257 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:21568705 + - gene_reaction_rule: "ENSG00000005471 or ENSG00000023839 or ENSG00000103222 or ENSG00000114770 or ENSG00000118777 or ENSG00000121270 or ENSG00000125257" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:21568705" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ARGN1ASPMDte + - id: "ARGN1ASPMDte" - name: "Transport by Y+Lat-2 into Extracellular Space" - metabolites: !!omap - m01365c: 1 @@ -290696,15 +290696,15 @@ - m02503s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103064 and ENSG00000168003 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 18660501 + - gene_reaction_rule: "ENSG00000103064 and ENSG00000168003" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 18660501" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE1918te + - id: "CE1918te" - name: "Transport by Oat1/Oat3 into Extracellular Space" - metabolites: !!omap - m01110c: 1 @@ -290713,255 +290713,255 @@ - m01306s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149452 or ENSG00000197901 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:14737013 + - gene_reaction_rule: "ENSG00000149452 or ENSG00000197901" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:14737013" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 34DHPHAte + - id: "34DHPHAte" - name: " (3, 4-Dihydroxyphenyl)Acetate (Dopac) Transport, Cytosol" - metabolites: !!omap - m00729c: -1 - m00729s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149452 or ENSG00000197901 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 14737013 + - gene_reaction_rule: "ENSG00000149452 or ENSG00000197901" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 14737013" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 34DHOXMANDte + - id: "34DHOXMANDte" - name: "3, 4-Dihydroxymandelate Transport, Cytosol" - metabolites: !!omap - m00727c: -1 - m00727s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149452 or ENSG00000197901 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 14737013 + - gene_reaction_rule: "ENSG00000149452 or ENSG00000197901" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 14737013" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE6205te + - id: "CE6205te" - name: "5-Methoxytryptophol Transport, Cytosol" - metabolites: !!omap - m01113c: -1 - m01113s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000149452 or ENSG00000197901 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 14737013 + - gene_reaction_rule: "ENSG00000149452 or ENSG00000197901" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 14737013" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 1A25DHVITD3te + - id: "1A25DHVITD3te" - name: "Transport As Vitamin D" - metabolites: !!omap - m01417c: 1 - m01417s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000015520 or ENSG00000073060 or ENSG00000135218 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000015520 or ENSG00000073060 or ENSG00000135218" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ISOBUTtm + - id: "ISOBUTtm" - name: "Transport of Isobutyrylglycine into Cytosol" - metabolites: !!omap - m02181c: 1 - m02181m: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 20836999 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 20836999" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ISOBUTte + - id: "ISOBUTte" - name: "Transport of Isobutyrylglycine into Extracellular Space" - metabolites: !!omap - m02181c: -1 - m02181s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.2.2 - - references: PMID: 20836999 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.2.2" + - references: "PMID: 20836999" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_CE4969[e] + - id: "EX_CE4969[e]" - name: "Exchange of Isobutyrylglycine" - metabolites: !!omap - m02181s: -1 - m02181x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: NACCYStm + - id: "NACCYStm" - name: "Transport of N-Acetyl-L-Cysteine into Cytosol" - metabolites: !!omap - m02534c: 1 - m02534m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: NACCYSte + - id: "NACCYSte" - name: "Transport of N-Acetyl-L-Cysteine into Extracellular Space" - metabolites: !!omap - m02534c: -1 - m02534s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_CE1310[e] + - id: "EX_CE1310[e]" - name: "Exchange of N-Acetyl-L-Cysteine" - metabolites: !!omap - m02534s: -1 - m02534x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: T4HCINNMtm + - id: "T4HCINNMtm" - name: "Transport of Trans-4-Coumarate, Mitochondrial" - metabolites: !!omap - m00981c: 1 - m00981m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_T4hcinnm[e] + - id: "EX_T4hcinnm[e]" - name: "Exchange of Trans-4-Coumarate" - metabolites: !!omap - m00981s: -1 - m00981x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: 4HBZte + - id: "4HBZte" - name: "Transport of 4-Hydroxybenzoate, Extracellular Space" - metabolites: !!omap - m00995c: -1 - m00995s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SUCSALtm + - id: "SUCSALtm" - name: "Transport of Succinic Semialdehyde, Mitochondrial" - metabolites: !!omap - m02942c: 1 - m02942m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SUCSALte + - id: "SUCSALte" - name: "Transport of Succinic Semialdehyde, Extracellular Space" - metabolites: !!omap - m02942c: -1 - m02942s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.2.2 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.2.2" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_sucsal[e] + - id: "EX_sucsal[e]" - name: "Exchange of Succinic Semialdehyde" - metabolites: !!omap - m02942s: -1 - m02942x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: CE7081tr + - id: "CE7081tr" - name: "Transport of 15(R)-HEPE, Endoplasmatic Reticulum, Active Transport" - metabolites: !!omap - m00373c: 1 @@ -290973,15 +290973,15 @@ - m02751r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 24653705, PMID: 9831619, PMID: 5555776, PMID: 23104810 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 24653705, PMID: 9831619, PMID: 5555776, PMID: 23104810" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE7081tm + - id: "CE7081tm" - name: "Transport of 15(R)-HEPE, Extracellular Space, Active Transport" - metabolites: !!omap - m00373c: -1 @@ -290993,75 +290993,75 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 3.1.2.2 - - references: PMID: 24653705, PMID: 9831619, PMID: 5555776, PMID: 23104810 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "3.1.2.2" + - references: "PMID: 24653705, PMID: 9831619, PMID: 5555776, PMID: 23104810" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_CE7081[e] + - id: "EX_CE7081[e]" - name: "Exchange of 15(R)-HEPE" - metabolites: !!omap - m00373s: -1 - m00373x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EGMEtr + - id: "EGMEtr" - name: "Transport of Succinic Semialdehyde, Mitochondrial" - metabolites: !!omap - m01767c: 1 - m01767r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EGMEte + - id: "EGMEte" - name: "Transport of Succinic Semialdehyde, Extracellular Space" - metabolites: !!omap - m01767c: -1 - m01767s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_egme[e] + - id: "EX_egme[e]" - name: "Exchange of Succinic Semialdehyde" - metabolites: !!omap - m01767s: -1 - m01767x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: 12HARACHDtr + - id: "12HARACHDtr" - name: "Transport of 12 Hydroxy Arachidonic Acid, Endoplasmatic Reticulum, Active Transport" - metabolites: !!omap - m00324c: 1 @@ -291073,15 +291073,15 @@ - m02751r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9831619, PMID: 5555776, PMID: 23104810 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9831619, PMID: 5555776, PMID: 23104810" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 12HARACHDte + - id: "12HARACHDte" - name: "Transport of 12 Hydroxy Arachidonic Acid, Extracellular Space, Active Transport" - metabolites: !!omap - m00324c: -1 @@ -291093,30 +291093,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9831619, PMID: 5555776, PMID: 23104810 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9831619, PMID: 5555776, PMID: 23104810" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_12harachd[e] + - id: "EX_12harachd[e]" - name: "Exchange of 12 Hydroxy Arachidonic Acid" - metabolites: !!omap - m00324s: -1 - m00324x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: 18HARACHDtr + - id: "18HARACHDtr" - name: "Transport of 18 Hydroxy Arachidonic Acid, Endoplasmatic Reticulum, Active Transport" - metabolites: !!omap - m00428c: 1 @@ -291128,15 +291128,15 @@ - m02751r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9831619, PMID: 5555776, PMID: 23104810 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9831619, PMID: 5555776, PMID: 23104810" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 18HARACHDte + - id: "18HARACHDte" - name: "Transport of 18 Hydroxy Arachidonic Acid, Extracellular Space, Active Transport" - metabolites: !!omap - m00428c: -1 @@ -291148,75 +291148,75 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9831619, PMID: 5555776, PMID: 23104810 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9831619, PMID: 5555776, PMID: 23104810" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_18harachd[e] + - id: "EX_18harachd[e]" - name: "Exchange of 18 Hydroxy Arachidonic Acid" - metabolites: !!omap - m00428s: -1 - m00428x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: SQLtr + - id: "SQLtr" - name: "Transport of Squalene, Endoplasmatic Reticulum, within Chylomicron" - metabolites: !!omap - m02933c: 1 - m02933r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10998465 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10998465" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SQLte + - id: "SQLte" - name: "Transport of Squalene, Extracellular Space, within Chylomicron" - metabolites: !!omap - m02933c: -1 - m02933s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10998465 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10998465" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_sql[e] + - id: "EX_sql[e]" - name: "Exchange of Squalene" - metabolites: !!omap - m02933s: -1 - m02933x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: ORN_Dtx + - id: "ORN_Dtx" - name: "Transport of Ornithine, Peroxisomal" - metabolites: !!omap - m01740c: 1 @@ -291225,15 +291225,15 @@ - m02039p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 12807890 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 12807890" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ORN_Dte + - id: "ORN_Dte" - name: "Transport of Ornithine, Extracellular Space" - metabolites: !!omap - m01740c: -1 @@ -291242,75 +291242,75 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 12807890 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 12807890" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 5G2OXPTtx + - id: "5G2OXPTtx" - name: "Transport of 5-Guanidino-2-Oxopentanoic Acid, Peroxisomal" - metabolites: !!omap - m01101c: 1 - m01101p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 5G2OXPTte + - id: "5G2OXPTte" - name: "Transport of 5-Guanidino-2-Oxopentanoic Acid, Extracellular" - metabolites: !!omap - m01101c: -1 - m01101s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_5g2oxpt[e] + - id: "EX_5g2oxpt[e]" - name: "Exchange of 5-Guanidino-2-Oxopentanoic Acid" - metabolites: !!omap - m01101s: -1 - m01101x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_andrstndn[e] + - id: "EX_andrstndn[e]" - name: "Exchange of Androst-4-Ene-3, 17-Dione" - metabolites: !!omap - m00971s: -1 - m00971x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: DHEAte + - id: "DHEAte" - name: "Transport of 3Beta-Hydroxyandrost-5-En-17-One" - metabolites: !!omap - m01285c: 1 @@ -291322,30 +291322,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15448171 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15448171" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_dhea[e] + - id: "EX_dhea[e]" - name: "Exchange of 3Beta-Hydroxyandrost-5-En-17-One" - metabolites: !!omap - m01660s: -1 - m01660x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EANDRSTRNtr + - id: "EANDRSTRNtr" - name: "Transport of 16Alpha-Hydroxydehydroepiandrosterone, Endoplasmatic Reticulum" - metabolites: !!omap - m00399c: 1 @@ -291357,30 +291357,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15290871 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15290871" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_eandrstrn[e] + - id: "EX_eandrstrn[e]" - name: "Exchange of 16Alpha-Hydroxydehydroepiandrosterone" - metabolites: !!omap - m00399s: -1 - m00399x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: AHANDROSTANtr + - id: "AHANDROSTANtr" - name: "Transport of 3Alpha-Hydroxy-5Beta-Androstan-17-One, Endoplasmatic Reticulum" - metabolites: !!omap - m01285c: 1 @@ -291392,15 +291392,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15290871 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15290871" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ANDRSTANDRtr + - id: "ANDRSTANDRtr" - name: "Transport of 5Alpha-Androstane-3, 17-Dione, Endoplasmatic Reticulum" - metabolites: !!omap - m01064c: 1 @@ -291412,45 +291412,45 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15290871 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15290871" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_andrstandn[e] + - id: "EX_andrstandn[e]" - name: "Exchange of 5Alpha-Androstane-3, 17-Dione" - metabolites: !!omap - m01064s: -1 - m01064x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE2209[e] + - id: "EX_CE2209[e]" - name: "Exchange of 5Alpha-Androstane-3Alpha, 17Beta-Diol" - metabolites: !!omap - m01065s: -1 - m01065x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: ESTRONEte + - id: "ESTRONEte" - name: "Transport of Estrone, Extracellular" - metabolites: !!omap - m01285c: 1 @@ -291462,30 +291462,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15290871, PMID: 11105986 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15290871, PMID: 11105986" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_estrone[e] + - id: "EX_estrone[e]" - name: "Exchange of Estrone" - metabolites: !!omap - m01790s: -1 - m01790x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: C05298te + - id: "C05298te" - name: "Transport of 2-Hydroxyestrone, Extracellular" - metabolites: !!omap - m00650c: -1 @@ -291497,465 +291497,465 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15290871, PMID: 11105986 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15290871, PMID: 11105986" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_C05298[e] + - id: "EX_C05298[e]" - name: "Exchange of 2-Hydroxyestrone" - metabolites: !!omap - m00650s: -1 - m00650x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_C05301[e] + - id: "EX_C05301[e]" - name: "Exchange of 2-Hydroxyestradiol-17Beta" - metabolites: !!omap - m00649s: -1 - m00649x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_C05299[e] + - id: "EX_C05299[e]" - name: "Exchange of 2-Methoxyestrone" - metabolites: !!omap - m00660s: -1 - m00660x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_C05302[e] + - id: "EX_C05302[e]" - name: "Exchange of 2-Methoxyestradiol-17Beta" - metabolites: !!omap - m00659s: -1 - m00659x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE5072[e] + - id: "EX_CE5072[e]" - name: "Exchange of 21-Hydroxyallopregnanolone" - metabolites: !!omap - m00604s: -1 - m00604x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_11docrtsl[e] + - id: "EX_11docrtsl[e]" - name: "Exchange of 11-Deoxycortisol" - metabolites: !!omap - m00295s: -1 - m00295x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_11docrtstrn[e] + - id: "EX_11docrtstrn[e]" - name: "Exchange of 11-Deoxycorticosterone" - metabolites: !!omap - m00294s: -1 - m00294x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_prgnlone[e] + - id: "EX_prgnlone[e]" - name: "Exchange of Pregnenolone" - metabolites: !!omap - m02763s: -1 - m02763x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE2211[e] + - id: "EX_CE2211[e]" - name: "Exchange of Allopregnanolone" - metabolites: !!omap - m01314s: -1 - m01314x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_17ahprgstrn[e] + - id: "EX_17ahprgstrn[e]" - name: "Exchange of 17Alpha-Hydroxyprogesterone" - metabolites: !!omap - m00409s: -1 - m00409x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_17ahprgnlone[e] + - id: "EX_17ahprgnlone[e]" - name: "Exchange of 17Alpha-Hydroxypregnenolone" - metabolites: !!omap - m00408s: -1 - m00408x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_C03681[e] + - id: "EX_C03681[e]" - name: "Exchange of 5Alpha-Pregnane-3, 20-Dione" - metabolites: !!omap - m01072s: -1 - m01072x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HC02020tr + - id: "HC02020tr" - name: "Transport of Cholesterol-Ester-Palm, Endoplasmatic Reticulum, within Lipoproteins" - metabolites: !!omap - m01504c: 1 - m01504r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10998465 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10998465" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HC02020te + - id: "HC02020te" - name: "Transport of Cholesterol-Ester-Palm, Extracellular Space, within Lipoproteins" - metabolites: !!omap - m01504c: -1 - m01504s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10998465 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10998465" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_HC02020[e] + - id: "EX_HC02020[e]" - name: "Exchange of Cholesterol-Ester-Palm" - metabolites: !!omap - m01504s: -1 - m01504x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_prgnlones[e] + - id: "EX_prgnlones[e]" - name: "Exchange of Pregnenolone Sulfate" - metabolites: !!omap - m02762s: -1 - m02762x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE1352[e] + - id: "EX_CE1352[e]" - name: "Exchange of 17Alpha-Hydroxypregnenolone Sulfate" - metabolites: !!omap - m00407s: -1 - m00407x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: XOL24OHtr + - id: "XOL24OHtr" - name: "Transport of (24S)-24-Hydroxycholesterol, Endoplasmatic Reticulum, within Lipoproteins" - metabolites: !!omap - m00610c: 1 - m00610r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10998465 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10998465" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: XOL24OHte + - id: "XOL24OHte" - name: "Transport of (24S)-24-Hydroxycholesterol, Extracellular Space, within Lipoproteins" - metabolites: !!omap - m00610c: -1 - m00610s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10998465 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10998465" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_xol24oh[e] + - id: "EX_xol24oh[e]" - name: "Exchange of (24S)-24-Hydroxycholesterol" - metabolites: !!omap - m00610s: -1 - m00610x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: XOL27OHte + - id: "XOL27OHte" - name: "Transport of 26-Hydroxycholesterol, Extracellular Space, within Lipoproteins" - metabolites: !!omap - m00623c: -1 - m00623s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10998465 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10998465" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_xol27oh[e] + - id: "EX_xol27oh[e]" - name: "Exchange of 26-Hydroxycholesterol" - metabolites: !!omap - m00623s: -1 - m00623x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: XOL25OHtr + - id: "XOL25OHtr" - name: "Transport of 25-Hydroxycholesterol, Endoplasmatic Reticulum, within Lipoproteins" - metabolites: !!omap - m00619c: 1 - m00619r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10998465 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10998465" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: XOL25OHte + - id: "XOL25OHte" - name: "Transport of 25-Hydroxycholesterol, Extracellular Space, within Lipoproteins" - metabolites: !!omap - m00619c: -1 - m00619s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10998465 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10998465" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_xol25oh[e] + - id: "EX_xol25oh[e]" - name: "Exchange of 25-Hydroxycholesterol" - metabolites: !!omap - m00619s: -1 - m00619x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: DSMSTEROLtr + - id: "DSMSTEROLtr" - name: "Transport of Desmosterol, Endoplasmatic Reticulum, within Lipoproteins" - metabolites: !!omap - m01675c: 1 - m01675r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10998465 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10998465" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: DSMSTEROLte + - id: "DSMSTEROLte" - name: "Transport of Desmosterol, Extracellular Space, within Lipoproteins" - metabolites: !!omap - m01675c: -1 - m01675s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10998465 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10998465" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_dsmsterol[e] + - id: "EX_dsmsterol[e]" - name: "Exchange of Desmosterol" - metabolites: !!omap - m01675s: -1 - m01675x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: CHSTEROLSte + - id: "CHSTEROLSte" - name: "Transport of Cholesterol Sulfate, Extracellular Space, within Lipoproteins" - metabolites: !!omap - m01512c: -1 - m01512s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10998465 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10998465" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_chsterols[e] + - id: "EX_chsterols[e]" - name: "Exchange of Cholesterol Sulfate" - metabolites: !!omap - m01512s: -1 - m01512x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: 3ITYR_Lte + - id: "3ITYR_Lte" - name: "Transport of 3-Iodo-L-Tyrosine" - metabolites: !!omap - m00807c: -1 @@ -291964,30 +291964,30 @@ - m02519s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_3ityr_L[e] + - id: "EX_3ityr_L[e]" - name: "Exchange of 3-Iodo-L-Tyrosine" - metabolites: !!omap - m00807s: -1 - m00807x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: 35DIODTYRte + - id: "35DIODTYRte" - name: "Transport of 3, 5-Diiodo-L-Tyrosine" - metabolites: !!omap - m00739c: -1 @@ -291996,90 +291996,90 @@ - m02519s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_35diotyr[e] + - id: "EX_35diotyr[e]" - name: "Exchange of 3, 5-Diiodo-L-Tyrosine" - metabolites: !!omap - m00739s: -1 - m00739x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: 13_CIS_RETNte + - id: "13_CIS_RETNte" - name: "Transport of 13-Cis-Retinoate" - metabolites: !!omap - m00350c: -1 - m00350s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_13_cis_retn[e] + - id: "EX_13_cis_retn[e]" - name: "Exchange of 13-Cis-Retinoate" - metabolites: !!omap - m00350s: -1 - m00350x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: CE1617te + - id: "CE1617te" - name: "Transport of 9-Cis-Retinoate" - metabolites: !!omap - m01231c: -1 - m01231s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_CE1617[e] + - id: "EX_CE1617[e]" - name: "Exchange of 9-Cis-Retinoate" - metabolites: !!omap - m01231s: -1 - m01231x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: TAG_HSad + - id: "TAG_HSad" - name: "Formation of Triglycerides in Adipocytes" - metabolites: !!omap - m01597c: 6 @@ -292093,15 +292093,15 @@ - m02959c: 2 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 6650449, PMID: 8685239, PMID: 16446749 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 6650449, PMID: 8685239, PMID: 16446749" - subsystem: - - Triglycerides formation + - "Triglycerides formation" - confidence_score: 0 - !!omap - - id: TAG_HSad_NE + - id: "TAG_HSad_NE" - name: "Formation of Triglycerides in Adipocytes, Nonessential Fas" - metabolites: !!omap - m01597c: 6 @@ -292116,15 +292116,15 @@ - m02959c: 2 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 6650449, PMID: 8685239, PMID: 16446749 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 6650449, PMID: 8685239, PMID: 16446749" - subsystem: - - Triglycerides formation + - "Triglycerides formation" - confidence_score: 0 - !!omap - - id: TAG_HSad_E + - id: "TAG_HSad_E" - name: "Formation of Triglycerides in Adipocytes, Essential Fas" - metabolites: !!omap - m00095c: -1 @@ -292139,15 +292139,15 @@ - m02959c: 2 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 6650449, PMID: 8685239, PMID: 16446749 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 6650449, PMID: 8685239, PMID: 16446749" - subsystem: - - Triglycerides formation + - "Triglycerides formation" - confidence_score: 0 - !!omap - - id: VLDL_HSSYN + - id: "VLDL_HSSYN" - name: "Formation of VLDL" - metabolites: !!omap - m01351c: -0.2 @@ -292160,30 +292160,30 @@ - vldl_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Murray, R.K., Bender, D. A., Botham, K. M., Kennelly, P. J., Rodwell, V. W., Weil, P. A. A lange medical book: Harper's illustrated Biochemistry, (Mc Graw Hill Medical, New York, NY, 2009). Raju, S.M. & Madala, B. Illustrated Medical Biochemistry, (Anshan Ltd, 2005), http://www.medscape.com/viewarticle/451762_5. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Murray, R.K., Bender, D. A., Botham, K. M., Kennelly, P. J., Rodwell, V. W., Weil, P. A. A lange medical book: Harper's illustrated Biochemistry, (Mc Graw Hill Medical, New York, NY, 2009). Raju, S.M. & Madala, B. Illustrated Medical Biochemistry, (Anshan Ltd, 2005), http://www.medscape.com/viewarticle/451762_5." - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: VLDL_HSSEC + - id: "VLDL_HSSEC" - name: "Secretion of VLDL" - metabolites: !!omap - vldl_hs_c: -1 - vldl_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Murray, R.K., Bender, D. A., Botham, K. M., Kennelly, P. J., Rodwell, V. W., Weil, P. A. A lange medical book: Harper's illustrated Biochemistry, (Mc Graw Hill Medical, New York, NY, 2009). Raju, S.M. & Madala, B. Illustrated Medical Biochemistry, (Anshan Ltd, 2005), http://www.medscape.com/viewarticle/451762_5. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Murray, R.K., Bender, D. A., Botham, K. M., Kennelly, P. J., Rodwell, V. W., Weil, P. A. A lange medical book: Harper's illustrated Biochemistry, (Mc Graw Hill Medical, New York, NY, 2009). Raju, S.M. & Madala, B. Illustrated Medical Biochemistry, (Anshan Ltd, 2005), http://www.medscape.com/viewarticle/451762_5." - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: VLDL_HSDEG + - id: "VLDL_HSDEG" - name: "Degradation of VLDL" - metabolites: !!omap - Rtotal2_s: 5 @@ -292200,15 +292200,15 @@ - vldl_hs_s: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Murray, R.K., Bender, D. A., Botham, K. M., Kennelly, P. J., Rodwell, V. W., Weil, P. A. A lange medical book: Harper's illustrated Biochemistry, (Mc Graw Hill Medical, New York, NY, 2009). Raju, S.M. & Madala, B. Illustrated Medical Biochemistry, (Anshan Ltd, 2005), http://www.medscape.com/viewarticle/451762_5. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Murray, R.K., Bender, D. A., Botham, K. M., Kennelly, P. J., Rodwell, V. W., Weil, P. A. A lange medical book: Harper's illustrated Biochemistry, (Mc Graw Hill Medical, New York, NY, 2009). Raju, S.M. & Madala, B. Illustrated Medical Biochemistry, (Anshan Ltd, 2005), http://www.medscape.com/viewarticle/451762_5." - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: IDL_HSSYN + - id: "IDL_HSSYN" - name: "Formation of IDL" - metabolites: !!omap - idl_hs_s: 1 @@ -292218,15 +292218,15 @@ - m02959s: -4 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Murray, R.K., Bender, D. A., Botham, K. M., Kennelly, P. J., Rodwell, V. W., Weil, P. A. A lange medical book: Harper's illustrated Biochemistry, (Mc Graw Hill Medical, New York, NY, 2009). Raju, S.M. & Madala, B. Illustrated Medical Biochemistry, (Anshan Ltd, 2005), http://www.medscape.com/viewarticle/451762_5. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Murray, R.K., Bender, D. A., Botham, K. M., Kennelly, P. J., Rodwell, V. W., Weil, P. A. A lange medical book: Harper's illustrated Biochemistry, (Mc Graw Hill Medical, New York, NY, 2009). Raju, S.M. & Madala, B. Illustrated Medical Biochemistry, (Anshan Ltd, 2005), http://www.medscape.com/viewarticle/451762_5." - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: IDL_HSDEG + - id: "IDL_HSDEG" - name: "Degradation of IDL" - metabolites: !!omap - Rtotal2_s: 4 @@ -292240,15 +292240,15 @@ - m02040s: -4 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Murray, R.K., Bender, D. A., Botham, K. M., Kennelly, P. J., Rodwell, V. W., Weil, P. A. A lange medical book: Harper's illustrated Biochemistry, (Mc Graw Hill Medical, New York, NY, 2009). Raju, S.M. & Madala, B. Illustrated Medical Biochemistry, (Anshan Ltd, 2005), http://www.medscape.com/viewarticle/451762_5. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Murray, R.K., Bender, D. A., Botham, K. M., Kennelly, P. J., Rodwell, V. W., Weil, P. A. A lange medical book: Harper's illustrated Biochemistry, (Mc Graw Hill Medical, New York, NY, 2009). Raju, S.M. & Madala, B. Illustrated Medical Biochemistry, (Anshan Ltd, 2005), http://www.medscape.com/viewarticle/451762_5." - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: LDL_HSSYN + - id: "LDL_HSSYN" - name: "Formation of LDL" - metabolites: !!omap - ldl_hs_s: 1 @@ -292258,15 +292258,15 @@ - m02959s: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Murray, R.K., Bender, D. A., Botham, K. M., Kennelly, P. J., Rodwell, V. W., Weil, P. A. A lange medical book: Harper's illustrated Biochemistry, (Mc Graw Hill Medical, New York, NY, 2009). Raju, S.M. & Madala, B. Illustrated Medical Biochemistry, (Anshan Ltd, 2005), http://www.medscape.com/viewarticle/451762_5. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Murray, R.K., Bender, D. A., Botham, K. M., Kennelly, P. J., Rodwell, V. W., Weil, P. A. A lange medical book: Harper's illustrated Biochemistry, (Mc Graw Hill Medical, New York, NY, 2009). Raju, S.M. & Madala, B. Illustrated Medical Biochemistry, (Anshan Ltd, 2005), http://www.medscape.com/viewarticle/451762_5." - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: LDL_HSDEG + - id: "LDL_HSDEG" - name: "Degradation of LDL" - metabolites: !!omap - Rtotal2_s: 1 @@ -292280,15 +292280,15 @@ - m02684s: 2 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Murray, R.K., Bender, D. A., Botham, K. M., Kennelly, P. J., Rodwell, V. W., Weil, P. A. A lange medical book: Harper's illustrated Biochemistry, (Mc Graw Hill Medical, New York, NY, 2009). Raju, S.M. & Madala, B. Illustrated Medical Biochemistry, (Anshan Ltd, 2005), http://www.medscape.com/viewarticle/451762_5. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Murray, R.K., Bender, D. A., Botham, K. M., Kennelly, P. J., Rodwell, V. W., Weil, P. A. A lange medical book: Harper's illustrated Biochemistry, (Mc Graw Hill Medical, New York, NY, 2009). Raju, S.M. & Madala, B. Illustrated Medical Biochemistry, (Anshan Ltd, 2005), http://www.medscape.com/viewarticle/451762_5." - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HDL_HSSYN + - id: "HDL_HSSYN" - name: "Formation of HDL" - metabolites: !!omap - hdl_hs_s: 1 @@ -292302,15 +292302,15 @@ - m02959s: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Murray, R.K., Bender, D. A., Botham, K. M., Kennelly, P. J., Rodwell, V. W., Weil, P. A. A lange medical book: Harper's illustrated Biochemistry, (Mc Graw Hill Medical, New York, NY, 2009). Raju, S.M. & Madala, B. Illustrated Medical Biochemistry, (Anshan Ltd, 2005), http://www.medscape.com/viewarticle/451762_5. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Murray, R.K., Bender, D. A., Botham, K. M., Kennelly, P. J., Rodwell, V. W., Weil, P. A. A lange medical book: Harper's illustrated Biochemistry, (Mc Graw Hill Medical, New York, NY, 2009). Raju, S.M. & Madala, B. Illustrated Medical Biochemistry, (Anshan Ltd, 2005), http://www.medscape.com/viewarticle/451762_5." - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HDL_HSDEG + - id: "HDL_HSDEG" - name: "Degradation of HDL" - metabolites: !!omap - Rtotal2_s: 1 @@ -292328,15 +292328,15 @@ - m02684s: 2 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Murray, R.K., Bender, D. A., Botham, K. M., Kennelly, P. J., Rodwell, V. W., Weil, P. A. A lange medical book: Harper's illustrated Biochemistry, (Mc Graw Hill Medical, New York, NY, 2009). Raju, S.M. & Madala, B. Illustrated Medical Biochemistry, (Anshan Ltd, 2005), http://www.medscape.com/viewarticle/451762_5. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Murray, R.K., Bender, D. A., Botham, K. M., Kennelly, P. J., Rodwell, V. W., Weil, P. A. A lange medical book: Harper's illustrated Biochemistry, (Mc Graw Hill Medical, New York, NY, 2009). Raju, S.M. & Madala, B. Illustrated Medical Biochemistry, (Anshan Ltd, 2005), http://www.medscape.com/viewarticle/451762_5." - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: MYELIN_HSSYN + - id: "MYELIN_HSSYN" - name: "Formation of Myelin Sheath" - metabolites: !!omap - m01450c: -1 @@ -292349,15 +292349,15 @@ - myelin_hs_c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Murray, R.K., Bender, D. A., Botham, K. M., Kennelly, P. J., Rodwell, V. W., Weil, P. A. A lange medical book: Harper's illustrated Biochemistry, (Mc Graw Hill Medical, New York, NY, 2009). Raju, S.M. & Madala, B. Illustrated Medical Biochemistry, (Anshan Ltd, 2005), http://www.medscape.com/viewarticle/451762_5. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Murray, R.K., Bender, D. A., Botham, K. M., Kennelly, P. J., Rodwell, V. W., Weil, P. A. A lange medical book: Harper's illustrated Biochemistry, (Mc Graw Hill Medical, New York, NY, 2009). Raju, S.M. & Madala, B. Illustrated Medical Biochemistry, (Anshan Ltd, 2005), http://www.medscape.com/viewarticle/451762_5." - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: CHYLO_HSSYN + - id: "CHYLO_HSSYN" - name: "Formation of Chylomicron" - metabolites: !!omap - chylo_hs_c: 1 @@ -292370,30 +292370,30 @@ - m02959c: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Murray, R.K., Bender, D. A., Botham, K. M., Kennelly, P. J., Rodwell, V. W., Weil, P. A. A lange medical book: Harper's illustrated Biochemistry, (Mc Graw Hill Medical, New York, NY, 2009). Raju, S.M. & Madala, B. Illustrated Medical Biochemistry, (Anshan Ltd, 2005), http://www.medscape.com/viewarticle/451762_5. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Murray, R.K., Bender, D. A., Botham, K. M., Kennelly, P. J., Rodwell, V. W., Weil, P. A. A lange medical book: Harper's illustrated Biochemistry, (Mc Graw Hill Medical, New York, NY, 2009). Raju, S.M. & Madala, B. Illustrated Medical Biochemistry, (Anshan Ltd, 2005), http://www.medscape.com/viewarticle/451762_5." - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: CHYLO_HSSEC + - id: "CHYLO_HSSEC" - name: "Secretion of Chylomicron" - metabolites: !!omap - chylo_hs_c: -1 - chylo_hs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Murray, R.K., Bender, D. A., Botham, K. M., Kennelly, P. J., Rodwell, V. W., Weil, P. A. A lange medical book: Harper's illustrated Biochemistry, (Mc Graw Hill Medical, New York, NY, 2009). Raju, S.M. & Madala, B. Illustrated Medical Biochemistry, (Anshan Ltd, 2005), http://www.medscape.com/viewarticle/451762_5. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Murray, R.K., Bender, D. A., Botham, K. M., Kennelly, P. J., Rodwell, V. W., Weil, P. A. A lange medical book: Harper's illustrated Biochemistry, (Mc Graw Hill Medical, New York, NY, 2009). Raju, S.M. & Madala, B. Illustrated Medical Biochemistry, (Anshan Ltd, 2005), http://www.medscape.com/viewarticle/451762_5." - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: CHYLO_HSDEG + - id: "CHYLO_HSDEG" - name: "Degradation of Chylomicron" - metabolites: !!omap - Rtotal2_s: 1 @@ -292410,240 +292410,240 @@ - m02040s: -1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Murray, R.K., Bender, D. A., Botham, K. M., Kennelly, P. J., Rodwell, V. W., Weil, P. A. A lange medical book: Harper's illustrated Biochemistry, (Mc Graw Hill Medical, New York, NY, 2009). Raju, S.M. & Madala, B. Illustrated Medical Biochemistry, (Anshan Ltd, 2005), http://www.medscape.com/viewarticle/451762_5. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Murray, R.K., Bender, D. A., Botham, K. M., Kennelly, P. J., Rodwell, V. W., Weil, P. A. A lange medical book: Harper's illustrated Biochemistry, (Mc Graw Hill Medical, New York, NY, 2009). Raju, S.M. & Madala, B. Illustrated Medical Biochemistry, (Anshan Ltd, 2005), http://www.medscape.com/viewarticle/451762_5." - subsystem: - - Glycerophospholipid metabolism + - "Glycerophospholipid metabolism" - confidence_score: 0 - !!omap - - id: HC00460te + - id: "HC00460te" - name: "2, 5-Dihydroxybenzoate Diffusion, Cytosol" - metabolites: !!omap - m00576c: -1 - m00576s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_HC00460[e] + - id: "EX_HC00460[e]" - name: "Exchange of 2,5-Dihydroxybenzoate" - metabolites: !!omap - m00576s: -1 - m00576x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_34dhoxmand[e] + - id: "EX_34dhoxmand[e]" - name: "Exchange of 3,4-Dihydroxymandelate" - metabolites: !!omap - m00727s: -1 - m00727x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: FNA5MOXAMte + - id: "FNA5MOXAMte" - name: "Formyl-N-Acetyl-5-Methoxykynurenamine Diffusion, Cytosol" - metabolites: !!omap - m01839c: -1 - m01839s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_fna5moxam[e] + - id: "EX_fna5moxam[e]" - name: "Exchange of Formyl-N-Acetyl-5-Methoxykynurenamine" - metabolites: !!omap - m01839s: -1 - m01839x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: CE5643te + - id: "CE5643te" - name: "Peroxynitrite Diffusion, Cytosol" - metabolites: !!omap - m02714c: -1 - m02714s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 19267456 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 19267456" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_CE5643[e] + - id: "EX_CE5643[e]" - name: "Exchange of Peroxynitrite" - metabolites: !!omap - m02714s: -1 - m02714x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE7090[e] + - id: "EX_CE7090[e]" - name: "Exchange of 18R-Hydroxy-5Z,8Z,11Z,14Z,16E-Eicosapentaenoic Acid" - metabolites: !!omap - m00028s: -1 - m00028x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE7085[e] + - id: "EX_CE7085[e]" - name: "Exchange of (+-)-5-Hydroxy-6E,8Z,11Z,14Z,17Z-Eicosapentaenoic Acid" - metabolites: !!omap - m01039s: -1 - m01039x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE7096[e] + - id: "EX_CE7096[e]" - name: "Exchange of 5,15-Dihydroxyeicosatetraenoic Acid" - metabolites: !!omap - m01050s: -1 - m01050x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE4877[e] + - id: "EX_CE4877[e]" - name: "Exchange of 15-Deoxy-Prostaglandin J2" - metabolites: !!omap - m00385s: -1 - m00385x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE1447[e] + - id: "EX_CE1447[e]" - name: "Exchange of 11-Dehydrothromboxane B2" - metabolites: !!omap - m00293s: -1 - m00293x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE2006[e] + - id: "EX_CE2006[e]" - name: "Exchange of 4-Hydroxy-2-Nonenal" - metabolites: !!omap - m00988s: -1 - m00988x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: CE1401te + - id: "CE1401te" - name: "Transport of HomocysteineThiolactone " - metabolites: !!omap - m02134c: -1 - m02134s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 22406444 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 22406444" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_CE1401[e] + - id: "EX_CE1401[e]" - name: "Exchange of Homocysteine Thiolactone" - metabolites: !!omap - m02134s: -1 - m02134x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: GLUCYSte + - id: "GLUCYSte" - name: "Transport (ATP-Dependent) into Extracellular Space" - metabolites: !!omap - m01285c: 1 @@ -292655,765 +292655,765 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 12897433 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 12897433" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_glucys[e] + - id: "EX_glucys[e]" - name: "Exchange of Gamma-L-Glutamyl-L-Cysteine" - metabolites: !!omap - m01927s: -1 - m01927x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_n8aspmd[e] + - id: "EX_n8aspmd[e]" - name: "Exchange of N(8)-Acetylspermidine" - metabolites: !!omap - m02518s: -1 - m02518x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE6205[e] + - id: "EX_CE6205[e]" - name: "Exchange of 5-Methoxytryptophol" - metabolites: !!omap - m01113s: -1 - m01113x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: MELATNte + - id: "MELATNte" - name: "Melatonin Diffusion, Cytosol" - metabolites: !!omap - m02460c: -1 - m02460s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15649735 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15649735" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_melatn[e] + - id: "EX_melatn[e]" - name: "Exchange of Melatonine" - metabolites: !!omap - m02460s: -1 - m02460x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: 6HOXMELATNte + - id: "6HOXMELATNte" - name: "6-Hydroxymelatonin Diffusion, Cytosol" - metabolites: !!omap - m01161c: -1 - m01161s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_6hoxmelatn[e] + - id: "EX_6hoxmelatn[e]" - name: "Exchange of 6-Hydroxymelatonin" - metabolites: !!omap - m01161s: -1 - m01161x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_trypta[e] + - id: "EX_trypta[e]" - name: "Exchange of Tryptamine" - metabolites: !!omap - m03088s: -1 - m03088x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: C10164te + - id: "C10164te" - name: "Assumed Passive Diffusion into Extracellular Space" - metabolites: !!omap - m02752c: -1 - m02752s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_C10164[e] + - id: "EX_C10164[e]" - name: "Exchange of Picolinic Acid" - metabolites: !!omap - m02752s: -1 - m02752x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE4890[e] + - id: "EX_CE4890[e]" - name: "Exchange of N-Methylsalsolinol" - metabolites: !!omap - m02603s: -1 - m02603x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_C09642[e] + - id: "EX_C09642[e]" - name: "Exchange of (-)-Salsolinol" - metabolites: !!omap - m02875s: -1 - m02875x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: C05767te + - id: "C05767te" - name: "Assumed Passive Diffusion into Extracellular Space" - metabolites: !!omap - m03125c: -1 - m03125s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_C05767[e] + - id: "EX_C05767[e]" - name: "Exchange of Uroporphyrin I" - metabolites: !!omap - m03125s: -1 - m03125x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_mhista[e] + - id: "EX_mhista[e]" - name: "Exchange of N(Tele)-Methylhistaminium" - metabolites: !!omap - m02601s: -1 - m02601x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: PPBNGte + - id: "PPBNGte" - name: "Assumed Passive Diffusion into Extracellular Space" - metabolites: !!omap - m02756c: -1 - m02756s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_ppbng[e] + - id: "EX_ppbng[e]" - name: "Exchange of Porphobilinogen" - metabolites: !!omap - m02756s: -1 - m02756x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_13dampp[e] + - id: "EX_13dampp[e]" - name: "Exchange of Trimethylenediaminium" - metabolites: !!omap - m00248s: -1 - m00248x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_mma[e] + - id: "EX_mma[e]" - name: "Exchange of Methylammonium" - metabolites: !!omap - m02473s: -1 - m02473x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: 12PPDRte + - id: "12PPDRte" - name: "Assumed Passive Diffusion into Extracellular Space" - metabolites: !!omap - m02771c: -1 - m02771s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_12ppd_R[e] + - id: "EX_12ppd_R[e]" - name: "Exchange of (R)-Propane-1,2-Diol" - metabolites: !!omap - m02771s: -1 - m02771x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: AMETAMte + - id: "AMETAMte" - name: "Assumed Passive Diffusion into Extracellular Space" - metabolites: !!omap - m02870c: -1 - m02870s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 12031851 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 12031851" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_ametam[e] + - id: "EX_ametam[e]" - name: "Exchange of S-Adenosylmethioninamine" - metabolites: !!omap - m02870s: -1 - m02870x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: XYLULte + - id: "XYLULte" - name: "Assumed Passive Diffusion into Extracellular Space" - metabolites: !!omap - m02425c: -1 - m02425s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_xylu_L[e] + - id: "EX_xylu_L[e]" - name: "Exchange of L-Xylulose" - metabolites: !!omap - m02425s: -1 - m02425x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: XYLUDte + - id: "XYLUDte" - name: "Assumed Passive Diffusion into Extracellular Space" - metabolites: !!omap - m01759c: -1 - m01759s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_xylu_D[e] + - id: "EX_xylu_D[e]" - name: "Exchange of Xylu_D" - metabolites: !!omap - m01759s: -1 - m01759x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: GLCNte + - id: "GLCNte" - name: "Assumed Passive Diffusion into Extracellular Space" - metabolites: !!omap - m01683c: -1 - m01683s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CE0737te + - id: "CE0737te" - name: "Assumed Passive Diffusion into Extracellular Space" - metabolites: !!omap - m02441c: -1 - m02441s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:7132582 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:7132582" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_CE0737[e] + - id: "EX_CE0737[e]" - name: "Exchange of Malonic Dialdehyde" - metabolites: !!omap - m02441s: -1 - m02441x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: CH4Ste + - id: "CH4Ste" - name: "Assumed Passive Diffusion into Extracellular Space" - metabolites: !!omap - ch4s_c: -1 - ch4s_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_sphings[e] + - id: "EX_sphings[e]" - name: "Exchange of Sphingosine" - metabolites: !!omap - m02929s: -1 - m02929x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HDD2CRNte + - id: "HDD2CRNte" - name: "Passive Diffusion into Extracellular Space" - metabolites: !!omap - m02117c: -1 - m02117s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:26037250 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:26037250" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_hdd2crn[e] + - id: "EX_hdd2crn[e]" - name: "Exchange of Trans-Hexadec-2-Enoyl Carnitine" - metabolites: !!omap - m02117s: -1 - m02117x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: IM4ACte + - id: "IM4ACte" - name: "Assumed Passive Diffusion into Extracellular Space" - metabolites: !!omap - m02166c: 1 - m02166s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_im4ac[e] + - id: "EX_im4ac[e]" - name: "Exchange of Imidazol-4-Ylacetate" - metabolites: !!omap - m02166s: -1 - m02166x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE1918[e] + - id: "EX_CE1918[e]" - name: "Exchange of 5-Hydroxytryptophol" - metabolites: !!omap - m01110s: -1 - m01110x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_mlthf[e] + - id: "EX_mlthf[e]" - name: "Exchange of 5,10-Methylenetetrahydrofolate" - metabolites: !!omap - m01045s: -1 - m01045x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_ppp9[e] + - id: "EX_ppp9[e]" - name: "Exchange of Protoporphyrin" - metabolites: !!omap - m02803s: -1 - m02803x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: AACTte + - id: "AACTte" - name: "Assumed Passive Diffusion into Extracellular Space" - metabolites: !!omap - m01332c: 1 - m01332s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_aact[e] + - id: "EX_aact[e]" - name: "Exchange of Ammonioacetone" - metabolites: !!omap - m01332s: -1 - m01332x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_CE2705[e] + - id: "EX_CE2705[e]" - name: "Exchange of Quinonoid Dihydrobiopterin" - metabolites: !!omap - m02823s: -1 - m02823x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: SPHGNte + - id: "SPHGNte" - name: "Passive Diffusion into Extracellular Space" - metabolites: !!omap - m02927c: 1 - m02927s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:16009329, PMID:25133174 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:16009329, PMID:25133174" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_sphgn[e] + - id: "EX_sphgn[e]" - name: "Exchange of Sphinganine" - metabolites: !!omap - m02927s: -1 - m02927x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: SELMETHt2e + - id: "SELMETHt2e" - name: "Assumed Passive Diffusion into Extracellular Space" - metabolites: !!omap - m02891c: 1 - m02891s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_selmeth[e] + - id: "EX_selmeth[e]" - name: "Exchange of Selenomethionine" - metabolites: !!omap - m02891s: -1 - m02891x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_N1aspmd[e] + - id: "EX_N1aspmd[e]" - name: "Exchange of N(1)-Acetylspermidine" - metabolites: !!omap - m02503s: -1 - m02503x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: C13856te + - id: "C13856te" - name: "Assumed Passive Diffusion into Extracellular Space" - metabolites: !!omap - m00635c: -1 - m00635s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16808043, PMID: 25817877 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16808043, PMID: 25817877" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 1A25DHVITD3t2e + - id: "1A25DHVITD3t2e" - name: "Assumed Passive Diffusion into Extracellular Space" - metabolites: !!omap - m01417c: -1 - m01417s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_1a25dhvitd3[e] + - id: "EX_1a25dhvitd3[e]" - name: "Exchange of Calcitriol" - metabolites: !!omap - m01417s: -1 - m01417x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: PRISTte + - id: "PRISTte" - name: "Transport (ATP-Dependent) into Extracellular Space" - metabolites: !!omap - m01285c: 1 @@ -293425,30 +293425,30 @@ - m02766s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9831619, PMID: 5555776, PMID: 23104810 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9831619, PMID: 5555776, PMID: 23104810" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_prist[e] + - id: "EX_prist[e]" - name: "Exchange of Pristanic Acid" - metabolites: !!omap - m02766s: -1 - m02766x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: CE2049te + - id: "CE2049te" - name: "Transport (ATP-Dependent) into Extracellular Space" - metabolites: !!omap - m00314c: -1 @@ -293460,30 +293460,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9831619, PMID: 5555776, PMID: 23104810 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9831619, PMID: 5555776, PMID: 23104810" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_CE2049[e] + - id: "EX_CE2049[e]" - name: "Exchange of 12,13-Hydroxyoctadec-9(Z)-Enoate" - metabolites: !!omap - m00314s: -1 - m00314x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: CE2047te + - id: "CE2047te" - name: "Transport (ATP-Dependent) into Extracellular Space" - metabolites: !!omap - m01220c: -1 @@ -293495,465 +293495,465 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9831619, PMID: 5555776, PMID: 23104810 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9831619, PMID: 5555776, PMID: 23104810" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_CE2047[e] + - id: "EX_CE2047[e]" - name: "Exchange of 9,10-Hydroxyoctadec-12(Z)-Enoate" - metabolites: !!omap - m01220s: -1 - m01220x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: LANOSTte + - id: "LANOSTte" - name: "Transport of Lanosterol" - metabolites: !!omap - m02336c: -1 - m02336s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10998465 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10998465" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: FDPte + - id: "FDPte" - name: "Transport to Extracellular Space" - metabolites: !!omap - m01841c: -1 - m01841s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_fdp[e] + - id: "EX_fdp[e]" - name: "Exchange of D-Fructose 1,6-Bisphosphate" - metabolites: !!omap - m01841s: -1 - m01841x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_coke[e] + - id: "EX_coke[e]" - name: "Exchange of Cocaine" - metabolites: !!omap - m01601s: -1 - m01601x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: COKEte + - id: "COKEte" - name: "Transport of Cocaine" - metabolites: !!omap - m01601c: 1 - m01601s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: COKEtr + - id: "COKEtr" - name: "Transport of Cocaine, Endoplasmic Reticulum" - metabolites: !!omap - m01601c: -1 - m01601r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_5a2opntn[e] + - id: "EX_5a2opntn[e]" - name: "Exchange of 5-Amino-2-Oxopentanoic Acid" - metabolites: !!omap - m01073s: -1 - m01073x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: 5A2OPNTNte + - id: "5A2OPNTNte" - name: "Transport of 5-Amino-2-Oxopentanoic Acid, Extracellular" - metabolites: !!omap - m01073c: -1 - m01073s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 5A2OPNTNtx + - id: "5A2OPNTNtx" - name: "Transport of 5-Amino-2-Oxopentanoic Acid, Peroxisome" - metabolites: !!omap - m01073c: 1 - m01073p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LANOSTtr + - id: "LANOSTtr" - name: "Transport of Lanosterol, Endoplasmic Reticulum" - metabolites: !!omap - m02336c: 1 - m02336r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_vldl_hs[e] + - id: "EX_vldl_hs[e]" - name: "Exchange of VLDL_Hs" - metabolites: !!omap - vldl_hs_s: -1 - vldl_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_idl_hs[e] + - id: "EX_idl_hs[e]" - name: "Exchange of IDL_Hs" - metabolites: !!omap - idl_hs_s: -1 - idl_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_ldl_hs[e] + - id: "EX_ldl_hs[e]" - name: "Exchange of LDL_Hs" - metabolites: !!omap - ldl_hs_s: -1 - ldl_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_hdl_hs[e] + - id: "EX_hdl_hs[e]" - name: "Exchange of HDL_Hs" - metabolites: !!omap - hdl_hs_s: -1 - hdl_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HC00005te + - id: "HC00005te" - name: "Transport of Apo B, Extracellular" - metabolites: !!omap - m01351c: -1 - m01351s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_HC00005[e] + - id: "EX_HC00005[e]" - name: "Exchange of ApoB100" - metabolites: !!omap - m01351s: -1 - m01351x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HC00005t1e + - id: "HC00005t1e" - name: "Transport of Apo B, Extracellular" - metabolites: !!omap - m01351c: 1 - m01351s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HC00006te + - id: "HC00006te" - name: "Transport of Apo C1, Extracellular" - metabolites: !!omap - m01353c: -1 - m01353s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_HC00006[e] + - id: "EX_HC00006[e]" - name: "Exchange of Apo C1" - metabolites: !!omap - m01353s: -1 - m01353x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HC00006t1e + - id: "HC00006t1e" - name: "Transport of Apo C1, Extracellular" - metabolites: !!omap - m01353c: 1 - m01353s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HC00007te + - id: "HC00007te" - name: "Transport of Apo C2, Extracellular" - metabolites: !!omap - m01354c: -1 - m01354s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_HC00007[e] + - id: "EX_HC00007[e]" - name: "Exchange of Apo C2" - metabolites: !!omap - m01354s: -1 - m01354x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HC00007t1e + - id: "HC00007t1e" - name: "Transport of Apo C2, Extracellular" - metabolites: !!omap - m01354c: 1 - m01354s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HC00008te + - id: "HC00008te" - name: "Transport of Apo C3, Extracellular" - metabolites: !!omap - m01355c: -1 - m01355s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_HC00008[e] + - id: "EX_HC00008[e]" - name: "Exchange of Apo C3" - metabolites: !!omap - m01355s: -1 - m01355x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HC00008t1e + - id: "HC00008t1e" - name: "Transport of Apo C3, Extracellular" - metabolites: !!omap - m01355c: 1 - m01355s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HC00009te + - id: "HC00009te" - name: "Transport of Apo E, Extracellular" - metabolites: !!omap - m01359c: -1 - m01359s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_HC00009[e] + - id: "EX_HC00009[e]" - name: "Exchange of Apo E" - metabolites: !!omap - m01359s: -1 - m01359x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HC00009t1e + - id: "HC00009t1e" - name: "Transport of Apo E, Extracellular" - metabolites: !!omap - m01359c: 1 - m01359s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: DOPASULT4 + - id: "DOPASULT4" - name: "Dopamine 4-O-Sulfotransferase" - metabolites: !!omap - dopa4sf_c: 1 @@ -293963,15 +293963,15 @@ - m02682c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000196502 or ENSG00000261052 - - rxnFrom: Recon3D - - eccodes: 2.8.2.1 - - references: PMID: 23683503 + - gene_reaction_rule: "ENSG00000196502 or ENSG00000261052" + - rxnFrom: "Recon3D" + - eccodes: "2.8.2.1" + - references: "PMID: 23683503" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: UDPG4DOPA + - id: "UDPG4DOPA" - name: "Dopamine 4-O-Glucuronidation" - metabolites: !!omap - dopa4glcur_c: 1 @@ -293981,15 +293981,15 @@ - m03109c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000123989 and ENSG00000131873) or ENSG00000147408 or ENSG00000169826 or ENSG00000198108 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID: 19116261 + - gene_reaction_rule: "(ENSG00000123989 and ENSG00000131873) or ENSG00000147408 or ENSG00000169826 or ENSG00000198108" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID: 19116261" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: UDPG3DOPA + - id: "UDPG3DOPA" - name: "Dopamine 3-O-Glucuronidation" - metabolites: !!omap - dopa3glcur_c: 1 @@ -293999,15 +293999,15 @@ - m03109c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000123989 and ENSG00000131873) or ENSG00000147408 or ENSG00000169826 or ENSG00000198108 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID: 23683503 + - gene_reaction_rule: "(ENSG00000123989 and ENSG00000131873) or ENSG00000147408 or ENSG00000169826 or ENSG00000198108" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID: 23683503" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: TYRDOPOX + - id: "TYRDOPOX" - name: "Tyrosinase: Dopamine Oxidation" - metabolites: !!omap - m01736c: -2 @@ -294016,15 +294016,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000077498 - - rxnFrom: Recon3D - - eccodes: 1.14.18.1 - - references: PMID: 10563835 + - gene_reaction_rule: "ENSG00000077498" + - rxnFrom: "Recon3D" + - eccodes: "1.14.18.1" + - references: "PMID: 10563835" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: 34DHPEAR + - id: "34DHPEAR" - name: "3, 4-Dihydroxyphenylethanol:NADP+ Reductase" - metabolites: !!omap - 34dhpe_c: 1 @@ -294034,45 +294034,45 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000117448 - - rxnFrom: Recon3D - - eccodes: 1.1.1.2 - - references: PMID: 10797558 + - gene_reaction_rule: "ENSG00000117448" + - rxnFrom: "Recon3D" + - eccodes: "1.1.1.2" + - references: "PMID: 10797558" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: DOPA4SFt + - id: "DOPA4SFt" - name: "Dopamine 4-0-Sulfate Transport (Diffusion)" - metabolites: !!omap - dopa4sf_c: -1 - dopa4sf_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:23826355 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:23826355" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_dopa4sf[e] + - id: "EX_dopa4sf[e]" - name: "Exchange of Dopamine 4-O-Sulfate " - metabolites: !!omap - dopa4sf_s: -1 - dopa4sf_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: DOPA4GLCURt + - id: "DOPA4GLCURt" - name: "Dopamine 4-O-Glucuronide Transport" - metabolites: !!omap - dopa4glcur_c: -1 @@ -294084,30 +294084,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103222 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: + - gene_reaction_rule: "ENSG00000103222" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_dopa4glcur[e] + - id: "EX_dopa4glcur[e]" - name: "Exchange of Dopamine 4-O-Glucuronide " - metabolites: !!omap - dopa4glcur_s: -1 - dopa4glcur_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: DOPA3GLCURt + - id: "DOPA3GLCURt" - name: "Dopamine 3-O-Glucuronide Transport" - metabolites: !!omap - dopa3glcur_c: -1 @@ -294119,30 +294119,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103222 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: PMID:8640791 + - gene_reaction_rule: "ENSG00000103222" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "PMID:8640791" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_dopa3glcur[e] + - id: "EX_dopa3glcur[e]" - name: "Exchange of Dopamine 3-O-Glucuronide " - metabolites: !!omap - dopa3glcur_s: -1 - dopa3glcur_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: DOPACHRMDC + - id: "DOPACHRMDC" - name: "L-Dopachrome Decarboxylation" - metabolites: !!omap - m01596c: 1 @@ -294151,15 +294151,15 @@ - m02355c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 23683503 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 23683503" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: CE5026t + - id: "CE5026t" - name: "Transport of 5-S-Glutathionyl-L-Dopa" - metabolites: !!omap - m01139c: -1 @@ -294171,15 +294171,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000017797 or ENSG00000103222 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: PMID:9164836 + - gene_reaction_rule: "ENSG00000017797 or ENSG00000103222" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "PMID:9164836" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GGTe_1 + - id: "GGTe_1" - name: "Gamma-Glutamyltransferase" - metabolites: !!omap - 5cysgly34dhphe_s: 1 @@ -294188,15 +294188,15 @@ - m02040s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000099998 - - rxnFrom: Recon3D - - eccodes: 2.3.2.2 - - references: PMID: 9195564 + - gene_reaction_rule: "ENSG00000099998" + - rxnFrom: "Recon3D" + - eccodes: "2.3.2.2" + - references: "PMID: 9195564" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: CYSGLYPTASEe_1 + - id: "CYSGLYPTASEe_1" - name: "Cysteinylglycine Dipeptidase" - metabolites: !!omap - 5cysgly34dhphe_s: -1 @@ -294205,30 +294205,30 @@ - m02040s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9195564 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9195564" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: CE1261t + - id: "CE1261t" - name: "Transport of 5-S-Cysteinyldopa" - metabolites: !!omap - m01134c: -1 - m01134s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: DOPAOQNOX + - id: "DOPAOQNOX" - name: "Dopamine-O-Quinone Oxidase" - metabolites: !!omap - 6hddopaqn_c: 1 @@ -294237,15 +294237,15 @@ - m02041c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10563835 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10563835" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: DOPACCL + - id: "DOPACCL" - name: "Dopamine O-Quinone Cyclization" - metabolites: !!omap - m01738c: -1 @@ -294253,15 +294253,15 @@ - m02361c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 24548101 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 24548101" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: DOPAOQCYS + - id: "DOPAOQCYS" - name: "Dopamine-O-Quinone Cysteine Addition" - metabolites: !!omap - 5cysdopa_c: 1 @@ -294269,15 +294269,15 @@ - m01738c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9952424 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9952424" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: LACROX + - id: "LACROX" - name: "Leukoaminochrome Autoxidation" - metabolites: !!omap - 23dh1i56dio_c: 1 @@ -294286,15 +294286,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 22966478 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 22966478" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: NADPQNOXR + - id: "NADPQNOXR" - name: "Dt-Diaphorase: NADP Quinone Oxireductase" - metabolites: !!omap - 23dh1i56dio_c: -1 @@ -294304,15 +294304,15 @@ - m02555c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000181019 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 22966478 + - gene_reaction_rule: "ENSG00000181019" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 22966478" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: NADQNOXR + - id: "NADQNOXR" - name: "Dt-Diaphorase: NAD Quinone Oxireductase" - metabolites: !!omap - 23dh1i56dio_c: -1 @@ -294322,30 +294322,30 @@ - m02553c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000181019 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 22966478 + - gene_reaction_rule: "ENSG00000181019" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 22966478" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: DACT + - id: "DACT" - name: "2, 3-Dihydro-1H-Indole-5, 6-Dione Tautomerization" - metabolites: !!omap - 23dh1i56dio_c: -1 - m01739c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: DACGST + - id: "DACGST" - name: "2, 3-Dihydro-1H-Indole-5, 6-Dione Glutathione Conjugation" - metabolites: !!omap - 23dh1i56dio_c: -1 @@ -294353,15 +294353,15 @@ - m02026c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000213366 - - rxnFrom: Recon3D - - eccodes: 2.5.1.18 - - references: PMID: 24548101 + - gene_reaction_rule: "ENSG00000213366" + - rxnFrom: "Recon3D" + - eccodes: "2.5.1.18" + - references: "PMID: 24548101" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: TYRDHINDOX + - id: "TYRDHINDOX" - name: "Tyrosinase: 5, 6-Dihydroxyindole Oxygen Oxidoreductase" - metabolites: !!omap - ind56qn_c: 2 @@ -294370,15 +294370,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000077498 - - rxnFrom: Recon3D - - eccodes: 1.14.18.1 - - references: PMID: 24548101 + - gene_reaction_rule: "ENSG00000077498" + - rxnFrom: "Recon3D" + - eccodes: "1.14.18.1" + - references: "PMID: 24548101" - subsystem: - - Tyrosine metabolism + - "Tyrosine metabolism" - confidence_score: 0 - !!omap - - id: 4GLU56DIHDINDt + - id: "4GLU56DIHDINDt" - name: "Transport of 4-S-Glutathionyl-5, 6-Dihydroxyindoline" - metabolites: !!omap - 4glu56dihdind_c: -1 @@ -294390,60 +294390,60 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_4glu56dihdind[e] + - id: "EX_4glu56dihdind[e]" - name: "Exchange of 4-S-Glutathionyl-5, 6-Dihydroxyindoline " - metabolites: !!omap - 4glu56dihdind_s: -1 - 4glu56dihdind_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: 5CYSDOPAt + - id: "5CYSDOPAt" - name: "Transport of 5-S-Cysteinyldopamine" - metabolites: !!omap - 5cysdopa_c: -1 - 5cysdopa_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_5cysdopa[e] + - id: "EX_5cysdopa[e]" - name: "Exchange of 5-S-Cysteinyldopamine " - metabolites: !!omap - 5cysdopa_s: -1 - 5cysdopa_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: CE5025t + - id: "CE5025t" - name: "Transport of 5-S-Glutathionyl-Dopamine" - metabolites: !!omap - m01138c: -1 @@ -294455,90 +294455,90 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000017797 or ENSG00000103222 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: + - gene_reaction_rule: "ENSG00000017797 or ENSG00000103222" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_CE5025[e] + - id: "EX_CE5025[e]" - name: "Exchange of 5-S-Glutathionyl-Dopamine " - metabolites: !!omap - m01138s: -1 - m01138x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: CE2172t + - id: "CE2172t" - name: "Transport of 6, 7-Dihydroxy-1, 2, 3, 4-Tetrahydroisoquinoline" - metabolites: !!omap - m01154c: -1 - m01154s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8420138 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8420138" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_CE2172[e] + - id: "EX_CE2172[e]" - name: "Exchange of 6, 7-Dihydroxy-1, 2, 3, 4-Tetrahydroisoquinoline" - metabolites: !!omap - m01154s: -1 - m01154x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: CE5629t + - id: "CE5629t" - name: "Transport of 6, 7-Dihydroxy-1, 2, 3, 4-Tetrahydroisoquinoline" - metabolites: !!omap - m00231c: -1 - m00231s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8420138 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8420138" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_CE5629[e] + - id: "EX_CE5629[e]" - name: "Exchange of 6, 7-Dihydroxy-1, 2, 3, 4-Tetrahydroisoquinoline" - metabolites: !!omap - m00231s: -1 - m00231x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: ACER11r + - id: "ACER11r" - name: "Alkaline Ceramidase 1 (Acer1) Or Alkaline Ceramidase 3 (Acer3)" - metabolites: !!omap - Rtotal_r: 1 @@ -294547,15 +294547,15 @@ - m02929r: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000078124 or ENSG00000167769 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000078124 or ENSG00000167769" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: ACER12r + - id: "ACER12r" - name: "Alkaline Ceramidase 1 (Acer1) Or Alkaline Ceramidase 3 (Acer3)" - metabolites: !!omap - Rtotal_r: 1 @@ -294564,15 +294564,15 @@ - m02927r: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000078124 or ENSG00000167769 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000078124 or ENSG00000167769" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: ACER21g + - id: "ACER21g" - name: "Alkaline Ceramidase 2 (Acer2) Or Alkaline Ceramidase 3 (Acer3)" - metabolites: !!omap - Rtotal_g: 1 @@ -294581,15 +294581,15 @@ - m02929g: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000078124 or ENSG00000177076 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000078124 or ENSG00000177076" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: ACER22g + - id: "ACER22g" - name: "Alkaline Ceramidase 2 (Acer2) Or Alkaline Ceramidase 3 (Acer3)" - metabolites: !!omap - Rtotal_g: 1 @@ -294598,15 +294598,15 @@ - m02927g: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000078124 or ENSG00000177076 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000078124 or ENSG00000177076" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: ACER23g + - id: "ACER23g" - name: "Alkaline Ceramidase 3 (Acer3) Or Alkaline Ceramidase 2 (Acer2)" - metabolites: !!omap - Rtotal_g: 1 @@ -294615,15 +294615,15 @@ - phsphings_g: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000078124 or ENSG00000177076 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000078124 or ENSG00000177076" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: ACER31r + - id: "ACER31r" - name: "Alkaline Ceramidase 3 (Acer3)" - metabolites: !!omap - Rtotal_r: 1 @@ -294632,15 +294632,15 @@ - phsphings_r: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: ENSG00000078124 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000078124" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: BGAL1e + - id: "BGAL1e" - name: "Beta-Galactosidase, Plasma Membrane" - metabolites: !!omap - galgluside_hs_s: -1 @@ -294649,15 +294649,15 @@ - m02040s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000170266 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000170266" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: BGAL1l + - id: "BGAL1l" - name: "Beta-Galactosidase, Lysosomal" - metabolites: !!omap - gm1_hs_l: -1 @@ -294666,15 +294666,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 or ENSG00000141012 or ENSG00000170266 or ENSG00000196743 or ENSG00000197746 or ENSG00000204386 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000064601 or ENSG00000141012 or ENSG00000170266 or ENSG00000196743 or ENSG00000197746 or ENSG00000204386" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: BGAL2l + - id: "BGAL2l" - name: "Beta-Galactosidase, Lysosomal" - metabolites: !!omap - m01904l: -1 @@ -294683,15 +294683,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 or ENSG00000141012 or ENSG00000170266 or ENSG00000196743 or ENSG00000197746 or ENSG00000204386 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000064601 or ENSG00000141012 or ENSG00000170266 or ENSG00000196743 or ENSG00000197746 or ENSG00000204386" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: BGAL3l + - id: "BGAL3l" - name: "Beta-Galactosidase, Lysosomal" - metabolites: !!omap - m01910l: 1 @@ -294700,15 +294700,15 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000170266 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000170266" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: BGAL4l + - id: "BGAL4l" - name: "Beta-Galactosidase Lysosomal" - metabolites: !!omap - m01910l: 1 @@ -294717,30 +294717,30 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000170266 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000170266" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: CRMte + - id: "CRMte" - name: "Ceramide Diffusion" - metabolites: !!omap - m01430c: 1 - m01430s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: DES21 + - id: "DES21" - name: "Sphingolipid C-4 Hydroxylase (Des2)" - metabolites: !!omap - m01699c: -1 @@ -294752,135 +294752,135 @@ - phcrm_hs_c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000168350 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000168350" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: EX_gd3_hs[e] + - id: "EX_gd3_hs[e]" - name: "Exchange/Demand Reaction" - metabolites: !!omap - m01947s: -1 - m01947x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_gluside_hs[e] + - id: "EX_gluside_hs[e]" - name: "Exchange/Demand Reaction" - metabolites: !!omap - m01972s: -1 - m01972x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_gm3_hs[e] + - id: "EX_gm3_hs[e]" - name: "Exchange/Demand Reaction" - metabolites: !!omap - m02015s: -1 - m02015x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: GA1tl + - id: "GA1tl" - name: "Ganglioside Ga1 (Asialo Gm1) Endocytosis" - metabolites: !!omap - m01904l: 1 - m01904s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GM1Atl + - id: "GM1Atl" - name: "Ganglioside Gm1A Endocytosis" - metabolites: !!omap - m02009l: 1 - m02009s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GM2Atl + - id: "GM2Atl" - name: "Ganglioside Gm2A Endocytosis" - metabolites: !!omap - m02014l: 1 - m02014s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GALGLUSIDEtg2 + - id: "GALGLUSIDEtg2" - name: "Lactosylceramide Endocytosis" - metabolites: !!omap - galgluside_hs_g: 1 - galgluside_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GALGLUSIDEtl2 + - id: "GALGLUSIDEtl2" - name: "Lactosylceramide Endocytosis" - metabolites: !!omap - galgluside_hs_l: 1 - galgluside_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GBA2e + - id: "GBA2e" - name: "Beta-Glucosidase, Plasma Membrane (Gba2)" - metabolites: !!omap - m01430s: 1 @@ -294889,45 +294889,45 @@ - m02040s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000070610 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000070610" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: GD3tg + - id: "GD3tg" - name: "Ganglioside Gd3 Endocytosis" - metabolites: !!omap - m01947g: 1 - m01947s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GD3tl + - id: "GD3tl" - name: "Ganglioside Gd3 Endocytosis" - metabolites: !!omap - m01947l: 1 - m01947s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLA2l + - id: "GLA2l" - name: "Alpha-Galactosidase, Lysosomal" - metabolites: !!omap - galgluside_hs_l: 1 @@ -294936,30 +294936,30 @@ - m02040l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000102393 and ENSG00000197746 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000102393 and ENSG00000197746" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: GLUSIDEte + - id: "GLUSIDEte" - name: "Vesicle Transport of Glucosylceramide from Golgi to Extracellular" - metabolites: !!omap - m01972g: -1 - m01972s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLUSIDEtg + - id: "GLUSIDEtg" - name: "Endocytosis of Glucosylceramide" - metabolites: !!omap - m01285g: 1 @@ -294971,15 +294971,15 @@ - m02751g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLUSIDEtl + - id: "GLUSIDEtl" - name: "Endocytosis of Glucosylceramide" - metabolites: !!omap - m01285l: 1 @@ -294991,75 +294991,75 @@ - m02751l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GM1tg + - id: "GM1tg" - name: "Ganglioside Gm1 Endocytosis" - metabolites: !!omap - gm1_hs_g: 1 - gm1_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GM1tl + - id: "GM1tl" - name: "Ganglioside Gm1 Endocytosis" - metabolites: !!omap - gm1_hs_l: 1 - gm1_hs_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GM2tg + - id: "GM2tg" - name: "Ganglioside Gm2 Endocytosis" - metabolites: !!omap - m02011g: 1 - m02011s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GM2tl + - id: "GM2tl" - name: "Ganglioside Gm2 Endocytosis" - metabolites: !!omap - m02011l: 1 - m02011s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HEXA1l + - id: "HEXA1l" - name: "Hexosaminidase A, Lysosomal" - metabolites: !!omap - m02011l: -1 @@ -295068,15 +295068,15 @@ - m02525l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 and ENSG00000196743 and ENSG00000213614 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000049860 and ENSG00000196743 and ENSG00000213614" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HEXA2l + - id: "HEXA2l" - name: "Hexosaminidase A, Lysosomal" - metabolites: !!omap - m01946l: -1 @@ -295085,15 +295085,15 @@ - m02525l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 and ENSG00000213614 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000049860 and ENSG00000213614" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HEXA3e + - id: "HEXA3e" - name: "Hexosaminidase A, Plasma Membrane" - metabolites: !!omap - m02011s: -1 @@ -295102,15 +295102,15 @@ - m02525s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000049860 and ENSG00000196743 and ENSG00000213614 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000049860 and ENSG00000196743 and ENSG00000213614" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: HEXAHBl + - id: "HEXAHBl" - name: "Hexosaminidase A;Lysosomal Or Hexosaminidase B;Lysosomal" - metabolites: !!omap - galgluside_hs_l: 1 @@ -295119,15 +295119,15 @@ - m02525l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: (ENSG00000049860 and ENSG00000196743 and ENSG00000213614) or (ENSG00000049860 and ENSG00000196743) - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "(ENSG00000049860 and ENSG00000196743 and ENSG00000213614) or (ENSG00000049860 and ENSG00000196743)" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: NEU11l + - id: "NEU11l" - name: "Sialidase, Lysosomal (Neu1)" - metabolites: !!omap - galgluside_hs_l: 1 @@ -295136,15 +295136,15 @@ - m02543l: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000064601 and ENSG00000141012 and ENSG00000170266 and ENSG00000204386" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: NEU21 + - id: "NEU21" - name: "Sialidase, Cytosol (Neu2)" - metabolites: !!omap - gm1_hs_c: 1 @@ -295153,15 +295153,15 @@ - m02543c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115488 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000115488" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: NEU22 + - id: "NEU22" - name: "Sialidase, Cytosol (Neu2)" - metabolites: !!omap - gm1_hs_c: 1 @@ -295170,15 +295170,15 @@ - m02543c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115488 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000115488" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: NEU24 + - id: "NEU24" - name: "Sialidase, Cytosol (Neu2)" - metabolites: !!omap - gm1_hs_c: -1 @@ -295187,15 +295187,15 @@ - m02543c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000115488 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000115488" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: NEU310e + - id: "NEU310e" - name: "Sialidase, Plasma Membrane (Neu3)" - metabolites: !!omap - m01945s: -1 @@ -295204,15 +295204,15 @@ - m02543s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: NEU31e + - id: "NEU31e" - name: "Sialidase, Plasma Membrane (Neu3)" - metabolites: !!omap - galgluside_hs_s: 1 @@ -295221,15 +295221,15 @@ - m02543s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162139 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000162139" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: NEU32e + - id: "NEU32e" - name: "Sialidase, Plasma Membrane (Neu3)" - metabolites: !!omap - gm1_hs_s: 1 @@ -295238,15 +295238,15 @@ - m02543s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162139 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000162139" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: NEU33e + - id: "NEU33e" - name: "Sialidase, Plasma Membrane (Neu3)" - metabolites: !!omap - gm1_hs_s: 1 @@ -295255,15 +295255,15 @@ - m02543s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162139 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000162139" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: NEU34e + - id: "NEU34e" - name: "Sialidase, Plasma Membrane (Neu3)" - metabolites: !!omap - m01943s: 1 @@ -295272,15 +295272,15 @@ - m02543s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162139 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000162139" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: NEU35e + - id: "NEU35e" - name: "Sialidase, Plasma Membrane (Neu3)" - metabolites: !!omap - m01947s: -1 @@ -295289,15 +295289,15 @@ - m02543s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162139 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000162139" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: NEU36e + - id: "NEU36e" - name: "Sialidase, Plasma Membrane (Neu3)" - metabolites: !!omap - m02023s: -1 @@ -295306,15 +295306,15 @@ - m02543s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162139 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000162139" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: NEU37e + - id: "NEU37e" - name: "Sialidase, Plasma Membrane (Neu3)" - metabolites: !!omap - m01946s: -1 @@ -295323,15 +295323,15 @@ - m02543s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162139 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000162139" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: NEU38n + - id: "NEU38n" - name: "Sialidase, Nucleus (Neu3 Or Neu1)" - metabolites: !!omap - gm1_hs_n: 1 @@ -295340,15 +295340,15 @@ - m02543n: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162139 or ENSG00000204386 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000162139 or ENSG00000204386" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: NEU39e + - id: "NEU39e" - name: "Sialidase, Plasma Membrane (Neu3)" - metabolites: !!omap - m01904s: 1 @@ -295357,15 +295357,15 @@ - m02543s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000162139 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000162139" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: SMS21e + - id: "SMS21e" - name: "Sphingomyelin Synthase 2" - metabolites: !!omap - m00235s: 1 @@ -295374,15 +295374,15 @@ - m02908s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000164023 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000164023" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: SMSn + - id: "SMSn" - name: "Sphingomyelin Synthase" - metabolites: !!omap - m00235n: 1 @@ -295391,15 +295391,15 @@ - m02908n: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: SPHK11 + - id: "SPHK11" - name: "Sphingosine Kinase 1" - metabolites: !!omap - m01285c: 1 @@ -295409,15 +295409,15 @@ - phsphings_c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000176170 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000176170" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: SPHK21n + - id: "SPHK21n" - name: "Sphingosine Kinase 2" - metabolites: !!omap - m01285n: 1 @@ -295427,15 +295427,15 @@ - m02930n: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000063176 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000063176" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: SPHK22n + - id: "SPHK22n" - name: "Sphingosine Kinase 2" - metabolites: !!omap - m01285n: 1 @@ -295445,30 +295445,30 @@ - m02928n: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000063176 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000063176" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: SPHMYLNte + - id: "SPHMYLNte" - name: "Vesicle Transport of Sphingomyelin from Golgi to Extracellular" - metabolites: !!omap - m02908g: -1 - m02908s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHMYLNtl2 + - id: "SPHMYLNtl2" - name: "Endocytosis of Sphingomyelin" - metabolites: !!omap - m01285l: 1 @@ -295480,15 +295480,15 @@ - m02908s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPMD3n + - id: "SPMD3n" - name: "Neutral Sphingomyelinase" - metabolites: !!omap - m01430n: 1 @@ -295498,15 +295498,15 @@ - m02908n: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000103056 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000103056" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: ST8SIA13e + - id: "ST8SIA13e" - name: "Alpha-N-Acetylneuraminate Alpha-2, 8-Sialyltransferase" - metabolites: !!omap - m01590s: 1 @@ -295516,15 +295516,15 @@ - m02039s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000113532 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000113532" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: RE3477C1 + - id: "RE3477C1" - name: "NAD Dependent 11-Hydroxythromboxane B2 Dehydrogenase " - metabolites: !!omap - m00293c: 1 @@ -295534,15 +295534,15 @@ - txb2_c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Eicosanoid metabolism + - "Eicosanoid metabolism" - confidence_score: 0 - !!omap - - id: NO2te + - id: "NO2te" - name: "Nitrite Dioxide Transport, Assumed Diffusion" - metabolites: !!omap - m02039c: 1 @@ -295551,345 +295551,345 @@ - m02588s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: NH4tr + - id: "NH4tr" - name: "Ammonia Er Transport, Diffusion" - metabolites: !!omap - m02579c: -1 - m02579r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: WHTSTSTERONEtr + - id: "WHTSTSTERONEtr" - name: "Omega Hydroxy Testosterone Transport" - metabolites: !!omap - m00432c: -1 - m00432r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: UDPGALt2n + - id: "UDPGALt2n" - name: "UDPgalactose Transport (Nuclear)" - metabolites: !!omap - m03107c: -1 - m03107n: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: UDPGALt2r + - id: "UDPGALt2r" - name: "UDPgalactose Transport, Endoplasmatic Reticulum" - metabolites: !!omap - m03107c: -1 - m03107r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TETTET6COAtm + - id: "TETTET6COAtm" - name: "Fatty Acid Intracellular Transport, Mitochondrial" - metabolites: !!omap - m00131c: -1 - m00131m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TETPENT6COAtm + - id: "TETPENT6COAtm" - name: "Fatty Acid Intracellular Transport, Mitochondrial" - metabolites: !!omap - m00110c: -1 - m00110m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TETPENT3COAtm + - id: "TETPENT3COAtm" - name: "Fatty Acid Intracellular Transport, Mitochondrial" - metabolites: !!omap - m00134c: -1 - m00134m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PCHOL_HStn + - id: "PCHOL_HStn" - name: "Phosphatidylcholine Scramblase" - metabolites: !!omap - m02684c: -1 - m02684n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CHOLPtn + - id: "CHOLPtn" - name: "Choline Phosphate Intracellular Transport" - metabolites: !!omap - m02738c: -1 - m02738n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PHCRMtg + - id: "PHCRMtg" - name: "Phytoceramide Transport, Golgi Apparatus" - metabolites: !!omap - phcrm_hs_c: -1 - phcrm_hs_g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PHCRMter + - id: "PHCRMter" - name: "Phytoceramide Transport, Endoplasmatic Reticulum" - metabolites: !!omap - phcrm_hs_c: -1 - phcrm_hs_r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHGNtn + - id: "SPHGNtn" - name: "Sphinganine Intracellular Transport" - metabolites: !!omap - m02927c: -1 - m02927n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHGNtg + - id: "SPHGNtg" - name: "Sphinganine Intracellular Transport" - metabolites: !!omap - m02927c: -1 - m02927g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHINGStn + - id: "SPHINGStn" - name: "Sphingosine Intracellular Transport" - metabolites: !!omap - m02929c: -1 - m02929n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: SPHINGStg + - id: "SPHINGStg" - name: "Sphingosine Intracellular Transport" - metabolites: !!omap - m02929c: -1 - m02929g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_cmpacna[e] + - id: "EX_cmpacna[e]" - name: "Exchange of CMP-N-Acetyl-Beta-Neuraminate " - metabolites: !!omap - m01592s: -1 - m01592x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_gd2_hs[e] + - id: "EX_gd2_hs[e]" - name: "Exchange of Gd2 " - metabolites: !!omap - m01946s: -1 - m01946x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_gd1a_hs[e] + - id: "EX_gd1a_hs[e]" - name: "Exchange of Gd1A" - metabolites: !!omap - m01941s: -1 - m01941x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: DHCRMtg + - id: "DHCRMtg" - name: "Dihydroceramide Transport, Golgi Apparatus" - metabolites: !!omap - m01699c: -1 - m01699g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: DHCRMter + - id: "DHCRMter" - name: "Dihydroceramide Transport, Endoplasmatic Reticulum" - metabolites: !!omap - m01699c: -1 - m01699r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PHSPHINGStg + - id: "PHSPHINGStg" - name: "Phytosphingosine Transport, from Golgi to Cytosol (Flippase?)" - metabolites: !!omap - phsphings_c: 1 - phsphings_g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PHSPHINGStr + - id: "PHSPHINGStr" - name: "Phytosphingosine Transport, from Er to Cytosol (Flippase?)" - metabolites: !!omap - phsphings_c: 1 - phsphings_r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PHSGPL11c + - id: "PHSGPL11c" - name: "Sphingosine-1-Phosphate Lyase 1 (Phytosphingosine-1-Phosphate, Cytosol)" - metabolites: !!omap - hhxdcal_c: 1 @@ -295897,165 +295897,165 @@ - phsph1p_c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Sphingolipid metabolism + - "Sphingolipid metabolism" - confidence_score: 0 - !!omap - - id: LCYSTtm + - id: "LCYSTtm" - name: "Transport of L-Cysteate, Diffusion" - metabolites: !!omap - m02350c: -1 - m02350m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 34DHPEt + - id: "34DHPEt" - name: "Transport of 3, 4-Dihydroxyphenylethanol via Passive Diffusion" - metabolites: !!omap - 34dhpe_c: 1 - 34dhpe_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_34dhpe[c] + - id: "EX_34dhpe[c]" - name: "Exchange of 3, 4-Dihydroxyphenylethanol " - metabolites: !!omap - 34dhpe_s: -1 - 34dhpe_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: GALSIDEter + - id: "GALSIDEter" - name: "Galactocerebroside Intracellular Transport" - metabolites: !!omap - m01679c: -1 - m01679r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GALSIDEtn + - id: "GALSIDEtn" - name: "Galactocerebroside Intracellular Transport" - metabolites: !!omap - m01679c: -1 - m01679n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CERT1tn + - id: "CERT1tn" - name: "Ceramide Transport Protei" - metabolites: !!omap - m01430c: -1 - m01430n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: Rtotalter + - id: "Rtotalter" - name: "Fatty Acid Intracellular Transport" - metabolites: !!omap - Rtotal_c: -1 - Rtotal_r: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: Rtotaltg + - id: "Rtotaltg" - name: "Fatty Acid Intracellular Transport" - metabolites: !!omap - Rtotal_c: -1 - Rtotal_g: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GD1Atg + - id: "GD1Atg" - name: "Transport of Gd1A " - metabolites: !!omap - m01941c: 1 - m01941g: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GD1Atn + - id: "GD1Atn" - name: "Transport of Gd1A " - metabolites: !!omap - m01941c: -1 - m01941n: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ATPtg + - id: "ATPtg" - name: "ADP/ATP Transporter, Golgi" - metabolites: !!omap - m01285c: 1 @@ -296064,75 +296064,75 @@ - m01371g: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GD1Btl + - id: "GD1Btl" - name: "Transport of Gd1B " - metabolites: !!omap - m01943c: -1 - m01943l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GD3tlc + - id: "GD3tlc" - name: "Transport of Gd3, Lysosomal" - metabolites: !!omap - m01947c: 1 - m01947l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GD3tm + - id: "GD3tm" - name: "Transport of Gd3, Mitochondrial" - metabolites: !!omap - m01947c: -1 - m01947m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PAPtl + - id: "PAPtl" - name: "Adenosine 3', 5'-Bisphosphate Lysosome Transport" - metabolites: !!omap - m02681c: 1 - m02681l: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CATr + - id: "CATr" - name: "Catalase" - metabolites: !!omap - m02040r: 2 @@ -296140,225 +296140,225 @@ - m02630r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - ROS detoxification + - "ROS detoxification" - confidence_score: 0 - !!omap - - id: S2L2N2M2Mtl + - id: "S2L2N2M2Mtl" - name: "Transport of De-Fuc Form of Pa6, Lysosomal" - metabolites: !!omap - m01651c: -1 - m01651l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: EX_pail_hs[e] + - id: "EX_pail_hs[e]" - name: "Exchange of 1-Phosphatidyl-1D-Myo-Inositol" - metabolites: !!omap - m02750s: -1 - m02750x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: EX_CE1243[e] + - id: "EX_CE1243[e]" - name: "Exchange of (12S)-12-hydroxyheptadeca-5,8,10-trienoic acid (12S-HHT)" - metabolites: !!omap - m00308s: -1 - m00308x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: EX_CE5026[e] + - id: "EX_CE5026[e]" - name: "Exchange of 5-S-Glutathionyl-L-Dopa" - metabolites: !!omap - m01139s: -1 - m01139x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: EX_5cysgly34dhphe[e] + - id: "EX_5cysgly34dhphe[e]" - name: "Exchange of 5-S-Cysteinylglycine Dopa" - metabolites: !!omap - 5cysgly34dhphe_s: -1 - 5cysgly34dhphe_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: EX_CE1261[e] + - id: "EX_CE1261[e]" - name: "Exchange of 5-S-Cysteinyldopa" - metabolites: !!omap - m01134s: -1 - m01134x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: EX_galgluside_hs[e] + - id: "EX_galgluside_hs[e]" - name: "Exchange of Galactosyl Glucosyl Ceramide" - metabolites: !!omap - galgluside_hs_s: -1 - galgluside_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: EX_ga1_hs[e] + - id: "EX_ga1_hs[e]" - name: "Exchange of Gibberellin A1" - metabolites: !!omap - m01904s: -1 - m01904x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: EX_gm1a_hs[e] + - id: "EX_gm1a_hs[e]" - name: "Exchange of Gm1Alpha" - metabolites: !!omap - m02009s: -1 - m02009x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: EX_gm2a_hs[e] + - id: "EX_gm2a_hs[e]" - name: "Exchange of Gm2Alpha" - metabolites: !!omap - m02014s: -1 - m02014x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: EX_gm1_hs[e] + - id: "EX_gm1_hs[e]" - name: "Exchange of Ganglioside Gm1" - metabolites: !!omap - gm1_hs_s: -1 - gm1_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: EX_gm1b_hs[e] + - id: "EX_gm1b_hs[e]" - name: "Exchange of Gm1B" - metabolites: !!omap - m02010s: -1 - m02010x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: EX_gd1b_hs[e] + - id: "EX_gd1b_hs[e]" - name: "Exchange of Gd1B" - metabolites: !!omap - m01943s: -1 - m01943x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: EX_gt1b_hs[e] + - id: "EX_gt1b_hs[e]" - name: "Exchange of Gt1B" - metabolites: !!omap - m02030s: -1 - m02030x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: biomass_HMR_RenalCancer + - id: "biomass_HMR_RenalCancer" - name: "HMR Biomass Renal Cancer Reaction" - metabolites: !!omap - m00240c: -0.0031466 @@ -296401,30 +296401,30 @@ - temp001c: 1 - lower_bound: 0 - upper_bound: 0 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: 2.5.1.18 - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "2.5.1.18" + - references: "" - subsystem: - - Artificial reactions + - "Artificial reactions" - confidence_score: 0 - !!omap - - id: EX_nadh[e] + - id: "EX_nadh[e]" - name: "Exchange of Nicotinamide Adenine Dinucleotide - Reduced" - metabolites: !!omap - m02553s: -1 - m02553x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: 12DHCHOLabc + - id: "12DHCHOLabc" - name: "12-Dehydrocholic acid ABC bile acid transporter" - metabolites: !!omap - 12dhchol_c: -1 @@ -296436,15 +296436,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000073734 or ENSG00000108846 or ENSG00000125257 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:25210150, PMID:26579438, PMID:23506869 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000073734 or ENSG00000108846 or ENSG00000125257" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:25210150, PMID:26579438, PMID:23506869" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 12DHCHOLt + - id: "12DHCHOLt" - name: "12-Dehydrocholic acid transport via bicarbonate countertransport" - metabolites: !!omap - 12dhchol_c: 1 @@ -296453,15 +296453,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111700 or ENSG00000134538 or ENSG00000163959 or ENSG00000186198 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:25210150, PMID:26579438 + - gene_reaction_rule: "ENSG00000111700 or ENSG00000134538 or ENSG00000163959 or ENSG00000186198" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:25210150, PMID:26579438" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 12DHCHOLt2 + - id: "12DHCHOLt2" - name: "12-Dehydrocholic acid transport via sodium cotransport" - metabolites: !!omap - 12dhchol_c: 1 @@ -296470,15 +296470,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100652 or ENSG00000125255 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:25210150, PMID:26579438 + - gene_reaction_rule: "ENSG00000100652 or ENSG00000125255" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:25210150, PMID:26579438" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3DHCAS + - id: "3DHCAS" - name: "3-dehydrocholic acid formation" - metabolites: !!omap - 3dhchol_c: 1 @@ -296490,15 +296490,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.13.97 - - references: PMID:15708356 , PMID:17263554 + - gene_reaction_rule: "ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.97" + - references: "PMID:15708356 , PMID:17263554" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: 3DHCDCAS + - id: "3DHCDCAS" - name: "3-dehydro-chenodehydroxycholic acid formation" - metabolites: !!omap - 3dhcdchol_c: 1 @@ -296510,15 +296510,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.13.97 - - references: PMID:15708356 , PMID:17263554 + - gene_reaction_rule: "ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.97" + - references: "PMID:15708356 , PMID:17263554" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: 3DHCDCHOLabc + - id: "3DHCDCHOLabc" - name: "3-Dehydrochenodeoxycholic acid ABC bile acid transporter" - metabolites: !!omap - 3dhcdchol_c: -1 @@ -296530,15 +296530,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000073734 or ENSG00000108846 or ENSG00000125257 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:25210150, PMID:26579438, PMID:23506869 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000073734 or ENSG00000108846 or ENSG00000125257" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:25210150, PMID:26579438, PMID:23506869" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3DHCDCHOLt + - id: "3DHCDCHOLt" - name: "3-Dehydrochenodeoxycholic acid transport via bicarbonate countertransport" - metabolites: !!omap - 3dhcdchol_c: 1 @@ -296547,15 +296547,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111700 or ENSG00000134538 or ENSG00000163959 or ENSG00000186198 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:25210150, PMID:26579438 + - gene_reaction_rule: "ENSG00000111700 or ENSG00000134538 or ENSG00000163959 or ENSG00000186198" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:25210150, PMID:26579438" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3DHCDCHOLt2 + - id: "3DHCDCHOLt2" - name: "3-Dehydrochenodeoxycholic acid transport via sodium cotransport" - metabolites: !!omap - 3dhcdchol_c: 1 @@ -296564,15 +296564,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100652 or ENSG00000125255 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:25210150, PMID:26579438 + - gene_reaction_rule: "ENSG00000100652 or ENSG00000125255" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:25210150, PMID:26579438" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3DHCHOLabc + - id: "3DHCHOLabc" - name: "3-Dehydrocholic acid ABC bile acid transporter" - metabolites: !!omap - 3dhchol_c: -1 @@ -296584,15 +296584,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000073734 or ENSG00000108846 or ENSG00000125257 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:25210150, PMID:26579438, PMID:23506869 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000073734 or ENSG00000108846 or ENSG00000125257" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:25210150, PMID:26579438, PMID:23506869" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3DHCHOLt + - id: "3DHCHOLt" - name: "3-Dehydrocholic acid transport via bicarbonate countertransport" - metabolites: !!omap - 3dhchol_c: 1 @@ -296601,15 +296601,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111700 or ENSG00000134538 or ENSG00000163959 or ENSG00000186198 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:25210150, PMID:26579438 + - gene_reaction_rule: "ENSG00000111700 or ENSG00000134538 or ENSG00000163959 or ENSG00000186198" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:25210150, PMID:26579438" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3DHCHOLt2 + - id: "3DHCHOLt2" - name: "3-Dehydrocholic acid transport via sodium cotransport" - metabolites: !!omap - 3dhchol_c: 1 @@ -296618,15 +296618,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100652 or ENSG00000125255 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:25210150, PMID:26579438 + - gene_reaction_rule: "ENSG00000100652 or ENSG00000125255" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:25210150, PMID:26579438" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3DHDCAabc + - id: "3DHDCAabc" - name: "3-dehydro-deoxycholic acid ABC bile acid transporter" - metabolites: !!omap - 3dhdchol_c: -1 @@ -296638,15 +296638,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000073734 or ENSG00000108846 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:25210150, PMID:26579438 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000073734 or ENSG00000108846" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:25210150, PMID:26579438" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3DHDCAS + - id: "3DHDCAS" - name: "3-dehydro-deoxycholic acid formation" - metabolites: !!omap - 3dhdchol_c: 1 @@ -296658,15 +296658,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.13.97 - - references: PMID:15708356 , PMID:17263554 + - gene_reaction_rule: "ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.97" + - references: "PMID:15708356 , PMID:17263554" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: 3DHDCAt + - id: "3DHDCAt" - name: "3-dehydro-deoxycholic acid transport via bicarbonate countertransport" - metabolites: !!omap - 3dhdchol_c: 1 @@ -296675,15 +296675,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111700 or ENSG00000134538 or ENSG00000163959 or ENSG00000186198 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:25210150, PMID:26579438 + - gene_reaction_rule: "ENSG00000111700 or ENSG00000134538 or ENSG00000163959 or ENSG00000186198" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:25210150, PMID:26579438" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3DHDCAt2 + - id: "3DHDCAt2" - name: "3-dehydro-deoxycholic acid transport via sodium cotransport" - metabolites: !!omap - 3dhdchol_c: 1 @@ -296692,15 +296692,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100652 or ENSG00000125255 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:25210150, PMID:26579438 + - gene_reaction_rule: "ENSG00000100652 or ENSG00000125255" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:25210150, PMID:26579438" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3DHLCAabc + - id: "3DHLCAabc" - name: "3-dehydro-lithocholic acid ABC bile acid transporter" - metabolites: !!omap - 3dhlchol_c: -1 @@ -296712,15 +296712,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000073734 or ENSG00000108846 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:25210150, PMID:26579438 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000073734 or ENSG00000108846" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:25210150, PMID:26579438" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3DHLCAS + - id: "3DHLCAS" - name: "3-dehydro-lithocholic acid formation" - metabolites: !!omap - 3dhlchol_c: 1 @@ -296732,15 +296732,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.13.97 - - references: PMID:15708356 , PMID:17263554 + - gene_reaction_rule: "ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.97" + - references: "PMID:15708356 , PMID:17263554" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: 3DHLCAt + - id: "3DHLCAt" - name: "3-dehydro-lithocholic acid transport via bicarbonate countertransport" - metabolites: !!omap - 3dhlchol_c: 1 @@ -296749,15 +296749,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111700 or ENSG00000134538 or ENSG00000163959 or ENSG00000186198 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:25210150, PMID:26579438 + - gene_reaction_rule: "ENSG00000111700 or ENSG00000134538 or ENSG00000163959 or ENSG00000186198" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:25210150, PMID:26579438" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 3DHLCAt2 + - id: "3DHLCAt2" - name: "3-dehydro-lithocholic acid transport via sodium cotransport" - metabolites: !!omap - 3dhlchol_c: 1 @@ -296766,15 +296766,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100652 or ENSG00000125255 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:25210150, PMID:26579438 + - gene_reaction_rule: "ENSG00000100652 or ENSG00000125255" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:25210150, PMID:26579438" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 7DHCDCHOLabc + - id: "7DHCDCHOLabc" - name: "7-Dehydrochenodeoxycholic acid ABC bile acid transporter" - metabolites: !!omap - 7dhcdchol_c: -1 @@ -296786,15 +296786,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000073734 or ENSG00000108846 or ENSG00000125257 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:25210150, PMID:26579438, PMID:23506869 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000073734 or ENSG00000108846 or ENSG00000125257" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:25210150, PMID:26579438, PMID:23506869" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 7DHCDCHOLt + - id: "7DHCDCHOLt" - name: "7-Dehydrochenodeoxycholic acid transport via bicarbonate countertransport" - metabolites: !!omap - 7dhcdchol_c: 1 @@ -296803,15 +296803,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111700 or ENSG00000134538 or ENSG00000163959 or ENSG00000186198 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:25210150, PMID:26579438 + - gene_reaction_rule: "ENSG00000111700 or ENSG00000134538 or ENSG00000163959 or ENSG00000186198" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:25210150, PMID:26579438" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 7DHCDCHOLt2 + - id: "7DHCDCHOLt2" - name: "7-Dehydrochenodeoxycholic acid transport via sodium cotransport" - metabolites: !!omap - 7dhcdchol_c: 1 @@ -296820,15 +296820,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100652 or ENSG00000125255 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:25210150, PMID:26579438 + - gene_reaction_rule: "ENSG00000100652 or ENSG00000125255" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:25210150, PMID:26579438" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 7DHCHOLabc + - id: "7DHCHOLabc" - name: "7-Dehydrocholic acid ABC bile acid transporter" - metabolites: !!omap - 7dhchol_c: -1 @@ -296840,15 +296840,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000073734 or ENSG00000108846 or ENSG00000125257 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:25210150, PMID:26579438, PMID:23506869 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000073734 or ENSG00000108846 or ENSG00000125257" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:25210150, PMID:26579438, PMID:23506869" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 7DHCHOLt + - id: "7DHCHOLt" - name: "7-Dehydrocholic acid transport via bicarbonate countertransport" - metabolites: !!omap - 7dhchol_c: 1 @@ -296857,15 +296857,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111700 or ENSG00000134538 or ENSG00000163959 or ENSG00000186198 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:25210150, PMID:26579438 + - gene_reaction_rule: "ENSG00000111700 or ENSG00000134538 or ENSG00000163959 or ENSG00000186198" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:25210150, PMID:26579438" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 7DHCHOLt2 + - id: "7DHCHOLt2" - name: "7-Dehydrocholic acid transport via sodium cotransport" - metabolites: !!omap - 7dhchol_c: 1 @@ -296874,15 +296874,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100652 or ENSG00000125255 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:25210150, PMID:26579438 + - gene_reaction_rule: "ENSG00000100652 or ENSG00000125255" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:25210150, PMID:26579438" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CA24GSc + - id: "CA24GSc" - name: "UDP-Glucuronosyltransferase (UGT) cytosolic (cholic acid)" - metabolites: !!omap - ca24g_c: 1 @@ -296891,15 +296891,15 @@ - m03109c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000173610 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID:10529008, PMID:8244999, PMID:21995321, PMID:23756265 + - gene_reaction_rule: "ENSG00000173610" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID:10529008, PMID:8244999, PMID:21995321, PMID:23756265" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: CA24GSr + - id: "CA24GSr" - name: "UDP-Glucuronosyltransferase (UGT) (cholic acid)" - metabolites: !!omap - ca24g_r: 1 @@ -296908,15 +296908,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000173610 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID:10529008, PMID:8244999, PMID:21995321, PMID:23756265 + - gene_reaction_rule: "ENSG00000173610" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID:10529008, PMID:8244999, PMID:21995321, PMID:23756265" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: CA24Gte + - id: "CA24Gte" - name: "Glucuronidated bile acid excretion (CA-24G)" - metabolites: !!omap - ca24g_c: -1 @@ -296928,30 +296928,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000108846 or ENSG00000118777 - - rxnFrom: Recon3D - - eccodes: - - references: Geoffrey J. Dutton, CRC Press, 1980, PMID:10529008, PMID:25210150 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000108846 or ENSG00000118777" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Geoffrey J. Dutton, CRC Press, 1980, PMID:10529008, PMID:25210150" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CA24Gtr + - id: "CA24Gtr" - name: "Glucuronidated Compound Transport (CA-24G)" - metabolites: !!omap - ca24g_c: -1 - ca24g_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CA3Sabc + - id: "CA3Sabc" - name: "Cholic acid 3-sulfate ABC bile acid transporter" - metabolites: !!omap - ca3s_c: -1 @@ -296963,15 +296963,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000108846 or ENSG00000118777 or ENSG00000125257 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:19131563, PMID:25210150 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000108846 or ENSG00000118777 or ENSG00000125257" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:19131563, PMID:25210150" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CA3St + - id: "CA3St" - name: "Cholic acid 3-sulfate transport via bicarbonate countertransport" - metabolites: !!omap - ca3s_c: 1 @@ -296980,15 +296980,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111700 or ENSG00000134538 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:19131563 + - gene_reaction_rule: "ENSG00000111700 or ENSG00000134538" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:19131563" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CASULT + - id: "CASULT" - name: "Cholic acid sulfotransferase" - metabolites: !!omap - ca3s_c: 1 @@ -296998,15 +296998,15 @@ - m02682c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105398 - - rxnFrom: Recon3D - - eccodes: 2.8.2.14 - - references: PMID:16949895, PMID:19131563, PMID:25210150 + - gene_reaction_rule: "ENSG00000105398" + - rxnFrom: "Recon3D" + - eccodes: "2.8.2.14" + - references: "PMID:16949895, PMID:19131563, PMID:25210150" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: CDCA24GSc + - id: "CDCA24GSc" - name: "UDP-Glucuronosyltransferase (UGT) cytosolic (chenodeoxycholic acid)" - metabolites: !!omap - C02528_c: -1 @@ -297015,15 +297015,15 @@ - m03109c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135220 or ENSG00000173610 or ENSG00000243135 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID:17058234, PMID:23756265, PMID:25210150 + - gene_reaction_rule: "ENSG00000135220 or ENSG00000173610 or ENSG00000243135" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID:17058234, PMID:23756265, PMID:25210150" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: CDCA24GSr + - id: "CDCA24GSr" - name: "UDP-Glucuronosyltransferase (UGT) (chenodeoxycholic acid)" - metabolites: !!omap - C02528_r: -1 @@ -297032,15 +297032,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135220 or ENSG00000173610 or ENSG00000243135 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID:17058234, PMID:23756265, PMID:25210150 + - gene_reaction_rule: "ENSG00000135220 or ENSG00000173610 or ENSG00000243135" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID:17058234, PMID:23756265, PMID:25210150" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: CDCA24Gte + - id: "CDCA24Gte" - name: "Glucuronidated bile acid excretion (CDCA-24G)" - metabolites: !!omap - cdca24g_c: -1 @@ -297052,30 +297052,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000073734 or ENSG00000108846 or ENSG00000118777 - - rxnFrom: Recon3D - - eccodes: - - references: Geoffrey J. Dutton, CRC Press, 1980, PMID:10529008, PMID:25210150 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000073734 or ENSG00000108846 or ENSG00000118777" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Geoffrey J. Dutton, CRC Press, 1980, PMID:10529008, PMID:25210150" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CDCA24Gtr + - id: "CDCA24Gtr" - name: "Glucuronidated Compound Transport (CDCA-24G)" - metabolites: !!omap - cdca24g_c: -1 - cdca24g_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CDCA3GSc + - id: "CDCA3GSc" - name: "UDP-Glucuronosyltransferase (UGT) cytosolic (chenodeoxycholic acid)" - metabolites: !!omap - C02528_c: -1 @@ -297084,15 +297084,15 @@ - m03109c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135220 or ENSG00000171234 or ENSG00000173610 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID:17058234, PMID:23756265, PMID:25210150, PMID:16749861, PMID:10529008 + - gene_reaction_rule: "ENSG00000135220 or ENSG00000171234 or ENSG00000173610" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID:17058234, PMID:23756265, PMID:25210150, PMID:16749861, PMID:10529008" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: CDCA3GSr + - id: "CDCA3GSr" - name: "UDP-Glucuronosyltransferase (UGT) ER (chenodeoxycholic acid)" - metabolites: !!omap - C02528_r: -1 @@ -297101,15 +297101,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135220 or ENSG00000171234 or ENSG00000173610 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID:17058234, PMID:23756265, PMID:25210150, PMID:16749861, PMID:10529008 + - gene_reaction_rule: "ENSG00000135220 or ENSG00000171234 or ENSG00000173610" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID:17058234, PMID:23756265, PMID:25210150, PMID:16749861, PMID:10529008" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: CDCA3Gte + - id: "CDCA3Gte" - name: "Glucuronidated bile acid excretion (CDCA-3G)" - metabolites: !!omap - cdca3g_c: -1 @@ -297121,30 +297121,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000073734 or ENSG00000108846 or ENSG00000118777 - - rxnFrom: Recon3D - - eccodes: - - references: Geoffrey J. Dutton, CRC Press, 1980, PMID:10529008, PMID:25210150 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000073734 or ENSG00000108846 or ENSG00000118777" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Geoffrey J. Dutton, CRC Press, 1980, PMID:10529008, PMID:25210150" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CDCA3Gtr + - id: "CDCA3Gtr" - name: "Glucuronidated Compound Transport (CDCA-3G)" - metabolites: !!omap - cdca3g_c: -1 - cdca3g_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HC02220t + - id: "HC02220t" - name: "Chenodeoxycholic acid 3-sulfate transport via bicarbonate countertransport" - metabolites: !!omap - m02046c: -1 @@ -297153,15 +297153,15 @@ - m02950s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111700 or ENSG00000134538 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:19131563 + - gene_reaction_rule: "ENSG00000111700 or ENSG00000134538" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:19131563" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CDCA6AH + - id: "CDCA6AH" - name: "Chenodeoxycholic acid 6alpha-hydroxylase" - metabolites: !!omap - C02528_c: -1 @@ -297173,15 +297173,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.13.97 - - references: PMID:10216279, PMID:17263554 + - gene_reaction_rule: "ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.97" + - references: "PMID:10216279, PMID:17263554" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: COPROSTabc + - id: "COPROSTabc" - name: "Coprostanol ABC bile acid transporter" - metabolites: !!omap - coprost_c: -1 @@ -297193,15 +297193,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000073734 or ENSG00000108846 or ENSG00000125257 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:25210150, PMID:26579438, PMID:23506869 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000073734 or ENSG00000108846 or ENSG00000125257" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:25210150, PMID:26579438, PMID:23506869" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: COPROSTt + - id: "COPROSTt" - name: "Coprostanol transport via bicarbonate countertransport" - metabolites: !!omap - coprost_c: 1 @@ -297210,15 +297210,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111700 or ENSG00000134538 or ENSG00000163959 or ENSG00000186198 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:25210150, PMID:26579438 + - gene_reaction_rule: "ENSG00000111700 or ENSG00000134538 or ENSG00000163959 or ENSG00000186198" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:25210150, PMID:26579438" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: COPROSTt2 + - id: "COPROSTt2" - name: "Coprostanol transport via sodium cotransport" - metabolites: !!omap - coprost_c: 1 @@ -297227,15 +297227,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100652 or ENSG00000125255 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:25210150, PMID:26579438 + - gene_reaction_rule: "ENSG00000100652 or ENSG00000125255" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:25210150, PMID:26579438" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: DCA24GSc + - id: "DCA24GSc" - name: "UDP-Glucuronosyltransferase (UGT) cytosolic (deoxycholic acid)" - metabolites: !!omap - dca24g_c: 1 @@ -297244,15 +297244,15 @@ - m03109c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171234 or ENSG00000173610 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID:23756265, PMID:21995321 + - gene_reaction_rule: "ENSG00000171234 or ENSG00000173610" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID:23756265, PMID:21995321" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: DCA24GSr + - id: "DCA24GSr" - name: "UDP-Glucuronosyltransferase (UGT) ER (deoxycholic acid)" - metabolites: !!omap - dca24g_r: 1 @@ -297261,15 +297261,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171234 or ENSG00000173610 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID:23756265, PMID:21995321 + - gene_reaction_rule: "ENSG00000171234 or ENSG00000173610" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID:23756265, PMID:21995321" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: DCA24Gte + - id: "DCA24Gte" - name: "Glucuronidated bile acid excretion (DCA-24g)" - metabolites: !!omap - dca24g_c: -1 @@ -297281,30 +297281,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000073734 or ENSG00000108846 or ENSG00000118777 - - rxnFrom: Recon3D - - eccodes: - - references: Geoffrey J. Dutton, CRC Press, 1980, PMID:10529008, PMID:25210150 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000073734 or ENSG00000108846 or ENSG00000118777" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Geoffrey J. Dutton, CRC Press, 1980, PMID:10529008, PMID:25210150" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: DCA24Gtr + - id: "DCA24Gtr" - name: "Glucuronidated Compound Transport (DCA-24g)" - metabolites: !!omap - dca24g_c: -1 - dca24g_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: DCA3GSc + - id: "DCA3GSc" - name: "UDP-Glucuronosyltransferase (UGT) cytosolic (deoxycholic acid)" - metabolites: !!omap - dca3g_c: 1 @@ -297313,15 +297313,15 @@ - m03109c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171234 or ENSG00000173610 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID:23756265, PMID:21995321 + - gene_reaction_rule: "ENSG00000171234 or ENSG00000173610" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID:23756265, PMID:21995321" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: DCA3GSr + - id: "DCA3GSr" - name: "UDP-Glucuronosyltransferase (UGT) ER (deoxycholic acid)" - metabolites: !!omap - dca3g_r: 1 @@ -297330,15 +297330,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171234 or ENSG00000173610 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID:23756265, PMID:21995321 + - gene_reaction_rule: "ENSG00000171234 or ENSG00000173610" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID:23756265, PMID:21995321" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: DCA3Gte + - id: "DCA3Gte" - name: "Glucuronidated bile acid excretion (DCA-3G)" - metabolites: !!omap - dca3g_c: -1 @@ -297350,30 +297350,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000073734 or ENSG00000108846 or ENSG00000118777 - - rxnFrom: Recon3D - - eccodes: - - references: Geoffrey J. Dutton, CRC Press, 1980, PMID:10529008, PMID:25210150 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000073734 or ENSG00000108846 or ENSG00000118777" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Geoffrey J. Dutton, CRC Press, 1980, PMID:10529008, PMID:25210150" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: DCA3Gtr + - id: "DCA3Gtr" - name: "Glucuronidated Compound Transport (DCA-3G)" - metabolites: !!omap - dca3g_c: -1 - dca3g_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: DCA3Sabc + - id: "DCA3Sabc" - name: "Deoxycholic acid 3-sulfate ABC bile acid transporter" - metabolites: !!omap - dca3s_c: -1 @@ -297385,15 +297385,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000108846 or ENSG00000118777 or ENSG00000125257 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:19131563, PMID:25210150 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000108846 or ENSG00000118777 or ENSG00000125257" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:19131563, PMID:25210150" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: DCA3St + - id: "DCA3St" - name: "Deoxycholic acid 3-sulfate transport via bicarbonate countertransport" - metabolites: !!omap - dca3s_c: 1 @@ -297402,15 +297402,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111700 or ENSG00000134538 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:19131563 + - gene_reaction_rule: "ENSG00000111700 or ENSG00000134538" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:19131563" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: DCASULT + - id: "DCASULT" - name: "Deoxycholic acid sulfotransferase" - metabolites: !!omap - dca3s_c: 1 @@ -297420,555 +297420,555 @@ - m02682c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105398 - - rxnFrom: Recon3D - - eccodes: 2.8.2.14 - - references: PMID:16949895, PMID:19131563, PMID:25210150 + - gene_reaction_rule: "ENSG00000105398" + - rxnFrom: "Recon3D" + - eccodes: "2.8.2.14" + - references: "PMID:16949895, PMID:19131563, PMID:25210150" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: EX_12dhchol[e] + - id: "EX_12dhchol[e]" - name: "EX_12dhchol(e)" - metabolites: !!omap - 12dhchol_s: -1 - 12dhchol_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_3dhcdchol[e] + - id: "EX_3dhcdchol[e]" - name: "EX_3dhcdchol(e)" - metabolites: !!omap - 3dhcdchol_s: -1 - 3dhcdchol_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_3dhchol[e] + - id: "EX_3dhchol[e]" - name: "EX_3dhchol(e)" - metabolites: !!omap - 3dhchol_s: -1 - 3dhchol_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_3dhdchol[e] + - id: "EX_3dhdchol[e]" - name: "EX_3dhdchol(e)" - metabolites: !!omap - 3dhdchol_s: -1 - 3dhdchol_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_3dhlchol[e] + - id: "EX_3dhlchol[e]" - name: "EX_3dhlchol(e)" - metabolites: !!omap - 3dhlchol_s: -1 - 3dhlchol_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_7dhcdchol[e] + - id: "EX_7dhcdchol[e]" - name: "EX_7dhcdchol(e)" - metabolites: !!omap - 7dhcdchol_s: -1 - 7dhcdchol_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_7dhchol[e] + - id: "EX_7dhchol[e]" - name: "EX_7dhchol(e)" - metabolites: !!omap - 7dhchol_s: -1 - 7dhchol_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_ca24g[e] + - id: "EX_ca24g[e]" - name: "EX_ca24g(e)" - metabolites: !!omap - ca24g_s: -1 - ca24g_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_ca3s[e] + - id: "EX_ca3s[e]" - name: "EX_ca3s(e)" - metabolites: !!omap - ca3s_s: -1 - ca3s_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_cdca24g[e] + - id: "EX_cdca24g[e]" - name: "EX_cdca24g(e)" - metabolites: !!omap - cdca24g_s: -1 - cdca24g_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_cdca3g[e] + - id: "EX_cdca3g[e]" - name: "EX_cdca3g(e)" - metabolites: !!omap - cdca3g_s: -1 - cdca3g_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_coprost[e] + - id: "EX_coprost[e]" - name: "EX_coprost(e)" - metabolites: !!omap - coprost_s: -1 - coprost_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_dca24g[e] + - id: "EX_dca24g[e]" - name: "EX_dca24g(e)" - metabolites: !!omap - dca24g_s: -1 - dca24g_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_dca3g[e] + - id: "EX_dca3g[e]" - name: "EX_dca3g(e)" - metabolites: !!omap - dca3g_s: -1 - dca3g_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_dca3s[e] + - id: "EX_dca3s[e]" - name: "EX_dca3s(e)" - metabolites: !!omap - dca3s_s: -1 - dca3s_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_gca3s[e] + - id: "EX_gca3s[e]" - name: "EX_gca3s(e)" - metabolites: !!omap - gca3s_s: -1 - gca3s_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_gcdca3s[e] + - id: "EX_gcdca3s[e]" - name: "EX_gcdca3s(e)" - metabolites: !!omap - gcdca3s_s: -1 - gcdca3s_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_gdca3s[e] + - id: "EX_gdca3s[e]" - name: "EX_gdca3s(e)" - metabolites: !!omap - gdca3s_s: -1 - gdca3s_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_gudca3s[e] + - id: "EX_gudca3s[e]" - name: "EX_gudca3s(e)" - metabolites: !!omap - gudca3s_s: -1 - gudca3s_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_hca24g[e] + - id: "EX_hca24g[e]" - name: "EX_hca24g(e)" - metabolites: !!omap - hca24g_s: -1 - hca24g_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_hca6g[e] + - id: "EX_hca6g[e]" - name: "EX_hca6g(e)" - metabolites: !!omap - hca6g_s: -1 - hca6g_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_hdca24g[e] + - id: "EX_hdca24g[e]" - name: "EX_hdca24g(e)" - metabolites: !!omap - hdca24g_s: -1 - hdca24g_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_hdca6g[e] + - id: "EX_hdca6g[e]" - name: "EX_hdca6g(e)" - metabolites: !!omap - hdca6g_s: -1 - hdca6g_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_hyochol[e] + - id: "EX_hyochol[e]" - name: "EX_hyochol(e)" - metabolites: !!omap - hyochol_s: -1 - hyochol_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_icdchol[e] + - id: "EX_icdchol[e]" - name: "EX_icdchol(e)" - metabolites: !!omap - icdchol_s: -1 - icdchol_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_isochol[e] + - id: "EX_isochol[e]" - name: "EX_isochol(e)" - metabolites: !!omap - isochol_s: -1 - isochol_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_lca24g[e] + - id: "EX_lca24g[e]" - name: "EX_lca24g(e)" - metabolites: !!omap - lca24g_s: -1 - lca24g_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_lca3g[e] + - id: "EX_lca3g[e]" - name: "EX_lca3g(e)" - metabolites: !!omap - lca3g_s: -1 - lca3g_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_lca3s[e] + - id: "EX_lca3s[e]" - name: "EX_lca3s(e)" - metabolites: !!omap - lca3s_s: -1 - lca3s_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_tca3s[e] + - id: "EX_tca3s[e]" - name: "EX_tca3s(e)" - metabolites: !!omap - tca3s_s: -1 - tca3s_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_tcdca3s[e] + - id: "EX_tcdca3s[e]" - name: "EX_tcdca3s(e)" - metabolites: !!omap - tcdca3s_s: -1 - tcdca3s_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_tdca3s[e] + - id: "EX_tdca3s[e]" - name: "EX_tdca3s(e)" - metabolites: !!omap - tdca3s_s: -1 - tdca3s_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_thyochol[e] + - id: "EX_thyochol[e]" - name: "EX_thyochol(e)" - metabolites: !!omap - thyochol_s: -1 - thyochol_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_tudca3s[e] + - id: "EX_tudca3s[e]" - name: "EX_tudca3s(e)" - metabolites: !!omap - tudca3s_s: -1 - tudca3s_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_uchol[e] + - id: "EX_uchol[e]" - name: "EX_uchol(e)" - metabolites: !!omap - uchol_s: -1 - uchol_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_udca3s[e] + - id: "EX_udca3s[e]" - name: "EX_udca3s(e)" - metabolites: !!omap - udca3s_s: -1 - udca3s_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: GCA3Sabc + - id: "GCA3Sabc" - name: "Glycocholic acid 3-sulfate ABC bile acid transporter" - metabolites: !!omap - gca3s_c: -1 @@ -297980,15 +297980,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000108846 or ENSG00000118777 or ENSG00000125257 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:19131563, PMID:25210150 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000108846 or ENSG00000118777 or ENSG00000125257" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:19131563, PMID:25210150" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GCA3St + - id: "GCA3St" - name: "Glycocholic acid 3-sulfate transport via bicarbonate countertransport" - metabolites: !!omap - gca3s_c: 1 @@ -297997,15 +297997,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111700 or ENSG00000134538 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:19131563 + - gene_reaction_rule: "ENSG00000111700 or ENSG00000134538" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:19131563" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GCASULT + - id: "GCASULT" - name: "Glycocholic acid sulfotransferase" - metabolites: !!omap - gca3s_c: 1 @@ -298015,15 +298015,15 @@ - m02682c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105398 - - rxnFrom: Recon3D - - eccodes: 2.8.2.14 - - references: PMID:16949895, PMID:19131563, PMID:25210150 + - gene_reaction_rule: "ENSG00000105398" + - rxnFrom: "Recon3D" + - eccodes: "2.8.2.14" + - references: "PMID:16949895, PMID:19131563, PMID:25210150" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: GCDCA3Sabc + - id: "GCDCA3Sabc" - name: "Glycochenodeoxycholic acid 3-sulfate ABC bile acid transporter" - metabolites: !!omap - gcdca3s_c: -1 @@ -298035,15 +298035,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000108846 or ENSG00000118777 or ENSG00000125257 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:19131563, PMID:25210150 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000108846 or ENSG00000118777 or ENSG00000125257" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:19131563, PMID:25210150" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GCDCA3St + - id: "GCDCA3St" - name: "Glycochenodeoxycholic acid 3-sulfate via bicarbonate countertransport" - metabolites: !!omap - gcdca3s_c: 1 @@ -298052,15 +298052,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111700 or ENSG00000134538 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:19131563 + - gene_reaction_rule: "ENSG00000111700 or ENSG00000134538" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:19131563" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GCDCASULT + - id: "GCDCASULT" - name: "Glycochenodeoxycholic acid sulfotransferase" - metabolites: !!omap - gcdca3s_c: 1 @@ -298070,15 +298070,15 @@ - m02682c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105398 - - rxnFrom: Recon3D - - eccodes: 2.8.2.14 - - references: PMID:16949895, PMID:19131563, PMID:25210150 + - gene_reaction_rule: "ENSG00000105398" + - rxnFrom: "Recon3D" + - eccodes: "2.8.2.14" + - references: "PMID:16949895, PMID:19131563, PMID:25210150" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: GDCA3Sabc + - id: "GDCA3Sabc" - name: "Glycodeoxycholic acid 3-sulfate ABC bile acid transporter" - metabolites: !!omap - gdca3s_c: -1 @@ -298090,15 +298090,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000108846 or ENSG00000118777 or ENSG00000125257 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:19131563, PMID:25210150 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000108846 or ENSG00000118777 or ENSG00000125257" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:19131563, PMID:25210150" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GDCA3St + - id: "GDCA3St" - name: "Glycodeoxycholic acid 3-sulfate via bicarbonate countertransport" - metabolites: !!omap - gdca3s_c: 1 @@ -298107,15 +298107,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111700 or ENSG00000134538 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:19131563 + - gene_reaction_rule: "ENSG00000111700 or ENSG00000134538" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:19131563" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GDCASULT + - id: "GDCASULT" - name: "Glycodeoxycholic acid sulfotransferase" - metabolites: !!omap - gdca3s_c: 1 @@ -298125,15 +298125,15 @@ - m02682c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105398 - - rxnFrom: Recon3D - - eccodes: 2.8.2.14 - - references: PMID:16949895, PMID:19131563, PMID:25210150 + - gene_reaction_rule: "ENSG00000105398" + - rxnFrom: "Recon3D" + - eccodes: "2.8.2.14" + - references: "PMID:16949895, PMID:19131563, PMID:25210150" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: GUDCA3Sabc + - id: "GUDCA3Sabc" - name: "Glycoursodeoxycholic acid 3-sulfate ABC bile acid transporter" - metabolites: !!omap - gudca3s_c: -1 @@ -298145,15 +298145,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000108846 or ENSG00000118777 or ENSG00000125257 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:19131563, PMID:25210150 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000108846 or ENSG00000118777 or ENSG00000125257" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:19131563, PMID:25210150" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GUDCA3St + - id: "GUDCA3St" - name: "Glycoursodeoxycholic acid 3-sulfate via bicarbonate countertransport" - metabolites: !!omap - gudca3s_c: 1 @@ -298162,15 +298162,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111700 or ENSG00000134538 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:19131563 + - gene_reaction_rule: "ENSG00000111700 or ENSG00000134538" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:19131563" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GUDCASULT + - id: "GUDCASULT" - name: "Glycoursodeoxycholic acid sulfotransferase" - metabolites: !!omap - gudca3s_c: 1 @@ -298180,15 +298180,15 @@ - m02682c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105398 - - rxnFrom: Recon3D - - eccodes: 2.8.2.14 - - references: PMID:16949895, PMID:19131563, PMID:25210150 + - gene_reaction_rule: "ENSG00000105398" + - rxnFrom: "Recon3D" + - eccodes: "2.8.2.14" + - references: "PMID:16949895, PMID:19131563, PMID:25210150" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HCA24GSc + - id: "HCA24GSc" - name: "UDP-Glucuronosyltransferase (UGT) cytosolic (hyocholic acid)" - metabolites: !!omap - hca24g_c: 1 @@ -298197,15 +298197,15 @@ - m03109c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135220 or ENSG00000171234 or ENSG00000173610 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID:10529008, PMID:8244999, PMID:21995321, PMID:23756265 + - gene_reaction_rule: "ENSG00000135220 or ENSG00000171234 or ENSG00000173610" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID:10529008, PMID:8244999, PMID:21995321, PMID:23756265" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HCA24GSr + - id: "HCA24GSr" - name: "UDP-Glucuronosyltransferase (UGT) (hyocholic acid)" - metabolites: !!omap - hca24g_r: 1 @@ -298214,15 +298214,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135220 or ENSG00000171234 or ENSG00000173610 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID:10529008, PMID:8244999, PMID:21995321, PMID:23756265 + - gene_reaction_rule: "ENSG00000135220 or ENSG00000171234 or ENSG00000173610" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID:10529008, PMID:8244999, PMID:21995321, PMID:23756265" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HCA24Gte + - id: "HCA24Gte" - name: "Glucuronidated bile acid excretion (HCA-24G)" - metabolites: !!omap - hca24g_c: -1 @@ -298234,30 +298234,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000073734 or ENSG00000108846 or ENSG00000118777 - - rxnFrom: Recon3D - - eccodes: - - references: Geoffrey J. Dutton, CRC Press, 1980, PMID:10529008, PMID:25210150 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000073734 or ENSG00000108846 or ENSG00000118777" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Geoffrey J. Dutton, CRC Press, 1980, PMID:10529008, PMID:25210150" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HCA24Gtr + - id: "HCA24Gtr" - name: "Glucuronidated Compound Transport (HCA-24G)" - metabolites: !!omap - hca24g_c: -1 - hca24g_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HCA6GSc + - id: "HCA6GSc" - name: "UDP-Glucuronosyltransferase (UGT) cytosolic (hyocholic acid)" - metabolites: !!omap - hca6g_c: 1 @@ -298266,15 +298266,15 @@ - m03109c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000156096 or ENSG00000171234 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID:10529008, PMID:8244999, PMID:23756265 + - gene_reaction_rule: "ENSG00000156096 or ENSG00000171234" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID:10529008, PMID:8244999, PMID:23756265" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HCA6GSr + - id: "HCA6GSr" - name: "UDP-Glucuronosyltransferase (UGT) ER (hyocholic acid)" - metabolites: !!omap - hca6g_r: 1 @@ -298283,15 +298283,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000156096 or ENSG00000171234 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID:10529008, PMID:8244999, PMID:23756265 + - gene_reaction_rule: "ENSG00000156096 or ENSG00000171234" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID:10529008, PMID:8244999, PMID:23756265" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HCA6Gte + - id: "HCA6Gte" - name: "Glucuronidated bile acid excretion (HCA-6G)" - metabolites: !!omap - hca6g_c: -1 @@ -298303,30 +298303,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000073734 or ENSG00000108846 or ENSG00000118777 - - rxnFrom: Recon3D - - eccodes: - - references: Geoffrey J. Dutton, CRC Press, 1980, PMID:10529008, PMID:25210150 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000073734 or ENSG00000108846 or ENSG00000118777" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Geoffrey J. Dutton, CRC Press, 1980, PMID:10529008, PMID:25210150" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HCA6Gtr + - id: "HCA6Gtr" - name: "Glucuronidated Compound Transport (HCA-6G)" - metabolites: !!omap - hca6g_c: -1 - hca6g_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HDCA24GSc + - id: "HDCA24GSc" - name: "UDP-Glucuronosyltransferase (UGT) cytosolic (hyodeoxycholic acid)" - metabolites: !!omap - hdca24g_c: 1 @@ -298336,15 +298336,15 @@ - m03109c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135220 or ENSG00000173610 or ENSG00000243135 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID:10529008, PMID:8244999, PMID:21995321, PMID:23756265 + - gene_reaction_rule: "ENSG00000135220 or ENSG00000173610 or ENSG00000243135" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID:10529008, PMID:8244999, PMID:21995321, PMID:23756265" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HDCA24GSr + - id: "HDCA24GSr" - name: "UDP-Glucuronosyltransferase (UGT) (hyodeoxycholic acid)" - metabolites: !!omap - hdca24g_r: 1 @@ -298354,15 +298354,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135220 or ENSG00000173610 or ENSG00000243135 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID:10529008, PMID:8244999, PMID:21995321, PMID:23756265 + - gene_reaction_rule: "ENSG00000135220 or ENSG00000173610 or ENSG00000243135" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID:10529008, PMID:8244999, PMID:21995321, PMID:23756265" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HDCA24Gte + - id: "HDCA24Gte" - name: "Glucuronidated bile acid excretion (HDCA-24G)" - metabolites: !!omap - hdca24g_c: -1 @@ -298374,30 +298374,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000073734 or ENSG00000108846 or ENSG00000118777 - - rxnFrom: Recon3D - - eccodes: - - references: Geoffrey J. Dutton, CRC Press, 1980, PMID:10529008, PMID:25210150 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000073734 or ENSG00000108846 or ENSG00000118777" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Geoffrey J. Dutton, CRC Press, 1980, PMID:10529008, PMID:25210150" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HDCA24Gtr + - id: "HDCA24Gtr" - name: "Glucuronidated Compound Transport (HDCA-24G)" - metabolites: !!omap - hdca24g_c: -1 - hdca24g_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HDCA6GSc + - id: "HDCA6GSc" - name: "UDP-Glucuronosyltransferase (UGT) cytosolic (hyodeoxycholic acid)" - metabolites: !!omap - hdca6g_c: 1 @@ -298407,15 +298407,15 @@ - m03109c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135220 or ENSG00000156096 or ENSG00000171234 or ENSG00000173610 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID:10529008, PMID:8244999, PMID:23756265 + - gene_reaction_rule: "ENSG00000135220 or ENSG00000156096 or ENSG00000171234 or ENSG00000173610" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID:10529008, PMID:8244999, PMID:23756265" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HDCA6GSr + - id: "HDCA6GSr" - name: "UDP-Glucuronosyltransferase (UGT) ER (hyodeoxycholic acid)" - metabolites: !!omap - hdca6g_r: 1 @@ -298425,15 +298425,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135220 or ENSG00000156096 or ENSG00000171234 or ENSG00000173610 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID:10529008, PMID:8244999, PMID:23756265 + - gene_reaction_rule: "ENSG00000135220 or ENSG00000156096 or ENSG00000171234 or ENSG00000173610" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID:10529008, PMID:8244999, PMID:23756265" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HDCA6Gte + - id: "HDCA6Gte" - name: "Glucuronidated bile acid excretion (HDCA-6G)" - metabolites: !!omap - hdca6g_c: -1 @@ -298445,30 +298445,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000073734 or ENSG00000108846 or ENSG00000118777 - - rxnFrom: Recon3D - - eccodes: - - references: Geoffrey J. Dutton, CRC Press, 1980, PMID:10529008, PMID:25210150 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000073734 or ENSG00000108846 or ENSG00000118777" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Geoffrey J. Dutton, CRC Press, 1980, PMID:10529008, PMID:25210150" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HDCA6Gtr + - id: "HDCA6Gtr" - name: "Glucuronidated Compound Transport (HDCA-6G)" - metabolites: !!omap - hdca6g_c: -1 - hdca6g_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HYOCHOLabc + - id: "HYOCHOLabc" - name: "hyocholic acid ABC bile acid transporter" - metabolites: !!omap - hyochol_c: -1 @@ -298480,15 +298480,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000073734 or ENSG00000108846 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:25210150, PMID:26579438 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000073734 or ENSG00000108846" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:25210150, PMID:26579438" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HYOCHOLt + - id: "HYOCHOLt" - name: "hyocholic acid transport via bicarbonate countertransport" - metabolites: !!omap - hyochol_c: 1 @@ -298497,15 +298497,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111700 or ENSG00000134538 or ENSG00000163959 or ENSG00000186198 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:25210150, PMID:26579438 + - gene_reaction_rule: "ENSG00000111700 or ENSG00000134538 or ENSG00000163959 or ENSG00000186198" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:25210150, PMID:26579438" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HYOCHOLt2 + - id: "HYOCHOLt2" - name: "hyocholic acid transport via sodium cotransport" - metabolites: !!omap - hyochol_c: 1 @@ -298514,30 +298514,30 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100652 or ENSG00000125255 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:25210150, PMID:26579438 + - gene_reaction_rule: "ENSG00000100652 or ENSG00000125255" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:25210150, PMID:26579438" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HYOCHOLtr + - id: "HYOCHOLtr" - name: "Bile salt transport (hyocholic acid)" - metabolites: !!omap - hyochol_c: -1 - hyochol_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:15975683 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:15975683" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ICDCHOLabc + - id: "ICDCHOLabc" - name: "Isochenodeoxycholic acid ABC bile acid transporter" - metabolites: !!omap - icdchol_c: -1 @@ -298549,15 +298549,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000073734 or ENSG00000108846 or ENSG00000125257 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:25210150, PMID:26579438, PMID:23506869 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000073734 or ENSG00000108846 or ENSG00000125257" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:25210150, PMID:26579438, PMID:23506869" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ICDCHOLt + - id: "ICDCHOLt" - name: "Isochenodeoxycholic acid transport via bicarbonate countertransport" - metabolites: !!omap - icdchol_c: 1 @@ -298566,15 +298566,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111700 or ENSG00000134538 or ENSG00000163959 or ENSG00000186198 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:25210150, PMID:26579438 + - gene_reaction_rule: "ENSG00000111700 or ENSG00000134538 or ENSG00000163959 or ENSG00000186198" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:25210150, PMID:26579438" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ICDCHOLt2 + - id: "ICDCHOLt2" - name: "Isochenodeoxycholic acid transport via sodium cotransport" - metabolites: !!omap - icdchol_c: 1 @@ -298583,15 +298583,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100652 or ENSG00000125255 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:25210150, PMID:26579438 + - gene_reaction_rule: "ENSG00000100652 or ENSG00000125255" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:25210150, PMID:26579438" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ISOCHOLabc + - id: "ISOCHOLabc" - name: "Isocholic acid ABC bile acid transporter" - metabolites: !!omap - isochol_c: -1 @@ -298603,15 +298603,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000073734 or ENSG00000108846 or ENSG00000125257 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:25210150, PMID:26579438, PMID:23506869 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000073734 or ENSG00000108846 or ENSG00000125257" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:25210150, PMID:26579438, PMID:23506869" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ISOCHOLt + - id: "ISOCHOLt" - name: "Isocholic acid transport via bicarbonate countertransport" - metabolites: !!omap - isochol_c: 1 @@ -298620,15 +298620,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111700 or ENSG00000134538 or ENSG00000163959 or ENSG00000186198 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:25210150, PMID:26579438 + - gene_reaction_rule: "ENSG00000111700 or ENSG00000134538 or ENSG00000163959 or ENSG00000186198" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:25210150, PMID:26579438" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: ISOCHOLt2 + - id: "ISOCHOLt2" - name: "Isocholic acid transport via sodium cotransport" - metabolites: !!omap - isochol_c: 1 @@ -298637,15 +298637,15 @@ - m02519s: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100652 or ENSG00000125255 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:25210150, PMID:26579438 + - gene_reaction_rule: "ENSG00000100652 or ENSG00000125255" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:25210150, PMID:26579438" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LCA24GSc + - id: "LCA24GSc" - name: "UDP-Glucuronosyltransferase (UGT) cytosolic (lithocholic acid)" - metabolites: !!omap - lca24g_c: 1 @@ -298654,15 +298654,15 @@ - m03109c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135220 or ENSG00000171234 or ENSG00000173610 or ENSG00000243135 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID:17058234, PMID:23756265, PMID:25210150 + - gene_reaction_rule: "ENSG00000135220 or ENSG00000171234 or ENSG00000173610 or ENSG00000243135" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID:17058234, PMID:23756265, PMID:25210150" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: LCA24GSr + - id: "LCA24GSr" - name: "UDP-Glucuronosyltransferase (UGT) ER (lithocholic acid)" - metabolites: !!omap - lca24g_r: 1 @@ -298671,15 +298671,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135220 or ENSG00000171234 or ENSG00000173610 or ENSG00000243135 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID:17058234, PMID:23756265, PMID:25210150 + - gene_reaction_rule: "ENSG00000135220 or ENSG00000171234 or ENSG00000173610 or ENSG00000243135" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID:17058234, PMID:23756265, PMID:25210150" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: LCA24Gte + - id: "LCA24Gte" - name: "Glucuronidated bile acid excretion (LCA-24G)" - metabolites: !!omap - lca24g_c: -1 @@ -298691,30 +298691,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000073734 or ENSG00000108846 or ENSG00000118777 - - rxnFrom: Recon3D - - eccodes: - - references: Geoffrey J. Dutton, CRC Press, 1980, PMID:10529008, PMID:25210150 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000073734 or ENSG00000108846 or ENSG00000118777" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Geoffrey J. Dutton, CRC Press, 1980, PMID:10529008, PMID:25210150" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LCA24Gtr + - id: "LCA24Gtr" - name: "Glucuronidated Compound Transport (LCA-24G)" - metabolites: !!omap - lca24g_c: -1 - lca24g_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LCA3GSc + - id: "LCA3GSc" - name: "UDP-Glucuronosyltransferase (UGT) cytosolic (lithocholic acid)" - metabolites: !!omap - lca3g_c: 1 @@ -298723,15 +298723,15 @@ - m03109c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135220 or ENSG00000171234 or ENSG00000173610 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID:17058234, PMID:23756265, PMID:25210150, PMID:16749861, PMID:10529008, PMID:21995321 + - gene_reaction_rule: "ENSG00000135220 or ENSG00000171234 or ENSG00000173610" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID:17058234, PMID:23756265, PMID:25210150, PMID:16749861, PMID:10529008, PMID:21995321" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: LCA3GSr + - id: "LCA3GSr" - name: "UDP-Glucuronosyltransferase (UGT) ER (lithocholic acid)" - metabolites: !!omap - lca3g_r: 1 @@ -298740,15 +298740,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000135220 or ENSG00000171234 or ENSG00000173610 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID:17058234, PMID:23756265, PMID:25210150, PMID:16749861, PMID:10529008, PMID:21995321 + - gene_reaction_rule: "ENSG00000135220 or ENSG00000171234 or ENSG00000173610" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID:17058234, PMID:23756265, PMID:25210150, PMID:16749861, PMID:10529008, PMID:21995321" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: LCA3Gte + - id: "LCA3Gte" - name: "Glucuronidated bile acid excretion (LCA-3G)" - metabolites: !!omap - lca3g_c: -1 @@ -298760,30 +298760,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000073734 or ENSG00000108846 or ENSG00000118777 - - rxnFrom: Recon3D - - eccodes: - - references: Geoffrey J. Dutton, CRC Press, 1980, PMID:10529008, PMID:25210150 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000073734 or ENSG00000108846 or ENSG00000118777" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Geoffrey J. Dutton, CRC Press, 1980, PMID:10529008, PMID:25210150" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LCA3Gtr + - id: "LCA3Gtr" - name: "Glucuronidated Compound Transport (LCA-3G)" - metabolites: !!omap - lca3g_c: -1 - lca3g_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LCA3Sabc + - id: "LCA3Sabc" - name: "Lithocholic acid 3-sulfate ABC bile acid transporter" - metabolites: !!omap - lca3s_c: -1 @@ -298795,15 +298795,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000108846 or ENSG00000118777 or ENSG00000125257 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:19131563, PMID:25210150 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000108846 or ENSG00000118777 or ENSG00000125257" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:19131563, PMID:25210150" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LCA3St + - id: "LCA3St" - name: "Lithocholic acid 3-sulfate transport via bicarbonate countertransport" - metabolites: !!omap - lca3s_c: 1 @@ -298812,15 +298812,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111700 or ENSG00000134538 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:19131563 + - gene_reaction_rule: "ENSG00000111700 or ENSG00000134538" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:19131563" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: LCASULT + - id: "LCASULT" - name: "Lithocholic acid sulfotransferase" - metabolites: !!omap - lca3s_c: 1 @@ -298830,30 +298830,30 @@ - m02682c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105398 - - rxnFrom: Recon3D - - eccodes: 2.8.2.14 - - references: PMID:16949895, PMID:19131563, PMID:25210150 + - gene_reaction_rule: "ENSG00000105398" + - rxnFrom: "Recon3D" + - eccodes: "2.8.2.14" + - references: "PMID:16949895, PMID:19131563, PMID:25210150" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: M02155tr + - id: "M02155tr" - name: "Bile salt transport (hyodeoxycholic acid)" - metabolites: !!omap - m02155c: -1 - m02155r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID:15975683 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:15975683" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TCA3Sabc + - id: "TCA3Sabc" - name: "Taurocholic acid 3-sulfate ABC bile acid transporter" - metabolites: !!omap - m01285c: 1 @@ -298865,15 +298865,15 @@ - tca3s_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000108846 or ENSG00000118777 or ENSG00000125257 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:19131563, PMID:25210150 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000108846 or ENSG00000118777 or ENSG00000125257" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:19131563, PMID:25210150" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TCA3St + - id: "TCA3St" - name: "Taurocholic acid 3-sulfate transport via bicarbonate countertransport" - metabolites: !!omap - m02046c: -1 @@ -298882,15 +298882,15 @@ - tca3s_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111700 or ENSG00000134538 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:19131563 + - gene_reaction_rule: "ENSG00000111700 or ENSG00000134538" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:19131563" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TCASULT + - id: "TCASULT" - name: "Taurocholic acid sulfotransferase" - metabolites: !!omap - m02039c: 1 @@ -298900,15 +298900,15 @@ - tca3s_c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105398 - - rxnFrom: Recon3D - - eccodes: 2.8.2.14 - - references: PMID:16949895, PMID:19131563, PMID:25210150 + - gene_reaction_rule: "ENSG00000105398" + - rxnFrom: "Recon3D" + - eccodes: "2.8.2.14" + - references: "PMID:16949895, PMID:19131563, PMID:25210150" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: TCDCA3Sabc + - id: "TCDCA3Sabc" - name: "Taurochenodeoxycholic acid 3-sulfate ABC bile acid transporter" - metabolites: !!omap - m01285c: 1 @@ -298920,15 +298920,15 @@ - tcdca3s_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000108846 or ENSG00000118777 or ENSG00000125257 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:19131563, PMID:25210150 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000108846 or ENSG00000118777 or ENSG00000125257" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:19131563, PMID:25210150" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TCDCA3St + - id: "TCDCA3St" - name: "Taurochenodeoxycholic acid 3-sulfate transport via bicarbonate countertransport" - metabolites: !!omap - m02046c: -1 @@ -298937,15 +298937,15 @@ - tcdca3s_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111700 or ENSG00000134538 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:19131563 + - gene_reaction_rule: "ENSG00000111700 or ENSG00000134538" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:19131563" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TCDCA6AH + - id: "TCDCA6AH" - name: "Taurochenodeoxycholic acid 6alpha-hydroxylase" - metabolites: !!omap - m02040c: 1 @@ -298956,15 +298956,15 @@ - thyochol_c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.13.97 - - references: PMID:10216279, PMID:17263554 + - gene_reaction_rule: "ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.97" + - references: "PMID:10216279, PMID:17263554" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: TCDCASULT + - id: "TCDCASULT" - name: "Taurochenodeoxycholic acid sulfotransferase" - metabolites: !!omap - m02039c: 1 @@ -298974,15 +298974,15 @@ - tcdca3s_c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105398 - - rxnFrom: Recon3D - - eccodes: 2.8.2.14 - - references: PMID:16949895, PMID:19131563, PMID:25210150 + - gene_reaction_rule: "ENSG00000105398" + - rxnFrom: "Recon3D" + - eccodes: "2.8.2.14" + - references: "PMID:16949895, PMID:19131563, PMID:25210150" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: TDCA3Sabc + - id: "TDCA3Sabc" - name: "Taurodeoxycholic acid 3-sulfate ABC bile acid transporter" - metabolites: !!omap - m01285c: 1 @@ -298994,15 +298994,15 @@ - tdca3s_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000108846 or ENSG00000118777 or ENSG00000125257 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:19131563, PMID:25210150 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000108846 or ENSG00000118777 or ENSG00000125257" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:19131563, PMID:25210150" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TDCA3St + - id: "TDCA3St" - name: "Taurodeoxycholic acid 3-sulfate transport via bicarbonate countertransport" - metabolites: !!omap - m02046c: -1 @@ -299011,15 +299011,15 @@ - tdca3s_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111700 or ENSG00000134538 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:19131563 + - gene_reaction_rule: "ENSG00000111700 or ENSG00000134538" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:19131563" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TDCASULT + - id: "TDCASULT" - name: "Taurodeoxycholic acid sulfotransferase" - metabolites: !!omap - m02039c: 1 @@ -299029,15 +299029,15 @@ - tdca3s_c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105398 - - rxnFrom: Recon3D - - eccodes: 2.8.2.14 - - references: PMID:16949895, PMID:19131563, PMID:25210150 + - gene_reaction_rule: "ENSG00000105398" + - rxnFrom: "Recon3D" + - eccodes: "2.8.2.14" + - references: "PMID:16949895, PMID:19131563, PMID:25210150" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: THYOCHOLabc + - id: "THYOCHOLabc" - name: "taurohyocholic acid ABC bile acid transporter" - metabolites: !!omap - m01285c: 1 @@ -299049,15 +299049,15 @@ - thyochol_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000073734 or ENSG00000108846 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:25210150, PMID:26579438 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000073734 or ENSG00000108846" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:25210150, PMID:26579438" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: THYOCHOLt + - id: "THYOCHOLt" - name: "taurohyocholic acid transport via bicarbonate countertransport" - metabolites: !!omap - m02046c: -1 @@ -299066,15 +299066,15 @@ - thyochol_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111700 or ENSG00000134538 or ENSG00000163959 or ENSG00000186198 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:25210150, PMID:26579438 + - gene_reaction_rule: "ENSG00000111700 or ENSG00000134538 or ENSG00000163959 or ENSG00000186198" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:25210150, PMID:26579438" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: THYOCHOLt2 + - id: "THYOCHOLt2" - name: "taurohyocholic acid transport via sodium cotransport" - metabolites: !!omap - m02519c: 2 @@ -299083,15 +299083,15 @@ - thyochol_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100652 or ENSG00000125255 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:25210150, PMID:26579438 + - gene_reaction_rule: "ENSG00000100652 or ENSG00000125255" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:25210150, PMID:26579438" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TUDCA3Sabc + - id: "TUDCA3Sabc" - name: "Tauroursodeoxycholic acid 3-sulfate ABC bile acid transporter" - metabolites: !!omap - m01285c: 1 @@ -299103,15 +299103,15 @@ - tudca3s_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000108846 or ENSG00000118777 or ENSG00000125257 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:19131563, PMID:25210150 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000108846 or ENSG00000118777 or ENSG00000125257" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:19131563, PMID:25210150" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TUDCA3St + - id: "TUDCA3St" - name: "Tauroursodeoxycholic acid 3-sulfate transport via bicarbonate countertransport" - metabolites: !!omap - m02046c: -1 @@ -299120,15 +299120,15 @@ - tudca3s_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111700 or ENSG00000134538 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:19131563 + - gene_reaction_rule: "ENSG00000111700 or ENSG00000134538" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:19131563" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: TUDCASULT + - id: "TUDCASULT" - name: "Tauroursodeoxycholic acid sulfotransferase" - metabolites: !!omap - m02039c: 1 @@ -299138,15 +299138,15 @@ - tudca3s_c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105398 - - rxnFrom: Recon3D - - eccodes: 2.8.2.14 - - references: PMID:16949895, PMID:19131563, PMID:25210150 + - gene_reaction_rule: "ENSG00000105398" + - rxnFrom: "Recon3D" + - eccodes: "2.8.2.14" + - references: "PMID:16949895, PMID:19131563, PMID:25210150" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: UCHOLabc + - id: "UCHOLabc" - name: "Ursocholic acid ABC bile acid transporter" - metabolites: !!omap - m01285c: 1 @@ -299158,15 +299158,15 @@ - uchol_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000073734 or ENSG00000108846 or ENSG00000125257 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:25210150, PMID:26579438, PMID:23506869 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000073734 or ENSG00000108846 or ENSG00000125257" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:25210150, PMID:26579438, PMID:23506869" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: UCHOLt + - id: "UCHOLt" - name: "Ursocholic acid transport via bicarbonate countertransport" - metabolites: !!omap - m02046c: -1 @@ -299175,15 +299175,15 @@ - uchol_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111700 or ENSG00000134538 or ENSG00000163959 or ENSG00000186198 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:25210150, PMID:26579438 + - gene_reaction_rule: "ENSG00000111700 or ENSG00000134538 or ENSG00000163959 or ENSG00000186198" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:25210150, PMID:26579438" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: UCHOLt2 + - id: "UCHOLt2" - name: "Ursocholic acid transport via sodium cotransport" - metabolites: !!omap - m02519c: 2 @@ -299192,15 +299192,15 @@ - uchol_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100652 or ENSG00000125255 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:25210150, PMID:26579438 + - gene_reaction_rule: "ENSG00000100652 or ENSG00000125255" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:25210150, PMID:26579438" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: UDCA3Sabc + - id: "UDCA3Sabc" - name: "Ursodeoxycholic acid 3-sulfate ABC bile acid transporter" - metabolites: !!omap - m01285c: 1 @@ -299212,15 +299212,15 @@ - udca3s_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000108846 or ENSG00000118777 or ENSG00000125257 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:19131563, PMID:25210150 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000108846 or ENSG00000118777 or ENSG00000125257" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:19131563, PMID:25210150" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: UDCA3St + - id: "UDCA3St" - name: "Ursodeoxycholic acid 3-sulfate transport via bicarbonate countertransport" - metabolites: !!omap - m02046c: -1 @@ -299229,15 +299229,15 @@ - udca3s_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111700 or ENSG00000134538 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:19131563 + - gene_reaction_rule: "ENSG00000111700 or ENSG00000134538" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:19131563" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: UDCASULT + - id: "UDCASULT" - name: "Ursodeoxycholic acid sulfotransferase" - metabolites: !!omap - m02039c: 1 @@ -299247,15 +299247,15 @@ - udca3s_c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105398 - - rxnFrom: Recon3D - - eccodes: 2.8.2.14 - - references: PMID:16949895, PMID:19131563, PMID:25210150 + - gene_reaction_rule: "ENSG00000105398" + - rxnFrom: "Recon3D" + - eccodes: "2.8.2.14" + - references: "PMID:16949895, PMID:19131563, PMID:25210150" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: UDCHOLt + - id: "UDCHOLt" - name: "Ursodeoxycholic acid transport via bicarbonate countertransport" - metabolites: !!omap - m02046c: -1 @@ -299264,15 +299264,15 @@ - m03129s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111700 or ENSG00000134538 or ENSG00000163959 or ENSG00000186198 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:25210150, PMID:26579438 + - gene_reaction_rule: "ENSG00000111700 or ENSG00000134538 or ENSG00000163959 or ENSG00000186198" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:25210150, PMID:26579438" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: UDCHOLt2 + - id: "UDCHOLt2" - name: "Ursodeoxycholic acid transport via sodium cotransport" - metabolites: !!omap - m02519c: 2 @@ -299281,15 +299281,15 @@ - m03129s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100652 or ENSG00000125255 - - rxnFrom: Recon3D - - eccodes: - - references: PMID:25210150, PMID:26579438 + - gene_reaction_rule: "ENSG00000100652 or ENSG00000125255" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID:25210150, PMID:26579438" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 12HTACRhr + - id: "12HTACRhr" - name: "oxidation of tacrolimus in hepatocytes" - metabolites: !!omap - 12htacr_r: 1 @@ -299301,15 +299301,15 @@ - tacr_r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000106258 or ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.13.-;1.14.14.1 - - references: PMID: 16501005, PMID: 12190331, PMID: 7536652, PMID: 1382896, PMID: 17965516 + - gene_reaction_rule: "ENSG00000106258 or ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-;1.14.14.1" + - references: "PMID: 16501005, PMID: 12190331, PMID: 7536652, PMID: 1382896, PMID: 17965516" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 12HTACRtu + - id: "12HTACRtu" - name: "efflux of 12-hydroxy tacrolimus into intestinal lumen by ABC transporter" - metabolites: !!omap - 12htacr_c: -1 @@ -299321,30 +299321,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 12190331 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 12190331" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 12HTACRtep + - id: "12HTACRtep" - name: "exit of 12-hydroxy tacrolimus into portal blood" - metabolites: !!omap - 12htacr_c: -1 - 12htacr_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 12676880, PMID: 8732283, PMID: 12676880 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 12676880, PMID: 8732283, PMID: 12676880" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 1331TAALThr + - id: "1331TAALThr" - name: "demethylation of 13-O-desmethyl-tacrolimus to 13,31-O-Didesmethyl-tacrolimus in hepatocytes" - metabolites: !!omap - 1331tacr_r: 1 @@ -299354,15 +299354,15 @@ - m02877r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 12190331, PMID: 7536652, PMID: 17965516 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 12190331, PMID: 7536652, PMID: 17965516" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 1331TACRhr + - id: "1331TACRhr" - name: "demethylation of 31-O-desmethyl-tacrolimus to 13,31-O-Didesmethyl-tacrolimus in hepatocytes" - metabolites: !!omap - 1331tacr_r: 1 @@ -299372,15 +299372,15 @@ - m02877r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 12190331, PMID: 7536652, PMID: 17965516 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 12190331, PMID: 7536652, PMID: 17965516" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 1331TACRteb + - id: "1331TACRteb" - name: "efflux of 13,31-O-Didesmethyl-tacrolimus into bile" - metabolites: !!omap - 1331tacr_c: -1 @@ -299392,30 +299392,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10348790, PMID: 17965516, PMID: 12190331, PMID: 7534100 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10348790, PMID: 17965516, PMID: 12190331, PMID: 7534100" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 1331TACRtev + - id: "1331TACRtev" - name: "exit of 13,31-O-Didesmethyl-tacrolimus into hepatic vein" - metabolites: !!omap - 1331tacr_c: -1 - 1331tacr_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10348790, PMID: 17965516, PMID: 12190331, PMID: 7534100 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10348790, PMID: 17965516, PMID: 12190331, PMID: 7534100" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 13DMThr + - id: "13DMThr" - name: "demthylation of tacrolimus to 13-O-desmethyl tacrolimus in hepatocytes" - metabolites: !!omap - 13dmt_r: 1 @@ -299425,15 +299425,15 @@ - tacr_r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16501005, PMID: 12190331, PMID: 7536652, PMID: 1382896 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16501005, PMID: 12190331, PMID: 7536652, PMID: 1382896" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 13DMTtu + - id: "13DMTtu" - name: "efflux of 13-O-desmethyl tacrolimus into intestinal lumen by ABC transporter" - metabolites: !!omap - 13dmt_c: -1 @@ -299445,30 +299445,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 12190331 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 12190331" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 13DMTtep + - id: "13DMTtep" - name: "exit of 13-O-desmethyl tacrolimus into portal blood" - metabolites: !!omap - 13dmt_c: -1 - 13dmt_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 12676880, PMID: 8732283, PMID: 12676880 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 12676880, PMID: 8732283, PMID: 12676880" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 14HMDZALThr + - id: "14HMDZALThr" - name: "oxidation of 4-OH-midazolam to 1,4-Dihydroxy-midazolam in hepatocytes" - metabolites: !!omap - 14hmdz_r: 1 @@ -299480,15 +299480,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000106258 or ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.13.-;1.14.14.1 - - references: PMID: 8689807, PMID: 3196361, PMID: 8185679, PMID: 18256203, PMID: 17635335 + - gene_reaction_rule: "ENSG00000106258 or ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-;1.14.14.1" + - references: "PMID: 8689807, PMID: 3196361, PMID: 8185679, PMID: 18256203, PMID: 17635335" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 14HMDZhr + - id: "14HMDZhr" - name: "oxidation of 1-OH-midazolam to 1,4-Dihydroxy-midazolam in hepatocytes" - metabolites: !!omap - 14hmdz_r: 1 @@ -299500,30 +299500,30 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000106258 or ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.13.-;1.14.14.1 - - references: PMID: 8689807, PMID: 3196361, PMID: 8185679, PMID: 18256203, PMID: 17635335 + - gene_reaction_rule: "ENSG00000106258 or ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-;1.14.14.1" + - references: "PMID: 8689807, PMID: 3196361, PMID: 8185679, PMID: 18256203, PMID: 17635335" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 14MDZtev + - id: "14MDZtev" - name: "efflux of 1,4-Dihydroxy-midazolam into hepatic vein" - metabolites: !!omap - 14hmdz_c: -1 - 14hmdz_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 18256203, PMID: 7199324 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 18256203, PMID: 7199324" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 1513DTALThr + - id: "1513DTALThr" - name: "demthylation of 15-O-desmethyl tacrolimus to 13,15-O-didesmethyl tacrolimus in hepatocytes" - metabolites: !!omap - 1513tacr_r: 1 @@ -299533,15 +299533,15 @@ - m02877r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 12190331, PMID: 7536652, PMID: 17965516 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 12190331, PMID: 7536652, PMID: 17965516" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 1513DTACRhr + - id: "1513DTACRhr" - name: "demthylation of 13-O-desmethyl tacrolimus to 13,15-O-didesmethyl tacrolimus in hepatocytes" - metabolites: !!omap - 13dmt_r: -1 @@ -299551,15 +299551,15 @@ - m02877r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16501005, PMID: 12190331, PMID: 7536652, PMID: 1382896 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16501005, PMID: 12190331, PMID: 7536652, PMID: 1382896" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 1513TACRtu + - id: "1513TACRtu" - name: "efflux of 13,15-O-didesmethyl tacrolimus into intestinal lumen by ABC transporter" - metabolites: !!omap - 1513tacr_c: -1 @@ -299571,30 +299571,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 12190331 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 12190331" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 1513TACRtep + - id: "1513TACRtep" - name: "exit of 13,15-O-didesmethyl tacrolimus into portal blood" - metabolites: !!omap - 1513tacr_c: -1 - 1513tacr_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 12676880, PMID: 8732283, PMID: 12676880 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 12676880, PMID: 8732283, PMID: 12676880" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 1531TACRhr + - id: "1531TACRhr" - name: "demethylation of 15-O-desmethyl tacrolimus to 15, 31-O-Didesmethyl-tacrolimus in hepatocytes" - metabolites: !!omap - 1531tacr_r: 1 @@ -299604,15 +299604,15 @@ - m02877r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 12190331, PMID: 7536652, PMID: 17965516 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 12190331, PMID: 7536652, PMID: 17965516" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 1531TACRteb + - id: "1531TACRteb" - name: "efflux of 15, 31-O-Didesmethyl-tacrolimus into bile" - metabolites: !!omap - 1531tacr_c: -1 @@ -299624,30 +299624,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10348790, PMID: 17965516, PMID: 12190331, PMID: 7534100 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10348790, PMID: 17965516, PMID: 12190331, PMID: 7534100" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 1531TACRtev + - id: "1531TACRtev" - name: "exit of 15, 31-O-Didesmethyl-tacrolimus into hepatic vein" - metabolites: !!omap - 1531tacr_c: -1 - 1531tacr_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10348790, PMID: 17965516, PMID: 12190331, PMID: 7534100 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10348790, PMID: 17965516, PMID: 12190331, PMID: 7534100" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 1531TALThr + - id: "1531TALThr" - name: "demethylation of 31-O-desmethyl tacrolimus to 15, 31-O-Didesmethyl-tacrolimus in hepatocytes" - metabolites: !!omap - 1531tacr_r: 1 @@ -299657,15 +299657,15 @@ - m02877r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 12190331, PMID: 7536652, PMID: 17965516 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 12190331, PMID: 7536652, PMID: 17965516" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 15DMThr + - id: "15DMThr" - name: "demethylation of tacrolimus to 15-O-desmethyl tacrolimus in hepatocytes" - metabolites: !!omap - 15dmt_r: 1 @@ -299675,15 +299675,15 @@ - tacr_r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16501005, PMID: 12190331, PMID: 7536652, PMID: 1382896 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16501005, PMID: 12190331, PMID: 7536652, PMID: 1382896" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 15DMTtu + - id: "15DMTtu" - name: "efflux of 15-O-desmethyl tacrolimus into intestinal lumen by ABC transporter" - metabolites: !!omap - 15dmt_c: -1 @@ -299695,45 +299695,45 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 12190331 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 12190331" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 15DMTtep + - id: "15DMTtep" - name: "exit of 15-O-desmethyl tacrolimus into portal blood" - metabolites: !!omap - 15dmt_c: -1 - 15dmt_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 12676880, PMID: 8732283, PMID: 12676880 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 12676880, PMID: 8732283, PMID: 12676880" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 1HIBUPGLUC_Sthv + - id: "1HIBUPGLUC_Sthv" - name: "release of 1-hydroxy S-ibuprofen-glucuronide into hepatic vein" - metabolites: !!omap - 1hibupglu_S_c: -1 - 1hibupglu_S_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9515184, Graham, G. ; K. Williams (2004). Metabolism ; Pharmacokinetics of Ibuprofen. Aspirin ; Related Drugs, CRC Press. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9515184, Graham, G. ; K. Williams (2004). Metabolism ; Pharmacokinetics of Ibuprofen. Aspirin ; Related Drugs, CRC Press." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 1HIBUP_SGLUhep + - id: "1HIBUP_SGLUhep" - name: "glucuronidation of 1-hydroxy ibuprofen" - metabolites: !!omap - 1hibup_S_r: -1 @@ -299742,30 +299742,30 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171234 or ENSG00000241119 or ENSG00000243135 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID: 9515184. + - gene_reaction_rule: "ENSG00000171234 or ENSG00000241119 or ENSG00000243135" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID: 9515184." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 1HIBUP_Sthv + - id: "1HIBUP_Sthv" - name: "release of 1-hydroxy-ibuprofen into hepatic vein" - metabolites: !!omap - 1hibup_S_c: -1 - 1hibup_S_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9515184, Graham, G. ; K. Williams (2004). Metabolism ; Pharmacokinetics of Ibuprofen. Aspirin ; Related Drugs, CRC Press. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9515184, Graham, G. ; K. Williams (2004). Metabolism ; Pharmacokinetics of Ibuprofen. Aspirin ; Related Drugs, CRC Press." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 1HMDGLUChr + - id: "1HMDGLUChr" - name: "glucuronidation of 1-OH-midazolam in enterocytes" - metabolites: !!omap - 1hmdgluc_r: 1 @@ -299775,30 +299775,30 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000156096 or ENSG00000171234 or ENSG00000244474 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 17998299 + - gene_reaction_rule: "ENSG00000156096 or ENSG00000171234 or ENSG00000244474" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 17998299" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 1HMDZGLUChc + - id: "1HMDZGLUChc" - name: "uptake of 1-OH-midazolam-glucuronide into hepatocytes" - metabolites: !!omap - 1hmdgluc_c: 1 - 1hmdgluc_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 17498391 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 17498391" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 1OHMDZhr + - id: "1OHMDZhr" - name: "oxidation of midazolam to 1-OH-midazolam in hepatocytes" - metabolites: !!omap - 1ohmdz_r: 1 @@ -299810,30 +299810,30 @@ - mdz_r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000106258 or ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.13.-;1.14.14.1 - - references: PMID: 8689807, PMID: 3196361, PMID: 8185679, PMID: 18256203, PMID: 17635335 + - gene_reaction_rule: "ENSG00000106258 or ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-;1.14.14.1" + - references: "PMID: 8689807, PMID: 3196361, PMID: 8185679, PMID: 18256203, PMID: 17635335" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 1OHMDZtep + - id: "1OHMDZtep" - name: "efflux of 1-OH-midazolam into portal blood" - metabolites: !!omap - 1ohmdz_c: -1 - 1ohmdz_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 17498391 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 17498391" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 2HATVLAChc + - id: "2HATVLAChc" - name: "conversion of 2-hydroxy-atorvastatin-acid to its lactone form in hepatocytes" - metabolites: !!omap - 2hatvacid_c: -1 @@ -299843,15 +299843,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11038166, PMID: 14531725, PMID: 11950779 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11038166, PMID: 14531725, PMID: 11950779" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 2HATVACIDGLUChr + - id: "2HATVACIDGLUChr" - name: "glucuronidation of 2-hydroxy-atorvastatin-acid in hepatocytes" - metabolites: !!omap - 2hatvacid_r: -1 @@ -299860,15 +299860,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000243135 or ENSG00000244474 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID: 17470524, PMID: 16258024. + - gene_reaction_rule: "ENSG00000243135 or ENSG00000244474" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID: 17470524, PMID: 16258024." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 2HATVACIDGLUCteb + - id: "2HATVACIDGLUCteb" - name: "efflux of 2-hydroxy-atorvastatin-acyl-glucuronide into bile" - metabolites: !!omap - 2hatvacidgluc_c: -1 @@ -299880,15 +299880,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000085563 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 17470524, PMID: 16258024. + - gene_reaction_rule: "ENSG00000023839 or ENSG00000085563" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 17470524, PMID: 16258024." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 2HATVACIDOXDhc + - id: "2HATVACIDOXDhc" - name: "oxidation of atorvastatin acid to 2-hydroxy-atorvastatin-acid in hepatocytes" - metabolites: !!omap - 2hatvacid_r: 1 @@ -299900,15 +299900,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000106258 or ENSG00000138115 or ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.13.-;1.14.14.1 - - references: PMID: 14531725, PMID: 9804052, PMID: 12036392, PMID: 15998357, PMID: 16388406, PMID: 18720283. + - gene_reaction_rule: "ENSG00000106258 or ENSG00000138115 or ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-;1.14.14.1" + - references: "PMID: 14531725, PMID: 9804052, PMID: 12036392, PMID: 15998357, PMID: 16388406, PMID: 18720283." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 2HATVACIDhc + - id: "2HATVACIDhc" - name: "conversion of 2-hydroxy-atorvastatin-lactone to its acid form in hepatocytes" - metabolites: !!omap - 2hatvacid_c: 1 @@ -299917,15 +299917,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105852 - - rxnFrom: Recon3D - - eccodes: 3.1.1.2 - - references: PMID: 11038166, PMID: 14531725, PMID: 11950779 + - gene_reaction_rule: "ENSG00000105852" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.2" + - references: "PMID: 11038166, PMID: 14531725, PMID: 11950779" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 2HATVACIDteb + - id: "2HATVACIDteb" - name: "efflux of 2-hydroxy-atorvastatin-acid into bile" - metabolites: !!omap - 2hatvacid_c: -1 @@ -299937,30 +299937,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000085563 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 17470524, PMID: 16258024. + - gene_reaction_rule: "ENSG00000023839 or ENSG00000085563" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 17470524, PMID: 16258024." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 2HATVACIDtep + - id: "2HATVACIDtep" - name: "efflux of 2-hydroxy-atorvastatin-acid into portal blood" - metabolites: !!omap - 2hatvacid_c: -1 - 2hatvacid_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 14531725, PMID: 9804052, PMID: 12036392, PMID: 18720283. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 14531725, PMID: 9804052, PMID: 12036392, PMID: 18720283." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 2HATVACIDthc + - id: "2HATVACIDthc" - name: "uptake of 2-hydroxy-atorvastatin-acid into hepatocytes" - metabolites: !!omap - 2hatvacid_c: 1 @@ -299969,15 +299969,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 or ENSG00000137491 - - rxnFrom: Recon3D - - eccodes: - - references: Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49, PMID: 21942630. + - gene_reaction_rule: "ENSG00000134538 or ENSG00000137491" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49, PMID: 21942630." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 2HATVLACGLUChr + - id: "2HATVLACGLUChr" - name: "glucuronidation of 2-hydroxy-atorvastatin-lactone in hepatocytes" - metabolites: !!omap - 2hatvlac_r: -1 @@ -299987,15 +299987,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000243135 or ENSG00000244474 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID: 17470524, PMID: 16258024. + - gene_reaction_rule: "ENSG00000243135 or ENSG00000244474" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID: 17470524, PMID: 16258024." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 2HATVLACGLUCteb + - id: "2HATVLACGLUCteb" - name: "efflux of 2-hydroxy-atorvastatin-lactone-glucuronide into bile" - metabolites: !!omap - 2hatvlacgluc_c: -1 @@ -300007,15 +300007,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000085563 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 17470524, PMID: 16258024 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000085563" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 17470524, PMID: 16258024" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 2HATVLACOXDhc + - id: "2HATVLACOXDhc" - name: "oxidation of atorvastatin lactone to 2-hydroxy-atorvastatin-lactone in hepatocytes" - metabolites: !!omap - 2hatvlac_r: 1 @@ -300027,15 +300027,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000106258 or ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.13.-;1.14.14.1 - - references: PMID: 14531725, PMID: 9804052, PMID: 12036392, PMID: 15998357, PMID: 16388406, PMID: 18720283. + - gene_reaction_rule: "ENSG00000106258 or ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-;1.14.14.1" + - references: "PMID: 14531725, PMID: 9804052, PMID: 12036392, PMID: 15998357, PMID: 16388406, PMID: 18720283." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 2HATVLACteb + - id: "2HATVLACteb" - name: "efflux of 2-hydroxy-atorvastatin-lactone into bile" - metabolites: !!omap - 2hatvlac_c: -1 @@ -300047,30 +300047,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000085563 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 17470524, PMID: 16258024. + - gene_reaction_rule: "ENSG00000023839 or ENSG00000085563" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 17470524, PMID: 16258024." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 2HATVLACtep + - id: "2HATVLACtep" - name: "efflux of 2-hydroxy-atorvastatin-lactone into portal blood" - metabolites: !!omap - 2hatvlac_c: -1 - 2hatvlac_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 14531725, PMID: 9804052, PMID: 12036392, PMID: 18720283. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 14531725, PMID: 9804052, PMID: 12036392, PMID: 18720283." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 2HATVLACthc + - id: "2HATVLACthc" - name: "uptake of 2-hydroxy-atorvastatin-lactone into hepatocytes" - metabolites: !!omap - 2hatvlac_c: 1 @@ -300079,45 +300079,45 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 or ENSG00000137491 - - rxnFrom: Recon3D - - eccodes: - - references: Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49, PMID: 21942630. + - gene_reaction_rule: "ENSG00000134538 or ENSG00000137491" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49, PMID: 21942630." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 2HIBUPGLUC_Sthv + - id: "2HIBUPGLUC_Sthv" - name: "release of 2-hydroxy S-ibuprofen-glucuronide into hepatic vein" - metabolites: !!omap - 2hibupglu_S_c: -1 - 2hibupglu_S_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9515184, Graham, G. ; K. Williams (2004). Metabolism ; Pharmacokinetics of Ibuprofen. Aspirin ; Related Drugs, CRC Press. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9515184, Graham, G. ; K. Williams (2004). Metabolism ; Pharmacokinetics of Ibuprofen. Aspirin ; Related Drugs, CRC Press." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 2HIBUP_Rthv + - id: "2HIBUP_Rthv" - name: "release of R-2-hydroxy-ibuprofen into hepatic vein" - metabolites: !!omap - 2hibup_R_c: -1 - 2hibup_R_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9515184, Graham, G. ; K. Williams (2004). Metabolism ; Pharmacokinetics of Ibuprofen. Aspirin ; Related Drugs, CRC Press. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9515184, Graham, G. ; K. Williams (2004). Metabolism ; Pharmacokinetics of Ibuprofen. Aspirin ; Related Drugs, CRC Press." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 2HIBUP_SGLUhep + - id: "2HIBUP_SGLUhep" - name: "glucuronidation of S-2-hydroxy ibuprofen" - metabolites: !!omap - 2hibup_S_r: -1 @@ -300126,30 +300126,30 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171234 or ENSG00000241119 or ENSG00000243135 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID: 9515184. + - gene_reaction_rule: "ENSG00000171234 or ENSG00000241119 or ENSG00000243135" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID: 9515184." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 2HIBUP_Sthv + - id: "2HIBUP_Sthv" - name: "release of S-2-hydroxy-ibuprofen into hepatic vein" - metabolites: !!omap - 2hibup_S_c: -1 - 2hibup_S_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9515184, Graham, G. ; K. Williams (2004). Metabolism ; Pharmacokinetics of Ibuprofen. Aspirin ; Related Drugs, CRC Press. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9515184, Graham, G. ; K. Williams (2004). Metabolism ; Pharmacokinetics of Ibuprofen. Aspirin ; Related Drugs, CRC Press." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 31DMThr + - id: "31DMThr" - name: "demethylation of tacrolimus to 31-O-desmethyl tacrolimus in hepatocytes" - metabolites: !!omap - 31dmt_r: 1 @@ -300159,15 +300159,15 @@ - tacr_r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16501005, PMID: 12190331, PMID: 7536652, PMID: 1382896 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16501005, PMID: 12190331, PMID: 7536652, PMID: 1382896" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 31DMTtu + - id: "31DMTtu" - name: "efflux of 31-O-desmethyl tacrolimus into intestinal lumen by ABC transporter" - metabolites: !!omap - 31dmt_c: -1 @@ -300179,30 +300179,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 12190331 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 12190331" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 31DMTtep + - id: "31DMTtep" - name: "exit of 31-O-desmethyl tacrolimus into portal blood" - metabolites: !!omap - 31dmt_c: -1 - 31dmt_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 12676880, PMID: 8732283, PMID: 12676880 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 12676880, PMID: 8732283, PMID: 12676880" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 35DHPVShc + - id: "35DHPVShc" - name: "conversion of pravastatin to 3-alpha-5-beta-dihydroxy pravastatin in entercoytes" - metabolites: !!omap - 35dhpvs_r: 1 @@ -300214,30 +300214,30 @@ - pvs_r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.13.- - - references: PMID: 9929499, PMID: 1680649, PMID: 9804052, PMID: 11192473 + - gene_reaction_rule: "ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-" + - references: "PMID: 9929499, PMID: 1680649, PMID: 9804052, PMID: 11192473" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 35DHPVStep + - id: "35DHPVStep" - name: "3-alpha-5-beta-dihydroxy pravastatin exit into portal blood" - metabolites: !!omap - 35dhpvs_c: -1 - 35dhpvs_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11192473 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11192473" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 35DHPVSthc + - id: "35DHPVSthc" - name: "uptake of 3-alpha-5-beta-dihydroxy pravastatin by hepatocytes" - metabolites: !!omap - 35dhpvs_c: 1 @@ -300246,15 +300246,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 or ENSG00000137491 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 17177112 + - gene_reaction_rule: "ENSG00000134538 or ENSG00000137491" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 17177112" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 35DSMVhep + - id: "35DSMVhep" - name: "formation of 3,5-dihydrodoil simvastatin" - metabolites: !!omap - 35dsmv_r: 1 @@ -300265,15 +300265,15 @@ - smv_r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100197 or ENSG00000106258 or ENSG00000138115 or ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.13.-;1.14.14.1 - - references: PMID: 9321523 + - gene_reaction_rule: "ENSG00000100197 or ENSG00000106258 or ENSG00000138115 or ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-;1.14.14.1" + - references: "PMID: 9321523" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 35DSMVteb + - id: "35DSMVteb" - name: "efflux of 3,5-dihydrodiol-simvastatin-lactone form into bile" - metabolites: !!omap - 35dsmv_c: -1 @@ -300285,45 +300285,45 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Brunton, L., Lazo, J., Parker, K. (2006). Goodman & Gilmans: The pharmacological basis of therapeutics, The McGraw-Hill companies, PMID: 19482594, PMID: 16321621, PMID: 15497697. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Brunton, L., Lazo, J., Parker, K. (2006). Goodman & Gilmans: The pharmacological basis of therapeutics, The McGraw-Hill companies, PMID: 19482594, PMID: 16321621, PMID: 15497697." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 3HIBUPGLUC_Sthv + - id: "3HIBUPGLUC_Sthv" - name: "release of 3-hydroxy S-ibuprofen-glucuronide into hepatic vein" - metabolites: !!omap - 3hibupglu_S_c: -1 - 3hibupglu_S_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9515184, Graham, G. ; K. Williams (2004). Metabolism ; Pharmacokinetics of Ibuprofen. Aspirin ; Related Drugs, CRC Press. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9515184, Graham, G. ; K. Williams (2004). Metabolism ; Pharmacokinetics of Ibuprofen. Aspirin ; Related Drugs, CRC Press." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 3HIBUP_Rthv + - id: "3HIBUP_Rthv" - name: "release of R-3-hydroxy-ibuprofen into hepatic vein" - metabolites: !!omap - 3hibup_R_c: -1 - 3hibup_R_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9515184, Graham, G. ; K. Williams (2004). Metabolism ; Pharmacokinetics of Ibuprofen. Aspirin ; Related Drugs, CRC Press. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9515184, Graham, G. ; K. Williams (2004). Metabolism ; Pharmacokinetics of Ibuprofen. Aspirin ; Related Drugs, CRC Press." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 3HIBUP_SGLUhep + - id: "3HIBUP_SGLUhep" - name: "glucuronidation of S-3-hydroxy ibuprofen" - metabolites: !!omap - 3hibup_S_r: -1 @@ -300332,30 +300332,30 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171234 or ENSG00000241119 or ENSG00000243135 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID: 9515184. + - gene_reaction_rule: "ENSG00000171234 or ENSG00000241119 or ENSG00000243135" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID: 9515184." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 3HIBUP_Sthv + - id: "3HIBUP_Sthv" - name: "release of S-3-hydroxy-ibuprofen into hepatic vein" - metabolites: !!omap - 3hibup_S_c: -1 - 3hibup_S_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9515184, Graham, G. ; K. Williams (2004). Metabolism ; Pharmacokinetics of Ibuprofen. Aspirin ; Related Drugs, CRC Press. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9515184, Graham, G. ; K. Williams (2004). Metabolism ; Pharmacokinetics of Ibuprofen. Aspirin ; Related Drugs, CRC Press." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 3HLVSTAChep + - id: "3HLVSTAChep" - name: "conversion of 3-hydroxy-lovastatin lactone to acid form" - metabolites: !!omap - 3hlvst_c: -1 @@ -300364,15 +300364,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105852 - - rxnFrom: Recon3D - - eccodes: 3.1.1.2 - - references: PMID: 1929403 + - gene_reaction_rule: "ENSG00000105852" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.2" + - references: "PMID: 1929403" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 3HLVSTACtbc + - id: "3HLVSTACtbc" - name: "release of 3-hydroxy-lovastatin acid form into bile" - metabolites: !!omap - 3hlvstacid_c: -1 @@ -300384,15 +300384,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 1929403 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 1929403" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 3HPVSTETCOAhcm + - id: "3HPVSTETCOAhcm" - name: "beta oxidation of 3-S-hydroxy-pravastatin-CoA to tatranor-CoA derivative in hepatocytes, mitochondria" - metabolites: !!omap - 3hpvscoa_m: -1 @@ -300408,15 +300408,15 @@ - m02630m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000072778 or ENSG00000084754 or ENSG00000138029 - - rxnFrom: Recon3D - - eccodes: 1.3.99.-;4.2.1.17;1.1.1.211;2.3.1.16 - - references: PMID: 1680649 + - gene_reaction_rule: "ENSG00000072778 or ENSG00000084754 or ENSG00000138029" + - rxnFrom: "Recon3D" + - eccodes: "1.3.99.-;4.2.1.17;1.1.1.211;2.3.1.16" + - references: "PMID: 1680649" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 3HPVSTETCOAhcx + - id: "3HPVSTETCOAhcx" - name: "beta oxidation of 3-S-hydroxy-pravastatin-CoA to tetranor-CoA in hepatocytes, peroxisomes" - metabolites: !!omap - 3hpvscoa_p: -1 @@ -300431,15 +300431,15 @@ - m02630p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000113790 or ENSG00000133835 or ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: 1.3.3.6;4.2.1.17;1.1.1.35;2.3.1.16 - - references: PMID: 1680649 + - gene_reaction_rule: "ENSG00000060971 or ENSG00000113790 or ENSG00000133835 or ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "1.3.3.6;4.2.1.17;1.1.1.35;2.3.1.16" + - references: "PMID: 1680649" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 3HPVSTETteb + - id: "3HPVSTETteb" - name: "efflux of 3-S-hydroxy-pravastatin-tetranor into bile" - metabolites: !!omap - 3hpvstet_c: -1 @@ -300451,30 +300451,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000073734 or ENSG00000118777 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16714062, PMID: 17177112 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000073734 or ENSG00000118777" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16714062, PMID: 17177112" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 3HPVSTETtev + - id: "3HPVSTETtev" - name: "exit of 3-S-hydroxy-pravastatin-tetranor into hepatic vein" - metabolites: !!omap - 3hpvstet_c: -1 - 3hpvstet_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 1680649, PMID: 11192473, PMID: 9804052, PMID: 16714062, PMID: 18563955 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 1680649, PMID: 11192473, PMID: 9804052, PMID: 16714062, PMID: 18563955" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 3HPVShc + - id: "3HPVShc" - name: "oxidation of pravastatin to 3-hydroxy pravastatin in hepatocytes" - metabolites: !!omap - 3hpvs_r: 1 @@ -300486,15 +300486,15 @@ - pvs_r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160868 or ENSG00000186115 or ENSG00000186529 - - rxnFrom: Recon3D - - eccodes: 1.14.13.-;1.14.13.30 - - references: PMID: 9929499, PMID: 1680649, PMID: 9804052, PMID: 11192473 + - gene_reaction_rule: "ENSG00000160868 or ENSG00000186115 or ENSG00000186529" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-;1.14.13.30" + - references: "PMID: 9929499, PMID: 1680649, PMID: 9804052, PMID: 11192473" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 3HPVSteb + - id: "3HPVSteb" - name: "efflux of 3-S-hydroxy-pravastatin into bile" - metabolites: !!omap - 3hpvs_c: -1 @@ -300506,30 +300506,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000073734 or ENSG00000118777 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16714062, PMID: 17177112 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000073734 or ENSG00000118777" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16714062, PMID: 17177112" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 3HPVStep + - id: "3HPVStep" - name: "3-hydroxy pravastatin exit into portal blood" - metabolites: !!omap - 3hpvs_c: -1 - 3hpvs_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11192473 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11192473" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 3HPVSthc + - id: "3HPVSthc" - name: "uptake of 3-hydroxy pravastatin by hepatocytes" - metabolites: !!omap - 3hpvs_c: 1 @@ -300538,15 +300538,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 or ENSG00000137491 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 17177112 + - gene_reaction_rule: "ENSG00000134538 or ENSG00000137491" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 17177112" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 3HSMVACIDhep + - id: "3HSMVACIDhep" - name: "conversion of 3-hydroxy simvastatin lactone to acid form" - metabolites: !!omap - 3hsmv_c: -1 @@ -300555,15 +300555,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105852 - - rxnFrom: Recon3D - - eccodes: 3.1.1.2 - - references: PMID: 1976071, PMID: 9321523. + - gene_reaction_rule: "ENSG00000105852" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.2" + - references: "PMID: 1976071, PMID: 9321523." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 3HSMVACIDteb + - id: "3HSMVACIDteb" - name: "efflux of 3-hydroxy-simvastatin-acid form into bile" - metabolites: !!omap - 3hsmvacid_c: -1 @@ -300575,45 +300575,45 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Brunton, L., Lazo, J., Parker, K. (2006). Goodman & Gilmans: The pharmacological basis of therapeutics, The McGraw-Hill companies, PMID: 19482594, PMID: 16321621, PMID: 15497697. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Brunton, L., Lazo, J., Parker, K. (2006). Goodman & Gilmans: The pharmacological basis of therapeutics, The McGraw-Hill companies, PMID: 19482594, PMID: 16321621, PMID: 15497697." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 3HSMVhep + - id: "3HSMVhep" - name: "acid catalyzed rearrangement of 6-beta-hydroxy-simvastatin to 3-hydroxy simvastatin" - metabolites: !!omap - 3hsmv_r: 1 - 6hsmv_r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100197 or ENSG00000106258 or ENSG00000138115 or ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.13.-;1.14.14.1 - - references: PMID: 9321523, PMID: 9804052, PMID: 1976071, PMID: 1971563, PMID: 15998357, PMID: 9217719, PMID: 16388406. + - gene_reaction_rule: "ENSG00000100197 or ENSG00000106258 or ENSG00000138115 or ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-;1.14.14.1" + - references: "PMID: 9321523, PMID: 9804052, PMID: 1976071, PMID: 1971563, PMID: 15998357, PMID: 9217719, PMID: 16388406." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 3ISPVShc + - id: "3ISPVShc" - name: "isomerization of pravastatin to 3-alpha-iso-pravastatin in hepatocytes" - metabolites: !!omap - 3ispvs_c: 1 - pvs_c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9929499, PMID: 1680649, PMID: 11192473, PMID: 9804052 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9929499, PMID: 1680649, PMID: 11192473, PMID: 9804052" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 3ISPVSteb + - id: "3ISPVSteb" - name: "efflux of 3-alpha-iso-pravastatin into bile" - metabolites: !!omap - 3ispvs_c: -1 @@ -300625,30 +300625,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000073734 or ENSG00000118777 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16714062, PMID: 17177112 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000073734 or ENSG00000118777" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16714062, PMID: 17177112" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 3ISPVStep + - id: "3ISPVStep" - name: "3-alpha-iso-pravastatin exit into portal blood" - metabolites: !!omap - 3ispvs_c: -1 - 3ispvs_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11192473 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11192473" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 3ISPVSthc + - id: "3ISPVSthc" - name: "uptake of 3-alpha-iso-pravastatin by hepatocytes" - metabolites: !!omap - 3ispvs_c: 1 @@ -300657,15 +300657,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 or ENSG00000137491 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 17177112 + - gene_reaction_rule: "ENSG00000134538 or ENSG00000137491" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 17177112" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 3MEACMPhc + - id: "3MEACMPhc" - name: "formation of 3-methoxy-acetaminophen in hepatocytes" - metabolites: !!omap - 3meacmp_c: 1 @@ -300675,15 +300675,15 @@ - m02877c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 6705983, PMID: 3936286, PMID: 12418493, Graham, G. ; M. Hicks (2004). Pharmacokinetics ; Metabolism of Paracetamol (Acetaminophen). Aspirin ; Related Drugs, CRC Press. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 6705983, PMID: 3936286, PMID: 12418493, Graham, G. ; M. Hicks (2004). Pharmacokinetics ; Metabolism of Paracetamol (Acetaminophen). Aspirin ; Related Drugs, CRC Press." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 3OHACMPhr + - id: "3OHACMPhr" - name: "oxidation of acetaminophen to 3-OH-acetaminophen in hepatocytes" - metabolites: !!omap - 3ohacmp_r: 1 @@ -300695,15 +300695,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000130649 or ENSG00000255974 - - rxnFrom: Recon3D - - eccodes: 1.14.13.- - - references: Kalsi SS, W. D., Waring WS, Dargan PI (2011). Does cytochrome P450 liver isoenzyme induction increase the risk of liver toxicity after paracetamol overdose? Open Access Emergency Medicine 3(1): 69-76., PMID: 11095574 + - gene_reaction_rule: "ENSG00000130649 or ENSG00000255974" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-" + - references: "Kalsi SS, W. D., Waring WS, Dargan PI (2011). Does cytochrome P450 liver isoenzyme induction increase the risk of liver toxicity after paracetamol overdose? Open Access Emergency Medicine 3(1): 69-76., PMID: 11095574" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 3OHACMPtev + - id: "3OHACMPtev" - name: "efflux of 3-OH-acetaminophen into hepatic vein" - metabolites: !!omap - 3ohacmp_c: -1 @@ -300715,15 +300715,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 1026559, PMID: 11215692, Graham, G. ; M. Hicks (2004). Pharmacokinetics ; Metabolism of Paracetamol (Acetaminophen). Aspirin ; Related Drugs, CRC Press. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 1026559, PMID: 11215692, Graham, G. ; M. Hicks (2004). Pharmacokinetics ; Metabolism of Paracetamol (Acetaminophen). Aspirin ; Related Drugs, CRC Press." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 4BHGLZABCt + - id: "4BHGLZABCt" - name: "excretion of 4-beta-OH-gliclazide into bile" - metabolites: !!omap - 4bhglz_c: -1 @@ -300735,15 +300735,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Sarkar, A., Tiwari, A., Bhasin, P. S., Mitra, M. (2011). Pharmacological ; Pharmaceutical Profile of Gliclazide: A Review. Journal of Applied Pharmaceutical Science 1(9): 11-19, Zayed, M., F. Nour El-Dien, et al. (2010). Mass spectra of gliclazide drug at various ion sources temperature: Its thermal behavior ; molecular orbital calculations. Journal of Thermal Analysis ; Calorimetry 102(1): 305-312, PMID: 1794262 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Sarkar, A., Tiwari, A., Bhasin, P. S., Mitra, M. (2011). Pharmacological ; Pharmaceutical Profile of Gliclazide: A Review. Journal of Applied Pharmaceutical Science 1(9): 11-19, Zayed, M., F. Nour El-Dien, et al. (2010). Mass spectra of gliclazide drug at various ion sources temperature: Its thermal behavior ; molecular orbital calculations. Journal of Thermal Analysis ; Calorimetry 102(1): 305-312, PMID: 1794262" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 4BHGLZhr + - id: "4BHGLZhr" - name: "oxidation of gliclazide to 4-beta-OH-gliclazide in hepatocytes" - metabolites: !!omap - 4bhglz_r: 1 @@ -300755,30 +300755,30 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 18204476, PMID: 1794262, PMID: 17517049, PMID: 8825191, PMID: 3984386 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 18204476, PMID: 1794262, PMID: 17517049, PMID: 8825191, PMID: 3984386" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 4BHGLZtev + - id: "4BHGLZtev" - name: "excretion of 4-beta-OH-gliclazide into hepatic vein" - metabolites: !!omap - 4bhglz_c: -1 - 4bhglz_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8825191. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8825191." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 4HATVACIDOXDhc + - id: "4HATVACIDOXDhc" - name: "oxidation of atorvastatin acid to 4-hydroxy-atorvastatin-acid in hepatocytes" - metabolites: !!omap - 4hatvacid_r: 1 @@ -300790,15 +300790,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000106258 or ENSG00000138115 or ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.13.-;1.14.14.1 - - references: PMID: 14531725, PMID: 9804052, PMID: 12036392, PMID: 15998357, PMID: 16388406, PMID: 18720283. + - gene_reaction_rule: "ENSG00000106258 or ENSG00000138115 or ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-;1.14.14.1" + - references: "PMID: 14531725, PMID: 9804052, PMID: 12036392, PMID: 15998357, PMID: 16388406, PMID: 18720283." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 4HATVACIDhc + - id: "4HATVACIDhc" - name: "conversion of 4-hydroxy-atorvastatin-lactone to its acid form in hepatocytes" - metabolites: !!omap - 4hatvacid_c: 1 @@ -300807,15 +300807,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105852 - - rxnFrom: Recon3D - - eccodes: 3.1.1.2 - - references: PMID: 11038166, PMID: 14531725, PMID: 11950779 + - gene_reaction_rule: "ENSG00000105852" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.2" + - references: "PMID: 11038166, PMID: 14531725, PMID: 11950779" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 4HATVACIDteb + - id: "4HATVACIDteb" - name: "efflux of 4-hydroxy-atorvastatin-acid into bile" - metabolites: !!omap - 4hatvacid_c: -1 @@ -300827,30 +300827,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000085563 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 17470524, PMID: 16258024. + - gene_reaction_rule: "ENSG00000023839 or ENSG00000085563" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 17470524, PMID: 16258024." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 4HATVACIDtep + - id: "4HATVACIDtep" - name: "efflux of 4-hydroxy-atorvastatin-acid into portal blood" - metabolites: !!omap - 4hatvacid_c: -1 - 4hatvacid_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 14531725, PMID: 9804052, PMID: 12036392, PMID: 18720283. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 14531725, PMID: 9804052, PMID: 12036392, PMID: 18720283." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 4HATVACIDthc + - id: "4HATVACIDthc" - name: "uptake of 4-hydroxy-atorvastatin-acid into hepatocytes" - metabolites: !!omap - 4hatvacid_c: 1 @@ -300859,15 +300859,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 or ENSG00000137491 - - rxnFrom: Recon3D - - eccodes: - - references: Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49, PMID: 21942630. + - gene_reaction_rule: "ENSG00000134538 or ENSG00000137491" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49, PMID: 21942630." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 4HATVLACOXDhc + - id: "4HATVLACOXDhc" - name: "oxidation of atorvastatin lactone to 4-hydroxy-atorvastatin-lactone in hepatocytes" - metabolites: !!omap - 4hatvlac_r: 1 @@ -300879,15 +300879,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000106258 or ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.13.-;1.14.14.1 - - references: PMID: 14531725, PMID: 9804052, PMID: 12036392, PMID: 15998357, PMID: 16388406, PMID: 18720283. + - gene_reaction_rule: "ENSG00000106258 or ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-;1.14.14.1" + - references: "PMID: 14531725, PMID: 9804052, PMID: 12036392, PMID: 15998357, PMID: 16388406, PMID: 18720283." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 4HATVLAChc + - id: "4HATVLAChc" - name: "conversion of 4-hydroxy-atorvastatin-lactone to its acid form in hepatocytes" - metabolites: !!omap - 4hatvacid_c: -1 @@ -300897,15 +300897,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11038166, PMID: 14531725, PMID: 11950779 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11038166, PMID: 14531725, PMID: 11950779" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 4HATVLACteb + - id: "4HATVLACteb" - name: "efflux of 4-hydroxy-atorvastatin-lactone into bile" - metabolites: !!omap - 4hatvlac_c: -1 @@ -300917,30 +300917,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000085563 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 17470524, PMID: 16258024. + - gene_reaction_rule: "ENSG00000023839 or ENSG00000085563" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 17470524, PMID: 16258024." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 4HATVLACtep + - id: "4HATVLACtep" - name: "efflux of 4-hydroxy-atorvastatin-lactone into portal blood" - metabolites: !!omap - 4hatvlac_c: -1 - 4hatvlac_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 14531725, PMID: 9804052, PMID: 12036392, PMID: 18720283. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 14531725, PMID: 9804052, PMID: 12036392, PMID: 18720283." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 4HATVLACthc + - id: "4HATVLACthc" - name: "uptake of 4-hydroxy-atorvastatin-lactone into hepatocytes" - metabolites: !!omap - 4hatvlac_c: 1 @@ -300949,30 +300949,30 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 or ENSG00000137491 - - rxnFrom: Recon3D - - eccodes: - - references: Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49, PMID: 21942630. + - gene_reaction_rule: "ENSG00000134538 or ENSG00000137491" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49, PMID: 21942630." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 4HMDGLUCtev + - id: "4HMDGLUCtev" - name: "efflux of 4-OH-midazolam-glucuronide into hepatic vein" - metabolites: !!omap - 4hmdgluc_c: -1 - 4hmdgluc_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 18256203, PMID: 7199324 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 18256203, PMID: 7199324" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 4HMDZGLUChr + - id: "4HMDZGLUChr" - name: "glucuronidation of 4-OH-midazolam in enterocytes" - metabolites: !!omap - 4hmdgluc_r: 1 @@ -300982,15 +300982,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000156096 or ENSG00000171234 or ENSG00000244474 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8689807, PMID: 3196361, PMID: 8185679, PMID: 18256203, PMID: 17998299 + - gene_reaction_rule: "ENSG00000156096 or ENSG00000171234 or ENSG00000244474" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8689807, PMID: 3196361, PMID: 8185679, PMID: 18256203, PMID: 17998299" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 4OHMDZhr + - id: "4OHMDZhr" - name: "oxidation of midazolam to 4-OH-midazolam in hepatocytes" - metabolites: !!omap - 4ohmdz_r: 1 @@ -301002,30 +301002,30 @@ - mdz_r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000106258 or ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.13.-;1.14.14.1 - - references: PMID: 8689807, PMID: 3196361, PMID: 8185679, PMID: 18256203, PMID: 17635335 + - gene_reaction_rule: "ENSG00000106258 or ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-;1.14.14.1" + - references: "PMID: 8689807, PMID: 3196361, PMID: 8185679, PMID: 18256203, PMID: 17635335" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 4OHMDZtev + - id: "4OHMDZtev" - name: "efflux of 4-OH-midazolam into hepatic vein" - metabolites: !!omap - 4ohmdz_c: -1 - 4ohmdz_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 18256203, PMID: 7199324 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 18256203, PMID: 7199324" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 56DHPVShc + - id: "56DHPVShc" - name: "oxidation of triol metabolite to 3-keto-5,6,-dihydroxy-pravastatin in hepatocytes" - metabolites: !!omap - 56dhpvs_r: 1 @@ -301037,15 +301037,15 @@ - tripvs_r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.13.- - - references: PMID: 9929499, PMID: 1680649, PMID: 9804052, PMID: 11192474 + - gene_reaction_rule: "ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-" + - references: "PMID: 9929499, PMID: 1680649, PMID: 9804052, PMID: 11192474" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 56DHPVSteb + - id: "56DHPVSteb" - name: "efflux of 3-keto-5,6,-dihydroxy-pravastatin into bile" - metabolites: !!omap - 56dhpvs_c: -1 @@ -301057,30 +301057,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000073734 or ENSG00000118777 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16714062, PMID: 17177112 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000073734 or ENSG00000118777" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16714062, PMID: 17177112" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 56DHPVStev + - id: "56DHPVStev" - name: "exit of 3-keto-5,6,-dihydroxy-pravastatin into hepatic vein" - metabolites: !!omap - 56dhpvs_c: -1 - 56dhpvs_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 1680649, PMID: 11192473, PMID: 9804052, PMID: 16714062, PMID: 18563955 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 1680649, PMID: 11192473, PMID: 9804052, PMID: 16714062, PMID: 18563955" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 56EPPVShc + - id: "56EPPVShc" - name: "oxidation of 3-alpha-iso-pravastatin to 5,6-epoxy-3-alpha-iso-pravastatin in hepatocytes" - metabolites: !!omap - 3ispvs_r: -1 @@ -301092,15 +301092,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.13.- - - references: PMID: 9929499, PMID: 1680649, PMID: 9804052, PMID: 11192474 + - gene_reaction_rule: "ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-" + - references: "PMID: 9929499, PMID: 1680649, PMID: 9804052, PMID: 11192474" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 56EPPVSteb + - id: "56EPPVSteb" - name: "efflux of 5,6-epoxy-3-alpha-iso-pravastatin into bile" - metabolites: !!omap - 56eppvs_c: -1 @@ -301112,30 +301112,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000073734 or ENSG00000118777 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16714062, PMID: 17177112 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000073734 or ENSG00000118777" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16714062, PMID: 17177112" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 56EPPVStev + - id: "56EPPVStev" - name: "exit of 5,6-epoxy-3-alpha-iso-pravastatin into hepatic vein" - metabolites: !!omap - 56eppvs_c: -1 - 56eppvs_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 1680649, PMID: 11192473, PMID: 9804052, PMID: 16714062, PMID: 18563955 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 1680649, PMID: 11192473, PMID: 9804052, PMID: 16714062, PMID: 18563955" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 5OHFVSGLUhc + - id: "5OHFVSGLUhc" - name: "glucuronidation of 5-hydroxy-fluvastatin" - metabolites: !!omap - 5ohfvs_r: -1 @@ -301145,30 +301145,30 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8104114 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8104114" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 5OHFVSGLUtev + - id: "5OHFVSGLUtev" - name: "exit of 5-hydroxy-fluvastatin-glucuronide into hepatic vein for excretion in urine" - metabolites: !!omap - 5ohfvsglu_c: -1 - 5ohfvsglu_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8104114, PMID: 11368292 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8104114, PMID: 11368292" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 5OHFVShc + - id: "5OHFVShc" - name: "oxidation of fluvastatin to 5-hydroxy-fluvastatin in hepatocytes" - metabolites: !!omap - 5ohfvs_r: 1 @@ -301180,15 +301180,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100197 or ENSG00000138109 or ENSG00000138115 or ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.13.-;1.14.14.1 - - references: PMID: 10064574, PMID: 11368292, PMID: 8104114, PMID: 9804052 + - gene_reaction_rule: "ENSG00000100197 or ENSG00000138109 or ENSG00000138115 or ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-;1.14.14.1" + - references: "PMID: 10064574, PMID: 11368292, PMID: 8104114, PMID: 9804052" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 5OHFVSteb + - id: "5OHFVSteb" - name: "efflux of 5-hydroxy-fluvastatin into bile for excretion into faeces" - metabolites: !!omap - 5ohfvs_c: -1 @@ -301200,15 +301200,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16046661, PMID: 16026004, Brunton, L., Lazo, J., Parker, K. (2006). Goodman & Gilmans: The pharmacological basis of therapeutics, The McGraw-Hill companies, PMID: 11368292. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16046661, PMID: 16026004, Brunton, L., Lazo, J., Parker, K. (2006). Goodman & Gilmans: The pharmacological basis of therapeutics, The McGraw-Hill companies, PMID: 11368292." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 6AHGLZABCt + - id: "6AHGLZABCt" - name: "excretion of 6-alpha-OH-gliclazide into bile" - metabolites: !!omap - 6ahglz_c: -1 @@ -301220,15 +301220,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Sarkar, A., Tiwari, A., Bhasin, P. S., Mitra, M. (2011). Pharmacological ; Pharmaceutical Profile of Gliclazide: A Review. Journal of Applied Pharmaceutical Science 1(9): 11-19, Zayed, M., F. Nour El-Dien, et al. (2010). Mass spectra of gliclazide drug at various ion sources temperature: Its thermal behavior ; molecular orbital calculations. Journal of Thermal Analysis ; Calorimetry 102(1): 305-312, PMID: 1794262 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Sarkar, A., Tiwari, A., Bhasin, P. S., Mitra, M. (2011). Pharmacological ; Pharmaceutical Profile of Gliclazide: A Review. Journal of Applied Pharmaceutical Science 1(9): 11-19, Zayed, M., F. Nour El-Dien, et al. (2010). Mass spectra of gliclazide drug at various ion sources temperature: Its thermal behavior ; molecular orbital calculations. Journal of Thermal Analysis ; Calorimetry 102(1): 305-312, PMID: 1794262" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 6AHGLZhr + - id: "6AHGLZhr" - name: "oxidation of gliclazide to 6-alpha-OH-gliclazide in hepatocytes" - metabolites: !!omap - 6ahglz_r: 1 @@ -301240,30 +301240,30 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 18204476, PMID: 1794262, PMID: 17517049, PMID: 8825191, PMID: 3984386 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 18204476, PMID: 1794262, PMID: 17517049, PMID: 8825191, PMID: 3984386" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 6AHGLZtev + - id: "6AHGLZtev" - name: "excretion of 6-alpha-OH-gliclazide into hepatic vein" - metabolites: !!omap - 6ahglz_c: -1 - 6ahglz_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8825191. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8825191." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 6BHGLZABCt + - id: "6BHGLZABCt" - name: "excretion of 6-beta-OH-gliclazide into bile" - metabolites: !!omap - 6bhglz_c: -1 @@ -301275,15 +301275,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Sarkar, A., Tiwari, A., Bhasin, P. S., Mitra, M. (2011). Pharmacological ; Pharmaceutical Profile of Gliclazide: A Review. Journal of Applied Pharmaceutical Science 1(9): 11-19, Zayed, M., F. Nour El-Dien, et al. (2010). Mass spectra of gliclazide drug at various ion sources temperature: Its thermal behavior ; molecular orbital calculations. Journal of Thermal Analysis ; Calorimetry 102(1): 305-312, PMID: 1794262 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Sarkar, A., Tiwari, A., Bhasin, P. S., Mitra, M. (2011). Pharmacological ; Pharmaceutical Profile of Gliclazide: A Review. Journal of Applied Pharmaceutical Science 1(9): 11-19, Zayed, M., F. Nour El-Dien, et al. (2010). Mass spectra of gliclazide drug at various ion sources temperature: Its thermal behavior ; molecular orbital calculations. Journal of Thermal Analysis ; Calorimetry 102(1): 305-312, PMID: 1794262" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 6BHGLZGLCABCt + - id: "6BHGLZGLCABCt" - name: "excretion of 6-beta-OH-gliclazide-glucuronide into bile" - metabolites: !!omap - 6bhglzglc_c: -1 @@ -301295,15 +301295,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Sarkar, A., Tiwari, A., Bhasin, P. S., Mitra, M. (2011). Pharmacological ; Pharmaceutical Profile of Gliclazide: A Review. Journal of Applied Pharmaceutical Science 1(9): 11-19, Zayed, M., F. Nour El-Dien, et al. (2010). Mass spectra of gliclazide drug at various ion sources temperature: Its thermal behavior ; molecular orbital calculations. Journal of Thermal Analysis ; Calorimetry 102(1): 305-312, PMID: 1794262 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Sarkar, A., Tiwari, A., Bhasin, P. S., Mitra, M. (2011). Pharmacological ; Pharmaceutical Profile of Gliclazide: A Review. Journal of Applied Pharmaceutical Science 1(9): 11-19, Zayed, M., F. Nour El-Dien, et al. (2010). Mass spectra of gliclazide drug at various ion sources temperature: Its thermal behavior ; molecular orbital calculations. Journal of Thermal Analysis ; Calorimetry 102(1): 305-312, PMID: 1794262" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 6BHGLZGLChr + - id: "6BHGLZGLChr" - name: "glucuronidation of 6-beta-OH-gliclazide-glucuronide in hepatocytes" - metabolites: !!omap - 6bhglz_r: -1 @@ -301313,30 +301313,30 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 3984386 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 3984386" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 6BHGLZGLCtev + - id: "6BHGLZGLCtev" - name: "excretion of 6-beta-OH-gliclazide-glucuronide into hepatic vein" - metabolites: !!omap - 6bhglzglc_c: -1 - 6bhglzglc_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8825191. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8825191." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 6BHGLZhr + - id: "6BHGLZhr" - name: "oxidation of gliclazide to 6-beta-OH-gliclazide in hepatocytes" - metabolites: !!omap - 6bhglz_r: 1 @@ -301348,30 +301348,30 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100197 or ENSG00000138109 or ENSG00000138115 or ENSG00000165841 - - rxnFrom: Recon3D - - eccodes: 1.14.13.-;1.14.14.1 - - references: PMID: 18204476, PMID: 1794262, PMID: 17517049, PMID: 8825191, PMID: 3984386 + - gene_reaction_rule: "ENSG00000100197 or ENSG00000138109 or ENSG00000138115 or ENSG00000165841" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-;1.14.14.1" + - references: "PMID: 18204476, PMID: 1794262, PMID: 17517049, PMID: 8825191, PMID: 3984386" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 6BHGLZtev + - id: "6BHGLZtev" - name: "excretion of 6-beta-OH-gliclazide into hepatic vein" - metabolites: !!omap - 6bhglz_c: -1 - 6bhglz_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8825191. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8825191." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 6CSMVACIDhep + - id: "6CSMVACIDhep" - name: "conversion of 6-beta-carboxy simvastatin lactone to acid form" - metabolites: !!omap - 6csmv_c: -1 @@ -301380,15 +301380,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105852 - - rxnFrom: Recon3D - - eccodes: 3.1.1.2 - - references: PMID: 1976071, PMID: 9321523. + - gene_reaction_rule: "ENSG00000105852" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.2" + - references: "PMID: 1976071, PMID: 9321523." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 6CSMVACIDteb + - id: "6CSMVACIDteb" - name: "efflux of 6-beta-carboxy-simvastatin-acid form into bile" - metabolites: !!omap - 6csmvacid_c: -1 @@ -301400,15 +301400,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Brunton, L., Lazo, J., Parker, K. (2006). Goodman & Gilmans: The pharmacological basis of therapeutics, The McGraw-Hill companies, PMID: 19482594, PMID: 16321621, PMID: 15497697. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Brunton, L., Lazo, J., Parker, K. (2006). Goodman & Gilmans: The pharmacological basis of therapeutics, The McGraw-Hill companies, PMID: 19482594, PMID: 16321621, PMID: 15497697." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 6CSMVhep + - id: "6CSMVhep" - name: "oxidation of 6-exomethylene simvastatin to 6-beta-hydroxy carboxy simvastatin lactone form" - metabolites: !!omap - 6csmv_r: 1 @@ -301419,15 +301419,15 @@ - m02630r: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100197 or ENSG00000106258 or ENSG00000138115 or ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.13.-;1.14.14.1 - - references: PMID: 9321523, PMID: 9804052, PMID: 1976071, PMID: 1971563, PMID: 15998357, PMID: 9217719, PMID: 16388406. + - gene_reaction_rule: "ENSG00000100197 or ENSG00000106258 or ENSG00000138115 or ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-;1.14.14.1" + - references: "PMID: 9321523, PMID: 9804052, PMID: 1976071, PMID: 1971563, PMID: 15998357, PMID: 9217719, PMID: 16388406." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 6EPSteb + - id: "6EPSteb" - name: "efflux of 6-epipravastatin into bile" - metabolites: !!omap - 6epvs_c: -1 @@ -301439,45 +301439,45 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000073734 or ENSG00000118777 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16714062, PMID: 17177112 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000073734 or ENSG00000118777" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16714062, PMID: 17177112" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 6EPVStep + - id: "6EPVStep" - name: "6-epi-pravastatin exit into portal blood" - metabolites: !!omap - 6epvs_c: -1 - 6epvs_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11192473 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11192473" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 6EPVShc + - id: "6EPVShc" - name: "isomerization of pravastatin to 6-epi-pravastatin in hepatocytes" - metabolites: !!omap - 6epvs_c: 1 - pvs_c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9929499, PMID: 1680649, PMID: 11192473, PMID: 9804052 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9929499, PMID: 1680649, PMID: 11192473, PMID: 9804052" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 6EPVSthc + - id: "6EPVSthc" - name: "uptake of 6-epi-pravastatin by hepatocytes" - metabolites: !!omap - 6epvs_c: 1 @@ -301486,15 +301486,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 or ENSG00000137491 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 17177112 + - gene_reaction_rule: "ENSG00000134538 or ENSG00000137491" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 17177112" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 6HLVSTAChep + - id: "6HLVSTAChep" - name: "conversion of lactone form of 6-beta-hydroxy-lovastatin to acid form" - metabolites: !!omap - 6hlvst_c: -1 @@ -301503,30 +301503,30 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105852 - - rxnFrom: Recon3D - - eccodes: 3.1.1.2 - - references: PMID: 7905377 + - gene_reaction_rule: "ENSG00000105852" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.2" + - references: "PMID: 7905377" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 6HLVSTthep + - id: "6HLVSTthep" - name: "uptake of 6-beta-hydroxy-lovastatin by hepatocytes" - metabolites: !!omap - 6hlvst_c: 1 - 6hlvst_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16714062, PMID: 19785645. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16714062, PMID: 19785645." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 6HMSMVACIDhep + - id: "6HMSMVACIDhep" - name: "conversion of 6-beta-hydroxy-methyl simvastatin lactone to acid form" - metabolites: !!omap - 6hmsmv_c: -1 @@ -301535,15 +301535,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105852 - - rxnFrom: Recon3D - - eccodes: 3.1.1.2 - - references: PMID: 1976071, PMID: 9321523. + - gene_reaction_rule: "ENSG00000105852" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.2" + - references: "PMID: 1976071, PMID: 9321523." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 6HMSMVACIDteb + - id: "6HMSMVACIDteb" - name: "efflux of 6-beta-hydroxy-methyl-simvastatin-acid into bile" - metabolites: !!omap - 6hmsmvacid_c: -1 @@ -301555,15 +301555,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Brunton, L., Lazo, J., Parker, K. (2006). Goodman & Gilmans: The pharmacological basis of therapeutics, The McGraw-Hill companies, PMID: 19482594, PMID: 16321621, PMID: 15497697. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Brunton, L., Lazo, J., Parker, K. (2006). Goodman & Gilmans: The pharmacological basis of therapeutics, The McGraw-Hill companies, PMID: 19482594, PMID: 16321621, PMID: 15497697." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 6HMSMVhep + - id: "6HMSMVhep" - name: "oxidation of 6-exomethylene simvastatin to 6-beta-hydroxy methyl simvastatin" - metabolites: !!omap - 6hmsmv_r: 1 @@ -301576,15 +301576,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100197 or ENSG00000106258 or ENSG00000138115 or ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.13.-;1.14.14.1 - - references: PMID: 9321523, PMID: 9804052, PMID: 1976071, PMID: 1971563, PMID: 15998357, PMID: 9217719, PMID: 16388406. + - gene_reaction_rule: "ENSG00000100197 or ENSG00000106258 or ENSG00000138115 or ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-;1.14.14.1" + - references: "PMID: 9321523, PMID: 9804052, PMID: 1976071, PMID: 1971563, PMID: 15998357, PMID: 9217719, PMID: 16388406." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 6HSMVACIDhep + - id: "6HSMVACIDhep" - name: "conversion of 6-beta-hydroxy simvastatin lactone to acid form" - metabolites: !!omap - 6hsmv_c: -1 @@ -301593,15 +301593,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105852 - - rxnFrom: Recon3D - - eccodes: 3.1.1.2 - - references: PMID: 1976071, PMID: 9321523. + - gene_reaction_rule: "ENSG00000105852" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.2" + - references: "PMID: 1976071, PMID: 9321523." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 6HSMVACIDteb + - id: "6HSMVACIDteb" - name: "efflux of 6-beta-hydroxy simvastatin acid into bile" - metabolites: !!omap - 6hsmvacid_c: -1 @@ -301613,15 +301613,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Brunton, L., Lazo, J., Parker, K. (2006). Goodman & Gilmans: The pharmacological basis of therapeutics, The McGraw-Hill companies, PMID: 19482594, PMID: 16321621, PMID: 15497697. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Brunton, L., Lazo, J., Parker, K. (2006). Goodman & Gilmans: The pharmacological basis of therapeutics, The McGraw-Hill companies, PMID: 19482594, PMID: 16321621, PMID: 15497697." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 6HSMVhep + - id: "6HSMVhep" - name: "oxidation of simvastatin to 6-beta-hydroxy simvastatin" - metabolites: !!omap - 6hsmv_r: 1 @@ -301633,15 +301633,15 @@ - smv_r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100197 or ENSG00000106258 or ENSG00000138115 or ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.13.-;1.14.14.1 - - references: PMID: 9321523, PMID: 9804052, PMID: 1976071, PMID: 1971563, PMID: 15998357, PMID: 9217719, PMID: 16388406. + - gene_reaction_rule: "ENSG00000100197 or ENSG00000106258 or ENSG00000138115 or ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-;1.14.14.1" + - references: "PMID: 9321523, PMID: 9804052, PMID: 1976071, PMID: 1971563, PMID: 15998357, PMID: 9217719, PMID: 16388406." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 6MELACAChep + - id: "6MELACAChep" - name: "conversion of lactone form of 6-exomethylene-lovastatin to acid form" - metabolites: !!omap - 6melvacid_c: 1 @@ -301650,15 +301650,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105852 - - rxnFrom: Recon3D - - eccodes: 3.1.1.2 - - references: PMID: 9929499, PMID: 15772423, PMID: 1929403 + - gene_reaction_rule: "ENSG00000105852" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.2" + - references: "PMID: 9929499, PMID: 15772423, PMID: 1929403" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 6MELVACtbc + - id: "6MELVACtbc" - name: "release of 6-exomethylene-lovastatin-acid form into bile" - metabolites: !!omap - 6melvacid_c: -1 @@ -301670,30 +301670,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000085563" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 6MELVSTthep + - id: "6MELVSTthep" - name: "uptake of 6-exomethylene-lovastatin by hepatocytes" - metabolites: !!omap - 6melvst_c: 1 - 6melvst_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16714062, PMID: 19785645. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16714062, PMID: 19785645." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 6MSMVhep + - id: "6MSMVhep" - name: "oxidation of simvastatin to 6-exomethylene lactone form" - metabolites: !!omap - 6msmv_r: 1 @@ -301705,15 +301705,15 @@ - smv_r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100197 or ENSG00000106258 or ENSG00000138115 or ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.13.-;1.14.14.1 - - references: PMID: 9321523, PMID: 9804052, PMID: 1976071, PMID: 1971563, PMID: 15998357, PMID: 9217719, PMID: 16388406. + - gene_reaction_rule: "ENSG00000100197 or ENSG00000106258 or ENSG00000138115 or ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-;1.14.14.1" + - references: "PMID: 9321523, PMID: 9804052, PMID: 1976071, PMID: 1971563, PMID: 15998357, PMID: 9217719, PMID: 16388406." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 6OHFVSGLUhc + - id: "6OHFVSGLUhc" - name: "glucuronidation of 6-hydroxy-fluvastatin" - metabolites: !!omap - 5ohfvs_r: -1 @@ -301723,30 +301723,30 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8104114 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8104114" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 6OHFVSGLUtev + - id: "6OHFVSGLUtev" - name: "exit of 6-hydroxy-fluvastatin-glucuronide into hepatic vein for excretion in urine" - metabolites: !!omap - 6ohfvsglu_c: -1 - 6ohfvsglu_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8104114, PMID: 11368292 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8104114, PMID: 11368292" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 6OHFVShc + - id: "6OHFVShc" - name: "oxidation of fluvastatin to 6-hydroxy-fluvastatin in hepatocytes" - metabolites: !!omap - 6ohfvs_r: 1 @@ -301758,15 +301758,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138109 - - rxnFrom: Recon3D - - eccodes: 1.14.13.- - - references: PMID: 10064574, PMID: 11368292, PMID: 8104114, PMID: 9804052 + - gene_reaction_rule: "ENSG00000138109" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-" + - references: "PMID: 10064574, PMID: 11368292, PMID: 8104114, PMID: 9804052" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 6OHFVSteb + - id: "6OHFVSteb" - name: "efflux of 6-hydroxy-fluvastatin into bile for excretion into faeces" - metabolites: !!omap - 6ohfvs_c: -1 @@ -301778,15 +301778,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16046661, PMID: 16026004, Brunton, L., Lazo, J., Parker, K. (2006). Goodman & Gilmans: The pharmacological basis of therapeutics, The McGraw-Hill companies, PMID: 11368292. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16046661, PMID: 16026004, Brunton, L., Lazo, J., Parker, K. (2006). Goodman & Gilmans: The pharmacological basis of therapeutics, The McGraw-Hill companies, PMID: 11368292." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 7AHGLZABCt + - id: "7AHGLZABCt" - name: "excretion of 7-alpha-OH-gliclazide into bile" - metabolites: !!omap - 7ahglz_c: -1 @@ -301798,15 +301798,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Sarkar, A., Tiwari, A., Bhasin, P. S., Mitra, M. (2011). Pharmacological ; Pharmaceutical Profile of Gliclazide: A Review. Journal of Applied Pharmaceutical Science 1(9): 11-19, Zayed, M., F. Nour El-Dien, et al. (2010). Mass spectra of gliclazide drug at various ion sources temperature: Its thermal behavior ; molecular orbital calculations. Journal of Thermal Analysis ; Calorimetry 102(1): 305-312, PMID: 1794262 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Sarkar, A., Tiwari, A., Bhasin, P. S., Mitra, M. (2011). Pharmacological ; Pharmaceutical Profile of Gliclazide: A Review. Journal of Applied Pharmaceutical Science 1(9): 11-19, Zayed, M., F. Nour El-Dien, et al. (2010). Mass spectra of gliclazide drug at various ion sources temperature: Its thermal behavior ; molecular orbital calculations. Journal of Thermal Analysis ; Calorimetry 102(1): 305-312, PMID: 1794262" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 7AHGLZhr + - id: "7AHGLZhr" - name: "oxidation of gliclazide to 7-alpha-OH-gliclazide in hepatocytes" - metabolites: !!omap - 7ahglz_r: 1 @@ -301818,30 +301818,30 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 18204476, PMID: 1794262, PMID: 17517049, PMID: 8825191, PMID: 3984386 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 18204476, PMID: 1794262, PMID: 17517049, PMID: 8825191, PMID: 3984386" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 7AHGLZtev + - id: "7AHGLZtev" - name: "excretion of 7-alpha-OH-gliclazide into hepatic vein" - metabolites: !!omap - 7ahglz_c: -1 - 7ahglz_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8825191. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8825191." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 7BHGLZABCt + - id: "7BHGLZABCt" - name: "excretion of 7-beta-OH-gliclazide into bile" - metabolites: !!omap - 7bhglz_c: -1 @@ -301853,15 +301853,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Sarkar, A., Tiwari, A., Bhasin, P. S., Mitra, M. (2011). Pharmacological ; Pharmaceutical Profile of Gliclazide: A Review. Journal of Applied Pharmaceutical Science 1(9): 11-19, Zayed, M., F. Nour El-Dien, et al. (2010). Mass spectra of gliclazide drug at various ion sources temperature: Its thermal behavior ; molecular orbital calculations. Journal of Thermal Analysis ; Calorimetry 102(1): 305-312, PMID: 1794262 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Sarkar, A., Tiwari, A., Bhasin, P. S., Mitra, M. (2011). Pharmacological ; Pharmaceutical Profile of Gliclazide: A Review. Journal of Applied Pharmaceutical Science 1(9): 11-19, Zayed, M., F. Nour El-Dien, et al. (2010). Mass spectra of gliclazide drug at various ion sources temperature: Its thermal behavior ; molecular orbital calculations. Journal of Thermal Analysis ; Calorimetry 102(1): 305-312, PMID: 1794262" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 7BHGLZGLCABCt + - id: "7BHGLZGLCABCt" - name: "excretion of 7-beta-OH-gliclazide-glucuronide into bile" - metabolites: !!omap - 7bhglzglc_c: -1 @@ -301873,15 +301873,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Sarkar, A., Tiwari, A., Bhasin, P. S., Mitra, M. (2011). Pharmacological ; Pharmaceutical Profile of Gliclazide: A Review. Journal of Applied Pharmaceutical Science 1(9): 11-19, Zayed, M., F. Nour El-Dien, et al. (2010). Mass spectra of gliclazide drug at various ion sources temperature: Its thermal behavior ; molecular orbital calculations. Journal of Thermal Analysis ; Calorimetry 102(1): 305-312, PMID: 1794262 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Sarkar, A., Tiwari, A., Bhasin, P. S., Mitra, M. (2011). Pharmacological ; Pharmaceutical Profile of Gliclazide: A Review. Journal of Applied Pharmaceutical Science 1(9): 11-19, Zayed, M., F. Nour El-Dien, et al. (2010). Mass spectra of gliclazide drug at various ion sources temperature: Its thermal behavior ; molecular orbital calculations. Journal of Thermal Analysis ; Calorimetry 102(1): 305-312, PMID: 1794262" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 7BHGLZGLChr + - id: "7BHGLZGLChr" - name: "glucuronidation of 7-beta-OH-gliclazide-glucuronide in hepatocytes" - metabolites: !!omap - 7bhglz_r: -1 @@ -301891,30 +301891,30 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 3984386 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 3984386" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 7BHGLZGLCtev + - id: "7BHGLZGLCtev" - name: "excretion of 7-beta-OH-gliclazide-glucuronide into hepatic vein" - metabolites: !!omap - 7bhglzglc_c: -1 - 7bhglzglc_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8825191. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8825191." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 7BHGLZhr + - id: "7BHGLZhr" - name: "oxidation of gliclazide to 7-beta-OH-gliclazide in hepatocytes" - metabolites: !!omap - 7bhglz_r: 1 @@ -301926,30 +301926,30 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138109 or ENSG00000138115 or ENSG00000165841 - - rxnFrom: Recon3D - - eccodes: 1.14.13.-;1.14.14.1 - - references: PMID: 18204476, PMID: 1794262, PMID: 17517049, PMID: 8825191, PMID: 3984386 + - gene_reaction_rule: "ENSG00000138109 or ENSG00000138115 or ENSG00000165841" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-;1.14.14.1" + - references: "PMID: 18204476, PMID: 1794262, PMID: 17517049, PMID: 8825191, PMID: 3984386" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 7BHGLZtev + - id: "7BHGLZtev" - name: "excretion of 7-beta-OH-gliclazide into hepatic vein" - metabolites: !!omap - 7bhglz_c: -1 - 7bhglz_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8825191. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8825191." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 7HPVShc + - id: "7HPVShc" - name: "oxidation of 3-alpha-iso-pravastatin to 7-hydroxy-3-alpha-iso-pravastatin in hepatocytes" - metabolites: !!omap - 3ispvs_r: -1 @@ -301961,15 +301961,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.13.- - - references: PMID: 9929499, PMID: 1680649, PMID: 9804052, PMID: 11192474 + - gene_reaction_rule: "ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-" + - references: "PMID: 9929499, PMID: 1680649, PMID: 9804052, PMID: 11192474" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 7HPVSteb + - id: "7HPVSteb" - name: "efflux of 7-hydroxy-3-alpha-iso-pravastatin into bile" - metabolites: !!omap - 7hpvs_c: -1 @@ -301981,30 +301981,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000073734 or ENSG00000118777 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16714062, PMID: 17177112 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000073734 or ENSG00000118777" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16714062, PMID: 17177112" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 7HPVStev + - id: "7HPVStev" - name: "exit of 7-hydroxy-3-alpha-iso-pravastatin into hepatic vein" - metabolites: !!omap - 7hpvs_c: -1 - 7hpvs_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 1680649, PMID: 11192473, PMID: 9804052, PMID: 16714062, PMID: 18563955 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 1680649, PMID: 11192473, PMID: 9804052, PMID: 16714062, PMID: 18563955" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: ALLOP2tu + - id: "ALLOP2tu" - name: "uptake of allopurinol by the enterocytes" - metabolites: !!omap - allop_c: 1 @@ -302013,15 +302013,15 @@ - m02039s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197506 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 17655371 + - gene_reaction_rule: "ENSG00000197506" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 17655371" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: ACMPtu + - id: "ACMPtu" - name: "efflux of acetaminophen by P-gp from the enterocytes into lumen" - metabolites: !!omap - acmp_c: -1 @@ -302033,15 +302033,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: PMID: 16930294, PMID: 20955690 + - gene_reaction_rule: "ENSG00000085563" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "PMID: 16930294, PMID: 20955690" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: ACMPGLUChr + - id: "ACMPGLUChr" - name: "glucuronidation of acetaminophen in hepatocytes" - metabolites: !!omap - acmp_r: -1 @@ -302051,30 +302051,30 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167165 or ENSG00000241119 or ENSG00000241635 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: Graham, G. ; M. Hicks (2004). Pharmacokinetics ; Metabolism of Paracetamol (Acetaminophen). Aspirin ; Related Drugs, CRC Press., PMID: 11714888, PMID: 11215692 + - gene_reaction_rule: "ENSG00000167165 or ENSG00000241119 or ENSG00000241635" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "Graham, G. ; M. Hicks (2004). Pharmacokinetics ; Metabolism of Paracetamol (Acetaminophen). Aspirin ; Related Drugs, CRC Press., PMID: 11714888, PMID: 11215692" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: ACMPGLUTdt + - id: "ACMPGLUTdt" - name: "uptake of acetaminophen-glutathione-conjugate into the enterocytes" - metabolites: !!omap - acmpglut_c: 1 - acmpglut_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 533560 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 533560" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: ACMPGLUTtep + - id: "ACMPGLUTtep" - name: "efflux of acetaminophen-glutathione-conjugate from enterocytes into portal blood" - metabolites: !!omap - acmpglut_c: -1 @@ -302086,15 +302086,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108846 - - rxnFrom: Recon3D - - eccodes: - - references: Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal. Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49. + - gene_reaction_rule: "ENSG00000108846" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal. Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: ACMPGLUTthc + - id: "ACMPGLUTthc" - name: "uptake of acetaminophen-glutathione-conjugate by the hepatocytes" - metabolites: !!omap - acmpglut_c: 1 @@ -302106,15 +302106,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108846 - - rxnFrom: Recon3D - - eccodes: - - references: Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal. Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49. + - gene_reaction_rule: "ENSG00000108846" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal. Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: ACMPGLUtep + - id: "ACMPGLUtep" - name: "efflux of acetaminophen-glucuronide-conjugate from enterocytes into portal blood" - metabolites: !!omap - acmpglu_c: -1 @@ -302126,15 +302126,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108846 - - rxnFrom: Recon3D - - eccodes: - - references: Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal. Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49. + - gene_reaction_rule: "ENSG00000108846" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal. Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: ACMPGLUthc + - id: "ACMPGLUthc" - name: "uptake of acetaminophen-glucuronide-conjugate by the hepatocytes" - metabolites: !!omap - acmpglu_c: 1 @@ -302146,15 +302146,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108846 - - rxnFrom: Recon3D - - eccodes: - - references: Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal. Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49. + - gene_reaction_rule: "ENSG00000108846" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal. Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: ACMPShc + - id: "ACMPShc" - name: "sulphation of acetaminophen in hepatocytes" - metabolites: !!omap - acmp_c: -1 @@ -302164,30 +302164,30 @@ - sulpacmp_c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000196502 - - rxnFrom: Recon3D - - eccodes: 2.8.2.1 - - references: PMID: 2088871, PMID: 11535246, PMID: 9194521, PMID: 11215692, Graham, G. ; M. Hicks (2004). Pharmacokinetics ; Metabolism of Paracetamol (Acetaminophen). Aspirin ; Related Drugs, CRC Press. + - gene_reaction_rule: "ENSG00000196502" + - rxnFrom: "Recon3D" + - eccodes: "2.8.2.1" + - references: "PMID: 2088871, PMID: 11535246, PMID: 9194521, PMID: 11215692, Graham, G. ; M. Hicks (2004). Pharmacokinetics ; Metabolism of Paracetamol (Acetaminophen). Aspirin ; Related Drugs, CRC Press." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: ACMPdt + - id: "ACMPdt" - name: "uptake of acetaminophen by enterocytes" - metabolites: !!omap - acmp_c: 1 - acmp_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8165189, PMID: 34689, Graham, G. ; M. Hicks (2004). Pharmacokinetics ; Metabolism of Paracetamol (Acetaminophen). Aspirin ; Related Drugs, CRC Press. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8165189, PMID: 34689, Graham, G. ; M. Hicks (2004). Pharmacokinetics ; Metabolism of Paracetamol (Acetaminophen). Aspirin ; Related Drugs, CRC Press." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: ACMPthc + - id: "ACMPthc" - name: "uptake of acetaminophen by the hepatocytes" - metabolites: !!omap - acmp_c: 1 @@ -302199,15 +302199,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108846 - - rxnFrom: Recon3D - - eccodes: - - references: Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal. Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49. + - gene_reaction_rule: "ENSG00000108846" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal. Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: ALLOP1tu + - id: "ALLOP1tu" - name: "uptake of allopurinol by the enterocytes" - metabolites: !!omap - allop_c: 1 @@ -302216,15 +302216,15 @@ - m02519s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137860 or ENSG00000156222 or ENSG00000197506 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 14625347, PMID: 17722647. + - gene_reaction_rule: "ENSG00000137860 or ENSG00000156222 or ENSG00000197506" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 14625347, PMID: 17722647." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: ALLOPOXDhep + - id: "ALLOPOXDhep" - name: "oxidation of allopurinol to oxypurinol in hepatocytes" - metabolites: !!omap - allop_c: -1 @@ -302234,30 +302234,30 @@ - oxyp_c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138356 or ENSG00000158125 - - rxnFrom: Recon3D - - eccodes: 1.17.3.2;1.2.3.1 - - references: PMID: 17655371 + - gene_reaction_rule: "ENSG00000138356 or ENSG00000158125" + - rxnFrom: "Recon3D" + - eccodes: "1.17.3.2;1.2.3.1" + - references: "PMID: 17655371" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: ALLOPtepvb + - id: "ALLOPtepvb" - name: "uptake of allopurinol by the hepatocytes" - metabolites: !!omap - allop_c: 1 - allop_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137204 - - rxnFrom: Recon3D - - eccodes: - - references: Pang, K. S., Rodrigues, A. D., Peter, R. M. (2010). Enzyme ; Transporter-Based Drug-Drug Interactions: Progress ; Future Challenges, American Association of Pharmaceutical Scientists 2010, Springer Publications., PMID: 17655371 + - gene_reaction_rule: "ENSG00000137204" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Pang, K. S., Rodrigues, A. D., Peter, R. M. (2010). Enzyme ; Transporter-Based Drug-Drug Interactions: Progress ; Future Challenges, American Association of Pharmaceutical Scientists 2010, Springer Publications., PMID: 17655371" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM19CSALThr + - id: "AM19CSALThr" - name: "alternative pathway for formation of AM19 from AM1 in hepatocytes" - metabolites: !!omap - am19cs_r: 1 @@ -302269,15 +302269,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000106258 or ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.13.-;1.14.14.1 - - references: PMID: 8595701 + - gene_reaction_rule: "ENSG00000106258 or ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-;1.14.14.1" + - references: "PMID: 8595701" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM19CShr + - id: "AM19CShr" - name: "oxidation of AM9 to AM19 (cyclosporine) in hepatocytes" - metabolites: !!omap - am19cs_r: 1 @@ -302289,15 +302289,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8361996, PMID: 2568911, PMID: 10503812 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8361996, PMID: 2568911, PMID: 10503812" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM19CSteb + - id: "AM19CSteb" - name: "efflux of AM19-cyclosporine into bile" - metabolites: !!omap - am19cs_c: -1 @@ -302309,15 +302309,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8361996, PMID: 8595701, PMID: 3276417, PMID: 1788988, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8361996, PMID: 8595701, PMID: 3276417, PMID: 1788988, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM1A4NCShc + - id: "AM1A4NCShc" - name: "demethylation of AM1A to AM1A4N in hepatocytes" - metabolites: !!omap - am1a4ncs_c: 1 @@ -302327,15 +302327,15 @@ - m02877c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8361996, PMID: 2568911, PMID: 10503812 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8361996, PMID: 2568911, PMID: 10503812" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM1A4NCSteb + - id: "AM1A4NCSteb" - name: "efflux of AM1A4N-cyclosporine into bile" - metabolites: !!omap - am1a4ncs_c: -1 @@ -302347,15 +302347,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 1788988, PMID: 8361996, PMID: 8595701, PMID: 3276417, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 1788988, PMID: 8361996, PMID: 8595701, PMID: 3276417, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM1ACCShr + - id: "AM1ACCShr" - name: "oxidation of AM1c to AM1Ac in hepatocytes (alternative mechanism)" - metabolites: !!omap - am1accs_r: 1 @@ -302365,30 +302365,30 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8595701, PMID: 8361996 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8595701, PMID: 8361996" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM1ACCStev + - id: "AM1ACCStev" - name: "efflux of AM1Ac-cyclosporine into hepatic vein" - metabolites: !!omap - am1accs_c: -1 - am1accs_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 1788988, PMID: 8361996, PMID: 8595701, PMID: 3276417, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 1788988, PMID: 8361996, PMID: 8595701, PMID: 3276417, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM1ACShr + - id: "AM1ACShr" - name: "formation of AM1A-cyclosporine in hepatocytes" - metabolites: !!omap - am1acs_r: 1 @@ -302399,15 +302399,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8361996, PMID: 2568911, PMID: 10503812 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8361996, PMID: 2568911, PMID: 10503812" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM1ACSteb + - id: "AM1ACSteb" - name: "efflux of AM1A-cyclosporine into bile" - metabolites: !!omap - am1acs_c: -1 @@ -302419,30 +302419,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8361996, PMID: 8595701, PMID: 3276417, PMID: 1788988, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8361996, PMID: 8595701, PMID: 3276417, PMID: 1788988, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM1ACStep + - id: "AM1ACStep" - name: "efflux of AM1A (cyclosporine) into portal blood" - metabolites: !!omap - am1acs_c: -1 - am1acs_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8849485, PMID: 1389941, PMID: 8361996, PMID: 8595701 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8849485, PMID: 1389941, PMID: 8361996, PMID: 8595701" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM1ALCShr + - id: "AM1ALCShr" - name: "formation of AM1AL-cyclosporine in hepatocytes" - metabolites: !!omap - am1alcs_c: 1 @@ -302452,15 +302452,15 @@ - m02555c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8361996, PMID: 2568911, PMID: 10503812 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8361996, PMID: 2568911, PMID: 10503812" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM1ALCSteb + - id: "AM1ALCSteb" - name: "efflux of AM1AL-cyclosporine into bile" - metabolites: !!omap - am1alcs_c: -1 @@ -302472,30 +302472,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 1788988, PMID: 8361996, PMID: 8595701, PMID: 3276417, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 1788988, PMID: 8361996, PMID: 8595701, PMID: 3276417, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM1ALCStep + - id: "AM1ALCStep" - name: "efflux of AM1AL (cyclosporine) into portal blood" - metabolites: !!omap - am1alcs_c: -1 - am1alcs_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8849485, PMID: 1389941, PMID: 8361996, PMID: 8595701 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8849485, PMID: 1389941, PMID: 8361996, PMID: 8595701" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM1C4N9CShc + - id: "AM1C4N9CShc" - name: "demethylation of AM1c9 to AM1c4N9 in hepatocytes (alternative mechanism)" - metabolites: !!omap - am1c4n9cs_c: 1 @@ -302505,15 +302505,15 @@ - m02877c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8595701, PMID: 8361996 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8595701, PMID: 8361996" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM1C4N9CSteb + - id: "AM1C4N9CSteb" - name: "efflux of AM1c4N9-cyclosporine into bile" - metabolites: !!omap - am1c4n9cs_c: -1 @@ -302525,15 +302525,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 1788988, PMID: 8361996, PMID: 8595701, PMID: 3276417, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 1788988, PMID: 8361996, PMID: 8595701, PMID: 3276417, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM1C9CShr + - id: "AM1C9CShr" - name: "oxidation of AM1c to AM1c9 in hepatocytes (alternative mechanism)" - metabolites: !!omap - am1c9cs_r: 1 @@ -302545,15 +302545,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8595701, PMID: 8361996 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8595701, PMID: 8361996" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM1C9CSteb + - id: "AM1C9CSteb" - name: "efflux of AM1c9-cyclosporine into bile" - metabolites: !!omap - am1c9cs_c: -1 @@ -302565,30 +302565,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8361996, PMID: 8595701, PMID: 3276417, PMID: 1788988, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8361996, PMID: 8595701, PMID: 3276417, PMID: 1788988, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM1C9CStev + - id: "AM1C9CStev" - name: "efflux of AM1c9-cyclosporine into hepatic vein" - metabolites: !!omap - am1c9cs_c: -1 - am1c9cs_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8361996, PMID: 8595701, PMID: 3276417, PMID: 1788988, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8361996, PMID: 8595701, PMID: 3276417, PMID: 1788988, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM1CCShr + - id: "AM1CCShr" - name: "oxidation of cyclosporine to AM1c in hepatocytes" - metabolites: !!omap - am1ccs_r: 1 @@ -302600,15 +302600,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8361996, PMID: 2568911, PMID: 10503812 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8361996, PMID: 2568911, PMID: 10503812" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM1CCSteb + - id: "AM1CCSteb" - name: "efflux of AM1c-cyclosporine into bile" - metabolites: !!omap - am1ccs_c: -1 @@ -302620,30 +302620,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8361996, PMID: 8595701, PMID: 3276417, PMID: 1788988, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8361996, PMID: 8595701, PMID: 3276417, PMID: 1788988, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM1CCStev + - id: "AM1CCStev" - name: "efflux of AM1c-cyclosporine into hepatic vein" - metabolites: !!omap - am1ccs_c: -1 - am1ccs_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8361996, PMID: 8595701, PMID: 3276417, PMID: 1788988, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8361996, PMID: 8595701, PMID: 3276417, PMID: 1788988, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM1CGLChr + - id: "AM1CGLChr" - name: "glucuronidation of AM1c in hepatocytes" - metabolites: !!omap - am1ccs_r: -1 @@ -302653,15 +302653,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8361996 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8361996" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM1CGLCteb + - id: "AM1CGLCteb" - name: "efflux of AM1c-glucuronide into bile" - metabolites: !!omap - am1cglc_c: -1 @@ -302673,15 +302673,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8361996, PMID: 8595701, PMID: 3276417, PMID: 1788988, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8361996, PMID: 8595701, PMID: 3276417, PMID: 1788988, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM1CSAhr + - id: "AM1CSAhr" - name: "oxidation of cyclosporine to AM1 in hepatocytes" - metabolites: !!omap - am1csa_r: 1 @@ -302693,30 +302693,30 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000106258 or ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.13.-;1.14.14.1 - - references: PMID: 8361996, PMID: 2568911, PMID: 10503812 + - gene_reaction_rule: "ENSG00000106258 or ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-;1.14.14.1" + - references: "PMID: 8361996, PMID: 2568911, PMID: 10503812" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM1CSAtep + - id: "AM1CSAtep" - name: "efflux of AM1 (cyclosporine) into portal blood" - metabolites: !!omap - am1csa_c: -1 - am1csa_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8849485, PMID: 1389941, PMID: 8361996, PMID: 8595701 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8849485, PMID: 1389941, PMID: 8361996, PMID: 8595701" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM4N9CShc + - id: "AM4N9CShc" - name: "demethylation of AM9 to AM4N9 in hepatocytes" - metabolites: !!omap - am4n9cs_c: 1 @@ -302726,15 +302726,15 @@ - m02877c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8361996, PMID: 2568911, PMID: 10503812 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8361996, PMID: 2568911, PMID: 10503812" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM4N9CShr + - id: "AM4N9CShr" - name: "oxidation of AM4N to AM4N9 in hepatocytes" - metabolites: !!omap - am4n9cs_r: 1 @@ -302746,30 +302746,30 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8361996, PMID: 2568911, PMID: 10503812 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8361996, PMID: 2568911, PMID: 10503812" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM4N9CStev + - id: "AM4N9CStev" - name: "efflux of AM4N9-cyclosporine into hepatic vein" - metabolites: !!omap - am4n9cs_c: -1 - am4n9cs_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8361996, PMID: 8595701, PMID: 3276417, PMID: 1788988, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8361996, PMID: 8595701, PMID: 3276417, PMID: 1788988, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM4NC9CSteb + - id: "AM4NC9CSteb" - name: "efflux of AM4N9-cyclosporine into bile" - metabolites: !!omap - am4n9cs_c: -1 @@ -302781,15 +302781,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8361996, PMID: 8595701, PMID: 3276417, PMID: 1788988, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8361996, PMID: 8595701, PMID: 3276417, PMID: 1788988, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM4NCShr + - id: "AM4NCShr" - name: "demethylation of cyclosporine to AM4N in hepatocytes" - metabolites: !!omap - am4ncs_c: 1 @@ -302799,15 +302799,15 @@ - m02877c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8361996, PMID: 2568911, PMID: 10503812 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8361996, PMID: 2568911, PMID: 10503812" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM4NCSteb + - id: "AM4NCSteb" - name: "efflux of AM4N-cyclosporine into bile" - metabolites: !!omap - am4ncs_c: -1 @@ -302819,30 +302819,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8361996, PMID: 8595701, PMID: 3276417, PMID: 1788988, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8361996, PMID: 8595701, PMID: 3276417, PMID: 1788988, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM4NCStep + - id: "AM4NCStep" - name: "efflux of AM4N (cyclosporine) into portal blood" - metabolites: !!omap - am4ncs_c: -1 - am4ncs_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8849485, PMID: 1389941, PMID: 8361996, PMID: 8595701 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8849485, PMID: 1389941, PMID: 8361996, PMID: 8595701" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM9CSAhr + - id: "AM9CSAhr" - name: "oxidation of cyclosporine to AM9 in hepatocytes" - metabolites: !!omap - am9csa_r: 1 @@ -302854,15 +302854,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000106258 or ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.13.-;1.14.14.1 - - references: PMID: 8361996, PMID: 2568911, PMID: 10503812 + - gene_reaction_rule: "ENSG00000106258 or ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-;1.14.14.1" + - references: "PMID: 8361996, PMID: 2568911, PMID: 10503812" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM9CSAteb + - id: "AM9CSAteb" - name: "efflux of AM9-cyclosporine into bile" - metabolites: !!omap - am9csa_c: -1 @@ -302874,30 +302874,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8361996, PMID: 8595701, PMID: 3276417, PMID: 1788988, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8361996, PMID: 8595701, PMID: 3276417, PMID: 1788988, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM9CSAtep + - id: "AM9CSAtep" - name: "efflux of AM9 (cyclosporine) into portal blood" - metabolites: !!omap - am9csa_c: -1 - am9csa_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8849485, PMID: 1389941, PMID: 8361996, PMID: 8595701 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8849485, PMID: 1389941, PMID: 8361996, PMID: 8595701" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: ATVACIDMCTtu + - id: "ATVACIDMCTtu" - name: "uptake of atorvastatin by enterocytes by MCT1" - metabolites: !!omap - atvacid_c: 1 @@ -302906,15 +302906,15 @@ - m02039s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000155380 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10751037, PMID: 14695265, PMID: 9639576 + - gene_reaction_rule: "ENSG00000155380" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10751037, PMID: 14695265, PMID: 9639576" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: ATVACIDOATPtu + - id: "ATVACIDOATPtu" - name: "uptake of atorvastatin by enterocytes" - metabolites: !!omap - atvacid_c: 1 @@ -302923,15 +302923,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137491 - - rxnFrom: Recon3D - - eccodes: - - references: Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49, PMID: 21710988. + - gene_reaction_rule: "ENSG00000137491" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49, PMID: 21710988." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: ATVACIDhc + - id: "ATVACIDhc" - name: "conversion of lactone to acid form of atorvastatin in hepatocytes" - metabolites: !!omap - atvacid_c: 1 @@ -302940,15 +302940,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105852 - - rxnFrom: Recon3D - - eccodes: 3.1.1.2 - - references: PMID: 11038166, PMID: 14531725, PMID: 11950779 + - gene_reaction_rule: "ENSG00000105852" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.2" + - references: "PMID: 11038166, PMID: 14531725, PMID: 11950779" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: ATVACIDhr + - id: "ATVACIDhr" - name: "spontaneous conversion of atorvastatin ether glucuronide (G1) to atorvastatin-acid" - metabolites: !!omap - atvacid_r: 1 @@ -302957,30 +302957,30 @@ - m02040r: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 17470524 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 17470524" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: ATVACIDtdu + - id: "ATVACIDtdu" - name: "passive diffusion of atorvastatin into enterocytes" - metabolites: !!omap - atvacid_c: 1 - atvacid_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 21710988, PMID: 14531725 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 21710988, PMID: 14531725" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: ATVACIDtu + - id: "ATVACIDtu" - name: "efflux of atorvastatin acid by P-gp from the enterocytes into lumen" - metabolites: !!omap - atvacid_c: -1 @@ -302992,15 +302992,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: PMID: 10751037, PMID: 15616150 + - gene_reaction_rule: "ENSG00000085563" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "PMID: 10751037, PMID: 15616150" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: ATVACYLGLUChc + - id: "ATVACYLGLUChc" - name: "glucuronidation of atorvastatin to atorvastatin acyl glucuronide (G2) in hepatocytes" - metabolites: !!omap - atvacid_r: -1 @@ -303009,15 +303009,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171234 or ENSG00000241635 or ENSG00000242366 or ENSG00000243135 or ENSG00000244474 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID: 17470524 + - gene_reaction_rule: "ENSG00000171234 or ENSG00000241635 or ENSG00000242366 or ENSG00000243135 or ENSG00000244474" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID: 17470524" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: ATVETHGLUChc + - id: "ATVETHGLUChc" - name: "glucuronidation of atorvastatin to atorvastatin ether glucuronide (G1) in hepatocytes" - metabolites: !!omap - atvacid_r: -1 @@ -303027,15 +303027,15 @@ - m03109r: -2 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000241119 or ENSG00000243135 or ENSG00000244474 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID: 17470524 + - gene_reaction_rule: "ENSG00000241119 or ENSG00000243135 or ENSG00000244474" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID: 17470524" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: ATVLACGLCURhc + - id: "ATVLACGLCURhc" - name: "glucuronidation of atorvastatin lactone to atorvastain lactone ether glucuronide (G3) in hepatocytes" - metabolites: !!omap - atvlac_r: -1 @@ -303045,15 +303045,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171234 or ENSG00000241635 or ENSG00000242366 or ENSG00000243135 or ENSG00000244474 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID: 17470524 + - gene_reaction_rule: "ENSG00000171234 or ENSG00000241635 or ENSG00000242366 or ENSG00000243135 or ENSG00000244474" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID: 17470524" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: ATVLACThc + - id: "ATVLACThc" - name: "uptake of atorvastatin-lactone into hepatocytes" - metabolites: !!omap - atvlac_c: 1 @@ -303062,15 +303062,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 or ENSG00000137491 - - rxnFrom: Recon3D - - eccodes: - - references: Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49, PMID: 21942630. + - gene_reaction_rule: "ENSG00000134538 or ENSG00000137491" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49, PMID: 21942630." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: ATVLACh2r + - id: "ATVLACh2r" - name: "spontaneous conversion of glucuronide (G2) to lactone form of atorvastatin" - metabolites: !!omap - atvacylgluc_r: -1 @@ -303078,15 +303078,15 @@ - m01973r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 17470524 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 17470524" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: ATVLAChc + - id: "ATVLAChc" - name: "lactonization of atorvastatin in hepatocytes" - metabolites: !!omap - atvacid_c: -1 @@ -303096,15 +303096,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11038166, PMID: 14531725, PMID: 11950779 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11038166, PMID: 14531725, PMID: 11950779" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: ATVLAChr + - id: "ATVLAChr" - name: "spontaneous conversion of atorvastain lactone ether glucuronide (G3) to atorvastatin-lactone in hepatocytes" - metabolites: !!omap - atvlac_r: 1 @@ -303113,30 +303113,30 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 17470524 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 17470524" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: ATVLACtdhc + - id: "ATVLACtdhc" - name: "passive diffusion of atorvastatin lactone into hepatocytes" - metabolites: !!omap - atvlac_c: 1 - atvlac_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 21710988, PMID: 14531725 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 21710988, PMID: 14531725" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: ATVLACtu + - id: "ATVLACtu" - name: "efflux of atorvastatin lactone by P-gp from the enterocytes into lumen" - metabolites: !!omap - atvlac_c: -1 @@ -303148,30 +303148,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: PMID: 15616150 + - gene_reaction_rule: "ENSG00000085563" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "PMID: 15616150" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: Am19CStev + - id: "Am19CStev" - name: "efflux of AM19-cyclosporine into hepatic vein" - metabolites: !!omap - am19cs_c: -1 - am19cs_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8361996, PMID: 8595701, PMID: 3276417, PMID: 1788988, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8361996, PMID: 8595701, PMID: 3276417, PMID: 1788988, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: Am1CSAteb + - id: "Am1CSAteb" - name: "efflux of AM1-cyclosporine into bile" - metabolites: !!omap - am1csa_c: -1 @@ -303183,45 +303183,45 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8361996, PMID: 8595701, PMID: 3276417, PMID: 1788988, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8361996, PMID: 8595701, PMID: 3276417, PMID: 1788988, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: CARBIBUP_SGLUthv + - id: "CARBIBUP_SGLUthv" - name: "release of S-carboxy ibuprofen glucuronide into hepatic vein" - metabolites: !!omap - caribupglu_S_c: -1 - caribupglu_S_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9515184, Graham, G. ; K. Williams (2004). Metabolism ; Pharmacokinetics of Ibuprofen. Aspirin ; Related Drugs, CRC Press. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9515184, Graham, G. ; K. Williams (2004). Metabolism ; Pharmacokinetics of Ibuprofen. Aspirin ; Related Drugs, CRC Press." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: CARIBUP_Rthv + - id: "CARIBUP_Rthv" - name: "release of R-carboxy ibuprofen into hepatic vein" - metabolites: !!omap - caribup_R_c: -1 - caribup_R_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9515184, Graham, G. ; K. Williams (2004). Metabolism ; Pharmacokinetics of Ibuprofen. Aspirin ; Related Drugs, CRC Press. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9515184, Graham, G. ; K. Williams (2004). Metabolism ; Pharmacokinetics of Ibuprofen. Aspirin ; Related Drugs, CRC Press." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: CARIBUP_SGLUhep + - id: "CARIBUP_SGLUhep" - name: "glucuronidation of S-carboxy ibuprofen" - metabolites: !!omap - caribup_s_r: -1 @@ -303230,30 +303230,30 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171234 or ENSG00000241119 or ENSG00000243135 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID: 9515184. + - gene_reaction_rule: "ENSG00000171234 or ENSG00000241119 or ENSG00000243135" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID: 9515184." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: CARIBUP_Sthv + - id: "CARIBUP_Sthv" - name: "release of S-carboxy ibuprofen into hepatic vein" - metabolites: !!omap - caribup_s_c: -1 - caribup_s_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9515184, Graham, G. ; K. Williams (2004). Metabolism ; Pharmacokinetics of Ibuprofen. Aspirin ; Related Drugs, CRC Press. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9515184, Graham, G. ; K. Williams (2004). Metabolism ; Pharmacokinetics of Ibuprofen. Aspirin ; Related Drugs, CRC Press." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: CRGLZABCt + - id: "CRGLZABCt" - name: "excretion of carboxy-gliclazide into bile" - metabolites: !!omap - crglz_c: -1 @@ -303265,15 +303265,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Sarkar, A., Tiwari, A., Bhasin, P. S., Mitra, M. (2011). Pharmacological ; Pharmaceutical Profile of Gliclazide: A Review. Journal of Applied Pharmaceutical Science 1(9): 11-19, Zayed, M., F. Nour El-Dien, et al. (2010). Mass spectra of gliclazide drug at various ion sources temperature: Its thermal behavior ; molecular orbital calculations. Journal of Thermal Analysis ; Calorimetry 102(1): 305-312, PMID: 1794262 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Sarkar, A., Tiwari, A., Bhasin, P. S., Mitra, M. (2011). Pharmacological ; Pharmaceutical Profile of Gliclazide: A Review. Journal of Applied Pharmaceutical Science 1(9): 11-19, Zayed, M., F. Nour El-Dien, et al. (2010). Mass spectra of gliclazide drug at various ion sources temperature: Its thermal behavior ; molecular orbital calculations. Journal of Thermal Analysis ; Calorimetry 102(1): 305-312, PMID: 1794262" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: CRGLZhr + - id: "CRGLZhr" - name: "oxidation of methyl-hydroxy-gliclazide to carboxy-gliclazide in hepatocytes" - metabolites: !!omap - crglz_r: 1 @@ -303283,30 +303283,30 @@ - mhglz_r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 18204476, PMID: 1794262, PMID: 17517049, PMID: 8825191, PMID: 3984386 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 18204476, PMID: 1794262, PMID: 17517049, PMID: 8825191, PMID: 3984386" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: CRGLZtev + - id: "CRGLZtev" - name: "excretion of carboxy-gliclazide into hepatic vein" - metabolites: !!omap - crglz_c: -1 - crglz_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8825191. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8825191." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: CRVS1M24hc + - id: "CRVS1M24hc" - name: "hydroxylation of cerivastatin-M1 to M24 in hepatocytes" - metabolites: !!omap - crvsm1_r: -1 @@ -303318,30 +303318,30 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138115 or ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.14.1;1.14.13.- - - references: PMID: 10976657, PMID: 12433802, PMID: 9172950, PMID: 10976657, PMID: 20739906, PMID: 9804052, PMID: 11129127 + - gene_reaction_rule: "ENSG00000138115 or ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.14.1;1.14.13.-" + - references: "PMID: 10976657, PMID: 12433802, PMID: 9172950, PMID: 10976657, PMID: 20739906, PMID: 9804052, PMID: 11129127" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: CRVS1tev + - id: "CRVS1tev" - name: "exit of cerivastatin-M1 into hepatic vein" - metabolites: !!omap - crvsm1_c: -1 - crvsm1_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10976657 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10976657" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: CRVS23M24hc + - id: "CRVS23M24hc" - name: "demethylation of cerivastatin-M23 to M24 in hepatocytes" - metabolites: !!omap - crvsm23_r: -1 @@ -303355,15 +303355,15 @@ - m02877r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138115 or ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.14.1;1.14.13.- - - references: PMID: 10976657, PMID: 12433802, PMID: 9172950, PMID: 10976657, PMID: 20739906, PMID: 9804052, PMID: 11129127 + - gene_reaction_rule: "ENSG00000138115 or ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.14.1;1.14.13.-" + - references: "PMID: 10976657, PMID: 12433802, PMID: 9172950, PMID: 10976657, PMID: 20739906, PMID: 9804052, PMID: 11129127" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: CRVSATPthc + - id: "CRVSATPthc" - name: "cerivastatin uptake by hepatocytes by active transport" - metabolites: !!omap - crvs_c: 1 @@ -303375,15 +303375,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10976657 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10976657" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: CRVSATPtu + - id: "CRVSATPtu" - name: "efflux of cerivastatin by P-gp or BCRP from the enterocytes into lumen" - metabolites: !!omap - crvs_c: -1 @@ -303395,15 +303395,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 or ENSG00000118777 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: PMID: 20103563, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal. Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter. New York, Springer New York: 27-49. + - gene_reaction_rule: "ENSG00000085563 or ENSG00000118777" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "PMID: 20103563, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal. Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter. New York, Springer New York: 27-49." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: CRVSM1SPhc + - id: "CRVSM1SPhc" - name: "de-lactonization of cerivastatin-M22 to cerivastatin-M1 in hepatocytes" - metabolites: !!omap - crvsm1_c: 1 @@ -303414,15 +303414,15 @@ - m02877c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9172950, PMID: 11950779, PMID: 15801541 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9172950, PMID: 11950779, PMID: 15801541" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: CRVSM1hc + - id: "CRVSM1hc" - name: "demethylation of cerivastatin to M1 in hepatocytes" - metabolites: !!omap - crvs_r: -1 @@ -303436,15 +303436,15 @@ - m02877r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138115 or ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.14.1;1.14.13.- - - references: PMID: 12433802, PMID: 9172950, PMID: 10976657, PMID: 20739906, PMID: 9804052, PMID: 11129127 + - gene_reaction_rule: "ENSG00000138115 or ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.14.1;1.14.13.-" + - references: "PMID: 12433802, PMID: 9172950, PMID: 10976657, PMID: 20739906, PMID: 9804052, PMID: 11129127" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: CRVSM1hr + - id: "CRVSM1hr" - name: "beta-glucuronidase of cerivastatin-M1-glucuronide to M1 form" - metabolites: !!omap - crvsm1_r: 1 @@ -303453,15 +303453,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169919 - - rxnFrom: Recon3D - - eccodes: 3.2.1.31 - - references: PMID: 9172950, PMID: 11950779, PMID: 15801541 + - gene_reaction_rule: "ENSG00000169919" + - rxnFrom: "Recon3D" + - eccodes: "3.2.1.31" + - references: "PMID: 9172950, PMID: 11950779, PMID: 15801541" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: CRVSM1teb + - id: "CRVSM1teb" - name: "efflux of cerivastatin-M1 into bile" - metabolites: !!omap - crvsm1_c: -1 @@ -303473,15 +303473,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000118777 - - rxnFrom: Recon3D - - eccodes: - - references: Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49. + - gene_reaction_rule: "ENSG00000118777" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: CRVSM22hc + - id: "CRVSM22hc" - name: "spontaneous conversion of glucuronide to cerivastatin-M22 in hepatocytes" - metabolites: !!omap - crvsm22_r: 1 @@ -303492,15 +303492,15 @@ - m02877r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9172950, PMID: 11950779, PMID: 15801541 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9172950, PMID: 11950779, PMID: 15801541" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: CRVSM23hc + - id: "CRVSM23hc" - name: "hydroxylation of cerivastatin to M23 in hepatocytes" - metabolites: !!omap - crvs_r: -1 @@ -303512,15 +303512,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138115 - - rxnFrom: Recon3D - - eccodes: 1.14.14.1 - - references: PMID: 12433802,PMID: 9172950, PMID: 10976657, PMID: 20739906, PMID: 9804052, PMID: 11129127 + - gene_reaction_rule: "ENSG00000138115" + - rxnFrom: "Recon3D" + - eccodes: "1.14.14.1" + - references: "PMID: 12433802,PMID: 9172950, PMID: 10976657, PMID: 20739906, PMID: 9804052, PMID: 11129127" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: CRVSM23hr + - id: "CRVSM23hr" - name: "beta-glucuronidase of cerivastatin-M23-glucuronide to M23 form" - metabolites: !!omap - crvsm23_r: 1 @@ -303529,15 +303529,15 @@ - m02040r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169919 - - rxnFrom: Recon3D - - eccodes: 3.2.1.31 - - references: PMID: 9172950, PMID: 11950779, PMID: 15801541 + - gene_reaction_rule: "ENSG00000169919" + - rxnFrom: "Recon3D" + - eccodes: "3.2.1.31" + - references: "PMID: 9172950, PMID: 11950779, PMID: 15801541" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: CRVSM23teb + - id: "CRVSM23teb" - name: "efflux of cerivastatin-M23 into bile" - metabolites: !!omap - crvsm23_c: -1 @@ -303549,30 +303549,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000118777 - - rxnFrom: Recon3D - - eccodes: - - references: Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49. + - gene_reaction_rule: "ENSG00000118777" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: CRVSM23tev + - id: "CRVSM23tev" - name: "exit of cerivastatin-M23 into hepatic vein" - metabolites: !!omap - crvsm23_c: -1 - crvsm23_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10976657 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10976657" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: CRVSM24teb + - id: "CRVSM24teb" - name: "efflux of cerivastatin-M24 into bile" - metabolites: !!omap - crvsm24_c: -1 @@ -303584,30 +303584,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000118777 - - rxnFrom: Recon3D - - eccodes: - - references: Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49. + - gene_reaction_rule: "ENSG00000118777" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: CRVSM24tev + - id: "CRVSM24tev" - name: "exit of cerivastatin-M24 into hepatic vein" - metabolites: !!omap - crvsm24_c: -1 - crvsm24_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10976657 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10976657" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: CRVSM31hc + - id: "CRVSM31hc" - name: "spontaneous conversion of glucuronide to cerivastatin-M31 in hepatocytes" - metabolites: !!omap - crvsm31_r: 1 @@ -303618,30 +303618,30 @@ - m02877r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9172950, PMID: 11950779, PMID: 15801541 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9172950, PMID: 11950779, PMID: 15801541" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: CRVStu + - id: "CRVStu" - name: "cerivastatin uptake by enterocytes" - metabolites: !!omap - crvs_c: 1 - crvs_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10976657 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10976657" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: CRVSthc + - id: "CRVSthc" - name: "cerivastatin uptake by hepatocytes" - metabolites: !!omap - crvs_c: 1 @@ -303650,15 +303650,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: Recon3D - - eccodes: - - references: Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49, PMID: 20516252 + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49, PMID: 20516252" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: CSASULPhc + - id: "CSASULPhc" - name: "conjugation of cyclosporine with sulphate for excretion in hepatocytes" - metabolites: !!omap - csa_c: -1 @@ -303668,15 +303668,15 @@ - m02682c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8361996 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8361996" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: CSASULPteb + - id: "CSASULPteb" - name: "efflux of cyclosporine-sulphate into bile" - metabolites: !!omap - csasulp_c: -1 @@ -303688,45 +303688,45 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8361996, PMID: 8595701, PMID: 3276417, PMID: 1788988, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8361996, PMID: 8595701, PMID: 3276417, PMID: 1788988, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: CSASULPtev + - id: "CSASULPtev" - name: "efflux of cyclosporine-sulphate into hepatic vein" - metabolites: !!omap - csasulp_c: -1 - csasulp_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8361996, PMID: 8595701, PMID: 3276417, PMID: 1788988, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8361996, PMID: 8595701, PMID: 3276417, PMID: 1788988, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: CSAtd + - id: "CSAtd" - name: "uptake of cyclosporine by the enterocytes" - metabolites: !!omap - csa_c: 1 - csa_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 1540489 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 1540489" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: CSAtu + - id: "CSAtu" - name: "efflux of cyclosporine by P-gp from the enterocytes into lumen" - metabolites: !!omap - csa_c: -1 @@ -303738,15 +303738,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: PMID: 20103563, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal. Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter. New York, Springer New York: 27-49. + - gene_reaction_rule: "ENSG00000085563" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "PMID: 20103563, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal. Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter. New York, Springer New York: 27-49." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: CVM1GLUChc + - id: "CVM1GLUChc" - name: "glucuronidation of cerivastatin-M1" - metabolites: !!omap - crvsm1_r: -1 @@ -303756,15 +303756,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000241635 or ENSG00000243135 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID: 9172950, PMID: 11950779, PMID: 15801541 + - gene_reaction_rule: "ENSG00000241635 or ENSG00000243135" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID: 9172950, PMID: 11950779, PMID: 15801541" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: CVM23GLUChc + - id: "CVM23GLUChc" - name: "glucuronidation of cerivastatin-M23" - metabolites: !!omap - crvsm23_r: -1 @@ -303774,15 +303774,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000241635 or ENSG00000243135 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID: 9172950, PMID: 11950779, PMID: 15801541 + - gene_reaction_rule: "ENSG00000241635 or ENSG00000243135" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID: 9172950, PMID: 11950779, PMID: 15801541" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: CYSACMPAChc + - id: "CYSACMPAChc" - name: "acetylation of cysteine-conjugate-acetaminophen in hepatocytes" - metabolites: !!omap - cysacmp_c: -1 @@ -303792,15 +303792,15 @@ - meracmp_c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11215692, Graham, G. ; M. Hicks (2004). Pharmacokinetics ; Metabolism of Paracetamol (Acetaminophen). Aspirin ; Related Drugs, CRC Press. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11215692, Graham, G. ; M. Hicks (2004). Pharmacokinetics ; Metabolism of Paracetamol (Acetaminophen). Aspirin ; Related Drugs, CRC Press." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: CYSAMPtev + - id: "CYSAMPtev" - name: "efflux of cysteine-conjugate-acetaminophen into hepatic vein" - metabolites: !!omap - cysacmp_c: -1 @@ -303812,15 +303812,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 1026559, PMID: 11215692, Graham, G. ; M. Hicks (2004). Pharmacokinetics ; Metabolism of Paracetamol (Acetaminophen). Aspirin ; Related Drugs, CRC Press. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 1026559, PMID: 11215692, Graham, G. ; M. Hicks (2004). Pharmacokinetics ; Metabolism of Paracetamol (Acetaminophen). Aspirin ; Related Drugs, CRC Press." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: DELACCRVSM23hc + - id: "DELACCRVSM23hc" - name: "de-lactonization of cerivastatin-M31 to cerivastatin-M23 in hepatocytes" - metabolites: !!omap - crvsm23_c: 1 @@ -303831,15 +303831,15 @@ - m02877c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9172950, PMID: 11950779, PMID: 15801541 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9172950, PMID: 11950779, PMID: 15801541" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: DEOXFVShc + - id: "DEOXFVShc" - name: "formation of deoxy-fluvastatin-dinor" - metabolites: !!omap - deoxfvs_p: 1 @@ -303853,30 +303853,30 @@ - m02553p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000113790 or ENSG00000133835 or ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: 1.3.3.6;4.2.1.17;1.1.1.35;2.3.1.16 - - references: PMID: 9804052, PMID: 8104114 + - gene_reaction_rule: "ENSG00000060971 or ENSG00000113790 or ENSG00000133835 or ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "1.3.3.6;4.2.1.17;1.1.1.35;2.3.1.16" + - references: "PMID: 9804052, PMID: 8104114" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: DEOXFVStev + - id: "DEOXFVStev" - name: "exit of deoxy-fluvastatin-dinor into hepatic vein for excretion in urine" - metabolites: !!omap - deoxfvs_c: -1 - deoxfvs_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8104114, PMID: 11368292 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8104114, PMID: 11368292" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: DESFVShc + - id: "DESFVShc" - name: "oxidation of fluvastatin to N-desisopropyl-fluvastatin in hepatocytes" - metabolites: !!omap - desfvs_r: 1 @@ -303890,15 +303890,15 @@ - m02877r: 3 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138109 - - rxnFrom: Recon3D - - eccodes: 1.14.13.- - - references: PMID: 10064574, PMID: 11368292, PMID: 8104114, PMID: 9804052 + - gene_reaction_rule: "ENSG00000138109" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-" + - references: "PMID: 10064574, PMID: 11368292, PMID: 8104114, PMID: 9804052" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: DESFVSteb + - id: "DESFVSteb" - name: "efflux of N-desisopropyl-fluvastatin into bile for excretion into faeces" - metabolites: !!omap - desfvs_c: -1 @@ -303910,15 +303910,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16046661, PMID: 16026004, Brunton, L., Lazo, J., Parker, K. (2006). Goodman & Gilmans: The pharmacological basis of therapeutics, The McGraw-Hill companies, PMID: 11368292. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16046661, PMID: 16026004, Brunton, L., Lazo, J., Parker, K. (2006). Goodman & Gilmans: The pharmacological basis of therapeutics, The McGraw-Hill companies, PMID: 11368292." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: DHGLZABCt + - id: "DHGLZABCt" - name: "excretion of dehydro-gliclazide into bile" - metabolites: !!omap - dhglz_c: -1 @@ -303930,15 +303930,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Sarkar, A., Tiwari, A., Bhasin, P. S., Mitra, M. (2011). Pharmacological ; Pharmaceutical Profile of Gliclazide: A Review. Journal of Applied Pharmaceutical Science 1(9): 11-19, Zayed, M., F. Nour El-Dien, et al. (2010). Mass spectra of gliclazide drug at various ion sources temperature: Its thermal behavior ; molecular orbital calculations. Journal of Thermal Analysis ; Calorimetry 102(1): 305-312, PMID: 1794262 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Sarkar, A., Tiwari, A., Bhasin, P. S., Mitra, M. (2011). Pharmacological ; Pharmaceutical Profile of Gliclazide: A Review. Journal of Applied Pharmaceutical Science 1(9): 11-19, Zayed, M., F. Nour El-Dien, et al. (2010). Mass spectra of gliclazide drug at various ion sources temperature: Its thermal behavior ; molecular orbital calculations. Journal of Thermal Analysis ; Calorimetry 102(1): 305-312, PMID: 1794262" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: DHGLZhc + - id: "DHGLZhc" - name: "dehydrogenation of gliclazide to dehydro-gliclazide in hepatocytes" - metabolites: !!omap - dhglz_c: 1 @@ -303948,30 +303948,30 @@ - m02555c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8825191 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8825191" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: DHGLZtev + - id: "DHGLZtev" - name: "excretion of dehydro-gliclazide into hepatic vein" - metabolites: !!omap - dhglz_c: -1 - dhglz_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8825191. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8825191." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: DSPVShc + - id: "DSPVShc" - name: "oxidation of pravastatin to desacyl pravastatin in hepatocytes" - metabolites: !!omap - dspvs_r: 1 @@ -303984,15 +303984,15 @@ - pvs_r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.13.- - - references: PMID: 9929499, PMID: 1680649, PMID: 9804052, PMID: 11192474 + - gene_reaction_rule: "ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-" + - references: "PMID: 9929499, PMID: 1680649, PMID: 9804052, PMID: 11192474" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: DSPVSteb + - id: "DSPVSteb" - name: "efflux of desacyl dehydro-pravastatin into bile" - metabolites: !!omap - dspvs_c: -1 @@ -304004,30 +304004,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000073734 or ENSG00000118777 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16714062, PMID: 17177112 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000073734 or ENSG00000118777" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16714062, PMID: 17177112" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: DSPVStev + - id: "DSPVStev" - name: "exit of desacyl dehydro-pravastatin into hepatic vein" - metabolites: !!omap - dspvs_c: -1 - dspvs_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 1680649, PMID: 11192473, PMID: 9804052, PMID: 16714062, PMID: 18563955 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 1680649, PMID: 11192473, PMID: 9804052, PMID: 16714062, PMID: 18563955" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: EPOXTAChr + - id: "EPOXTAChr" - name: "formation of epoxy derivative of tacrolimus in hepatocytes" - metabolites: !!omap - epoxtac_r: 1 @@ -304038,15 +304038,15 @@ - tacr_r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 12190331, PMID: 7536652, PMID: 17965516, PMID: 16501005 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 12190331, PMID: 7536652, PMID: 17965516, PMID: 16501005" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: EPOXTACteb + - id: "EPOXTACteb" - name: "efflux of 31-O-Desmethyl,19-Hydroxy,37, 39-Epoxy-tacrolimus into bile" - metabolites: !!omap - epoxtac_c: -1 @@ -304058,2220 +304058,2220 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10348790, PMID: 17965516, PMID: 12190331, PMID: 7534100 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10348790, PMID: 17965516, PMID: 12190331, PMID: 7534100" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: EPOXTACtev + - id: "EPOXTACtev" - name: "exit of 31-O-Desmethyl,19-Hydroxy,37, 39-Epoxy-tacrolimus into hepatic vein" - metabolites: !!omap - epoxtac_c: -1 - epoxtac_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10348790, PMID: 17965516, PMID: 12190331, PMID: 7534100 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10348790, PMID: 17965516, PMID: 12190331, PMID: 7534100" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: EX_12htacr[e] + - id: "EX_12htacr[e]" - name: "exchange reaction for 12-hydroxy tacrolimus in intestinal lumen" - metabolites: !!omap - 12htacr_s: -1 - 12htacr_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_1331tacr[e] + - id: "EX_1331tacr[e]" - name: "exchange reaction for 13,31-O-Didesmethyl-tacrolimus in hepatic vein" - metabolites: !!omap - 1331tacr_s: -1 - 1331tacr_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_13dmt[e] + - id: "EX_13dmt[e]" - name: "exchange reaction for 13-O-desmethyl tacrolimus in intestinal lumen" - metabolites: !!omap - 13dmt_s: -1 - 13dmt_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_14hmdz[e] + - id: "EX_14hmdz[e]" - name: "exchange reaction for 1,4-Dihydroxy-midazolam in hepatic vein" - metabolites: !!omap - 14hmdz_s: -1 - 14hmdz_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_1513tacr[e] + - id: "EX_1513tacr[e]" - name: "exchange reaction for 13,15-O-didesmethyl tacrolimus in intestinal lumen" - metabolites: !!omap - 1513tacr_s: -1 - 1513tacr_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_1531tacr[e] + - id: "EX_1531tacr[e]" - name: "exchange reaction for 15, 31-O-Didesmethyl-tacrolimus in hepatic vein" - metabolites: !!omap - 1531tacr_s: -1 - 1531tacr_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_15dmt[e] + - id: "EX_15dmt[e]" - name: "exchange reaction for 15-O-desmethyl tacrolimus in intestinal lumen" - metabolites: !!omap - 15dmt_s: -1 - 15dmt_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_1hibup_S[e] + - id: "EX_1hibup_S[e]" - name: "exchange reaction for 1-hydroxy-ibuprofen in hepatic vein" - metabolites: !!omap - 1hibup_S_s: -1 - 1hibup_S_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_1hibupglu_S[e] + - id: "EX_1hibupglu_S[e]" - name: "exchange reaction for 1-hydroxy S-ibuprofen-glucuronide in hepatic vein" - metabolites: !!omap - 1hibupglu_S_s: -1 - 1hibupglu_S_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_1hmdgluc[e] + - id: "EX_1hmdgluc[e]" - name: "exchange reaction for 1-OH-midazolam-glucuronide in portal blood" - metabolites: !!omap - 1hmdgluc_s: -1 - 1hmdgluc_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_1ohmdz[e] + - id: "EX_1ohmdz[e]" - name: "exchange reaction for 1-OH-midazolam in portal blood" - metabolites: !!omap - 1ohmdz_s: -1 - 1ohmdz_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_2hatvacid[e] + - id: "EX_2hatvacid[e]" - name: "exchange reaction for 2-hydroxy-atorvastatin-acid in portal blood" - metabolites: !!omap - 2hatvacid_s: -1 - 2hatvacid_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_2hatvacidgluc[e] + - id: "EX_2hatvacidgluc[e]" - name: "exchange reaction for 2-hydroxy-atorvastatin-acyl-glucuronide in bile" - metabolites: !!omap - 2hatvacidgluc_s: -1 - 2hatvacidgluc_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_2hatvlac[e] + - id: "EX_2hatvlac[e]" - name: "exchange reaction for 2-hydroxy-atorvastatin-lactone in portal blood" - metabolites: !!omap - 2hatvlac_s: -1 - 2hatvlac_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_2hatvlacgluc[e] + - id: "EX_2hatvlacgluc[e]" - name: "exchange reaction for 2-hydroxy-atorvastatin-lactone-glucuronide in bile" - metabolites: !!omap - 2hatvlacgluc_s: -1 - 2hatvlacgluc_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_2hibup_R[e] + - id: "EX_2hibup_R[e]" - name: "exchange reaction for R-2-hydroxy-ibuprofen in hepatic vein" - metabolites: !!omap - 2hibup_R_s: -1 - 2hibup_R_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_2hibup_S[e] + - id: "EX_2hibup_S[e]" - name: "exchange reaction for S-2-hydroxy-ibuprofen in hepatic vein" - metabolites: !!omap - 2hibup_S_s: -1 - 2hibup_S_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_2hibupglu_S[e] + - id: "EX_2hibupglu_S[e]" - name: "exchange reaction for 2-hydroxy S-ibuprofen-glucuronide in hepatic vein" - metabolites: !!omap - 2hibupglu_S_s: -1 - 2hibupglu_S_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_31dmt[e] + - id: "EX_31dmt[e]" - name: "exchange reaction for 31-O-desmethyl tacrolimus in intestinal lumen" - metabolites: !!omap - 31dmt_s: -1 - 31dmt_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_35dhpvs[e] + - id: "EX_35dhpvs[e]" - name: "exchange reaction for 3-alpha-5-beta-dihydroxy pravastatin in portal blood" - metabolites: !!omap - 35dhpvs_s: -1 - 35dhpvs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_35dsmv[e] + - id: "EX_35dsmv[e]" - name: "exchange reaction for 3,5-dihydrodiol-simvastatin-lactone form in bile" - metabolites: !!omap - 35dsmv_s: -1 - 35dsmv_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_3hibup_R[e] + - id: "EX_3hibup_R[e]" - name: "exchange reaction for R-3-hydroxy-ibuprofen in hepatic vein" - metabolites: !!omap - 3hibup_R_s: -1 - 3hibup_R_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_3hibup_S[e] + - id: "EX_3hibup_S[e]" - name: "exchange reaction for S-3-hydroxy-ibuprofen in hepatic vein" - metabolites: !!omap - 3hibup_S_s: -1 - 3hibup_S_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_3hibupglu_S[e] + - id: "EX_3hibupglu_S[e]" - name: "exchange reaction for 3-hydroxy S-ibuprofen-glucuronide in hepatic vein" - metabolites: !!omap - 3hibupglu_S_s: -1 - 3hibupglu_S_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_3hlvstacid[e] + - id: "EX_3hlvstacid[e]" - name: "exchange reaction for 3-hydroxy-lovastatin acid form in bile" - metabolites: !!omap - 3hlvstacid_s: -1 - 3hlvstacid_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_3hpvs[e] + - id: "EX_3hpvs[e]" - name: "exchange reaction for 3-hydroxy pravastatin in portal blood" - metabolites: !!omap - 3hpvs_s: -1 - 3hpvs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_3hpvstet[e] + - id: "EX_3hpvstet[e]" - name: "exchange reaction of 3-S-hydroxy-pravastatin-tetranor in hepatic vein" - metabolites: !!omap - 3hpvstet_s: -1 - 3hpvstet_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_3hsmvacid[e] + - id: "EX_3hsmvacid[e]" - name: "exchange reaction for 3-hydroxy-simvastatin-acid form form in bile" - metabolites: !!omap - 3hsmvacid_s: -1 - 3hsmvacid_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_3ispvs[e] + - id: "EX_3ispvs[e]" - name: "exchange reaction for 3-alpha-iso-pravastatin in portal blood" - metabolites: !!omap - 3ispvs_s: -1 - 3ispvs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_3ohacmp[e] + - id: "EX_3ohacmp[e]" - name: "exchange reaction for 3-OH-acetaminophen in hepatic vein" - metabolites: !!omap - 3ohacmp_s: -1 - 3ohacmp_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_4bhglz[e] + - id: "EX_4bhglz[e]" - name: "exchange reaction for 4-beta-OH-gliclazide in hepatic vein" - metabolites: !!omap - 4bhglz_s: -1 - 4bhglz_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_4hatvacid[e] + - id: "EX_4hatvacid[e]" - name: "exchange reaction for 4-hydroxy-atorvastatin-acid in portal blood" - metabolites: !!omap - 4hatvacid_s: -1 - 4hatvacid_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_4hatvlac[e] + - id: "EX_4hatvlac[e]" - name: "exchange reaction for 4-hydroxy-atorvastatin-lactone in portal blood" - metabolites: !!omap - 4hatvlac_s: -1 - 4hatvlac_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_4hmdgluc[e] + - id: "EX_4hmdgluc[e]" - name: "exchange reaction for 4-OH-midazolam-glucuronide in hepatic vein" - metabolites: !!omap - 4hmdgluc_s: -1 - 4hmdgluc_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_4ohmdz[e] + - id: "EX_4ohmdz[e]" - name: "exchange reaction for 4-OH-midazolam in hepatic vein" - metabolites: !!omap - 4ohmdz_s: -1 - 4ohmdz_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_56dhpvs[e] + - id: "EX_56dhpvs[e]" - name: "exchange reaction of 3-keto-5,6,-dihydroxy-pravastatin in hepatic vein" - metabolites: !!omap - 56dhpvs_s: -1 - 56dhpvs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_56eppvs[e] + - id: "EX_56eppvs[e]" - name: "exchange reaction of 5,6-epoxy-3-alpha-iso-pravastatin in hepatic vein" - metabolites: !!omap - 56eppvs_s: -1 - 56eppvs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_5ohfvs[e] + - id: "EX_5ohfvs[e]" - name: "exchnage reaction for 5-hydroxy-fluvastatin in bile" - metabolites: !!omap - 5ohfvs_s: -1 - 5ohfvs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_5ohfvsglu[e] + - id: "EX_5ohfvsglu[e]" - name: "exchnage reaction for 5-hydroxy-fluvastatin-glucuronide in hepatic vein" - metabolites: !!omap - 5ohfvsglu_s: -1 - 5ohfvsglu_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_6ahglz[e] + - id: "EX_6ahglz[e]" - name: "exchange reaction for 6-alpha-OH-gliclazide in hepatic vein" - metabolites: !!omap - 6ahglz_s: -1 - 6ahglz_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_6bhglz[e] + - id: "EX_6bhglz[e]" - name: "exchange reaction for 6-beta-OH-gliclazide in hepatic vein" - metabolites: !!omap - 6bhglz_s: -1 - 6bhglz_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_6bhglzglc[e] + - id: "EX_6bhglzglc[e]" - name: "exchange reaction for 6-beta-OH-gliclazide-glucuronide in hepatic vein" - metabolites: !!omap - 6bhglzglc_s: -1 - 6bhglzglc_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_6csmvacid[e] + - id: "EX_6csmvacid[e]" - name: "exchange reaction for 6-beta-carboxy-simvastatin-acid form in bile" - metabolites: !!omap - 6csmvacid_s: -1 - 6csmvacid_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_6epvs[e] + - id: "EX_6epvs[e]" - name: "exchange reaction for 6-epi-pravastatin in portal blood" - metabolites: !!omap - 6epvs_s: -1 - 6epvs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_6hlvst[e] + - id: "EX_6hlvst[e]" - name: "exchange reaction for 6-beta-hydroxy-lovastatin in portal blood" - metabolites: !!omap - 6hlvst_s: -1 - 6hlvst_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_6hmsmvacid[e] + - id: "EX_6hmsmvacid[e]" - name: "exchange reaction for6-beta-hydroxy-methyl-simvastatin-acid form in bile" - metabolites: !!omap - 6hmsmvacid_s: -1 - 6hmsmvacid_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_6hsmvacid[e] + - id: "EX_6hsmvacid[e]" - name: "exchange reaction for 6-beta-hydroxy simvastatin acid in bile" - metabolites: !!omap - 6hsmvacid_s: -1 - 6hsmvacid_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_6melvacid[e] + - id: "EX_6melvacid[e]" - name: "exchange reaction for 6-exomethylene-lovastatin-acid form in bile" - metabolites: !!omap - 6melvacid_s: -1 - 6melvacid_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_6melvst[e] + - id: "EX_6melvst[e]" - name: "exchange reaction for 6-exomethylene-lovastatin in portal blood" - metabolites: !!omap - 6melvst_s: -1 - 6melvst_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_6ohfvs[e] + - id: "EX_6ohfvs[e]" - name: "exchnage reaction for 6-hydroxy-fluvastatin in bile" - metabolites: !!omap - 6ohfvs_s: -1 - 6ohfvs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_6ohfvsglu[e] + - id: "EX_6ohfvsglu[e]" - name: "exchange reaction for 6-hydroxy-fluvastatin-glucuronide in hepatic vein" - metabolites: !!omap - 6ohfvsglu_s: -1 - 6ohfvsglu_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_7ahglz[e] + - id: "EX_7ahglz[e]" - name: "exchange reaction for 7-alpha-OH-gliclazide in hepatic vein" - metabolites: !!omap - 7ahglz_s: -1 - 7ahglz_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_7bhglz[e] + - id: "EX_7bhglz[e]" - name: "exchange reaction for 7-beta-OH-gliclazide in hepatic vein" - metabolites: !!omap - 7bhglz_s: -1 - 7bhglz_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_7bhglzglc[e] + - id: "EX_7bhglzglc[e]" - name: "exchange reaction for 7-beta-OH-gliclazide-glucuronide in hepatic vein" - metabolites: !!omap - 7bhglzglc_s: -1 - 7bhglzglc_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_7hpvs[e] + - id: "EX_7hpvs[e]" - name: "exchange reaction of 7-hydroxy-3-alpha-iso-pravastatin in hepatic vein" - metabolites: !!omap - 7hpvs_s: -1 - 7hpvs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_acmp[e] + - id: "EX_acmp[e]" - name: "exchange reaction for acetaminophen in small intestinal lumen" - metabolites: !!omap - acmp_s: -1 - acmp_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_acmpglu[e] + - id: "EX_acmpglu[e]" - name: "exchange reaction for acetaminophen-glucuronide-conjugate in portal blood" - metabolites: !!omap - acmpglu_s: -1 - acmpglu_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_acmpglut[e] + - id: "EX_acmpglut[e]" - name: "exchange reaction for acetaminophen-glutathione-conjugate in intestinal lumen" - metabolites: !!omap - acmpglut_s: -1 - acmpglut_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_allop[e] + - id: "EX_allop[e]" - name: "exchange reaction for allopurinol in intestinal lumen" - metabolites: !!omap - allop_s: -1 - allop_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_am19cs[e] + - id: "EX_am19cs[e]" - name: "exchange reaction for AM19-cyclosporine in hepatic vein" - metabolites: !!omap - am19cs_s: -1 - am19cs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_am1a4ncs[e] + - id: "EX_am1a4ncs[e]" - name: "exchange reaction for AM1A4N-cyclosporine in bile" - metabolites: !!omap - am1a4ncs_s: -1 - am1a4ncs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_am1accs[e] + - id: "EX_am1accs[e]" - name: "exchange reaction for AM1Ac-cyclosporine in hepatic vein" - metabolites: !!omap - am1accs_s: -1 - am1accs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_am1acs[e] + - id: "EX_am1acs[e]" - name: "exchange reaction for AM1A (cyclosporine) in portal blood" - metabolites: !!omap - am1acs_s: -1 - am1acs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_am1alcs[e] + - id: "EX_am1alcs[e]" - name: "exchange reaction for AM1AL (cyclosporine) in portal blood" - metabolites: !!omap - am1alcs_s: -1 - am1alcs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_am1c4n9cs[e] + - id: "EX_am1c4n9cs[e]" - name: "exchange reaction for AM1c4N9-cyclosporine in bile" - metabolites: !!omap - am1c4n9cs_s: -1 - am1c4n9cs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_am1c9cs[e] + - id: "EX_am1c9cs[e]" - name: "exchange reaction for AM1c9-cyclosporine in hepatic vein" - metabolites: !!omap - am1c9cs_s: -1 - am1c9cs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_am1ccs[e] + - id: "EX_am1ccs[e]" - name: "exchange reaction for AM1c-cyclosporine in hepatic vein" - metabolites: !!omap - am1ccs_s: -1 - am1ccs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_am1cglc[e] + - id: "EX_am1cglc[e]" - name: "exchange reaction for AM1c-glucuronide in bile" - metabolites: !!omap - am1cglc_s: -1 - am1cglc_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_am1csa[e] + - id: "EX_am1csa[e]" - name: "exchange reaction for AM1 (cyclosporine) in portal blood" - metabolites: !!omap - am1csa_s: -1 - am1csa_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_am4n9cs[e] + - id: "EX_am4n9cs[e]" - name: "exchange reaction for AM4N9-cyclosporine in hepatic vein" - metabolites: !!omap - am4n9cs_s: -1 - am4n9cs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_am4ncs[e] + - id: "EX_am4ncs[e]" - name: "exchange reaction for AM4N (cyclosporine) in portal blood" - metabolites: !!omap - am4ncs_s: -1 - am4ncs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_am9csa[e] + - id: "EX_am9csa[e]" - name: "exchange reaction for AM9 (cyclosporine) in portal blood" - metabolites: !!omap - am9csa_s: -1 - am9csa_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_atvacid[e] + - id: "EX_atvacid[e]" - name: "exchange reaction for atorvastatin in intestinal lumen" - metabolites: !!omap - atvacid_s: -1 - atvacid_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_atvlac[e] + - id: "EX_atvlac[e]" - name: "exchange reaction for atorvastatin-lactone in portal blood" - metabolites: !!omap - atvlac_s: -1 - atvlac_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_caribup_R[e] + - id: "EX_caribup_R[e]" - name: "exchange reaction for R-carboxy ibuprofen in hepatic vein" - metabolites: !!omap - caribup_R_s: -1 - caribup_R_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_caribup_s[e] + - id: "EX_caribup_s[e]" - name: "exchange reaction for S-carboxy ibuprofen in hepatic vein" - metabolites: !!omap - caribup_s_s: -1 - caribup_s_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_caribupglu_S[e] + - id: "EX_caribupglu_S[e]" - name: "exchange reaction for S-carboxy ibuprofen glucuronide in hepatic vein" - metabolites: !!omap - caribupglu_S_s: -1 - caribupglu_S_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_crglz[e] + - id: "EX_crglz[e]" - name: "exchange reaction for carboxy-gliclazide in hepatic vein" - metabolites: !!omap - crglz_s: -1 - crglz_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_crvs[e] + - id: "EX_crvs[e]" - name: "exchange reaction for cerivastatin in intestinal lumen" - metabolites: !!omap - crvs_s: -1 - crvs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_crvsm1[e] + - id: "EX_crvsm1[e]" - name: "exchange reaction for cerivastatin-M1 in hepatic vein" - metabolites: !!omap - crvsm1_s: -1 - crvsm1_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_crvsm23[e] + - id: "EX_crvsm23[e]" - name: "exchange reaction for cerivastatin-M23 in hepatic vein" - metabolites: !!omap - crvsm23_s: -1 - crvsm23_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_crvsm24[e] + - id: "EX_crvsm24[e]" - name: "exchange reaction for cerivastatin-M24 in hepatic vein" - metabolites: !!omap - crvsm24_s: -1 - crvsm24_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_csa[e] + - id: "EX_csa[e]" - name: "exchange reaction for cyclosporine in intestinal lumen" - metabolites: !!omap - csa_s: -1 - csa_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_csasulp[e] + - id: "EX_csasulp[e]" - name: "exchange reaction for cyclosporine-sulphate in hepatic vein" - metabolites: !!omap - csasulp_s: -1 - csasulp_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_cysacmp[e] + - id: "EX_cysacmp[e]" - name: "exchange reaction for cysteine-conjugate-acetaminophen in hepatic vein" - metabolites: !!omap - cysacmp_s: -1 - cysacmp_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_deoxfvs[e] + - id: "EX_deoxfvs[e]" - name: "exchange reaction for deoxy-fluvastatin-dinor in hepatic vein" - metabolites: !!omap - deoxfvs_s: -1 - deoxfvs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_desfvs[e] + - id: "EX_desfvs[e]" - name: "exchange reaction for N-desisopropyl-fluvastatin in bile" - metabolites: !!omap - desfvs_s: -1 - desfvs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_dhglz[e] + - id: "EX_dhglz[e]" - name: "exchange reaction for dehydro-gliclazide in hepatic vein" - metabolites: !!omap - dhglz_s: -1 - dhglz_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_dspvs[e] + - id: "EX_dspvs[e]" - name: "exchange reaction of desacyl dehydro-pravastatin in hepatic vein" - metabolites: !!omap - dspvs_s: -1 - dspvs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_epoxtac[e] + - id: "EX_epoxtac[e]" - name: "exchange reaction for 31-O-Desmethyl,19-Hydroxy,37, 39-Epoxy-tacrolimus in hepatic vein" - metabolites: !!omap - epoxtac_s: -1 - epoxtac_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_fvs[e] + - id: "EX_fvs[e]" - name: "exchange reaction for fluvastatin in intestinal lumen" - metabolites: !!omap - fvs_s: -1 - fvs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_fvstet[e] + - id: "EX_fvstet[e]" - name: "exchange reaction for des-isopropyl-dihydro-fluvastatin-tetranor in hepatic vein" - metabolites: !!omap - fvstet_s: -1 - fvstet_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_fvstetglu[e] + - id: "EX_fvstetglu[e]" - name: "exchange reaction for des-isopropyl-dihydro-fluvastatin-tetranor-glucuronide in hepatic vein" - metabolites: !!omap - fvstetglu_s: -1 - fvstetglu_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_glc3meacp[e] + - id: "EX_glc3meacp[e]" - name: "exchange reaction for glucuronide-conjugate of 3-methoxy-acetaminophen in hepatic vein" - metabolites: !!omap - glc3meacp_s: -1 - glc3meacp_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_glz[e] + - id: "EX_glz[e]" - name: "exchange reaction for gliclazide in intestinal lumen" - metabolites: !!omap - glz_s: -1 - glz_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_gtacmp[e] + - id: "EX_gtacmp[e]" - name: "exchange reaction for glucuronide-thiomethyl-acetaminophen conjugate in hepatic vein" - metabolites: !!omap - gtacmp_s: -1 - gtacmp_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_ibup_R[e] + - id: "EX_ibup_R[e]" - name: "exchange reaction for ibuprofen_R in intestinal lumen" - metabolites: !!omap - ibup_R_s: -1 - ibup_R_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_ibup_S[e] + - id: "EX_ibup_S[e]" - name: "exchange reaction for ibuprofen_S in intestinal lumen" - metabolites: !!omap - ibup_S_s: -1 - ibup_S_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_ibupgluc[e] + - id: "EX_ibupgluc[e]" - name: "exchange reaction for ibuprofen acyl glucuronide in portal blood" - metabolites: !!omap - ibupgluc_s: -1 - ibupgluc_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_isolvstacid[e] + - id: "EX_isolvstacid[e]" - name: "exchange reaction for 3-hydroxy-iso-delta-4,5-hydroxy acid form of lovastatin in bile" - metabolites: !!omap - isolvstacid_s: -1 - isolvstacid_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_lst4exp[e] + - id: "EX_lst4exp[e]" - name: "exchange reaction for Losartan-E3174 in portal blood" - metabolites: !!omap - lst4exp_s: -1 - lst4exp_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_lstn[e] + - id: "EX_lstn[e]" - name: "exchange reaction for losartan in intestinal lumen" - metabolites: !!omap - lstn_s: -1 - lstn_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_lstn1gluc[e] + - id: "EX_lstn1gluc[e]" - name: "exchange reaction for Losartan-N1-glucuronide in hepatic vein" - metabolites: !!omap - lstn1gluc_s: -1 - lstn1gluc_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_lstnm1[e] + - id: "EX_lstnm1[e]" - name: "exchange reaction for Losartan-M1 in hepatic vein" - metabolites: !!omap - lstnm1_s: -1 - lstnm1_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_lstnm2[e] + - id: "EX_lstnm2[e]" - name: "exchange reaction for Losartan-M2 in hepatic vein" - metabolites: !!omap - lstnm2_s: -1 - lstnm2_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_lstnm4[e] + - id: "EX_lstnm4[e]" - name: "exchange reaction for Losartan-M4 (glucuronide derivative) in hepatic vein" - metabolites: !!omap - lstnm4_s: -1 - lstnm4_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_lstnm5[e] + - id: "EX_lstnm5[e]" - name: "exchange reaction for Losartan-M5 in hepatic vein" - metabolites: !!omap - lstnm5_s: -1 - lstnm5_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_lstnm7[e] + - id: "EX_lstnm7[e]" - name: "exchange reaction for Losartan-N2-glucuronide / Losartan-M7 in portal blood" - metabolites: !!omap - lstnm7_s: -1 - lstnm7_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_lvst[e] + - id: "EX_lvst[e]" - name: "exchange reaction for lovastatin in intestinal lumen" - metabolites: !!omap - lvst_s: -1 - lvst_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_mdz[e] + - id: "EX_mdz[e]" - name: "exchange reaction for midazolam in intestinal lumen" - metabolites: !!omap - mdz_s: -1 - mdz_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_mdzglc[e] + - id: "EX_mdzglc[e]" - name: "exchange reaction for midazolam-glucuronide in hepatic vein" - metabolites: !!omap - mdzglc_s: -1 - mdzglc_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_meracmp[e] + - id: "EX_meracmp[e]" - name: "exchange reaction for acetaminophen-mercapturate-conjugate in portal blood" - metabolites: !!omap - meracmp_s: -1 - meracmp_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_mhglz[e] + - id: "EX_mhglz[e]" - name: "exchange reaction for Methyl-hydroxy-gliclazide in hepatic vein" - metabolites: !!omap - mhglz_s: -1 - mhglz_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_ndersv[e] + - id: "EX_ndersv[e]" - name: "exchange reaction for N-desmethyl-rosuvastatin in bile" - metabolites: !!omap - ndersv_s: -1 - ndersv_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_nfd[e] + - id: "EX_nfd[e]" - name: "exchange reaction for nifedipine in intestinal lumen" - metabolites: !!omap - nfd_s: -1 - nfd_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_nfdac[e] + - id: "EX_nfdac[e]" - name: "exchange reaction of acid metabolite of nifedipine in portal vein" - metabolites: !!omap - nfdac_s: -1 - nfdac_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_nfdlac[e] + - id: "EX_nfdlac[e]" - name: "exchange reaction of lactone form of nifedipine in portal vein" - metabolites: !!omap - nfdlac_s: -1 - nfdlac_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_nfdnpy[e] + - id: "EX_nfdnpy[e]" - name: "exchange reaction of nitropyridine metabolite of nifedipine in portal vein" - metabolites: !!omap - nfdnpy_s: -1 - nfdnpy_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_nfdoh[e] + - id: "EX_nfdoh[e]" - name: "exchange reaction of hydroxy metabolite of nifedipine in portal vein" - metabolites: !!omap - nfdoh_s: -1 - nfdoh_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_oxyp[e] + - id: "EX_oxyp[e]" - name: "exchange reaction for oxypurinol in portal blood" - metabolites: !!omap - oxyp_s: -1 - oxyp_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_oxyp1rb[e] + - id: "EX_oxyp1rb[e]" - name: "exchange reaction for oxypurinol-1-riboside in hepatic vein" - metabolites: !!omap - oxy1rb_s: -1 - oxy1rb_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_oxyp7rb[e] + - id: "EX_oxyp7rb[e]" - name: "exchange reaction for oxypurinol-7-riboside in hepatic vein" - metabolites: !!omap - oxy7rb_s: -1 - oxy7rb_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_profvs[e] + - id: "EX_profvs[e]" - name: "exchnage reaction for des-isoproylpropionic-acid-fluvastatin in hepatic vein" - metabolites: !!omap - profvs_s: -1 - profvs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_ptvst[e] + - id: "EX_ptvst[e]" - name: "exchange reaction for pitavastatin in intestinal lumen" - metabolites: !!omap - ptvst_s: -1 - ptvst_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_ptvstlac[e] + - id: "EX_ptvstlac[e]" - name: "exchange reaction for pravastatin-lactone in hepatic vein" - metabolites: !!omap - ptvstlac_s: -1 - ptvstlac_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_ptvstm3[e] + - id: "EX_ptvstm3[e]" - name: "exchange reaction for pitavastatin-M3 in bile" - metabolites: !!omap - ptvstm3_s: -1 - ptvstm3_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pvs[e] + - id: "EX_pvs[e]" - name: "exchange reaction for pravastatin in intestinal lumen" - metabolites: !!omap - pvs_s: -1 - pvs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_pvsgluc[e] + - id: "EX_pvsgluc[e]" - name: "exchange reaction of pravastatin glucuronide in hepatic vein" - metabolites: !!omap - pvsgluc_s: -1 - pvsgluc_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_rsv[e] + - id: "EX_rsv[e]" - name: "exchange reaction for rosuvastatin in intestinal lumen" - metabolites: !!omap - rsv_s: -1 - rsv_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_rsvlac[e] + - id: "EX_rsvlac[e]" - name: "exchange reaction for rosuvastatin-5S-lactone in bile" - metabolites: !!omap - rsvlac_s: -1 - rsvlac_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_s3meacmp[e] + - id: "EX_s3meacmp[e]" - name: "exchange reaction for sulphate-conjugate-3-methoxy-acetaminophen in hepatic vein" - metabolites: !!omap - s3meacmp_s: -1 - s3meacmp_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_smv[e] + - id: "EX_smv[e]" - name: "exchange reaction for simvastatin in intestinal lumen" - metabolites: !!omap - smv_s: -1 - smv_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_smvacid[e] + - id: "EX_smvacid[e]" - name: "exchange reaction for simvastatin dihydroxy acid form in hepatic vein" - metabolites: !!omap - smvacid_s: -1 - smvacid_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_stacmp[ev] + - id: "EX_stacmp[ev]" - name: "exchange reaction for sulphate-thiomethyl-acetaminophen conjugate in hepatic vein" - metabolites: !!omap - stacmp_s: -1 - stacmp_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_sulpacmp[e] + - id: "EX_sulpacmp[e]" - name: "exchange reaction for acetaminophen-sulphate in hepatic vein" - metabolites: !!omap - sulpacmp_s: -1 - sulpacmp_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_tacr[e] + - id: "EX_tacr[e]" - name: "exchange reaction for tacrolimus in intestinal lumen" - metabolites: !!omap - tacr_s: -1 - tacr_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_tauribup_S[e] + - id: "EX_tauribup_S[e]" - name: "exchange reaction for taurine conjugate of S-ibuprofen in hepatic vein" - metabolites: !!omap - tauribup_S_s: -1 - tauribup_S_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_thrfvs[e] + - id: "EX_thrfvs[e]" - name: "exchange reaction for threo-isomer of fluvastain in hepatic vein" - metabolites: !!omap - thrfvs_s: -1 - thrfvs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_tlacfvs[e] + - id: "EX_tlacfvs[e]" - name: "exchange reaction for trans-lactone-fluvastatin in hepatic vein" - metabolites: !!omap - tlacfvs_s: -1 - tlacfvs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_tmd[e] + - id: "EX_tmd[e]" - name: "exchange reaction for torasemide in intestinal lumen" - metabolites: !!omap - tmd_s: -1 - tmd_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_tmdm1[e] + - id: "EX_tmdm1[e]" - name: "exchange reaction for Torasemide-M1 in hepatic vein" - metabolites: !!omap - tmdm1_s: -1 - tmdm1_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_tmdm3[e] + - id: "EX_tmdm3[e]" - name: "exchange reaction for Torasemide-M3 in hepatic vein" - metabolites: !!omap - tmdm3_s: -1 - tmdm3_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_tmdm5[e] + - id: "EX_tmdm5[e]" - name: "exchange reaction for Torasemide-M5 in hepatic vein" - metabolites: !!omap - tmdm5_s: -1 - tmdm5_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_tripvs[e] + - id: "EX_tripvs[e]" - name: "exchange reaction of triol metabolite of pravastatin in hepatic vein" - metabolites: !!omap - tripvs_s: -1 - tripvs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_tsacmgluc[e] + - id: "EX_tsacmgluc[e]" - name: "exchange reaction for thiomethyl-sulphoxide-acetaminophen-glucuronide in hepatic vein" - metabolites: !!omap - tsacmgluc_s: -1 - tsacmgluc_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_tsacmsul[e] + - id: "EX_tsacmsul[e]" - name: "exchange reaction for thiomethyl-sulphoxide-acetaminophen-sulphate in hepatic vein" - metabolites: !!omap - tsacmsul_s: -1 - tsacmsul_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: FVSGLUChc + - id: "FVSGLUChc" - name: "glucuronidation of fluvastatin" - metabolites: !!omap - fvs_r: -1 @@ -306281,15 +306281,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15801541, PMID: 11950779, PMID: 8104114 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15801541, PMID: 11950779, PMID: 8104114" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: FVSTETGLUhc + - id: "FVSTETGLUhc" - name: "glucuronidation of des-isopropyl-dihydro-fluvastatin-tetranor" - metabolites: !!omap - fvstet_r: -1 @@ -306299,45 +306299,45 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8104114 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8104114" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: FVSTETGLUtev + - id: "FVSTETGLUtev" - name: "exit of des-isopropyl-dihydro-fluvastatin-tetranor-glucuronide into hepatic vein for excretion in urine" - metabolites: !!omap - fvstetglu_c: -1 - fvstetglu_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8104114, PMID: 11368292 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8104114, PMID: 11368292" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: FVSTETtev + - id: "FVSTETtev" - name: "exit of des-isopropyl-dihydro-fluvastatin-tetranor into hepatic vein for excretion in urine" - metabolites: !!omap - fvstet_c: -1 - fvstet_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8104114, PMID: 11368292 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8104114, PMID: 11368292" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: FVShc + - id: "FVShc" - name: "hydrolysis of lactone to fluvastatin in hepatocytes" - metabolites: !!omap - fvs_r: 1 @@ -306345,15 +306345,15 @@ - tlacfvs_r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15801541, PMID: 11950779, PMID: 8104114 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15801541, PMID: 11950779, PMID: 8104114" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: FVSteb + - id: "FVSteb" - name: "efflux of fluvastatin into bile for excretion into faeces" - metabolites: !!omap - fvs_c: -1 @@ -306365,30 +306365,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16046661, PMID: 16026004, Brunton, L., Lazo, J., Parker, K. (2006). Goodman & Gilmans: The pharmacological basis of therapeutics, The McGraw-Hill companies, PMID: 11368292. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16046661, PMID: 16026004, Brunton, L., Lazo, J., Parker, K. (2006). Goodman & Gilmans: The pharmacological basis of therapeutics, The McGraw-Hill companies, PMID: 11368292." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: FVStep + - id: "FVStep" - name: "efflux of fluvastatin from enterocytes into portal blood" - metabolites: !!omap - fvs_c: -1 - fvs_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11368292 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11368292" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: FVStu + - id: "FVStu" - name: "uptake of fluvastatin by enterocytes" - metabolites: !!omap - fvs_c: 1 @@ -306397,15 +306397,15 @@ - m02046s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137491 - - rxnFrom: Recon3D - - eccodes: - - references: Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49. + - gene_reaction_rule: "ENSG00000137491" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: GLC3MEACPhr + - id: "GLC3MEACPhr" - name: "glucuronidation of 3-methoxy-acetaminophen in hepatocytes" - metabolites: !!omap - 3meacmp_r: -1 @@ -306416,15 +306416,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167165 or ENSG00000241119 or ENSG00000241635 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID: 1026559, PMID: 11215692, Graham, G. ; M. Hicks (2004). Pharmacokinetics ; Metabolism of Paracetamol (Acetaminophen). Aspirin ; Related Drugs, CRC Press. + - gene_reaction_rule: "ENSG00000167165 or ENSG00000241119 or ENSG00000241635" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID: 1026559, PMID: 11215692, Graham, G. ; M. Hicks (2004). Pharmacokinetics ; Metabolism of Paracetamol (Acetaminophen). Aspirin ; Related Drugs, CRC Press." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: GLC3MEACPtev + - id: "GLC3MEACPtev" - name: "efflux of glucuronide-conjugate of 3-methoxy-acetaminophen into hepatic vein" - metabolites: !!omap - glc3meacp_c: -1 @@ -306436,15 +306436,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 1026559, PMID: 11215692, Graham, G. ; M. Hicks (2004). Pharmacokinetics ; Metabolism of Paracetamol (Acetaminophen). Aspirin ; Related Drugs, CRC Press. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 1026559, PMID: 11215692, Graham, G. ; M. Hicks (2004). Pharmacokinetics ; Metabolism of Paracetamol (Acetaminophen). Aspirin ; Related Drugs, CRC Press." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: GLZABCteb + - id: "GLZABCteb" - name: "excretion of gliclazide into bile" - metabolites: !!omap - glz_c: -1 @@ -306456,30 +306456,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Sarkar, A., Tiwari, A., Bhasin, P. S., Mitra, M. (2011). Pharmacological ; Pharmaceutical Profile of Gliclazide: A Review. Journal of Applied Pharmaceutical Science 1(9): 11-19, Zayed, M., F. Nour El-Dien, et al. (2010). Mass spectra of gliclazide drug at various ion sources temperature: Its thermal behavior ; molecular orbital calculations. Journal of Thermal Analysis ; Calorimetry 102(1): 305-312, PMID: 1794262 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Sarkar, A., Tiwari, A., Bhasin, P. S., Mitra, M. (2011). Pharmacological ; Pharmaceutical Profile of Gliclazide: A Review. Journal of Applied Pharmaceutical Science 1(9): 11-19, Zayed, M., F. Nour El-Dien, et al. (2010). Mass spectra of gliclazide drug at various ion sources temperature: Its thermal behavior ; molecular orbital calculations. Journal of Thermal Analysis ; Calorimetry 102(1): 305-312, PMID: 1794262" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: GLZtd + - id: "GLZtd" - name: "uptake of gliclazide into enterocytes" - metabolites: !!omap - glz_c: 1 - glz_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 18844675, PMID: 1794262 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 18844675, PMID: 1794262" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: GTACMPhr + - id: "GTACMPhr" - name: "glucuronidation of thiomethyl-acetaminophen conjugate in hepatocytes" - metabolites: !!omap - gtacmp_r: 1 @@ -306489,15 +306489,15 @@ - tmacmp_r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Graham, G. ; M. Hicks (2004). Pharmacokinetics ; Metabolism of Paracetamol (Acetaminophen). Aspirin ; Related Drugs, CRC Press., PMID: 1026559. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Graham, G. ; M. Hicks (2004). Pharmacokinetics ; Metabolism of Paracetamol (Acetaminophen). Aspirin ; Related Drugs, CRC Press., PMID: 1026559." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: GTACMPtev + - id: "GTACMPtev" - name: "efflux of glucuronide-thiomethyl-acetaminophen conjugate into hepatic vein" - metabolites: !!omap - gtacmp_c: -1 @@ -306509,30 +306509,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 1026559, PMID: 11215692, Graham, G. ; M. Hicks (2004). Pharmacokinetics ; Metabolism of Paracetamol (Acetaminophen). Aspirin ; Related Drugs, CRC Press. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 1026559, PMID: 11215692, Graham, G. ; M. Hicks (2004). Pharmacokinetics ; Metabolism of Paracetamol (Acetaminophen). Aspirin ; Related Drugs, CRC Press." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: IBUPGLUCtchep + - id: "IBUPGLUCtchep" - name: "uptake of ibuprofen acyl glucuronide into hepatocytes" - metabolites: !!omap - ibupgluc_c: 1 - ibupgluc_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: IBUPGLUCtpvb + - id: "IBUPGLUCtpvb" - name: "release of iboprofen acyl glucuronides into the portal blood" - metabolites: !!omap - ibupgluc_c: -1 @@ -306544,15 +306544,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 19889793 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 19889793" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: IBUPGT_HEP + - id: "IBUPGT_HEP" - name: "glucuronidation of ibuprofen in hepatocytes" - metabolites: !!omap - ibup_S_r: -1 @@ -306561,15 +306561,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171234 or ENSG00000241119 or ENSG00000243135 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID: 21862693, PMID: 11154740, Davies, N. M. (2004). Chirality in Drug Design ; Development, CRC Press 2004, PMID: 10836148, PMID: 20926620 + - gene_reaction_rule: "ENSG00000171234 or ENSG00000241119 or ENSG00000243135" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID: 21862693, PMID: 11154740, Davies, N. M. (2004). Chirality in Drug Design ; Development, CRC Press 2004, PMID: 10836148, PMID: 20926620" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: IBUP_RASCL1hep + - id: "IBUP_RASCL1hep" - name: "thioesterification of ibuprofen_R in hepatocytes" - metabolites: !!omap - ibup_R_c: -1 @@ -306580,15 +306580,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151726 - - rxnFrom: Recon3D - - eccodes: 6.2.1.3 - - references: PMID: 10725307, PMID: 1859831, PMID: 8381432, PMID: 18988084, Graham, G. G., Williams, K. M. (2004). Aspirin ; Related Drugs, CRC Press 2004. + - gene_reaction_rule: "ENSG00000151726" + - rxnFrom: "Recon3D" + - eccodes: "6.2.1.3" + - references: "PMID: 10725307, PMID: 1859831, PMID: 8381432, PMID: 18988084, Graham, G. G., Williams, K. M. (2004). Aspirin ; Related Drugs, CRC Press 2004." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: IBUP_RCYP2hep + - id: "IBUP_RCYP2hep" - name: "oxidation of R-ibuprofen to 2-hydroxy-ibuprofen in heaptocytes" - metabolites: !!omap - 2hibup_R_r: 1 @@ -306600,15 +306600,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138109 or ENSG00000138115 or ENSG00000160868 or ENSG00000165841 - - rxnFrom: Recon3D - - eccodes: 1.14.13.-;1.14.14.1 - - references: PMID: 9296349, PMID: 18787056. + - gene_reaction_rule: "ENSG00000138109 or ENSG00000138115 or ENSG00000160868 or ENSG00000165841" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-;1.14.14.1" + - references: "PMID: 9296349, PMID: 18787056." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: IBUP_RCYP3hep + - id: "IBUP_RCYP3hep" - name: "oxidation of R-ibuprofen to 3-hydroxy-ibuprofen in heaptocytes" - metabolites: !!omap - 3hibup_R_r: 1 @@ -306620,15 +306620,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138109 or ENSG00000138115 or ENSG00000160868 or ENSG00000165841 - - rxnFrom: Recon3D - - eccodes: 1.14.13.-;1.14.14.1 - - references: PMID: 9296349, PMID: 18787056 + - gene_reaction_rule: "ENSG00000138109 or ENSG00000138115 or ENSG00000160868 or ENSG00000165841" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-;1.14.14.1" + - references: "PMID: 9296349, PMID: 18787056" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: IBUP_RCYPCARhep + - id: "IBUP_RCYPCARhep" - name: "oxidation of R-3-hydroxy ibuprofen to R-carboxy ibuprofen" - metabolites: !!omap - 3hibup_R_c: -1 @@ -306638,30 +306638,30 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138109 - - rxnFrom: Recon3D - - eccodes: 1.14.13.- - - references: PMID: 9515184, PMID: 12296989, PMID: 9296349. + - gene_reaction_rule: "ENSG00000138109" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-" + - references: "PMID: 9515184, PMID: 12296989, PMID: 9296349." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: IBUP_Rshep + - id: "IBUP_Rshep" - name: "chiral conversion of R to S form of iburpofen in hepatocytes" - metabolites: !!omap - ibupcoa_R_c: -1 - ibupcoa_S_c: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000242110 - - rxnFrom: Recon3D - - eccodes: 5.1.99.4 - - references: PMID: 8381432, Davies, N. M. (2004). Chirality in Drug Design ; Development, CRC Press 2004., PMID: 19949916 + - gene_reaction_rule: "ENSG00000242110" + - rxnFrom: "Recon3D" + - eccodes: "5.1.99.4" + - references: "PMID: 8381432, Davies, N. M. (2004). Chirality in Drug Design ; Development, CRC Press 2004., PMID: 19949916" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: IBUP_Rtdhep + - id: "IBUP_Rtdhep" - name: "uptake of ibuprofen-R into hepatocytes" - metabolites: !!omap - ibup_R_c: 1 @@ -306670,30 +306670,30 @@ - m03120s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9918568, PMID: 21389119, PMID: 10462545, PMID: 18309312, PMID: 12883891. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9918568, PMID: 21389119, PMID: 10462545, PMID: 18309312, PMID: 12883891." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: IBUP_Rtdu + - id: "IBUP_Rtdu" - name: "passive diffusion of ibuprofen_R" - metabolites: !!omap - ibup_R_c: 1 - ibup_R_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 20726987 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 20726987" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: IBUP_SACOT2 + - id: "IBUP_SACOT2" - name: "hydrolysis of ibuprofen-CoA in hepatocytes" - metabolites: !!omap - ibup_S_c: 1 @@ -306703,15 +306703,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000101473 or ENSG00000119673 or ENSG00000162390 or ENSG00000177465 - - rxnFrom: Recon3D - - eccodes: 3.1.2.2;3.1.2.27;3.1.2.- - - references: OMIM:609972, OMIM:614314, PMID: 9299485, OMIM:606803, + - gene_reaction_rule: "ENSG00000101473 or ENSG00000119673 or ENSG00000162390 or ENSG00000177465" + - rxnFrom: "Recon3D" + - eccodes: "3.1.2.2;3.1.2.27;3.1.2.-" + - references: "OMIM:609972, OMIM:614314, PMID: 9299485, OMIM:606803," - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: IBUP_SCONJhep + - id: "IBUP_SCONJhep" - name: "taurine conjugation of S-ibuprofen" - metabolites: !!omap - ibupcoa_S_c: -1 @@ -306721,15 +306721,15 @@ - tauribup_S_c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Graham, G. ; K. Williams (2004). Metabolism ; Pharmacokinetics of Ibuprofen. Aspirin ; Related Drugs, CRC Press. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Graham, G. ; K. Williams (2004). Metabolism ; Pharmacokinetics of Ibuprofen. Aspirin ; Related Drugs, CRC Press." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: IBUP_SCYP1hep + - id: "IBUP_SCYP1hep" - name: "oxidation of S-ibuprofen to 1-hydroxy ibuprofen" - metabolites: !!omap - 1hibup_S_r: 1 @@ -306741,15 +306741,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138109 - - rxnFrom: Recon3D - - eccodes: 1.14.13.- - - references: PMID: 12296989 + - gene_reaction_rule: "ENSG00000138109" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-" + - references: "PMID: 12296989" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: IBUP_SCYP2hep + - id: "IBUP_SCYP2hep" - name: "oxidation of S-ibuprofen to 2-hydroxy-ibuprofen in heaptocytes" - metabolites: !!omap - 2hibup_S_r: 1 @@ -306761,15 +306761,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138109 or ENSG00000138115 or ENSG00000160868 or ENSG00000165841 - - rxnFrom: Recon3D - - eccodes: 1.14.13.-;1.14.14.1 - - references: PMID: 9296349, PMID: 12296989, PMID: 18787056. + - gene_reaction_rule: "ENSG00000138109 or ENSG00000138115 or ENSG00000160868 or ENSG00000165841" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-;1.14.14.1" + - references: "PMID: 9296349, PMID: 12296989, PMID: 18787056." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: IBUP_SCYP3hep + - id: "IBUP_SCYP3hep" - name: "oxidation of S-ibuprofen to 3-hydroxy-ibuprofen in heaptocytes" - metabolites: !!omap - 3hibup_S_r: 1 @@ -306781,15 +306781,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138109 or ENSG00000138115 or ENSG00000160868 or ENSG00000165841 - - rxnFrom: Recon3D - - eccodes: 1.14.13.-;1.14.14.1 - - references: PMID: 9296349, PMID: 18787056. + - gene_reaction_rule: "ENSG00000138109 or ENSG00000138115 or ENSG00000160868 or ENSG00000165841" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-;1.14.14.1" + - references: "PMID: 9296349, PMID: 18787056." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: IBUP_SCYPCARhep + - id: "IBUP_SCYPCARhep" - name: "oxidation of S-3-hydroxy ibuprofen to S-carboxy ibuprofen" - metabolites: !!omap - 3hibup_S_c: -1 @@ -306799,15 +306799,15 @@ - m02630c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138109 - - rxnFrom: Recon3D - - eccodes: 1.14.13.- - - references: PMID: 9515184, PMID: 12296989, PMID: 9296349. + - gene_reaction_rule: "ENSG00000138109" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-" + - references: "PMID: 9515184, PMID: 12296989, PMID: 9296349." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: IBUP_Stbc + - id: "IBUP_Stbc" - name: "biliary excretion of ibuprofen from hepatocytes" - metabolites: !!omap - ibup_S_c: -1 @@ -306819,15 +306819,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Davies, N. M. (2004). Chirality in Drug Design ; Development, CRC Press 2004., PMID: 20032540 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Davies, N. M. (2004). Chirality in Drug Design ; Development, CRC Press 2004., PMID: 20032540" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: IBUP_Stdhep + - id: "IBUP_Stdhep" - name: "uptake of ibuprofen-S into hepatocytes" - metabolites: !!omap - ibup_S_c: 1 @@ -306836,45 +306836,45 @@ - m03120s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9918568, PMID: 21389119, PMID: 10462545, PMID: 18309312, PMID: 12883891. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9918568, PMID: 21389119, PMID: 10462545, PMID: 18309312, PMID: 12883891." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: IBUP_Stdu + - id: "IBUP_Stdu" - name: "passive diffusion of ibuprofen_S" - metabolites: !!omap - ibup_S_c: 1 - ibup_S_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 20726987 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 20726987" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: ISOLVSTAChep + - id: "ISOLVSTAChep" - name: "acid catalyzed rearrangement of 6-beta-hydroxy-lovastatin-acid form" - metabolites: !!omap - 6hlvstacid_c: -1 - isolvstacid_c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 7905377 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 7905377" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: ISOLVSTtbc + - id: "ISOLVSTtbc" - name: "release of 3-hydroxy-iso-delta-4,5-hydroxy acid form of lovastatin into bile" - metabolites: !!omap - isolvstacid_c: -1 @@ -306886,30 +306886,30 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000085563" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: LST4EXPTDhc + - id: "LST4EXPTDhc" - name: "uptake of Losartan-E3174 into hepatocytes via diffusion" - metabolites: !!omap - lst4exp_c: 1 - lst4exp_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16029066 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16029066" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: LST4EXPhr + - id: "LST4EXPhr" - name: "oxidation of losartan to active metabolite EXP3174 (M6) in hepatocytes" - metabolites: !!omap - lst4exp_r: 1 @@ -306919,15 +306919,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138109 or ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.13.- - - references: PMID: 16029066, PMID: 7736913, PMID: 1352222, PMID: 8529329, PMID: 7736926, PMID: 11408373 + - gene_reaction_rule: "ENSG00000138109 or ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-" + - references: "PMID: 16029066, PMID: 7736913, PMID: 1352222, PMID: 8529329, PMID: 7736926, PMID: 11408373" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: LST4EXPthc + - id: "LST4EXPthc" - name: "uptake of Losartan-E3174 into hepatocytes" - metabolites: !!omap - lst4exp_c: 1 @@ -306936,15 +306936,15 @@ - m01442s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 12024214 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 12024214" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: LSTN1GLUChr + - id: "LSTN1GLUChr" - name: "formation of losartan-N1-glucuronide in hepatocytes" - metabolites: !!omap - lstn1gluc_r: 1 @@ -306953,30 +306953,30 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000242515 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID: 18378273 + - gene_reaction_rule: "ENSG00000242515" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID: 18378273" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: LSTN1GLUCtev + - id: "LSTN1GLUCtev" - name: "efflux of Losartan-N1-glucuronide into hepatic vein" - metabolites: !!omap - lstn1gluc_c: -1 - lstn1gluc_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9918907, PMID: 16029066, PMID: 9518174, PMID: 1352222. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9918907, PMID: 16029066, PMID: 9518174, PMID: 1352222." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: LSTNtu + - id: "LSTNtu" - name: "efflux of losartan by P-gp from the enterocytes into lumen" - metabolites: !!omap - lstn_c: -1 @@ -306988,15 +306988,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: PMID: 20103563, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal. Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter. New York, Springer New York: 27-49. + - gene_reaction_rule: "ENSG00000085563" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "PMID: 20103563, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal. Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter. New York, Springer New York: 27-49." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: LSTNM1hr + - id: "LSTNM1hr" - name: "oxidation of losartan to Losartan-M1 in hepatocytes" - metabolites: !!omap - lstn_r: -1 @@ -307008,30 +307008,30 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138109 or ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.13.- - - references: PMID: 16029066, PMID: 1352222, PMID: 18378273 + - gene_reaction_rule: "ENSG00000138109 or ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-" + - references: "PMID: 16029066, PMID: 1352222, PMID: 18378273" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: LSTNM1tev + - id: "LSTNM1tev" - name: "efflux of Losartan-M1 into hepatic vein" - metabolites: !!omap - lstnm1_c: -1 - lstnm1_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9918907, PMID: 16029066, PMID: 9518174, PMID: 1352222. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9918907, PMID: 16029066, PMID: 9518174, PMID: 1352222." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: LSTNM2hr + - id: "LSTNM2hr" - name: "oxidation of losartan to Losartan-M2 in hepatocytes" - metabolites: !!omap - lstn_r: -1 @@ -307043,30 +307043,30 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138109 or ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.13.- - - references: PMID: 16029066, PMID: 1352222, PMID: 18378273 + - gene_reaction_rule: "ENSG00000138109 or ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-" + - references: "PMID: 16029066, PMID: 1352222, PMID: 18378273" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: LSTNM2tev + - id: "LSTNM2tev" - name: "efflux of Losartan-M2 into hepatic vein" - metabolites: !!omap - lstnm2_c: -1 - lstnm2_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9918907, PMID: 16029066, PMID: 9518174, PMID: 1352222. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9918907, PMID: 16029066, PMID: 9518174, PMID: 1352222." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: LSTNM4hr + - id: "LSTNM4hr" - name: "glucuronidation of losartan-M6 to losartan-M4 in hepatocytes" - metabolites: !!omap - lst4exp_r: -1 @@ -307075,30 +307075,30 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16029066, PMID: 1352222, PMID: 18378273 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16029066, PMID: 1352222, PMID: 18378273" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: LSTNM4tev + - id: "LSTNM4tev" - name: "efflux of Losartan-M4 (glucuronide derivative) into hepatic vein" - metabolites: !!omap - lstnm4_c: -1 - lstnm4_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9918907, PMID: 16029066, PMID: 9518174, PMID: 1352222. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9918907, PMID: 16029066, PMID: 9518174, PMID: 1352222." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: LSTNM5hr + - id: "LSTNM5hr" - name: "oxidation of losartan to Losartan-M5 in hepatocytes" - metabolites: !!omap - lstn_r: -1 @@ -307110,45 +307110,45 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138109 or ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.13.- - - references: PMID: 16029066, PMID: 1352222, PMID: 18378273 + - gene_reaction_rule: "ENSG00000138109 or ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-" + - references: "PMID: 16029066, PMID: 1352222, PMID: 18378273" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: LSTNM5tev + - id: "LSTNM5tev" - name: "efflux of Losartan-M5 into hepatic vein" - metabolites: !!omap - lstnm5_c: -1 - lstnm5_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9918907, PMID: 16029066, PMID: 9518174, PMID: 1352222. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9918907, PMID: 16029066, PMID: 9518174, PMID: 1352222." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: LSTNM7TDhc + - id: "LSTNM7TDhc" - name: "uptake of Losartan-N2-glucuronide / Losartan-M7 into hepatocytes via diffusion" - metabolites: !!omap - lstnm7_c: 1 - lstnm7_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16029066 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16029066" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: LSTNM7hr + - id: "LSTNM7hr" - name: "glucuronidation of losartan to losartan-M7/Losartan-N2-glucuronide in hepatocytes" - metabolites: !!omap - lstn_r: -1 @@ -307157,15 +307157,15 @@ - m03109r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000171234 or ENSG00000197888 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID: 16029066, PMID: 1352222, PMID: 18378273 + - gene_reaction_rule: "ENSG00000171234 or ENSG00000197888 or ENSG00000241119 or ENSG00000241635 or ENSG00000242366 or ENSG00000242515 or ENSG00000243135 or ENSG00000244122 or ENSG00000244474" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID: 16029066, PMID: 1352222, PMID: 18378273" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: LSTNM7thc + - id: "LSTNM7thc" - name: "uptake of Losartan-N2-glucuronide / Losartan-M7 into hepatocytes" - metabolites: !!omap - lstnm7_c: 1 @@ -307174,15 +307174,15 @@ - m01442s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 12024214 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 12024214" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: LSTNRATt + - id: "LSTNRATt" - name: "uptake of losartan via antiport into enterocytes" - metabolites: !!omap - lstn_c: 1 @@ -307191,30 +307191,30 @@ - m01442s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 12024214 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 12024214" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: LSTNtd + - id: "LSTNtd" - name: "uptake of losartan via diffusion into enterocytes" - metabolites: !!omap - lstn_c: 1 - lstn_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 10725273, PMID: 18824524 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 10725273, PMID: 18824524" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: LVACLAChep + - id: "LVACLAChep" - name: "reconversion of open acid form to lactone form of lovastatin" - metabolites: !!omap - lvst_c: 1 @@ -307224,15 +307224,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11560866, PMID: 7905377, PMID: 11950779 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11560866, PMID: 7905377, PMID: 11950779" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: LVSTACIDhep + - id: "LVSTACIDhep" - name: "conversion of pro-durg lovastatin to active hydroxyacid form in hepatocytes" - metabolites: !!omap - lvst_c: -1 @@ -307241,15 +307241,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105852 - - rxnFrom: Recon3D - - eccodes: 3.1.1.2 - - references: PMID: 9929499, PMID: 15772423, PMID: 1929403 + - gene_reaction_rule: "ENSG00000105852" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.2" + - references: "PMID: 9929499, PMID: 15772423, PMID: 1929403" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: LVSTACIDtu + - id: "LVSTACIDtu" - name: "efflux of lovastatin acid by P-gp from the enterocytes into lumen" - metabolites: !!omap - lvstacid_c: -1 @@ -307261,15 +307261,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: PMID: 20103563, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal. Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter. New York, Springer New York: 27-49. + - gene_reaction_rule: "ENSG00000085563" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "PMID: 20103563, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal. Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter. New York, Springer New York: 27-49." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: LVSTACOXD6Hhep + - id: "LVSTACOXD6Hhep" - name: "hydroxylation of lovastatin-hydroxyacid form to 6-beta-hydroxy-lovastatin-acid form" - metabolites: !!omap - 6hlvstacid_r: 1 @@ -307281,15 +307281,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000106258 or ENSG00000138115 or ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.13.-;1.14.14.1 - - references: PMID: 15998357, + - gene_reaction_rule: "ENSG00000106258 or ENSG00000138115 or ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-;1.14.14.1" + - references: "PMID: 15998357," - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: LVSTACOXD6MEhep + - id: "LVSTACOXD6MEhep" - name: "hydroxylation of lovastatin-hydroxyacid form to 6-beta-hydroxy-lovastatin-acid form" - metabolites: !!omap - 6melvacid_r: 1 @@ -307301,15 +307301,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000106258 or ENSG00000138115 or ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.13.-;1.14.14.1 - - references: PMID: 15998357, + - gene_reaction_rule: "ENSG00000106258 or ENSG00000138115 or ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-;1.14.14.1" + - references: "PMID: 15998357," - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: LVSTOXD3Hhep + - id: "LVSTOXD3Hhep" - name: "oxidation of lovastatin to 3-hydroxy-lovastatin in hepatocytes" - metabolites: !!omap - 3hlvst_r: 1 @@ -307321,15 +307321,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000106258 or ENSG00000138115 or ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.13.-;1.14.14.1 - - references: PMID: 1929403, PMID: 15998357,PMID: 11029845. + - gene_reaction_rule: "ENSG00000106258 or ENSG00000138115 or ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-;1.14.14.1" + - references: "PMID: 1929403, PMID: 15998357,PMID: 11029845." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: LVSTOXD6Hhep + - id: "LVSTOXD6Hhep" - name: "oxidation of lovastatin to 6-beta-hydroxy-lovastatin in hepatocytes" - metabolites: !!omap - 6hlvst_r: 1 @@ -307341,15 +307341,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000106258 or ENSG00000138115 or ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.13.-;1.14.14.1 - - references: PMID: 1929403, PMID: 15998357,PMID: 11029845. + - gene_reaction_rule: "ENSG00000106258 or ENSG00000138115 or ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-;1.14.14.1" + - references: "PMID: 1929403, PMID: 15998357,PMID: 11029845." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: LVSTOXD6METhep + - id: "LVSTOXD6METhep" - name: "oxidation of lovastatin to 6-exomethylene-lovastatin in hepatocytes" - metabolites: !!omap - 6melvst_r: 1 @@ -307361,15 +307361,15 @@ - m02630r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000106258 or ENSG00000138115 or ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.13.-;1.14.14.1 - - references: PMID: 1929403, PMID: 15998357,PMID: 11029845. + - gene_reaction_rule: "ENSG00000106258 or ENSG00000138115 or ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-;1.14.14.1" + - references: "PMID: 1929403, PMID: 15998357,PMID: 11029845." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: LVSTPGPtu + - id: "LVSTPGPtu" - name: "efflux of lovastatin lactone by P-gp from the enterocytes into lumen" - metabolites: !!omap - lvst_c: -1 @@ -307381,60 +307381,60 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: PMID: 20103563, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal. Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter. New York, Springer New York: 27-49. + - gene_reaction_rule: "ENSG00000085563" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "PMID: 20103563, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal. Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter. New York, Springer New York: 27-49." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: LVSTtu + - id: "LVSTtu" - name: "uptake of lovastatin by enterocytes" - metabolites: !!omap - lvst_c: 1 - lvst_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16714062 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16714062" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: MDZGLCtev + - id: "MDZGLCtev" - name: "efflux of midazolam-glucuronide into hepatic vein" - metabolites: !!omap - mdzglc_c: -1 - mdzglc_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 18256203, PMID: 7199324 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 18256203, PMID: 7199324" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: MDZtd + - id: "MDZtd" - name: "uptake of midazolam by enterocytes" - metabolites: !!omap - mdz_c: 1 - mdz_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 17498391 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 17498391" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: MDZtu + - id: "MDZtu" - name: "efflux of midazolam by P-gp from the enterocytes into lumen" - metabolites: !!omap - m01285c: 1 @@ -307446,15 +307446,15 @@ - mdz_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: PMID: 12751631 + - gene_reaction_rule: "ENSG00000085563" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "PMID: 12751631" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: MERACMPtep + - id: "MERACMPtep" - name: "efflux of acetaminophen-mercapturate-conjugate from enterocytes into portal blood" - metabolites: !!omap - m01285c: 1 @@ -307466,15 +307466,15 @@ - meracmp_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108846 - - rxnFrom: Recon3D - - eccodes: - - references: Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal. Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49. + - gene_reaction_rule: "ENSG00000108846" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal. Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: MERACMPthc + - id: "MERACMPthc" - name: "uptake of acetaminophen-mercapturate-conjugate by the hepatocytes" - metabolites: !!omap - m01285c: 1 @@ -307486,15 +307486,15 @@ - meracmp_s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108846 - - rxnFrom: Recon3D - - eccodes: - - references: Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal. Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49. + - gene_reaction_rule: "ENSG00000108846" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal. Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: MHGLZABCt + - id: "MHGLZABCt" - name: "excretion of Methyl-hydroxy-gliclazide into bile" - metabolites: !!omap - m01285c: 1 @@ -307506,15 +307506,15 @@ - mhglz_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Sarkar, A., Tiwari, A., Bhasin, P. S., Mitra, M. (2011). Pharmacological ; Pharmaceutical Profile of Gliclazide: A Review. Journal of Applied Pharmaceutical Science 1(9): 11-19, Zayed, M., F. Nour El-Dien, et al. (2010). Mass spectra of gliclazide drug at various ion sources temperature: Its thermal behavior ; molecular orbital calculations. Journal of Thermal Analysis ; Calorimetry 102(1): 305-312, PMID: 1794262 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Sarkar, A., Tiwari, A., Bhasin, P. S., Mitra, M. (2011). Pharmacological ; Pharmaceutical Profile of Gliclazide: A Review. Journal of Applied Pharmaceutical Science 1(9): 11-19, Zayed, M., F. Nour El-Dien, et al. (2010). Mass spectra of gliclazide drug at various ion sources temperature: Its thermal behavior ; molecular orbital calculations. Journal of Thermal Analysis ; Calorimetry 102(1): 305-312, PMID: 1794262" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: MHGLZhr + - id: "MHGLZhr" - name: "oxidation of gliclazide to methyl-hydroxy-gliclazide in hepatocytes" - metabolites: !!omap - glz_r: -1 @@ -307526,30 +307526,30 @@ - mhglz_r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108242 or ENSG00000138109 or ENSG00000165841 - - rxnFrom: Recon3D - - eccodes: 1.14.13.-;1.14.14.1 - - references: PMID: 18204476, PMID: 1794262, PMID: 17517049, PMID: 8825191, PMID: 3984386 + - gene_reaction_rule: "ENSG00000108242 or ENSG00000138109 or ENSG00000165841" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-;1.14.14.1" + - references: "PMID: 18204476, PMID: 1794262, PMID: 17517049, PMID: 8825191, PMID: 3984386" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: MHGLZtev + - id: "MHGLZtev" - name: "excretion of Methyl-hydroxy-gliclazide into hepatic vein" - metabolites: !!omap - mhglz_c: -1 - mhglz_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8825191. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8825191." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: NDERSVhc + - id: "NDERSVhc" - name: "demethylation of rosuvastatin in hepatocytes" - metabolites: !!omap - m02039r: -1 @@ -307563,15 +307563,15 @@ - rsv_r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138109 or ENSG00000165841 - - rxnFrom: Recon3D - - eccodes: 1.14.13.- - - references: PMID: 14693307, PMID: 11256847, PMID: 22108655 + - gene_reaction_rule: "ENSG00000138109 or ENSG00000165841" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-" + - references: "PMID: 14693307, PMID: 11256847, PMID: 22108655" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: NDERSVteb + - id: "NDERSVteb" - name: "efflux of N-desmethyl-rosuvastatin into bile" - metabolites: !!omap - m01285c: 1 @@ -307583,15 +307583,15 @@ - ndersv_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000118777 - - rxnFrom: Recon3D - - eccodes: - - references: Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49. + - gene_reaction_rule: "ENSG00000118777" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: NFDACOXDhc + - id: "NFDACOXDhc" - name: "oxidation of acid metabolite of nifedipine in hepatocytes" - metabolites: !!omap - m02039r: -1 @@ -307603,30 +307603,30 @@ - nfdoh_r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000106258 or ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.13.-;1.14.14.1 - - references: PMID: 3203042, PMID: 12814972, PMID: 3609112 + - gene_reaction_rule: "ENSG00000106258 or ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-;1.14.14.1" + - references: "PMID: 3203042, PMID: 12814972, PMID: 3609112" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: NFDACtep + - id: "NFDACtep" - name: "exit of acid metabolite of nifedipine into portal vein" - metabolites: !!omap - nfdac_c: -1 - nfdac_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 3203042 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 3203042" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: NFDDMEThr + - id: "NFDDMEThr" - name: "demethylation of nitropyridine metabolite of nifedipine in hepatocytes" - metabolites: !!omap - m02871r: -1 @@ -307635,15 +307635,15 @@ - nfdnpy_r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 3203042, PMID: 12814972, PMID: 3609112 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 3203042, PMID: 12814972, PMID: 3609112" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: NFDLAChc + - id: "NFDLAChc" - name: "lactonization of hydroxy metabolite of nifedipine in hepatocytes" - metabolites: !!omap - m02039c: -1 @@ -307652,60 +307652,60 @@ - nfdoh_c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 3203042, PMID: 12814972, PMID: 3609112 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 3203042, PMID: 12814972, PMID: 3609112" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: NFDLACtep + - id: "NFDLACtep" - name: "exit of lactone form of nifedipine into portal vein" - metabolites: !!omap - nfdlac_c: -1 - nfdlac_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 3203042 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 3203042" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: NFDNPYtep + - id: "NFDNPYtep" - name: "exit of nitropyridine metabolite of nifedipine into portal vein" - metabolites: !!omap - nfdnpy_c: -1 - nfdnpy_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 3203042 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 3203042" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: NFDOHtep + - id: "NFDOHtep" - name: "exit of hydroxy metabolite of nifedipine into portal vein" - metabolites: !!omap - nfdoh_c: -1 - nfdoh_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 3203042 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 3203042" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: NFDOXDhc + - id: "NFDOXDhc" - name: "oxidation of nifepine to nitropyridine metabolite in hepatocytes" - metabolites: !!omap - m02039c: 1 @@ -307715,30 +307715,30 @@ - nfdnpy_c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 3203042, PMID: 12814972, PMID: 3609112 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 3203042, PMID: 12814972, PMID: 3609112" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: NFDtd + - id: "NFDtd" - name: "uptake of nifedipine into enterocytes" - metabolites: !!omap - nfd_c: 1 - nfd_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: OXYP1CONJ + - id: "OXYP1CONJ" - name: "conjugation of oxypurinol to oxypurinol-1-riboside" - metabolites: !!omap - m02039c: 1 @@ -307748,15 +307748,15 @@ - udprib_c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Gibson, G. G., Skett, P (2001). Introduction to Drug Metabolism, Nelson Thornes Publishers., PMID: 17655371, + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Gibson, G. G., Skett, P (2001). Introduction to Drug Metabolism, Nelson Thornes Publishers., PMID: 17655371," - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: OXYP2CONJ + - id: "OXYP2CONJ" - name: "conjugation of oxypurinol to oxypurinol-7-riboside" - metabolites: !!omap - m02039c: 1 @@ -307766,60 +307766,60 @@ - udprib_c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Gibson, G. G., Skett, P (2001). Introduction to Drug Metabolism, Nelson Thornes Publishers., PMID: 17655371, + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Gibson, G. G., Skett, P (2001). Introduction to Drug Metabolism, Nelson Thornes Publishers., PMID: 17655371," - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: OXYPR1tehv + - id: "OXYPR1tehv" - name: "release of oxypurinol-1-riboside into hepatic vein" - metabolites: !!omap - oxy1rb_c: -1 - oxy1rb_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 17655371 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 17655371" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: OXYPR7tehv + - id: "OXYPR7tehv" - name: "release of oxypurinol-7-riboside into hepatic vein" - metabolites: !!omap - oxy7rb_c: -1 - oxy7rb_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 17655371 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 17655371" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: OXYPthc + - id: "OXYPthc" - name: "uptake of oxypurinol by hepatocytes" - metabolites: !!omap - oxyp_c: 1 - oxyp_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137204 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 17655371 + - gene_reaction_rule: "ENSG00000137204" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 17655371" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: OXYPtepv + - id: "OXYPtepv" - name: "release of oxypurinol into portal blood" - metabolites: !!omap - m02039c: -1 @@ -307828,15 +307828,15 @@ - oxyp_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 17655371 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 17655371" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: PROFVSCOAhc + - id: "PROFVSCOAhc" - name: "beta oxidation (4 cycles) & CYP oxidation of fluvastatin-CoA to des-isoproylpropionic-acid-fluvastatin-CoA in hepatocytes" - metabolites: !!omap - fvscoa_p: -1 @@ -307853,15 +307853,15 @@ - profvscoa_p: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000060971 or ENSG00000113790 or ENSG00000133835 or ENSG00000138109 or ENSG00000161533 - - rxnFrom: Recon3D - - eccodes: 1.3.3.6;4.2.1.17;1.1.1.35;2.3.1.16;1.14.13.- - - references: PMID: 9804052, PMID: 8104114 + - gene_reaction_rule: "ENSG00000060971 or ENSG00000113790 or ENSG00000133835 or ENSG00000138109 or ENSG00000161533" + - rxnFrom: "Recon3D" + - eccodes: "1.3.3.6;4.2.1.17;1.1.1.35;2.3.1.16;1.14.13.-" + - references: "PMID: 9804052, PMID: 8104114" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: PROFVShc + - id: "PROFVShc" - name: "thioesterase/ hydrolase for release of des-isoproylpropionic-acid-fluvastatin in hepatocytes" - metabolites: !!omap - m01597c: 1 @@ -307873,30 +307873,30 @@ - profvscoa_c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9804052, PMID: 8104114 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9804052, PMID: 8104114" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: PROFVStev + - id: "PROFVStev" - name: "exit of des-isoproylpropionic-acid-fluvastatin into hepatic vein" - metabolites: !!omap - profvs_c: -1 - profvs_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8104114, PMID: 11368292 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8104114, PMID: 11368292" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: PTVSTATPtu + - id: "PTVSTATPtu" - name: "efflux of pitavastatin by BCRP from the enterocytes into lumen" - metabolites: !!omap - m01285c: 1 @@ -307908,15 +307908,15 @@ - ptvst_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000118777 - - rxnFrom: Recon3D - - eccodes: - - references: Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal. Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter. New York, Springer New York: 27-49., PMID: 23140240 + - gene_reaction_rule: "ENSG00000118777" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal. Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter. New York, Springer New York: 27-49., PMID: 23140240" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: PTVSTGLUChc + - id: "PTVSTGLUChc" - name: "glucuronidation of pitavastatin in hepatocytes" - metabolites: !!omap - m03106r: 2 @@ -307925,15 +307925,15 @@ - ptvstgluc_r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000167165 or ENSG00000171234 or ENSG00000241635 or ENSG00000243135 or ENSG00000244474 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID: 12519692, PMID: 15801541, PMID: 11950779 + - gene_reaction_rule: "ENSG00000167165 or ENSG00000171234 or ENSG00000241635 or ENSG00000243135 or ENSG00000244474" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID: 12519692, PMID: 15801541, PMID: 11950779" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: PTVSTLAChc + - id: "PTVSTLAChc" - name: "spontaneous conversion of glucuronide to lactone form of pitavastatin in hepatocytes" - metabolites: !!omap - m01973r: 2 @@ -307941,30 +307941,30 @@ - ptvstlac_r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 12519692, PMID: 15801541, PMID: 11950779 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 12519692, PMID: 15801541, PMID: 11950779" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: PTVSTLACtev + - id: "PTVSTLACtev" - name: "exit of pravastatin-lactone into hepatic vein" - metabolites: !!omap - ptvstlac_c: -1 - ptvstlac_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 12519692, PMID: 22356292 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 12519692, PMID: 22356292" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: PTVSTM13hr + - id: "PTVSTM13hr" - name: "oxidation of pitavastatin to pitavastatin-M13 in hepatocytes" - metabolites: !!omap - m02039r: -1 @@ -307976,15 +307976,15 @@ - ptvstm13_r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138109 or ENSG00000138115 - - rxnFrom: Recon3D - - eccodes: 1.14.13.-;1.14.14.1 - - references: PMID: 12519692, PMID: 10077432 + - gene_reaction_rule: "ENSG00000138109 or ENSG00000138115" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-;1.14.14.1" + - references: "PMID: 12519692, PMID: 10077432" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: PTVSTM3eb + - id: "PTVSTM3eb" - name: "efflux of pitavastatin-M3 into bile" - metabolites: !!omap - m01285c: 1 @@ -307996,15 +307996,15 @@ - ptvstm3_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000118777 - - rxnFrom: Recon3D - - eccodes: - - references: Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49. + - gene_reaction_rule: "ENSG00000118777" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: PTVSTM3hc + - id: "PTVSTM3hc" - name: "oxidation of pitavastatin to pitavastatin-M3 in hepatocytes" - metabolites: !!omap - m02040r: 2 @@ -308013,15 +308013,15 @@ - ptvstm3_r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.13.- - - references: PMID: 12519692, PMID: 10077432 + - gene_reaction_rule: "ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-" + - references: "PMID: 12519692, PMID: 10077432" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: PTVSThc + - id: "PTVSThc" - name: "hydrolysis of latone to free acid form of pitavastatin in hepatocytes" - metabolites: !!omap - m02039r: 2 @@ -308030,30 +308030,30 @@ - ptvstlac_r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105852 - - rxnFrom: Recon3D - - eccodes: 3.1.1.2 - - references: PMID: 12519692, PMID: 15801541, PMID: 11950779 + - gene_reaction_rule: "ENSG00000105852" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.2" + - references: "PMID: 12519692, PMID: 15801541, PMID: 11950779" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: PTVSTtep + - id: "PTVSTtep" - name: "efflux of pitavastatin from enterocytes into portal blood" - metabolites: !!omap - ptvst_c: -1 - ptvst_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 17721009, PMID: 17657716, PMID: 17086094 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 17721009, PMID: 17657716, PMID: 17086094" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: PTVSTtu + - id: "PTVSTtu" - name: "uptake of pitavastatin by enterocytes" - metabolites: !!omap - m02046c: -1 @@ -308062,15 +308062,15 @@ - ptvst_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 or ENSG00000137491 - - rxnFrom: Recon3D - - eccodes: - - references: Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49. + - gene_reaction_rule: "ENSG00000084453 or ENSG00000137491" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: PVSATPtu + - id: "PVSATPtu" - name: "pravastatin efflux into lumen for excretion into feces" - metabolites: !!omap - m01285c: 1 @@ -308082,15 +308082,15 @@ - pvs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000118777 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 17177112 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000118777" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 17177112" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: PVSGLUChc + - id: "PVSGLUChc" - name: "glucuronidation of pravastatin in hepatocytes" - metabolites: !!omap - m02039r: 1 @@ -308100,15 +308100,15 @@ - pvsgluc_r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 1680649, PMID: 11950779 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 1680649, PMID: 11950779" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: PVSGLUCteb + - id: "PVSGLUCteb" - name: "efflux of pravastatin glucuronide into bile" - metabolites: !!omap - m01285c: 1 @@ -308120,30 +308120,30 @@ - pvsgluc_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000073734 or ENSG00000118777 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16714062, PMID: 17177112 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000073734 or ENSG00000118777" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16714062, PMID: 17177112" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: PVSGLUCtev + - id: "PVSGLUCtev" - name: "exit of pravastatin glucuronide into hepatic vein" - metabolites: !!omap - pvsgluc_c: -1 - pvsgluc_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 1680649, PMID: 11192473, PMID: 9804052, PMID: 16714062, PMID: 18563955 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 1680649, PMID: 11192473, PMID: 9804052, PMID: 16714062, PMID: 18563955" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: PVSHtu + - id: "PVSHtu" - name: "uptake of pravastatin by enterocytes via proton coupled mechanism" - metabolites: !!omap - m02039c: 1 @@ -308152,15 +308152,15 @@ - pvs_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11192473, PMID: 1680649, PMID: 11192473 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11192473, PMID: 1680649, PMID: 11192473" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: PVSOATPtu + - id: "PVSOATPtu" - name: "uptake of pravastatin by enterocytes" - metabolites: !!omap - m02046c: -1 @@ -308169,30 +308169,30 @@ - pvs_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000137491 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 12724351, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49. + - gene_reaction_rule: "ENSG00000137491" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 12724351, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: PVStep + - id: "PVStep" - name: "pravastatin exit into portal blood" - metabolites: !!omap - pvs_c: -1 - pvs_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11192473 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11192473" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: RSVATPtu + - id: "RSVATPtu" - name: "efflux of rosuvastatin by BCRP from the enterocytes into lumen" - metabolites: !!omap - m01285c: 1 @@ -308204,15 +308204,15 @@ - rsv_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000118777 - - rxnFrom: Recon3D - - eccodes: - - references: Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal. Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter. New York, Springer New York: 27-49., PMID: 23140240 + - gene_reaction_rule: "ENSG00000118777" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal. Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter. New York, Springer New York: 27-49., PMID: 23140240" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: RSVGLUChc + - id: "RSVGLUChc" - name: "glucuronidation of rosuvastatin in hepatocytes" - metabolites: !!omap - m03106r: 2 @@ -308221,15 +308221,15 @@ - rsvgluc_r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 14693307, PMID: 11256847, PMID: 22108655 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 14693307, PMID: 11256847, PMID: 22108655" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: RSVLAChv + - id: "RSVLAChv" - name: "spontaneous conversion to rosuvastatin-5S-lactone in hepatocytes" - metabolites: !!omap - m01973r: 2 @@ -308237,15 +308237,15 @@ - rsvlac_r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 14693307, PMID: 11256847, PMID: 22108655, PMID: 11950779, PMID: 15801541 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 14693307, PMID: 11256847, PMID: 22108655, PMID: 11950779, PMID: 15801541" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: RSVLACteb + - id: "RSVLACteb" - name: "efflux of rosuvastatin-5S-lactone into bile" - metabolites: !!omap - m01285c: 1 @@ -308257,15 +308257,15 @@ - rsvlac_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000118777 - - rxnFrom: Recon3D - - eccodes: - - references: Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49. + - gene_reaction_rule: "ENSG00000118777" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: RSVSPONhc + - id: "RSVSPONhc" - name: "conversion of lactone to open acid form of rosuvastatin" - metabolites: !!omap - m02039c: 2 @@ -308274,15 +308274,15 @@ - rsvlac_c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105852 - - rxnFrom: Recon3D - - eccodes: 3.1.1.81 - - references: PMID: 14693307, PMID: 11256847, PMID: 22108655, PMID: 11950779, PMID: 15801541 + - gene_reaction_rule: "ENSG00000105852" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.81" + - references: "PMID: 14693307, PMID: 11256847, PMID: 22108655, PMID: 11950779, PMID: 15801541" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: RSVhc + - id: "RSVhc" - name: "beta-glucuronidase of rosuvastatin-glucuronide in hepatocytes" - metabolites: !!omap - m01973r: 2 @@ -308292,30 +308292,30 @@ - rsvgluc_r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 14693307, PMID: 11256847, PMID: 22108655, PMID: 11950779, PMID: 15801541 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 14693307, PMID: 11256847, PMID: 22108655, PMID: 11950779, PMID: 15801541" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: RSVtev + - id: "RSVtev" - name: "exit of rosuvastatin into hepatic vein" - metabolites: !!omap - rsv_c: -1 - rsv_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11256847, PMID: 14693307 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11256847, PMID: 14693307" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: RSVtu + - id: "RSVtu" - name: "uptake of rosuvastatin by enterocytes" - metabolites: !!omap - m02046c: -1 @@ -308324,15 +308324,15 @@ - rsv_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000084453 or ENSG00000137491 - - rxnFrom: Recon3D - - eccodes: - - references: Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49. + - gene_reaction_rule: "ENSG00000084453 or ENSG00000137491" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: S3MEACMPhc + - id: "S3MEACMPhc" - name: "sulphation of 3-methoxy-acetaminophen in hepatocytes" - metabolites: !!omap - 3meacmp_c: -1 @@ -308343,15 +308343,15 @@ - s3meacmp_c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 1026559, PMID: 11215692, Graham, G. ; M. Hicks (2004). Pharmacokinetics ; Metabolism of Paracetamol (Acetaminophen). Aspirin ; Related Drugs, CRC Press. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 1026559, PMID: 11215692, Graham, G. ; M. Hicks (2004). Pharmacokinetics ; Metabolism of Paracetamol (Acetaminophen). Aspirin ; Related Drugs, CRC Press." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: S3MEACMPtev + - id: "S3MEACMPtev" - name: "efflux of sulphate-conjugate-3-methoxy-acetaminophen into hepatic vein" - metabolites: !!omap - m01285c: 1 @@ -308363,15 +308363,15 @@ - s3meacmp_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 1026559, PMID: 11215692, Graham, G. ; M. Hicks (2004). Pharmacokinetics ; Metabolism of Paracetamol (Acetaminophen). Aspirin ; Related Drugs, CRC Press. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 1026559, PMID: 11215692, Graham, G. ; M. Hicks (2004). Pharmacokinetics ; Metabolism of Paracetamol (Acetaminophen). Aspirin ; Related Drugs, CRC Press." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: SMVACIDATPteb + - id: "SMVACIDATPteb" - name: "efflux of simvastatin dihydroxy acid form into bile" - metabolites: !!omap - m01285c: 1 @@ -308383,15 +308383,15 @@ - smvacid_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 - - rxnFrom: Recon3D - - eccodes: - - references: Brunton, L., Lazo, J., Parker, K. (2006). Goodman & Gilmans: The pharmacological basis of therapeutics, The McGraw-Hill companies, PMID: 19482594, PMID: 16321621, PMID: 15497697. + - gene_reaction_rule: "ENSG00000085563" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Brunton, L., Lazo, J., Parker, K. (2006). Goodman & Gilmans: The pharmacological basis of therapeutics, The McGraw-Hill companies, PMID: 19482594, PMID: 16321621, PMID: 15497697." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: SMVACIDhep + - id: "SMVACIDhep" - name: "beta-glucuronidation of simvastatin-acyl-glucuronide to simvastatin dihydroxy acid form" - metabolites: !!omap - m01973r: 1 @@ -308401,30 +308401,30 @@ - smvacid_r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000169919 - - rxnFrom: Recon3D - - eccodes: 3.2.1.31 - - references: PMID: 11950779 + - gene_reaction_rule: "ENSG00000169919" + - rxnFrom: "Recon3D" + - eccodes: "3.2.1.31" + - references: "PMID: 11950779" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: SMVACIDtev + - id: "SMVACIDtev" - name: "efflux of simvastatin dihydroxy acid form into hepatic vein" - metabolites: !!omap - smvacid_c: -1 - smvacid_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 1971563. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 1971563." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: SMVtu + - id: "SMVtu" - name: "efflux of simvastatin by P-gp from the enterocytes into lumen" - metabolites: !!omap - m01285c: 1 @@ -308436,15 +308436,15 @@ - smv_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 - - rxnFrom: Recon3D - - eccodes: 3.6.3.44 - - references: PMID: 15616150 + - gene_reaction_rule: "ENSG00000085563" + - rxnFrom: "Recon3D" + - eccodes: "3.6.3.44" + - references: "PMID: 15616150" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: SMVGLUCLAChep + - id: "SMVGLUCLAChep" - name: "spontaneous conversion of glucuronide to lactone form of simvastatin" - metabolites: !!omap - m01973r: 1 @@ -308452,15 +308452,15 @@ - smv_r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11950779 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11950779" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: SMVGLUChep + - id: "SMVGLUChep" - name: "glucuronidation of the open acid form of simvastatin" - metabolites: !!omap - m03106r: 1 @@ -308469,15 +308469,15 @@ - smvacid_r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000241635 or ENSG00000243135 - - rxnFrom: Recon3D - - eccodes: 2.4.1.17 - - references: PMID: 11950779 + - gene_reaction_rule: "ENSG00000241635 or ENSG00000243135" + - rxnFrom: "Recon3D" + - eccodes: "2.4.1.17" + - references: "PMID: 11950779" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: SMVHYDROhep + - id: "SMVHYDROhep" - name: "conversion of simvastatin pro-drug to active form" - metabolites: !!omap - m02039c: 1 @@ -308486,15 +308486,15 @@ - smvacid_c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000105852 - - rxnFrom: Recon3D - - eccodes: 3.1.1.2 - - references: PMID: 1976071, PMID: 9321523, PMID: 1971563, PMID: 11950779 + - gene_reaction_rule: "ENSG00000105852" + - rxnFrom: "Recon3D" + - eccodes: "3.1.1.2" + - references: "PMID: 1976071, PMID: 9321523, PMID: 1971563, PMID: 11950779" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: SMVLAChep + - id: "SMVLAChep" - name: "conversion of open acid form to lactone form of simvastatin" - metabolites: !!omap - m01334c: 1 @@ -308504,30 +308504,30 @@ - smvacid_c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11950779 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11950779" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: SMVtv + - id: "SMVtv" - name: "uptake of simvastatin by enterocytes" - metabolites: !!omap - smv_c: 1 - smv_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16714062 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16714062" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: SMVthep + - id: "SMVthep" - name: "uptake of simvastatin by hepatocytes" - metabolites: !!omap - m02046c: -1 @@ -308536,15 +308536,15 @@ - smv_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000134538 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 21245207, PMID: 19785645, PMID: 21942630, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49, PMID: 21436344. + - gene_reaction_rule: "ENSG00000134538" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 21245207, PMID: 19785645, PMID: 21942630, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49, PMID: 21436344." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: STACMPhc + - id: "STACMPhc" - name: "sulphation of thiomethyl-acetaminophen conjugate in hepatocytes" - metabolites: !!omap - m02039c: 1 @@ -308554,15 +308554,15 @@ - tmacmp_c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Graham, G. ; M. Hicks (2004). Pharmacokinetics ; Metabolism of Paracetamol (Acetaminophen). Aspirin ; Related Drugs, CRC Press., PMID: 1026559. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Graham, G. ; M. Hicks (2004). Pharmacokinetics ; Metabolism of Paracetamol (Acetaminophen). Aspirin ; Related Drugs, CRC Press., PMID: 1026559." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: STACMPtev + - id: "STACMPtev" - name: "efflux of sulphate-thiomethyl-acetaminophen conjugate into hepatic vein" - metabolites: !!omap - m01285c: 1 @@ -308574,15 +308574,15 @@ - stacmp_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 1026559, PMID: 11215692, Graham, G. ; M. Hicks (2004). Pharmacokinetics ; Metabolism of Paracetamol (Acetaminophen). Aspirin ; Related Drugs, CRC Press. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 1026559, PMID: 11215692, Graham, G. ; M. Hicks (2004). Pharmacokinetics ; Metabolism of Paracetamol (Acetaminophen). Aspirin ; Related Drugs, CRC Press." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: SULPACMPtev + - id: "SULPACMPtev" - name: "efflux of acetaminophen-sulphate into hepatic vein" - metabolites: !!omap - m01285c: 1 @@ -308594,30 +308594,30 @@ - sulpacmp_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000108846 or ENSG00000125257 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 17640958, Graham, G. ; M. Hicks (2004). Pharmacokinetics ; Metabolism of Paracetamol (Acetaminophen). Aspirin ; Related Drugs, CRC Press. + - gene_reaction_rule: "ENSG00000108846 or ENSG00000125257" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 17640958, Graham, G. ; M. Hicks (2004). Pharmacokinetics ; Metabolism of Paracetamol (Acetaminophen). Aspirin ; Related Drugs, CRC Press." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: TACRDtsc + - id: "TACRDtsc" - name: "uptake of tacrolimus by enterocytes" - metabolites: !!omap - tacr_c: 1 - tacr_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 12676880 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 12676880" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: TACRtu + - id: "TACRtu" - name: "efflux of tacrolimus into intestinal lumen by P-gp" - metabolites: !!omap - m01285c: 1 @@ -308629,60 +308629,60 @@ - tacr_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000085563 - - rxnFrom: Recon3D - - eccodes: - - references: russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49, PMID: 12190331, PMID: 12676880 + - gene_reaction_rule: "ENSG00000085563" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49, PMID: 12190331, PMID: 12676880" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: TAURIBUP_Sthv + - id: "TAURIBUP_Sthv" - name: "release of taurine conjugate of S-ibuprofen into hepatic vein" - metabolites: !!omap - tauribup_S_c: -1 - tauribup_S_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9515184, Graham, G. ; K. Williams (2004). Metabolism ; Pharmacokinetics of Ibuprofen. Aspirin ; Related Drugs, CRC Press. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9515184, Graham, G. ; K. Williams (2004). Metabolism ; Pharmacokinetics of Ibuprofen. Aspirin ; Related Drugs, CRC Press." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: THRFVShc + - id: "THRFVShc" - name: "threo isomer formation of fluvastatin" - metabolites: !!omap - fvs_c: -1 - thrfvs_c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8104114 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8104114" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: THRFVStev + - id: "THRFVStev" - name: "exit of threo-isomer of fluvastain into hepatic vein for excretion in urine" - metabolites: !!omap - thrfvs_c: -1 - thrfvs_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8104114, PMID: 11368292 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8104114, PMID: 11368292" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: THSACMPhr + - id: "THSACMPhr" - name: "formation of thiomethyl-sulphoxide-conjugate of acetaminophen in hepatocytes" - metabolites: !!omap - m02039r: -1 @@ -308694,15 +308694,15 @@ - tmacmp_r: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 11215692, Graham, G. ; M. Hicks (2004). Pharmacokinetics ; Metabolism of Paracetamol (Acetaminophen). Aspirin ; Related Drugs, CRC Press. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 11215692, Graham, G. ; M. Hicks (2004). Pharmacokinetics ; Metabolism of Paracetamol (Acetaminophen). Aspirin ; Related Drugs, CRC Press." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: TLACFVShc + - id: "TLACFVShc" - name: "spontaneous conversion of glucuronide to trans-lactone-fluvastatin in hepatocytes" - metabolites: !!omap - fvsgluc_r: -1 @@ -308710,30 +308710,30 @@ - tlacfvs_r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15801541, PMID: 11950779, PMID: 8104114 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15801541, PMID: 11950779, PMID: 8104114" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: TLACFVStev + - id: "TLACFVStev" - name: "exit of trans-lactone-fluvastatin into hepatic vein for excretion in urine" - metabolites: !!omap - tlacfvs_c: -1 - tlacfvs_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 8104114, PMID: 11368292 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 8104114, PMID: 11368292" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: TMDM1OATt + - id: "TMDM1OATt" - name: "efflux of Torasemide-M1 into hepatic vein" - metabolites: !!omap - m01442c: 1 @@ -308742,15 +308742,15 @@ - tmdm1_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9474471, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49, PMID: 16934049, PMID: 10919840. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9474471, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49, PMID: 16934049, PMID: 10919840." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: TMDM1hr + - id: "TMDM1hr" - name: "tolyl methylhydroxylation of torasemide in hepatocytes" - metabolites: !!omap - m02039r: -1 @@ -308762,15 +308762,15 @@ - tmdm1_r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138109 - - rxnFrom: Recon3D - - eccodes: 1.14.13.- - - references: PMID: 7891318, PMID: 9474471, PMID: 15592327, PMID: 16969365, PMID: 19442083 + - gene_reaction_rule: "ENSG00000138109" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-" + - references: "PMID: 7891318, PMID: 9474471, PMID: 15592327, PMID: 16969365, PMID: 19442083" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: TMDM3OATt + - id: "TMDM3OATt" - name: "efflux of Torasemide-M3 into hepatic vein" - metabolites: !!omap - m01442c: 1 @@ -308779,15 +308779,15 @@ - tmdm3_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9474471, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49, PMID: 16934049, PMID: 10919840. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9474471, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49, PMID: 16934049, PMID: 10919840." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: TMDM3hr + - id: "TMDM3hr" - name: "hydroxylation of torasemide to torasemide-M3 in hepatocytes" - metabolites: !!omap - m02039r: -1 @@ -308799,15 +308799,15 @@ - tmdm3_r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 7891318, PMID: 9474471, PMID: 15592327, PMID: 16969365, PMID: 19442083 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 7891318, PMID: 9474471, PMID: 15592327, PMID: 16969365, PMID: 19442083" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: TMDM5OATt + - id: "TMDM5OATt" - name: "efflux of Torasemide-M5 into hepatic vein" - metabolites: !!omap - m01442c: 1 @@ -308816,15 +308816,15 @@ - tmdm5_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9474471, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49, PMID: 16934049, PMID: 10919840. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9474471, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49, PMID: 16934049, PMID: 10919840." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: TMDM5hr + - id: "TMDM5hr" - name: "oxidation of torasemide-M1 to M5 in hepatocytes" - metabolites: !!omap - m02039r: 1 @@ -308834,15 +308834,15 @@ - tmdm5_r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000138109 - - rxnFrom: Recon3D - - eccodes: 1.14.13.- - - references: PMID: 7891318, PMID: 9474471, PMID: 15592327, PMID: 16969365, PMID: 19442083 + - gene_reaction_rule: "ENSG00000138109" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-" + - references: "PMID: 7891318, PMID: 9474471, PMID: 15592327, PMID: 16969365, PMID: 19442083" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: TMDOATPtsc + - id: "TMDOATPtsc" - name: "uptake of torasemide into enterocytes via antiport" - metabolites: !!omap - m02046c: -1 @@ -308851,15 +308851,15 @@ - tmd_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: TMDOATtev + - id: "TMDOATtev" - name: "efflux of Torasemide into hepatic vein" - metabolites: !!omap - m01442c: 1 @@ -308868,15 +308868,15 @@ - tmd_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 9474471, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49, PMID: 16934049, PMID: 10919840. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 9474471, Russel, F. G. M. (2010). Transporters: Importance in Drug Absorption, Distribution, ; Removal, Enzyme- ; Transporter-Based Drug-Drug Interactions. K. S. Pang, A. D. Rodrigues ; R. M. Peter, Springer New York: 27-49, PMID: 16934049, PMID: 10919840." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: TMDOATthc + - id: "TMDOATthc" - name: "uptake of torasemide into hepatocytes via OAT1" - metabolites: !!omap - m01306c: -1 @@ -308887,30 +308887,30 @@ - tmd_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000197901 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 15039295, PMID: 16934049, PMID: 15592327, PMID: 10919840 + - gene_reaction_rule: "ENSG00000197901" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 15039295, PMID: 16934049, PMID: 15592327, PMID: 10919840" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: TMDtd + - id: "TMDtd" - name: "uptake of torasemide into enterocytes via diffusion" - metabolites: !!omap - tmd_c: 1 - tmd_s: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: TRIPVShc + - id: "TRIPVShc" - name: "formation of triol metabolite of pravastatin in hepatocytes" - metabolites: !!omap - m02039r: -2 @@ -308922,15 +308922,15 @@ - tripvs_r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000160868 - - rxnFrom: Recon3D - - eccodes: 1.14.13.- - - references: PMID: 9929499, PMID: 1680649, PMID: 9804052, PMID: 11192474 + - gene_reaction_rule: "ENSG00000160868" + - rxnFrom: "Recon3D" + - eccodes: "1.14.13.-" + - references: "PMID: 9929499, PMID: 1680649, PMID: 9804052, PMID: 11192474" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: TRIPVSteb + - id: "TRIPVSteb" - name: "efflux of triol metabolite of pravastatin into bile" - metabolites: !!omap - m01285c: 1 @@ -308942,30 +308942,30 @@ - tripvs_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000023839 or ENSG00000073734 or ENSG00000118777 - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 16714062, PMID: 17177112 + - gene_reaction_rule: "ENSG00000023839 or ENSG00000073734 or ENSG00000118777" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 16714062, PMID: 17177112" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: TRIPVStev + - id: "TRIPVStev" - name: "exit of triol metabolite of pravastatin into hepatic vein" - metabolites: !!omap - tripvs_c: -1 - tripvs_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 1680649, PMID: 11192473, PMID: 9804052, PMID: 16714062, PMID: 18563955 + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 1680649, PMID: 11192473, PMID: 9804052, PMID: 16714062, PMID: 18563955" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: TSACGLUCtev + - id: "TSACGLUCtev" - name: "efflux of thiomethyl-sulphoxide-acetaminophen-glucuronide into hepatic vein" - metabolites: !!omap - m01285c: 1 @@ -308977,15 +308977,15 @@ - tsacmgluc_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 1026559, PMID: 11215692, Graham, G. ; M. Hicks (2004). Pharmacokinetics ; Metabolism of Paracetamol (Acetaminophen). Aspirin ; Related Drugs, CRC Press. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 1026559, PMID: 11215692, Graham, G. ; M. Hicks (2004). Pharmacokinetics ; Metabolism of Paracetamol (Acetaminophen). Aspirin ; Related Drugs, CRC Press." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: TSACMGLUChr + - id: "TSACMGLUChr" - name: "glucuronidation of thiomethyl-sulphoxide-conjugate of acetaminophen in hepatocytes" - metabolites: !!omap - m02039r: 1 @@ -308995,15 +308995,15 @@ - tsacmgluc_r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Graham, G. ; M. Hicks (2004). Pharmacokinetics ; Metabolism of Paracetamol (Acetaminophen). Aspirin ; Related Drugs, CRC Press., PMID: 1026559. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Graham, G. ; M. Hicks (2004). Pharmacokinetics ; Metabolism of Paracetamol (Acetaminophen). Aspirin ; Related Drugs, CRC Press., PMID: 1026559." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: TSACMSULhc + - id: "TSACMSULhc" - name: "sulphation of thiomethyl-sulphoxide-conjugate of acetaminophen in hepatocytes" - metabolites: !!omap - m02039c: 1 @@ -309013,15 +309013,15 @@ - tsacmsul_c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: Graham, G. ; M. Hicks (2004). Pharmacokinetics ; Metabolism of Paracetamol (Acetaminophen). Aspirin ; Related Drugs, CRC Press., PMID: 1026559. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "Graham, G. ; M. Hicks (2004). Pharmacokinetics ; Metabolism of Paracetamol (Acetaminophen). Aspirin ; Related Drugs, CRC Press., PMID: 1026559." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: TSACMSULtev + - id: "TSACMSULtev" - name: "efflux of thiomethyl-sulphoxide-acetaminophen-sulphate into hepatic vein" - metabolites: !!omap - m01285c: 1 @@ -309033,1740 +309033,1740 @@ - tsacmsul_s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: PMID: 1026559, PMID: 11215692, Graham, G. ; M. Hicks (2004). Pharmacokinetics ; Metabolism of Paracetamol (Acetaminophen). Aspirin ; Related Drugs, CRC Press. + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "PMID: 1026559, PMID: 11215692, Graham, G. ; M. Hicks (2004). Pharmacokinetics ; Metabolism of Paracetamol (Acetaminophen). Aspirin ; Related Drugs, CRC Press." - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 12HTACRitr + - id: "12HTACRitr" - name: "12HTACRitr" - metabolites: !!omap - 12htacr_c: 1 - 12htacr_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 13HTACRitr + - id: "13HTACRitr" - name: "13HTACRitr" - metabolites: !!omap - 1331tacr_c: 1 - 1331tacr_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 14HMDZitr + - id: "14HMDZitr" - name: "14HMDZitr" - metabolites: !!omap - 14hmdz_c: 1 - 14hmdz_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 1513TACRitr + - id: "1513TACRitr" - name: "1513TACRitr" - metabolites: !!omap - 1513tacr_c: 1 - 1513tacr_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 1531TACRitr + - id: "1531TACRitr" - name: "1531TACRitr" - metabolites: !!omap - 1531tacr_c: 1 - 1531tacr_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 1HIBUP_Sitr + - id: "1HIBUP_Sitr" - name: "1HIBUP_Sitr" - metabolites: !!omap - 1hibup_S_c: 1 - 1hibup_S_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 1HIBUPGLUitr + - id: "1HIBUPGLUitr" - name: "1HIBUPGLUitr" - metabolites: !!omap - 1hibupglu_S_c: 1 - 1hibupglu_S_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 1HMDGLUCitr + - id: "1HMDGLUCitr" - name: "1HMDGLUCitr" - metabolites: !!omap - 1hmdgluc_c: 1 - 1hmdgluc_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 2HATVACIDGLUCitr + - id: "2HATVACIDGLUCitr" - name: "2HATVACIDGLUCitr" - metabolites: !!omap - 2hatvacidgluc_c: 1 - 2hatvacidgluc_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 2HATVLACGLUCitr + - id: "2HATVLACGLUCitr" - name: "2HATVLACGLUCitr" - metabolites: !!omap - 2hatvlacgluc_c: 1 - 2hatvlacgluc_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 2HIBUP_Ritr + - id: "2HIBUP_Ritr" - name: "2HIBUP_Ritr" - metabolites: !!omap - 2hibup_R_c: 1 - 2hibup_R_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 2HIBUP_Sitr + - id: "2HIBUP_Sitr" - name: "2HIBUP_Sitr" - metabolites: !!omap - 2hibup_S_c: 1 - 2hibup_S_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 2HIBUPGLUC_Sitr + - id: "2HIBUPGLUC_Sitr" - name: "2HIBUPGLUC_Sitr" - metabolites: !!omap - 2hibupglu_S_c: 1 - 2hibupglu_S_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 35DHPVSitr + - id: "35DHPVSitr" - name: "35DHPVSitr" - metabolites: !!omap - 35dhpvs_c: 1 - 35dhpvs_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 35DSMVitr + - id: "35DSMVitr" - name: "35DSMVitr" - metabolites: !!omap - 35dsmv_c: 1 - 35dsmv_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 3HIBUP_Ritr + - id: "3HIBUP_Ritr" - name: "3HIBUP_Ritr" - metabolites: !!omap - 3hibup_R_c: 1 - 3hibup_R_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 3HIBUPGLUC_Sitr + - id: "3HIBUPGLUC_Sitr" - name: "3HIBUPGLUC_Sitr" - metabolites: !!omap - 3hibupglu_S_c: 1 - 3hibupglu_S_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 3HLVSTitr + - id: "3HLVSTitr" - name: "3HLVSTitr" - metabolites: !!omap - 3hlvst_c: 1 - 3hlvst_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 3HPVSitr + - id: "3HPVSitr" - name: "3HPVSitr" - metabolites: !!omap - 3hpvs_c: 1 - 3hpvs_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 3HPVSCOAitm + - id: "3HPVSCOAitm" - name: "3HPVSCOAitm" - metabolites: !!omap - 3hpvscoa_c: 1 - 3hpvscoa_m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 3HPVSCOAitx + - id: "3HPVSCOAitx" - name: "3HPVSCOAitx" - metabolites: !!omap - 3hpvscoa_c: -1 - 3hpvscoa_p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 3HPVSTETCOAitm + - id: "3HPVSTETCOAitm" - name: "3HPVSTETCOAitm" - metabolites: !!omap - 3hpvstetcoa_c: 1 - 3hpvstetcoa_m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 3HPVSTETCOAitx + - id: "3HPVSTETCOAitx" - name: "3HPVSTETCOAitx" - metabolites: !!omap - 3hpvstetcoa_c: 1 - 3hpvstetcoa_p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 3HSMVitr + - id: "3HSMVitr" - name: "3HSMVitr" - metabolites: !!omap - 3hsmv_c: 1 - 3hsmv_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 3ISPVSitr + - id: "3ISPVSitr" - name: "3ISPVSitr" - metabolites: !!omap - 3ispvs_c: 1 - 3ispvs_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 3MEACMPitr + - id: "3MEACMPitr" - name: "3MEACMPitr" - metabolites: !!omap - 3meacmp_c: -1 - 3meacmp_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 3OHACMPitr + - id: "3OHACMPitr" - name: "3OHACMPitr" - metabolites: !!omap - 3ohacmp_c: -1 - 3ohacmp_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 4BHGLZitr + - id: "4BHGLZitr" - name: "4BHGLZitr" - metabolites: !!omap - 4bhglz_c: 1 - 4bhglz_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 4HATVACIDitr + - id: "4HATVACIDitr" - name: "4HATVACIDitr" - metabolites: !!omap - 4hatvacid_c: 1 - 4hatvacid_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 4HATVLACitr + - id: "4HATVLACitr" - name: "4HATVLACitr" - metabolites: !!omap - 4hatvlac_c: 1 - 4hatvlac_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 4HMDGLUCitr + - id: "4HMDGLUCitr" - name: "4HMDGLUCitr" - metabolites: !!omap - 4hmdgluc_c: 1 - 4hmdgluc_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 4OHMDZitr + - id: "4OHMDZitr" - name: "4OHMDZitr" - metabolites: !!omap - 4ohmdz_c: 1 - 4ohmdz_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 56DHPVSitr + - id: "56DHPVSitr" - name: "56DHPVSitr" - metabolites: !!omap - 56dhpvs_c: 1 - 56dhpvs_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 56EPPVSitr + - id: "56EPPVSitr" - name: "56EPPVSitr" - metabolites: !!omap - 56eppvs_c: 1 - 56eppvs_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 5OHFVSitr + - id: "5OHFVSitr" - name: "5OHFVSitr" - metabolites: !!omap - 5ohfvs_c: 1 - 5ohfvs_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 5OHFVSGLUitr + - id: "5OHFVSGLUitr" - name: "5OHFVSGLUitr" - metabolites: !!omap - 5ohfvsglu_c: -1 - 5ohfvsglu_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 6AHGLZitr + - id: "6AHGLZitr" - name: "6AHGLZitr" - metabolites: !!omap - 6ahglz_c: 1 - 6ahglz_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 6BHGLZGLCitr + - id: "6BHGLZGLCitr" - name: "6BHGLZGLCitr" - metabolites: !!omap - 6bhglzglc_c: 1 - 6bhglzglc_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 6CSMVitr + - id: "6CSMVitr" - name: "6CSMVitr" - metabolites: !!omap - 6csmv_c: -1 - 6csmv_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 6HLVSTitr + - id: "6HLVSTitr" - name: "6HLVSTitr" - metabolites: !!omap - 6hlvst_c: 1 - 6hlvst_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 6HLVSTACIDitr + - id: "6HLVSTACIDitr" - name: "6HLVSTACIDitr" - metabolites: !!omap - 6hlvstacid_c: 1 - 6hlvstacid_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 6HMSMVitr + - id: "6HMSMVitr" - name: "6HMSMVitr" - metabolites: !!omap - 6hmsmv_c: -1 - 6hmsmv_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 6HSMVitr + - id: "6HSMVitr" - name: "6HSMVitr" - metabolites: !!omap - 6hsmv_c: 1 - 6hsmv_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 6MELVACIDitr + - id: "6MELVACIDitr" - name: "6MELVACIDitr" - metabolites: !!omap - 6melvacid_c: 1 - 6melvacid_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 6MELVSTitr + - id: "6MELVSTitr" - name: "6MELVSTitr" - metabolites: !!omap - 6melvst_c: 1 - 6melvst_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 6OHFVSitr + - id: "6OHFVSitr" - name: "6OHFVSitr" - metabolites: !!omap - 6ohfvs_c: -1 - 6ohfvs_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 6OHFVSGLUitr + - id: "6OHFVSGLUitr" - name: "6OHFVSGLUitr" - metabolites: !!omap - 6ohfvsglu_c: -1 - 6ohfvsglu_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 7AHGLZitr + - id: "7AHGLZitr" - name: "7AHGLZitr" - metabolites: !!omap - 7ahglz_c: 1 - 7ahglz_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 7BHGLZGLCitr + - id: "7BHGLZGLCitr" - name: "7BHGLZGLCitr" - metabolites: !!omap - 7bhglzglc_c: 1 - 7bhglzglc_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 7HPVSitr + - id: "7HPVSitr" - name: "7HPVSitr" - metabolites: !!omap - 7hpvs_c: 1 - 7hpvs_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: ACMPitr + - id: "ACMPitr" - name: "ACMPitr" - metabolites: !!omap - acmp_c: -1 - acmp_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: ACMPGLUitr + - id: "ACMPGLUitr" - name: "ACMPGLUitr" - metabolites: !!omap - acmpglu_c: 1 - acmpglu_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM19CSitr + - id: "AM19CSitr" - name: "AM19CSitr" - metabolites: !!omap - am19cs_c: 1 - am19cs_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM1ACCSitr + - id: "AM1ACCSitr" - name: "AM1ACCSitr" - metabolites: !!omap - am1accs_c: -1 - am1accs_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM1ACSitr + - id: "AM1ACSitr" - name: "AM1ACSitr" - metabolites: !!omap - am1acs_c: 1 - am1acs_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM1ALCSitr + - id: "AM1ALCSitr" - name: "AM1ALCSitr" - metabolites: !!omap - am1alcs_c: -1 - am1alcs_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM1C9CSitr + - id: "AM1C9CSitr" - name: "AM1C9CSitr" - metabolites: !!omap - am1c9cs_c: 1 - am1c9cs_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM1CGLCitr + - id: "AM1CGLCitr" - name: "AM1CGLCitr" - metabolites: !!omap - am1cglc_c: -1 - am1cglc_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM4N9CSitr + - id: "AM4N9CSitr" - name: "AM4N9CSitr" - metabolites: !!omap - am4n9cs_c: 1 - am4n9cs_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM4NCSitr + - id: "AM4NCSitr" - name: "AM4NCSitr" - metabolites: !!omap - am4ncs_c: -1 - am4ncs_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: CARIBUP_Sitr + - id: "CARIBUP_Sitr" - name: "CARIBUP_Sitr" - metabolites: !!omap - caribup_s_c: -1 - caribup_s_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: CARIBUPGLU_Sitr + - id: "CARIBUPGLU_Sitr" - name: "CARIBUPGLU_Sitr" - metabolites: !!omap - caribupglu_S_c: -1 - caribupglu_S_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: CRGLZitr + - id: "CRGLZitr" - name: "CRGLZitr" - metabolites: !!omap - crglz_c: 1 - crglz_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: CRVSitr + - id: "CRVSitr" - name: "CRVSitr" - metabolites: !!omap - crvs_c: -1 - crvs_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: CRVSM22itr + - id: "CRVSM22itr" - name: "CRVSM22itr" - metabolites: !!omap - crvsm22_c: 1 - crvsm22_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: CRVSM24itr + - id: "CRVSM24itr" - name: "CRVSM24itr" - metabolites: !!omap - crvsm24_c: 1 - crvsm24_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: CRVSM31itr + - id: "CRVSM31itr" - name: "CRVSM31itr" - metabolites: !!omap - crvsm31_c: -1 - crvsm31_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: CSAitr + - id: "CSAitr" - name: "CSAitr" - metabolites: !!omap - csa_c: -1 - csa_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: DEOXFVSitx + - id: "DEOXFVSitx" - name: "DEOXFVSitx" - metabolites: !!omap - deoxfvs_c: -1 - deoxfvs_p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: DESFVSitr + - id: "DESFVSitr" - name: "DESFVSitr" - metabolites: !!omap - desfvs_c: -1 - desfvs_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: DSPVSitr + - id: "DSPVSitr" - name: "DSPVSitr" - metabolites: !!omap - dspvs_c: 1 - dspvs_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: EPOXTACitr + - id: "EPOXTACitr" - name: "EPOXTACitr" - metabolites: !!omap - epoxtac_c: -1 - epoxtac_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: FVSitx + - id: "FVSitx" - name: "FVSitx" - metabolites: !!omap - fvs_c: -1 - fvs_p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: FVSCOAitx + - id: "FVSCOAitx" - name: "FVSCOAitx" - metabolites: !!omap - fvscoa_c: -1 - fvscoa_p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: FVSTETitr + - id: "FVSTETitr" - name: "FVSTETitr" - metabolites: !!omap - fvstet_c: -1 - fvstet_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: FVSTETGLUitr + - id: "FVSTETGLUitr" - name: "FVSTETGLUitr" - metabolites: !!omap - fvstetglu_c: -1 - fvstetglu_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: GLC3MEACPitr + - id: "GLC3MEACPitr" - name: "GLC3MEACPitr" - metabolites: !!omap - glc3meacp_c: -1 - glc3meacp_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: GLZitr + - id: "GLZitr" - name: "GLZitr" - metabolites: !!omap - glz_c: -1 - glz_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: GTACMPitr + - id: "GTACMPitr" - name: "GTACMPitr" - metabolites: !!omap - gtacmp_c: -1 - gtacmp_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: IBUP_Ritr + - id: "IBUP_Ritr" - name: "IBUP_Ritr" - metabolites: !!omap - ibup_R_c: -1 - ibup_R_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: IBUP_Sitr + - id: "IBUP_Sitr" - name: "IBUP_Sitr" - metabolites: !!omap - ibup_S_c: -1 - ibup_S_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: IBUPGLUCitr + - id: "IBUPGLUCitr" - name: "IBUPGLUCitr" - metabolites: !!omap - ibupgluc_c: 1 - ibupgluc_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: LSTN1GLUCitr + - id: "LSTN1GLUCitr" - name: "LSTN1GLUCitr" - metabolites: !!omap - lstn1gluc_c: -1 - lstn1gluc_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: LSTNitr + - id: "LSTNitr" - name: "LSTNitr" - metabolites: !!omap - lstn_c: -1 - lstn_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: LSTNM1itr + - id: "LSTNM1itr" - name: "LSTNM1itr" - metabolites: !!omap - lstnm1_c: -1 - lstnm1_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: LSTNM2itr + - id: "LSTNM2itr" - name: "LSTNM2itr" - metabolites: !!omap - lstnm2_c: -1 - lstnm2_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: LSTNM4itr + - id: "LSTNM4itr" - name: "LSTNM4itr" - metabolites: !!omap - lstnm4_c: -1 - lstnm4_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: LSTNM5itr + - id: "LSTNM5itr" - name: "LSTNM5itr" - metabolites: !!omap - lstnm5_c: -1 - lstnm5_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: LSTNM7itr + - id: "LSTNM7itr" - name: "LSTNM7itr" - metabolites: !!omap - lstnm7_c: 1 - lstnm7_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: LVSTitr + - id: "LVSTitr" - name: "LVSTitr" - metabolites: !!omap - lvst_c: -1 - lvst_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: EX_lvstacid[e] + - id: "EX_lvstacid[e]" - name: "EX_lvstacid(e)" - metabolites: !!omap - lvstacid_s: -1 - lvstacid_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Xenobiotics metabolism + - "Xenobiotics metabolism" - confidence_score: 0 - !!omap - - id: LVSTACIDitr + - id: "LVSTACIDitr" - name: "LVSTACIDitr" - metabolites: !!omap - lvstacid_c: -1 - lvstacid_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: MDZitr + - id: "MDZitr" - name: "MDZitr" - metabolites: !!omap - mdz_c: -1 - mdz_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: MDZGLCitr + - id: "MDZGLCitr" - name: "MDZGLCitr" - metabolites: !!omap - mdzglc_c: 1 - mdzglc_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: NDERSVitr + - id: "NDERSVitr" - name: "NDERSVitr" - metabolites: !!omap - ndersv_c: -1 - ndersv_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: NFDNPYitr + - id: "NFDNPYitr" - name: "NFDNPYitr" - metabolites: !!omap - nfdnpy_c: -1 - nfdnpy_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: NFDOHitr + - id: "NFDOHitr" - name: "NFDOHitr" - metabolites: !!omap - nfdoh_c: 1 - nfdoh_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: PROFVSCOAitx + - id: "PROFVSCOAitx" - name: "PROFVSCOAitx" - metabolites: !!omap - profvscoa_c: 1 - profvscoa_p: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: PTVSTLACitr + - id: "PTVSTLACitr" - name: "PTVSTLACitr" - metabolites: !!omap - ptvstlac_c: 1 - ptvstlac_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: PTVSTM13itr + - id: "PTVSTM13itr" - name: "PTVSTM13itr" - metabolites: !!omap - ptvstm13_c: 1 - ptvstm13_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: PTVSTM13te + - id: "PTVSTM13te" - name: "PTVSTM13te" - metabolites: !!omap - ptvstm13_c: -1 - ptvstm13_s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: EX_ptvstm13[e] + - id: "EX_ptvstm13[e]" - name: "EX_ptvstm13(e)" - metabolites: !!omap - ptvstm13_s: -1 - ptvstm13_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Xenobiotics metabolism + - "Xenobiotics metabolism" - confidence_score: 0 - !!omap - - id: PTVSTM3itr + - id: "PTVSTM3itr" - name: "PTVSTM3itr" - metabolites: !!omap - ptvstm3_c: -1 - ptvstm3_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: PVSitr + - id: "PVSitr" - name: "PVSitr" - metabolites: !!omap - pvs_c: -1 - pvs_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: PVSGLUCitr + - id: "PVSGLUCitr" - name: "PVSGLUCitr" - metabolites: !!omap - pvsgluc_c: 1 - pvsgluc_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: RSVLACitr + - id: "RSVLACitr" - name: "RSVLACitr" - metabolites: !!omap - rsvlac_c: -1 - rsvlac_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: TACRitr + - id: "TACRitr" - name: "TACRitr" - metabolites: !!omap - tacr_c: -1 - tacr_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: THSACMPitr + - id: "THSACMPitr" - name: "THSACMPitr" - metabolites: !!omap - thsacmp_c: 1 - thsacmp_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: TLACFVSitr + - id: "TLACFVSitr" - name: "TLACFVSitr" - metabolites: !!omap - tlacfvs_c: 1 - tlacfvs_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: TMACMPitr + - id: "TMACMPitr" - name: "TMACMPitr" - metabolites: !!omap - tmacmp_c: 1 - tmacmp_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: TMDitr + - id: "TMDitr" - name: "TMDitr" - metabolites: !!omap - tmd_c: -1 - tmd_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: TMDM1itr + - id: "TMDM1itr" - name: "TMDM1itr" - metabolites: !!omap - tmdm1_c: 1 - tmdm1_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: TMDM3itr + - id: "TMDM3itr" - name: "TMDM3itr" - metabolites: !!omap - tmdm3_c: -1 - tmdm3_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: TMDM5itr + - id: "TMDM5itr" - name: "TMDM5itr" - metabolites: !!omap - tmdm5_c: -1 - tmdm5_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: TSACMGLUCitr + - id: "TSACMGLUCitr" - name: "TSACMGLUCitr" - metabolites: !!omap - tsacmgluc_c: -1 - tsacmgluc_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 3HPVSCOAhc + - id: "3HPVSCOAhc" - name: "3HPVSCOAhc" - metabolites: !!omap - 3hpvs_c: -1 @@ -310777,15 +310777,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 3HPVSTEThc + - id: "3HPVSTEThc" - name: "3HPVSTEThc" - metabolites: !!omap - 3hpvstet_c: 1 @@ -310795,15 +310795,15 @@ - m02040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: ACMPGLUTTRsc + - id: "ACMPGLUTTRsc" - name: "ACMPGLUTTRsc" - metabolites: !!omap - acmpglut_r: -1 @@ -310812,15 +310812,15 @@ - m01986r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: FVSCOAhc + - id: "FVSCOAhc" - name: "FVSCOAhc" - metabolites: !!omap - fvs_c: -1 @@ -310831,15 +310831,15 @@ - m02759c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: MDZGLChr + - id: "MDZGLChr" - name: "MDZGLChr" - metabolites: !!omap - m03106r: 1 @@ -310848,15 +310848,15 @@ - mdzglc_r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: TMACMPhr + - id: "TMACMPhr" - name: "TMACMPhr" - metabolites: !!omap - m02039r: -5 @@ -310872,75 +310872,75 @@ - tmacmp_r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 1OHMDZitr + - id: "1OHMDZitr" - name: "1OHMDZitr" - metabolites: !!omap - 1ohmdz_c: 1 - 1ohmdz_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: CYSACMPitr + - id: "CYSACMPitr" - name: "CYSACMPitr" - metabolites: !!omap - cysacmp_c: 1 - cysacmp_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: NFDACitr + - id: "NFDACitr" - name: "NFDACitr" - metabolites: !!omap - nfdac_c: 1 - nfdac_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: ACMPGLUTitr + - id: "ACMPGLUTitr" - name: "ACMPGLUTitr" - metabolites: !!omap - acmpglut_c: -1 - acmpglut_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: NAPQIhr + - id: "NAPQIhr" - name: "NAPQIhr" - metabolites: !!omap - acmp_r: -1 @@ -310952,30 +310952,30 @@ - napqi_r: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: H2O2itr + - id: "H2O2itr" - name: "H2O2itr" - metabolites: !!omap - m02041c: 1 - m02041r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: UDPRIBc + - id: "UDPRIBc" - name: "UDPRIBc" - metabolites: !!omap - m01596c: 1 @@ -310986,360 +310986,360 @@ - udprib_c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: GLYitr + - id: "GLYitr" - name: "GLYitr" - metabolites: !!omap - m01986c: 1 - m01986r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: PAPSitr + - id: "PAPSitr" - name: "PAPSitr" - metabolites: !!omap - m02682c: 1 - m02682r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: PAPitr + - id: "PAPitr" - name: "PAPitr" - metabolites: !!omap - m02681c: 1 - m02681r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 13DMTitr + - id: "13DMTitr" - name: "13DMTitr" - metabolites: !!omap - 13dmt_c: 1 - 13dmt_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 15DMTitr + - id: "15DMTitr" - name: "15DMTitr" - metabolites: !!omap - 15dmt_c: 1 - 15dmt_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: ATVACIDitr + - id: "ATVACIDitr" - name: "ATVACIDitr" - metabolites: !!omap - atvacid_c: -1 - atvacid_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: ATVLACitr + - id: "ATVLACitr" - name: "ATVLACitr" - metabolites: !!omap - atvlac_c: -1 - atvlac_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 31DMTitr + - id: "31DMTitr" - name: "31DMTitr" - metabolites: !!omap - 31dmt_c: 1 - 31dmt_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: SMVitr + - id: "SMVitr" - name: "SMVitr" - metabolites: !!omap - smv_c: -1 - smv_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 6BHGLZitr + - id: "6BHGLZitr" - name: "6BHGLZitr" - metabolites: !!omap - 6bhglz_c: 1 - 6bhglz_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 7BHGLZitr + - id: "7BHGLZitr" - name: "7BHGLZitr" - metabolites: !!omap - 7bhglz_c: 1 - 7bhglz_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM1CCSitr + - id: "AM1CCSitr" - name: "AM1CCSitr" - metabolites: !!omap - am1ccs_c: 1 - am1ccs_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: LST4EXPitr + - id: "LST4EXPitr" - name: "LST4EXPitr" - metabolites: !!omap - lst4exp_c: 1 - lst4exp_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: MHGLZitr + - id: "MHGLZitr" - name: "MHGLZitr" - metabolites: !!omap - mhglz_c: 1 - mhglz_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: RSVitr + - id: "RSVitr" - name: "RSVitr" - metabolites: !!omap - rsv_c: -1 - rsv_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: TRIPVSitr + - id: "TRIPVSitr" - name: "TRIPVSitr" - metabolites: !!omap - tripvs_c: 1 - tripvs_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: SMVACIDitr + - id: "SMVACIDitr" - name: "SMVACIDitr" - metabolites: !!omap - smvacid_c: -1 - smvacid_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: PTVSTitr + - id: "PTVSTitr" - name: "PTVSTitr" - metabolites: !!omap - ptvst_c: -1 - ptvst_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 3HIBUP_Sitr + - id: "3HIBUP_Sitr" - name: "3HIBUP_Sitr" - metabolites: !!omap - 3hibup_S_c: 1 - 3hibup_S_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: FVSitr + - id: "FVSitr" - name: "FVSitr" - metabolites: !!omap - fvs_c: -1 - fvs_r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM1CSAitr + - id: "AM1CSAitr" - name: "AM1CSAitr" - metabolites: !!omap - am1csa_c: 1 - am1csa_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: AM9CSAitr + - id: "AM9CSAitr" - name: "AM9CSAitr" - metabolites: !!omap - am9csa_c: 1 - am9csa_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: 2HATVACIDitr + - id: "2HATVACIDitr" - name: "2HATVACIDitr" - metabolites: !!omap - 2hatvacid_c: 1 - 2hatvacid_r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Drug metabolism + - "Drug metabolism" - confidence_score: 0 - !!omap - - id: OHCLtm + - id: "OHCLtm" - name: "Chloride Hydroxide Mitochondrial Transport" - metabolites: !!omap - m01442c: 1 @@ -311348,825 +311348,825 @@ - m02147m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 1A25HVITD2t + - id: "1A25HVITD2t" - name: "1A25HVITD2t" - metabolites: !!omap - m00519c: -1 - m00519s: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: 1A25HVITD2tm + - id: "1A25HVITD2tm" - name: "1A25HVITD2tm" - metabolites: !!omap - m00519c: 1 - m00519m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: EX_1a25dhvitd2[e] + - id: "EX_1a25dhvitd2[e]" - name: "EX_1a25dhvitd2(e)" - metabolites: !!omap - m00519s: -1 - m00519x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_C13856[e] + - id: "EX_C13856[e]" - name: "EX_C13856[e]" - metabolites: !!omap - m00635s: -1 - m00635x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_M02956[e] + - id: "EX_M02956[e]" - name: "EX_M02956[e]" - metabolites: !!omap - m02956s: -1 - m02956x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_M00234[e] + - id: "EX_M00234[e]" - name: "EX_M00234[e]" - metabolites: !!omap - m00234s: -1 - m00234x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_M01807[e] + - id: "EX_M01807[e]" - name: "EX_M01807[e]" - metabolites: !!omap - m01807s: -1 - m01807x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_M00503[e] + - id: "EX_M00503[e]" - name: "EX_M00503[e]" - metabolites: !!omap - m00503s: -1 - m00503x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_M00241[e] + - id: "EX_M00241[e]" - name: "EX_M00241[e]" - metabolites: !!omap - m00241s: -1 - m00241x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_M01820[e] + - id: "EX_M01820[e]" - name: "EX_M01820[e]" - metabolites: !!omap - m01820s: -1 - m01820x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_M00510[e] + - id: "EX_M00510[e]" - name: "EX_M00510[e]" - metabolites: !!omap - m00510s: -1 - m00510x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_M01819[e] + - id: "EX_M01819[e]" - name: "EX_M01819[e]" - metabolites: !!omap - m01819s: -1 - m01819x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_M00003[e] + - id: "EX_M00003[e]" - name: "EX_M00003[e]" - metabolites: !!omap - m00003s: -1 - m00003x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_M00008[e] + - id: "EX_M00008[e]" - name: "EX_M00008[e]" - metabolites: !!omap - m00008s: -1 - m00008x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_M00010[e] + - id: "EX_M00010[e]" - name: "EX_M00010[e]" - metabolites: !!omap - m00010s: -1 - m00010x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_M00017[e] + - id: "EX_M00017[e]" - name: "EX_M00017[e]" - metabolites: !!omap - m00017s: -1 - m00017x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_M00019[e] + - id: "EX_M00019[e]" - name: "EX_M00019[e]" - metabolites: !!omap - m00019s: -1 - m00019x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_M00021[e] + - id: "EX_M00021[e]" - name: "EX_M00021[e]" - metabolites: !!omap - m00021s: -1 - m00021x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_M00115[e] + - id: "EX_M00115[e]" - name: "EX_M00115[e]" - metabolites: !!omap - m00115s: -1 - m00115x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_M00117[e] + - id: "EX_M00117[e]" - name: "EX_M00117[e]" - metabolites: !!omap - m00117s: -1 - m00117x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_M00260[e] + - id: "EX_M00260[e]" - name: "EX_M00260[e]" - metabolites: !!omap - m00260s: -1 - m00260x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_M00265[e] + - id: "EX_M00265[e]" - name: "EX_M00265[e]" - metabolites: !!omap - m00265s: -1 - m00265x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_M00315[e] + - id: "EX_M00315[e]" - name: "EX_M00315[e]" - metabolites: !!omap - m00315s: -1 - m00315x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_M00341[e] + - id: "EX_M00341[e]" - name: "EX_M00341[e]" - metabolites: !!omap - m00341s: -1 - m00341x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_M01197[e] + - id: "EX_M01197[e]" - name: "EX_M01197[e]" - metabolites: !!omap - m01197s: -1 - m01197x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_M01207[e] + - id: "EX_M01207[e]" - name: "EX_M01207[e]" - metabolites: !!omap - m01207s: -1 - m01207x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_M01235[e] + - id: "EX_M01235[e]" - name: "EX_M01235[e]" - metabolites: !!omap - m01235s: -1 - m01235x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_M01238[e] + - id: "EX_M01238[e]" - name: "EX_M01238[e]" - metabolites: !!omap - m01238s: -1 - m01238x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_M01582[e] + - id: "EX_M01582[e]" - name: "EX_M01582[e]" - metabolites: !!omap - m01582s: -1 - m01582x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_M02053[e] + - id: "EX_M02053[e]" - name: "EX_M02053[e]" - metabolites: !!omap - m02053s: -1 - m02053x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_M02457[e] + - id: "EX_M02457[e]" - name: "EX_M02457[e]" - metabolites: !!omap - m02457s: -1 - m02457x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_M02613[e] + - id: "EX_M02613[e]" - name: "EX_M02613[e]" - metabolites: !!omap - m02613s: -1 - m02613x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_M02745[e] + - id: "EX_M02745[e]" - name: "EX_M02745[e]" - metabolites: !!omap - m02745s: -1 - m02745x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_M03045[e] + - id: "EX_M03045[e]" - name: "EX_M03045[e]" - metabolites: !!omap - m03045s: -1 - m03045x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_M03051[e] + - id: "EX_M03051[e]" - name: "EX_M03051[e]" - metabolites: !!omap - m03051s: -1 - m03051x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_M03153[e] + - id: "EX_M03153[e]" - name: "EX_M03153[e]" - metabolites: !!omap - m03153s: -1 - m03153x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_M01268[e] + - id: "EX_M01268[e]" - name: "EX_M01268[e]" - metabolites: !!omap - m01268s: -1 - m01268x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_HC02080[e] + - id: "EX_HC02080[e]" - name: "EX_HC02080[e]" - metabolites: !!omap - m01395s: -1 - m01395x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_h2co3[e] + - id: "EX_h2co3[e]" - name: "EX_h2co3[e]" - metabolites: !!omap - m01421s: -1 - m01421x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_M02446[e] + - id: "EX_M02446[e]" - name: "EX_M02446[e]" - metabolites: !!omap - m02446s: -1 - m02446x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_M02447[e] + - id: "EX_M02447[e]" - name: "EX_M02447[e]" - metabolites: !!omap - m02447s: -1 - m02447x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_M02449[e] + - id: "EX_M02449[e]" - name: "EX_M02449[e]" - metabolites: !!omap - m02449s: -1 - m02449x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_M02451[e] + - id: "EX_M02451[e]" - name: "EX_M02451[e]" - metabolites: !!omap - m02451s: -1 - m02451x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_M02837[e] + - id: "EX_M02837[e]" - name: "EX_M02837[e]" - metabolites: !!omap - m02837s: -1 - m02837x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_M02382[e] + - id: "EX_M02382[e]" - name: "EX_M02382[e]" - metabolites: !!omap - m02382s: -1 - m02382x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_M02035[e] + - id: "EX_M02035[e]" - name: "EX_M02035[e]" - metabolites: !!omap - m02035s: -1 - m02035x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_M02467[e] + - id: "EX_M02467[e]" - name: "EX_M02467[e]" - metabolites: !!omap - m02467s: -1 - m02467x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_M02821[e] + - id: "EX_M02821[e]" - name: "EX_M02821[e]" - metabolites: !!omap - m02821s: -1 - m02821x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_mg2[e] + - id: "EX_mg2[e]" - name: "EX_mg2[e]" - metabolites: !!omap - m02482s: -1 - m02482x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_cu2[e] + - id: "EX_cu2[e]" - name: "EX_cu2[e]" - metabolites: !!omap - m01624s: -1 - m01624x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: EX_M01571[e] + - id: "EX_M01571[e]" - name: "EX_M01571[e]" - metabolites: !!omap - m01571s: -1 - m01571x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: DCMPtm + - id: "DCMPtm" - name: "DCMPtm" - metabolites: !!omap - m01644c: 1 - m01644m: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: GLACtm + - id: "GLACtm" - name: "GLACtm" - metabolites: !!omap - m01685c: -1 - m01685m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CLCFTRtm + - id: "CLCFTRtm" - name: "CLCFTRtm" - metabolites: !!omap - m01442c: -1 - m01442m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: PROTEIN_BS + - id: "PROTEIN_BS" - name: "PROTEIN_BS" - metabolites: !!omap - m00196c: 1 @@ -312192,15 +312192,15 @@ - m03135c: -0.416 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Protein assembly + - "Protein assembly" - confidence_score: 0 - !!omap - - id: PIt2mi + - id: "PIt2mi" - name: "PIt2mi" - metabolites: !!omap - m02039i: -1 @@ -312209,30 +312209,30 @@ - m02751m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000075415 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000075415" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: Htmi + - id: "Htmi" - name: "Htmi" - metabolites: !!omap - m02039i: -1 - m02039m: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000102078 or ENSG00000109424 or ENSG00000153291 or ENSG00000175564 or ENSG00000175567 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000102078 or ENSG00000109424 or ENSG00000153291 or ENSG00000175564 or ENSG00000175567" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: CYOOm3i + - id: "CYOOm3i" - name: "CYOOm3i" - metabolites: !!omap - m01824m: 4 @@ -312244,165 +312244,165 @@ - m02631m: 0.02 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000111775 and ENSG00000112695 and ENSG00000126267 and ENSG00000127184 and ENSG00000131055 and ENSG00000131143 and ENSG00000131174 and ENSG00000135940 and ENSG00000156885 and ENSG00000160471 and ENSG00000161281 and ENSG00000164919 and ENSG00000170516 and ENSG00000176340 and ENSG00000178741 and ENSG00000187581 and ENSG00000198712 and ENSG00000198804 and ENSG00000198938 - - rxnFrom: Recon3D - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000111775 and ENSG00000112695 and ENSG00000126267 and ENSG00000127184 and ENSG00000131055 and ENSG00000131143 and ENSG00000131174 and ENSG00000135940 and ENSG00000156885 and ENSG00000160471 and ENSG00000161281 and ENSG00000164919 and ENSG00000170516 and ENSG00000176340 and ENSG00000178741 and ENSG00000187581 and ENSG00000198712 and ENSG00000198804 and ENSG00000198938" + - rxnFrom: "Recon3D" + - eccodes: "" + - references: "" - subsystem: - - Oxidative phosphorylation + - "Oxidative phosphorylation" - confidence_score: 2 - !!omap - - id: HMR_10023 + - id: "HMR_10023" - name: "" - metabolites: !!omap - temp001c: -1 - temp001s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_10024 + - id: "HMR_10024" - name: "" - metabolites: !!omap - temp001s: -1 - temp001x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_10025 + - id: "HMR_10025" - name: "Exchange of 20-hydroxy-arachidonate" - metabolites: !!omap - m00591s: -1 - m00591x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_10026 + - id: "HMR_10026" - name: "Exchange of chenodiol" - metabolites: !!omap - m01435s: -1 - m01435x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_10027 + - id: "HMR_10027" - name: "Exchange of LacCer pool" - metabolites: !!omap - m02328s: -1 - m02328x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_10028 + - id: "HMR_10028" - name: "Exchange of Chylomicron Lipoprotein" - metabolites: !!omap - chylo_hs_s: -1 - chylo_hs_x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_10029 + - id: "HMR_10029" - name: "Exchange of steroids" - metabolites: !!omap - m10001s: -1 - m10001x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_10030 + - id: "HMR_10030" - name: "Exchange of xenobiotics" - metabolites: !!omap - m10002s: -1 - m10002x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_10031 + - id: "HMR_10031" - name: "Exchange of arachidonate derivatives" - metabolites: !!omap - m10003s: -1 - m10003x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_10032 + - id: "HMR_10032" - name: "Exchange of others" - metabolites: !!omap - m10000s: -1 - m10000x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_10033 + - id: "HMR_10033" - name: "Fatty acid pool formation and breakdown" - metabolites: !!omap - m00003c: 0.0004 @@ -312467,15 +312467,15 @@ - m10005c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_10034 + - id: "HMR_10034" - name: "Fatty acid pool formation and breakdown" - metabolites: !!omap - m00003r: 0.0004 @@ -312540,15 +312540,15 @@ - m10005r: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_10035 + - id: "HMR_10035" - name: "1-acylglycerol-3-phosphate pool formation and breakdown" - metabolites: !!omap - m00436c: 0.0004 @@ -312613,15 +312613,15 @@ - m10006c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_10036 + - id: "HMR_10036" - name: "acyl-CoA pool formation and breakdown" - metabolites: !!omap - m00004c: 0.0004 @@ -312686,15 +312686,15 @@ - m10007c: -1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_10037 + - id: "HMR_10037" - name: "cholesterol-ester pool formation and breakdown" - metabolites: !!omap - m01451l: -1 @@ -312759,15 +312759,15 @@ - m01510l: 0.0004 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_10038 + - id: "HMR_10038" - name: "cholesterol-ester pool formation and breakdown" - metabolites: !!omap - m01451r: -1 @@ -312832,345 +312832,345 @@ - m01510r: 0.0004 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Pool reactions + - "Pool reactions" - confidence_score: 0 - !!omap - - id: HMR_10039 + - id: "HMR_10039" - name: "fatty acid pool transport (Cytosol to Peroxisome)" - metabolites: !!omap - m10005c: -1 - m10005p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_10040 + - id: "HMR_10040" - name: "acyl-CoA pool transport (Cytosol to Peroxisome)" - metabolites: !!omap - m10007c: -1 - m10007p: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_10041 + - id: "HMR_10041" - name: "TAG-VLDL pool transport (Cytosol to Endoplasmic reticulum)" - metabolites: !!omap - m02959c: -1 - m02959r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_10042 + - id: "HMR_10042" - name: "TAG-chylomicron pool transport (Cytosol to Extracellular)" - metabolites: !!omap - m02956c: -1 - m02956s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_10043 + - id: "HMR_10043" - name: "TAG-chylomicron pool transport (Cytosol to Lysosome)" - metabolites: !!omap - m02956c: -1 - m02956l: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_10044 + - id: "HMR_10044" - name: "1,2-diacylglycerol-LD-PC pool transport(Cytosol to Golgi apparatus)" - metabolites: !!omap - m00235c: -1 - m00235g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_10045 + - id: "HMR_10045" - name: "1,2-diacylglycerol-LD-PC pool transport(Cytosol to Nucleus)" - metabolites: !!omap - m00235c: -1 - m00235n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_10046 + - id: "HMR_10046" - name: "1,2-diacylglycerol-LD-PC pool transport(Cytosol to " - metabolites: !!omap - m00235c: -1 - m00235s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_10047 + - id: "HMR_10047" - name: "1,2-diacylglycerol-LD-PC pool exchange" - metabolites: !!omap - m00235s: -1 - m00235x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_10048 + - id: "HMR_10048" - name: "1,2-diacylglycerol-LD-PI pool transport(Cytosol to Extracellular)" - metabolites: !!omap - m00237c: -1 - m00237n: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_10049 + - id: "HMR_10049" - name: "CDP-diacylglycerol-CL pool transport(Cytosol to Mitochondria)" - metabolites: !!omap - m01426c: -1 - m01426m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_10050 + - id: "HMR_10050" - name: "fatty acid-chylomicron pool transport(Cytosol to Extracellular)" - metabolites: !!omap - m01807c: -1 - m01807s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_10051 + - id: "HMR_10051" - name: "fatty acid-VLDL pool transport(Cytosol to Extracellular)" - metabolites: !!omap - m01820c: -1 - m01820s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_10052 + - id: "HMR_10052" - name: "phosphatidate-LD-PC pool transport(Cytosol to Mitochondria)" - metabolites: !!omap - m02728c: -1 - m02728m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_10053 + - id: "HMR_10053" - name: "phosphatidate-LD-PI pool transport(Cytosol to Mitochondria)" - metabolites: !!omap - m02730c: -1 - m02730m: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_10054 + - id: "HMR_10054" - name: "phosphatidate-LD-PI pool transport(Cytosol to Endoplasmic reticulum)" - metabolites: !!omap - m02730c: -1 - m02730r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_10055 + - id: "HMR_10055" - name: "phosphatidate-LD-PI pool transport (Cytosol to Golgi apparatus)" - metabolites: !!omap - m02730c: -1 - m02730g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_10056 + - id: "HMR_10056" - name: "phosphatidate-LD-PS pool transport (Cytosol to Endoplasmic reticulum)" - metabolites: !!omap - m02731c: -1 - m02731r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_10057 + - id: "HMR_10057" - name: "phosphatidate-LD-PS pool transport (Cytosol to Golgi apparatus)" - metabolites: !!omap - m02731c: -1 - m02731g: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_10058 + - id: "HMR_10058" - name: "protein transport (Cytosol to Endoplasmic reticulum)" - metabolites: !!omap - m00196c: -1 - m00196r: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_10059 + - id: "HMR_10059" - name: "N-formyl-L-glutamate transport (Cytosol to Extracellular)" - metabolites: !!omap - m10011c: -1 - m10011s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_10060 + - id: "HMR_10060" - name: "N-formyl-L-glutamate exchange" - metabolites: !!omap - m10011s: -1 - m10011x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_10061 + - id: "HMR_10061" - name: "fatty acyl-CoA reduction" - metabolites: !!omap - alkylR1oh_p: 1 @@ -313181,15 +313181,15 @@ - m10007p: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000064763 or ENSG00000197601 - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000064763 or ENSG00000197601" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Ether lipid metabolism + - "Ether lipid metabolism" - confidence_score: 2 - !!omap - - id: HMR_10062 + - id: "HMR_10062" - name: "Protein pool for biomass reaction" - metabolites: !!omap - m02006c: -0.0721 @@ -313235,15 +313235,15 @@ - m10013c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Artificial reactions + - "Artificial reactions" - confidence_score: 0 - !!omap - - id: HMR_10063 + - id: "HMR_10063" - name: "Lipid pool for biomass reaction" - metabolites: !!omap - m01450c: -0.1155 @@ -313258,15 +313258,15 @@ - m10014c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Artificial reactions + - "Artificial reactions" - confidence_score: 0 - !!omap - - id: HMR_10064 + - id: "HMR_10064" - name: "Small metabolite pool for biomass reaction" - metabolites: !!omap - m00180c: -0.0043 @@ -313331,15 +313331,15 @@ - m10015c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Artificial reactions + - "Artificial reactions" - confidence_score: 0 - !!omap - - id: HMR_10065 + - id: "HMR_10065" - name: "Cofactors and vitamins pool for biomass reaction" - metabolites: !!omap - m00291c: -0.0345 @@ -313383,15 +313383,15 @@ - m10012c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Artificial reactions + - "Artificial reactions" - confidence_score: 0 - !!omap - - id: biomass_human + - id: "biomass_human" - name: "Generic human cell biomass reaction" - metabolites: !!omap - m01371c: -45 @@ -313408,16 +313408,16 @@ - temp001c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: + - gene_reaction_rule: "" + - rxnFrom: "" - objective_coefficient: 1 - - eccodes: - - references: + - eccodes: "" + - references: "" - subsystem: - - Artificial reactions + - "Artificial reactions" - confidence_score: 0 - !!omap - - id: HMR_10066 + - id: "HMR_10066" - name: "" - metabolites: !!omap - m00580c: -1 @@ -313427,15 +313427,15 @@ - m02769c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000187134 - - rxnFrom: - - eccodes: - - references: PMID11013348;PMID6935192;PMID10557352;PMID8172618 + - gene_reaction_rule: "ENSG00000187134" + - rxnFrom: "" + - eccodes: "" + - references: "PMID11013348;PMID6935192;PMID10557352;PMID8172618" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_10067 + - id: "HMR_10067" - name: "" - metabolites: !!omap - m00521c: -1 @@ -313444,15 +313444,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000151151 - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "ENSG00000151151" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_10068 + - id: "HMR_10068" - name: "" - metabolites: !!omap - m00525c: -1 @@ -313461,15 +313461,15 @@ - m02751c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Inositol phosphate metabolism + - "Inositol phosphate metabolism" - confidence_score: 0 - !!omap - - id: HMR_10069 + - id: "HMR_10069" - name: "" - metabolites: !!omap - m01597c: 1 @@ -313478,15 +313478,15 @@ - m01989c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_10070 + - id: "HMR_10070" - name: "" - metabolites: !!omap - m01713c: 1 @@ -313495,15 +313495,15 @@ - m10017c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Miscellaneous + - "Miscellaneous" - confidence_score: 0 - !!omap - - id: HMR_10071 + - id: "HMR_10071" - name: "" - metabolites: !!omap - m01072c: 1 @@ -313513,15 +313513,15 @@ - m10019c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000196139 - - rxnFrom: - - eccodes: - - references: PMID6935192 + - gene_reaction_rule: "ENSG00000196139" + - rxnFrom: "" + - eccodes: "" + - references: "PMID6935192" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_10072 + - id: "HMR_10072" - name: "" - metabolites: !!omap - m00409c: 1 @@ -313531,15 +313531,15 @@ - m10020c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000196139 - - rxnFrom: - - eccodes: - - references: PMID6935192 + - gene_reaction_rule: "ENSG00000196139" + - rxnFrom: "" + - eccodes: "" + - references: "PMID6935192" - subsystem: - - Steroid metabolism + - "Steroid metabolism" - confidence_score: 0 - !!omap - - id: HMR_10073 + - id: "HMR_10073" - name: "" - metabolites: !!omap - m01285c: 1 @@ -313551,30 +313551,30 @@ - m10021s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073734 or ENSG00000108846 - - rxnFrom: - - eccodes: - - references: PMID2018466;PMID6861760 + - gene_reaction_rule: "ENSG00000073734 or ENSG00000108846" + - rxnFrom: "" + - eccodes: "" + - references: "PMID2018466;PMID6861760" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_10074 + - id: "HMR_10074" - name: "" - metabolites: !!omap - m10021s: -1 - m10021x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: PMID2018466;PMID6861760 + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "PMID2018466;PMID6861760" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_10075 + - id: "HMR_10075" - name: "" - metabolites: !!omap - m01285c: 1 @@ -313586,60 +313586,60 @@ - m10022s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073734 or ENSG00000108846 - - rxnFrom: - - eccodes: - - references: PMID2018466;PMID6861760 + - gene_reaction_rule: "ENSG00000073734 or ENSG00000108846" + - rxnFrom: "" + - eccodes: "" + - references: "PMID2018466;PMID6861760" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_10076 + - id: "HMR_10076" - name: "" - metabolites: !!omap - m10022s: -1 - m10022x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: PMID2018466;PMID6861760 + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "PMID2018466;PMID6861760" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_10077 + - id: "HMR_10077" - name: "" - metabolites: !!omap - m10023s: -1 - m10023x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: PMID17404808;PMID19498215 + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "PMID17404808;PMID19498215" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_10078 + - id: "HMR_10078" - name: "" - metabolites: !!omap - m10024s: -1 - m10024x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: PMID17404808;PMID19498215 + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "PMID17404808;PMID19498215" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_10079 + - id: "HMR_10079" - name: "" - metabolites: !!omap - m01285c: 1 @@ -313651,15 +313651,15 @@ - m10024s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073734 or ENSG00000108846 - - rxnFrom: - - eccodes: - - references: PMID17404808;PMID19498215 + - gene_reaction_rule: "ENSG00000073734 or ENSG00000108846" + - rxnFrom: "" + - eccodes: "" + - references: "PMID17404808;PMID19498215" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_10080 + - id: "HMR_10080" - name: "" - metabolites: !!omap - m01334c: 1 @@ -313670,30 +313670,30 @@ - m10035c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: PMID17404808;PMID19498215 + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "PMID17404808;PMID19498215" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_10081 + - id: "HMR_10081" - name: "" - metabolites: !!omap - m10025s: -1 - m10025x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: PMID17404808;PMID19498215 + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "PMID17404808;PMID19498215" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_10082 + - id: "HMR_10082" - name: "" - metabolites: !!omap - m01285c: 1 @@ -313705,150 +313705,150 @@ - m10025s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073734 or ENSG00000108846 - - rxnFrom: - - eccodes: - - references: PMID17404808;PMID19498215 + - gene_reaction_rule: "ENSG00000073734 or ENSG00000108846" + - rxnFrom: "" + - eccodes: "" + - references: "PMID17404808;PMID19498215" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_10083 + - id: "HMR_10083" - name: "" - metabolites: !!omap - m10026s: -1 - m10026x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: PMID17404808;PMID19498215 + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "PMID17404808;PMID19498215" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_10084 + - id: "HMR_10084" - name: "" - metabolites: !!omap - m10027s: -1 - m10027x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: PMID17404808;PMID19498215 + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "PMID17404808;PMID19498215" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_10085 + - id: "HMR_10085" - name: "" - metabolites: !!omap - m10028s: -1 - m10028x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: PMID17404808;PMID19498215 + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "PMID17404808;PMID19498215" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_10086 + - id: "HMR_10086" - name: "" - metabolites: !!omap - m10029s: -1 - m10029x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: PMID17404808;PMID19498215 + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "PMID17404808;PMID19498215" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_10087 + - id: "HMR_10087" - name: "" - metabolites: !!omap - m10030s: -1 - m10030x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: PMID17404808;PMID19498215 + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "PMID17404808;PMID19498215" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_10088 + - id: "HMR_10088" - name: "" - metabolites: !!omap - m10031s: -1 - m10031x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: PMID17404808;PMID19498215 + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "PMID17404808;PMID19498215" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_10089 + - id: "HMR_10089" - name: "" - metabolites: !!omap - m10032s: -1 - m10032x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: PMID17404808;PMID19498215 + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "PMID17404808;PMID19498215" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_10090 + - id: "HMR_10090" - name: "" - metabolites: !!omap - m10033s: -1 - m10033x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: PMID17404808;PMID19498215 + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "PMID17404808;PMID19498215" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_10091 + - id: "HMR_10091" - name: "" - metabolites: !!omap - m10034s: -1 - m10034x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: PMID17404808;PMID19498215 + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "PMID17404808;PMID19498215" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - !!omap - - id: HMR_10092 + - id: "HMR_10092" - name: "" - metabolites: !!omap - m01597c: 1 @@ -313858,15 +313858,15 @@ - m10035c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: PMID12810727;PMID6884990 + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "PMID12810727;PMID6884990" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_10093 + - id: "HMR_10093" - name: "" - metabolites: !!omap - m01597c: 1 @@ -313876,15 +313876,15 @@ - m10035c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: PMID12810727;PMID6884990 + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "PMID12810727;PMID6884990" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_10094 + - id: "HMR_10094" - name: "" - metabolites: !!omap - m01334c: 1 @@ -313895,15 +313895,15 @@ - m10036c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: 6.2.1.7 - - references: PMID12810727;PMID6884990 + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "6.2.1.7" + - references: "PMID12810727;PMID6884990" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_10095 + - id: "HMR_10095" - name: "" - metabolites: !!omap - m01597c: 1 @@ -313913,15 +313913,15 @@ - m10036c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: PMID12810727;PMID6884990 + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "PMID12810727;PMID6884990" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_10096 + - id: "HMR_10096" - name: "" - metabolites: !!omap - m01597c: 1 @@ -313931,15 +313931,15 @@ - m10036c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: PMID12810727;PMID6884990 + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "PMID12810727;PMID6884990" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_10097 + - id: "HMR_10097" - name: "" - metabolites: !!omap - m01334c: 1 @@ -313950,15 +313950,15 @@ - m10037c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: 6.2.1.7 - - references: PMID12810727;PMID6884990 + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "6.2.1.7" + - references: "PMID12810727;PMID6884990" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_10098 + - id: "HMR_10098" - name: "" - metabolites: !!omap - m01597c: 1 @@ -313968,15 +313968,15 @@ - m10037c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: PMID12810727;PMID6884990 + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "PMID12810727;PMID6884990" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_10099 + - id: "HMR_10099" - name: "" - metabolites: !!omap - m01597c: 1 @@ -313986,15 +313986,15 @@ - m10037c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: PMID12810727;PMID6884990 + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "PMID12810727;PMID6884990" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_10100 + - id: "HMR_10100" - name: "" - metabolites: !!omap - m01285c: 1 @@ -314006,15 +314006,15 @@ - m10034s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073734 or ENSG00000108846 - - rxnFrom: - - eccodes: - - references: PMID17404808;PMID19498215 + - gene_reaction_rule: "ENSG00000073734 or ENSG00000108846" + - rxnFrom: "" + - eccodes: "" + - references: "PMID17404808;PMID19498215" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_10101 + - id: "HMR_10101" - name: "" - metabolites: !!omap - m01285c: 1 @@ -314026,15 +314026,15 @@ - m10026s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073734 or ENSG00000108846 - - rxnFrom: - - eccodes: - - references: PMID17404808;PMID19498215 + - gene_reaction_rule: "ENSG00000073734 or ENSG00000108846" + - rxnFrom: "" + - eccodes: "" + - references: "PMID17404808;PMID19498215" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_10102 + - id: "HMR_10102" - name: "" - metabolites: !!omap - m01285c: 1 @@ -314046,15 +314046,15 @@ - m10027s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073734 or ENSG00000108846 - - rxnFrom: - - eccodes: - - references: PMID17404808;PMID19498215 + - gene_reaction_rule: "ENSG00000073734 or ENSG00000108846" + - rxnFrom: "" + - eccodes: "" + - references: "PMID17404808;PMID19498215" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_10103 + - id: "HMR_10103" - name: "" - metabolites: !!omap - m01285c: 1 @@ -314066,15 +314066,15 @@ - m10030s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073734 or ENSG00000108846 - - rxnFrom: - - eccodes: - - references: PMID17404808;PMID19498215 + - gene_reaction_rule: "ENSG00000073734 or ENSG00000108846" + - rxnFrom: "" + - eccodes: "" + - references: "PMID17404808;PMID19498215" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_10104 + - id: "HMR_10104" - name: "" - metabolites: !!omap - m01285c: 1 @@ -314086,15 +314086,15 @@ - m10033s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073734 or ENSG00000108846 - - rxnFrom: - - eccodes: - - references: PMID17404808;PMID19498215 + - gene_reaction_rule: "ENSG00000073734 or ENSG00000108846" + - rxnFrom: "" + - eccodes: "" + - references: "PMID17404808;PMID19498215" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_10105 + - id: "HMR_10105" - name: "" - metabolites: !!omap - m01334c: 1 @@ -314105,15 +314105,15 @@ - m10038c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: 6.2.1.7 - - references: PMID12810727;PMID6884990 + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "6.2.1.7" + - references: "PMID12810727;PMID6884990" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_10106 + - id: "HMR_10106" - name: "" - metabolites: !!omap - m01597c: 1 @@ -314123,15 +314123,15 @@ - m10038c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: PMID12810727;PMID6884990 + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "PMID12810727;PMID6884990" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_10107 + - id: "HMR_10107" - name: "" - metabolites: !!omap - m01597c: 1 @@ -314141,15 +314141,15 @@ - m10038c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: PMID12810727;PMID6884990 + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "PMID12810727;PMID6884990" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_10108 + - id: "HMR_10108" - name: "" - metabolites: !!omap - m01597c: 1 @@ -314159,15 +314159,15 @@ - m10038c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: PMID12810727;PMID6884990 + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "PMID12810727;PMID6884990" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_10109 + - id: "HMR_10109" - name: "" - metabolites: !!omap - m01285c: 1 @@ -314179,15 +314179,15 @@ - m10029s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073734 or ENSG00000108846 - - rxnFrom: - - eccodes: - - references: PMID17404808;PMID19498215 + - gene_reaction_rule: "ENSG00000073734 or ENSG00000108846" + - rxnFrom: "" + - eccodes: "" + - references: "PMID17404808;PMID19498215" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_10110 + - id: "HMR_10110" - name: "" - metabolites: !!omap - m01285c: 1 @@ -314199,15 +314199,15 @@ - m10023s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073734 or ENSG00000108846 - - rxnFrom: - - eccodes: - - references: PMID17404808;PMID19498215 + - gene_reaction_rule: "ENSG00000073734 or ENSG00000108846" + - rxnFrom: "" + - eccodes: "" + - references: "PMID17404808;PMID19498215" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_10111 + - id: "HMR_10111" - name: "" - metabolites: !!omap - m01334c: 1 @@ -314218,15 +314218,15 @@ - m10039c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: 6.2.1.7 - - references: PMID12810727;PMID6884990 + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "6.2.1.7" + - references: "PMID12810727;PMID6884990" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_10112 + - id: "HMR_10112" - name: "" - metabolites: !!omap - m01597c: 1 @@ -314236,15 +314236,15 @@ - m10039c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: PMID12810727;PMID6884990 + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "PMID12810727;PMID6884990" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_10113 + - id: "HMR_10113" - name: "" - metabolites: !!omap - m01597c: 1 @@ -314254,15 +314254,15 @@ - m10039c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: PMID12810727;PMID6884990 + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "PMID12810727;PMID6884990" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_10114 + - id: "HMR_10114" - name: "" - metabolites: !!omap - m01597c: 1 @@ -314272,15 +314272,15 @@ - m10039c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: PMID12810727;PMID6884990 + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "PMID12810727;PMID6884990" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_10115 + - id: "HMR_10115" - name: "" - metabolites: !!omap - m01285c: 1 @@ -314292,15 +314292,15 @@ - m10032s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073734 or ENSG00000108846 - - rxnFrom: - - eccodes: - - references: PMID17404808;PMID19498215 + - gene_reaction_rule: "ENSG00000073734 or ENSG00000108846" + - rxnFrom: "" + - eccodes: "" + - references: "PMID17404808;PMID19498215" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_10116 + - id: "HMR_10116" - name: "" - metabolites: !!omap - m01313c: 1 @@ -314309,15 +314309,15 @@ - m10018c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000183463 - - rxnFrom: - - eccodes: 4.1.1.97 - - references: PMID16462750 + - gene_reaction_rule: "ENSG00000183463" + - rxnFrom: "" + - eccodes: "4.1.1.97" + - references: "PMID16462750" - subsystem: - - Purine metabolism + - "Purine metabolism" - confidence_score: 0 - !!omap - - id: HMR_10117 + - id: "HMR_10117" - name: "" - metabolites: !!omap - m01285c: 1 @@ -314329,15 +314329,15 @@ - m10031s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073734 or ENSG00000108846 - - rxnFrom: - - eccodes: - - references: PMID17404808;PMID19498215 + - gene_reaction_rule: "ENSG00000073734 or ENSG00000108846" + - rxnFrom: "" + - eccodes: "" + - references: "PMID17404808;PMID19498215" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_10118 + - id: "HMR_10118" - name: "" - metabolites: !!omap - m02519c: 2 @@ -314346,15 +314346,15 @@ - m10025s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100652 - - rxnFrom: - - eccodes: - - references: PMID17404808;PMID19498215 + - gene_reaction_rule: "ENSG00000100652" + - rxnFrom: "" + - eccodes: "" + - references: "PMID17404808;PMID19498215" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_10119 + - id: "HMR_10119" - name: "" - metabolites: !!omap - m02519c: 2 @@ -314363,15 +314363,15 @@ - m10030s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100652 - - rxnFrom: - - eccodes: - - references: PMID17404808;PMID19498215 + - gene_reaction_rule: "ENSG00000100652" + - rxnFrom: "" + - eccodes: "" + - references: "PMID17404808;PMID19498215" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_10120 + - id: "HMR_10120" - name: "" - metabolites: !!omap - m02519c: 2 @@ -314380,15 +314380,15 @@ - m10023s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100652 - - rxnFrom: - - eccodes: - - references: PMID17404808;PMID19498215 + - gene_reaction_rule: "ENSG00000100652" + - rxnFrom: "" + - eccodes: "" + - references: "PMID17404808;PMID19498215" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_10121 + - id: "HMR_10121" - name: "" - metabolites: !!omap - m01334c: 1 @@ -314400,15 +314400,15 @@ - m10040c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: 6.2.1.7 - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "6.2.1.7" + - references: "" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_10122 + - id: "HMR_10122" - name: "" - metabolites: !!omap - m01597c: 1 @@ -314417,15 +314417,15 @@ - m10040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_10123 + - id: "HMR_10123" - name: "" - metabolites: !!omap - m01597c: 1 @@ -314435,15 +314435,15 @@ - m10041c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_10124 + - id: "HMR_10124" - name: "" - metabolites: !!omap - m01597c: 1 @@ -314453,15 +314453,15 @@ - m10040c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_10125 + - id: "HMR_10125" - name: "" - metabolites: !!omap - m01285c: 1 @@ -314473,15 +314473,15 @@ - m10041s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073734 or ENSG00000108846 - - rxnFrom: - - eccodes: - - references: PMID17404808;PMID19498215 + - gene_reaction_rule: "ENSG00000073734 or ENSG00000108846" + - rxnFrom: "" + - eccodes: "" + - references: "PMID17404808;PMID19498215" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_10126 + - id: "HMR_10126" - name: "" - metabolites: !!omap - m01285c: 1 @@ -314493,15 +314493,15 @@ - m10028s: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000073734 or ENSG00000108846 - - rxnFrom: - - eccodes: - - references: PMID17404808;PMID19498215 + - gene_reaction_rule: "ENSG00000073734 or ENSG00000108846" + - rxnFrom: "" + - eccodes: "" + - references: "PMID17404808;PMID19498215" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_10127 + - id: "HMR_10127" - name: "" - metabolites: !!omap - m02519c: 2 @@ -314510,15 +314510,15 @@ - m10041s: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: ENSG00000100652 - - rxnFrom: - - eccodes: - - references: PMID17404808;PMID19498215 + - gene_reaction_rule: "ENSG00000100652" + - rxnFrom: "" + - eccodes: "" + - references: "PMID17404808;PMID19498215" - subsystem: - - Transport reactions + - "Transport reactions" - confidence_score: 0 - !!omap - - id: HMR_10128 + - id: "HMR_10128" - name: "" - metabolites: !!omap - m01334c: 1 @@ -314529,15 +314529,15 @@ - m10042c: 1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_10129 + - id: "HMR_10129" - name: "" - metabolites: !!omap - m01597c: 1 @@ -314547,15 +314547,15 @@ - m10042c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_10130 + - id: "HMR_10130" - name: "" - metabolites: !!omap - m01597c: 1 @@ -314564,15 +314564,15 @@ - m10042c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_10131 + - id: "HMR_10131" - name: "" - metabolites: !!omap - m01597c: 1 @@ -314581,7293 +314581,7293 @@ - m10042c: -1 - lower_bound: 0 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "" - subsystem: - - Bile acid biosynthesis + - "Bile acid biosynthesis" - confidence_score: 0 - !!omap - - id: HMR_10132 + - id: "HMR_10132" - name: "" - metabolites: !!omap - m10041s: -1 - m10041x: 1 - lower_bound: -1000 - upper_bound: 1000 - - gene_reaction_rule: - - rxnFrom: - - eccodes: - - references: PMID17404808;PMID19498215 + - gene_reaction_rule: "" + - rxnFrom: "" + - eccodes: "" + - references: "PMID17404808;PMID19498215" - subsystem: - - Exchange/demand reactions + - "Exchange/demand reactions" - confidence_score: 0 - genes: - !!omap - - id: ENSG00000000419 + - id: "ENSG00000000419" - !!omap - - id: ENSG00000000938 + - id: "ENSG00000000938" - !!omap - - id: ENSG00000001036 + - id: "ENSG00000001036" - !!omap - - id: ENSG00000001084 + - id: "ENSG00000001084" - !!omap - - id: ENSG00000001630 + - id: "ENSG00000001630" - !!omap - - id: ENSG00000002549 + - id: "ENSG00000002549" - !!omap - - id: ENSG00000002587 + - id: "ENSG00000002587" - !!omap - - id: ENSG00000002726 + - id: "ENSG00000002726" - !!omap - - id: ENSG00000002746 + - id: "ENSG00000002746" - !!omap - - id: ENSG00000003137 + - id: "ENSG00000003137" - !!omap - - id: ENSG00000003987 + - id: "ENSG00000003987" - !!omap - - id: ENSG00000003989 + - id: "ENSG00000003989" - !!omap - - id: ENSG00000004455 + - id: "ENSG00000004455" - !!omap - - id: ENSG00000004468 + - id: "ENSG00000004468" - !!omap - - id: ENSG00000004478 + - id: "ENSG00000004478" - !!omap - - id: ENSG00000004660 + - id: "ENSG00000004660" - !!omap - - id: ENSG00000004779 + - id: "ENSG00000004779" - !!omap - - id: ENSG00000004799 + - id: "ENSG00000004799" - !!omap - - id: ENSG00000004809 + - id: "ENSG00000004809" - !!omap - - id: ENSG00000004864 + - id: "ENSG00000004864" - !!omap - - id: ENSG00000004939 + - id: "ENSG00000004939" - !!omap - - id: ENSG00000004961 + - id: "ENSG00000004961" - !!omap - - id: ENSG00000005022 + - id: "ENSG00000005022" - !!omap - - id: ENSG00000005075 + - id: "ENSG00000005075" - !!omap - - id: ENSG00000005187 + - id: "ENSG00000005187" - !!omap - - id: ENSG00000005249 + - id: "ENSG00000005249" - !!omap - - id: ENSG00000005339 + - id: "ENSG00000005339" - !!omap - - id: ENSG00000005381 + - id: "ENSG00000005381" - !!omap - - id: ENSG00000005421 + - id: "ENSG00000005421" - !!omap - - id: ENSG00000005469 + - id: "ENSG00000005469" - !!omap - - id: ENSG00000005471 + - id: "ENSG00000005471" - !!omap - - id: ENSG00000005483 + - id: "ENSG00000005483" - !!omap - - id: ENSG00000005810 + - id: "ENSG00000005810" - !!omap - - id: ENSG00000005882 + - id: "ENSG00000005882" - !!omap - - id: ENSG00000006007 + - id: "ENSG00000006007" - !!omap - - id: ENSG00000006062 + - id: "ENSG00000006062" - !!omap - - id: ENSG00000006071 + - id: "ENSG00000006071" - !!omap - - id: ENSG00000006432 + - id: "ENSG00000006432" - !!omap - - id: ENSG00000006530 + - id: "ENSG00000006530" - !!omap - - id: ENSG00000006534 + - id: "ENSG00000006534" - !!omap - - id: ENSG00000006625 + - id: "ENSG00000006625" - !!omap - - id: ENSG00000006695 + - id: "ENSG00000006695" - !!omap - - id: ENSG00000006756 + - id: "ENSG00000006756" - !!omap - - id: ENSG00000006757 + - id: "ENSG00000006757" - !!omap - - id: ENSG00000006837 + - id: "ENSG00000006837" - !!omap - - id: ENSG00000007001 + - id: "ENSG00000007001" - !!omap - - id: ENSG00000007047 + - id: "ENSG00000007047" - !!omap - - id: ENSG00000007168 + - id: "ENSG00000007168" - !!omap - - id: ENSG00000007171 + - id: "ENSG00000007171" - !!omap - - id: ENSG00000007216 + - id: "ENSG00000007216" - !!omap - - id: ENSG00000007264 + - id: "ENSG00000007264" - !!omap - - id: ENSG00000007350 + - id: "ENSG00000007350" - !!omap - - id: ENSG00000007541 + - id: "ENSG00000007541" - !!omap - - id: ENSG00000007933 + - id: "ENSG00000007933" - !!omap - - id: ENSG00000007944 + - id: "ENSG00000007944" - !!omap - - id: ENSG00000008086 + - id: "ENSG00000008086" - !!omap - - id: ENSG00000008118 + - id: "ENSG00000008118" - !!omap - - id: ENSG00000008128 + - id: "ENSG00000008128" - !!omap - - id: ENSG00000008130 + - id: "ENSG00000008130" - !!omap - - id: ENSG00000008300 + - id: "ENSG00000008300" - !!omap - - id: ENSG00000008311 + - id: "ENSG00000008311" - !!omap - - id: ENSG00000008394 + - id: "ENSG00000008394" - !!omap - - id: ENSG00000008438 + - id: "ENSG00000008438" - !!omap - - id: ENSG00000008513 + - id: "ENSG00000008513" - !!omap - - id: ENSG00000009335 + - id: "ENSG00000009335" - !!omap - - id: ENSG00000009413 + - id: "ENSG00000009413" - !!omap - - id: ENSG00000009830 + - id: "ENSG00000009830" - !!omap - - id: ENSG00000010165 + - id: "ENSG00000010165" - !!omap - - id: ENSG00000010219 + - id: "ENSG00000010219" - !!omap - - id: ENSG00000010256 + - id: "ENSG00000010256" - !!omap - - id: ENSG00000010379 + - id: "ENSG00000010379" - !!omap - - id: ENSG00000010404 + - id: "ENSG00000010404" - !!omap - - id: ENSG00000010671 + - id: "ENSG00000010671" - !!omap - - id: ENSG00000010810 + - id: "ENSG00000010810" - !!omap - - id: ENSG00000010932 + - id: "ENSG00000010932" - !!omap - - id: ENSG00000011009 + - id: "ENSG00000011009" - !!omap - - id: ENSG00000011052 + - id: "ENSG00000011052" - !!omap - - id: ENSG00000011083 + - id: "ENSG00000011083" - !!omap - - id: ENSG00000011198 + - id: "ENSG00000011198" - !!omap - - id: ENSG00000011275 + - id: "ENSG00000011275" - !!omap - - id: ENSG00000011405 + - id: "ENSG00000011405" - !!omap - - id: ENSG00000011485 + - id: "ENSG00000011485" - !!omap - - id: ENSG00000011566 + - id: "ENSG00000011566" - !!omap - - id: ENSG00000012232 + - id: "ENSG00000012232" - !!omap - - id: ENSG00000012660 + - id: "ENSG00000012660" - !!omap - - id: ENSG00000012779 + - id: "ENSG00000012779" - !!omap - - id: ENSG00000012963 + - id: "ENSG00000012963" - !!omap - - id: ENSG00000012983 + - id: "ENSG00000012983" - !!omap - - id: ENSG00000013288 + - id: "ENSG00000013288" - !!omap - - id: ENSG00000013375 + - id: "ENSG00000013375" - !!omap - - id: ENSG00000013392 + - id: "ENSG00000013392" - !!omap - - id: ENSG00000013441 + - id: "ENSG00000013441" - !!omap - - id: ENSG00000013503 + - id: "ENSG00000013503" - !!omap - - id: ENSG00000013561 + - id: "ENSG00000013561" - !!omap - - id: ENSG00000014138 + - id: "ENSG00000014138" - !!omap - - id: ENSG00000014257 + - id: "ENSG00000014257" - !!omap - - id: ENSG00000014641 + - id: "ENSG00000014641" - !!omap - - id: ENSG00000015413 + - id: "ENSG00000015413" - !!omap - - id: ENSG00000015520 + - id: "ENSG00000015520" - !!omap - - id: ENSG00000015532 + - id: "ENSG00000015532" - !!omap - - id: ENSG00000016391 + - id: "ENSG00000016391" - !!omap - - id: ENSG00000016864 + - id: "ENSG00000016864" - !!omap - - id: ENSG00000017260 + - id: "ENSG00000017260" - !!omap - - id: ENSG00000017483 + - id: "ENSG00000017483" - !!omap - - id: ENSG00000017797 + - id: "ENSG00000017797" - !!omap - - id: ENSG00000018280 + - id: "ENSG00000018280" - !!omap - - id: ENSG00000018510 + - id: "ENSG00000018510" - !!omap - - id: ENSG00000018625 + - id: "ENSG00000018625" - !!omap - - id: ENSG00000019186 + - id: "ENSG00000019186" - !!omap - - id: ENSG00000021461 + - id: "ENSG00000021461" - !!omap - - id: ENSG00000021488 + - id: "ENSG00000021488" - !!omap - - id: ENSG00000021826 + - id: "ENSG00000021826" - !!omap - - id: ENSG00000023041 + - id: "ENSG00000023041" - !!omap - - id: ENSG00000023228 + - id: "ENSG00000023228" - !!omap - - id: ENSG00000023330 + - id: "ENSG00000023330" - !!omap - - id: ENSG00000023572 + - id: "ENSG00000023572" - !!omap - - id: ENSG00000023697 + - id: "ENSG00000023697" - !!omap - - id: ENSG00000023839 + - id: "ENSG00000023839" - !!omap - - id: ENSG00000023909 + - id: "ENSG00000023909" - !!omap - - id: ENSG00000024048 + - id: "ENSG00000024048" - !!omap - - id: ENSG00000025423 + - id: "ENSG00000025423" - !!omap - - id: ENSG00000025708 + - id: "ENSG00000025708" - !!omap - - id: ENSG00000025800 + - id: "ENSG00000025800" - !!omap - - id: ENSG00000026103 + - id: "ENSG00000026103" - !!omap - - id: ENSG00000026652 + - id: "ENSG00000026652" - !!omap - - id: ENSG00000027075 + - id: "ENSG00000027075" - !!omap - - id: ENSG00000027644 + - id: "ENSG00000027644" - !!omap - - id: ENSG00000027847 + - id: "ENSG00000027847" - !!omap - - id: ENSG00000028116 + - id: "ENSG00000028116" - !!omap - - id: ENSG00000029639 + - id: "ENSG00000029639" - !!omap - - id: ENSG00000030066 + - id: "ENSG00000030066" - !!omap - - id: ENSG00000030304 + - id: "ENSG00000030304" - !!omap - - id: ENSG00000031698 + - id: "ENSG00000031698" - !!omap - - id: ENSG00000032444 + - id: "ENSG00000032444" - !!omap - - id: ENSG00000033011 + - id: "ENSG00000033011" - !!omap - - id: ENSG00000033100 + - id: "ENSG00000033100" - !!omap - - id: ENSG00000033170 + - id: "ENSG00000033170" - !!omap - - id: ENSG00000033178 + - id: "ENSG00000033178" - !!omap - - id: ENSG00000033627 + - id: "ENSG00000033627" - !!omap - - id: ENSG00000033867 + - id: "ENSG00000033867" - !!omap - - id: ENSG00000034152 + - id: "ENSG00000034152" - !!omap - - id: ENSG00000034677 + - id: "ENSG00000034677" - !!omap - - id: ENSG00000035664 + - id: "ENSG00000035664" - !!omap - - id: ENSG00000035687 + - id: "ENSG00000035687" - !!omap - - id: ENSG00000036473 + - id: "ENSG00000036473" - !!omap - - id: ENSG00000036530 + - id: "ENSG00000036530" - !!omap - - id: ENSG00000036565 + - id: "ENSG00000036565" - !!omap - - id: ENSG00000036672 + - id: "ENSG00000036672" - !!omap - - id: ENSG00000037280 + - id: "ENSG00000037280" - !!omap - - id: ENSG00000037757 + - id: "ENSG00000037757" - !!omap - - id: ENSG00000037897 + - id: "ENSG00000037897" - !!omap - - id: ENSG00000038002 + - id: "ENSG00000038002" - !!omap - - id: ENSG00000038210 + - id: "ENSG00000038210" - !!omap - - id: ENSG00000038274 + - id: "ENSG00000038274" - !!omap - - id: ENSG00000038382 + - id: "ENSG00000038382" - !!omap - - id: ENSG00000039123 + - id: "ENSG00000039123" - !!omap - - id: ENSG00000039650 + - id: "ENSG00000039650" - !!omap - - id: ENSG00000040199 + - id: "ENSG00000040199" - !!omap - - id: ENSG00000040933 + - id: "ENSG00000040933" - !!omap - - id: ENSG00000041880 + - id: "ENSG00000041880" - !!omap - - id: ENSG00000043514 + - id: "ENSG00000043514" - !!omap - - id: ENSG00000044446 + - id: "ENSG00000044446" - !!omap - - id: ENSG00000044524 + - id: "ENSG00000044524" - !!omap - - id: ENSG00000047230 + - id: "ENSG00000047230" - !!omap - - id: ENSG00000047249 + - id: "ENSG00000047249" - !!omap - - id: ENSG00000047315 + - id: "ENSG00000047315" - !!omap - - id: ENSG00000047410 + - id: "ENSG00000047410" - !!omap - - id: ENSG00000047457 + - id: "ENSG00000047457" - !!omap - - id: ENSG00000047936 + - id: "ENSG00000047936" - !!omap - - id: ENSG00000048028 + - id: "ENSG00000048028" - !!omap - - id: ENSG00000048392 + - id: "ENSG00000048392" - !!omap - - id: ENSG00000049239 + - id: "ENSG00000049239" - !!omap - - id: ENSG00000049759 + - id: "ENSG00000049759" - !!omap - - id: ENSG00000049860 + - id: "ENSG00000049860" - !!omap - - id: ENSG00000050438 + - id: "ENSG00000050438" - !!omap - - id: ENSG00000050748 + - id: "ENSG00000050748" - !!omap - - id: ENSG00000051341 + - id: "ENSG00000051341" - !!omap - - id: ENSG00000051382 + - id: "ENSG00000051382" - !!omap - - id: ENSG00000052802 + - id: "ENSG00000052802" - !!omap - - id: ENSG00000053371 + - id: "ENSG00000053371" - !!omap - - id: ENSG00000054148 + - id: "ENSG00000054148" - !!omap - - id: ENSG00000054179 + - id: "ENSG00000054179" - !!omap - - id: ENSG00000054267 + - id: "ENSG00000054267" - !!omap - - id: ENSG00000054356 + - id: "ENSG00000054356" - !!omap - - id: ENSG00000054392 + - id: "ENSG00000054392" - !!omap - - id: ENSG00000054983 + - id: "ENSG00000054983" - !!omap - - id: ENSG00000055332 + - id: "ENSG00000055332" - !!omap - - id: ENSG00000055483 + - id: "ENSG00000055483" - !!omap - - id: ENSG00000055609 + - id: "ENSG00000055609" - !!omap - - id: ENSG00000056998 + - id: "ENSG00000056998" - !!omap - - id: ENSG00000057252 + - id: "ENSG00000057252" - !!omap - - id: ENSG00000058056 + - id: "ENSG00000058056" - !!omap - - id: ENSG00000058091 + - id: "ENSG00000058091" - !!omap - - id: ENSG00000058404 + - id: "ENSG00000058404" - !!omap - - id: ENSG00000058600 + - id: "ENSG00000058600" - !!omap - - id: ENSG00000058668 + - id: "ENSG00000058668" - !!omap - - id: ENSG00000058729 + - id: "ENSG00000058729" - !!omap - - id: ENSG00000058804 + - id: "ENSG00000058804" - !!omap - - id: ENSG00000058866 + - id: "ENSG00000058866" - !!omap - - id: ENSG00000059377 + - id: "ENSG00000059377" - !!omap - - id: ENSG00000059378 + - id: "ENSG00000059378" - !!omap - - id: ENSG00000059573 + - id: "ENSG00000059573" - !!omap - - id: ENSG00000059588 + - id: "ENSG00000059588" - !!omap - - id: ENSG00000059758 + - id: "ENSG00000059758" - !!omap - - id: ENSG00000059804 + - id: "ENSG00000059804" - !!omap - - id: ENSG00000060069 + - id: "ENSG00000060069" - !!omap - - id: ENSG00000060140 + - id: "ENSG00000060140" - !!omap - - id: ENSG00000060237 + - id: "ENSG00000060237" - !!omap - - id: ENSG00000060642 + - id: "ENSG00000060642" - !!omap - - id: ENSG00000060656 + - id: "ENSG00000060656" - !!omap - - id: ENSG00000060762 + - id: "ENSG00000060762" - !!omap - - id: ENSG00000060971 + - id: "ENSG00000060971" - !!omap - - id: ENSG00000060982 + - id: "ENSG00000060982" - !!omap - - id: ENSG00000061918 + - id: "ENSG00000061918" - !!omap - - id: ENSG00000061938 + - id: "ENSG00000061938" - !!omap - - id: ENSG00000062282 + - id: "ENSG00000062282" - !!omap - - id: ENSG00000062485 + - id: "ENSG00000062485" - !!omap - - id: ENSG00000062524 + - id: "ENSG00000062524" - !!omap - - id: ENSG00000062822 + - id: "ENSG00000062822" - !!omap - - id: ENSG00000063176 + - id: "ENSG00000063176" - !!omap - - id: ENSG00000063601 + - id: "ENSG00000063601" - !!omap - - id: ENSG00000063854 + - id: "ENSG00000063854" - !!omap - - id: ENSG00000064225 + - id: "ENSG00000064225" - !!omap - - id: ENSG00000064270 + - id: "ENSG00000064270" - !!omap - - id: ENSG00000064393 + - id: "ENSG00000064393" - !!omap - - id: ENSG00000064601 + - id: "ENSG00000064601" - !!omap - - id: ENSG00000064651 + - id: "ENSG00000064651" - !!omap - - id: ENSG00000064655 + - id: "ENSG00000064655" - !!omap - - id: ENSG00000064763 + - id: "ENSG00000064763" - !!omap - - id: ENSG00000065154 + - id: "ENSG00000065154" - !!omap - - id: ENSG00000065243 + - id: "ENSG00000065243" - !!omap - - id: ENSG00000065357 + - id: "ENSG00000065357" - !!omap - - id: ENSG00000065361 + - id: "ENSG00000065361" - !!omap - - id: ENSG00000065427 + - id: "ENSG00000065427" - !!omap - - id: ENSG00000065485 + - id: "ENSG00000065485" - !!omap - - id: ENSG00000065518 + - id: "ENSG00000065518" - !!omap - - id: ENSG00000065534 + - id: "ENSG00000065534" - !!omap - - id: ENSG00000065559 + - id: "ENSG00000065559" - !!omap - - id: ENSG00000065613 + - id: "ENSG00000065613" - !!omap - - id: ENSG00000065615 + - id: "ENSG00000065615" - !!omap - - id: ENSG00000065621 + - id: "ENSG00000065621" - !!omap - - id: ENSG00000065675 + - id: "ENSG00000065675" - !!omap - - id: ENSG00000065833 + - id: "ENSG00000065833" - !!omap - - id: ENSG00000065883 + - id: "ENSG00000065883" - !!omap - - id: ENSG00000065911 + - id: "ENSG00000065911" - !!omap - - id: ENSG00000065923 + - id: "ENSG00000065923" - !!omap - - id: ENSG00000065989 + - id: "ENSG00000065989" - !!omap - - id: ENSG00000066056 + - id: "ENSG00000066056" - !!omap - - id: ENSG00000066230 + - id: "ENSG00000066230" - !!omap - - id: ENSG00000066322 + - id: "ENSG00000066322" - !!omap - - id: ENSG00000066379 + - id: "ENSG00000066379" - !!omap - - id: ENSG00000066468 + - id: "ENSG00000066468" - !!omap - - id: ENSG00000066651 + - id: "ENSG00000066651" - !!omap - - id: ENSG00000066813 + - id: "ENSG00000066813" - !!omap - - id: ENSG00000066926 + - id: "ENSG00000066926" - !!omap - - id: ENSG00000067057 + - id: "ENSG00000067057" - !!omap - - id: ENSG00000067064 + - id: "ENSG00000067064" - !!omap - - id: ENSG00000067113 + - id: "ENSG00000067113" - !!omap - - id: ENSG00000067177 + - id: "ENSG00000067177" - !!omap - - id: ENSG00000067225 + - id: "ENSG00000067225" - !!omap - - id: ENSG00000067365 + - id: "ENSG00000067365" - !!omap - - id: ENSG00000067606 + - id: "ENSG00000067606" - !!omap - - id: ENSG00000067829 + - id: "ENSG00000067829" - !!omap - - id: ENSG00000067840 + - id: "ENSG00000067840" - !!omap - - id: ENSG00000067842 + - id: "ENSG00000067842" - !!omap - - id: ENSG00000067900 + - id: "ENSG00000067900" - !!omap - - id: ENSG00000067992 + - id: "ENSG00000067992" - !!omap - - id: ENSG00000068001 + - id: "ENSG00000068001" - !!omap - - id: ENSG00000068078 + - id: "ENSG00000068078" - !!omap - - id: ENSG00000068120 + - id: "ENSG00000068120" - !!omap - - id: ENSG00000068308 + - id: "ENSG00000068308" - !!omap - - id: ENSG00000068366 + - id: "ENSG00000068366" - !!omap - - id: ENSG00000068383 + - id: "ENSG00000068383" - !!omap - - id: ENSG00000068438 + - id: "ENSG00000068438" - !!omap - - id: ENSG00000068650 + - id: "ENSG00000068650" - !!omap - - id: ENSG00000068654 + - id: "ENSG00000068654" - !!omap - - id: ENSG00000068745 + - id: "ENSG00000068745" - !!omap - - id: ENSG00000068903 + - id: "ENSG00000068903" - !!omap - - id: ENSG00000068976 + - id: "ENSG00000068976" - !!omap - - id: ENSG00000069020 + - id: "ENSG00000069020" - !!omap - - id: ENSG00000069248 + - id: "ENSG00000069248" - !!omap - - id: ENSG00000069431 + - id: "ENSG00000069431" - !!omap - - id: ENSG00000069535 + - id: "ENSG00000069535" - !!omap - - id: ENSG00000069667 + - id: "ENSG00000069667" - !!omap - - id: ENSG00000069764 + - id: "ENSG00000069764" - !!omap - - id: ENSG00000069849 + - id: "ENSG00000069849" - !!omap - - id: ENSG00000069869 + - id: "ENSG00000069869" - !!omap - - id: ENSG00000069943 + - id: "ENSG00000069943" - !!omap - - id: ENSG00000069956 + - id: "ENSG00000069956" - !!omap - - id: ENSG00000070019 + - id: "ENSG00000070019" - !!omap - - id: ENSG00000070159 + - id: "ENSG00000070159" - !!omap - - id: ENSG00000070214 + - id: "ENSG00000070214" - !!omap - - id: ENSG00000070423 + - id: "ENSG00000070423" - !!omap - - id: ENSG00000070501 + - id: "ENSG00000070501" - !!omap - - id: ENSG00000070526 + - id: "ENSG00000070526" - !!omap - - id: ENSG00000070610 + - id: "ENSG00000070610" - !!omap - - id: ENSG00000070614 + - id: "ENSG00000070614" - !!omap - - id: ENSG00000070669 + - id: "ENSG00000070669" - !!omap - - id: ENSG00000070731 + - id: "ENSG00000070731" - !!omap - - id: ENSG00000070748 + - id: "ENSG00000070748" - !!omap - - id: ENSG00000070759 + - id: "ENSG00000070759" - !!omap - - id: ENSG00000070770 + - id: "ENSG00000070770" - !!omap - - id: ENSG00000070778 + - id: "ENSG00000070778" - !!omap - - id: ENSG00000070808 + - id: "ENSG00000070808" - !!omap - - id: ENSG00000070886 + - id: "ENSG00000070886" - !!omap - - id: ENSG00000070915 + - id: "ENSG00000070915" - !!omap - - id: ENSG00000070950 + - id: "ENSG00000070950" - !!omap - - id: ENSG00000070961 + - id: "ENSG00000070961" - !!omap - - id: ENSG00000071054 + - id: "ENSG00000071054" - !!omap - - id: ENSG00000071073 + - id: "ENSG00000071073" - !!omap - - id: ENSG00000071242 + - id: "ENSG00000071242" - !!omap - - id: ENSG00000071462 + - id: "ENSG00000071462" - !!omap - - id: ENSG00000071553 + - id: "ENSG00000071553" - !!omap - - id: ENSG00000071794 + - id: "ENSG00000071794" - !!omap - - id: ENSG00000071909 + - id: "ENSG00000071909" - !!omap - - id: ENSG00000071967 + - id: "ENSG00000071967" - !!omap - - id: ENSG00000072041 + - id: "ENSG00000072041" - !!omap - - id: ENSG00000072042 + - id: "ENSG00000072042" - !!omap - - id: ENSG00000072062 + - id: "ENSG00000072062" - !!omap - - id: ENSG00000072133 + - id: "ENSG00000072133" - !!omap - - id: ENSG00000072135 + - id: "ENSG00000072135" - !!omap - - id: ENSG00000072195 + - id: "ENSG00000072195" - !!omap - - id: ENSG00000072210 + - id: "ENSG00000072210" - !!omap - - id: ENSG00000072274 + - id: "ENSG00000072274" - !!omap - - id: ENSG00000072310 + - id: "ENSG00000072310" - !!omap - - id: ENSG00000072401 + - id: "ENSG00000072401" - !!omap - - id: ENSG00000072506 + - id: "ENSG00000072506" - !!omap - - id: ENSG00000072518 + - id: "ENSG00000072518" - !!omap - - id: ENSG00000072609 + - id: "ENSG00000072609" - !!omap - - id: ENSG00000072657 + - id: "ENSG00000072657" - !!omap - - id: ENSG00000072682 + - id: "ENSG00000072682" - !!omap - - id: ENSG00000072756 + - id: "ENSG00000072756" - !!omap - - id: ENSG00000072778 + - id: "ENSG00000072778" - !!omap - - id: ENSG00000072786 + - id: "ENSG00000072786" - !!omap - - id: ENSG00000073060 + - id: "ENSG00000073060" - !!omap - - id: ENSG00000073417 + - id: "ENSG00000073417" - !!omap - - id: ENSG00000073578 + - id: "ENSG00000073578" - !!omap - - id: ENSG00000073711 + - id: "ENSG00000073711" - !!omap - - id: ENSG00000073734 + - id: "ENSG00000073734" - !!omap - - id: ENSG00000073737 + - id: "ENSG00000073737" - !!omap - - id: ENSG00000073756 + - id: "ENSG00000073756" - !!omap - - id: ENSG00000073803 + - id: "ENSG00000073803" - !!omap - - id: ENSG00000073849 + - id: "ENSG00000073849" - !!omap - - id: ENSG00000074211 + - id: "ENSG00000074211" - !!omap - - id: ENSG00000074370 + - id: "ENSG00000074370" - !!omap - - id: ENSG00000074410 + - id: "ENSG00000074410" - !!omap - - id: ENSG00000074416 + - id: "ENSG00000074416" - !!omap - - id: ENSG00000074590 + - id: "ENSG00000074590" - !!omap - - id: ENSG00000074621 + - id: "ENSG00000074621" - !!omap - - id: ENSG00000074696 + - id: "ENSG00000074696" - !!omap - - id: ENSG00000074800 + - id: "ENSG00000074800" - !!omap - - id: ENSG00000074803 + - id: "ENSG00000074803" - !!omap - - id: ENSG00000074966 + - id: "ENSG00000074966" - !!omap - - id: ENSG00000075188 + - id: "ENSG00000075188" - !!omap - - id: ENSG00000075239 + - id: "ENSG00000075239" - !!omap - - id: ENSG00000075413 + - id: "ENSG00000075413" - !!omap - - id: ENSG00000075415 + - id: "ENSG00000075415" - !!omap - - id: ENSG00000075651 + - id: "ENSG00000075651" - !!omap - - id: ENSG00000075673 + - id: "ENSG00000075673" - !!omap - - id: ENSG00000075975 + - id: "ENSG00000075975" - !!omap - - id: ENSG00000076201 + - id: "ENSG00000076201" - !!omap - - id: ENSG00000076258 + - id: "ENSG00000076258" - !!omap - - id: ENSG00000076351 + - id: "ENSG00000076351" - !!omap - - id: ENSG00000076555 + - id: "ENSG00000076555" - !!omap - - id: ENSG00000076685 + - id: "ENSG00000076685" - !!omap - - id: ENSG00000076984 + - id: "ENSG00000076984" - !!omap - - id: ENSG00000077009 + - id: "ENSG00000077009" - !!omap - - id: ENSG00000077044 + - id: "ENSG00000077044" - !!omap - - id: ENSG00000077152 + - id: "ENSG00000077152" - !!omap - - id: ENSG00000077254 + - id: "ENSG00000077254" - !!omap - - id: ENSG00000077264 + - id: "ENSG00000077264" - !!omap - - id: ENSG00000077463 + - id: "ENSG00000077463" - !!omap - - id: ENSG00000077498 + - id: "ENSG00000077498" - !!omap - - id: ENSG00000077514 + - id: "ENSG00000077514" - !!omap - - id: ENSG00000077721 + - id: "ENSG00000077721" - !!omap - - id: ENSG00000077782 + - id: "ENSG00000077782" - !!omap - - id: ENSG00000077800 + - id: "ENSG00000077800" - !!omap - - id: ENSG00000078061 + - id: "ENSG00000078061" - !!omap - - id: ENSG00000078070 + - id: "ENSG00000078070" - !!omap - - id: ENSG00000078124 + - id: "ENSG00000078124" - !!omap - - id: ENSG00000078140 + - id: "ENSG00000078140" - !!omap - - id: ENSG00000078142 + - id: "ENSG00000078142" - !!omap - - id: ENSG00000078237 + - id: "ENSG00000078237" - !!omap - - id: ENSG00000078269 + - id: "ENSG00000078269" - !!omap - - id: ENSG00000078295 + - id: "ENSG00000078295" - !!omap - - id: ENSG00000078747 + - id: "ENSG00000078747" - !!omap - - id: ENSG00000078967 + - id: "ENSG00000078967" - !!omap - - id: ENSG00000079150 + - id: "ENSG00000079150" - !!omap - - id: ENSG00000079215 + - id: "ENSG00000079215" - !!omap - - id: ENSG00000079277 + - id: "ENSG00000079277" - !!omap - - id: ENSG00000079335 + - id: "ENSG00000079335" - !!omap - - id: ENSG00000079393 + - id: "ENSG00000079393" - !!omap - - id: ENSG00000079435 + - id: "ENSG00000079435" - !!omap - - id: ENSG00000079459 + - id: "ENSG00000079459" - !!omap - - id: ENSG00000079462 + - id: "ENSG00000079462" - !!omap - - id: ENSG00000079739 + - id: "ENSG00000079739" - !!omap - - id: ENSG00000079805 + - id: "ENSG00000079805" - !!omap - - id: ENSG00000079931 + - id: "ENSG00000079931" - !!omap - - id: ENSG00000080031 + - id: "ENSG00000080031" - !!omap - - id: ENSG00000080166 + - id: "ENSG00000080166" - !!omap - - id: ENSG00000080224 + - id: "ENSG00000080224" - !!omap - - id: ENSG00000080493 + - id: "ENSG00000080493" - !!omap - - id: ENSG00000080511 + - id: "ENSG00000080511" - !!omap - - id: ENSG00000080802 + - id: "ENSG00000080802" - !!omap - - id: ENSG00000080819 + - id: "ENSG00000080819" - !!omap - - id: ENSG00000080823 + - id: "ENSG00000080823" - !!omap - - id: ENSG00000081181 + - id: "ENSG00000081181" - !!omap - - id: ENSG00000081237 + - id: "ENSG00000081237" - !!omap - - id: ENSG00000081320 + - id: "ENSG00000081320" - !!omap - - id: ENSG00000081377 + - id: "ENSG00000081377" - !!omap - - id: ENSG00000081479 + - id: "ENSG00000081479" - !!omap - - id: ENSG00000081721 + - id: "ENSG00000081721" - !!omap - - id: ENSG00000081760 + - id: "ENSG00000081760" - !!omap - - id: ENSG00000081800 + - id: "ENSG00000081800" - !!omap - - id: ENSG00000081913 + - id: "ENSG00000081913" - !!omap - - id: ENSG00000081923 + - id: "ENSG00000081923" - !!omap - - id: ENSG00000082014 + - id: "ENSG00000082014" - !!omap - - id: ENSG00000082212 + - id: "ENSG00000082212" - !!omap - - id: ENSG00000082996 + - id: "ENSG00000082996" - !!omap - - id: ENSG00000083123 + - id: "ENSG00000083123" - !!omap - - id: ENSG00000083168 + - id: "ENSG00000083168" - !!omap - - id: ENSG00000083223 + - id: "ENSG00000083223" - !!omap - - id: ENSG00000083290 + - id: "ENSG00000083290" - !!omap - - id: ENSG00000083444 + - id: "ENSG00000083444" - !!omap - - id: ENSG00000083720 + - id: "ENSG00000083720" - !!omap - - id: ENSG00000083799 + - id: "ENSG00000083799" - !!omap - - id: ENSG00000083807 + - id: "ENSG00000083807" - !!omap - - id: ENSG00000084072 + - id: "ENSG00000084072" - !!omap - - id: ENSG00000084073 + - id: "ENSG00000084073" - !!omap - - id: ENSG00000084090 + - id: "ENSG00000084090" - !!omap - - id: ENSG00000084110 + - id: "ENSG00000084110" - !!omap - - id: ENSG00000084112 + - id: "ENSG00000084112" - !!omap - - id: ENSG00000084207 + - id: "ENSG00000084207" - !!omap - - id: ENSG00000084453 + - id: "ENSG00000084453" - !!omap - - id: ENSG00000084674 + - id: "ENSG00000084674" - !!omap - - id: ENSG00000084676 + - id: "ENSG00000084676" - !!omap - - id: ENSG00000084754 + - id: "ENSG00000084754" - !!omap - - id: ENSG00000084774 + - id: "ENSG00000084774" - !!omap - - id: ENSG00000085231 + - id: "ENSG00000085231" - !!omap - - id: ENSG00000085377 + - id: "ENSG00000085377" - !!omap - - id: ENSG00000085382 + - id: "ENSG00000085382" - !!omap - - id: ENSG00000085415 + - id: "ENSG00000085415" - !!omap - - id: ENSG00000085511 + - id: "ENSG00000085511" - !!omap - - id: ENSG00000085563 + - id: "ENSG00000085563" - !!omap - - id: ENSG00000085662 + - id: "ENSG00000085662" - !!omap - - id: ENSG00000085871 + - id: "ENSG00000085871" - !!omap - - id: ENSG00000085982 + - id: "ENSG00000085982" - !!omap - - id: ENSG00000085998 + - id: "ENSG00000085998" - !!omap - - id: ENSG00000086015 + - id: "ENSG00000086015" - !!omap - - id: ENSG00000086062 + - id: "ENSG00000086062" - !!omap - - id: ENSG00000086159 + - id: "ENSG00000086159" - !!omap - - id: ENSG00000086232 + - id: "ENSG00000086232" - !!omap - - id: ENSG00000086475 + - id: "ENSG00000086475" - !!omap - - id: ENSG00000086544 + - id: "ENSG00000086544" - !!omap - - id: ENSG00000086696 + - id: "ENSG00000086696" - !!omap - - id: ENSG00000086717 + - id: "ENSG00000086717" - !!omap - - id: ENSG00000086758 + - id: "ENSG00000086758" - !!omap - - id: ENSG00000086848 + - id: "ENSG00000086848" - !!omap - - id: ENSG00000087008 + - id: "ENSG00000087008" - !!omap - - id: ENSG00000087053 + - id: "ENSG00000087053" - !!omap - - id: ENSG00000087076 + - id: "ENSG00000087076" - !!omap - - id: ENSG00000087085 + - id: "ENSG00000087085" - !!omap - - id: ENSG00000087095 + - id: "ENSG00000087095" - !!omap - - id: ENSG00000087111 + - id: "ENSG00000087111" - !!omap - - id: ENSG00000087157 + - id: "ENSG00000087157" - !!omap - - id: ENSG00000087253 + - id: "ENSG00000087253" - !!omap - - id: ENSG00000087299 + - id: "ENSG00000087299" - !!omap - - id: ENSG00000087470 + - id: "ENSG00000087470" - !!omap - - id: ENSG00000087586 + - id: "ENSG00000087586" - !!omap - - id: ENSG00000087995 + - id: "ENSG00000087995" - !!omap - - id: ENSG00000088002 + - id: "ENSG00000088002" - !!omap - - id: ENSG00000088035 + - id: "ENSG00000088035" - !!omap - - id: ENSG00000088179 + - id: "ENSG00000088179" - !!omap - - id: ENSG00000088305 + - id: "ENSG00000088305" - !!omap - - id: ENSG00000088386 + - id: "ENSG00000088386" - !!omap - - id: ENSG00000088451 + - id: "ENSG00000088451" - !!omap - - id: ENSG00000088766 + - id: "ENSG00000088766" - !!omap - - id: ENSG00000088826 + - id: "ENSG00000088826" - !!omap - - id: ENSG00000088832 + - id: "ENSG00000088832" - !!omap - - id: ENSG00000089022 + - id: "ENSG00000089022" - !!omap - - id: ENSG00000089057 + - id: "ENSG00000089057" - !!omap - - id: ENSG00000089060 + - id: "ENSG00000089060" - !!omap - - id: ENSG00000089234 + - id: "ENSG00000089234" - !!omap - - id: ENSG00000089250 + - id: "ENSG00000089250" - !!omap - - id: ENSG00000089472 + - id: "ENSG00000089472" - !!omap - - id: ENSG00000089597 + - id: "ENSG00000089597" - !!omap - - id: ENSG00000090013 + - id: "ENSG00000090013" - !!omap - - id: ENSG00000090020 + - id: "ENSG00000090020" - !!omap - - id: ENSG00000090054 + - id: "ENSG00000090054" - !!omap - - id: ENSG00000090060 + - id: "ENSG00000090060" - !!omap - - id: ENSG00000090266 + - id: "ENSG00000090266" - !!omap - - id: ENSG00000090376 + - id: "ENSG00000090376" - !!omap - - id: ENSG00000090402 + - id: "ENSG00000090402" - !!omap - - id: ENSG00000090432 + - id: "ENSG00000090432" - !!omap - - id: ENSG00000090661 + - id: "ENSG00000090661" - !!omap - - id: ENSG00000090686 + - id: "ENSG00000090686" - !!omap - - id: ENSG00000090857 + - id: "ENSG00000090857" - !!omap - - id: ENSG00000090861 + - id: "ENSG00000090861" - !!omap - - id: ENSG00000090971 + - id: "ENSG00000090971" - !!omap - - id: ENSG00000091137 + - id: "ENSG00000091137" - !!omap - - id: ENSG00000091138 + - id: "ENSG00000091138" - !!omap - - id: ENSG00000091140 + - id: "ENSG00000091140" - !!omap - - id: ENSG00000091436 + - id: "ENSG00000091436" - !!omap - - id: ENSG00000091483 + - id: "ENSG00000091483" - !!omap - - id: ENSG00000091664 + - id: "ENSG00000091664" - !!omap - - id: ENSG00000091704 + - id: "ENSG00000091704" - !!omap - - id: ENSG00000092009 + - id: "ENSG00000092009" - !!omap - - id: ENSG00000092068 + - id: "ENSG00000092068" - !!omap - - id: ENSG00000092098 + - id: "ENSG00000092098" - !!omap - - id: ENSG00000092148 + - id: "ENSG00000092148" - !!omap - - id: ENSG00000092295 + - id: "ENSG00000092295" - !!omap - - id: ENSG00000092439 + - id: "ENSG00000092439" - !!omap - - id: ENSG00000092445 + - id: "ENSG00000092445" - !!omap - - id: ENSG00000092529 + - id: "ENSG00000092529" - !!omap - - id: ENSG00000092621 + - id: "ENSG00000092621" - !!omap - - id: ENSG00000092964 + - id: "ENSG00000092964" - !!omap - - id: ENSG00000093000 + - id: "ENSG00000093000" - !!omap - - id: ENSG00000093010 + - id: "ENSG00000093010" - !!omap - - id: ENSG00000093072 + - id: "ENSG00000093072" - !!omap - - id: ENSG00000093134 + - id: "ENSG00000093134" - !!omap - - id: ENSG00000093217 + - id: "ENSG00000093217" - !!omap - - id: ENSG00000094841 + - id: "ENSG00000094841" - !!omap - - id: ENSG00000094914 + - id: "ENSG00000094914" - !!omap - - id: ENSG00000094963 + - id: "ENSG00000094963" - !!omap - - id: ENSG00000095015 + - id: "ENSG00000095015" - !!omap - - id: ENSG00000095059 + - id: "ENSG00000095059" - !!omap - - id: ENSG00000095139 + - id: "ENSG00000095139" - !!omap - - id: ENSG00000095303 + - id: "ENSG00000095303" - !!omap - - id: ENSG00000095319 + - id: "ENSG00000095319" - !!omap - - id: ENSG00000095321 + - id: "ENSG00000095321" - !!omap - - id: ENSG00000095380 + - id: "ENSG00000095380" - !!omap - - id: ENSG00000095464 + - id: "ENSG00000095464" - !!omap - - id: ENSG00000095596 + - id: "ENSG00000095596" - !!omap - - id: ENSG00000095777 + - id: "ENSG00000095777" - !!omap - - id: ENSG00000095917 + - id: "ENSG00000095917" - !!omap - - id: ENSG00000096006 + - id: "ENSG00000096006" - !!omap - - id: ENSG00000096060 + - id: "ENSG00000096060" - !!omap - - id: ENSG00000096063 + - id: "ENSG00000096063" - !!omap - - id: ENSG00000096717 + - id: "ENSG00000096717" - !!omap - - id: ENSG00000096968 + - id: "ENSG00000096968" - !!omap - - id: ENSG00000097007 + - id: "ENSG00000097007" - !!omap - - id: ENSG00000097021 + - id: "ENSG00000097021" - !!omap - - id: ENSG00000097033 + - id: "ENSG00000097033" - !!omap - - id: ENSG00000097046 + - id: "ENSG00000097046" - !!omap - - id: ENSG00000099194 + - id: "ENSG00000099194" - !!omap - - id: ENSG00000099308 + - id: "ENSG00000099308" - !!omap - - id: ENSG00000099377 + - id: "ENSG00000099377" - !!omap - - id: ENSG00000099381 + - id: "ENSG00000099381" - !!omap - - id: ENSG00000099624 + - id: "ENSG00000099624" - !!omap - - id: ENSG00000099785 + - id: "ENSG00000099785" - !!omap - - id: ENSG00000099795 + - id: "ENSG00000099795" - !!omap - - id: ENSG00000099797 + - id: "ENSG00000099797" - !!omap - - id: ENSG00000099804 + - id: "ENSG00000099804" - !!omap - - id: ENSG00000099810 + - id: "ENSG00000099810" - !!omap - - id: ENSG00000099817 + - id: "ENSG00000099817" - !!omap - - id: ENSG00000099821 + - id: "ENSG00000099821" - !!omap - - id: ENSG00000099875 + - id: "ENSG00000099875" - !!omap - - id: ENSG00000099904 + - id: "ENSG00000099904" - !!omap - - id: ENSG00000099984 + - id: "ENSG00000099984" - !!omap - - id: ENSG00000099998 + - id: "ENSG00000099998" - !!omap - - id: ENSG00000100023 + - id: "ENSG00000100023" - !!omap - - id: ENSG00000100024 + - id: "ENSG00000100024" - !!omap - - id: ENSG00000100030 + - id: "ENSG00000100030" - !!omap - - id: ENSG00000100031 + - id: "ENSG00000100031" - !!omap - - id: ENSG00000100033 + - id: "ENSG00000100033" - !!omap - - id: ENSG00000100034 + - id: "ENSG00000100034" - !!omap - - id: ENSG00000100075 + - id: "ENSG00000100075" - !!omap - - id: ENSG00000100077 + - id: "ENSG00000100077" - !!omap - - id: ENSG00000100078 + - id: "ENSG00000100078" - !!omap - - id: ENSG00000100092 + - id: "ENSG00000100092" - !!omap - - id: ENSG00000100101 + - id: "ENSG00000100101" - !!omap - - id: ENSG00000100116 + - id: "ENSG00000100116" - !!omap - - id: ENSG00000100121 + - id: "ENSG00000100121" - !!omap - - id: ENSG00000100142 + - id: "ENSG00000100142" - !!omap - - id: ENSG00000100156 + - id: "ENSG00000100156" - !!omap - - id: ENSG00000100170 + - id: "ENSG00000100170" - !!omap - - id: ENSG00000100197 + - id: "ENSG00000100197" - !!omap - - id: ENSG00000100243 + - id: "ENSG00000100243" - !!omap - - id: ENSG00000100253 + - id: "ENSG00000100253" - !!omap - - id: ENSG00000100288 + - id: "ENSG00000100288" - !!omap - - id: ENSG00000100292 + - id: "ENSG00000100292" - !!omap - - id: ENSG00000100294 + - id: "ENSG00000100294" - !!omap - - id: ENSG00000100299 + - id: "ENSG00000100299" - !!omap - - id: ENSG00000100330 + - id: "ENSG00000100330" - !!omap - - id: ENSG00000100344 + - id: "ENSG00000100344" - !!omap - - id: ENSG00000100348 + - id: "ENSG00000100348" - !!omap - - id: ENSG00000100354 + - id: "ENSG00000100354" - !!omap - - id: ENSG00000100372 + - id: "ENSG00000100372" - !!omap - - id: ENSG00000100393 + - id: "ENSG00000100393" - !!omap - - id: ENSG00000100412 + - id: "ENSG00000100412" - !!omap - - id: ENSG00000100413 + - id: "ENSG00000100413" - !!omap - - id: ENSG00000100416 + - id: "ENSG00000100416" - !!omap - - id: ENSG00000100417 + - id: "ENSG00000100417" - !!omap - - id: ENSG00000100422 + - id: "ENSG00000100422" - !!omap - - id: ENSG00000100442 + - id: "ENSG00000100442" - !!omap - - id: ENSG00000100448 + - id: "ENSG00000100448" - !!omap - - id: ENSG00000100462 + - id: "ENSG00000100462" - !!omap - - id: ENSG00000100479 + - id: "ENSG00000100479" - !!omap - - id: ENSG00000100483 + - id: "ENSG00000100483" - !!omap - - id: ENSG00000100490 + - id: "ENSG00000100490" - !!omap - - id: ENSG00000100504 + - id: "ENSG00000100504" - !!omap - - id: ENSG00000100522 + - id: "ENSG00000100522" - !!omap - - id: ENSG00000100526 + - id: "ENSG00000100526" - !!omap - - id: ENSG00000100554 + - id: "ENSG00000100554" - !!omap - - id: ENSG00000100564 + - id: "ENSG00000100564" - !!omap - - id: ENSG00000100577 + - id: "ENSG00000100577" - !!omap - - id: ENSG00000100596 + - id: "ENSG00000100596" - !!omap - - id: ENSG00000100600 + - id: "ENSG00000100600" - !!omap - - id: ENSG00000100605 + - id: "ENSG00000100605" - !!omap - - id: ENSG00000100614 + - id: "ENSG00000100614" - !!omap - - id: ENSG00000100626 + - id: "ENSG00000100626" - !!omap - - id: ENSG00000100644 + - id: "ENSG00000100644" - !!omap - - id: ENSG00000100652 + - id: "ENSG00000100652" - !!omap - - id: ENSG00000100678 + - id: "ENSG00000100678" - !!omap - - id: ENSG00000100714 + - id: "ENSG00000100714" - !!omap - - id: ENSG00000100749 + - id: "ENSG00000100749" - !!omap - - id: ENSG00000100784 + - id: "ENSG00000100784" - !!omap - - id: ENSG00000100814 + - id: "ENSG00000100814" - !!omap - - id: ENSG00000100865 + - id: "ENSG00000100865" - !!omap - - id: ENSG00000100867 + - id: "ENSG00000100867" - !!omap - - id: ENSG00000100889 + - id: "ENSG00000100889" - !!omap - - id: ENSG00000100938 + - id: "ENSG00000100938" - !!omap - - id: ENSG00000100979 + - id: "ENSG00000100979" - !!omap - - id: ENSG00000100983 + - id: "ENSG00000100983" - !!omap - - id: ENSG00000100994 + - id: "ENSG00000100994" - !!omap - - id: ENSG00000100997 + - id: "ENSG00000100997" - !!omap - - id: ENSG00000101049 + - id: "ENSG00000101049" - !!omap - - id: ENSG00000101109 + - id: "ENSG00000101109" - !!omap - - id: ENSG00000101146 + - id: "ENSG00000101146" - !!omap - - id: ENSG00000101160 + - id: "ENSG00000101160" - !!omap - - id: ENSG00000101187 + - id: "ENSG00000101187" - !!omap - - id: ENSG00000101210 + - id: "ENSG00000101210" - !!omap - - id: ENSG00000101213 + - id: "ENSG00000101213" - !!omap - - id: ENSG00000101224 + - id: "ENSG00000101224" - !!omap - - id: ENSG00000101247 + - id: "ENSG00000101247" - !!omap - - id: ENSG00000101255 + - id: "ENSG00000101255" - !!omap - - id: ENSG00000101266 + - id: "ENSG00000101266" - !!omap - - id: ENSG00000101276 + - id: "ENSG00000101276" - !!omap - - id: ENSG00000101290 + - id: "ENSG00000101290" - !!omap - - id: ENSG00000101306 + - id: "ENSG00000101306" - !!omap - - id: ENSG00000101323 + - id: "ENSG00000101323" - !!omap - - id: ENSG00000101333 + - id: "ENSG00000101333" - !!omap - - id: ENSG00000101336 + - id: "ENSG00000101336" - !!omap - - id: ENSG00000101349 + - id: "ENSG00000101349" - !!omap - - id: ENSG00000101365 + - id: "ENSG00000101365" - !!omap - - id: ENSG00000101438 + - id: "ENSG00000101438" - !!omap - - id: ENSG00000101444 + - id: "ENSG00000101444" - !!omap - - id: ENSG00000101464 + - id: "ENSG00000101464" - !!omap - - id: ENSG00000101473 + - id: "ENSG00000101473" - !!omap - - id: ENSG00000101557 + - id: "ENSG00000101557" - !!omap - - id: ENSG00000101558 + - id: "ENSG00000101558" - !!omap - - id: ENSG00000101574 + - id: "ENSG00000101574" - !!omap - - id: ENSG00000101577 + - id: "ENSG00000101577" - !!omap - - id: ENSG00000101638 + - id: "ENSG00000101638" - !!omap - - id: ENSG00000101654 + - id: "ENSG00000101654" - !!omap - - id: ENSG00000101670 + - id: "ENSG00000101670" - !!omap - - id: ENSG00000101695 + - id: "ENSG00000101695" - !!omap - - id: ENSG00000101751 + - id: "ENSG00000101751" - !!omap - - id: ENSG00000101752 + - id: "ENSG00000101752" - !!omap - - id: ENSG00000101782 + - id: "ENSG00000101782" - !!omap - - id: ENSG00000101846 + - id: "ENSG00000101846" - !!omap - - id: ENSG00000101849 + - id: "ENSG00000101849" - !!omap - - id: ENSG00000101868 + - id: "ENSG00000101868" - !!omap - - id: ENSG00000101871 + - id: "ENSG00000101871" - !!omap - - id: ENSG00000101890 + - id: "ENSG00000101890" - !!omap - - id: ENSG00000101892 + - id: "ENSG00000101892" - !!omap - - id: ENSG00000101901 + - id: "ENSG00000101901" - !!omap - - id: ENSG00000101911 + - id: "ENSG00000101911" - !!omap - - id: ENSG00000101945 + - id: "ENSG00000101945" - !!omap - - id: ENSG00000101974 + - id: "ENSG00000101974" - !!omap - - id: ENSG00000101986 + - id: "ENSG00000101986" - !!omap - - id: ENSG00000102010 + - id: "ENSG00000102010" - !!omap - - id: ENSG00000102030 + - id: "ENSG00000102030" - !!omap - - id: ENSG00000102032 + - id: "ENSG00000102032" - !!omap - - id: ENSG00000102043 + - id: "ENSG00000102043" - !!omap - - id: ENSG00000102078 + - id: "ENSG00000102078" - !!omap - - id: ENSG00000102096 + - id: "ENSG00000102096" - !!omap - - id: ENSG00000102100 + - id: "ENSG00000102100" - !!omap - - id: ENSG00000102125 + - id: "ENSG00000102125" - !!omap - - id: ENSG00000102144 + - id: "ENSG00000102144" - !!omap - - id: ENSG00000102172 + - id: "ENSG00000102172" - !!omap - - id: ENSG00000102225 + - id: "ENSG00000102225" - !!omap - - id: ENSG00000102226 + - id: "ENSG00000102226" - !!omap - - id: ENSG00000102230 + - id: "ENSG00000102230" - !!omap - - id: ENSG00000102309 + - id: "ENSG00000102309" - !!omap - - id: ENSG00000102312 + - id: "ENSG00000102312" - !!omap - - id: ENSG00000102383 + - id: "ENSG00000102383" - !!omap - - id: ENSG00000102393 + - id: "ENSG00000102393" - !!omap - - id: ENSG00000102572 + - id: "ENSG00000102572" - !!omap - - id: ENSG00000102575 + - id: "ENSG00000102575" - !!omap - - id: ENSG00000102595 + - id: "ENSG00000102595" - !!omap - - id: ENSG00000102699 + - id: "ENSG00000102699" - !!omap - - id: ENSG00000102743 + - id: "ENSG00000102743" - !!omap - - id: ENSG00000102755 + - id: "ENSG00000102755" - !!omap - - id: ENSG00000102780 + - id: "ENSG00000102780" - !!omap - - id: ENSG00000102858 + - id: "ENSG00000102858" - !!omap - - id: ENSG00000102882 + - id: "ENSG00000102882" - !!omap - - id: ENSG00000102893 + - id: "ENSG00000102893" - !!omap - - id: ENSG00000102900 + - id: "ENSG00000102900" - !!omap - - id: ENSG00000102967 + - id: "ENSG00000102967" - !!omap - - id: ENSG00000102978 + - id: "ENSG00000102978" - !!omap - - id: ENSG00000103024 + - id: "ENSG00000103024" - !!omap - - id: ENSG00000103037 + - id: "ENSG00000103037" - !!omap - - id: ENSG00000103044 + - id: "ENSG00000103044" - !!omap - - id: ENSG00000103056 + - id: "ENSG00000103056" - !!omap - - id: ENSG00000103064 + - id: "ENSG00000103064" - !!omap - - id: ENSG00000103066 + - id: "ENSG00000103066" - !!omap - - id: ENSG00000103150 + - id: "ENSG00000103150" - !!omap - - id: ENSG00000103174 + - id: "ENSG00000103174" - !!omap - - id: ENSG00000103194 + - id: "ENSG00000103194" - !!omap - - id: ENSG00000103202 + - id: "ENSG00000103202" - !!omap - - id: ENSG00000103222 + - id: "ENSG00000103222" - !!omap - - id: ENSG00000103253 + - id: "ENSG00000103253" - !!omap - - id: ENSG00000103257 + - id: "ENSG00000103257" - !!omap - - id: ENSG00000103266 + - id: "ENSG00000103266" - !!omap - - id: ENSG00000103275 + - id: "ENSG00000103275" - !!omap - - id: ENSG00000103375 + - id: "ENSG00000103375" - !!omap - - id: ENSG00000103404 + - id: "ENSG00000103404" - !!omap - - id: ENSG00000103415 + - id: "ENSG00000103415" - !!omap - - id: ENSG00000103485 + - id: "ENSG00000103485" - !!omap - - id: ENSG00000103489 + - id: "ENSG00000103489" - !!omap - - id: ENSG00000103502 + - id: "ENSG00000103502" - !!omap - - id: ENSG00000103507 + - id: "ENSG00000103507" - !!omap - - id: ENSG00000103510 + - id: "ENSG00000103510" - !!omap - - id: ENSG00000103546 + - id: "ENSG00000103546" - !!omap - - id: ENSG00000103549 + - id: "ENSG00000103549" - !!omap - - id: ENSG00000103569 + - id: "ENSG00000103569" - !!omap - - id: ENSG00000103653 + - id: "ENSG00000103653" - !!omap - - id: ENSG00000103657 + - id: "ENSG00000103657" - !!omap - - id: ENSG00000103707 + - id: "ENSG00000103707" - !!omap - - id: ENSG00000103740 + - id: "ENSG00000103740" - !!omap - - id: ENSG00000103811 + - id: "ENSG00000103811" - !!omap - - id: ENSG00000103876 + - id: "ENSG00000103876" - !!omap - - id: ENSG00000104044 + - id: "ENSG00000104044" - !!omap - - id: ENSG00000104055 + - id: "ENSG00000104055" - !!omap - - id: ENSG00000104205 + - id: "ENSG00000104205" - !!omap - - id: ENSG00000104219 + - id: "ENSG00000104219" - !!omap - - id: ENSG00000104267 + - id: "ENSG00000104267" - !!omap - - id: ENSG00000104312 + - id: "ENSG00000104312" - !!omap - - id: ENSG00000104313 + - id: "ENSG00000104313" - !!omap - - id: ENSG00000104325 + - id: "ENSG00000104325" - !!omap - - id: ENSG00000104331 + - id: "ENSG00000104331" - !!omap - - id: ENSG00000104343 + - id: "ENSG00000104343" - !!omap - - id: ENSG00000104365 + - id: "ENSG00000104365" - !!omap - - id: ENSG00000104375 + - id: "ENSG00000104375" - !!omap - - id: ENSG00000104517 + - id: "ENSG00000104517" - !!omap - - id: ENSG00000104522 + - id: "ENSG00000104522" - !!omap - - id: ENSG00000104524 + - id: "ENSG00000104524" - !!omap - - id: ENSG00000104549 + - id: "ENSG00000104549" - !!omap - - id: ENSG00000104635 + - id: "ENSG00000104635" - !!omap - - id: ENSG00000104687 + - id: "ENSG00000104687" - !!omap - - id: ENSG00000104695 + - id: "ENSG00000104695" - !!omap - - id: ENSG00000104723 + - id: "ENSG00000104723" - !!omap - - id: ENSG00000104763 + - id: "ENSG00000104763" - !!omap - - id: ENSG00000104774 + - id: "ENSG00000104774" - !!omap - - id: ENSG00000104808 + - id: "ENSG00000104808" - !!omap - - id: ENSG00000104812 + - id: "ENSG00000104812" - !!omap - - id: ENSG00000104814 + - id: "ENSG00000104814" - !!omap - - id: ENSG00000104823 + - id: "ENSG00000104823" - !!omap - - id: ENSG00000104879 + - id: "ENSG00000104879" - !!omap - - id: ENSG00000104885 + - id: "ENSG00000104885" - !!omap - - id: ENSG00000104888 + - id: "ENSG00000104888" - !!omap - - id: ENSG00000104907 + - id: "ENSG00000104907" - !!omap - - id: ENSG00000104936 + - id: "ENSG00000104936" - !!omap - - id: ENSG00000104951 + - id: "ENSG00000104951" - !!omap - - id: ENSG00000105053 + - id: "ENSG00000105053" - !!omap - - id: ENSG00000105143 + - id: "ENSG00000105143" - !!omap - - id: ENSG00000105146 + - id: "ENSG00000105146" - !!omap - - id: ENSG00000105198 + - id: "ENSG00000105198" - !!omap - - id: ENSG00000105202 + - id: "ENSG00000105202" - !!omap - - id: ENSG00000105204 + - id: "ENSG00000105204" - !!omap - - id: ENSG00000105205 + - id: "ENSG00000105205" - !!omap - - id: ENSG00000105220 + - id: "ENSG00000105220" - !!omap - - id: ENSG00000105221 + - id: "ENSG00000105221" - !!omap - - id: ENSG00000105223 + - id: "ENSG00000105223" - !!omap - - id: ENSG00000105254 + - id: "ENSG00000105254" - !!omap - - id: ENSG00000105258 + - id: "ENSG00000105258" - !!omap - - id: ENSG00000105281 + - id: "ENSG00000105281" - !!omap - - id: ENSG00000105287 + - id: "ENSG00000105287" - !!omap - - id: ENSG00000105355 + - id: "ENSG00000105355" - !!omap - - id: ENSG00000105379 + - id: "ENSG00000105379" - !!omap - - id: ENSG00000105397 + - id: "ENSG00000105397" - !!omap - - id: ENSG00000105398 + - id: "ENSG00000105398" - !!omap - - id: ENSG00000105409 + - id: "ENSG00000105409" - !!omap - - id: ENSG00000105426 + - id: "ENSG00000105426" - !!omap - - id: ENSG00000105499 + - id: "ENSG00000105499" - !!omap - - id: ENSG00000105509 + - id: "ENSG00000105509" - !!omap - - id: ENSG00000105516 + - id: "ENSG00000105516" - !!omap - - id: ENSG00000105520 + - id: "ENSG00000105520" - !!omap - - id: ENSG00000105552 + - id: "ENSG00000105552" - !!omap - - id: ENSG00000105568 + - id: "ENSG00000105568" - !!omap - - id: ENSG00000105607 + - id: "ENSG00000105607" - !!omap - - id: ENSG00000105613 + - id: "ENSG00000105613" - !!omap - - id: ENSG00000105639 + - id: "ENSG00000105639" - !!omap - - id: ENSG00000105641 + - id: "ENSG00000105641" - !!omap - - id: ENSG00000105647 + - id: "ENSG00000105647" - !!omap - - id: ENSG00000105650 + - id: "ENSG00000105650" - !!omap - - id: ENSG00000105655 + - id: "ENSG00000105655" - !!omap - - id: ENSG00000105669 + - id: "ENSG00000105669" - !!omap - - id: ENSG00000105675 + - id: "ENSG00000105675" - !!omap - - id: ENSG00000105679 + - id: "ENSG00000105679" - !!omap - - id: ENSG00000105701 + - id: "ENSG00000105701" - !!omap - - id: ENSG00000105810 + - id: "ENSG00000105810" - !!omap - - id: ENSG00000105835 + - id: "ENSG00000105835" - !!omap - - id: ENSG00000105851 + - id: "ENSG00000105851" - !!omap - - id: ENSG00000105852 + - id: "ENSG00000105852" - !!omap - - id: ENSG00000105854 + - id: "ENSG00000105854" - !!omap - - id: ENSG00000105879 + - id: "ENSG00000105879" - !!omap - - id: ENSG00000105929 + - id: "ENSG00000105929" - !!omap - - id: ENSG00000105939 + - id: "ENSG00000105939" - !!omap - - id: ENSG00000105953 + - id: "ENSG00000105953" - !!omap - - id: ENSG00000105976 + - id: "ENSG00000105976" - !!omap - - id: ENSG00000106049 + - id: "ENSG00000106049" - !!omap - - id: ENSG00000106080 + - id: "ENSG00000106080" - !!omap - - id: ENSG00000106105 + - id: "ENSG00000106105" - !!omap - - id: ENSG00000106123 + - id: "ENSG00000106123" - !!omap - - id: ENSG00000106258 + - id: "ENSG00000106258" - !!omap - - id: ENSG00000106278 + - id: "ENSG00000106278" - !!omap - - id: ENSG00000106302 + - id: "ENSG00000106302" - !!omap - - id: ENSG00000106304 + - id: "ENSG00000106304" - !!omap - - id: ENSG00000106346 + - id: "ENSG00000106346" - !!omap - - id: ENSG00000106348 + - id: "ENSG00000106348" - !!omap - - id: ENSG00000106384 + - id: "ENSG00000106384" - !!omap - - id: ENSG00000106392 + - id: "ENSG00000106392" - !!omap - - id: ENSG00000106397 + - id: "ENSG00000106397" - !!omap - - id: ENSG00000106459 + - id: "ENSG00000106459" - !!omap - - id: ENSG00000106462 + - id: "ENSG00000106462" - !!omap - - id: ENSG00000106605 + - id: "ENSG00000106605" - !!omap - - id: ENSG00000106617 + - id: "ENSG00000106617" - !!omap - - id: ENSG00000106628 + - id: "ENSG00000106628" - !!omap - - id: ENSG00000106633 + - id: "ENSG00000106633" - !!omap - - id: ENSG00000106636 + - id: "ENSG00000106636" - !!omap - - id: ENSG00000106648 + - id: "ENSG00000106648" - !!omap - - id: ENSG00000106683 + - id: "ENSG00000106683" - !!omap - - id: ENSG00000106688 + - id: "ENSG00000106688" - !!omap - - id: ENSG00000106733 + - id: "ENSG00000106733" - !!omap - - id: ENSG00000106799 + - id: "ENSG00000106799" - !!omap - - id: ENSG00000106853 + - id: "ENSG00000106853" - !!omap - - id: ENSG00000106976 + - id: "ENSG00000106976" - !!omap - - id: ENSG00000106992 + - id: "ENSG00000106992" - !!omap - - id: ENSG00000107140 + - id: "ENSG00000107140" - !!omap - - id: ENSG00000107159 + - id: "ENSG00000107159" - !!omap - - id: ENSG00000107165 + - id: "ENSG00000107165" - !!omap - - id: ENSG00000107242 + - id: "ENSG00000107242" - !!omap - - id: ENSG00000107317 + - id: "ENSG00000107317" - !!omap - - id: ENSG00000107341 + - id: "ENSG00000107341" - !!omap - - id: ENSG00000107537 + - id: "ENSG00000107537" - !!omap - - id: ENSG00000107611 + - id: "ENSG00000107611" - !!omap - - id: ENSG00000107614 + - id: "ENSG00000107614" - !!omap - - id: ENSG00000107643 + - id: "ENSG00000107643" - !!omap - - id: ENSG00000107669 + - id: "ENSG00000107669" - !!omap - - id: ENSG00000107758 + - id: "ENSG00000107758" - !!omap - - id: ENSG00000107779 + - id: "ENSG00000107779" - !!omap - - id: ENSG00000107789 + - id: "ENSG00000107789" - !!omap - - id: ENSG00000107798 + - id: "ENSG00000107798" - !!omap - - id: ENSG00000107819 + - id: "ENSG00000107819" - !!omap - - id: ENSG00000107854 + - id: "ENSG00000107854" - !!omap - - id: ENSG00000107902 + - id: "ENSG00000107902" - !!omap - - id: ENSG00000107951 + - id: "ENSG00000107951" - !!omap - - id: ENSG00000107954 + - id: "ENSG00000107954" - !!omap - - id: ENSG00000107968 + - id: "ENSG00000107968" - !!omap - - id: ENSG00000108106 + - id: "ENSG00000108106" - !!omap - - id: ENSG00000108179 + - id: "ENSG00000108179" - !!omap - - id: ENSG00000108242 + - id: "ENSG00000108242" - !!omap - - id: ENSG00000108381 + - id: "ENSG00000108381" - !!omap - - id: ENSG00000108439 + - id: "ENSG00000108439" - !!omap - - id: ENSG00000108443 + - id: "ENSG00000108443" - !!omap - - id: ENSG00000108468 + - id: "ENSG00000108468" - !!omap - - id: ENSG00000108474 + - id: "ENSG00000108474" - !!omap - - id: ENSG00000108479 + - id: "ENSG00000108479" - !!omap - - id: ENSG00000108515 + - id: "ENSG00000108515" - !!omap - - id: ENSG00000108523 + - id: "ENSG00000108523" - !!omap - - id: ENSG00000108528 + - id: "ENSG00000108528" - !!omap - - id: ENSG00000108559 + - id: "ENSG00000108559" - !!omap - - id: ENSG00000108576 + - id: "ENSG00000108576" - !!omap - - id: ENSG00000108592 + - id: "ENSG00000108592" - !!omap - - id: ENSG00000108602 + - id: "ENSG00000108602" - !!omap - - id: ENSG00000108773 + - id: "ENSG00000108773" - !!omap - - id: ENSG00000108784 + - id: "ENSG00000108784" - !!omap - - id: ENSG00000108786 + - id: "ENSG00000108786" - !!omap - - id: ENSG00000108799 + - id: "ENSG00000108799" - !!omap - - id: ENSG00000108813 + - id: "ENSG00000108813" - !!omap - - id: ENSG00000108839 + - id: "ENSG00000108839" - !!omap - - id: ENSG00000108846 + - id: "ENSG00000108846" - !!omap - - id: ENSG00000108854 + - id: "ENSG00000108854" - !!omap - - id: ENSG00000108861 + - id: "ENSG00000108861" - !!omap - - id: ENSG00000108932 + - id: "ENSG00000108932" - !!omap - - id: ENSG00000108946 + - id: "ENSG00000108946" - !!omap - - id: ENSG00000108984 + - id: "ENSG00000108984" - !!omap - - id: ENSG00000109065 + - id: "ENSG00000109065" - !!omap - - id: ENSG00000109107 + - id: "ENSG00000109107" - !!omap - - id: ENSG00000109181 + - id: "ENSG00000109181" - !!omap - - id: ENSG00000109189 + - id: "ENSG00000109189" - !!omap - - id: ENSG00000109193 + - id: "ENSG00000109193" - !!omap - - id: ENSG00000109323 + - id: "ENSG00000109323" - !!omap - - id: ENSG00000109332 + - id: "ENSG00000109332" - !!omap - - id: ENSG00000109339 + - id: "ENSG00000109339" - !!omap - - id: ENSG00000109390 + - id: "ENSG00000109390" - !!omap - - id: ENSG00000109424 + - id: "ENSG00000109424" - !!omap - - id: ENSG00000109452 + - id: "ENSG00000109452" - !!omap - - id: ENSG00000109576 + - id: "ENSG00000109576" - !!omap - - id: ENSG00000109586 + - id: "ENSG00000109586" - !!omap - - id: ENSG00000109610 + - id: "ENSG00000109610" - !!omap - - id: ENSG00000109667 + - id: "ENSG00000109667" - !!omap - - id: ENSG00000109685 + - id: "ENSG00000109685" - !!omap - - id: ENSG00000109743 + - id: "ENSG00000109743" - !!omap - - id: ENSG00000109814 + - id: "ENSG00000109814" - !!omap - - id: ENSG00000109854 + - id: "ENSG00000109854" - !!omap - - id: ENSG00000109861 + - id: "ENSG00000109861" - !!omap - - id: ENSG00000109929 + - id: "ENSG00000109929" - !!omap - - id: ENSG00000109956 + - id: "ENSG00000109956" - !!omap - - id: ENSG00000110013 + - id: "ENSG00000110013" - !!omap - - id: ENSG00000110066 + - id: "ENSG00000110066" - !!omap - - id: ENSG00000110080 + - id: "ENSG00000110080" - !!omap - - id: ENSG00000110090 + - id: "ENSG00000110090" - !!omap - - id: ENSG00000110195 + - id: "ENSG00000110195" - !!omap - - id: ENSG00000110203 + - id: "ENSG00000110203" - !!omap - - id: ENSG00000110243 + - id: "ENSG00000110243" - !!omap - - id: ENSG00000110245 + - id: "ENSG00000110245" - !!omap - - id: ENSG00000110328 + - id: "ENSG00000110328" - !!omap - - id: ENSG00000110344 + - id: "ENSG00000110344" - !!omap - - id: ENSG00000110395 + - id: "ENSG00000110395" - !!omap - - id: ENSG00000110422 + - id: "ENSG00000110422" - !!omap - - id: ENSG00000110435 + - id: "ENSG00000110435" - !!omap - - id: ENSG00000110436 + - id: "ENSG00000110436" - !!omap - - id: ENSG00000110446 + - id: "ENSG00000110446" - !!omap - - id: ENSG00000110536 + - id: "ENSG00000110536" - !!omap - - id: ENSG00000110583 + - id: "ENSG00000110583" - !!omap - - id: ENSG00000110619 + - id: "ENSG00000110619" - !!omap - - id: ENSG00000110628 + - id: "ENSG00000110628" - !!omap - - id: ENSG00000110713 + - id: "ENSG00000110713" - !!omap - - id: ENSG00000110717 + - id: "ENSG00000110717" - !!omap - - id: ENSG00000110719 + - id: "ENSG00000110719" - !!omap - - id: ENSG00000110721 + - id: "ENSG00000110721" - !!omap - - id: ENSG00000110786 + - id: "ENSG00000110786" - !!omap - - id: ENSG00000110871 + - id: "ENSG00000110871" - !!omap - - id: ENSG00000110887 + - id: "ENSG00000110887" - !!omap - - id: ENSG00000110911 + - id: "ENSG00000110911" - !!omap - - id: ENSG00000110921 + - id: "ENSG00000110921" - !!omap - - id: ENSG00000110931 + - id: "ENSG00000110931" - !!omap - - id: ENSG00000110955 + - id: "ENSG00000110955" - !!omap - - id: ENSG00000110958 + - id: "ENSG00000110958" - !!omap - - id: ENSG00000111012 + - id: "ENSG00000111012" - !!omap - - id: ENSG00000111058 + - id: "ENSG00000111058" - !!omap - - id: ENSG00000111077 + - id: "ENSG00000111077" - !!omap - - id: ENSG00000111144 + - id: "ENSG00000111144" - !!omap - - id: ENSG00000111181 + - id: "ENSG00000111181" - !!omap - - id: ENSG00000111218 + - id: "ENSG00000111218" - !!omap - - id: ENSG00000111224 + - id: "ENSG00000111224" - !!omap - - id: ENSG00000111237 + - id: "ENSG00000111237" - !!omap - - id: ENSG00000111261 + - id: "ENSG00000111261" - !!omap - - id: ENSG00000111266 + - id: "ENSG00000111266" - !!omap - - id: ENSG00000111271 + - id: "ENSG00000111271" - !!omap - - id: ENSG00000111275 + - id: "ENSG00000111275" - !!omap - - id: ENSG00000111339 + - id: "ENSG00000111339" - !!omap - - id: ENSG00000111371 + - id: "ENSG00000111371" - !!omap - - id: ENSG00000111445 + - id: "ENSG00000111445" - !!omap - - id: ENSG00000111581 + - id: "ENSG00000111581" - !!omap - - id: ENSG00000111640 + - id: "ENSG00000111640" - !!omap - - id: ENSG00000111641 + - id: "ENSG00000111641" - !!omap - - id: ENSG00000111666 + - id: "ENSG00000111666" - !!omap - - id: ENSG00000111667 + - id: "ENSG00000111667" - !!omap - - id: ENSG00000111669 + - id: "ENSG00000111669" - !!omap - - id: ENSG00000111670 + - id: "ENSG00000111670" - !!omap - - id: ENSG00000111674 + - id: "ENSG00000111674" - !!omap - - id: ENSG00000111679 + - id: "ENSG00000111679" - !!omap - - id: ENSG00000111684 + - id: "ENSG00000111684" - !!omap - - id: ENSG00000111696 + - id: "ENSG00000111696" - !!omap - - id: ENSG00000111700 + - id: "ENSG00000111700" - !!omap - - id: ENSG00000111713 + - id: "ENSG00000111713" - !!omap - - id: ENSG00000111716 + - id: "ENSG00000111716" - !!omap - - id: ENSG00000111726 + - id: "ENSG00000111726" - !!omap - - id: ENSG00000111728 + - id: "ENSG00000111728" - !!omap - - id: ENSG00000111732 + - id: "ENSG00000111732" - !!omap - - id: ENSG00000111775 + - id: "ENSG00000111775" - !!omap - - id: ENSG00000111816 + - id: "ENSG00000111816" - !!omap - - id: ENSG00000111817 + - id: "ENSG00000111817" - !!omap - - id: ENSG00000111837 + - id: "ENSG00000111837" - !!omap - - id: ENSG00000111846 + - id: "ENSG00000111846" - !!omap - - id: ENSG00000111880 + - id: "ENSG00000111880" - !!omap - - id: ENSG00000111885 + - id: "ENSG00000111885" - !!omap - - id: ENSG00000111962 + - id: "ENSG00000111962" - !!omap - - id: ENSG00000112053 + - id: "ENSG00000112053" - !!omap - - id: ENSG00000112062 + - id: "ENSG00000112062" - !!omap - - id: ENSG00000112077 + - id: "ENSG00000112077" - !!omap - - id: ENSG00000112079 + - id: "ENSG00000112079" - !!omap - - id: ENSG00000112096 + - id: "ENSG00000112096" - !!omap - - id: ENSG00000112130 + - id: "ENSG00000112130" - !!omap - - id: ENSG00000112144 + - id: "ENSG00000112144" - !!omap - - id: ENSG00000112245 + - id: "ENSG00000112245" - !!omap - - id: ENSG00000112293 + - id: "ENSG00000112293" - !!omap - - id: ENSG00000112294 + - id: "ENSG00000112294" - !!omap - - id: ENSG00000112299 + - id: "ENSG00000112299" - !!omap - - id: ENSG00000112303 + - id: "ENSG00000112303" - !!omap - - id: ENSG00000112304 + - id: "ENSG00000112304" - !!omap - - id: ENSG00000112309 + - id: "ENSG00000112309" - !!omap - - id: ENSG00000112319 + - id: "ENSG00000112319" - !!omap - - id: ENSG00000112337 + - id: "ENSG00000112337" - !!omap - - id: ENSG00000112367 + - id: "ENSG00000112367" - !!omap - - id: ENSG00000112394 + - id: "ENSG00000112394" - !!omap - - id: ENSG00000112425 + - id: "ENSG00000112425" - !!omap - - id: ENSG00000112473 + - id: "ENSG00000112473" - !!omap - - id: ENSG00000112499 + - id: "ENSG00000112499" - !!omap - - id: ENSG00000112541 + - id: "ENSG00000112541" - !!omap - - id: ENSG00000112655 + - id: "ENSG00000112655" - !!omap - - id: ENSG00000112679 + - id: "ENSG00000112679" - !!omap - - id: ENSG00000112695 + - id: "ENSG00000112695" - !!omap - - id: ENSG00000112699 + - id: "ENSG00000112699" - !!omap - - id: ENSG00000112739 + - id: "ENSG00000112739" - !!omap - - id: ENSG00000112742 + - id: "ENSG00000112742" - !!omap - - id: ENSG00000112759 + - id: "ENSG00000112759" - !!omap - - id: ENSG00000112874 + - id: "ENSG00000112874" - !!omap - - id: ENSG00000112893 + - id: "ENSG00000112893" - !!omap - - id: ENSG00000112941 + - id: "ENSG00000112941" - !!omap - - id: ENSG00000112972 + - id: "ENSG00000112972" - !!omap - - id: ENSG00000112981 + - id: "ENSG00000112981" - !!omap - - id: ENSG00000112992 + - id: "ENSG00000112992" - !!omap - - id: ENSG00000113073 + - id: "ENSG00000113073" - !!omap - - id: ENSG00000113083 + - id: "ENSG00000113083" - !!omap - - id: ENSG00000113161 + - id: "ENSG00000113161" - !!omap - - id: ENSG00000113163 + - id: "ENSG00000113163" - !!omap - - id: ENSG00000113231 + - id: "ENSG00000113231" - !!omap - - id: ENSG00000113240 + - id: "ENSG00000113240" - !!omap - - id: ENSG00000113263 + - id: "ENSG00000113263" - !!omap - - id: ENSG00000113269 + - id: "ENSG00000113269" - !!omap - - id: ENSG00000113273 + - id: "ENSG00000113273" - !!omap - - id: ENSG00000113356 + - id: "ENSG00000113356" - !!omap - - id: ENSG00000113396 + - id: "ENSG00000113396" - !!omap - - id: ENSG00000113407 + - id: "ENSG00000113407" - !!omap - - id: ENSG00000113448 + - id: "ENSG00000113448" - !!omap - - id: ENSG00000113456 + - id: "ENSG00000113456" - !!omap - - id: ENSG00000113492 + - id: "ENSG00000113492" - !!omap - - id: ENSG00000113504 + - id: "ENSG00000113504" - !!omap - - id: ENSG00000113532 + - id: "ENSG00000113532" - !!omap - - id: ENSG00000113552 + - id: "ENSG00000113552" - !!omap - - id: ENSG00000113569 + - id: "ENSG00000113569" - !!omap - - id: ENSG00000113575 + - id: "ENSG00000113575" - !!omap - - id: ENSG00000113593 + - id: "ENSG00000113593" - !!omap - - id: ENSG00000113643 + - id: "ENSG00000113643" - !!omap - - id: ENSG00000113657 + - id: "ENSG00000113657" - !!omap - - id: ENSG00000113712 + - id: "ENSG00000113712" - !!omap - - id: ENSG00000113721 + - id: "ENSG00000113721" - !!omap - - id: ENSG00000113732 + - id: "ENSG00000113732" - !!omap - - id: ENSG00000113790 + - id: "ENSG00000113790" - !!omap - - id: ENSG00000113924 + - id: "ENSG00000113924" - !!omap - - id: ENSG00000114021 + - id: "ENSG00000114021" - !!omap - - id: ENSG00000114054 + - id: "ENSG00000114054" - !!omap - - id: ENSG00000114062 + - id: "ENSG00000114062" - !!omap - - id: ENSG00000114113 + - id: "ENSG00000114113" - !!omap - - id: ENSG00000114115 + - id: "ENSG00000114115" - !!omap - - id: ENSG00000114124 + - id: "ENSG00000114124" - !!omap - - id: ENSG00000114166 + - id: "ENSG00000114166" - !!omap - - id: ENSG00000114200 + - id: "ENSG00000114200" - !!omap - - id: ENSG00000114268 + - id: "ENSG00000114268" - !!omap - - id: ENSG00000114302 + - id: "ENSG00000114302" - !!omap - - id: ENSG00000114316 + - id: "ENSG00000114316" - !!omap - - id: ENSG00000114374 + - id: "ENSG00000114374" - !!omap - - id: ENSG00000114378 + - id: "ENSG00000114378" - !!omap - - id: ENSG00000114423 + - id: "ENSG00000114423" - !!omap - - id: ENSG00000114480 + - id: "ENSG00000114480" - !!omap - - id: ENSG00000114491 + - id: "ENSG00000114491" - !!omap - - id: ENSG00000114573 + - id: "ENSG00000114573" - !!omap - - id: ENSG00000114670 + - id: "ENSG00000114670" - !!omap - - id: ENSG00000114735 + - id: "ENSG00000114735" - !!omap - - id: ENSG00000114738 + - id: "ENSG00000114738" - !!omap - - id: ENSG00000114739 + - id: "ENSG00000114739" - !!omap - - id: ENSG00000114770 + - id: "ENSG00000114770" - !!omap - - id: ENSG00000114771 + - id: "ENSG00000114771" - !!omap - - id: ENSG00000114786 + - id: "ENSG00000114786" - !!omap - - id: ENSG00000114805 + - id: "ENSG00000114805" - !!omap - - id: ENSG00000114857 + - id: "ENSG00000114857" - !!omap - - id: ENSG00000114902 + - id: "ENSG00000114902" - !!omap - - id: ENSG00000114904 + - id: "ENSG00000114904" - !!omap - - id: ENSG00000114923 + - id: "ENSG00000114923" - !!omap - - id: ENSG00000114956 + - id: "ENSG00000114956" - !!omap - - id: ENSG00000114982 + - id: "ENSG00000114982" - !!omap - - id: ENSG00000114999 + - id: "ENSG00000114999" - !!omap - - id: ENSG00000115020 + - id: "ENSG00000115020" - !!omap - - id: ENSG00000115085 + - id: "ENSG00000115085" - !!omap - - id: ENSG00000115159 + - id: "ENSG00000115159" - !!omap - - id: ENSG00000115170 + - id: "ENSG00000115170" - !!omap - - id: ENSG00000115241 + - id: "ENSG00000115241" - !!omap - - id: ENSG00000115252 + - id: "ENSG00000115252" - !!omap - - id: ENSG00000115275 + - id: "ENSG00000115275" - !!omap - - id: ENSG00000115286 + - id: "ENSG00000115286" - !!omap - - id: ENSG00000115339 + - id: "ENSG00000115339" - !!omap - - id: ENSG00000115350 + - id: "ENSG00000115350" - !!omap - - id: ENSG00000115361 + - id: "ENSG00000115361" - !!omap - - id: ENSG00000115392 + - id: "ENSG00000115392" - !!omap - - id: ENSG00000115419 + - id: "ENSG00000115419" - !!omap - - id: ENSG00000115421 + - id: "ENSG00000115421" - !!omap - - id: ENSG00000115425 + - id: "ENSG00000115425" - !!omap - - id: ENSG00000115464 + - id: "ENSG00000115464" - !!omap - - id: ENSG00000115488 + - id: "ENSG00000115488" - !!omap - - id: ENSG00000115525 + - id: "ENSG00000115525" - !!omap - - id: ENSG00000115526 + - id: "ENSG00000115526" - !!omap - - id: ENSG00000115556 + - id: "ENSG00000115556" - !!omap - - id: ENSG00000115616 + - id: "ENSG00000115616" - !!omap - - id: ENSG00000115641 + - id: "ENSG00000115641" - !!omap - - id: ENSG00000115652 + - id: "ENSG00000115652" - !!omap - - id: ENSG00000115657 + - id: "ENSG00000115657" - !!omap - - id: ENSG00000115661 + - id: "ENSG00000115661" - !!omap - - id: ENSG00000115665 + - id: "ENSG00000115665" - !!omap - - id: ENSG00000115677 + - id: "ENSG00000115677" - !!omap - - id: ENSG00000115687 + - id: "ENSG00000115687" - !!omap - - id: ENSG00000115694 + - id: "ENSG00000115694" - !!omap - - id: ENSG00000115705 + - id: "ENSG00000115705" - !!omap - - id: ENSG00000115758 + - id: "ENSG00000115758" - !!omap - - id: ENSG00000115760 + - id: "ENSG00000115760" - !!omap - - id: ENSG00000115825 + - id: "ENSG00000115825" - !!omap - - id: ENSG00000115828 + - id: "ENSG00000115828" - !!omap - - id: ENSG00000115840 + - id: "ENSG00000115840" - !!omap - - id: ENSG00000115850 + - id: "ENSG00000115850" - !!omap - - id: ENSG00000115866 + - id: "ENSG00000115866" - !!omap - - id: ENSG00000115884 + - id: "ENSG00000115884" - !!omap - - id: ENSG00000115896 + - id: "ENSG00000115896" - !!omap - - id: ENSG00000115902 + - id: "ENSG00000115902" - !!omap - - id: ENSG00000115919 + - id: "ENSG00000115919" - !!omap - - id: ENSG00000115977 + - id: "ENSG00000115977" - !!omap - - id: ENSG00000116005 + - id: "ENSG00000116005" - !!omap - - id: ENSG00000116039 + - id: "ENSG00000116039" - !!omap - - id: ENSG00000116096 + - id: "ENSG00000116096" - !!omap - - id: ENSG00000116106 + - id: "ENSG00000116106" - !!omap - - id: ENSG00000116120 + - id: "ENSG00000116120" - !!omap - - id: ENSG00000116133 + - id: "ENSG00000116133" - !!omap - - id: ENSG00000116141 + - id: "ENSG00000116141" - !!omap - - id: ENSG00000116157 + - id: "ENSG00000116157" - !!omap - - id: ENSG00000116171 + - id: "ENSG00000116171" - !!omap - - id: ENSG00000116199 + - id: "ENSG00000116199" - !!omap - - id: ENSG00000116237 + - id: "ENSG00000116237" - !!omap - - id: ENSG00000116337 + - id: "ENSG00000116337" - !!omap - - id: ENSG00000116353 + - id: "ENSG00000116353" - !!omap - - id: ENSG00000116459 + - id: "ENSG00000116459" - !!omap - - id: ENSG00000116514 + - id: "ENSG00000116514" - !!omap - - id: ENSG00000116539 + - id: "ENSG00000116539" - !!omap - - id: ENSG00000116649 + - id: "ENSG00000116649" - !!omap - - id: ENSG00000116675 + - id: "ENSG00000116675" - !!omap - - id: ENSG00000116704 + - id: "ENSG00000116704" - !!omap - - id: ENSG00000116711 + - id: "ENSG00000116711" - !!omap - - id: ENSG00000116745 + - id: "ENSG00000116745" - !!omap - - id: ENSG00000116748 + - id: "ENSG00000116748" - !!omap - - id: ENSG00000116761 + - id: "ENSG00000116761" - !!omap - - id: ENSG00000116771 + - id: "ENSG00000116771" - !!omap - - id: ENSG00000116783 + - id: "ENSG00000116783" - !!omap - - id: ENSG00000116791 + - id: "ENSG00000116791" - !!omap - - id: ENSG00000116882 + - id: "ENSG00000116882" - !!omap - - id: ENSG00000116906 + - id: "ENSG00000116906" - !!omap - - id: ENSG00000116981 + - id: "ENSG00000116981" - !!omap - - id: ENSG00000116984 + - id: "ENSG00000116984" - !!omap - - id: ENSG00000117009 + - id: "ENSG00000117009" - !!omap - - id: ENSG00000117020 + - id: "ENSG00000117020" - !!omap - - id: ENSG00000117054 + - id: "ENSG00000117054" - !!omap - - id: ENSG00000117069 + - id: "ENSG00000117069" - !!omap - - id: ENSG00000117115 + - id: "ENSG00000117115" - !!omap - - id: ENSG00000117118 + - id: "ENSG00000117118" - !!omap - - id: ENSG00000117143 + - id: "ENSG00000117143" - !!omap - - id: ENSG00000117215 + - id: "ENSG00000117215" - !!omap - - id: ENSG00000117266 + - id: "ENSG00000117266" - !!omap - - id: ENSG00000117305 + - id: "ENSG00000117305" - !!omap - - id: ENSG00000117308 + - id: "ENSG00000117308" - !!omap - - id: ENSG00000117394 + - id: "ENSG00000117394" - !!omap - - id: ENSG00000117410 + - id: "ENSG00000117410" - !!omap - - id: ENSG00000117411 + - id: "ENSG00000117411" - !!omap - - id: ENSG00000117448 + - id: "ENSG00000117448" - !!omap - - id: ENSG00000117450 + - id: "ENSG00000117450" - !!omap - - id: ENSG00000117461 + - id: "ENSG00000117461" - !!omap - - id: ENSG00000117479 + - id: "ENSG00000117479" - !!omap - - id: ENSG00000117480 + - id: "ENSG00000117480" - !!omap - - id: ENSG00000117481 + - id: "ENSG00000117481" - !!omap - - id: ENSG00000117528 + - id: "ENSG00000117528" - !!omap - - id: ENSG00000117543 + - id: "ENSG00000117543" - !!omap - - id: ENSG00000117592 + - id: "ENSG00000117592" - !!omap - - id: ENSG00000117594 + - id: "ENSG00000117594" - !!omap - - id: ENSG00000117598 + - id: "ENSG00000117598" - !!omap - - id: ENSG00000117600 + - id: "ENSG00000117600" - !!omap - - id: ENSG00000117620 + - id: "ENSG00000117620" - !!omap - - id: ENSG00000117643 + - id: "ENSG00000117643" - !!omap - - id: ENSG00000117650 + - id: "ENSG00000117650" - !!omap - - id: ENSG00000117676 + - id: "ENSG00000117676" - !!omap - - id: ENSG00000117682 + - id: "ENSG00000117682" - !!omap - - id: ENSG00000117834 + - id: "ENSG00000117834" - !!omap - - id: ENSG00000117984 + - id: "ENSG00000117984" - !!omap - - id: ENSG00000118017 + - id: "ENSG00000118017" - !!omap - - id: ENSG00000118046 + - id: "ENSG00000118046" - !!omap - - id: ENSG00000118058 + - id: "ENSG00000118058" - !!omap - - id: ENSG00000118094 + - id: "ENSG00000118094" - !!omap - - id: ENSG00000118137 + - id: "ENSG00000118137" - !!omap - - id: ENSG00000118160 + - id: "ENSG00000118160" - !!omap - - id: ENSG00000118276 + - id: "ENSG00000118276" - !!omap - - id: ENSG00000118298 + - id: "ENSG00000118298" - !!omap - - id: ENSG00000118363 + - id: "ENSG00000118363" - !!omap - - id: ENSG00000118369 + - id: "ENSG00000118369" - !!omap - - id: ENSG00000118402 + - id: "ENSG00000118402" - !!omap - - id: ENSG00000118514 + - id: "ENSG00000118514" - !!omap - - id: ENSG00000118515 + - id: "ENSG00000118515" - !!omap - - id: ENSG00000118518 + - id: "ENSG00000118518" - !!omap - - id: ENSG00000118520 + - id: "ENSG00000118520" - !!omap - - id: ENSG00000118523 + - id: "ENSG00000118523" - !!omap - - id: ENSG00000118596 + - id: "ENSG00000118596" - !!omap - - id: ENSG00000118705 + - id: "ENSG00000118705" - !!omap - - id: ENSG00000118777 + - id: "ENSG00000118777" - !!omap - - id: ENSG00000119013 + - id: "ENSG00000119013" - !!omap - - id: ENSG00000119048 + - id: "ENSG00000119048" - !!omap - - id: ENSG00000119121 + - id: "ENSG00000119121" - !!omap - - id: ENSG00000119125 + - id: "ENSG00000119125" - !!omap - - id: ENSG00000119227 + - id: "ENSG00000119227" - !!omap - - id: ENSG00000119392 + - id: "ENSG00000119392" - !!omap - - id: ENSG00000119401 + - id: "ENSG00000119401" - !!omap - - id: ENSG00000119408 + - id: "ENSG00000119408" - !!omap - - id: ENSG00000119414 + - id: "ENSG00000119414" - !!omap - - id: ENSG00000119421 + - id: "ENSG00000119421" - !!omap - - id: ENSG00000119514 + - id: "ENSG00000119514" - !!omap - - id: ENSG00000119523 + - id: "ENSG00000119523" - !!omap - - id: ENSG00000119537 + - id: "ENSG00000119537" - !!omap - - id: ENSG00000119638 + - id: "ENSG00000119638" - !!omap - - id: ENSG00000119640 + - id: "ENSG00000119640" - !!omap - - id: ENSG00000119673 + - id: "ENSG00000119673" - !!omap - - id: ENSG00000119689 + - id: "ENSG00000119689" - !!omap - - id: ENSG00000119711 + - id: "ENSG00000119711" - !!omap - - id: ENSG00000119723 + - id: "ENSG00000119723" - !!omap - - id: ENSG00000119772 + - id: "ENSG00000119772" - !!omap - - id: ENSG00000119782 + - id: "ENSG00000119782" - !!omap - - id: ENSG00000119899 + - id: "ENSG00000119899" - !!omap - - id: ENSG00000119915 + - id: "ENSG00000119915" - !!omap - - id: ENSG00000119927 + - id: "ENSG00000119927" - !!omap - - id: ENSG00000119938 + - id: "ENSG00000119938" - !!omap - - id: ENSG00000120053 + - id: "ENSG00000120053" - !!omap - - id: ENSG00000120129 + - id: "ENSG00000120129" - !!omap - - id: ENSG00000120137 + - id: "ENSG00000120137" - !!omap - - id: ENSG00000120156 + - id: "ENSG00000120156" - !!omap - - id: ENSG00000120158 + - id: "ENSG00000120158" - !!omap - - id: ENSG00000120253 + - id: "ENSG00000120253" - !!omap - - id: ENSG00000120254 + - id: "ENSG00000120254" - !!omap - - id: ENSG00000120265 + - id: "ENSG00000120265" - !!omap - - id: ENSG00000120329 + - id: "ENSG00000120329" - !!omap - - id: ENSG00000120437 + - id: "ENSG00000120437" - !!omap - - id: ENSG00000120539 + - id: "ENSG00000120539" - !!omap - - id: ENSG00000120563 + - id: "ENSG00000120563" - !!omap - - id: ENSG00000120697 + - id: "ENSG00000120697" - !!omap - - id: ENSG00000120820 + - id: "ENSG00000120820" - !!omap - - id: ENSG00000120875 + - id: "ENSG00000120875" - !!omap - - id: ENSG00000120899 + - id: "ENSG00000120899" - !!omap - - id: ENSG00000120910 + - id: "ENSG00000120910" - !!omap - - id: ENSG00000120915 + - id: "ENSG00000120915" - !!omap - - id: ENSG00000120942 + - id: "ENSG00000120942" - !!omap - - id: ENSG00000120992 + - id: "ENSG00000120992" - !!omap - - id: ENSG00000121039 + - id: "ENSG00000121039" - !!omap - - id: ENSG00000121053 + - id: "ENSG00000121053" - !!omap - - id: ENSG00000121207 + - id: "ENSG00000121207" - !!omap - - id: ENSG00000121270 + - id: "ENSG00000121270" - !!omap - - id: ENSG00000121281 + - id: "ENSG00000121281" - !!omap - - id: ENSG00000121310 + - id: "ENSG00000121310" - !!omap - - id: ENSG00000121361 + - id: "ENSG00000121361" - !!omap - - id: ENSG00000121481 + - id: "ENSG00000121481" - !!omap - - id: ENSG00000121486 + - id: "ENSG00000121486" - !!omap - - id: ENSG00000121578 + - id: "ENSG00000121578" - !!omap - - id: ENSG00000121579 + - id: "ENSG00000121579" - !!omap - - id: ENSG00000121691 + - id: "ENSG00000121691" - !!omap - - id: ENSG00000121769 + - id: "ENSG00000121769" - !!omap - - id: ENSG00000121851 + - id: "ENSG00000121851" - !!omap - - id: ENSG00000121879 + - id: "ENSG00000121879" - !!omap - - id: ENSG00000121897 + - id: "ENSG00000121897" - !!omap - - id: ENSG00000121900 + - id: "ENSG00000121900" - !!omap - - id: ENSG00000121989 + - id: "ENSG00000121989" - !!omap - - id: ENSG00000122008 + - id: "ENSG00000122008" - !!omap - - id: ENSG00000122025 + - id: "ENSG00000122025" - !!omap - - id: ENSG00000122126 + - id: "ENSG00000122126" - !!omap - - id: ENSG00000122194 + - id: "ENSG00000122194" - !!omap - - id: ENSG00000122218 + - id: "ENSG00000122218" - !!omap - - id: ENSG00000122254 + - id: "ENSG00000122254" - !!omap - - id: ENSG00000122257 + - id: "ENSG00000122257" - !!omap - - id: ENSG00000122390 + - id: "ENSG00000122390" - !!omap - - id: ENSG00000122435 + - id: "ENSG00000122435" - !!omap - - id: ENSG00000122484 + - id: "ENSG00000122484" - !!omap - - id: ENSG00000122642 + - id: "ENSG00000122642" - !!omap - - id: ENSG00000122643 + - id: "ENSG00000122643" - !!omap - - id: ENSG00000122678 + - id: "ENSG00000122678" - !!omap - - id: ENSG00000122687 + - id: "ENSG00000122687" - !!omap - - id: ENSG00000122729 + - id: "ENSG00000122729" - !!omap - - id: ENSG00000122787 + - id: "ENSG00000122787" - !!omap - - id: ENSG00000122824 + - id: "ENSG00000122824" - !!omap - - id: ENSG00000122863 + - id: "ENSG00000122863" - !!omap - - id: ENSG00000122884 + - id: "ENSG00000122884" - !!omap - - id: ENSG00000122912 + - id: "ENSG00000122912" - !!omap - - id: ENSG00000122966 + - id: "ENSG00000122966" - !!omap - - id: ENSG00000122971 + - id: "ENSG00000122971" - !!omap - - id: ENSG00000123124 + - id: "ENSG00000123124" - !!omap - - id: ENSG00000123130 + - id: "ENSG00000123130" - !!omap - - id: ENSG00000123143 + - id: "ENSG00000123143" - !!omap - - id: ENSG00000123213 + - id: "ENSG00000123213" - !!omap - - id: ENSG00000123360 + - id: "ENSG00000123360" - !!omap - - id: ENSG00000123374 + - id: "ENSG00000123374" - !!omap - - id: ENSG00000123427 + - id: "ENSG00000123427" - !!omap - - id: ENSG00000123453 + - id: "ENSG00000123453" - !!omap - - id: ENSG00000123454 + - id: "ENSG00000123454" - !!omap - - id: ENSG00000123505 + - id: "ENSG00000123505" - !!omap - - id: ENSG00000123552 + - id: "ENSG00000123552" - !!omap - - id: ENSG00000123600 + - id: "ENSG00000123600" - !!omap - - id: ENSG00000123612 + - id: "ENSG00000123612" - !!omap - - id: ENSG00000123643 + - id: "ENSG00000123643" - !!omap - - id: ENSG00000123684 + - id: "ENSG00000123684" - !!omap - - id: ENSG00000123689 + - id: "ENSG00000123689" - !!omap - - id: ENSG00000123739 + - id: "ENSG00000123739" - !!omap - - id: ENSG00000123836 + - id: "ENSG00000123836" - !!omap - - id: ENSG00000123983 + - id: "ENSG00000123983" - !!omap - - id: ENSG00000123989 + - id: "ENSG00000123989" - !!omap - - id: ENSG00000124003 + - id: "ENSG00000124003" - !!omap - - id: ENSG00000124006 + - id: "ENSG00000124006" - !!omap - - id: ENSG00000124067 + - id: "ENSG00000124067" - !!omap - - id: ENSG00000124091 + - id: "ENSG00000124091" - !!omap - - id: ENSG00000124140 + - id: "ENSG00000124140" - !!omap - - id: ENSG00000124151 + - id: "ENSG00000124151" - !!omap - - id: ENSG00000124155 + - id: "ENSG00000124155" - !!omap - - id: ENSG00000124164 + - id: "ENSG00000124164" - !!omap - - id: ENSG00000124172 + - id: "ENSG00000124172" - !!omap - - id: ENSG00000124181 + - id: "ENSG00000124181" - !!omap - - id: ENSG00000124212 + - id: "ENSG00000124212" - !!omap - - id: ENSG00000124253 + - id: "ENSG00000124253" - !!omap - - id: ENSG00000124275 + - id: "ENSG00000124275" - !!omap - - id: ENSG00000124299 + - id: "ENSG00000124299" - !!omap - - id: ENSG00000124302 + - id: "ENSG00000124302" - !!omap - - id: ENSG00000124356 + - id: "ENSG00000124356" - !!omap - - id: ENSG00000124357 + - id: "ENSG00000124357" - !!omap - - id: ENSG00000124370 + - id: "ENSG00000124370" - !!omap - - id: ENSG00000124406 + - id: "ENSG00000124406" - !!omap - - id: ENSG00000124422 + - id: "ENSG00000124422" - !!omap - - id: ENSG00000124486 + - id: "ENSG00000124486" - !!omap - - id: ENSG00000124491 + - id: "ENSG00000124491" - !!omap - - id: ENSG00000124523 + - id: "ENSG00000124523" - !!omap - - id: ENSG00000124564 + - id: "ENSG00000124564" - !!omap - - id: ENSG00000124568 + - id: "ENSG00000124568" - !!omap - - id: ENSG00000124588 + - id: "ENSG00000124588" - !!omap - - id: ENSG00000124596 + - id: "ENSG00000124596" - !!omap - - id: ENSG00000124615 + - id: "ENSG00000124615" - !!omap - - id: ENSG00000124713 + - id: "ENSG00000124713" - !!omap - - id: ENSG00000124767 + - id: "ENSG00000124767" - !!omap - - id: ENSG00000124784 + - id: "ENSG00000124784" - !!omap - - id: ENSG00000124789 + - id: "ENSG00000124789" - !!omap - - id: ENSG00000125166 + - id: "ENSG00000125166" - !!omap - - id: ENSG00000125246 + - id: "ENSG00000125246" - !!omap - - id: ENSG00000125255 + - id: "ENSG00000125255" - !!omap - - id: ENSG00000125257 + - id: "ENSG00000125257" - !!omap - - id: ENSG00000125356 + - id: "ENSG00000125356" - !!omap - - id: ENSG00000125430 + - id: "ENSG00000125430" - !!omap - - id: ENSG00000125450 + - id: "ENSG00000125450" - !!omap - - id: ENSG00000125454 + - id: "ENSG00000125454" - !!omap - - id: ENSG00000125458 + - id: "ENSG00000125458" - !!omap - - id: ENSG00000125484 + - id: "ENSG00000125484" - !!omap - - id: ENSG00000125505 + - id: "ENSG00000125505" - !!omap - - id: ENSG00000125508 + - id: "ENSG00000125508" - !!omap - - id: ENSG00000125630 + - id: "ENSG00000125630" - !!omap - - id: ENSG00000125651 + - id: "ENSG00000125651" - !!omap - - id: ENSG00000125686 + - id: "ENSG00000125686" - !!omap - - id: ENSG00000125772 + - id: "ENSG00000125772" - !!omap - - id: ENSG00000125779 + - id: "ENSG00000125779" - !!omap - - id: ENSG00000125780 + - id: "ENSG00000125780" - !!omap - - id: ENSG00000125834 + - id: "ENSG00000125834" - !!omap - - id: ENSG00000125877 + - id: "ENSG00000125877" - !!omap - - id: ENSG00000125954 + - id: "ENSG00000125954" - !!omap - - id: ENSG00000126088 + - id: "ENSG00000126088" - !!omap - - id: ENSG00000126091 + - id: "ENSG00000126091" - !!omap - - id: ENSG00000126107 + - id: "ENSG00000126107" - !!omap - - id: ENSG00000126261 + - id: "ENSG00000126261" - !!omap - - id: ENSG00000126264 + - id: "ENSG00000126264" - !!omap - - id: ENSG00000126267 + - id: "ENSG00000126267" - !!omap - - id: ENSG00000126368 + - id: "ENSG00000126368" - !!omap - - id: ENSG00000126432 + - id: "ENSG00000126432" - !!omap - - id: ENSG00000126457 + - id: "ENSG00000126457" - !!omap - - id: ENSG00000126522 + - id: "ENSG00000126522" - !!omap - - id: ENSG00000126562 + - id: "ENSG00000126562" - !!omap - - id: ENSG00000126583 + - id: "ENSG00000126583" - !!omap - - id: ENSG00000126749 + - id: "ENSG00000126749" - !!omap - - id: ENSG00000126821 + - id: "ENSG00000126821" - !!omap - - id: ENSG00000126883 + - id: "ENSG00000126883" - !!omap - - id: ENSG00000126934 + - id: "ENSG00000126934" - !!omap - - id: ENSG00000127080 + - id: "ENSG00000127080" - !!omap - - id: ENSG00000127125 + - id: "ENSG00000127125" - !!omap - - id: ENSG00000127184 + - id: "ENSG00000127184" - !!omap - - id: ENSG00000127329 + - id: "ENSG00000127329" - !!omap - - id: ENSG00000127334 + - id: "ENSG00000127334" - !!omap - - id: ENSG00000127415 + - id: "ENSG00000127415" - !!omap - - id: ENSG00000127445 + - id: "ENSG00000127445" - !!omap - - id: ENSG00000127472 + - id: "ENSG00000127472" - !!omap - - id: ENSG00000127481 + - id: "ENSG00000127481" - !!omap - - id: ENSG00000127511 + - id: "ENSG00000127511" - !!omap - - id: ENSG00000127540 + - id: "ENSG00000127540" - !!omap - - id: ENSG00000127564 + - id: "ENSG00000127564" - !!omap - - id: ENSG00000127804 + - id: "ENSG00000127804" - !!omap - - id: ENSG00000127884 + - id: "ENSG00000127884" - !!omap - - id: ENSG00000127947 + - id: "ENSG00000127947" - !!omap - - id: ENSG00000127948 + - id: "ENSG00000127948" - !!omap - - id: ENSG00000127952 + - id: "ENSG00000127952" - !!omap - - id: ENSG00000128039 + - id: "ENSG00000128039" - !!omap - - id: ENSG00000128050 + - id: "ENSG00000128050" - !!omap - - id: ENSG00000128052 + - id: "ENSG00000128052" - !!omap - - id: ENSG00000128059 + - id: "ENSG00000128059" - !!omap - - id: ENSG00000128242 + - id: "ENSG00000128242" - !!omap - - id: ENSG00000128268 + - id: "ENSG00000128268" - !!omap - - id: ENSG00000128274 + - id: "ENSG00000128274" - !!omap - - id: ENSG00000128294 + - id: "ENSG00000128294" - !!omap - - id: ENSG00000128309 + - id: "ENSG00000128309" - !!omap - - id: ENSG00000128311 + - id: "ENSG00000128311" - !!omap - - id: ENSG00000128524 + - id: "ENSG00000128524" - !!omap - - id: ENSG00000128609 + - id: "ENSG00000128609" - !!omap - - id: ENSG00000128655 + - id: "ENSG00000128655" - !!omap - - id: ENSG00000128683 + - id: "ENSG00000128683" - !!omap - - id: ENSG00000128708 + - id: "ENSG00000128708" - !!omap - - id: ENSG00000128731 + - id: "ENSG00000128731" - !!omap - - id: ENSG00000128829 + - id: "ENSG00000128829" - !!omap - - id: ENSG00000128918 + - id: "ENSG00000128918" - !!omap - - id: ENSG00000128928 + - id: "ENSG00000128928" - !!omap - - id: ENSG00000128951 + - id: "ENSG00000128951" - !!omap - - id: ENSG00000129083 + - id: "ENSG00000129083" - !!omap - - id: ENSG00000129128 + - id: "ENSG00000129128" - !!omap - - id: ENSG00000129151 + - id: "ENSG00000129151" - !!omap - - id: ENSG00000129167 + - id: "ENSG00000129167" - !!omap - - id: ENSG00000129187 + - id: "ENSG00000129187" - !!omap - - id: ENSG00000129204 + - id: "ENSG00000129204" - !!omap - - id: ENSG00000129219 + - id: "ENSG00000129219" - !!omap - - id: ENSG00000129244 + - id: "ENSG00000129244" - !!omap - - id: ENSG00000129353 + - id: "ENSG00000129353" - !!omap - - id: ENSG00000129465 + - id: "ENSG00000129465" - !!omap - - id: ENSG00000129467 + - id: "ENSG00000129467" - !!omap - - id: ENSG00000129484 + - id: "ENSG00000129484" - !!omap - - id: ENSG00000129562 + - id: "ENSG00000129562" - !!omap - - id: ENSG00000129596 + - id: "ENSG00000129596" - !!omap - - id: ENSG00000129673 + - id: "ENSG00000129673" - !!omap - - id: ENSG00000129744 + - id: "ENSG00000129744" - !!omap - - id: ENSG00000129873 + - id: "ENSG00000129873" - !!omap - - id: ENSG00000129951 + - id: "ENSG00000129951" - !!omap - - id: ENSG00000130005 + - id: "ENSG00000130005" - !!omap - - id: ENSG00000130035 + - id: "ENSG00000130035" - !!omap - - id: ENSG00000130052 + - id: "ENSG00000130052" - !!omap - - id: ENSG00000130055 + - id: "ENSG00000130055" - !!omap - - id: ENSG00000130066 + - id: "ENSG00000130066" - !!omap - - id: ENSG00000130164 + - id: "ENSG00000130164" - !!omap - - id: ENSG00000130175 + - id: "ENSG00000130175" - !!omap - - id: ENSG00000130203 + - id: "ENSG00000130203" - !!omap - - id: ENSG00000130208 + - id: "ENSG00000130208" - !!omap - - id: ENSG00000130227 + - id: "ENSG00000130227" - !!omap - - id: ENSG00000130234 + - id: "ENSG00000130234" - !!omap - - id: ENSG00000130304 + - id: "ENSG00000130304" - !!omap - - id: ENSG00000130305 + - id: "ENSG00000130305" - !!omap - - id: ENSG00000130309 + - id: "ENSG00000130309" - !!omap - - id: ENSG00000130313 + - id: "ENSG00000130313" - !!omap - - id: ENSG00000130377 + - id: "ENSG00000130377" - !!omap - - id: ENSG00000130383 + - id: "ENSG00000130383" - !!omap - - id: ENSG00000130413 + - id: "ENSG00000130413" - !!omap - - id: ENSG00000130414 + - id: "ENSG00000130414" - !!omap - - id: ENSG00000130508 + - id: "ENSG00000130508" - !!omap - - id: ENSG00000130540 + - id: "ENSG00000130540" - !!omap - - id: ENSG00000130589 + - id: "ENSG00000130589" - !!omap - - id: ENSG00000130649 + - id: "ENSG00000130649" - !!omap - - id: ENSG00000130653 + - id: "ENSG00000130653" - !!omap - - id: ENSG00000130669 + - id: "ENSG00000130669" - !!omap - - id: ENSG00000130707 + - id: "ENSG00000130707" - !!omap - - id: ENSG00000130714 + - id: "ENSG00000130714" - !!omap - - id: ENSG00000130717 + - id: "ENSG00000130717" - !!omap - - id: ENSG00000130725 + - id: "ENSG00000130725" - !!omap - - id: ENSG00000130758 + - id: "ENSG00000130758" - !!omap - - id: ENSG00000130816 + - id: "ENSG00000130816" - !!omap - - id: ENSG00000130821 + - id: "ENSG00000130821" - !!omap - - id: ENSG00000130822 + - id: "ENSG00000130822" - !!omap - - id: ENSG00000130829 + - id: "ENSG00000130829" - !!omap - - id: ENSG00000130876 + - id: "ENSG00000130876" - !!omap - - id: ENSG00000130939 + - id: "ENSG00000130939" - !!omap - - id: ENSG00000130948 + - id: "ENSG00000130948" - !!omap - - id: ENSG00000130957 + - id: "ENSG00000130957" - !!omap - - id: ENSG00000130958 + - id: "ENSG00000130958" - !!omap - - id: ENSG00000130985 + - id: "ENSG00000130985" - !!omap - - id: ENSG00000130988 + - id: "ENSG00000130988" - !!omap - - id: ENSG00000130997 + - id: "ENSG00000130997" - !!omap - - id: ENSG00000131013 + - id: "ENSG00000131013" - !!omap - - id: ENSG00000131023 + - id: "ENSG00000131023" - !!omap - - id: ENSG00000131055 + - id: "ENSG00000131055" - !!omap - - id: ENSG00000131067 + - id: "ENSG00000131067" - !!omap - - id: ENSG00000131069 + - id: "ENSG00000131069" - !!omap - - id: ENSG00000131100 + - id: "ENSG00000131100" - !!omap - - id: ENSG00000131143 + - id: "ENSG00000131143" - !!omap - - id: ENSG00000131174 + - id: "ENSG00000131174" - !!omap - - id: ENSG00000131183 + - id: "ENSG00000131183" - !!omap - - id: ENSG00000131203 + - id: "ENSG00000131203" - !!omap - - id: ENSG00000131238 + - id: "ENSG00000131238" - !!omap - - id: ENSG00000131373 + - id: "ENSG00000131373" - !!omap - - id: ENSG00000131386 + - id: "ENSG00000131386" - !!omap - - id: ENSG00000131389 + - id: "ENSG00000131389" - !!omap - - id: ENSG00000131400 + - id: "ENSG00000131400" - !!omap - - id: ENSG00000131446 + - id: "ENSG00000131446" - !!omap - - id: ENSG00000131459 + - id: "ENSG00000131459" - !!omap - - id: ENSG00000131471 + - id: "ENSG00000131471" - !!omap - - id: ENSG00000131473 + - id: "ENSG00000131473" - !!omap - - id: ENSG00000131480 + - id: "ENSG00000131480" - !!omap - - id: ENSG00000131482 + - id: "ENSG00000131482" - !!omap - - id: ENSG00000131495 + - id: "ENSG00000131495" - !!omap - - id: ENSG00000131508 + - id: "ENSG00000131508" - !!omap - - id: ENSG00000131653 + - id: "ENSG00000131653" - !!omap - - id: ENSG00000131686 + - id: "ENSG00000131686" - !!omap - - id: ENSG00000131730 + - id: "ENSG00000131730" - !!omap - - id: ENSG00000131748 + - id: "ENSG00000131748" - !!omap - - id: ENSG00000131771 + - id: "ENSG00000131771" - !!omap - - id: ENSG00000131781 + - id: "ENSG00000131781" - !!omap - - id: ENSG00000131791 + - id: "ENSG00000131791" - !!omap - - id: ENSG00000131828 + - id: "ENSG00000131828" - !!omap - - id: ENSG00000131844 + - id: "ENSG00000131844" - !!omap - - id: ENSG00000131864 + - id: "ENSG00000131864" - !!omap - - id: ENSG00000131873 + - id: "ENSG00000131873" - !!omap - - id: ENSG00000131979 + - id: "ENSG00000131979" - !!omap - - id: ENSG00000132155 + - id: "ENSG00000132155" - !!omap - - id: ENSG00000132164 + - id: "ENSG00000132164" - !!omap - - id: ENSG00000132182 + - id: "ENSG00000132182" - !!omap - - id: ENSG00000132196 + - id: "ENSG00000132196" - !!omap - - id: ENSG00000132256 + - id: "ENSG00000132256" - !!omap - - id: ENSG00000132275 + - id: "ENSG00000132275" - !!omap - - id: ENSG00000132323 + - id: "ENSG00000132323" - !!omap - - id: ENSG00000132330 + - id: "ENSG00000132330" - !!omap - - id: ENSG00000132334 + - id: "ENSG00000132334" - !!omap - - id: ENSG00000132356 + - id: "ENSG00000132356" - !!omap - - id: ENSG00000132376 + - id: "ENSG00000132376" - !!omap - - id: ENSG00000132382 + - id: "ENSG00000132382" - !!omap - - id: ENSG00000132388 + - id: "ENSG00000132388" - !!omap - - id: ENSG00000132423 + - id: "ENSG00000132423" - !!omap - - id: ENSG00000132437 + - id: "ENSG00000132437" - !!omap - - id: ENSG00000132517 + - id: "ENSG00000132517" - !!omap - - id: ENSG00000132518 + - id: "ENSG00000132518" - !!omap - - id: ENSG00000132570 + - id: "ENSG00000132570" - !!omap - - id: ENSG00000132600 + - id: "ENSG00000132600" - !!omap - - id: ENSG00000132664 + - id: "ENSG00000132664" - !!omap - - id: ENSG00000132670 + - id: "ENSG00000132670" - !!omap - - id: ENSG00000132677 + - id: "ENSG00000132677" - !!omap - - id: ENSG00000132681 + - id: "ENSG00000132681" - !!omap - - id: ENSG00000132744 + - id: "ENSG00000132744" - !!omap - - id: ENSG00000132746 + - id: "ENSG00000132746" - !!omap - - id: ENSG00000132793 + - id: "ENSG00000132793" - !!omap - - id: ENSG00000132837 + - id: "ENSG00000132837" - !!omap - - id: ENSG00000132840 + - id: "ENSG00000132840" - !!omap - - id: ENSG00000132874 + - id: "ENSG00000132874" - !!omap - - id: ENSG00000132915 + - id: "ENSG00000132915" - !!omap - - id: ENSG00000132958 + - id: "ENSG00000132958" - !!omap - - id: ENSG00000132964 + - id: "ENSG00000132964" - !!omap - - id: ENSG00000133027 + - id: "ENSG00000133027" - !!omap - - id: ENSG00000133048 + - id: "ENSG00000133048" - !!omap - - id: ENSG00000133056 + - id: "ENSG00000133056" - !!omap - - id: ENSG00000133059 + - id: "ENSG00000133059" - !!omap - - id: ENSG00000133063 + - id: "ENSG00000133063" - !!omap - - id: ENSG00000133065 + - id: "ENSG00000133065" - !!omap - - id: ENSG00000133083 + - id: "ENSG00000133083" - !!omap - - id: ENSG00000133116 + - id: "ENSG00000133116" - !!omap - - id: ENSG00000133121 + - id: "ENSG00000133121" - !!omap - - id: ENSG00000133135 + - id: "ENSG00000133135" - !!omap - - id: ENSG00000133216 + - id: "ENSG00000133216" - !!omap - - id: ENSG00000133247 + - id: "ENSG00000133247" - !!omap - - id: ENSG00000133256 + - id: "ENSG00000133256" - !!omap - - id: ENSG00000133275 + - id: "ENSG00000133275" - !!omap - - id: ENSG00000133313 + - id: "ENSG00000133313" - !!omap - - id: ENSG00000133315 + - id: "ENSG00000133315" - !!omap - - id: ENSG00000133328 + - id: "ENSG00000133328" - !!omap - - id: ENSG00000133433 + - id: "ENSG00000133433" - !!omap - - id: ENSG00000133460 + - id: "ENSG00000133460" - !!omap - - id: ENSG00000133475 + - id: "ENSG00000133475" - !!omap - - id: ENSG00000133606 + - id: "ENSG00000133606" - !!omap - - id: ENSG00000133706 + - id: "ENSG00000133706" - !!omap - - id: ENSG00000133731 + - id: "ENSG00000133731" - !!omap - - id: ENSG00000133742 + - id: "ENSG00000133742" - !!omap - - id: ENSG00000133805 + - id: "ENSG00000133805" - !!omap - - id: ENSG00000133835 + - id: "ENSG00000133835" - !!omap - - id: ENSG00000133878 + - id: "ENSG00000133878" - !!omap - - id: ENSG00000134013 + - id: "ENSG00000134013" - !!omap - - id: ENSG00000134014 + - id: "ENSG00000134014" - !!omap - - id: ENSG00000134058 + - id: "ENSG00000134058" - !!omap - - id: ENSG00000134070 + - id: "ENSG00000134070" - !!omap - - id: ENSG00000134072 + - id: "ENSG00000134072" - !!omap - - id: ENSG00000134184 + - id: "ENSG00000134184" - !!omap - - id: ENSG00000134201 + - id: "ENSG00000134201" - !!omap - - id: ENSG00000134202 + - id: "ENSG00000134202" - !!omap - - id: ENSG00000134216 + - id: "ENSG00000134216" - !!omap - - id: ENSG00000134240 + - id: "ENSG00000134240" - !!omap - - id: ENSG00000134242 + - id: "ENSG00000134242" - !!omap - - id: ENSG00000134255 + - id: "ENSG00000134255" - !!omap - - id: ENSG00000134285 + - id: "ENSG00000134285" - !!omap - - id: ENSG00000134294 + - id: "ENSG00000134294" - !!omap - - id: ENSG00000134317 + - id: "ENSG00000134317" - !!omap - - id: ENSG00000134318 + - id: "ENSG00000134318" - !!omap - - id: ENSG00000134324 + - id: "ENSG00000134324" - !!omap - - id: ENSG00000134326 + - id: "ENSG00000134326" - !!omap - - id: ENSG00000134333 + - id: "ENSG00000134333" - !!omap - - id: ENSG00000134398 + - id: "ENSG00000134398" - !!omap - - id: ENSG00000134440 + - id: "ENSG00000134440" - !!omap - - id: ENSG00000134538 + - id: "ENSG00000134538" - !!omap - - id: ENSG00000134575 + - id: "ENSG00000134575" - !!omap - - id: ENSG00000134588 + - id: "ENSG00000134588" - !!omap - - id: ENSG00000134602 + - id: "ENSG00000134602" - !!omap - - id: ENSG00000134684 + - id: "ENSG00000134684" - !!omap - - id: ENSG00000134716 + - id: "ENSG00000134716" - !!omap - - id: ENSG00000134744 + - id: "ENSG00000134744" - !!omap - - id: ENSG00000134758 + - id: "ENSG00000134758" - !!omap - - id: ENSG00000134780 + - id: "ENSG00000134780" - !!omap - - id: ENSG00000134812 + - id: "ENSG00000134812" - !!omap - - id: ENSG00000134824 + - id: "ENSG00000134824" - !!omap - - id: ENSG00000134852 + - id: "ENSG00000134852" - !!omap - - id: ENSG00000134853 + - id: "ENSG00000134853" - !!omap - - id: ENSG00000134864 + - id: "ENSG00000134864" - !!omap - - id: ENSG00000134882 + - id: "ENSG00000134882" - !!omap - - id: ENSG00000134910 + - id: "ENSG00000134910" - !!omap - - id: ENSG00000135002 + - id: "ENSG00000135002" - !!omap - - id: ENSG00000135047 + - id: "ENSG00000135047" - !!omap - - id: ENSG00000135069 + - id: "ENSG00000135069" - !!omap - - id: ENSG00000135090 + - id: "ENSG00000135090" - !!omap - - id: ENSG00000135093 + - id: "ENSG00000135093" - !!omap - - id: ENSG00000135094 + - id: "ENSG00000135094" - !!omap - - id: ENSG00000135218 + - id: "ENSG00000135218" - !!omap - - id: ENSG00000135220 + - id: "ENSG00000135220" - !!omap - - id: ENSG00000135226 + - id: "ENSG00000135226" - !!omap - - id: ENSG00000135241 + - id: "ENSG00000135241" - !!omap - - id: ENSG00000135250 + - id: "ENSG00000135250" - !!omap - - id: ENSG00000135318 + - id: "ENSG00000135318" - !!omap - - id: ENSG00000135333 + - id: "ENSG00000135333" - !!omap - - id: ENSG00000135341 + - id: "ENSG00000135341" - !!omap - - id: ENSG00000135372 + - id: "ENSG00000135372" - !!omap - - id: ENSG00000135390 + - id: "ENSG00000135390" - !!omap - - id: ENSG00000135409 + - id: "ENSG00000135409" - !!omap - - id: ENSG00000135423 + - id: "ENSG00000135423" - !!omap - - id: ENSG00000135437 + - id: "ENSG00000135437" - !!omap - - id: ENSG00000135446 + - id: "ENSG00000135446" - !!omap - - id: ENSG00000135447 + - id: "ENSG00000135447" - !!omap - - id: ENSG00000135454 + - id: "ENSG00000135454" - !!omap - - id: ENSG00000135473 + - id: "ENSG00000135473" - !!omap - - id: ENSG00000135503 + - id: "ENSG00000135503" - !!omap - - id: ENSG00000135587 + - id: "ENSG00000135587" - !!omap - - id: ENSG00000135605 + - id: "ENSG00000135605" - !!omap - - id: ENSG00000135655 + - id: "ENSG00000135655" - !!omap - - id: ENSG00000135677 + - id: "ENSG00000135677" - !!omap - - id: ENSG00000135679 + - id: "ENSG00000135679" - !!omap - - id: ENSG00000135697 + - id: "ENSG00000135697" - !!omap - - id: ENSG00000135702 + - id: "ENSG00000135702" - !!omap - - id: ENSG00000135740 + - id: "ENSG00000135740" - !!omap - - id: ENSG00000135744 + - id: "ENSG00000135744" - !!omap - - id: ENSG00000135778 + - id: "ENSG00000135778" - !!omap - - id: ENSG00000135821 + - id: "ENSG00000135821" - !!omap - - id: ENSG00000135838 + - id: "ENSG00000135838" - !!omap - - id: ENSG00000135845 + - id: "ENSG00000135845" - !!omap - - id: ENSG00000135913 + - id: "ENSG00000135913" - !!omap - - id: ENSG00000135917 + - id: "ENSG00000135917" - !!omap - - id: ENSG00000135929 + - id: "ENSG00000135929" - !!omap - - id: ENSG00000135940 + - id: "ENSG00000135940" - !!omap - - id: ENSG00000136010 + - id: "ENSG00000136010" - !!omap - - id: ENSG00000136014 + - id: "ENSG00000136014" - !!omap - - id: ENSG00000136052 + - id: "ENSG00000136052" - !!omap - - id: ENSG00000136098 + - id: "ENSG00000136098" - !!omap - - id: ENSG00000136143 + - id: "ENSG00000136143" - !!omap - - id: ENSG00000136169 + - id: "ENSG00000136169" - !!omap - - id: ENSG00000136213 + - id: "ENSG00000136213" - !!omap - - id: ENSG00000136243 + - id: "ENSG00000136243" - !!omap - - id: ENSG00000136247 + - id: "ENSG00000136247" - !!omap - - id: ENSG00000136250 + - id: "ENSG00000136250" - !!omap - - id: ENSG00000136267 + - id: "ENSG00000136267" - !!omap - - id: ENSG00000136371 + - id: "ENSG00000136371" - !!omap - - id: ENSG00000136381 + - id: "ENSG00000136381" - !!omap - - id: ENSG00000136448 + - id: "ENSG00000136448" - !!omap - - id: ENSG00000136504 + - id: "ENSG00000136504" - !!omap - - id: ENSG00000136521 + - id: "ENSG00000136521" - !!omap - - id: ENSG00000136536 + - id: "ENSG00000136536" - !!omap - - id: ENSG00000136542 + - id: "ENSG00000136542" - !!omap - - id: ENSG00000136573 + - id: "ENSG00000136573" - !!omap - - id: ENSG00000136628 + - id: "ENSG00000136628" - !!omap - - id: ENSG00000136643 + - id: "ENSG00000136643" - !!omap - - id: ENSG00000136699 + - id: "ENSG00000136699" - !!omap - - id: ENSG00000136715 + - id: "ENSG00000136715" - !!omap - - id: ENSG00000136720 + - id: "ENSG00000136720" - !!omap - - id: ENSG00000136731 + - id: "ENSG00000136731" - !!omap - - id: ENSG00000136750 + - id: "ENSG00000136750" - !!omap - - id: ENSG00000136807 + - id: "ENSG00000136807" - !!omap - - id: ENSG00000136810 + - id: "ENSG00000136810" - !!omap - - id: ENSG00000136840 + - id: "ENSG00000136840" - !!omap - - id: ENSG00000136856 + - id: "ENSG00000136856" - !!omap - - id: ENSG00000136868 + - id: "ENSG00000136868" - !!omap - - id: ENSG00000136872 + - id: "ENSG00000136872" - !!omap - - id: ENSG00000136877 + - id: "ENSG00000136877" - !!omap - - id: ENSG00000136878 + - id: "ENSG00000136878" - !!omap - - id: ENSG00000136881 + - id: "ENSG00000136881" - !!omap - - id: ENSG00000136888 + - id: "ENSG00000136888" - !!omap - - id: ENSG00000136908 + - id: "ENSG00000136908" - !!omap - - id: ENSG00000136943 + - id: "ENSG00000136943" - !!omap - - id: ENSG00000136960 + - id: "ENSG00000136960" - !!omap - - id: ENSG00000137054 + - id: "ENSG00000137054" - !!omap - - id: ENSG00000137106 + - id: "ENSG00000137106" - !!omap - - id: ENSG00000137124 + - id: "ENSG00000137124" - !!omap - - id: ENSG00000137168 + - id: "ENSG00000137168" - !!omap - - id: ENSG00000137193 + - id: "ENSG00000137193" - !!omap - - id: ENSG00000137198 + - id: "ENSG00000137198" - !!omap - - id: ENSG00000137200 + - id: "ENSG00000137200" - !!omap - - id: ENSG00000137204 + - id: "ENSG00000137204" - !!omap - - id: ENSG00000137261 + - id: "ENSG00000137261" - !!omap - - id: ENSG00000137275 + - id: "ENSG00000137275" - !!omap - - id: ENSG00000137364 + - id: "ENSG00000137364" - !!omap - - id: ENSG00000137392 + - id: "ENSG00000137392" - !!omap - - id: ENSG00000137393 + - id: "ENSG00000137393" - !!omap - - id: ENSG00000137491 + - id: "ENSG00000137491" - !!omap - - id: ENSG00000137496 + - id: "ENSG00000137496" - !!omap - - id: ENSG00000137563 + - id: "ENSG00000137563" - !!omap - - id: ENSG00000137574 + - id: "ENSG00000137574" - !!omap - - id: ENSG00000137601 + - id: "ENSG00000137601" - !!omap - - id: ENSG00000137700 + - id: "ENSG00000137700" - !!omap - - id: ENSG00000137713 + - id: "ENSG00000137713" - !!omap - - id: ENSG00000137731 + - id: "ENSG00000137731" - !!omap - - id: ENSG00000137760 + - id: "ENSG00000137760" - !!omap - - id: ENSG00000137764 + - id: "ENSG00000137764" - !!omap - - id: ENSG00000137770 + - id: "ENSG00000137770" - !!omap - - id: ENSG00000137817 + - id: "ENSG00000137817" - !!omap - - id: ENSG00000137825 + - id: "ENSG00000137825" - !!omap - - id: ENSG00000137841 + - id: "ENSG00000137841" - !!omap - - id: ENSG00000137843 + - id: "ENSG00000137843" - !!omap - - id: ENSG00000137857 + - id: "ENSG00000137857" - !!omap - - id: ENSG00000137860 + - id: "ENSG00000137860" - !!omap - - id: ENSG00000137868 + - id: "ENSG00000137868" - !!omap - - id: ENSG00000137869 + - id: "ENSG00000137869" - !!omap - - id: ENSG00000137944 + - id: "ENSG00000137944" - !!omap - - id: ENSG00000137968 + - id: "ENSG00000137968" - !!omap - - id: ENSG00000137992 + - id: "ENSG00000137992" - !!omap - - id: ENSG00000137996 + - id: "ENSG00000137996" - !!omap - - id: ENSG00000138018 + - id: "ENSG00000138018" - !!omap - - id: ENSG00000138029 + - id: "ENSG00000138029" - !!omap - - id: ENSG00000138030 + - id: "ENSG00000138030" - !!omap - - id: ENSG00000138031 + - id: "ENSG00000138031" - !!omap - - id: ENSG00000138032 + - id: "ENSG00000138032" - !!omap - - id: ENSG00000138061 + - id: "ENSG00000138061" - !!omap - - id: ENSG00000138074 + - id: "ENSG00000138074" - !!omap - - id: ENSG00000138075 + - id: "ENSG00000138075" - !!omap - - id: ENSG00000138079 + - id: "ENSG00000138079" - !!omap - - id: ENSG00000138109 + - id: "ENSG00000138109" - !!omap - - id: ENSG00000138115 + - id: "ENSG00000138115" - !!omap - - id: ENSG00000138134 + - id: "ENSG00000138134" - !!omap - - id: ENSG00000138135 + - id: "ENSG00000138135" - !!omap - - id: ENSG00000138166 + - id: "ENSG00000138166" - !!omap - - id: ENSG00000138185 + - id: "ENSG00000138185" - !!omap - - id: ENSG00000138193 + - id: "ENSG00000138193" - !!omap - - id: ENSG00000138207 + - id: "ENSG00000138207" - !!omap - - id: ENSG00000138308 + - id: "ENSG00000138308" - !!omap - - id: ENSG00000138356 + - id: "ENSG00000138356" - !!omap - - id: ENSG00000138363 + - id: "ENSG00000138363" - !!omap - - id: ENSG00000138376 + - id: "ENSG00000138376" - !!omap - - id: ENSG00000138382 + - id: "ENSG00000138382" - !!omap - - id: ENSG00000138395 + - id: "ENSG00000138395" - !!omap - - id: ENSG00000138398 + - id: "ENSG00000138398" - !!omap - - id: ENSG00000138400 + - id: "ENSG00000138400" - !!omap - - id: ENSG00000138411 + - id: "ENSG00000138411" - !!omap - - id: ENSG00000138413 + - id: "ENSG00000138413" - !!omap - - id: ENSG00000138449 + - id: "ENSG00000138449" - !!omap - - id: ENSG00000138496 + - id: "ENSG00000138496" - !!omap - - id: ENSG00000138592 + - id: "ENSG00000138592" - !!omap - - id: ENSG00000138604 + - id: "ENSG00000138604" - !!omap - - id: ENSG00000138617 + - id: "ENSG00000138617" - !!omap - - id: ENSG00000138621 + - id: "ENSG00000138621" - !!omap - - id: ENSG00000138641 + - id: "ENSG00000138641" - !!omap - - id: ENSG00000138653 + - id: "ENSG00000138653" - !!omap - - id: ENSG00000138669 + - id: "ENSG00000138669" - !!omap - - id: ENSG00000138678 + - id: "ENSG00000138678" - !!omap - - id: ENSG00000138696 + - id: "ENSG00000138696" - !!omap - - id: ENSG00000138735 + - id: "ENSG00000138735" - !!omap - - id: ENSG00000138744 + - id: "ENSG00000138744" - !!omap - - id: ENSG00000138750 + - id: "ENSG00000138750" - !!omap - - id: ENSG00000138756 + - id: "ENSG00000138756" - !!omap - - id: ENSG00000138769 + - id: "ENSG00000138769" - !!omap - - id: ENSG00000138772 + - id: "ENSG00000138772" - !!omap - - id: ENSG00000138777 + - id: "ENSG00000138777" - !!omap - - id: ENSG00000138796 + - id: "ENSG00000138796" - !!omap - - id: ENSG00000138801 + - id: "ENSG00000138801" - !!omap - - id: ENSG00000138814 + - id: "ENSG00000138814" - !!omap - - id: ENSG00000138821 + - id: "ENSG00000138821" - !!omap - - id: ENSG00000138823 + - id: "ENSG00000138823" - !!omap - - id: ENSG00000138942 + - id: "ENSG00000138942" - !!omap - - id: ENSG00000139044 + - id: "ENSG00000139044" - !!omap - - id: ENSG00000139053 + - id: "ENSG00000139053" - !!omap - - id: ENSG00000139133 + - id: "ENSG00000139133" - !!omap - - id: ENSG00000139144 + - id: "ENSG00000139144" - !!omap - - id: ENSG00000139151 + - id: "ENSG00000139151" - !!omap - - id: ENSG00000139155 + - id: "ENSG00000139155" - !!omap - - id: ENSG00000139160 + - id: "ENSG00000139160" - !!omap - - id: ENSG00000139163 + - id: "ENSG00000139163" - !!omap - - id: ENSG00000139180 + - id: "ENSG00000139180" - !!omap - - id: ENSG00000139209 + - id: "ENSG00000139209" - !!omap - - id: ENSG00000139266 + - id: "ENSG00000139266" - !!omap - - id: ENSG00000139278 + - id: "ENSG00000139278" - !!omap - - id: ENSG00000139287 + - id: "ENSG00000139287" - !!omap - - id: ENSG00000139304 + - id: "ENSG00000139304" - !!omap - - id: ENSG00000139318 + - id: "ENSG00000139318" - !!omap - - id: ENSG00000139344 + - id: "ENSG00000139344" - !!omap - - id: ENSG00000139370 + - id: "ENSG00000139370" - !!omap - - id: ENSG00000139410 + - id: "ENSG00000139410" - !!omap - - id: ENSG00000139428 + - id: "ENSG00000139428" - !!omap - - id: ENSG00000139433 + - id: "ENSG00000139433" - !!omap - - id: ENSG00000139496 + - id: "ENSG00000139496" - !!omap - - id: ENSG00000139505 + - id: "ENSG00000139505" - !!omap - - id: ENSG00000139514 + - id: "ENSG00000139514" - !!omap - - id: ENSG00000139531 + - id: "ENSG00000139531" - !!omap - - id: ENSG00000139540 + - id: "ENSG00000139540" - !!omap - - id: ENSG00000139547 + - id: "ENSG00000139547" - !!omap - - id: ENSG00000139567 + - id: "ENSG00000139567" - !!omap - - id: ENSG00000139624 + - id: "ENSG00000139624" - !!omap - - id: ENSG00000139625 + - id: "ENSG00000139625" - !!omap - - id: ENSG00000139629 + - id: "ENSG00000139629" - !!omap - - id: ENSG00000139631 + - id: "ENSG00000139631" - !!omap - - id: ENSG00000139684 + - id: "ENSG00000139684" - !!omap - - id: ENSG00000139718 + - id: "ENSG00000139718" - !!omap - - id: ENSG00000139780 + - id: "ENSG00000139780" - !!omap - - id: ENSG00000139908 + - id: "ENSG00000139908" - !!omap - - id: ENSG00000139914 + - id: "ENSG00000139914" - !!omap - - id: ENSG00000139977 + - id: "ENSG00000139977" - !!omap - - id: ENSG00000139988 + - id: "ENSG00000139988" - !!omap - - id: ENSG00000140057 + - id: "ENSG00000140057" - !!omap - - id: ENSG00000140090 + - id: "ENSG00000140090" - !!omap - - id: ENSG00000140105 + - id: "ENSG00000140105" - !!omap - - id: ENSG00000140199 + - id: "ENSG00000140199" - !!omap - - id: ENSG00000140263 + - id: "ENSG00000140263" - !!omap - - id: ENSG00000140279 + - id: "ENSG00000140279" - !!omap - - id: ENSG00000140284 + - id: "ENSG00000140284" - !!omap - - id: ENSG00000140287 + - id: "ENSG00000140287" - !!omap - - id: ENSG00000140297 + - id: "ENSG00000140297" - !!omap - - id: ENSG00000140367 + - id: "ENSG00000140367" - !!omap - - id: ENSG00000140374 + - id: "ENSG00000140374" - !!omap - - id: ENSG00000140396 + - id: "ENSG00000140396" - !!omap - - id: ENSG00000140400 + - id: "ENSG00000140400" - !!omap - - id: ENSG00000140443 + - id: "ENSG00000140443" - !!omap - - id: ENSG00000140455 + - id: "ENSG00000140455" - !!omap - - id: ENSG00000140459 + - id: "ENSG00000140459" - !!omap - - id: ENSG00000140465 + - id: "ENSG00000140465" - !!omap - - id: ENSG00000140474 + - id: "ENSG00000140474" - !!omap - - id: ENSG00000140505 + - id: "ENSG00000140505" - !!omap - - id: ENSG00000140519 + - id: "ENSG00000140519" - !!omap - - id: ENSG00000140521 + - id: "ENSG00000140521" - !!omap - - id: ENSG00000140522 + - id: "ENSG00000140522" - !!omap - - id: ENSG00000140534 + - id: "ENSG00000140534" - !!omap - - id: ENSG00000140538 + - id: "ENSG00000140538" - !!omap - - id: ENSG00000140598 + - id: "ENSG00000140598" - !!omap - - id: ENSG00000140612 + - id: "ENSG00000140612" - !!omap - - id: ENSG00000140650 + - id: "ENSG00000140650" - !!omap - - id: ENSG00000140675 + - id: "ENSG00000140675" - !!omap - - id: ENSG00000140740 + - id: "ENSG00000140740" - !!omap - - id: ENSG00000140795 + - id: "ENSG00000140795" - !!omap - - id: ENSG00000140835 + - id: "ENSG00000140835" - !!omap - - id: ENSG00000140905 + - id: "ENSG00000140905" - !!omap - - id: ENSG00000140990 + - id: "ENSG00000140990" - !!omap - - id: ENSG00000140992 + - id: "ENSG00000140992" - !!omap - - id: ENSG00000141012 + - id: "ENSG00000141012" - !!omap - - id: ENSG00000141027 + - id: "ENSG00000141027" - !!omap - - id: ENSG00000141096 + - id: "ENSG00000141096" - !!omap - - id: ENSG00000141179 + - id: "ENSG00000141179" - !!omap - - id: ENSG00000141279 + - id: "ENSG00000141279" - !!omap - - id: ENSG00000141298 + - id: "ENSG00000141298" - !!omap - - id: ENSG00000141338 + - id: "ENSG00000141338" - !!omap - - id: ENSG00000141349 + - id: "ENSG00000141349" - !!omap - - id: ENSG00000141378 + - id: "ENSG00000141378" - !!omap - - id: ENSG00000141401 + - id: "ENSG00000141401" - !!omap - - id: ENSG00000141424 + - id: "ENSG00000141424" - !!omap - - id: ENSG00000141429 + - id: "ENSG00000141429" - !!omap - - id: ENSG00000141446 + - id: "ENSG00000141446" - !!omap - - id: ENSG00000141458 + - id: "ENSG00000141458" - !!omap - - id: ENSG00000141469 + - id: "ENSG00000141469" - !!omap - - id: ENSG00000141485 + - id: "ENSG00000141485" - !!omap - - id: ENSG00000141503 + - id: "ENSG00000141503" - !!omap - - id: ENSG00000141504 + - id: "ENSG00000141504" - !!omap - - id: ENSG00000141506 + - id: "ENSG00000141506" - !!omap - - id: ENSG00000141526 + - id: "ENSG00000141526" - !!omap - - id: ENSG00000141551 + - id: "ENSG00000141551" - !!omap - - id: ENSG00000141552 + - id: "ENSG00000141552" - !!omap - - id: ENSG00000141560 + - id: "ENSG00000141560" - !!omap - - id: ENSG00000141639 + - id: "ENSG00000141639" - !!omap - - id: ENSG00000141698 + - id: "ENSG00000141698" - !!omap - - id: ENSG00000141736 + - id: "ENSG00000141736" - !!omap - - id: ENSG00000141744 + - id: "ENSG00000141744" - !!omap - - id: ENSG00000141756 + - id: "ENSG00000141756" - !!omap - - id: ENSG00000141873 + - id: "ENSG00000141873" - !!omap - - id: ENSG00000141934 + - id: "ENSG00000141934" - !!omap - - id: ENSG00000141959 + - id: "ENSG00000141959" - !!omap - - id: ENSG00000142046 + - id: "ENSG00000142046" - !!omap - - id: ENSG00000142082 + - id: "ENSG00000142082" - !!omap - - id: ENSG00000142102 + - id: "ENSG00000142102" - !!omap - - id: ENSG00000142149 + - id: "ENSG00000142149" - !!omap - - id: ENSG00000142168 + - id: "ENSG00000142168" - !!omap - - id: ENSG00000142182 + - id: "ENSG00000142182" - !!omap - - id: ENSG00000142185 + - id: "ENSG00000142185" - !!omap - - id: ENSG00000142208 + - id: "ENSG00000142208" - !!omap - - id: ENSG00000142230 + - id: "ENSG00000142230" - !!omap - - id: ENSG00000142235 + - id: "ENSG00000142235" - !!omap - - id: ENSG00000142273 + - id: "ENSG00000142273" - !!omap - - id: ENSG00000142319 + - id: "ENSG00000142319" - !!omap - - id: ENSG00000142453 + - id: "ENSG00000142453" - !!omap - - id: ENSG00000142494 + - id: "ENSG00000142494" - !!omap - - id: ENSG00000142513 + - id: "ENSG00000142513" - !!omap - - id: ENSG00000142583 + - id: "ENSG00000142583" - !!omap - - id: ENSG00000142619 + - id: "ENSG00000142619" - !!omap - - id: ENSG00000142623 + - id: "ENSG00000142623" - !!omap - - id: ENSG00000142627 + - id: "ENSG00000142627" - !!omap - - id: ENSG00000142657 + - id: "ENSG00000142657" - !!omap - - id: ENSG00000142731 + - id: "ENSG00000142731" - !!omap - - id: ENSG00000142733 + - id: "ENSG00000142733" - !!omap - - id: ENSG00000142798 + - id: "ENSG00000142798" - !!omap - - id: ENSG00000142875 + - id: "ENSG00000142875" - !!omap - - id: ENSG00000142892 + - id: "ENSG00000142892" - !!omap - - id: ENSG00000142920 + - id: "ENSG00000142920" - !!omap - - id: ENSG00000142949 + - id: "ENSG00000142949" - !!omap - - id: ENSG00000142973 + - id: "ENSG00000142973" - !!omap - - id: ENSG00000143036 + - id: "ENSG00000143036" - !!omap - - id: ENSG00000143149 + - id: "ENSG00000143149" - !!omap - - id: ENSG00000143153 + - id: "ENSG00000143153" - !!omap - - id: ENSG00000143156 + - id: "ENSG00000143156" - !!omap - - id: ENSG00000143158 + - id: "ENSG00000143158" - !!omap - - id: ENSG00000143179 + - id: "ENSG00000143179" - !!omap - - id: ENSG00000143198 + - id: "ENSG00000143198" - !!omap - - id: ENSG00000143199 + - id: "ENSG00000143199" - !!omap - - id: ENSG00000143207 + - id: "ENSG00000143207" - !!omap - - id: ENSG00000143224 + - id: "ENSG00000143224" - !!omap - - id: ENSG00000143252 + - id: "ENSG00000143252" - !!omap - - id: ENSG00000143258 + - id: "ENSG00000143258" - !!omap - - id: ENSG00000143278 + - id: "ENSG00000143278" - !!omap - - id: ENSG00000143315 + - id: "ENSG00000143315" - !!omap - - id: ENSG00000143322 + - id: "ENSG00000143322" - !!omap - - id: ENSG00000143344 + - id: "ENSG00000143344" - !!omap - - id: ENSG00000143363 + - id: "ENSG00000143363" - !!omap - - id: ENSG00000143379 + - id: "ENSG00000143379" - !!omap - - id: ENSG00000143387 + - id: "ENSG00000143387" - !!omap - - id: ENSG00000143393 + - id: "ENSG00000143393" - !!omap - - id: ENSG00000143398 + - id: "ENSG00000143398" - !!omap - - id: ENSG00000143418 + - id: "ENSG00000143418" - !!omap - - id: ENSG00000143479 + - id: "ENSG00000143479" - !!omap - - id: ENSG00000143499 + - id: "ENSG00000143499" - !!omap - - id: ENSG00000143507 + - id: "ENSG00000143507" - !!omap - - id: ENSG00000143515 + - id: "ENSG00000143515" - !!omap - - id: ENSG00000143552 + - id: "ENSG00000143552" - !!omap - - id: ENSG00000143554 + - id: "ENSG00000143554" - !!omap - - id: ENSG00000143570 + - id: "ENSG00000143570" - !!omap - - id: ENSG00000143595 + - id: "ENSG00000143595" - !!omap - - id: ENSG00000143627 + - id: "ENSG00000143627" - !!omap - - id: ENSG00000143630 + - id: "ENSG00000143630" - !!omap - - id: ENSG00000143641 + - id: "ENSG00000143641" - !!omap - - id: ENSG00000143653 + - id: "ENSG00000143653" - !!omap - - id: ENSG00000143674 + - id: "ENSG00000143674" - !!omap - - id: ENSG00000143727 + - id: "ENSG00000143727" - !!omap - - id: ENSG00000143753 + - id: "ENSG00000143753" - !!omap - - id: ENSG00000143772 + - id: "ENSG00000143772" - !!omap - - id: ENSG00000143774 + - id: "ENSG00000143774" - !!omap - - id: ENSG00000143776 + - id: "ENSG00000143776" - !!omap - - id: ENSG00000143797 + - id: "ENSG00000143797" - !!omap - - id: ENSG00000143799 + - id: "ENSG00000143799" - !!omap - - id: ENSG00000143811 + - id: "ENSG00000143811" - !!omap - - id: ENSG00000143815 + - id: "ENSG00000143815" - !!omap - - id: ENSG00000143819 + - id: "ENSG00000143819" - !!omap - - id: ENSG00000143845 + - id: "ENSG00000143845" - !!omap - - id: ENSG00000143851 + - id: "ENSG00000143851" - !!omap - - id: ENSG00000143870 + - id: "ENSG00000143870" - !!omap - - id: ENSG00000143882 + - id: "ENSG00000143882" - !!omap - - id: ENSG00000143891 + - id: "ENSG00000143891" - !!omap - - id: ENSG00000143921 + - id: "ENSG00000143921" - !!omap - - id: ENSG00000143933 + - id: "ENSG00000143933" - !!omap - - id: ENSG00000144035 + - id: "ENSG00000144035" - !!omap - - id: ENSG00000144048 + - id: "ENSG00000144048" - !!omap - - id: ENSG00000144057 + - id: "ENSG00000144057" - !!omap - - id: ENSG00000144136 + - id: "ENSG00000144136" - !!omap - - id: ENSG00000144182 + - id: "ENSG00000144182" - !!omap - - id: ENSG00000144231 + - id: "ENSG00000144231" - !!omap - - id: ENSG00000144278 + - id: "ENSG00000144278" - !!omap - - id: ENSG00000144290 + - id: "ENSG00000144290" - !!omap - - id: ENSG00000144357 + - id: "ENSG00000144357" - !!omap - - id: ENSG00000144362 + - id: "ENSG00000144362" - !!omap - - id: ENSG00000144401 + - id: "ENSG00000144401" - !!omap - - id: ENSG00000144579 + - id: "ENSG00000144579" - !!omap - - id: ENSG00000144583 + - id: "ENSG00000144583" - !!omap - - id: ENSG00000144591 + - id: "ENSG00000144591" - !!omap - - id: ENSG00000144659 + - id: "ENSG00000144659" - !!omap - - id: ENSG00000144677 + - id: "ENSG00000144677" - !!omap - - id: ENSG00000144724 + - id: "ENSG00000144724" - !!omap - - id: ENSG00000144741 + - id: "ENSG00000144741" - !!omap - - id: ENSG00000144744 + - id: "ENSG00000144744" - !!omap - - id: ENSG00000144843 + - id: "ENSG00000144843" - !!omap - - id: ENSG00000144908 + - id: "ENSG00000144908" - !!omap - - id: ENSG00000145020 + - id: "ENSG00000145020" - !!omap - - id: ENSG00000145194 + - id: "ENSG00000145194" - !!omap - - id: ENSG00000145214 + - id: "ENSG00000145214" - !!omap - - id: ENSG00000145217 + - id: "ENSG00000145217" - !!omap - - id: ENSG00000145242 + - id: "ENSG00000145242" - !!omap - - id: ENSG00000145283 + - id: "ENSG00000145283" - !!omap - - id: ENSG00000145284 + - id: "ENSG00000145284" - !!omap - - id: ENSG00000145293 + - id: "ENSG00000145293" - !!omap - - id: ENSG00000145321 + - id: "ENSG00000145321" - !!omap - - id: ENSG00000145331 + - id: "ENSG00000145331" - !!omap - - id: ENSG00000145337 + - id: "ENSG00000145337" - !!omap - - id: ENSG00000145349 + - id: "ENSG00000145349" - !!omap - - id: ENSG00000145384 + - id: "ENSG00000145384" - !!omap - - id: ENSG00000145388 + - id: "ENSG00000145388" - !!omap - - id: ENSG00000145391 + - id: "ENSG00000145391" - !!omap - - id: ENSG00000145416 + - id: "ENSG00000145416" - !!omap - - id: ENSG00000145439 + - id: "ENSG00000145439" - !!omap - - id: ENSG00000145476 + - id: "ENSG00000145476" - !!omap - - id: ENSG00000145494 + - id: "ENSG00000145494" - !!omap - - id: ENSG00000145495 + - id: "ENSG00000145495" - !!omap - - id: ENSG00000145545 + - id: "ENSG00000145545" - !!omap - - id: ENSG00000145626 + - id: "ENSG00000145626" - !!omap - - id: ENSG00000145632 + - id: "ENSG00000145632" - !!omap - - id: ENSG00000145675 + - id: "ENSG00000145675" - !!omap - - id: ENSG00000145692 + - id: "ENSG00000145692" - !!omap - - id: ENSG00000145725 + - id: "ENSG00000145725" - !!omap - - id: ENSG00000145730 + - id: "ENSG00000145730" - !!omap - - id: ENSG00000145949 + - id: "ENSG00000145949" - !!omap - - id: ENSG00000146039 + - id: "ENSG00000146039" - !!omap - - id: ENSG00000146066 + - id: "ENSG00000146066" - !!omap - - id: ENSG00000146070 + - id: "ENSG00000146070" - !!omap - - id: ENSG00000146072 + - id: "ENSG00000146072" - !!omap - - id: ENSG00000146085 + - id: "ENSG00000146085" - !!omap - - id: ENSG00000146151 + - id: "ENSG00000146151" - !!omap - - id: ENSG00000146166 + - id: "ENSG00000146166" - !!omap - - id: ENSG00000146233 + - id: "ENSG00000146233" - !!omap - - id: ENSG00000146373 + - id: "ENSG00000146373" - !!omap - - id: ENSG00000146411 + - id: "ENSG00000146411" - !!omap - - id: ENSG00000146414 + - id: "ENSG00000146414" - !!omap - - id: ENSG00000146426 + - id: "ENSG00000146426" - !!omap - - id: ENSG00000146477 + - id: "ENSG00000146477" - !!omap - - id: ENSG00000146587 + - id: "ENSG00000146587" - !!omap - - id: ENSG00000146648 + - id: "ENSG00000146648" - !!omap - - id: ENSG00000146701 + - id: "ENSG00000146701" - !!omap - - id: ENSG00000146733 + - id: "ENSG00000146733" - !!omap - - id: ENSG00000146834 + - id: "ENSG00000146834" - !!omap - - id: ENSG00000146872 + - id: "ENSG00000146872" - !!omap - - id: ENSG00000146904 + - id: "ENSG00000146904" - !!omap - - id: ENSG00000147003 + - id: "ENSG00000147003" - !!omap - - id: ENSG00000147044 + - id: "ENSG00000147044" - !!omap - - id: ENSG00000147100 + - id: "ENSG00000147100" - !!omap - - id: ENSG00000147119 + - id: "ENSG00000147119" - !!omap - - id: ENSG00000147123 + - id: "ENSG00000147123" - !!omap - - id: ENSG00000147133 + - id: "ENSG00000147133" - !!omap - - id: ENSG00000147155 + - id: "ENSG00000147155" - !!omap - - id: ENSG00000147160 + - id: "ENSG00000147160" - !!omap - - id: ENSG00000147162 + - id: "ENSG00000147162" - !!omap - - id: ENSG00000147224 + - id: "ENSG00000147224" - !!omap - - id: ENSG00000147383 + - id: "ENSG00000147383" - !!omap - - id: ENSG00000147408 + - id: "ENSG00000147408" - !!omap - - id: ENSG00000147416 + - id: "ENSG00000147416" - !!omap - - id: ENSG00000147454 + - id: "ENSG00000147454" - !!omap - - id: ENSG00000147465 + - id: "ENSG00000147465" - !!omap - - id: ENSG00000147471 + - id: "ENSG00000147471" - !!omap - - id: ENSG00000147485 + - id: "ENSG00000147485" - !!omap - - id: ENSG00000147535 + - id: "ENSG00000147535" - !!omap - - id: ENSG00000147548 + - id: "ENSG00000147548" - !!omap - - id: ENSG00000147576 + - id: "ENSG00000147576" - !!omap - - id: ENSG00000147606 + - id: "ENSG00000147606" - !!omap - - id: ENSG00000147613 + - id: "ENSG00000147613" - !!omap - - id: ENSG00000147614 + - id: "ENSG00000147614" - !!omap - - id: ENSG00000147647 + - id: "ENSG00000147647" - !!omap - - id: ENSG00000147669 + - id: "ENSG00000147669" - !!omap - - id: ENSG00000147684 + - id: "ENSG00000147684" - !!omap - - id: ENSG00000147804 + - id: "ENSG00000147804" - !!omap - - id: ENSG00000147813 + - id: "ENSG00000147813" - !!omap - - id: ENSG00000147853 + - id: "ENSG00000147853" - !!omap - - id: ENSG00000147854 + - id: "ENSG00000147854" - !!omap - - id: ENSG00000147872 + - id: "ENSG00000147872" - !!omap - - id: ENSG00000148053 + - id: "ENSG00000148053" - !!omap - - id: ENSG00000148090 + - id: "ENSG00000148090" - !!omap - - id: ENSG00000148154 + - id: "ENSG00000148154" - !!omap - - id: ENSG00000148218 + - id: "ENSG00000148218" - !!omap - - id: ENSG00000148229 + - id: "ENSG00000148229" - !!omap - - id: ENSG00000148288 + - id: "ENSG00000148288" - !!omap - - id: ENSG00000148334 + - id: "ENSG00000148334" - !!omap - - id: ENSG00000148344 + - id: "ENSG00000148344" - !!omap - - id: ENSG00000148356 + - id: "ENSG00000148356" - !!omap - - id: ENSG00000148377 + - id: "ENSG00000148377" - !!omap - - id: ENSG00000148384 + - id: "ENSG00000148384" - !!omap - - id: ENSG00000148459 + - id: "ENSG00000148459" - !!omap - - id: ENSG00000148606 + - id: "ENSG00000148606" - !!omap - - id: ENSG00000148634 + - id: "ENSG00000148634" - !!omap - - id: ENSG00000148660 + - id: "ENSG00000148660" - !!omap - - id: ENSG00000148672 + - id: "ENSG00000148672" - !!omap - - id: ENSG00000148677 + - id: "ENSG00000148677" - !!omap - - id: ENSG00000148795 + - id: "ENSG00000148795" - !!omap - - id: ENSG00000148832 + - id: "ENSG00000148832" - !!omap - - id: ENSG00000148834 + - id: "ENSG00000148834" - !!omap - - id: ENSG00000148942 + - id: "ENSG00000148942" - !!omap - - id: ENSG00000149016 + - id: "ENSG00000149016" - !!omap - - id: ENSG00000149084 + - id: "ENSG00000149084" - !!omap - - id: ENSG00000149089 + - id: "ENSG00000149089" - !!omap - - id: ENSG00000149091 + - id: "ENSG00000149091" - !!omap - - id: ENSG00000149124 + - id: "ENSG00000149124" - !!omap - - id: ENSG00000149150 + - id: "ENSG00000149150" - !!omap - - id: ENSG00000149177 + - id: "ENSG00000149177" - !!omap - - id: ENSG00000149269 + - id: "ENSG00000149269" - !!omap - - id: ENSG00000149311 + - id: "ENSG00000149311" - !!omap - - id: ENSG00000149313 + - id: "ENSG00000149313" - !!omap - - id: ENSG00000149380 + - id: "ENSG00000149380" - !!omap - - id: ENSG00000149435 + - id: "ENSG00000149435" - !!omap - - id: ENSG00000149452 + - id: "ENSG00000149452" - !!omap - - id: ENSG00000149476 + - id: "ENSG00000149476" - !!omap - - id: ENSG00000149485 + - id: "ENSG00000149485" - !!omap - - id: ENSG00000149527 + - id: "ENSG00000149527" - !!omap - - id: ENSG00000149541 + - id: "ENSG00000149541" - !!omap - - id: ENSG00000149554 + - id: "ENSG00000149554" - !!omap - - id: ENSG00000149599 + - id: "ENSG00000149599" - !!omap - - id: ENSG00000149742 + - id: "ENSG00000149742" - !!omap - - id: ENSG00000149782 + - id: "ENSG00000149782" - !!omap - - id: ENSG00000149809 + - id: "ENSG00000149809" - !!omap - - id: ENSG00000149923 + - id: "ENSG00000149923" - !!omap - - id: ENSG00000149925 + - id: "ENSG00000149925" - !!omap - - id: ENSG00000149929 + - id: "ENSG00000149929" - !!omap - - id: ENSG00000149930 + - id: "ENSG00000149930" - !!omap - - id: ENSG00000150456 + - id: "ENSG00000150456" - !!omap - - id: ENSG00000150457 + - id: "ENSG00000150457" - !!omap - - id: ENSG00000150540 + - id: "ENSG00000150540" - !!omap - - id: ENSG00000150656 + - id: "ENSG00000150656" - !!omap - - id: ENSG00000150712 + - id: "ENSG00000150712" - !!omap - - id: ENSG00000150768 + - id: "ENSG00000150768" - !!omap - - id: ENSG00000150787 + - id: "ENSG00000150787" - !!omap - - id: ENSG00000150867 + - id: "ENSG00000150867" - !!omap - - id: ENSG00000151005 + - id: "ENSG00000151005" - !!omap - - id: ENSG00000151012 + - id: "ENSG00000151012" - !!omap - - id: ENSG00000151092 + - id: "ENSG00000151092" - !!omap - - id: ENSG00000151093 + - id: "ENSG00000151093" - !!omap - - id: ENSG00000151116 + - id: "ENSG00000151116" - !!omap - - id: ENSG00000151148 + - id: "ENSG00000151148" - !!omap - - id: ENSG00000151151 + - id: "ENSG00000151151" - !!omap - - id: ENSG00000151224 + - id: "ENSG00000151224" - !!omap - - id: ENSG00000151229 + - id: "ENSG00000151229" - !!omap - - id: ENSG00000151292 + - id: "ENSG00000151292" - !!omap - - id: ENSG00000151348 + - id: "ENSG00000151348" - !!omap - - id: ENSG00000151360 + - id: "ENSG00000151360" - !!omap - - id: ENSG00000151366 + - id: "ENSG00000151366" - !!omap - - id: ENSG00000151376 + - id: "ENSG00000151376" - !!omap - - id: ENSG00000151414 + - id: "ENSG00000151414" - !!omap - - id: ENSG00000151418 + - id: "ENSG00000151418" - !!omap - - id: ENSG00000151422 + - id: "ENSG00000151422" - !!omap - - id: ENSG00000151490 + - id: "ENSG00000151490" - !!omap - - id: ENSG00000151498 + - id: "ENSG00000151498" - !!omap - - id: ENSG00000151552 + - id: "ENSG00000151552" - !!omap - - id: ENSG00000151576 + - id: "ENSG00000151576" - !!omap - - id: ENSG00000151611 + - id: "ENSG00000151611" - !!omap - - id: ENSG00000151632 + - id: "ENSG00000151632" - !!omap - - id: ENSG00000151665 + - id: "ENSG00000151665" - !!omap - - id: ENSG00000151689 + - id: "ENSG00000151689" - !!omap - - id: ENSG00000151692 + - id: "ENSG00000151692" - !!omap - - id: ENSG00000151726 + - id: "ENSG00000151726" - !!omap - - id: ENSG00000151729 + - id: "ENSG00000151729" - !!omap - - id: ENSG00000151790 + - id: "ENSG00000151790" - !!omap - - id: ENSG00000151883 + - id: "ENSG00000151883" - !!omap - - id: ENSG00000152104 + - id: "ENSG00000152104" - !!omap - - id: ENSG00000152127 + - id: "ENSG00000152127" - !!omap - - id: ENSG00000152234 + - id: "ENSG00000152234" - !!omap - - id: ENSG00000152254 + - id: "ENSG00000152254" - !!omap - - id: ENSG00000152256 + - id: "ENSG00000152256" - !!omap - - id: ENSG00000152270 + - id: "ENSG00000152270" - !!omap - - id: ENSG00000152332 + - id: "ENSG00000152332" - !!omap - - id: ENSG00000152402 + - id: "ENSG00000152402" - !!omap - - id: ENSG00000152455 + - id: "ENSG00000152455" - !!omap - - id: ENSG00000152463 + - id: "ENSG00000152463" - !!omap - - id: ENSG00000152465 + - id: "ENSG00000152465" - !!omap - - id: ENSG00000152484 + - id: "ENSG00000152484" - !!omap - - id: ENSG00000152495 + - id: "ENSG00000152495" - !!omap - - id: ENSG00000152556 + - id: "ENSG00000152556" - !!omap - - id: ENSG00000152620 + - id: "ENSG00000152620" - !!omap - - id: ENSG00000152642 + - id: "ENSG00000152642" - !!omap - - id: ENSG00000152683 + - id: "ENSG00000152683" - !!omap - - id: ENSG00000152779 + - id: "ENSG00000152779" - !!omap - - id: ENSG00000152782 + - id: "ENSG00000152782" - !!omap - - id: ENSG00000152894 + - id: "ENSG00000152894" - !!omap - - id: ENSG00000152904 + - id: "ENSG00000152904" - !!omap - - id: ENSG00000152952 + - id: "ENSG00000152952" - !!omap - - id: ENSG00000152953 + - id: "ENSG00000152953" - !!omap - - id: ENSG00000153015 + - id: "ENSG00000153015" - !!omap - - id: ENSG00000153086 + - id: "ENSG00000153086" - !!omap - - id: ENSG00000153201 + - id: "ENSG00000153201" - !!omap - - id: ENSG00000153207 + - id: "ENSG00000153207" - !!omap - - id: ENSG00000153208 + - id: "ENSG00000153208" - !!omap - - id: ENSG00000153233 + - id: "ENSG00000153233" - !!omap - - id: ENSG00000153291 + - id: "ENSG00000153291" - !!omap - - id: ENSG00000153395 + - id: "ENSG00000153395" - !!omap - - id: ENSG00000153574 + - id: "ENSG00000153574" - !!omap - - id: ENSG00000153707 + - id: "ENSG00000153707" - !!omap - - id: ENSG00000153786 + - id: "ENSG00000153786" - !!omap - - id: ENSG00000153827 + - id: "ENSG00000153827" - !!omap - - id: ENSG00000153904 + - id: "ENSG00000153904" - !!omap - - id: ENSG00000153933 + - id: "ENSG00000153933" - !!omap - - id: ENSG00000153936 + - id: "ENSG00000153936" - !!omap - - id: ENSG00000153976 + - id: "ENSG00000153976" - !!omap - - id: ENSG00000154025 + - id: "ENSG00000154025" - !!omap - - id: ENSG00000154027 + - id: "ENSG00000154027" - !!omap - - id: ENSG00000154080 + - id: "ENSG00000154080" - !!omap - - id: ENSG00000154227 + - id: "ENSG00000154227" - !!omap - - id: ENSG00000154229 + - id: "ENSG00000154229" - !!omap - - id: ENSG00000154237 + - id: "ENSG00000154237" - !!omap - - id: ENSG00000154252 + - id: "ENSG00000154252" - !!omap - - id: ENSG00000154269 + - id: "ENSG00000154269" - !!omap - - id: ENSG00000154305 + - id: "ENSG00000154305" - !!omap - - id: ENSG00000154310 + - id: "ENSG00000154310" - !!omap - - id: ENSG00000154330 + - id: "ENSG00000154330" - !!omap - - id: ENSG00000154370 + - id: "ENSG00000154370" - !!omap - - id: ENSG00000154415 + - id: "ENSG00000154415" - !!omap - - id: ENSG00000154447 + - id: "ENSG00000154447" - !!omap - - id: ENSG00000154518 + - id: "ENSG00000154518" - !!omap - - id: ENSG00000154678 + - id: "ENSG00000154678" - !!omap - - id: ENSG00000154723 + - id: "ENSG00000154723" - !!omap - - id: ENSG00000154822 + - id: "ENSG00000154822" - !!omap - - id: ENSG00000154914 + - id: "ENSG00000154914" - !!omap - - id: ENSG00000154928 + - id: "ENSG00000154928" - !!omap - - id: ENSG00000154930 + - id: "ENSG00000154930" - !!omap - - id: ENSG00000155016 + - id: "ENSG00000155016" - !!omap - - id: ENSG00000155085 + - id: "ENSG00000155085" - !!omap - - id: ENSG00000155093 + - id: "ENSG00000155093" - !!omap - - id: ENSG00000155097 + - id: "ENSG00000155097" - !!omap - - id: ENSG00000155099 + - id: "ENSG00000155099" - !!omap - - id: ENSG00000155111 + - id: "ENSG00000155111" - !!omap - - id: ENSG00000155189 + - id: "ENSG00000155189" - !!omap - - id: ENSG00000155252 + - id: "ENSG00000155252" - !!omap - - id: ENSG00000155287 + - id: "ENSG00000155287" - !!omap - - id: ENSG00000155313 + - id: "ENSG00000155313" - !!omap - - id: ENSG00000155368 + - id: "ENSG00000155368" - !!omap - - id: ENSG00000155380 + - id: "ENSG00000155380" - !!omap - - id: ENSG00000155465 + - id: "ENSG00000155465" - !!omap - - id: ENSG00000155561 + - id: "ENSG00000155561" - !!omap - - id: ENSG00000155657 + - id: "ENSG00000155657" - !!omap - - id: ENSG00000155660 + - id: "ENSG00000155660" - !!omap - - id: ENSG00000155827 + - id: "ENSG00000155827" - !!omap - - id: ENSG00000155850 + - id: "ENSG00000155850" - !!omap - - id: ENSG00000155886 + - id: "ENSG00000155886" - !!omap - - id: ENSG00000155893 + - id: "ENSG00000155893" - !!omap - - id: ENSG00000155897 + - id: "ENSG00000155897" - !!omap - - id: ENSG00000156006 + - id: "ENSG00000156006" - !!omap - - id: ENSG00000156096 + - id: "ENSG00000156096" - !!omap - - id: ENSG00000156110 + - id: "ENSG00000156110" - !!omap - - id: ENSG00000156136 + - id: "ENSG00000156136" - !!omap - - id: ENSG00000156194 + - id: "ENSG00000156194" - !!omap - - id: ENSG00000156219 + - id: "ENSG00000156219" - !!omap - - id: ENSG00000156222 + - id: "ENSG00000156222" - !!omap - - id: ENSG00000156239 + - id: "ENSG00000156239" - !!omap - - id: ENSG00000156256 + - id: "ENSG00000156256" - !!omap - - id: ENSG00000156269 + - id: "ENSG00000156269" - !!omap - - id: ENSG00000156345 + - id: "ENSG00000156345" - !!omap - - id: ENSG00000156411 + - id: "ENSG00000156411" - !!omap - - id: ENSG00000156413 + - id: "ENSG00000156413" - !!omap - - id: ENSG00000156463 + - id: "ENSG00000156463" - !!omap - - id: ENSG00000156467 + - id: "ENSG00000156467" - !!omap - - id: ENSG00000156471 + - id: "ENSG00000156471" - !!omap - - id: ENSG00000156475 + - id: "ENSG00000156475" - !!omap - - id: ENSG00000156508 + - id: "ENSG00000156508" - !!omap - - id: ENSG00000156510 + - id: "ENSG00000156510" - !!omap - - id: ENSG00000156515 + - id: "ENSG00000156515" - !!omap - - id: ENSG00000156587 + - id: "ENSG00000156587" - !!omap - - id: ENSG00000156599 + - id: "ENSG00000156599" - !!omap - - id: ENSG00000156650 + - id: "ENSG00000156650" - !!omap - - id: ENSG00000156689 + - id: "ENSG00000156689" - !!omap - - id: ENSG00000156711 + - id: "ENSG00000156711" - !!omap - - id: ENSG00000156795 + - id: "ENSG00000156795" - !!omap - - id: ENSG00000156873 + - id: "ENSG00000156873" - !!omap - - id: ENSG00000156885 + - id: "ENSG00000156885" - !!omap - - id: ENSG00000156958 + - id: "ENSG00000156958" - !!omap - - id: ENSG00000156966 + - id: "ENSG00000156966" - !!omap - - id: ENSG00000156970 + - id: "ENSG00000156970" - !!omap - - id: ENSG00000156973 + - id: "ENSG00000156973" - !!omap - - id: ENSG00000156983 + - id: "ENSG00000156983" - !!omap - - id: ENSG00000157020 + - id: "ENSG00000157020" - !!omap - - id: ENSG00000157045 + - id: "ENSG00000157045" - !!omap - - id: ENSG00000157064 + - id: "ENSG00000157064" - !!omap - - id: ENSG00000157087 + - id: "ENSG00000157087" - !!omap - - id: ENSG00000157103 + - id: "ENSG00000157103" - !!omap - - id: ENSG00000157106 + - id: "ENSG00000157106" - !!omap - - id: ENSG00000157184 + - id: "ENSG00000157184" - !!omap - - id: ENSG00000157326 + - id: "ENSG00000157326" - !!omap - - id: ENSG00000157349 + - id: "ENSG00000157349" - !!omap - - id: ENSG00000157350 + - id: "ENSG00000157350" - !!omap - - id: ENSG00000157353 + - id: "ENSG00000157353" - !!omap - - id: ENSG00000157399 + - id: "ENSG00000157399" - !!omap - - id: ENSG00000157404 + - id: "ENSG00000157404" - !!omap - - id: ENSG00000157426 + - id: "ENSG00000157426" - !!omap - - id: ENSG00000157540 + - id: "ENSG00000157540" - !!omap - - id: ENSG00000157593 + - id: "ENSG00000157593" - !!omap - - id: ENSG00000157680 + - id: "ENSG00000157680" - !!omap - - id: ENSG00000157764 + - id: "ENSG00000157764" - !!omap - - id: ENSG00000157765 + - id: "ENSG00000157765" - !!omap - - id: ENSG00000157881 + - id: "ENSG00000157881" - !!omap - - id: ENSG00000158006 + - id: "ENSG00000158006" - !!omap - - id: ENSG00000158008 + - id: "ENSG00000158008" - !!omap - - id: ENSG00000158019 + - id: "ENSG00000158019" - !!omap - - id: ENSG00000158022 + - id: "ENSG00000158022" - !!omap - - id: ENSG00000158050 + - id: "ENSG00000158050" - !!omap - - id: ENSG00000158079 + - id: "ENSG00000158079" - !!omap - - id: ENSG00000158089 + - id: "ENSG00000158089" - !!omap - - id: ENSG00000158104 + - id: "ENSG00000158104" - !!omap - - id: ENSG00000158125 + - id: "ENSG00000158125" - !!omap - - id: ENSG00000158161 + - id: "ENSG00000158161" - !!omap - - id: ENSG00000158296 + - id: "ENSG00000158296" - !!omap - - id: ENSG00000158402 + - id: "ENSG00000158402" - !!omap - - id: ENSG00000158467 + - id: "ENSG00000158467" - !!omap - - id: ENSG00000158470 + - id: "ENSG00000158470" - !!omap - - id: ENSG00000158516 + - id: "ENSG00000158516" - !!omap - - id: ENSG00000158525 + - id: "ENSG00000158525" - !!omap - - id: ENSG00000158571 + - id: "ENSG00000158571" - !!omap - - id: ENSG00000158578 + - id: "ENSG00000158578" - !!omap - - id: ENSG00000158623 + - id: "ENSG00000158623" - !!omap - - id: ENSG00000158669 + - id: "ENSG00000158669" - !!omap - - id: ENSG00000158716 + - id: "ENSG00000158716" - !!omap - - id: ENSG00000158786 + - id: "ENSG00000158786" - !!omap - - id: ENSG00000158825 + - id: "ENSG00000158825" - !!omap - - id: ENSG00000158828 + - id: "ENSG00000158828" - !!omap - - id: ENSG00000158850 + - id: "ENSG00000158850" - !!omap - - id: ENSG00000158864 + - id: "ENSG00000158864" - !!omap - - id: ENSG00000158865 + - id: "ENSG00000158865" - !!omap - - id: ENSG00000158874 + - id: "ENSG00000158874" - !!omap - - id: ENSG00000159063 + - id: "ENSG00000159063" - !!omap - - id: ENSG00000159082 + - id: "ENSG00000159082" - !!omap - - id: ENSG00000159131 + - id: "ENSG00000159131" - !!omap - - id: ENSG00000159199 + - id: "ENSG00000159199" - !!omap - - id: ENSG00000159202 + - id: "ENSG00000159202" - !!omap - - id: ENSG00000159228 + - id: "ENSG00000159228" - !!omap - - id: ENSG00000159231 + - id: "ENSG00000159231" - !!omap - - id: ENSG00000159267 + - id: "ENSG00000159267" - !!omap - - id: ENSG00000159322 + - id: "ENSG00000159322" - !!omap - - id: ENSG00000159337 + - id: "ENSG00000159337" - !!omap - - id: ENSG00000159339 + - id: "ENSG00000159339" - !!omap - - id: ENSG00000159348 + - id: "ENSG00000159348" - !!omap - - id: ENSG00000159398 + - id: "ENSG00000159398" - !!omap - - id: ENSG00000159399 + - id: "ENSG00000159399" - !!omap - - id: ENSG00000159423 + - id: "ENSG00000159423" - !!omap - - id: ENSG00000159433 + - id: "ENSG00000159433" - !!omap - - id: ENSG00000159459 + - id: "ENSG00000159459" - !!omap - - id: ENSG00000159461 + - id: "ENSG00000159461" - !!omap - - id: ENSG00000159495 + - id: "ENSG00000159495" - !!omap - - id: ENSG00000159527 + - id: "ENSG00000159527" - !!omap - - id: ENSG00000159593 + - id: "ENSG00000159593" - !!omap - - id: ENSG00000159640 + - id: "ENSG00000159640" - !!omap - - id: ENSG00000159650 + - id: "ENSG00000159650" - !!omap - - id: ENSG00000159692 + - id: "ENSG00000159692" - !!omap - - id: ENSG00000159714 + - id: "ENSG00000159714" - !!omap - - id: ENSG00000159720 + - id: "ENSG00000159720" - !!omap - - id: ENSG00000159792 + - id: "ENSG00000159792" - !!omap - - id: ENSG00000159899 + - id: "ENSG00000159899" - !!omap - - id: ENSG00000159921 + - id: "ENSG00000159921" - !!omap - - id: ENSG00000160014 + - id: "ENSG00000160014" - !!omap - - id: ENSG00000160075 + - id: "ENSG00000160075" - !!omap - - id: ENSG00000160087 + - id: "ENSG00000160087" - !!omap - - id: ENSG00000160145 + - id: "ENSG00000160145" - !!omap - - id: ENSG00000160179 + - id: "ENSG00000160179" - !!omap - - id: ENSG00000160190 + - id: "ENSG00000160190" - !!omap - - id: ENSG00000160191 + - id: "ENSG00000160191" - !!omap - - id: ENSG00000160194 + - id: "ENSG00000160194" - !!omap - - id: ENSG00000160200 + - id: "ENSG00000160200" - !!omap - - id: ENSG00000160209 + - id: "ENSG00000160209" - !!omap - - id: ENSG00000160211 + - id: "ENSG00000160211" - !!omap - - id: ENSG00000160216 + - id: "ENSG00000160216" - !!omap - - id: ENSG00000160226 + - id: "ENSG00000160226" - !!omap - - id: ENSG00000160282 + - id: "ENSG00000160282" - !!omap - - id: ENSG00000160285 + - id: "ENSG00000160285" - !!omap - - id: ENSG00000160310 + - id: "ENSG00000160310" - !!omap - - id: ENSG00000160326 + - id: "ENSG00000160326" - !!omap - - id: ENSG00000160408 + - id: "ENSG00000160408" - !!omap - - id: ENSG00000160439 + - id: "ENSG00000160439" - !!omap - - id: ENSG00000160446 + - id: "ENSG00000160446" - !!omap - - id: ENSG00000160447 + - id: "ENSG00000160447" - !!omap - - id: ENSG00000160469 + - id: "ENSG00000160469" - !!omap - - id: ENSG00000160471 + - id: "ENSG00000160471" - !!omap - - id: ENSG00000160539 + - id: "ENSG00000160539" - !!omap - - id: ENSG00000160551 + - id: "ENSG00000160551" - !!omap - - id: ENSG00000160584 + - id: "ENSG00000160584" - !!omap - - id: ENSG00000160602 + - id: "ENSG00000160602" - !!omap - - id: ENSG00000160688 + - id: "ENSG00000160688" - !!omap - - id: ENSG00000160714 + - id: "ENSG00000160714" - !!omap - - id: ENSG00000160752 + - id: "ENSG00000160752" - !!omap - - id: ENSG00000160867 + - id: "ENSG00000160867" - !!omap - - id: ENSG00000160868 + - id: "ENSG00000160868" - !!omap - - id: ENSG00000160870 + - id: "ENSG00000160870" - !!omap - - id: ENSG00000160882 + - id: "ENSG00000160882" - !!omap - - id: ENSG00000160883 + - id: "ENSG00000160883" - !!omap - - id: ENSG00000161013 + - id: "ENSG00000161013" - !!omap - - id: ENSG00000161031 + - id: "ENSG00000161031" - !!omap - - id: ENSG00000161133 + - id: "ENSG00000161133" - !!omap - - id: ENSG00000161217 + - id: "ENSG00000161217" - !!omap - - id: ENSG00000161267 + - id: "ENSG00000161267" - !!omap - - id: ENSG00000161281 + - id: "ENSG00000161281" - !!omap - - id: ENSG00000161513 + - id: "ENSG00000161513" - !!omap - - id: ENSG00000161533 + - id: "ENSG00000161533" - !!omap - - id: ENSG00000161653 + - id: "ENSG00000161653" - !!omap - - id: ENSG00000161714 + - id: "ENSG00000161714" - !!omap - - id: ENSG00000161798 + - id: "ENSG00000161798" - !!omap - - id: ENSG00000161860 + - id: "ENSG00000161860" - !!omap - - id: ENSG00000161896 + - id: "ENSG00000161896" - !!omap - - id: ENSG00000161905 + - id: "ENSG00000161905" - !!omap - - id: ENSG00000161980 + - id: "ENSG00000161980" - !!omap - - id: ENSG00000162040 + - id: "ENSG00000162040" - !!omap - - id: ENSG00000162066 + - id: "ENSG00000162066" - !!omap - - id: ENSG00000162104 + - id: "ENSG00000162104" - !!omap - - id: ENSG00000162139 + - id: "ENSG00000162139" - !!omap - - id: ENSG00000162174 + - id: "ENSG00000162174" - !!omap - - id: ENSG00000162298 + - id: "ENSG00000162298" - !!omap - - id: ENSG00000162302 + - id: "ENSG00000162302" - !!omap - - id: ENSG00000162365 + - id: "ENSG00000162365" - !!omap - - id: ENSG00000162368 + - id: "ENSG00000162368" - !!omap - - id: ENSG00000162383 + - id: "ENSG00000162383" - !!omap - - id: ENSG00000162390 + - id: "ENSG00000162390" - !!omap - - id: ENSG00000162402 + - id: "ENSG00000162402" - !!omap - - id: ENSG00000162407 + - id: "ENSG00000162407" - !!omap - - id: ENSG00000162408 + - id: "ENSG00000162408" - !!omap - - id: ENSG00000162409 + - id: "ENSG00000162409" - !!omap - - id: ENSG00000162433 + - id: "ENSG00000162433" - !!omap - - id: ENSG00000162434 + - id: "ENSG00000162434" - !!omap - - id: ENSG00000162482 + - id: "ENSG00000162482" - !!omap - - id: ENSG00000162496 + - id: "ENSG00000162496" - !!omap - - id: ENSG00000162526 + - id: "ENSG00000162526" - !!omap - - id: ENSG00000162551 + - id: "ENSG00000162551" - !!omap - - id: ENSG00000162571 + - id: "ENSG00000162571" - !!omap - - id: ENSG00000162607 + - id: "ENSG00000162607" - !!omap - - id: ENSG00000162623 + - id: "ENSG00000162623" - !!omap - - id: ENSG00000162630 + - id: "ENSG00000162630" - !!omap - - id: ENSG00000162688 + - id: "ENSG00000162688" - !!omap - - id: ENSG00000162694 + - id: "ENSG00000162694" - !!omap - - id: ENSG00000162695 + - id: "ENSG00000162695" - !!omap - - id: ENSG00000162733 + - id: "ENSG00000162733" - !!omap - - id: ENSG00000162813 + - id: "ENSG00000162813" - !!omap - - id: ENSG00000162836 + - id: "ENSG00000162836" - !!omap - - id: ENSG00000162851 + - id: "ENSG00000162851" - !!omap - - id: ENSG00000162882 + - id: "ENSG00000162882" - !!omap - - id: ENSG00000162885 + - id: "ENSG00000162885" - !!omap - - id: ENSG00000162889 + - id: "ENSG00000162889" - !!omap - - id: ENSG00000162999 + - id: "ENSG00000162999" - !!omap - - id: ENSG00000163002 + - id: "ENSG00000163002" - !!omap - - id: ENSG00000163012 + - id: "ENSG00000163012" - !!omap - - id: ENSG00000163082 + - id: "ENSG00000163082" - !!omap - - id: ENSG00000163106 + - id: "ENSG00000163106" - !!omap - - id: ENSG00000163114 + - id: "ENSG00000163114" - !!omap - - id: ENSG00000163131 + - id: "ENSG00000163131" - !!omap - - id: ENSG00000163162 + - id: "ENSG00000163162" - !!omap - - id: ENSG00000163218 + - id: "ENSG00000163218" - !!omap - - id: ENSG00000163281 + - id: "ENSG00000163281" - !!omap - - id: ENSG00000163283 + - id: "ENSG00000163283" - !!omap - - id: ENSG00000163286 + - id: "ENSG00000163286" - !!omap - - id: ENSG00000163295 + - id: "ENSG00000163295" - !!omap - - id: ENSG00000163344 + - id: "ENSG00000163344" - !!omap - - id: ENSG00000163349 + - id: "ENSG00000163349" - !!omap - - id: ENSG00000163352 + - id: "ENSG00000163352" - !!omap - - id: ENSG00000163389 + - id: "ENSG00000163389" - !!omap - - id: ENSG00000163393 + - id: "ENSG00000163393" - !!omap - - id: ENSG00000163399 + - id: "ENSG00000163399" - !!omap - - id: ENSG00000163406 + - id: "ENSG00000163406" - !!omap - - id: ENSG00000163481 + - id: "ENSG00000163481" - !!omap - - id: ENSG00000163482 + - id: "ENSG00000163482" - !!omap - - id: ENSG00000163513 + - id: "ENSG00000163513" - !!omap - - id: ENSG00000163521 + - id: "ENSG00000163521" - !!omap - - id: ENSG00000163527 + - id: "ENSG00000163527" - !!omap - - id: ENSG00000163541 + - id: "ENSG00000163541" - !!omap - - id: ENSG00000163545 + - id: "ENSG00000163545" - !!omap - - id: ENSG00000163558 + - id: "ENSG00000163558" - !!omap - - id: ENSG00000163581 + - id: "ENSG00000163581" - !!omap - - id: ENSG00000163586 + - id: "ENSG00000163586" - !!omap - - id: ENSG00000163590 + - id: "ENSG00000163590" - !!omap - - id: ENSG00000163624 + - id: "ENSG00000163624" - !!omap - - id: ENSG00000163629 + - id: "ENSG00000163629" - !!omap - - id: ENSG00000163631 + - id: "ENSG00000163631" - !!omap - - id: ENSG00000163644 + - id: "ENSG00000163644" - !!omap - - id: ENSG00000163655 + - id: "ENSG00000163655" - !!omap - - id: ENSG00000163659 + - id: "ENSG00000163659" - !!omap - - id: ENSG00000163684 + - id: "ENSG00000163684" - !!omap - - id: ENSG00000163686 + - id: "ENSG00000163686" - !!omap - - id: ENSG00000163719 + - id: "ENSG00000163719" - !!omap - - id: ENSG00000163738 + - id: "ENSG00000163738" - !!omap - - id: ENSG00000163743 + - id: "ENSG00000163743" - !!omap - - id: ENSG00000163751 + - id: "ENSG00000163751" - !!omap - - id: ENSG00000163754 + - id: "ENSG00000163754" - !!omap - - id: ENSG00000163755 + - id: "ENSG00000163755" - !!omap - - id: ENSG00000163785 + - id: "ENSG00000163785" - !!omap - - id: ENSG00000163788 + - id: "ENSG00000163788" - !!omap - - id: ENSG00000163803 + - id: "ENSG00000163803" - !!omap - - id: ENSG00000163810 + - id: "ENSG00000163810" - !!omap - - id: ENSG00000163812 + - id: "ENSG00000163812" - !!omap - - id: ENSG00000163817 + - id: "ENSG00000163817" - !!omap - - id: ENSG00000163864 + - id: "ENSG00000163864" - !!omap - - id: ENSG00000163882 + - id: "ENSG00000163882" - !!omap - - id: ENSG00000163902 + - id: "ENSG00000163902" - !!omap - - id: ENSG00000163931 + - id: "ENSG00000163931" - !!omap - - id: ENSG00000163932 + - id: "ENSG00000163932" - !!omap - - id: ENSG00000163958 + - id: "ENSG00000163958" - !!omap - - id: ENSG00000163959 + - id: "ENSG00000163959" - !!omap - - id: ENSG00000163964 + - id: "ENSG00000163964" - !!omap - - id: ENSG00000164023 + - id: "ENSG00000164023" - !!omap - - id: ENSG00000164039 + - id: "ENSG00000164039" - !!omap - - id: ENSG00000164045 + - id: "ENSG00000164045" - !!omap - - id: ENSG00000164053 + - id: "ENSG00000164053" - !!omap - - id: ENSG00000164068 + - id: "ENSG00000164068" - !!omap - - id: ENSG00000164078 + - id: "ENSG00000164078" - !!omap - - id: ENSG00000164086 + - id: "ENSG00000164086" - !!omap - - id: ENSG00000164088 + - id: "ENSG00000164088" - !!omap - - id: ENSG00000164089 + - id: "ENSG00000164089" - !!omap - - id: ENSG00000164100 + - id: "ENSG00000164100" - !!omap - - id: ENSG00000164116 + - id: "ENSG00000164116" - !!omap - - id: ENSG00000164120 + - id: "ENSG00000164120" - !!omap - - id: ENSG00000164134 + - id: "ENSG00000164134" - !!omap - - id: ENSG00000164169 + - id: "ENSG00000164169" - !!omap - - id: ENSG00000164172 + - id: "ENSG00000164172" - !!omap - - id: ENSG00000164181 + - id: "ENSG00000164181" - !!omap - - id: ENSG00000164197 + - id: "ENSG00000164197" - !!omap - - id: ENSG00000164211 + - id: "ENSG00000164211" - !!omap - - id: ENSG00000164258 + - id: "ENSG00000164258" - !!omap - - id: ENSG00000164294 + - id: "ENSG00000164294" - !!omap - - id: ENSG00000164303 + - id: "ENSG00000164303" - !!omap - - id: ENSG00000164329 + - id: "ENSG00000164329" - !!omap - - id: ENSG00000164332 + - id: "ENSG00000164332" - !!omap - - id: ENSG00000164347 + - id: "ENSG00000164347" - !!omap - - id: ENSG00000164363 + - id: "ENSG00000164363" - !!omap - - id: ENSG00000164398 + - id: "ENSG00000164398" - !!omap - - id: ENSG00000164405 + - id: "ENSG00000164405" - !!omap - - id: ENSG00000164414 + - id: "ENSG00000164414" - !!omap - - id: ENSG00000164434 + - id: "ENSG00000164434" - !!omap - - id: ENSG00000164466 + - id: "ENSG00000164466" - !!omap - - id: ENSG00000164494 + - id: "ENSG00000164494" - !!omap - - id: ENSG00000164535 + - id: "ENSG00000164535" - !!omap - - id: ENSG00000164543 + - id: "ENSG00000164543" - !!omap - - id: ENSG00000164574 + - id: "ENSG00000164574" - !!omap - - id: ENSG00000164638 + - id: "ENSG00000164638" - !!omap - - id: ENSG00000164663 + - id: "ENSG00000164663" - !!omap - - id: ENSG00000164687 + - id: "ENSG00000164687" - !!omap - - id: ENSG00000164707 + - id: "ENSG00000164707" - !!omap - - id: ENSG00000164708 + - id: "ENSG00000164708" - !!omap - - id: ENSG00000164715 + - id: "ENSG00000164715" - !!omap - - id: ENSG00000164733 + - id: "ENSG00000164733" - !!omap - - id: ENSG00000164742 + - id: "ENSG00000164742" - !!omap - - id: ENSG00000164776 + - id: "ENSG00000164776" - !!omap - - id: ENSG00000164867 + - id: "ENSG00000164867" - !!omap - - id: ENSG00000164879 + - id: "ENSG00000164879" - !!omap - - id: ENSG00000164885 + - id: "ENSG00000164885" - !!omap - - id: ENSG00000164889 + - id: "ENSG00000164889" - !!omap - - id: ENSG00000164896 + - id: "ENSG00000164896" - !!omap - - id: ENSG00000164904 + - id: "ENSG00000164904" - !!omap - - id: ENSG00000164919 + - id: "ENSG00000164919" - !!omap - - id: ENSG00000164933 + - id: "ENSG00000164933" - !!omap - - id: ENSG00000164951 + - id: "ENSG00000164951" - !!omap - - id: ENSG00000164978 + - id: "ENSG00000164978" - !!omap - - id: ENSG00000165025 + - id: "ENSG00000165025" - !!omap - - id: ENSG00000165029 + - id: "ENSG00000165029" - !!omap - - id: ENSG00000165055 + - id: "ENSG00000165055" - !!omap - - id: ENSG00000165059 + - id: "ENSG00000165059" - !!omap - - id: ENSG00000165060 + - id: "ENSG00000165060" - !!omap - - id: ENSG00000165078 + - id: "ENSG00000165078" - !!omap - - id: ENSG00000165092 + - id: "ENSG00000165092" - !!omap - - id: ENSG00000165102 + - id: "ENSG00000165102" - !!omap - - id: ENSG00000165140 + - id: "ENSG00000165140" - !!omap - - id: ENSG00000165195 + - id: "ENSG00000165195" - !!omap - - id: ENSG00000165238 + - id: "ENSG00000165238" - !!omap - - id: ENSG00000165264 + - id: "ENSG00000165264" - !!omap - - id: ENSG00000165269 + - id: "ENSG00000165269" - !!omap - - id: ENSG00000165272 + - id: "ENSG00000165272" - !!omap - - id: ENSG00000165275 + - id: "ENSG00000165275" - !!omap - - id: ENSG00000165282 + - id: "ENSG00000165282" - !!omap - - id: ENSG00000165304 + - id: "ENSG00000165304" - !!omap - - id: ENSG00000165338 + - id: "ENSG00000165338" - !!omap - - id: ENSG00000165349 + - id: "ENSG00000165349" - !!omap - - id: ENSG00000165406 + - id: "ENSG00000165406" - !!omap - - id: ENSG00000165434 + - id: "ENSG00000165434" - !!omap - - id: ENSG00000165449 + - id: "ENSG00000165449" - !!omap - - id: ENSG00000165457 + - id: "ENSG00000165457" - !!omap - - id: ENSG00000165458 + - id: "ENSG00000165458" - !!omap - - id: ENSG00000165475 + - id: "ENSG00000165475" - !!omap - - id: ENSG00000165526 + - id: "ENSG00000165526" - !!omap - - id: ENSG00000165591 + - id: "ENSG00000165591" - !!omap - - id: ENSG00000165609 + - id: "ENSG00000165609" - !!omap - - id: ENSG00000165629 + - id: "ENSG00000165629" - !!omap - - id: ENSG00000165644 + - id: "ENSG00000165644" - !!omap - - id: ENSG00000165646 + - id: "ENSG00000165646" - !!omap - - id: ENSG00000165671 + - id: "ENSG00000165671" - !!omap - - id: ENSG00000165672 + - id: "ENSG00000165672" - !!omap - - id: ENSG00000165688 + - id: "ENSG00000165688" - !!omap - - id: ENSG00000165695 + - id: "ENSG00000165695" - !!omap - - id: ENSG00000165704 + - id: "ENSG00000165704" - !!omap - - id: ENSG00000165731 + - id: "ENSG00000165731" - !!omap - - id: ENSG00000165752 + - id: "ENSG00000165752" - !!omap - - id: ENSG00000165782 + - id: "ENSG00000165782" - !!omap - - id: ENSG00000165792 + - id: "ENSG00000165792" - !!omap - - id: ENSG00000165794 + - id: "ENSG00000165794" - !!omap - - id: ENSG00000165819 + - id: "ENSG00000165819" - !!omap - - id: ENSG00000165841 + - id: "ENSG00000165841" - !!omap - - id: ENSG00000165970 + - id: "ENSG00000165970" - !!omap - - id: ENSG00000165996 + - id: "ENSG00000165996" - !!omap - - id: ENSG00000166016 + - id: "ENSG00000166016" - !!omap - - id: ENSG00000166035 + - id: "ENSG00000166035" - !!omap - - id: ENSG00000166123 + - id: "ENSG00000166123" - !!omap - - id: ENSG00000166126 + - id: "ENSG00000166126" - !!omap - - id: ENSG00000166135 + - id: "ENSG00000166135" - !!omap - - id: ENSG00000166136 + - id: "ENSG00000166136" - !!omap - - id: ENSG00000166165 + - id: "ENSG00000166165" - !!omap - - id: ENSG00000166169 + - id: "ENSG00000166169" - !!omap - - id: ENSG00000166183 + - id: "ENSG00000166183" - !!omap - - id: ENSG00000166224 + - id: "ENSG00000166224" - !!omap - - id: ENSG00000166228 + - id: "ENSG00000166228" - !!omap - - id: ENSG00000166262 + - id: "ENSG00000166262" - !!omap - - id: ENSG00000166311 + - id: "ENSG00000166311" - !!omap - - id: ENSG00000166333 + - id: "ENSG00000166333" - !!omap - - id: ENSG00000166340 + - id: "ENSG00000166340" - !!omap - - id: ENSG00000166349 + - id: "ENSG00000166349" - !!omap - - id: ENSG00000166391 + - id: "ENSG00000166391" - !!omap - - id: ENSG00000166394 + - id: "ENSG00000166394" - !!omap - - id: ENSG00000166411 + - id: "ENSG00000166411" - !!omap - - id: ENSG00000166428 + - id: "ENSG00000166428" - !!omap - - id: ENSG00000166479 + - id: "ENSG00000166479" - !!omap - - id: ENSG00000166483 + - id: "ENSG00000166483" - !!omap - - id: ENSG00000166484 + - id: "ENSG00000166484" - !!omap - - id: ENSG00000166501 + - id: "ENSG00000166501" - !!omap - - id: ENSG00000166507 + - id: "ENSG00000166507" - !!omap - - id: ENSG00000166548 + - id: "ENSG00000166548" - !!omap - - id: ENSG00000166562 + - id: "ENSG00000166562" - !!omap - - id: ENSG00000166741 + - id: "ENSG00000166741" - !!omap - - id: ENSG00000166743 + - id: "ENSG00000166743" - !!omap - - id: ENSG00000166747 + - id: "ENSG00000166747" - !!omap - - id: ENSG00000166794 + - id: "ENSG00000166794" - !!omap - - id: ENSG00000166796 + - id: "ENSG00000166796" - !!omap - - id: ENSG00000166800 + - id: "ENSG00000166800" - !!omap - - id: ENSG00000166816 + - id: "ENSG00000166816" - !!omap - - id: ENSG00000166819 + - id: "ENSG00000166819" - !!omap - - id: ENSG00000166821 + - id: "ENSG00000166821" - !!omap - - id: ENSG00000166825 + - id: "ENSG00000166825" - !!omap - - id: ENSG00000166840 + - id: "ENSG00000166840" - !!omap - - id: ENSG00000166851 + - id: "ENSG00000166851" - !!omap - - id: ENSG00000166908 + - id: "ENSG00000166908" - !!omap - - id: ENSG00000166948 + - id: "ENSG00000166948" - !!omap - - id: ENSG00000166986 + - id: "ENSG00000166986" - !!omap - - id: ENSG00000167004 + - id: "ENSG00000167004" - !!omap - - id: ENSG00000167011 + - id: "ENSG00000167011" - !!omap - - id: ENSG00000167065 + - id: "ENSG00000167065" - !!omap - - id: ENSG00000167080 + - id: "ENSG00000167080" - !!omap - - id: ENSG00000167103 + - id: "ENSG00000167103" - !!omap - - id: ENSG00000167107 + - id: "ENSG00000167107" - !!omap - - id: ENSG00000167114 + - id: "ENSG00000167114" - !!omap - - id: ENSG00000167123 + - id: "ENSG00000167123" - !!omap - - id: ENSG00000167130 + - id: "ENSG00000167130" - !!omap - - id: ENSG00000167165 + - id: "ENSG00000167165" - !!omap - - id: ENSG00000167186 + - id: "ENSG00000167186" - !!omap - - id: ENSG00000167258 + - id: "ENSG00000167258" - !!omap - - id: ENSG00000167261 + - id: "ENSG00000167261" - !!omap - - id: ENSG00000167280 + - id: "ENSG00000167280" - !!omap - - id: ENSG00000167283 + - id: "ENSG00000167283" - !!omap - - id: ENSG00000167306 + - id: "ENSG00000167306" - !!omap - - id: ENSG00000167311 + - id: "ENSG00000167311" - !!omap - - id: ENSG00000167315 + - id: "ENSG00000167315" - !!omap - - id: ENSG00000167325 + - id: "ENSG00000167325" - !!omap - - id: ENSG00000167363 + - id: "ENSG00000167363" - !!omap - - id: ENSG00000167371 + - id: "ENSG00000167371" - !!omap - - id: ENSG00000167393 + - id: "ENSG00000167393" - !!omap - - id: ENSG00000167397 + - id: "ENSG00000167397" - !!omap - - id: ENSG00000167419 + - id: "ENSG00000167419" - !!omap - - id: ENSG00000167434 + - id: "ENSG00000167434" - !!omap - - id: ENSG00000167468 + - id: "ENSG00000167468" - !!omap - - id: ENSG00000167508 + - id: "ENSG00000167508" - !!omap - - id: ENSG00000167531 + - id: "ENSG00000167531" - !!omap - - id: ENSG00000167548 + - id: "ENSG00000167548" - !!omap - - id: ENSG00000167580 + - id: "ENSG00000167580" - !!omap - - id: ENSG00000167588 + - id: "ENSG00000167588" - !!omap - - id: ENSG00000167600 + - id: "ENSG00000167600" - !!omap - - id: ENSG00000167601 + - id: "ENSG00000167601" - !!omap - - id: ENSG00000167657 + - id: "ENSG00000167657" - !!omap - - id: ENSG00000167658 + - id: "ENSG00000167658" - !!omap - - id: ENSG00000167676 + - id: "ENSG00000167676" - !!omap - - id: ENSG00000167699 + - id: "ENSG00000167699" - !!omap - - id: ENSG00000167701 + - id: "ENSG00000167701" - !!omap - - id: ENSG00000167703 + - id: "ENSG00000167703" - !!omap - - id: ENSG00000167720 + - id: "ENSG00000167720" - !!omap - - id: ENSG00000167733 + - id: "ENSG00000167733" - !!omap - - id: ENSG00000167741 + - id: "ENSG00000167741" - !!omap - - id: ENSG00000167748 + - id: "ENSG00000167748" - !!omap - - id: ENSG00000167751 + - id: "ENSG00000167751" - !!omap - - id: ENSG00000167769 + - id: "ENSG00000167769" - !!omap - - id: ENSG00000167772 + - id: "ENSG00000167772" - !!omap - - id: ENSG00000167778 + - id: "ENSG00000167778" - !!omap - - id: ENSG00000167780 + - id: "ENSG00000167780" - !!omap - - id: ENSG00000167792 + - id: "ENSG00000167792" - !!omap - - id: ENSG00000167815 + - id: "ENSG00000167815" - !!omap - - id: ENSG00000167862 + - id: "ENSG00000167862" - !!omap - - id: ENSG00000167863 + - id: "ENSG00000167863" - !!omap - - id: ENSG00000167889 + - id: "ENSG00000167889" - !!omap - - id: ENSG00000167900 + - id: "ENSG00000167900" - !!omap - - id: ENSG00000167910 + - id: "ENSG00000167910" - !!omap - - id: ENSG00000167969 + - id: "ENSG00000167969" - !!omap - - id: ENSG00000167972 + - id: "ENSG00000167972" - !!omap - - id: ENSG00000167996 + - id: "ENSG00000167996" - !!omap - - id: ENSG00000168000 + - id: "ENSG00000168000" - !!omap - - id: ENSG00000168002 + - id: "ENSG00000168002" - !!omap - - id: ENSG00000168003 + - id: "ENSG00000168003" - !!omap - - id: ENSG00000168032 + - id: "ENSG00000168032" - !!omap - - id: ENSG00000168038 + - id: "ENSG00000168038" - !!omap - - id: ENSG00000168065 + - id: "ENSG00000168065" - !!omap - - id: ENSG00000168067 + - id: "ENSG00000168067" - !!omap - - id: ENSG00000168078 + - id: "ENSG00000168078" - !!omap - - id: ENSG00000168092 + - id: "ENSG00000168092" - !!omap - - id: ENSG00000168137 + - id: "ENSG00000168137" - !!omap - - id: ENSG00000168159 + - id: "ENSG00000168159" - !!omap - - id: ENSG00000168237 + - id: "ENSG00000168237" - !!omap - - id: ENSG00000168282 + - id: "ENSG00000168282" - !!omap - - id: ENSG00000168291 + - id: "ENSG00000168291" - !!omap - - id: ENSG00000168306 + - id: "ENSG00000168306" - !!omap - - id: ENSG00000168350 + - id: "ENSG00000168350" - !!omap - - id: ENSG00000168393 + - id: "ENSG00000168393" - !!omap - - id: ENSG00000168404 + - id: "ENSG00000168404" - !!omap - - id: ENSG00000168411 + - id: "ENSG00000168411" - !!omap - - id: ENSG00000168487 + - id: "ENSG00000168487" - !!omap - - id: ENSG00000168495 + - id: "ENSG00000168495" - !!omap - - id: ENSG00000168522 + - id: "ENSG00000168522" - !!omap - - id: ENSG00000168575 + - id: "ENSG00000168575" - !!omap - - id: ENSG00000168653 + - id: "ENSG00000168653" - !!omap - - id: ENSG00000168671 + - id: "ENSG00000168671" - !!omap - - id: ENSG00000168679 + - id: "ENSG00000168679" - !!omap - - id: ENSG00000168710 + - id: "ENSG00000168710" - !!omap - - id: ENSG00000168748 + - id: "ENSG00000168748" - !!omap - - id: ENSG00000168765 + - id: "ENSG00000168765" - !!omap - - id: ENSG00000168781 + - id: "ENSG00000168781" - !!omap - - id: ENSG00000168806 + - id: "ENSG00000168806" - !!omap - - id: ENSG00000168827 + - id: "ENSG00000168827" - !!omap - - id: ENSG00000168906 + - id: "ENSG00000168906" - !!omap - - id: ENSG00000168907 + - id: "ENSG00000168907" - !!omap - - id: ENSG00000168918 + - id: "ENSG00000168918" - !!omap - - id: ENSG00000168938 + - id: "ENSG00000168938" - !!omap - - id: ENSG00000168970 + - id: "ENSG00000168970" - !!omap - - id: ENSG00000169020 + - id: "ENSG00000169020" - !!omap - - id: ENSG00000169021 + - id: "ENSG00000169021" - !!omap - - id: ENSG00000169032 + - id: "ENSG00000169032" - !!omap - - id: ENSG00000169071 + - id: "ENSG00000169071" - !!omap - - id: ENSG00000169100 + - id: "ENSG00000169100" - !!omap - - id: ENSG00000169105 + - id: "ENSG00000169105" - !!omap - - id: ENSG00000169118 + - id: "ENSG00000169118" - !!omap - - id: ENSG00000169154 + - id: "ENSG00000169154" - !!omap - - id: ENSG00000169169 + - id: "ENSG00000169169" - !!omap - - id: ENSG00000169180 + - id: "ENSG00000169180" - !!omap - - id: ENSG00000169239 + - id: "ENSG00000169239" - !!omap - - id: ENSG00000169255 + - id: "ENSG00000169255" - !!omap - - id: ENSG00000169299 + - id: "ENSG00000169299" - !!omap - - id: ENSG00000169302 + - id: "ENSG00000169302" - !!omap - - id: ENSG00000169359 + - id: "ENSG00000169359" - !!omap - - id: ENSG00000169375 + - id: "ENSG00000169375" - !!omap - - id: ENSG00000169398 + - id: "ENSG00000169398" - !!omap - - id: ENSG00000169410 + - id: "ENSG00000169410" - !!omap - - id: ENSG00000169418 + - id: "ENSG00000169418" - !!omap - - id: ENSG00000169519 + - id: "ENSG00000169519" - !!omap - - id: ENSG00000169660 + - id: "ENSG00000169660" - !!omap - - id: ENSG00000169679 + - id: "ENSG00000169679" - !!omap - - id: ENSG00000169692 + - id: "ENSG00000169692" - !!omap - - id: ENSG00000169710 + - id: "ENSG00000169710" - !!omap - - id: ENSG00000169738 + - id: "ENSG00000169738" - !!omap - - id: ENSG00000169764 + - id: "ENSG00000169764" - !!omap - - id: ENSG00000169814 + - id: "ENSG00000169814" - !!omap - - id: ENSG00000169826 + - id: "ENSG00000169826" - !!omap - - id: ENSG00000169902 + - id: "ENSG00000169902" - !!omap - - id: ENSG00000169919 + - id: "ENSG00000169919" - !!omap - - id: ENSG00000169967 + - id: "ENSG00000169967" - !!omap - - id: ENSG00000170035 + - id: "ENSG00000170035" - !!omap - - id: ENSG00000170142 + - id: "ENSG00000170142" - !!omap - - id: ENSG00000170145 + - id: "ENSG00000170145" - !!omap - - id: ENSG00000170185 + - id: "ENSG00000170185" - !!omap - - id: ENSG00000170190 + - id: "ENSG00000170190" - !!omap - - id: ENSG00000170191 + - id: "ENSG00000170191" - !!omap - - id: ENSG00000170222 + - id: "ENSG00000170222" - !!omap - - id: ENSG00000170231 + - id: "ENSG00000170231" - !!omap - - id: ENSG00000170242 + - id: "ENSG00000170242" - !!omap - - id: ENSG00000170266 + - id: "ENSG00000170266" - !!omap - - id: ENSG00000170271 + - id: "ENSG00000170271" - !!omap - - id: ENSG00000170312 + - id: "ENSG00000170312" - !!omap - - id: ENSG00000170323 + - id: "ENSG00000170323" - !!omap - - id: ENSG00000170324 + - id: "ENSG00000170324" - !!omap - - id: ENSG00000170340 + - id: "ENSG00000170340" - !!omap - - id: ENSG00000170364 + - id: "ENSG00000170364" - !!omap - - id: ENSG00000170385 + - id: "ENSG00000170385" - !!omap - - id: ENSG00000170390 + - id: "ENSG00000170390" - !!omap - - id: ENSG00000170426 + - id: "ENSG00000170426" - !!omap - - id: ENSG00000170430 + - id: "ENSG00000170430" - !!omap - - id: ENSG00000170439 + - id: "ENSG00000170439" - !!omap - - id: ENSG00000170445 + - id: "ENSG00000170445" - !!omap - - id: ENSG00000170482 + - id: "ENSG00000170482" - !!omap - - id: ENSG00000170485 + - id: "ENSG00000170485" - !!omap - - id: ENSG00000170502 + - id: "ENSG00000170502" - !!omap - - id: ENSG00000170516 + - id: "ENSG00000170516" - !!omap - - id: ENSG00000170522 + - id: "ENSG00000170522" - !!omap - - id: ENSG00000170525 + - id: "ENSG00000170525" - !!omap - - id: ENSG00000170634 + - id: "ENSG00000170634" - !!omap - - id: ENSG00000170734 + - id: "ENSG00000170734" - !!omap - - id: ENSG00000170786 + - id: "ENSG00000170786" - !!omap - - id: ENSG00000170832 + - id: "ENSG00000170832" - !!omap - - id: ENSG00000170835 + - id: "ENSG00000170835" - !!omap - - id: ENSG00000170836 + - id: "ENSG00000170836" - !!omap - - id: ENSG00000170881 + - id: "ENSG00000170881" - !!omap - - id: ENSG00000170890 + - id: "ENSG00000170890" - !!omap - - id: ENSG00000170899 + - id: "ENSG00000170899" - !!omap - - id: ENSG00000170906 + - id: "ENSG00000170906" - !!omap - - id: ENSG00000170950 + - id: "ENSG00000170950" - !!omap - - id: ENSG00000170961 + - id: "ENSG00000170961" - !!omap - - id: ENSG00000171004 + - id: "ENSG00000171004" - !!omap - - id: ENSG00000171094 + - id: "ENSG00000171094" - !!omap - - id: ENSG00000171097 + - id: "ENSG00000171097" - !!omap - - id: ENSG00000171100 + - id: "ENSG00000171100" - !!omap - - id: ENSG00000171105 + - id: "ENSG00000171105" - !!omap - - id: ENSG00000171124 + - id: "ENSG00000171124" - !!omap - - id: ENSG00000171132 + - id: "ENSG00000171132" - !!omap - - id: ENSG00000171155 + - id: "ENSG00000171155" - !!omap - - id: ENSG00000171174 + - id: "ENSG00000171174" - !!omap - - id: ENSG00000171219 + - id: "ENSG00000171219" - !!omap - - id: ENSG00000171234 + - id: "ENSG00000171234" - !!omap - - id: ENSG00000171298 + - id: "ENSG00000171298" - !!omap - - id: ENSG00000171302 + - id: "ENSG00000171302" - !!omap - - id: ENSG00000171307 + - id: "ENSG00000171307" - !!omap - - id: ENSG00000171310 + - id: "ENSG00000171310" - !!omap - - id: ENSG00000171314 + - id: "ENSG00000171314" - !!omap - - id: ENSG00000171320 + - id: "ENSG00000171320" - !!omap - - id: ENSG00000171408 + - id: "ENSG00000171408" - !!omap - - id: ENSG00000171428 + - id: "ENSG00000171428" - !!omap - - id: ENSG00000171453 + - id: "ENSG00000171453" - !!omap - - id: ENSG00000171497 + - id: "ENSG00000171497" - !!omap - - id: ENSG00000171503 + - id: "ENSG00000171503" - !!omap - - id: ENSG00000171560 + - id: "ENSG00000171560" - !!omap - - id: ENSG00000171608 + - id: "ENSG00000171608" - !!omap - - id: ENSG00000171720 + - id: "ENSG00000171720" - !!omap - - id: ENSG00000171723 + - id: "ENSG00000171723" - !!omap - - id: ENSG00000171759 + - id: "ENSG00000171759" - !!omap - - id: ENSG00000171766 + - id: "ENSG00000171766" - !!omap - - id: ENSG00000171793 + - id: "ENSG00000171793" - !!omap - - id: ENSG00000171806 + - id: "ENSG00000171806" - !!omap - - id: ENSG00000171848 + - id: "ENSG00000171848" - !!omap - - id: ENSG00000171861 + - id: "ENSG00000171861" - !!omap - - id: ENSG00000171862 + - id: "ENSG00000171862" - !!omap - - id: ENSG00000171885 + - id: "ENSG00000171885" - !!omap - - id: ENSG00000171903 + - id: "ENSG00000171903" - !!omap - - id: ENSG00000171954 + - id: "ENSG00000171954" - !!omap - - id: ENSG00000171960 + - id: "ENSG00000171960" - !!omap - - id: ENSG00000171989 + - id: "ENSG00000171989" - !!omap - - id: ENSG00000172009 + - id: "ENSG00000172009" - !!omap - - id: ENSG00000172046 + - id: "ENSG00000172046" - !!omap - - id: ENSG00000172053 + - id: "ENSG00000172053" - !!omap - - id: ENSG00000172071 + - id: "ENSG00000172071" - !!omap - - id: ENSG00000172113 + - id: "ENSG00000172113" - !!omap - - id: ENSG00000172197 + - id: "ENSG00000172197" - !!omap - - id: ENSG00000172236 + - id: "ENSG00000172236" - !!omap - - id: ENSG00000172264 + - id: "ENSG00000172264" - !!omap - - id: ENSG00000172269 + - id: "ENSG00000172269" - !!omap - - id: ENSG00000172288 + - id: "ENSG00000172288" - !!omap - - id: ENSG00000172292 + - id: "ENSG00000172292" - !!omap - - id: ENSG00000172296 + - id: "ENSG00000172296" - !!omap - - id: ENSG00000172315 + - id: "ENSG00000172315" - !!omap - - id: ENSG00000172318 + - id: "ENSG00000172318" - !!omap - - id: ENSG00000172331 + - id: "ENSG00000172331" - !!omap - - id: ENSG00000172339 + - id: "ENSG00000172339" - !!omap - - id: ENSG00000172340 + - id: "ENSG00000172340" - !!omap - - id: ENSG00000172345 + - id: "ENSG00000172345" - !!omap - - id: ENSG00000172352 + - id: "ENSG00000172352" - !!omap - - id: ENSG00000172456 + - id: "ENSG00000172456" - !!omap - - id: ENSG00000172461 + - id: "ENSG00000172461" - !!omap - - id: ENSG00000172482 + - id: "ENSG00000172482" - !!omap - - id: ENSG00000172497 + - id: "ENSG00000172497" - !!omap - - id: ENSG00000172508 + - id: "ENSG00000172508" - !!omap - - id: ENSG00000172531 + - id: "ENSG00000172531" - !!omap - - id: ENSG00000172543 + - id: "ENSG00000172543" - !!omap - - id: ENSG00000172572 + - id: "ENSG00000172572" - !!omap - - id: ENSG00000172613 + - id: "ENSG00000172613" - !!omap - - id: ENSG00000172680 + - id: "ENSG00000172680" - !!omap - - id: ENSG00000172728 + - id: "ENSG00000172728" - !!omap - - id: ENSG00000172782 + - id: "ENSG00000172782" - !!omap - - id: ENSG00000172817 + - id: "ENSG00000172817" - !!omap - - id: ENSG00000172828 + - id: "ENSG00000172828" - !!omap - - id: ENSG00000172830 + - id: "ENSG00000172830" - !!omap - - id: ENSG00000172831 + - id: "ENSG00000172831" - !!omap - - id: ENSG00000172840 + - id: "ENSG00000172840" - !!omap - - id: ENSG00000172890 + - id: "ENSG00000172890" - !!omap - - id: ENSG00000172893 + - id: "ENSG00000172893" - !!omap - - id: ENSG00000172939 + - id: "ENSG00000172939" - !!omap - - id: ENSG00000172940 + - id: "ENSG00000172940" - !!omap - - id: ENSG00000172954 + - id: "ENSG00000172954" - !!omap - - id: ENSG00000172955 + - id: "ENSG00000172955" - !!omap - - id: ENSG00000172977 + - id: "ENSG00000172977" - !!omap - - id: ENSG00000172985 + - id: "ENSG00000172985" - !!omap - - id: ENSG00000172987 + - id: "ENSG00000172987" - !!omap - - id: ENSG00000173020 + - id: "ENSG00000173020" - !!omap - - id: ENSG00000173083 + - id: "ENSG00000173083" - !!omap - - id: ENSG00000173085 + - id: "ENSG00000173085" - !!omap - - id: ENSG00000173175 + - id: "ENSG00000173175" - !!omap - - id: ENSG00000173193 + - id: "ENSG00000173193" - !!omap - - id: ENSG00000173200 + - id: "ENSG00000173200" - !!omap - - id: ENSG00000173208 + - id: "ENSG00000173208" - !!omap - - id: ENSG00000173221 + - id: "ENSG00000173221" - !!omap - - id: ENSG00000173262 + - id: "ENSG00000173262" - !!omap - - id: ENSG00000173273 + - id: "ENSG00000173273" - !!omap - - id: ENSG00000173281 + - id: "ENSG00000173281" - !!omap - - id: ENSG00000173327 + - id: "ENSG00000173327" - !!omap - - id: ENSG00000173418 + - id: "ENSG00000173418" - !!omap - - id: ENSG00000173482 + - id: "ENSG00000173482" - !!omap - - id: ENSG00000173486 + - id: "ENSG00000173486" - !!omap - - id: ENSG00000173517 + - id: "ENSG00000173517" - !!omap - - id: ENSG00000173540 + - id: "ENSG00000173540" - !!omap - - id: ENSG00000173597 + - id: "ENSG00000173597" - !!omap - - id: ENSG00000173598 + - id: "ENSG00000173598" - !!omap - - id: ENSG00000173599 + - id: "ENSG00000173599" - !!omap - - id: ENSG00000173610 + - id: "ENSG00000173610" - !!omap - - id: ENSG00000173614 + - id: "ENSG00000173614" - !!omap - - id: ENSG00000173627 + - id: "ENSG00000173627" - !!omap - - id: ENSG00000173638 + - id: "ENSG00000173638" - !!omap - - id: ENSG00000173660 + - id: "ENSG00000173660" - !!omap - - id: ENSG00000173786 + - id: "ENSG00000173786" - !!omap - - id: ENSG00000173838 + - id: "ENSG00000173838" - !!omap - - id: ENSG00000173846 + - id: "ENSG00000173846" - !!omap - - id: ENSG00000173868 + - id: "ENSG00000173868" - !!omap - - id: ENSG00000173915 + - id: "ENSG00000173915" - !!omap - - id: ENSG00000173926 + - id: "ENSG00000173926" - !!omap - - id: ENSG00000174080 + - id: "ENSG00000174080" - !!omap - - id: ENSG00000174156 + - id: "ENSG00000174156" - !!omap - - id: ENSG00000174165 + - id: "ENSG00000174165" - !!omap - - id: ENSG00000174173 + - id: "ENSG00000174173" - !!omap - - id: ENSG00000174227 + - id: "ENSG00000174227" - !!omap - - id: ENSG00000174233 + - id: "ENSG00000174233" - !!omap - - id: ENSG00000174292 + - id: "ENSG00000174292" - !!omap - - id: ENSG00000174327 + - id: "ENSG00000174327" - !!omap - - id: ENSG00000174358 + - id: "ENSG00000174358" - !!omap - - id: ENSG00000174437 + - id: "ENSG00000174437" - !!omap - - id: ENSG00000174448 + - id: "ENSG00000174448" - !!omap - - id: ENSG00000174473 + - id: "ENSG00000174473" - !!omap - - id: ENSG00000174502 + - id: "ENSG00000174502" - !!omap - - id: ENSG00000174607 + - id: "ENSG00000174607" - !!omap - - id: ENSG00000174640 + - id: "ENSG00000174640" - !!omap - - id: ENSG00000174669 + - id: "ENSG00000174669" - !!omap - - id: ENSG00000174672 + - id: "ENSG00000174672" - !!omap - - id: ENSG00000174684 + - id: "ENSG00000174684" - !!omap - - id: ENSG00000174876 + - id: "ENSG00000174876" - !!omap - - id: ENSG00000174886 + - id: "ENSG00000174886" - !!omap - - id: ENSG00000174915 + - id: "ENSG00000174915" - !!omap - - id: ENSG00000174951 + - id: "ENSG00000174951" - !!omap - - id: ENSG00000174990 + - id: "ENSG00000174990" - !!omap - - id: ENSG00000175003 + - id: "ENSG00000175003" - !!omap - - id: ENSG00000175040 + - id: "ENSG00000175040" - !!omap - - id: ENSG00000175048 + - id: "ENSG00000175048" - !!omap - - id: ENSG00000175054 + - id: "ENSG00000175054" - !!omap - - id: ENSG00000175063 + - id: "ENSG00000175063" - !!omap - - id: ENSG00000175066 + - id: "ENSG00000175066" - !!omap - - id: ENSG00000175164 + - id: "ENSG00000175164" - !!omap - - id: ENSG00000175175 + - id: "ENSG00000175175" - !!omap - - id: ENSG00000175198 + - id: "ENSG00000175198" - !!omap - - id: ENSG00000175215 + - id: "ENSG00000175215" - !!omap - - id: ENSG00000175229 + - id: "ENSG00000175229" - !!omap - - id: ENSG00000175264 + - id: "ENSG00000175264" - !!omap - - id: ENSG00000175283 + - id: "ENSG00000175283" - !!omap - - id: ENSG00000175309 + - id: "ENSG00000175309" - !!omap - - id: ENSG00000175354 + - id: "ENSG00000175354" - !!omap - - id: ENSG00000175445 + - id: "ENSG00000175445" - !!omap - - id: ENSG00000175482 + - id: "ENSG00000175482" - !!omap - - id: ENSG00000175505 + - id: "ENSG00000175505" - !!omap - - id: ENSG00000175535 + - id: "ENSG00000175535" - !!omap - - id: ENSG00000175536 + - id: "ENSG00000175536" - !!omap - - id: ENSG00000175548 + - id: "ENSG00000175548" - !!omap - - id: ENSG00000175564 + - id: "ENSG00000175564" - !!omap - - id: ENSG00000175567 + - id: "ENSG00000175567" - !!omap - - id: ENSG00000175592 + - id: "ENSG00000175592" - !!omap - - id: ENSG00000175634 + - id: "ENSG00000175634" - !!omap - - id: ENSG00000175711 + - id: "ENSG00000175711" - !!omap - - id: ENSG00000175806 + - id: "ENSG00000175806" - !!omap - - id: ENSG00000175809 + - id: "ENSG00000175809" - !!omap - - id: ENSG00000175893 + - id: "ENSG00000175893" - !!omap - - id: ENSG00000175931 + - id: "ENSG00000175931" - !!omap - - id: ENSG00000176020 + - id: "ENSG00000176020" - !!omap - - id: ENSG00000176022 + - id: "ENSG00000176022" - !!omap - - id: ENSG00000176095 + - id: "ENSG00000176095" - !!omap - - id: ENSG00000176105 + - id: "ENSG00000176105" - !!omap - - id: ENSG00000176153 + - id: "ENSG00000176153" - !!omap - - id: ENSG00000176170 + - id: "ENSG00000176170" - !!omap - - id: ENSG00000176194 + - id: "ENSG00000176194" - !!omap - - id: ENSG00000176340 + - id: "ENSG00000176340" - !!omap - - id: ENSG00000176383 + - id: "ENSG00000176383" - !!omap - - id: ENSG00000176387 + - id: "ENSG00000176387" - !!omap - - id: ENSG00000176393 + - id: "ENSG00000176393" - !!omap - - id: ENSG00000176444 + - id: "ENSG00000176444" - !!omap - - id: ENSG00000176454 + - id: "ENSG00000176454" - !!omap - - id: ENSG00000176463 + - id: "ENSG00000176463" - !!omap - - id: ENSG00000176485 + - id: "ENSG00000176485" - !!omap - - id: ENSG00000176597 + - id: "ENSG00000176597" - !!omap - - id: ENSG00000176641 + - id: "ENSG00000176641" - !!omap - - id: ENSG00000176715 + - id: "ENSG00000176715" - !!omap - - id: ENSG00000176890 + - id: "ENSG00000176890" - !!omap - - id: ENSG00000176920 + - id: "ENSG00000176920" - !!omap - - id: ENSG00000176928 + - id: "ENSG00000176928" - !!omap - - id: ENSG00000176974 + - id: "ENSG00000176974" - !!omap - - id: ENSG00000177000 + - id: "ENSG00000177000" - !!omap - - id: ENSG00000177054 + - id: "ENSG00000177054" - !!omap - - id: ENSG00000177076 + - id: "ENSG00000177076" - !!omap - - id: ENSG00000177084 + - id: "ENSG00000177084" - !!omap - - id: ENSG00000177108 + - id: "ENSG00000177108" - !!omap - - id: ENSG00000177156 + - id: "ENSG00000177156" - !!omap - - id: ENSG00000177169 + - id: "ENSG00000177169" - !!omap - - id: ENSG00000177189 + - id: "ENSG00000177189" - !!omap - - id: ENSG00000177191 + - id: "ENSG00000177191" - !!omap - - id: ENSG00000177192 + - id: "ENSG00000177192" - !!omap - - id: ENSG00000177200 + - id: "ENSG00000177200" - !!omap - - id: ENSG00000177239 + - id: "ENSG00000177239" - !!omap - - id: ENSG00000177414 + - id: "ENSG00000177414" - !!omap - - id: ENSG00000177465 + - id: "ENSG00000177465" - !!omap - - id: ENSG00000177542 + - id: "ENSG00000177542" - !!omap - - id: ENSG00000177565 + - id: "ENSG00000177565" - !!omap - - id: ENSG00000177628 + - id: "ENSG00000177628" - !!omap - - id: ENSG00000177646 + - id: "ENSG00000177646" - !!omap - - id: ENSG00000177666 + - id: "ENSG00000177666" - !!omap - - id: ENSG00000177669 + - id: "ENSG00000177669" - !!omap - - id: ENSG00000177700 + - id: "ENSG00000177700" - !!omap - - id: ENSG00000177889 + - id: "ENSG00000177889" - !!omap - - id: ENSG00000178035 + - id: "ENSG00000178035" - !!omap - - id: ENSG00000178093 + - id: "ENSG00000178093" - !!omap - - id: ENSG00000178127 + - id: "ENSG00000178127" - !!omap - - id: ENSG00000178234 + - id: "ENSG00000178234" - !!omap - - id: ENSG00000178445 + - id: "ENSG00000178445" - !!omap - - id: ENSG00000178537 + - id: "ENSG00000178537" - !!omap - - id: ENSG00000178538 + - id: "ENSG00000178538" - !!omap - - id: ENSG00000178568 + - id: "ENSG00000178568" - !!omap - - id: ENSG00000178607 + - id: "ENSG00000178607" - !!omap - - id: ENSG00000178685 + - id: "ENSG00000178685" - !!omap - - id: ENSG00000178694 + - id: "ENSG00000178694" - !!omap - - id: ENSG00000178700 + - id: "ENSG00000178700" - !!omap - - id: ENSG00000178741 + - id: "ENSG00000178741" - !!omap - - id: ENSG00000178773 + - id: "ENSG00000178773" - !!omap - - id: ENSG00000178802 + - id: "ENSG00000178802" - !!omap - - id: ENSG00000178814 + - id: "ENSG00000178814" - !!omap - - id: ENSG00000178921 + - id: "ENSG00000178921" - !!omap - - id: ENSG00000178922 + - id: "ENSG00000178922" - !!omap - - id: ENSG00000178950 + - id: "ENSG00000178950" - !!omap - - id: ENSG00000178952 + - id: "ENSG00000178952" - !!omap - - id: ENSG00000178999 + - id: "ENSG00000178999" - !!omap - - id: ENSG00000179085 + - id: "ENSG00000179085" - !!omap - - id: ENSG00000179091 + - id: "ENSG00000179091" - !!omap - - id: ENSG00000179115 + - id: "ENSG00000179115" - !!omap - - id: ENSG00000179142 + - id: "ENSG00000179142" - !!omap - - id: ENSG00000179148 + - id: "ENSG00000179148" - !!omap - - id: ENSG00000179163 + - id: "ENSG00000179163" - !!omap - - id: ENSG00000179295 + - id: "ENSG00000179295" - !!omap - - id: ENSG00000179299 + - id: "ENSG00000179299" - !!omap - - id: ENSG00000179335 + - id: "ENSG00000179335" - !!omap - - id: ENSG00000179455 + - id: "ENSG00000179455" - !!omap - - id: ENSG00000179477 + - id: "ENSG00000179477" - !!omap - - id: ENSG00000179520 + - id: "ENSG00000179520" - !!omap - - id: ENSG00000179593 + - id: "ENSG00000179593" - !!omap - - id: ENSG00000179598 + - id: "ENSG00000179598" - !!omap - - id: ENSG00000179761 + - id: "ENSG00000179761" - !!omap - - id: ENSG00000179913 + - id: "ENSG00000179913" - !!omap - - id: ENSG00000179918 + - id: "ENSG00000179918" - !!omap - - id: ENSG00000179958 + - id: "ENSG00000179958" - !!omap - - id: ENSG00000180011 + - id: "ENSG00000180011" - !!omap - - id: ENSG00000180138 + - id: "ENSG00000180138" - !!omap - - id: ENSG00000180176 + - id: "ENSG00000180176" - !!omap - - id: ENSG00000180210 + - id: "ENSG00000180210" - !!omap - - id: ENSG00000180233 + - id: "ENSG00000180233" - !!omap - - id: ENSG00000180251 + - id: "ENSG00000180251" - !!omap - - id: ENSG00000180370 + - id: "ENSG00000180370" - !!omap - - id: ENSG00000180432 + - id: "ENSG00000180432" - !!omap - - id: ENSG00000180537 + - id: "ENSG00000180537" - !!omap - - id: ENSG00000180549 + - id: "ENSG00000180549" - !!omap - - id: ENSG00000180638 + - id: "ENSG00000180638" - !!omap - - id: ENSG00000180767 + - id: "ENSG00000180767" - !!omap - - id: ENSG00000180773 + - id: "ENSG00000180773" - !!omap - - id: ENSG00000180776 + - id: "ENSG00000180776" - !!omap - - id: ENSG00000180815 + - id: "ENSG00000180815" - !!omap - - id: ENSG00000180817 + - id: "ENSG00000180817" - !!omap - - id: ENSG00000180879 + - id: "ENSG00000180879" - !!omap - - id: ENSG00000180917 + - id: "ENSG00000180917" - !!omap - - id: ENSG00000180953 + - id: "ENSG00000180953" - !!omap - - id: ENSG00000181019 + - id: "ENSG00000181019" - !!omap - - id: ENSG00000181035 + - id: "ENSG00000181035" - !!omap - - id: ENSG00000181038 + - id: "ENSG00000181038" - !!omap - - id: ENSG00000181045 + - id: "ENSG00000181045" - !!omap - - id: ENSG00000181085 + - id: "ENSG00000181085" - !!omap - - id: ENSG00000181090 + - id: "ENSG00000181090" - !!omap - - id: ENSG00000181191 + - id: "ENSG00000181191" - !!omap - - id: ENSG00000181192 + - id: "ENSG00000181192" - !!omap - - id: ENSG00000181222 + - id: "ENSG00000181222" - !!omap - - id: ENSG00000181409 + - id: "ENSG00000181409" - !!omap - - id: ENSG00000181523 + - id: "ENSG00000181523" - !!omap - - id: ENSG00000181555 + - id: "ENSG00000181555" - !!omap - - id: ENSG00000181652 + - id: "ENSG00000181652" - !!omap - - id: ENSG00000181788 + - id: "ENSG00000181788" - !!omap - - id: ENSG00000181789 + - id: "ENSG00000181789" - !!omap - - id: ENSG00000181804 + - id: "ENSG00000181804" - !!omap - - id: ENSG00000181830 + - id: "ENSG00000181830" - !!omap - - id: ENSG00000181852 + - id: "ENSG00000181852" - !!omap - - id: ENSG00000181856 + - id: "ENSG00000181856" - !!omap - - id: ENSG00000181867 + - id: "ENSG00000181867" - !!omap - - id: ENSG00000181915 + - id: "ENSG00000181915" - !!omap - - id: ENSG00000182022 + - id: "ENSG00000182022" - !!omap - - id: ENSG00000182050 + - id: "ENSG00000182050" - !!omap - - id: ENSG00000182054 + - id: "ENSG00000182054" - !!omap - - id: ENSG00000182156 + - id: "ENSG00000182156" - !!omap - - id: ENSG00000182179 + - id: "ENSG00000182179" - !!omap - - id: ENSG00000182197 + - id: "ENSG00000182197" - !!omap - - id: ENSG00000182199 + - id: "ENSG00000182199" - !!omap - - id: ENSG00000182224 + - id: "ENSG00000182224" - !!omap - - id: ENSG00000182247 + - id: "ENSG00000182247" - !!omap - - id: ENSG00000182272 + - id: "ENSG00000182272" - !!omap - - id: ENSG00000182333 + - id: "ENSG00000182333" - !!omap - - id: ENSG00000182415 + - id: "ENSG00000182415" - !!omap - - id: ENSG00000182511 + - id: "ENSG00000182511" - !!omap - - id: ENSG00000182541 + - id: "ENSG00000182541" - !!omap - - id: ENSG00000182551 + - id: "ENSG00000182551" - !!omap - - id: ENSG00000182578 + - id: "ENSG00000182578" - !!omap - - id: ENSG00000182580 + - id: "ENSG00000182580" - !!omap - - id: ENSG00000182591 + - id: "ENSG00000182591" - !!omap - - id: ENSG00000182601 + - id: "ENSG00000182601" - !!omap - - id: ENSG00000182621 + - id: "ENSG00000182621" - !!omap - - id: ENSG00000182670 + - id: "ENSG00000182670" - !!omap - - id: ENSG00000182793 + - id: "ENSG00000182793" - !!omap - - id: ENSG00000182858 + - id: "ENSG00000182858" - !!omap - - id: ENSG00000182866 + - id: "ENSG00000182866" - !!omap - - id: ENSG00000182870 + - id: "ENSG00000182870" - !!omap - - id: ENSG00000182890 + - id: "ENSG00000182890" - !!omap - - id: ENSG00000182902 + - id: "ENSG00000182902" - !!omap - - id: ENSG00000183010 + - id: "ENSG00000183010" - !!omap - - id: ENSG00000183023 + - id: "ENSG00000183023" - !!omap - - id: ENSG00000183032 + - id: "ENSG00000183032" - !!omap - - id: ENSG00000183044 + - id: "ENSG00000183044" - !!omap - - id: ENSG00000183048 + - id: "ENSG00000183048" - !!omap - - id: ENSG00000183049 + - id: "ENSG00000183049" - !!omap - - id: ENSG00000183077 + - id: "ENSG00000183077" - !!omap - - id: ENSG00000183196 + - id: "ENSG00000183196" - !!omap - - id: ENSG00000183305 + - id: "ENSG00000183305" - !!omap - - id: ENSG00000183317 + - id: "ENSG00000183317" - !!omap - - id: ENSG00000183421 + - id: "ENSG00000183421" - !!omap - - id: ENSG00000183463 + - id: "ENSG00000183463" - !!omap - - id: ENSG00000183479 + - id: "ENSG00000183479" - !!omap - - id: ENSG00000183549 + - id: "ENSG00000183549" - !!omap - - id: ENSG00000183648 + - id: "ENSG00000183648" - !!omap - - id: ENSG00000183654 + - id: "ENSG00000183654" - !!omap - - id: ENSG00000183665 + - id: "ENSG00000183665" - !!omap - - id: ENSG00000183696 + - id: "ENSG00000183696" - !!omap - - id: ENSG00000183735 + - id: "ENSG00000183735" - !!omap - - id: ENSG00000183747 + - id: "ENSG00000183747" - !!omap - - id: ENSG00000183760 + - id: "ENSG00000183760" - !!omap - - id: ENSG00000183765 + - id: "ENSG00000183765" - !!omap - - id: ENSG00000183778 + - id: "ENSG00000183778" - !!omap - - id: ENSG00000183828 + - id: "ENSG00000183828" - !!omap - - id: ENSG00000183921 + - id: "ENSG00000183921" - !!omap - - id: ENSG00000183943 + - id: "ENSG00000183943" - !!omap - - id: ENSG00000183955 + - id: "ENSG00000183955" - !!omap - - id: ENSG00000184005 + - id: "ENSG00000184005" - !!omap - - id: ENSG00000184007 + - id: "ENSG00000184007" - !!omap - - id: ENSG00000184076 + - id: "ENSG00000184076" - !!omap - - id: ENSG00000184154 + - id: "ENSG00000184154" - !!omap - - id: ENSG00000184182 + - id: "ENSG00000184182" - !!omap - - id: ENSG00000184203 + - id: "ENSG00000184203" - !!omap - - id: ENSG00000184207 + - id: "ENSG00000184207" - !!omap - - id: ENSG00000184210 + - id: "ENSG00000184210" - !!omap - - id: ENSG00000184216 + - id: "ENSG00000184216" - !!omap - - id: ENSG00000184227 + - id: "ENSG00000184227" - !!omap - - id: ENSG00000184254 + - id: "ENSG00000184254" - !!omap - - id: ENSG00000184304 + - id: "ENSG00000184304" - !!omap - - id: ENSG00000184307 + - id: "ENSG00000184307" - !!omap - - id: ENSG00000184343 + - id: "ENSG00000184343" - !!omap - - id: ENSG00000184381 + - id: "ENSG00000184381" - !!omap - - id: ENSG00000184432 + - id: "ENSG00000184432" - !!omap - - id: ENSG00000184470 + - id: "ENSG00000184470" - !!omap - - id: ENSG00000184489 + - id: "ENSG00000184489" - !!omap - - id: ENSG00000184545 + - id: "ENSG00000184545" - !!omap - - id: ENSG00000184588 + - id: "ENSG00000184588" - !!omap - - id: ENSG00000184752 + - id: "ENSG00000184752" - !!omap - - id: ENSG00000184787 + - id: "ENSG00000184787" - !!omap - - id: ENSG00000184788 + - id: "ENSG00000184788" - !!omap - - id: ENSG00000184860 + - id: "ENSG00000184860" - !!omap - - id: ENSG00000184979 + - id: "ENSG00000184979" - !!omap - - id: ENSG00000184983 + - id: "ENSG00000184983" - !!omap - - id: ENSG00000184999 + - id: "ENSG00000184999" - !!omap - - id: ENSG00000185000 + - id: "ENSG00000185000" - !!omap - - id: ENSG00000185013 + - id: "ENSG00000185013" - !!omap - - id: ENSG00000185015 + - id: "ENSG00000185015" - !!omap - - id: ENSG00000185052 + - id: "ENSG00000185052" - !!omap - - id: ENSG00000185100 + - id: "ENSG00000185100" - !!omap - - id: ENSG00000185133 + - id: "ENSG00000185133" - !!omap - - id: ENSG00000185238 + - id: "ENSG00000185238" - !!omap - - id: ENSG00000185250 + - id: "ENSG00000185250" - !!omap - - id: ENSG00000185274 + - id: "ENSG00000185274" - !!omap - - id: ENSG00000185324 + - id: "ENSG00000185324" - !!omap - - id: ENSG00000185344 + - id: "ENSG00000185344" - !!omap - - id: ENSG00000185345 + - id: "ENSG00000185345" - !!omap - - id: ENSG00000185352 + - id: "ENSG00000185352" - !!omap - - id: ENSG00000185386 + - id: "ENSG00000185386" - !!omap - - id: ENSG00000185420 + - id: "ENSG00000185420" - !!omap - - id: ENSG00000185432 + - id: "ENSG00000185432" - !!omap - - id: ENSG00000185483 + - id: "ENSG00000185483" - !!omap - - id: ENSG00000185527 + - id: "ENSG00000185527" - !!omap - - id: ENSG00000185532 + - id: "ENSG00000185532" - !!omap - - id: ENSG00000185615 + - id: "ENSG00000185615" - !!omap - - id: ENSG00000185624 + - id: "ENSG00000185624" - !!omap - - id: ENSG00000185651 + - id: "ENSG00000185651" - !!omap - - id: ENSG00000185803 + - id: "ENSG00000185803" - !!omap - - id: ENSG00000185808 + - id: "ENSG00000185808" - !!omap - - id: ENSG00000185813 + - id: "ENSG00000185813" - !!omap - - id: ENSG00000185818 + - id: "ENSG00000185818" - !!omap - - id: ENSG00000185825 + - id: "ENSG00000185825" - !!omap - - id: ENSG00000185875 + - id: "ENSG00000185875" - !!omap - - id: ENSG00000185883 + - id: "ENSG00000185883" - !!omap - - id: ENSG00000185973 + - id: "ENSG00000185973" - !!omap - - id: ENSG00000185974 + - id: "ENSG00000185974" - !!omap - - id: ENSG00000186009 + - id: "ENSG00000186009" - !!omap - - id: ENSG00000186010 + - id: "ENSG00000186010" - !!omap - - id: ENSG00000186104 + - id: "ENSG00000186104" - !!omap - - id: ENSG00000186111 + - id: "ENSG00000186111" - !!omap - - id: ENSG00000186115 + - id: "ENSG00000186115" - !!omap - - id: ENSG00000186141 + - id: "ENSG00000186141" - !!omap - - id: ENSG00000186153 + - id: "ENSG00000186153" - !!omap - - id: ENSG00000186160 + - id: "ENSG00000186160" - !!omap - - id: ENSG00000186184 + - id: "ENSG00000186184" - !!omap - - id: ENSG00000186187 + - id: "ENSG00000186187" - !!omap - - id: ENSG00000186198 + - id: "ENSG00000186198" - !!omap - - id: ENSG00000186204 + - id: "ENSG00000186204" - !!omap - - id: ENSG00000186281 + - id: "ENSG00000186281" - !!omap - - id: ENSG00000186298 + - id: "ENSG00000186298" - !!omap - - id: ENSG00000186334 + - id: "ENSG00000186334" - !!omap - - id: ENSG00000186335 + - id: "ENSG00000186335" - !!omap - - id: ENSG00000186350 + - id: "ENSG00000186350" - !!omap - - id: ENSG00000186377 + - id: "ENSG00000186377" - !!omap - - id: ENSG00000186526 + - id: "ENSG00000186526" - !!omap - - id: ENSG00000186529 + - id: "ENSG00000186529" - !!omap - - id: ENSG00000186591 + - id: "ENSG00000186591" - !!omap - - id: ENSG00000186642 + - id: "ENSG00000186642" - !!omap - - id: ENSG00000186666 + - id: "ENSG00000186666" - !!omap - - id: ENSG00000186716 + - id: "ENSG00000186716" - !!omap - - id: ENSG00000186792 + - id: "ENSG00000186792" - !!omap - - id: ENSG00000186908 + - id: "ENSG00000186908" - !!omap - - id: ENSG00000186951 + - id: "ENSG00000186951" - !!omap - - id: ENSG00000187021 + - id: "ENSG00000187021" - !!omap - - id: ENSG00000187024 + - id: "ENSG00000187024" - !!omap - - id: ENSG00000187048 + - id: "ENSG00000187048" - !!omap - - id: ENSG00000187091 + - id: "ENSG00000187091" - !!omap - - id: ENSG00000187097 + - id: "ENSG00000187097" - !!omap - - id: ENSG00000187134 + - id: "ENSG00000187134" - !!omap - - id: ENSG00000187210 + - id: "ENSG00000187210" - !!omap - - id: ENSG00000187486 + - id: "ENSG00000187486" - !!omap - - id: ENSG00000187531 + - id: "ENSG00000187531" - !!omap - - id: ENSG00000187555 + - id: "ENSG00000187555" - !!omap - - id: ENSG00000187566 + - id: "ENSG00000187566" - !!omap - - id: ENSG00000187581 + - id: "ENSG00000187581" - !!omap - - id: ENSG00000187630 + - id: "ENSG00000187630" - !!omap - - id: ENSG00000187676 + - id: "ENSG00000187676" - !!omap - - id: ENSG00000187714 + - id: "ENSG00000187714" - !!omap - - id: ENSG00000187733 + - id: "ENSG00000187733" - !!omap - - id: ENSG00000187758 + - id: "ENSG00000187758" - !!omap - - id: ENSG00000187980 + - id: "ENSG00000187980" - !!omap - - id: ENSG00000188050 + - id: "ENSG00000188050" - !!omap - - id: ENSG00000188089 + - id: "ENSG00000188089" - !!omap - - id: ENSG00000188130 + - id: "ENSG00000188130" - !!omap - - id: ENSG00000188167 + - id: "ENSG00000188167" - !!omap - - id: ENSG00000188191 + - id: "ENSG00000188191" - !!omap - - id: ENSG00000188257 + - id: "ENSG00000188257" - !!omap - - id: ENSG00000188266 + - id: "ENSG00000188266" - !!omap - - id: ENSG00000188322 + - id: "ENSG00000188322" - !!omap - - id: ENSG00000188338 + - id: "ENSG00000188338" - !!omap - - id: ENSG00000188386 + - id: "ENSG00000188386" - !!omap - - id: ENSG00000188467 + - id: "ENSG00000188467" - !!omap - - id: ENSG00000188542 + - id: "ENSG00000188542" - !!omap - - id: ENSG00000188573 + - id: "ENSG00000188573" - !!omap - - id: ENSG00000188611 + - id: "ENSG00000188611" - !!omap - - id: ENSG00000188641 + - id: "ENSG00000188641" - !!omap - - id: ENSG00000188676 + - id: "ENSG00000188676" - !!omap - - id: ENSG00000188687 + - id: "ENSG00000188687" - !!omap - - id: ENSG00000188690 + - id: "ENSG00000188690" - !!omap - - id: ENSG00000188706 + - id: "ENSG00000188706" - !!omap - - id: ENSG00000188716 + - id: "ENSG00000188716" - !!omap - - id: ENSG00000188784 + - id: "ENSG00000188784" - !!omap - - id: ENSG00000188818 + - id: "ENSG00000188818" - !!omap - - id: ENSG00000188833 + - id: "ENSG00000188833" - !!omap - - id: ENSG00000188906 + - id: "ENSG00000188906" - !!omap - - id: ENSG00000188921 + - id: "ENSG00000188921" - !!omap - - id: ENSG00000189037 + - id: "ENSG00000189037" - !!omap - - id: ENSG00000189043 + - id: "ENSG00000189043" - !!omap - - id: ENSG00000189221 + - id: "ENSG00000189221" - !!omap - - id: ENSG00000189283 + - id: "ENSG00000189283" - !!omap - - id: ENSG00000189366 + - id: "ENSG00000189366" - !!omap - - id: ENSG00000196090 + - id: "ENSG00000196090" - !!omap - - id: ENSG00000196136 + - id: "ENSG00000196136" - !!omap - - id: ENSG00000196139 + - id: "ENSG00000196139" - !!omap - - id: ENSG00000196177 + - id: "ENSG00000196177" - !!omap - - id: ENSG00000196188 + - id: "ENSG00000196188" - !!omap - - id: ENSG00000196262 + - id: "ENSG00000196262" - !!omap - - id: ENSG00000196296 + - id: "ENSG00000196296" - !!omap - - id: ENSG00000196305 + - id: "ENSG00000196305" - !!omap - - id: ENSG00000196313 + - id: "ENSG00000196313" - !!omap - - id: ENSG00000196335 + - id: "ENSG00000196335" - !!omap - - id: ENSG00000196344 + - id: "ENSG00000196344" - !!omap - - id: ENSG00000196368 + - id: "ENSG00000196368" - !!omap - - id: ENSG00000196371 + - id: "ENSG00000196371" - !!omap - - id: ENSG00000196396 + - id: "ENSG00000196396" - !!omap - - id: ENSG00000196411 + - id: "ENSG00000196411" - !!omap - - id: ENSG00000196433 + - id: "ENSG00000196433" - !!omap - - id: ENSG00000196455 + - id: "ENSG00000196455" - !!omap - - id: ENSG00000196470 + - id: "ENSG00000196470" - !!omap - - id: ENSG00000196475 + - id: "ENSG00000196475" - !!omap - - id: ENSG00000196498 + - id: "ENSG00000196498" - !!omap - - id: ENSG00000196502 + - id: "ENSG00000196502" - !!omap - - id: ENSG00000196511 + - id: "ENSG00000196511" - !!omap - - id: ENSG00000196517 + - id: "ENSG00000196517" - !!omap - - id: ENSG00000196547 + - id: "ENSG00000196547" - !!omap - - id: ENSG00000196616 + - id: "ENSG00000196616" - !!omap - - id: ENSG00000196620 + - id: "ENSG00000196620" - !!omap - - id: ENSG00000196632 + - id: "ENSG00000196632" - !!omap - - id: ENSG00000196730 + - id: "ENSG00000196730" - !!omap - - id: ENSG00000196743 + - id: "ENSG00000196743" - !!omap - - id: ENSG00000196839 + - id: "ENSG00000196839" - !!omap - - id: ENSG00000196950 + - id: "ENSG00000196950" - !!omap - - id: ENSG00000196968 + - id: "ENSG00000196968" - !!omap - - id: ENSG00000197093 + - id: "ENSG00000197093" - !!omap - - id: ENSG00000197119 + - id: "ENSG00000197119" - !!omap - - id: ENSG00000197121 + - id: "ENSG00000197121" - !!omap - - id: ENSG00000197122 + - id: "ENSG00000197122" - !!omap - - id: ENSG00000197142 + - id: "ENSG00000197142" - !!omap - - id: ENSG00000197165 + - id: "ENSG00000197165" - !!omap - - id: ENSG00000197168 + - id: "ENSG00000197168" - !!omap - - id: ENSG00000197208 + - id: "ENSG00000197208" - !!omap - - id: ENSG00000197217 + - id: "ENSG00000197217" - !!omap - - id: ENSG00000197241 + - id: "ENSG00000197241" - !!omap - - id: ENSG00000197249 + - id: "ENSG00000197249" - !!omap - - id: ENSG00000197253 + - id: "ENSG00000197253" - !!omap - - id: ENSG00000197296 + - id: "ENSG00000197296" - !!omap - - id: ENSG00000197323 + - id: "ENSG00000197323" - !!omap - - id: ENSG00000197355 + - id: "ENSG00000197355" - !!omap - - id: ENSG00000197375 + - id: "ENSG00000197375" - !!omap - - id: ENSG00000197406 + - id: "ENSG00000197406" - !!omap - - id: ENSG00000197408 + - id: "ENSG00000197408" - !!omap - - id: ENSG00000197416 + - id: "ENSG00000197416" - !!omap - - id: ENSG00000197417 + - id: "ENSG00000197417" - !!omap - - id: ENSG00000197442 + - id: "ENSG00000197442" - !!omap - - id: ENSG00000197444 + - id: "ENSG00000197444" - !!omap - - id: ENSG00000197446 + - id: "ENSG00000197446" - !!omap - - id: ENSG00000197448 + - id: "ENSG00000197448" - !!omap - - id: ENSG00000197496 + - id: "ENSG00000197496" - !!omap - - id: ENSG00000197506 + - id: "ENSG00000197506" - !!omap - - id: ENSG00000197530 + - id: "ENSG00000197530" - !!omap - - id: ENSG00000197563 + - id: "ENSG00000197563" - !!omap - - id: ENSG00000197579 + - id: "ENSG00000197579" - !!omap - - id: ENSG00000197580 + - id: "ENSG00000197580" - !!omap - - id: ENSG00000197586 + - id: "ENSG00000197586" - !!omap - - id: ENSG00000197594 + - id: "ENSG00000197594" - !!omap - - id: ENSG00000197601 + - id: "ENSG00000197601" - !!omap - - id: ENSG00000197713 + - id: "ENSG00000197713" - !!omap - - id: ENSG00000197746 + - id: "ENSG00000197746" - !!omap - - id: ENSG00000197763 + - id: "ENSG00000197763" - !!omap - - id: ENSG00000197818 + - id: "ENSG00000197818" - !!omap - - id: ENSG00000197838 + - id: "ENSG00000197838" - !!omap - - id: ENSG00000197858 + - id: "ENSG00000197858" - !!omap - - id: ENSG00000197888 + - id: "ENSG00000197888" - !!omap - - id: ENSG00000197891 + - id: "ENSG00000197891" - !!omap - - id: ENSG00000197894 + - id: "ENSG00000197894" - !!omap - - id: ENSG00000197901 + - id: "ENSG00000197901" - !!omap - - id: ENSG00000197943 + - id: "ENSG00000197943" - !!omap - - id: ENSG00000197959 + - id: "ENSG00000197959" - !!omap - - id: ENSG00000197977 + - id: "ENSG00000197977" - !!omap - - id: ENSG00000198001 + - id: "ENSG00000198001" - !!omap - - id: ENSG00000198060 + - id: "ENSG00000198060" - !!omap - - id: ENSG00000198074 + - id: "ENSG00000198074" - !!omap - - id: ENSG00000198075 + - id: "ENSG00000198075" - !!omap - - id: ENSG00000198077 + - id: "ENSG00000198077" - !!omap - - id: ENSG00000198088 + - id: "ENSG00000198088" - !!omap - - id: ENSG00000198099 + - id: "ENSG00000198099" - !!omap - - id: ENSG00000198108 + - id: "ENSG00000198108" - !!omap - - id: ENSG00000198130 + - id: "ENSG00000198130" - !!omap - - id: ENSG00000198162 + - id: "ENSG00000198162" - !!omap - - id: ENSG00000198189 + - id: "ENSG00000198189" - !!omap - - id: ENSG00000198203 + - id: "ENSG00000198203" - !!omap - - id: ENSG00000198246 + - id: "ENSG00000198246" - !!omap - - id: ENSG00000198276 + - id: "ENSG00000198276" - !!omap - - id: ENSG00000198355 + - id: "ENSG00000198355" - !!omap - - id: ENSG00000198363 + - id: "ENSG00000198363" - !!omap - - id: ENSG00000198373 + - id: "ENSG00000198373" - !!omap - - id: ENSG00000198380 + - id: "ENSG00000198380" - !!omap - - id: ENSG00000198400 + - id: "ENSG00000198400" - !!omap - - id: ENSG00000198408 + - id: "ENSG00000198408" - !!omap - - id: ENSG00000198431 + - id: "ENSG00000198431" - !!omap - - id: ENSG00000198488 + - id: "ENSG00000198488" - !!omap - - id: ENSG00000198569 + - id: "ENSG00000198569" - !!omap - - id: ENSG00000198586 + - id: "ENSG00000198586" - !!omap - - id: ENSG00000198610 + - id: "ENSG00000198610" - !!omap - - id: ENSG00000198646 + - id: "ENSG00000198646" - !!omap - - id: ENSG00000198648 + - id: "ENSG00000198648" - !!omap - - id: ENSG00000198650 + - id: "ENSG00000198650" - !!omap - - id: ENSG00000198668 + - id: "ENSG00000198668" - !!omap - - id: ENSG00000198682 + - id: "ENSG00000198682" - !!omap - - id: ENSG00000198691 + - id: "ENSG00000198691" - !!omap - - id: ENSG00000198695 + - id: "ENSG00000198695" - !!omap - - id: ENSG00000198704 + - id: "ENSG00000198704" - !!omap - - id: ENSG00000198712 + - id: "ENSG00000198712" - !!omap - - id: ENSG00000198721 + - id: "ENSG00000198721" - !!omap - - id: ENSG00000198727 + - id: "ENSG00000198727" - !!omap - - id: ENSG00000198742 + - id: "ENSG00000198742" - !!omap - - id: ENSG00000198743 + - id: "ENSG00000198743" - !!omap - - id: ENSG00000198752 + - id: "ENSG00000198752" - !!omap - - id: ENSG00000198753 + - id: "ENSG00000198753" - !!omap - - id: ENSG00000198754 + - id: "ENSG00000198754" - !!omap - - id: ENSG00000198756 + - id: "ENSG00000198756" - !!omap - - id: ENSG00000198763 + - id: "ENSG00000198763" - !!omap - - id: ENSG00000198786 + - id: "ENSG00000198786" - !!omap - - id: ENSG00000198804 + - id: "ENSG00000198804" - !!omap - - id: ENSG00000198805 + - id: "ENSG00000198805" - !!omap - - id: ENSG00000198814 + - id: "ENSG00000198814" - !!omap - - id: ENSG00000198825 + - id: "ENSG00000198825" - !!omap - - id: ENSG00000198833 + - id: "ENSG00000198833" - !!omap - - id: ENSG00000198840 + - id: "ENSG00000198840" - !!omap - - id: ENSG00000198842 + - id: "ENSG00000198842" - !!omap - - id: ENSG00000198848 + - id: "ENSG00000198848" - !!omap - - id: ENSG00000198881 + - id: "ENSG00000198881" - !!omap - - id: ENSG00000198886 + - id: "ENSG00000198886" - !!omap - - id: ENSG00000198888 + - id: "ENSG00000198888" - !!omap - - id: ENSG00000198890 + - id: "ENSG00000198890" - !!omap - - id: ENSG00000198899 + - id: "ENSG00000198899" - !!omap - - id: ENSG00000198909 + - id: "ENSG00000198909" - !!omap - - id: ENSG00000198910 + - id: "ENSG00000198910" - !!omap - - id: ENSG00000198919 + - id: "ENSG00000198919" - !!omap - - id: ENSG00000198931 + - id: "ENSG00000198931" - !!omap - - id: ENSG00000198938 + - id: "ENSG00000198938" - !!omap - - id: ENSG00000198951 + - id: "ENSG00000198951" - !!omap - - id: ENSG00000198959 + - id: "ENSG00000198959" - !!omap - - id: ENSG00000198961 + - id: "ENSG00000198961" - !!omap - - id: ENSG00000198964 + - id: "ENSG00000198964" - !!omap - - id: ENSG00000203791 + - id: "ENSG00000203791" - !!omap - - id: ENSG00000203797 + - id: "ENSG00000203797" - !!omap - - id: ENSG00000203805 + - id: "ENSG00000203805" - !!omap - - id: ENSG00000203837 + - id: "ENSG00000203837" - !!omap - - id: ENSG00000203857 + - id: "ENSG00000203857" - !!omap - - id: ENSG00000203859 + - id: "ENSG00000203859" - !!omap - - id: ENSG00000203972 + - id: "ENSG00000203972" - !!omap - - id: ENSG00000204007 + - id: "ENSG00000204007" - !!omap - - id: ENSG00000204084 + - id: "ENSG00000204084" - !!omap - - id: ENSG00000204099 + - id: "ENSG00000204099" - !!omap - - id: ENSG00000204160 + - id: "ENSG00000204160" - !!omap - - id: ENSG00000204195 + - id: "ENSG00000204195" - !!omap - - id: ENSG00000204217 + - id: "ENSG00000204217" - !!omap - - id: ENSG00000204227 + - id: "ENSG00000204227" - !!omap - - id: ENSG00000204228 + - id: "ENSG00000204228" - !!omap - - id: ENSG00000204308 + - id: "ENSG00000204308" - !!omap - - id: ENSG00000204310 + - id: "ENSG00000204310" - !!omap - - id: ENSG00000204344 + - id: "ENSG00000204344" - !!omap - - id: ENSG00000204370 + - id: "ENSG00000204370" - !!omap - - id: ENSG00000204371 + - id: "ENSG00000204371" - !!omap - - id: ENSG00000204385 + - id: "ENSG00000204385" - !!omap - - id: ENSG00000204386 + - id: "ENSG00000204386" - !!omap - - id: ENSG00000204394 + - id: "ENSG00000204394" - !!omap - - id: ENSG00000204435 + - id: "ENSG00000204435" - !!omap - - id: ENSG00000204580 + - id: "ENSG00000204580" - !!omap - - id: ENSG00000205060 + - id: "ENSG00000205060" - !!omap - - id: ENSG00000205111 + - id: "ENSG00000205111" - !!omap - - id: ENSG00000205186 + - id: "ENSG00000205186" - !!omap - - id: ENSG00000205268 + - id: "ENSG00000205268" - !!omap - - id: ENSG00000205301 + - id: "ENSG00000205301" - !!omap - - id: ENSG00000205309 + - id: "ENSG00000205309" - !!omap - - id: ENSG00000205560 + - id: "ENSG00000205560" - !!omap - - id: ENSG00000205629 + - id: "ENSG00000205629" - !!omap - - id: ENSG00000205669 + - id: "ENSG00000205669" - !!omap - - id: ENSG00000205678 + - id: "ENSG00000205678" - !!omap - - id: ENSG00000205808 + - id: "ENSG00000205808" - !!omap - - id: ENSG00000205923 + - id: "ENSG00000205923" - !!omap - - id: ENSG00000206077 + - id: "ENSG00000206077" - !!omap - - id: ENSG00000206190 + - id: "ENSG00000206190" - !!omap - - id: ENSG00000206203 + - id: "ENSG00000206203" - !!omap - - id: ENSG00000206527 + - id: "ENSG00000206527" - !!omap - - id: ENSG00000206562 + - id: "ENSG00000206562" - !!omap - - id: ENSG00000211445 + - id: "ENSG00000211445" - !!omap - - id: ENSG00000211448 + - id: "ENSG00000211448" - !!omap - - id: ENSG00000211452 + - id: "ENSG00000211452" - !!omap - - id: ENSG00000211455 + - id: "ENSG00000211455" - !!omap - - id: ENSG00000211456 + - id: "ENSG00000211456" - !!omap - - id: ENSG00000212122 + - id: "ENSG00000212122" - !!omap - - id: ENSG00000212907 + - id: "ENSG00000212907" - !!omap - - id: ENSG00000213024 + - id: "ENSG00000213024" - !!omap - - id: ENSG00000213160 + - id: "ENSG00000213160" - !!omap - - id: ENSG00000213316 + - id: "ENSG00000213316" - !!omap - - id: ENSG00000213339 + - id: "ENSG00000213339" - !!omap - - id: ENSG00000213341 + - id: "ENSG00000213341" - !!omap - - id: ENSG00000213366 + - id: "ENSG00000213366" - !!omap - - id: ENSG00000213398 + - id: "ENSG00000213398" - !!omap - - id: ENSG00000213614 + - id: "ENSG00000213614" - !!omap - - id: ENSG00000213619 + - id: "ENSG00000213619" - !!omap - - id: ENSG00000213639 + - id: "ENSG00000213639" - !!omap - - id: ENSG00000213648 + - id: "ENSG00000213648" - !!omap - - id: ENSG00000213689 + - id: "ENSG00000213689" - !!omap - - id: ENSG00000213722 + - id: "ENSG00000213722" - !!omap - - id: ENSG00000213759 + - id: "ENSG00000213759" - !!omap - - id: ENSG00000213760 + - id: "ENSG00000213760" - !!omap - - id: ENSG00000213920 + - id: "ENSG00000213920" - !!omap - - id: ENSG00000213923 + - id: "ENSG00000213923" - !!omap - - id: ENSG00000213930 + - id: "ENSG00000213930" - !!omap - - id: ENSG00000214013 + - id: "ENSG00000214013" - !!omap - - id: ENSG00000214102 + - id: "ENSG00000214102" - !!omap - - id: ENSG00000214160 + - id: "ENSG00000214160" - !!omap - - id: ENSG00000214357 + - id: "ENSG00000214357" - !!omap - - id: ENSG00000214435 + - id: "ENSG00000214435" - !!omap - - id: ENSG00000214530 + - id: "ENSG00000214530" - !!omap - - id: ENSG00000214756 + - id: "ENSG00000214756" - !!omap - - id: ENSG00000215009 + - id: "ENSG00000215009" - !!omap - - id: ENSG00000215218 + - id: "ENSG00000215218" - !!omap - - id: ENSG00000215883 + - id: "ENSG00000215883" - !!omap - - id: ENSG00000218823 + - id: "ENSG00000218823" - !!omap - - id: ENSG00000221823 + - id: "ENSG00000221823" - !!omap - - id: ENSG00000221914 + - id: "ENSG00000221914" - !!omap - - id: ENSG00000221968 + - id: "ENSG00000221968" - !!omap - - id: ENSG00000221988 + - id: "ENSG00000221988" - !!omap - - id: ENSG00000223443 + - id: "ENSG00000223443" - !!omap - - id: ENSG00000223572 + - id: "ENSG00000223572" - !!omap - - id: ENSG00000223802 + - id: "ENSG00000223802" - !!omap - - id: ENSG00000224586 + - id: "ENSG00000224586" - !!omap - - id: ENSG00000225697 + - id: "ENSG00000225697" - !!omap - - id: ENSG00000226784 + - id: "ENSG00000226784" - !!omap - - id: ENSG00000227140 + - id: "ENSG00000227140" - !!omap - - id: ENSG00000227471 + - id: "ENSG00000227471" - !!omap - - id: ENSG00000228253 + - id: "ENSG00000228253" - !!omap - - id: ENSG00000228716 + - id: "ENSG00000228716" - !!omap - - id: ENSG00000228727 + - id: "ENSG00000228727" - !!omap - - id: ENSG00000228856 + - id: "ENSG00000228856" - !!omap - - id: ENSG00000229579 + - id: "ENSG00000229579" - !!omap - - id: ENSG00000229894 + - id: "ENSG00000229894" - !!omap - - id: ENSG00000229937 + - id: "ENSG00000229937" - !!omap - - id: ENSG00000230430 + - id: "ENSG00000230430" - !!omap - - id: ENSG00000231051 + - id: "ENSG00000231051" - !!omap - - id: ENSG00000231637 + - id: "ENSG00000231637" - !!omap - - id: ENSG00000231852 + - id: "ENSG00000231852" - !!omap - - id: ENSG00000232264 + - id: "ENSG00000232264" - !!omap - - id: ENSG00000233276 + - id: "ENSG00000233276" - !!omap - - id: ENSG00000234906 + - id: "ENSG00000234906" - !!omap - - id: ENSG00000235376 + - id: "ENSG00000235376" - !!omap - - id: ENSG00000235780 + - id: "ENSG00000235780" - !!omap - - id: ENSG00000235863 + - id: "ENSG00000235863" - !!omap - - id: ENSG00000236334 + - id: "ENSG00000236334" - !!omap - - id: ENSG00000237172 + - id: "ENSG00000237172" - !!omap - - id: ENSG00000237289 + - id: "ENSG00000237289" - !!omap - - id: ENSG00000237763 + - id: "ENSG00000237763" - !!omap - - id: ENSG00000238205 + - id: "ENSG00000238205" - !!omap - - id: ENSG00000239305 + - id: "ENSG00000239305" - !!omap - - id: ENSG00000239642 + - id: "ENSG00000239642" - !!omap - - id: ENSG00000239672 + - id: "ENSG00000239672" - !!omap - - id: ENSG00000239900 + - id: "ENSG00000239900" - !!omap - - id: ENSG00000240038 + - id: "ENSG00000240038" - !!omap - - id: ENSG00000240224 + - id: "ENSG00000240224" - !!omap - - id: ENSG00000240303 + - id: "ENSG00000240303" - !!omap - - id: ENSG00000240344 + - id: "ENSG00000240344" - !!omap - - id: ENSG00000240583 + - id: "ENSG00000240583" - !!omap - - id: ENSG00000240857 + - id: "ENSG00000240857" - !!omap - - id: ENSG00000240891 + - id: "ENSG00000240891" - !!omap - - id: ENSG00000240972 + - id: "ENSG00000240972" - !!omap - - id: ENSG00000241058 + - id: "ENSG00000241058" - !!omap - - id: ENSG00000241119 + - id: "ENSG00000241119" - !!omap - - id: ENSG00000241258 + - id: "ENSG00000241258" - !!omap - - id: ENSG00000241343 + - id: "ENSG00000241343" - !!omap - - id: ENSG00000241360 + - id: "ENSG00000241360" - !!omap - - id: ENSG00000241404 + - id: "ENSG00000241404" - !!omap - - id: ENSG00000241468 + - id: "ENSG00000241468" - !!omap - - id: ENSG00000241635 + - id: "ENSG00000241635" - !!omap - - id: ENSG00000241644 + - id: "ENSG00000241644" - !!omap - - id: ENSG00000241837 + - id: "ENSG00000241837" - !!omap - - id: ENSG00000241878 + - id: "ENSG00000241878" - !!omap - - id: ENSG00000241935 + - id: "ENSG00000241935" - !!omap - - id: ENSG00000241973 + - id: "ENSG00000241973" - !!omap - - id: ENSG00000242110 + - id: "ENSG00000242110" - !!omap - - id: ENSG00000242366 + - id: "ENSG00000242366" - !!omap - - id: ENSG00000242515 + - id: "ENSG00000242515" - !!omap - - id: ENSG00000242612 + - id: "ENSG00000242612" - !!omap - - id: ENSG00000243056 + - id: "ENSG00000243056" - !!omap - - id: ENSG00000243135 + - id: "ENSG00000243135" - !!omap - - id: ENSG00000243477 + - id: "ENSG00000243477" - !!omap - - id: ENSG00000243480 + - id: "ENSG00000243480" - !!omap - - id: ENSG00000243678 + - id: "ENSG00000243678" - !!omap - - id: ENSG00000243708 + - id: "ENSG00000243708" - !!omap - - id: ENSG00000243709 + - id: "ENSG00000243709" - !!omap - - id: ENSG00000243955 + - id: "ENSG00000243955" - !!omap - - id: ENSG00000243989 + - id: "ENSG00000243989" - !!omap - - id: ENSG00000244038 + - id: "ENSG00000244038" - !!omap - - id: ENSG00000244067 + - id: "ENSG00000244067" - !!omap - - id: ENSG00000244122 + - id: "ENSG00000244122" - !!omap - - id: ENSG00000244474 + - id: "ENSG00000244474" - !!omap - - id: ENSG00000244486 + - id: "ENSG00000244486" - !!omap - - id: ENSG00000247077 + - id: "ENSG00000247077" - !!omap - - id: ENSG00000247626 + - id: "ENSG00000247626" - !!omap - - id: ENSG00000247746 + - id: "ENSG00000247746" - !!omap - - id: ENSG00000248098 + - id: "ENSG00000248098" - !!omap - - id: ENSG00000248099 + - id: "ENSG00000248099" - !!omap - - id: ENSG00000248144 + - id: "ENSG00000248144" - !!omap - - id: ENSG00000248333 + - id: "ENSG00000248333" - !!omap - - id: ENSG00000248933 + - id: "ENSG00000248933" - !!omap - - id: ENSG00000249853 + - id: "ENSG00000249853" - !!omap - - id: ENSG00000249948 + - id: "ENSG00000249948" - !!omap - - id: ENSG00000250305 + - id: "ENSG00000250305" - !!omap - - id: ENSG00000250506 + - id: "ENSG00000250506" - !!omap - - id: ENSG00000250565 + - id: "ENSG00000250565" - !!omap - - id: ENSG00000250741 + - id: "ENSG00000250741" - !!omap - - id: ENSG00000250799 + - id: "ENSG00000250799" - !!omap - - id: ENSG00000251287 + - id: "ENSG00000251287" - !!omap - - id: ENSG00000253710 + - id: "ENSG00000253710" - !!omap - - id: ENSG00000253729 + - id: "ENSG00000253729" - !!omap - - id: ENSG00000254087 + - id: "ENSG00000254087" - !!omap - - id: ENSG00000254505 + - id: "ENSG00000254505" - !!omap - - id: ENSG00000254685 + - id: "ENSG00000254685" - !!omap - - id: ENSG00000255072 + - id: "ENSG00000255072" - !!omap - - id: ENSG00000255730 + - id: "ENSG00000255730" - !!omap - - id: ENSG00000255974 + - id: "ENSG00000255974" - !!omap - - id: ENSG00000256043 + - id: "ENSG00000256043" - !!omap - - id: ENSG00000256269 + - id: "ENSG00000256269" - !!omap - - id: ENSG00000256525 + - id: "ENSG00000256525" - !!omap - - id: ENSG00000256870 + - id: "ENSG00000256870" - !!omap - - id: ENSG00000257335 + - id: "ENSG00000257335" - !!omap - - id: ENSG00000257365 + - id: "ENSG00000257365" - !!omap - - id: ENSG00000257594 + - id: "ENSG00000257594" - !!omap - - id: ENSG00000258429 + - id: "ENSG00000258429" - !!omap - - id: ENSG00000259030 + - id: "ENSG00000259030" - !!omap - - id: ENSG00000259075 + - id: "ENSG00000259075" - !!omap - - id: ENSG00000259431 + - id: "ENSG00000259431" - !!omap - - id: ENSG00000259916 + - id: "ENSG00000259916" - !!omap - - id: ENSG00000261052 + - id: "ENSG00000261052" - !!omap - - id: ENSG00000263353 + - id: "ENSG00000263353" - !!omap - - id: ENSG00000263464 + - id: "ENSG00000263464" - !!omap - - id: ENSG00000263528 + - id: "ENSG00000263528" - !!omap - - id: ENSG00000265203 + - id: "ENSG00000265203" - !!omap - - id: ENSG00000265491 + - id: "ENSG00000265491" - !!omap - - id: ENSG00000266200 + - id: "ENSG00000266200" - !!omap - - id: ENSG00000268104 + - id: "ENSG00000268104" - !!omap - - id: ENSG00000268606 + - id: "ENSG00000268606" - !!omap - - id: ENSG00000271567 + - id: "ENSG00000271567" - !!omap - - id: ENSG00000272325 + - id: "ENSG00000272325" - !!omap - - id: ENSG00000272333 + - id: "ENSG00000272333" - !!omap - - id: ENSG00000272916 + - id: "ENSG00000272916" - !!omap - - id: ENSG00000273820 + - id: "ENSG00000273820" - !!omap - - id: ENSG00000273841 + - id: "ENSG00000273841" - !!omap - - id: ENSG00000274252 + - id: "ENSG00000274252" - !!omap - - id: ENSG00000274391 + - id: "ENSG00000274391" - !!omap - - id: ENSG00000274588 + - id: "ENSG00000274588" - !!omap - - id: ENSG00000275183 + - id: "ENSG00000275183" - !!omap - - id: ENSG00000275342 + - id: "ENSG00000275342" - !!omap - - id: ENSG00000276023 + - id: "ENSG00000276023" - !!omap - - id: ENSG00000276043 + - id: "ENSG00000276043" - !!omap - - id: ENSG00000276231 + - id: "ENSG00000276231" - !!omap - - id: ENSG00000276293 + - id: "ENSG00000276293" - !!omap - - id: ENSG00000276380 + - id: "ENSG00000276380" - !!omap - - id: ENSG00000276747 + - id: "ENSG00000276747" - !!omap - - id: ENSG00000277161 + - id: "ENSG00000277161" - !!omap - - id: ENSG00000277494 + - id: "ENSG00000277494" - !!omap - - id: ENSG00000277893 + - id: "ENSG00000277893" - !!omap - - id: ENSG00000278540 + - id: "ENSG00000278540" - !!omap - - id: ENSG00000278619 + - id: "ENSG00000278619" - !!omap - - id: ENSG00000281028 + - id: "ENSG00000281028" - !!omap - - id: ENSG00000282301 + - id: "ENSG00000282301" - !!omap - - id: ENSG00000284844 + - id: "ENSG00000284844" - !!omap - - id: ENSG00000285043 + - id: "ENSG00000285043" - !!omap - - id: ENSG00000285269 + - id: "ENSG00000285269" - !!omap - - id: ENSG00000285441 + - id: "ENSG00000285441" - compartments: !!omap - - s: Extracellular - - p: Peroxisome - - m: Mitochondria - - c: Cytosol - - l: Lysosome - - r: Endoplasmic reticulum - - g: Golgi apparatus - - n: Nucleus - - x: Boundary - - i: Inner mitochondria + - s: "Extracellular" + - p: "Peroxisome" + - m: "Mitochondria" + - c: "Cytosol" + - l: "Lysosome" + - r: "Endoplasmic reticulum" + - g: "Golgi apparatus" + - n: "Nucleus" + - x: "Boundary" + - i: "Inner mitochondria"